From ac878320cd624b3402a50fa875ad5f90bf6dd6d7 Mon Sep 17 00:00:00 2001 From: zc he Date: Tue, 10 Dec 2024 20:02:04 +0800 Subject: [PATCH] fix: whitespace issues of if/for/error/alias (#167) This PR fixes some easy ones of the whitespace issues: ![image](https://github.com/user-attachments/assets/0ed2aebf-6c7a-4ba4-bf9e-c7bbd6a05d23) ![image](https://github.com/user-attachments/assets/a3ed1189-fe27-490d-a3d1-781de8692b01) There're other harder cases remaining. I don't quite get the logic behind, seems like bugs of `tree-sitter` itself to me. The work-around solutions in this PR were found through bisection and try-and-error. --- grammar.js | 18 +- src/grammar.json | 118 +- src/node-types.json | 16 +- src/parser.c | 638660 +++++++++++++++++++---------------------- 4 files changed, 300985 insertions(+), 337827 deletions(-) diff --git a/grammar.js b/grammar.js index 875293b..7b38dd1 100644 --- a/grammar.js +++ b/grammar.js @@ -37,16 +37,15 @@ module.exports = grammar({ [$._block_body, $.record_body, $.val_closure], [$._block_body, $.shebang], [$._block_body, $.val_closure], - [$._expression, $._expr_binary_expression], [$._expression_parenthesized, $._expr_binary_expression_parenthesized], [$._match_pattern_list, $.val_list], [$._match_pattern_record, $.val_record], [$._match_pattern_record_variable, $._value], [$._match_pattern_value, $._value], [$._parenthesized_body], - [$._val_number_decimal], [$.block, $.val_closure], [$.block, $.val_record], + [$.command, $.record_entry], [$.ctrl_if_parenthesized], [$.ctrl_try_parenthesized], [$.expr_binary_parenthesized], @@ -365,15 +364,10 @@ module.exports = grammar({ ctrl_for: ($) => seq( - // `for` has the `--numbered` flag KEYWORD().for, - optional($._flag), field("looping_var", $._variable_name), - optional($._flag), KEYWORD().in, - optional($._flag), field("iterable", $._expression), - optional($._flag), field("body", $.block), ), @@ -591,6 +585,7 @@ module.exports = grammar({ _env_variable_rule(true, $), alias($._command_parenthesized, $.command), ), + $._ctrl_expression_parenthesized, alias($.where_command_parenthesized, $.where_command), ), @@ -1163,7 +1158,7 @@ module.exports = grammar({ "key", choice( // Without $.cmd_identifier, cannot correctly distinguish between record and closure - alias($.cmd_identifier, $.identifier), + seq(alias($.cmd_identifier, $.identifier), repeat($._separator)), alias($._record_key, $.identifier), $.val_string, $.val_number, @@ -1175,10 +1170,7 @@ module.exports = grammar({ ...Object.values(MODIFIER()).map((x) => alias(x, $.identifier)), ), ), - alias( - token(prec(PREC().higher, seq(/\s*/, PUNC().colon))), - PUNC().colon, - ), + token(prec(PREC().higher, PUNC().colon)), field( "value", choice( @@ -1236,7 +1228,7 @@ module.exports = grammar({ ); return seq( - token.immediate(PUNC().dot), + PUNC().dot, choice( field("raw_path", path), field("protected_path", seq(path, PUNC().question)), diff --git a/src/grammar.json b/src/grammar.json index dcddf43..277fc2b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3453,18 +3453,6 @@ "type": "STRING", "value": "for" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_flag" - }, - { - "type": "BLANK" - } - ] - }, { "type": "FIELD", "name": "looping_var", @@ -3473,34 +3461,10 @@ "name": "_variable_name" } }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_flag" - }, - { - "type": "BLANK" - } - ] - }, { "type": "STRING", "value": "in" }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_flag" - }, - { - "type": "BLANK" - } - ] - }, { "type": "FIELD", "name": "iterable", @@ -3509,18 +3473,6 @@ "name": "_expression" } }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_flag" - }, - { - "type": "BLANK" - } - ] - }, { "type": "FIELD", "name": "body", @@ -13906,13 +13858,25 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "cmd_identifier" - }, - "named": true, - "value": "identifier" + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "cmd_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_separator" + } + } + ] }, { "type": "ALIAS", @@ -14240,29 +14204,15 @@ } }, { - "type": "ALIAS", + "type": "TOKEN", "content": { - "type": "TOKEN", + "type": "PREC", + "value": 20, "content": { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "\\s*" - }, - { - "type": "STRING", - "value": ":" - } - ] - } + "type": "STRING", + "value": ":" } - }, - "named": false, - "value": ":" + } }, { "type": "FIELD", @@ -14515,11 +14465,8 @@ "type": "SEQ", "members": [ { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "." - } + "type": "STRING", + "value": "." }, { "type": "CHOICE", @@ -20319,10 +20266,6 @@ "_block_body", "val_closure" ], - [ - "_expression", - "_expr_binary_expression" - ], [ "_expression_parenthesized", "_expr_binary_expression_parenthesized" @@ -20346,9 +20289,6 @@ [ "_parenthesized_body" ], - [ - "_val_number_decimal" - ], [ "block", "val_closure" @@ -20357,6 +20297,10 @@ "block", "val_record" ], + [ + "command", + "record_entry" + ], [ "ctrl_if_parenthesized" ], diff --git a/src/node-types.json b/src/node-types.json index 5c69436..e76208c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -678,20 +678,6 @@ } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "long_flag", - "named": true - }, - { - "type": "short_flag", - "named": true - } - ] } }, { @@ -3746,7 +3732,7 @@ "named": true, "fields": { "key": { - "multiple": false, + "multiple": true, "required": false, "types": [ { diff --git a/src/parser.c b/src/parser.c index 0cd9204..07c85e9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8682 -#define LARGE_STATE_COUNT 1759 -#define SYMBOL_COUNT 515 +#define STATE_COUNT 7769 +#define LARGE_STATE_COUNT 1705 +#define SYMBOL_COUNT 516 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 308 +#define TOKEN_COUNT 309 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 296 +#define PRODUCTION_ID_COUNT 286 enum ts_symbol_identifiers { sym_identifier = 1, @@ -284,264 +284,265 @@ enum ts_symbol_identifiers { anon_sym_DOT_DOT_DOT_LBRACK = 258, anon_sym_DOT_DOT_DOT_LBRACE = 259, sym__entry_separator = 260, - aux_sym_record_entry_token1 = 261, + anon_sym_COLON2 = 261, aux_sym__record_key_token1 = 262, sym__table_head_separator = 263, - aux_sym_path_token1 = 264, - aux_sym_env_var_token1 = 265, - aux_sym_env_var_token2 = 266, - anon_sym_CARET = 267, - aux_sym_command_token1 = 268, - anon_sym_err_GT = 269, - anon_sym_out_GT = 270, - anon_sym_e_GT = 271, - anon_sym_o_GT = 272, - anon_sym_err_PLUSout_GT = 273, - anon_sym_out_PLUSerr_GT = 274, - anon_sym_o_PLUSe_GT = 275, - anon_sym_e_PLUSo_GT = 276, - anon_sym_err_GT_GT = 277, - anon_sym_out_GT_GT = 278, - anon_sym_e_GT_GT = 279, - anon_sym_o_GT_GT = 280, - anon_sym_err_PLUSout_GT_GT = 281, - anon_sym_out_PLUSerr_GT_GT = 282, - anon_sym_o_PLUSe_GT_GT = 283, - anon_sym_e_PLUSo_GT_GT = 284, - anon_sym_EQ2 = 285, - sym_short_flag_identifier = 286, - sym__unquoted_naive = 287, - aux_sym_unquoted_token1 = 288, - aux_sym_unquoted_token2 = 289, - aux_sym_unquoted_token3 = 290, - aux_sym_unquoted_token4 = 291, - aux_sym__unquoted_in_list_token1 = 292, - aux_sym__unquoted_in_list_token2 = 293, - aux_sym__unquoted_in_list_token3 = 294, - aux_sym__unquoted_in_list_token4 = 295, - aux_sym__unquoted_in_record_token1 = 296, - aux_sym__unquoted_in_record_token2 = 297, - aux_sym__unquoted_in_record_token3 = 298, - aux_sym__unquoted_in_record_token4 = 299, - aux_sym__unquoted_with_expr_token1 = 300, - aux_sym__unquoted_in_list_with_expr_token1 = 301, - aux_sym__unquoted_in_record_with_expr_token1 = 302, - anon_sym_POUND = 303, - aux_sym_comment_token1 = 304, - sym_raw_string_begin = 305, - sym_raw_string_content = 306, - sym_raw_string_end = 307, - sym_nu_script = 308, - sym_shebang = 309, - sym__block_body_statement = 310, - sym__declaration = 311, - sym_decl_alias = 312, - sym_stmt_let = 313, - sym_stmt_mut = 314, - sym_stmt_const = 315, - sym_assignment = 316, - sym__assignment_pattern = 317, - sym__mutable_assignment_pattern = 318, - sym__statement = 319, - sym_pipeline = 320, - sym__block_body_statement_parenthesized = 321, - sym__declaration_parenthesized = 322, - sym_decl_alias_parenthesized = 323, - sym_stmt_let_parenthesized = 324, - sym_stmt_mut_parenthesized = 325, - sym_stmt_const_parenthesized = 326, - sym_assignment_parenthesized = 327, - sym__assignment_pattern_parenthesized = 328, - sym__mutable_assignment_pattern_parenthesized = 329, - sym__statement_parenthesized = 330, - sym_pipeline_parenthesized = 331, - sym__block_body = 332, - sym_cmd_identifier = 333, - sym__command_name = 334, - sym__variable_name = 335, - aux_sym__pipe_separator = 336, - sym_decl_def = 337, - sym_decl_export = 338, - sym_decl_extern = 339, - sym_decl_module = 340, - sym_decl_use = 341, - sym_returns = 342, - sym__one_type = 343, - sym__multiple_types = 344, - sym_parameter_parens = 345, - sym_parameter_bracks = 346, - sym_parameter_pipes = 347, - sym_parameter = 348, - sym__param_name = 349, - sym_param_type = 350, - sym_param_value = 351, - sym__type_annotation = 352, - sym__all_type = 353, - sym_flat_type = 354, - sym_collection_type = 355, - sym_list_type = 356, - sym_param_cmd = 357, - sym_param_rest = 358, - sym_param_opt = 359, - sym_param_long_flag = 360, - sym_flag_capsule = 361, - sym_param_short_flag = 362, - sym__ctrl_statement = 363, - sym__ctrl_expression = 364, - sym__ctrl_expression_parenthesized = 365, - sym_ctrl_for = 366, - sym_ctrl_loop = 367, - sym_ctrl_error = 368, - sym_ctrl_while = 369, - sym_ctrl_do = 370, - sym_ctrl_do_parenthesized = 371, - sym_ctrl_if = 372, - sym_ctrl_if_parenthesized = 373, - sym_ctrl_match = 374, - sym_match_arm = 375, - sym_default_arm = 376, - sym_match_pattern = 377, - sym__match_pattern = 378, - sym_match_guard = 379, - sym__match_pattern_expression = 380, - sym__match_pattern_value = 381, - sym__match_pattern_list = 382, - sym__match_pattern_rest = 383, - sym__match_pattern_record = 384, - sym__match_pattern_record_variable = 385, - sym_ctrl_try = 386, - sym_ctrl_try_parenthesized = 387, - sym_ctrl_return = 388, - sym_pipe_element = 389, - sym_pipe_element_parenthesized = 390, - sym_stmt_source = 391, - sym_stmt_register = 392, - sym__stmt_hide = 393, - sym_hide_mod = 394, - sym_hide_env = 395, - sym__stmt_overlay = 396, - sym_overlay_list = 397, - sym_overlay_hide = 398, - sym_overlay_new = 399, - sym_overlay_use = 400, - sym_scope_pattern = 401, - sym_wild_card = 402, - sym_command_list = 403, - sym_block = 404, - sym__blosure = 405, - sym__where_predicate_lhs = 406, - sym_where_command = 407, - sym_where_command_parenthesized = 408, - sym__binary_predicate = 409, - sym__binary_predicate_parenthesized = 410, - sym__predicate = 411, - sym__expression = 412, - sym__expression_parenthesized = 413, - sym_expr_unary = 414, - sym__expr_unary_minus = 415, - sym_expr_binary = 416, - sym_expr_binary_parenthesized = 417, - sym__expr_binary_expression = 418, - sym__expr_binary_expression_parenthesized = 419, - sym_expr_parenthesized = 420, - sym__spread_parenthesized = 421, - sym__expr_parenthesized_immediate = 422, - sym__parenthesized_body = 423, - sym_val_range = 424, - sym__val_range = 425, - sym__val_range_with_end = 426, - sym__immediate_decimal = 427, - sym__value = 428, - sym_val_nothing = 429, - sym_val_bool = 430, - sym__spread_variable = 431, - sym_val_variable = 432, - sym_val_number = 433, - sym__val_number_decimal = 434, - sym__val_number = 435, - sym_val_duration = 436, - sym_val_filesize = 437, - sym_val_binary = 438, - sym_val_string = 439, - sym__raw_str = 440, - sym__str_double_quotes = 441, - sym_val_interpolated = 442, - sym__inter_single_quotes = 443, - sym__inter_double_quotes = 444, - sym_expr_interpolated = 445, - sym_val_list = 446, - sym__spread_list = 447, - sym_list_body = 448, - sym_val_entry = 449, - sym_val_record = 450, - sym__spread_record = 451, - sym_record_body = 452, - sym_record_entry = 453, - sym__record_key = 454, - sym_val_table = 455, - sym_val_closure = 456, - sym_cell_path = 457, - sym_path = 458, - sym_env_var = 459, - sym_command = 460, - sym__command_parenthesized = 461, - sym__cmd_arg = 462, - sym_redirection = 463, - sym__flags_parenthesized = 464, - sym_short_flag = 465, - sym_long_flag = 466, - sym_unquoted = 467, - sym__unquoted_in_list = 468, - sym__unquoted_in_record = 469, - sym__unquoted_with_expr = 470, - sym__unquoted_in_list_with_expr = 471, - sym__unquoted_in_record_with_expr = 472, - sym__unquoted_anonymous_prefix = 473, - sym_comment = 474, - aux_sym_shebang_repeat1 = 475, - aux_sym_pipeline_repeat1 = 476, - aux_sym_pipeline_parenthesized_repeat1 = 477, - aux_sym__block_body_repeat1 = 478, - aux_sym__block_body_repeat2 = 479, - aux_sym_decl_def_repeat1 = 480, - aux_sym__multiple_types_repeat1 = 481, - aux_sym__multiple_types_repeat2 = 482, - aux_sym_parameter_parens_repeat1 = 483, - aux_sym_parameter_repeat1 = 484, - aux_sym_parameter_repeat2 = 485, - aux_sym_collection_type_repeat1 = 486, - aux_sym_ctrl_do_repeat1 = 487, - aux_sym_ctrl_do_repeat2 = 488, - aux_sym_ctrl_do_parenthesized_repeat1 = 489, - aux_sym_ctrl_do_parenthesized_repeat2 = 490, - aux_sym_ctrl_do_parenthesized_repeat3 = 491, - aux_sym_ctrl_match_repeat1 = 492, - aux_sym_match_pattern_repeat1 = 493, - aux_sym__match_pattern_list_repeat1 = 494, - aux_sym__match_pattern_record_repeat1 = 495, - aux_sym_pipe_element_repeat1 = 496, - aux_sym_pipe_element_repeat2 = 497, - aux_sym_pipe_element_parenthesized_repeat1 = 498, - aux_sym_command_list_repeat1 = 499, - aux_sym__parenthesized_body_repeat1 = 500, - aux_sym__parenthesized_body_repeat2 = 501, - aux_sym_val_binary_repeat1 = 502, - aux_sym__str_double_quotes_repeat1 = 503, - aux_sym__inter_single_quotes_repeat1 = 504, - aux_sym__inter_double_quotes_repeat1 = 505, - aux_sym_list_body_repeat1 = 506, - aux_sym_record_body_repeat1 = 507, - aux_sym_val_table_repeat1 = 508, - aux_sym_cell_path_repeat1 = 509, - aux_sym_command_repeat1 = 510, - aux_sym__command_parenthesized_repeat1 = 511, - aux_sym__unquoted_with_expr_repeat1 = 512, - aux_sym__unquoted_in_list_with_expr_repeat1 = 513, - aux_sym__unquoted_in_record_with_expr_repeat1 = 514, - anon_alias_sym__head = 515, - anon_alias_sym__prefix = 516, - anon_alias_sym__unit = 517, - anon_alias_sym_quoted = 518, + anon_sym_DOT2 = 264, + aux_sym_path_token1 = 265, + aux_sym_env_var_token1 = 266, + aux_sym_env_var_token2 = 267, + anon_sym_CARET = 268, + aux_sym_command_token1 = 269, + anon_sym_err_GT = 270, + anon_sym_out_GT = 271, + anon_sym_e_GT = 272, + anon_sym_o_GT = 273, + anon_sym_err_PLUSout_GT = 274, + anon_sym_out_PLUSerr_GT = 275, + anon_sym_o_PLUSe_GT = 276, + anon_sym_e_PLUSo_GT = 277, + anon_sym_err_GT_GT = 278, + anon_sym_out_GT_GT = 279, + anon_sym_e_GT_GT = 280, + anon_sym_o_GT_GT = 281, + anon_sym_err_PLUSout_GT_GT = 282, + anon_sym_out_PLUSerr_GT_GT = 283, + anon_sym_o_PLUSe_GT_GT = 284, + anon_sym_e_PLUSo_GT_GT = 285, + anon_sym_EQ2 = 286, + sym_short_flag_identifier = 287, + sym__unquoted_naive = 288, + aux_sym_unquoted_token1 = 289, + aux_sym_unquoted_token2 = 290, + aux_sym_unquoted_token3 = 291, + aux_sym_unquoted_token4 = 292, + aux_sym__unquoted_in_list_token1 = 293, + aux_sym__unquoted_in_list_token2 = 294, + aux_sym__unquoted_in_list_token3 = 295, + aux_sym__unquoted_in_list_token4 = 296, + aux_sym__unquoted_in_record_token1 = 297, + aux_sym__unquoted_in_record_token2 = 298, + aux_sym__unquoted_in_record_token3 = 299, + aux_sym__unquoted_in_record_token4 = 300, + aux_sym__unquoted_with_expr_token1 = 301, + aux_sym__unquoted_in_list_with_expr_token1 = 302, + aux_sym__unquoted_in_record_with_expr_token1 = 303, + anon_sym_POUND = 304, + aux_sym_comment_token1 = 305, + sym_raw_string_begin = 306, + sym_raw_string_content = 307, + sym_raw_string_end = 308, + sym_nu_script = 309, + sym_shebang = 310, + sym__block_body_statement = 311, + sym__declaration = 312, + sym_decl_alias = 313, + sym_stmt_let = 314, + sym_stmt_mut = 315, + sym_stmt_const = 316, + sym_assignment = 317, + sym__assignment_pattern = 318, + sym__mutable_assignment_pattern = 319, + sym__statement = 320, + sym_pipeline = 321, + sym__block_body_statement_parenthesized = 322, + sym__declaration_parenthesized = 323, + sym_decl_alias_parenthesized = 324, + sym_stmt_let_parenthesized = 325, + sym_stmt_mut_parenthesized = 326, + sym_stmt_const_parenthesized = 327, + sym_assignment_parenthesized = 328, + sym__assignment_pattern_parenthesized = 329, + sym__mutable_assignment_pattern_parenthesized = 330, + sym__statement_parenthesized = 331, + sym_pipeline_parenthesized = 332, + sym__block_body = 333, + sym_cmd_identifier = 334, + sym__command_name = 335, + sym__variable_name = 336, + aux_sym__pipe_separator = 337, + sym_decl_def = 338, + sym_decl_export = 339, + sym_decl_extern = 340, + sym_decl_module = 341, + sym_decl_use = 342, + sym_returns = 343, + sym__one_type = 344, + sym__multiple_types = 345, + sym_parameter_parens = 346, + sym_parameter_bracks = 347, + sym_parameter_pipes = 348, + sym_parameter = 349, + sym__param_name = 350, + sym_param_type = 351, + sym_param_value = 352, + sym__type_annotation = 353, + sym__all_type = 354, + sym_flat_type = 355, + sym_collection_type = 356, + sym_list_type = 357, + sym_param_cmd = 358, + sym_param_rest = 359, + sym_param_opt = 360, + sym_param_long_flag = 361, + sym_flag_capsule = 362, + sym_param_short_flag = 363, + sym__ctrl_statement = 364, + sym__ctrl_expression = 365, + sym__ctrl_expression_parenthesized = 366, + sym_ctrl_for = 367, + sym_ctrl_loop = 368, + sym_ctrl_error = 369, + sym_ctrl_while = 370, + sym_ctrl_do = 371, + sym_ctrl_do_parenthesized = 372, + sym_ctrl_if = 373, + sym_ctrl_if_parenthesized = 374, + sym_ctrl_match = 375, + sym_match_arm = 376, + sym_default_arm = 377, + sym_match_pattern = 378, + sym__match_pattern = 379, + sym_match_guard = 380, + sym__match_pattern_expression = 381, + sym__match_pattern_value = 382, + sym__match_pattern_list = 383, + sym__match_pattern_rest = 384, + sym__match_pattern_record = 385, + sym__match_pattern_record_variable = 386, + sym_ctrl_try = 387, + sym_ctrl_try_parenthesized = 388, + sym_ctrl_return = 389, + sym_pipe_element = 390, + sym_pipe_element_parenthesized = 391, + sym_stmt_source = 392, + sym_stmt_register = 393, + sym__stmt_hide = 394, + sym_hide_mod = 395, + sym_hide_env = 396, + sym__stmt_overlay = 397, + sym_overlay_list = 398, + sym_overlay_hide = 399, + sym_overlay_new = 400, + sym_overlay_use = 401, + sym_scope_pattern = 402, + sym_wild_card = 403, + sym_command_list = 404, + sym_block = 405, + sym__blosure = 406, + sym__where_predicate_lhs = 407, + sym_where_command = 408, + sym_where_command_parenthesized = 409, + sym__binary_predicate = 410, + sym__binary_predicate_parenthesized = 411, + sym__predicate = 412, + sym__expression = 413, + sym__expression_parenthesized = 414, + sym_expr_unary = 415, + sym__expr_unary_minus = 416, + sym_expr_binary = 417, + sym_expr_binary_parenthesized = 418, + sym__expr_binary_expression = 419, + sym__expr_binary_expression_parenthesized = 420, + sym_expr_parenthesized = 421, + sym__spread_parenthesized = 422, + sym__expr_parenthesized_immediate = 423, + sym__parenthesized_body = 424, + sym_val_range = 425, + sym__val_range = 426, + sym__val_range_with_end = 427, + sym__immediate_decimal = 428, + sym__value = 429, + sym_val_nothing = 430, + sym_val_bool = 431, + sym__spread_variable = 432, + sym_val_variable = 433, + sym_val_number = 434, + sym__val_number_decimal = 435, + sym__val_number = 436, + sym_val_duration = 437, + sym_val_filesize = 438, + sym_val_binary = 439, + sym_val_string = 440, + sym__raw_str = 441, + sym__str_double_quotes = 442, + sym_val_interpolated = 443, + sym__inter_single_quotes = 444, + sym__inter_double_quotes = 445, + sym_expr_interpolated = 446, + sym_val_list = 447, + sym__spread_list = 448, + sym_list_body = 449, + sym_val_entry = 450, + sym_val_record = 451, + sym__spread_record = 452, + sym_record_body = 453, + sym_record_entry = 454, + sym__record_key = 455, + sym_val_table = 456, + sym_val_closure = 457, + sym_cell_path = 458, + sym_path = 459, + sym_env_var = 460, + sym_command = 461, + sym__command_parenthesized = 462, + sym__cmd_arg = 463, + sym_redirection = 464, + sym__flags_parenthesized = 465, + sym_short_flag = 466, + sym_long_flag = 467, + sym_unquoted = 468, + sym__unquoted_in_list = 469, + sym__unquoted_in_record = 470, + sym__unquoted_with_expr = 471, + sym__unquoted_in_list_with_expr = 472, + sym__unquoted_in_record_with_expr = 473, + sym__unquoted_anonymous_prefix = 474, + sym_comment = 475, + aux_sym_shebang_repeat1 = 476, + aux_sym_pipeline_repeat1 = 477, + aux_sym_pipeline_parenthesized_repeat1 = 478, + aux_sym__block_body_repeat1 = 479, + aux_sym__block_body_repeat2 = 480, + aux_sym_decl_def_repeat1 = 481, + aux_sym__multiple_types_repeat1 = 482, + aux_sym__multiple_types_repeat2 = 483, + aux_sym_parameter_parens_repeat1 = 484, + aux_sym_parameter_repeat1 = 485, + aux_sym_parameter_repeat2 = 486, + aux_sym_collection_type_repeat1 = 487, + aux_sym_ctrl_do_repeat1 = 488, + aux_sym_ctrl_do_repeat2 = 489, + aux_sym_ctrl_do_parenthesized_repeat1 = 490, + aux_sym_ctrl_do_parenthesized_repeat2 = 491, + aux_sym_ctrl_do_parenthesized_repeat3 = 492, + aux_sym_ctrl_match_repeat1 = 493, + aux_sym_match_pattern_repeat1 = 494, + aux_sym__match_pattern_list_repeat1 = 495, + aux_sym__match_pattern_record_repeat1 = 496, + aux_sym_pipe_element_repeat1 = 497, + aux_sym_pipe_element_repeat2 = 498, + aux_sym_pipe_element_parenthesized_repeat1 = 499, + aux_sym_command_list_repeat1 = 500, + aux_sym__parenthesized_body_repeat1 = 501, + aux_sym__parenthesized_body_repeat2 = 502, + aux_sym_val_binary_repeat1 = 503, + aux_sym__str_double_quotes_repeat1 = 504, + aux_sym__inter_single_quotes_repeat1 = 505, + aux_sym__inter_double_quotes_repeat1 = 506, + aux_sym_list_body_repeat1 = 507, + aux_sym_record_body_repeat1 = 508, + aux_sym_val_table_repeat1 = 509, + aux_sym_cell_path_repeat1 = 510, + aux_sym_command_repeat1 = 511, + aux_sym__command_parenthesized_repeat1 = 512, + aux_sym__unquoted_with_expr_repeat1 = 513, + aux_sym__unquoted_in_list_with_expr_repeat1 = 514, + aux_sym__unquoted_in_record_with_expr_repeat1 = 515, + anon_alias_sym__head = 516, + anon_alias_sym__prefix = 517, + anon_alias_sym__unit = 518, + anon_alias_sym_quoted = 519, }; static const char * const ts_symbol_names[] = { @@ -806,9 +807,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT_DOT_LBRACK] = "...[", [anon_sym_DOT_DOT_DOT_LBRACE] = "...{", [sym__entry_separator] = "_entry_separator", - [aux_sym_record_entry_token1] = ":", + [anon_sym_COLON2] = ":", [aux_sym__record_key_token1] = "_record_key_token1", [sym__table_head_separator] = ";", + [anon_sym_DOT2] = ".", [aux_sym_path_token1] = "path_token1", [aux_sym_env_var_token1] = "identifier", [aux_sym_env_var_token2] = "val_string", @@ -1328,9 +1330,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT_DOT_LBRACK] = anon_sym_DOT_DOT_DOT_LBRACK, [anon_sym_DOT_DOT_DOT_LBRACE] = anon_sym_DOT_DOT_DOT_LBRACE, [sym__entry_separator] = sym__entry_separator, - [aux_sym_record_entry_token1] = anon_sym_COLON, + [anon_sym_COLON2] = anon_sym_COLON, [aux_sym__record_key_token1] = aux_sym__record_key_token1, [sym__table_head_separator] = anon_sym_SEMI, + [anon_sym_DOT2] = anon_sym_DOT, [aux_sym_path_token1] = aux_sym_path_token1, [aux_sym_env_var_token1] = sym_identifier, [aux_sym_env_var_token2] = sym_val_string, @@ -2633,7 +2636,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [aux_sym_record_entry_token1] = { + [anon_sym_COLON2] = { .visible = true, .named = false, }, @@ -2645,6 +2648,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOT2] = { + .visible = true, + .named = false, + }, [aux_sym_path_token1] = { .visible = false, .named = false, @@ -3978,137 +3985,127 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [161] = {.index = 308, .length = 3}, [162] = {.index = 311, .length = 1}, [163] = {.index = 312, .length = 1}, - [164] = {.index = 313, .length = 1}, - [165] = {.index = 314, .length = 4}, - [166] = {.index = 318, .length = 3}, - [167] = {.index = 318, .length = 3}, - [168] = {.index = 318, .length = 3}, - [169] = {.index = 318, .length = 3}, - [170] = {.index = 318, .length = 3}, - [171] = {.index = 318, .length = 3}, - [172] = {.index = 318, .length = 3}, - [173] = {.index = 318, .length = 3}, - [174] = {.index = 321, .length = 6}, - [175] = {.index = 327, .length = 5}, - [176] = {.index = 332, .length = 2}, - [177] = {.index = 334, .length = 1}, - [178] = {.index = 335, .length = 2}, - [179] = {.index = 337, .length = 2}, - [180] = {.index = 339, .length = 3}, - [181] = {.index = 342, .length = 6}, - [182] = {.index = 348, .length = 2}, - [183] = {.index = 350, .length = 3}, - [184] = {.index = 353, .length = 2}, - [186] = {.index = 355, .length = 2}, - [187] = {.index = 357, .length = 2}, - [188] = {.index = 359, .length = 2}, - [189] = {.index = 361, .length = 9}, - [190] = {.index = 370, .length = 9}, - [191] = {.index = 379, .length = 3}, - [192] = {.index = 379, .length = 3}, - [193] = {.index = 382, .length = 5}, - [194] = {.index = 387, .length = 5}, - [195] = {.index = 392, .length = 5}, - [196] = {.index = 397, .length = 1}, - [197] = {.index = 398, .length = 2}, - [198] = {.index = 400, .length = 1}, - [199] = {.index = 401, .length = 2}, - [200] = {.index = 403, .length = 1}, - [201] = {.index = 404, .length = 2}, - [202] = {.index = 406, .length = 2}, - [203] = {.index = 408, .length = 1}, - [204] = {.index = 409, .length = 4}, - [205] = {.index = 413, .length = 4}, - [206] = {.index = 417, .length = 6}, - [207] = {.index = 423, .length = 1}, - [208] = {.index = 424, .length = 1}, - [209] = {.index = 423, .length = 1}, - [210] = {.index = 424, .length = 1}, - [211] = {.index = 425, .length = 6}, - [212] = {.index = 431, .length = 2}, - [213] = {.index = 433, .length = 1}, - [214] = {.index = 434, .length = 2}, - [215] = {.index = 436, .length = 2}, - [216] = {.index = 438, .length = 6}, - [217] = {.index = 444, .length = 3}, - [218] = {.index = 447, .length = 2}, - [219] = {.index = 449, .length = 3}, - [220] = {.index = 452, .length = 3}, - [221] = {.index = 455, .length = 3}, - [222] = {.index = 458, .length = 3}, - [223] = {.index = 461, .length = 3}, - [224] = {.index = 464, .length = 3}, - [225] = {.index = 467, .length = 3}, - [226] = {.index = 470, .length = 2}, - [227] = {.index = 472, .length = 2}, - [228] = {.index = 474, .length = 9}, - [229] = {.index = 483, .length = 5}, - [230] = {.index = 488, .length = 5}, - [231] = {.index = 493, .length = 5}, - [232] = {.index = 498, .length = 5}, - [233] = {.index = 503, .length = 2}, - [234] = {.index = 505, .length = 1}, - [235] = {.index = 506, .length = 4}, - [236] = {.index = 510, .length = 1}, - [237] = {.index = 510, .length = 1}, - [238] = {.index = 511, .length = 4}, - [239] = {.index = 511, .length = 4}, - [240] = {.index = 515, .length = 3}, - [241] = {.index = 518, .length = 2}, - [242] = {.index = 520, .length = 3}, - [243] = {.index = 523, .length = 3}, - [244] = {.index = 526, .length = 3}, - [245] = {.index = 529, .length = 3}, - [246] = {.index = 532, .length = 3}, - [247] = {.index = 535, .length = 3}, - [248] = {.index = 538, .length = 3}, - [249] = {.index = 541, .length = 3}, - [250] = {.index = 544, .length = 3}, - [251] = {.index = 547, .length = 2}, - [252] = {.index = 549, .length = 2}, - [253] = {.index = 551, .length = 5}, - [254] = {.index = 556, .length = 5}, - [255] = {.index = 561, .length = 5}, - [256] = {.index = 566, .length = 2}, - [257] = {.index = 568, .length = 2}, - [258] = {.index = 566, .length = 2}, - [259] = {.index = 568, .length = 2}, - [260] = {.index = 570, .length = 4}, - [261] = {.index = 570, .length = 4}, - [262] = {.index = 574, .length = 3}, - [263] = {.index = 577, .length = 3}, - [264] = {.index = 580, .length = 3}, - [265] = {.index = 583, .length = 3}, - [266] = {.index = 586, .length = 3}, - [267] = {.index = 589, .length = 3}, - [268] = {.index = 592, .length = 3}, - [269] = {.index = 595, .length = 3}, - [270] = {.index = 598, .length = 2}, - [271] = {.index = 600, .length = 5}, - [272] = {.index = 605, .length = 3}, - [273] = {.index = 608, .length = 3}, - [274] = {.index = 605, .length = 3}, - [275] = {.index = 608, .length = 3}, - [276] = {.index = 611, .length = 2}, - [277] = {.index = 611, .length = 2}, - [278] = {.index = 613, .length = 5}, - [279] = {.index = 613, .length = 5}, - [280] = {.index = 618, .length = 3}, - [281] = {.index = 621, .length = 3}, - [282] = {.index = 624, .length = 3}, - [283] = {.index = 627, .length = 3}, - [284] = {.index = 630, .length = 3}, - [285] = {.index = 633, .length = 3}, - [286] = {.index = 636, .length = 3}, - [287] = {.index = 636, .length = 3}, - [288] = {.index = 639, .length = 5}, - [289] = {.index = 639, .length = 5}, - [290] = {.index = 644, .length = 6}, - [291] = {.index = 644, .length = 6}, - [292] = {.index = 650, .length = 3}, - [293] = {.index = 653, .length = 3}, - [294] = {.index = 656, .length = 6}, - [295] = {.index = 656, .length = 6}, + [164] = {.index = 313, .length = 3}, + [165] = {.index = 316, .length = 1}, + [166] = {.index = 317, .length = 4}, + [167] = {.index = 321, .length = 3}, + [168] = {.index = 321, .length = 3}, + [169] = {.index = 321, .length = 3}, + [170] = {.index = 321, .length = 3}, + [171] = {.index = 321, .length = 3}, + [172] = {.index = 321, .length = 3}, + [173] = {.index = 321, .length = 3}, + [174] = {.index = 321, .length = 3}, + [175] = {.index = 324, .length = 6}, + [176] = {.index = 330, .length = 5}, + [177] = {.index = 335, .length = 2}, + [178] = {.index = 337, .length = 1}, + [179] = {.index = 338, .length = 2}, + [180] = {.index = 340, .length = 2}, + [181] = {.index = 342, .length = 3}, + [182] = {.index = 345, .length = 6}, + [183] = {.index = 351, .length = 2}, + [184] = {.index = 353, .length = 3}, + [185] = {.index = 356, .length = 2}, + [187] = {.index = 358, .length = 2}, + [188] = {.index = 360, .length = 2}, + [189] = {.index = 362, .length = 2}, + [190] = {.index = 364, .length = 9}, + [191] = {.index = 373, .length = 9}, + [192] = {.index = 382, .length = 3}, + [193] = {.index = 382, .length = 3}, + [194] = {.index = 385, .length = 1}, + [195] = {.index = 386, .length = 2}, + [196] = {.index = 388, .length = 1}, + [197] = {.index = 389, .length = 2}, + [198] = {.index = 391, .length = 1}, + [199] = {.index = 392, .length = 2}, + [200] = {.index = 394, .length = 2}, + [201] = {.index = 396, .length = 1}, + [202] = {.index = 397, .length = 4}, + [203] = {.index = 401, .length = 4}, + [204] = {.index = 405, .length = 6}, + [205] = {.index = 411, .length = 1}, + [206] = {.index = 412, .length = 1}, + [207] = {.index = 411, .length = 1}, + [208] = {.index = 412, .length = 1}, + [209] = {.index = 413, .length = 6}, + [210] = {.index = 419, .length = 2}, + [211] = {.index = 421, .length = 1}, + [212] = {.index = 422, .length = 2}, + [213] = {.index = 424, .length = 2}, + [214] = {.index = 426, .length = 6}, + [215] = {.index = 432, .length = 3}, + [216] = {.index = 435, .length = 2}, + [217] = {.index = 437, .length = 3}, + [218] = {.index = 440, .length = 3}, + [219] = {.index = 443, .length = 3}, + [220] = {.index = 446, .length = 3}, + [221] = {.index = 449, .length = 3}, + [222] = {.index = 452, .length = 3}, + [223] = {.index = 455, .length = 3}, + [224] = {.index = 458, .length = 2}, + [225] = {.index = 460, .length = 2}, + [226] = {.index = 462, .length = 9}, + [227] = {.index = 471, .length = 2}, + [228] = {.index = 473, .length = 1}, + [229] = {.index = 474, .length = 4}, + [230] = {.index = 478, .length = 1}, + [231] = {.index = 478, .length = 1}, + [232] = {.index = 479, .length = 4}, + [233] = {.index = 479, .length = 4}, + [234] = {.index = 483, .length = 3}, + [235] = {.index = 486, .length = 2}, + [236] = {.index = 488, .length = 3}, + [237] = {.index = 491, .length = 3}, + [238] = {.index = 494, .length = 3}, + [239] = {.index = 497, .length = 3}, + [240] = {.index = 500, .length = 3}, + [241] = {.index = 503, .length = 3}, + [242] = {.index = 506, .length = 3}, + [243] = {.index = 509, .length = 3}, + [244] = {.index = 512, .length = 3}, + [245] = {.index = 515, .length = 2}, + [246] = {.index = 517, .length = 2}, + [247] = {.index = 519, .length = 2}, + [248] = {.index = 521, .length = 2}, + [249] = {.index = 519, .length = 2}, + [250] = {.index = 521, .length = 2}, + [251] = {.index = 523, .length = 4}, + [252] = {.index = 523, .length = 4}, + [253] = {.index = 527, .length = 3}, + [254] = {.index = 530, .length = 3}, + [255] = {.index = 533, .length = 3}, + [256] = {.index = 536, .length = 3}, + [257] = {.index = 539, .length = 3}, + [258] = {.index = 542, .length = 3}, + [259] = {.index = 545, .length = 3}, + [260] = {.index = 548, .length = 3}, + [261] = {.index = 551, .length = 2}, + [262] = {.index = 553, .length = 3}, + [263] = {.index = 556, .length = 3}, + [264] = {.index = 553, .length = 3}, + [265] = {.index = 556, .length = 3}, + [266] = {.index = 559, .length = 2}, + [267] = {.index = 559, .length = 2}, + [268] = {.index = 561, .length = 5}, + [269] = {.index = 561, .length = 5}, + [270] = {.index = 566, .length = 3}, + [271] = {.index = 569, .length = 3}, + [272] = {.index = 572, .length = 3}, + [273] = {.index = 575, .length = 3}, + [274] = {.index = 578, .length = 3}, + [275] = {.index = 581, .length = 3}, + [276] = {.index = 584, .length = 3}, + [277] = {.index = 584, .length = 3}, + [278] = {.index = 587, .length = 5}, + [279] = {.index = 587, .length = 5}, + [280] = {.index = 592, .length = 6}, + [281] = {.index = 592, .length = 6}, + [282] = {.index = 598, .length = 3}, + [283] = {.index = 601, .length = 3}, + [284] = {.index = 604, .length = 6}, + [285] = {.index = 604, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4562,71 +4559,75 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [312] = {field_param_value, 1}, [313] = + {field_key, 0}, + {field_key, 1}, + {field_value, 3}, + [316] = {field_parameters, 2}, - [314] = + [317] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [318] = + [321] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [321] = + [324] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [327] = + [330] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [332] = + [335] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [334] = + [337] = {field_type, 3, .inherited = true}, - [335] = + [338] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [337] = + [340] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [339] = + [342] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [342] = + [345] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [348] = + [351] = {field_head, 1}, {field_row, 4}, - [350] = + [353] = {field_head, 1}, {field_row, 3, .inherited = true}, {field_row, 4}, - [353] = + [356] = {field_head, 2}, {field_row, 4}, - [355] = + [358] = {field_condition, 2}, {field_then_branch, 4}, - [357] = + [360] = {field_catch_branch, 4}, {field_try_branch, 1}, - [359] = + [362] = {field_catch_branch, 4}, {field_try_branch, 2}, - [361] = + [364] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4636,7 +4637,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [370] = + [373] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4646,136 +4647,118 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [379] = + [382] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [382] = - {field_body, 5}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 3}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [387] = - {field_body, 5}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [392] = - {field_body, 5}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [397] = + [385] = {field_rest, 1}, - [398] = + [386] = {field_item, 0}, {field_item, 1}, - [400] = + [388] = {field_item, 1, .inherited = true}, - [401] = + [389] = {field_item, 0, .inherited = true}, {field_item, 1, .inherited = true}, - [403] = + [391] = {field_entry, 1, .inherited = true}, - [404] = + [392] = {field_default_pattern, 0}, {field_expression, 2}, - [406] = + [394] = {field_expression, 2}, {field_pattern, 0}, - [408] = + [396] = {field_param_value, 2}, - [409] = + [397] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [413] = + [401] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [417] = + [405] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [423] = + [411] = {field_key, 2}, - [424] = + [412] = {field_key, 0}, - [425] = + [413] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [431] = + [419] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [433] = + [421] = {field_completion, 2}, - [434] = + [422] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [436] = + [424] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [438] = + [426] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [444] = + [432] = {field_head, 1}, {field_row, 4, .inherited = true}, {field_row, 5}, - [447] = + [435] = {field_head, 2}, {field_row, 5}, - [449] = + [437] = {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [452] = + [440] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [455] = + [443] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [458] = + [446] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [461] = + [449] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [464] = + [452] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [467] = + [455] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [470] = + [458] = {field_catch_branch, 5}, {field_try_branch, 1}, - [472] = + [460] = {field_catch_branch, 5}, {field_try_branch, 2}, - [474] = + [462] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4785,233 +4768,185 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [483] = - {field_body, 6}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [488] = - {field_body, 6}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [493] = - {field_body, 6}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 4}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [498] = - {field_body, 6}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [503] = + [471] = {field_item, 1, .inherited = true}, {field_rest, 2}, - [505] = + [473] = {field_param_value, 3}, - [506] = + [474] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [510] = + [478] = {field_key, 3}, - [511] = + [479] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, - [515] = + [483] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [518] = + [486] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [520] = + [488] = {field_head, 2}, {field_row, 5, .inherited = true}, {field_row, 6}, - [523] = + [491] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [526] = + [494] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [529] = + [497] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [532] = + [500] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [535] = + [503] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [538] = + [506] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [541] = + [509] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [544] = + [512] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [547] = + [515] = {field_catch_branch, 6}, {field_try_branch, 1}, - [549] = + [517] = {field_catch_branch, 6}, {field_try_branch, 2}, - [551] = - {field_body, 7}, - {field_dollar_name, 1, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 1}, - {field_var_name, 1, .inherited = true}, - [556] = - {field_body, 7}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 5}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [561] = - {field_body, 7}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 6}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [566] = + [519] = {field_key, 2}, {field_type, 4, .inherited = true}, - [568] = + [521] = {field_key, 0}, {field_type, 2, .inherited = true}, - [570] = + [523] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, - [574] = + [527] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [577] = + [530] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [580] = + [533] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [583] = + [536] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [586] = + [539] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [589] = + [542] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [592] = + [545] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [595] = + [548] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [598] = + [551] = {field_catch_branch, 7}, {field_try_branch, 2}, - [600] = - {field_body, 8}, - {field_dollar_name, 2, .inherited = true}, - {field_iterable, 6}, - {field_looping_var, 2}, - {field_var_name, 2, .inherited = true}, - [605] = + [553] = {field_completion, 5}, {field_key, 2}, {field_type, 4, .inherited = true}, - [608] = + [556] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [611] = + [559] = {field_key, 3}, {field_type, 5, .inherited = true}, - [613] = + [561] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [618] = + [566] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [621] = + [569] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [624] = + [572] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [627] = + [575] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [630] = + [578] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [633] = + [581] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [636] = + [584] = {field_completion, 6}, {field_key, 3}, {field_type, 5, .inherited = true}, - [639] = + [587] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, {field_type, 6, .inherited = true}, - [644] = + [592] = {field_completion, 2, .inherited = true}, {field_completion, 6}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [650] = + [598] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [653] = + [601] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, - [656] = + [604] = {field_completion, 3, .inherited = true}, {field_completion, 7}, {field_key, 3, .inherited = true}, @@ -5112,81 +5047,84 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [158] = { [3] = sym_val_string, }, - [167] = { - [4] = sym_val_number, + [164] = { + [0] = sym_identifier, }, [168] = { - [2] = sym_val_number, + [4] = sym_val_number, }, [169] = { [2] = sym_val_number, - [4] = sym_val_number, }, [170] = { - [0] = sym_val_number, + [2] = sym_val_number, + [4] = sym_val_number, }, [171] = { [0] = sym_val_number, - [4] = sym_val_number, }, [172] = { [0] = sym_val_number, - [2] = sym_val_number, + [4] = sym_val_number, }, [173] = { [0] = sym_val_number, [2] = sym_val_number, + }, + [174] = { + [0] = sym_val_number, + [2] = sym_val_number, [4] = sym_val_number, }, - [185] = { + [186] = { [1] = sym_val_string, }, - [192] = { + [193] = { [4] = sym_val_string, }, - [209] = { + [207] = { [2] = sym_identifier, }, - [210] = { + [208] = { [0] = sym_identifier, }, - [237] = { + [231] = { [3] = sym_identifier, }, - [239] = { + [233] = { [3] = sym_identifier, }, - [258] = { + [249] = { [2] = sym_identifier, }, - [259] = { + [250] = { [0] = sym_identifier, }, - [261] = { + [252] = { [4] = sym_identifier, }, - [274] = { + [264] = { [2] = sym_identifier, }, - [275] = { + [265] = { [0] = sym_identifier, }, - [277] = { + [267] = { [3] = sym_identifier, }, - [279] = { + [269] = { [3] = sym_identifier, }, - [287] = { + [277] = { [3] = sym_identifier, }, - [289] = { + [279] = { [4] = sym_identifier, }, - [291] = { + [281] = { [3] = sym_identifier, }, - [295] = { + [285] = { [4] = sym_identifier, }, }; @@ -5226,218 +5164,218 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 4, + [4] = 3, + [5] = 5, [6] = 3, - [7] = 4, + [7] = 5, [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, - [16] = 4, - [17] = 4, - [18] = 4, - [19] = 4, - [20] = 4, - [21] = 4, - [22] = 4, - [23] = 23, - [24] = 23, - [25] = 23, - [26] = 23, - [27] = 23, - [28] = 23, - [29] = 23, - [30] = 23, - [31] = 23, - [32] = 23, - [33] = 23, - [34] = 23, - [35] = 23, - [36] = 23, - [37] = 37, - [38] = 37, - [39] = 37, - [40] = 37, - [41] = 41, - [42] = 41, - [43] = 43, - [44] = 43, - [45] = 41, - [46] = 41, - [47] = 47, - [48] = 47, - [49] = 47, - [50] = 47, - [51] = 47, - [52] = 47, - [53] = 47, - [54] = 47, - [55] = 47, - [56] = 47, - [57] = 47, - [58] = 47, - [59] = 47, - [60] = 47, - [61] = 47, - [62] = 47, - [63] = 47, - [64] = 64, - [65] = 64, - [66] = 66, - [67] = 64, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 64, - [72] = 68, - [73] = 69, - [74] = 69, - [75] = 64, - [76] = 68, - [77] = 69, - [78] = 68, - [79] = 69, - [80] = 64, - [81] = 69, - [82] = 64, - [83] = 69, - [84] = 64, - [85] = 69, - [86] = 64, - [87] = 69, - [88] = 69, - [89] = 69, - [90] = 69, - [91] = 69, - [92] = 69, - [93] = 69, - [94] = 69, - [95] = 69, - [96] = 69, - [97] = 69, - [98] = 69, - [99] = 69, - [100] = 69, - [101] = 66, - [102] = 68, - [103] = 103, - [104] = 103, - [105] = 105, - [106] = 106, - [107] = 105, - [108] = 108, - [109] = 103, + [9] = 5, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, + [16] = 3, + [17] = 3, + [18] = 3, + [19] = 3, + [20] = 3, + [21] = 21, + [22] = 21, + [23] = 21, + [24] = 21, + [25] = 21, + [26] = 21, + [27] = 21, + [28] = 21, + [29] = 21, + [30] = 21, + [31] = 21, + [32] = 21, + [33] = 21, + [34] = 34, + [35] = 34, + [36] = 34, + [37] = 34, + [38] = 38, + [39] = 39, + [40] = 38, + [41] = 38, + [42] = 39, + [43] = 38, + [44] = 44, + [45] = 44, + [46] = 44, + [47] = 44, + [48] = 44, + [49] = 44, + [50] = 44, + [51] = 44, + [52] = 44, + [53] = 44, + [54] = 44, + [55] = 44, + [56] = 44, + [57] = 57, + [58] = 58, + [59] = 57, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 57, + [64] = 60, + [65] = 61, + [66] = 61, + [67] = 60, + [68] = 61, + [69] = 57, + [70] = 60, + [71] = 61, + [72] = 57, + [73] = 60, + [74] = 57, + [75] = 61, + [76] = 61, + [77] = 61, + [78] = 61, + [79] = 61, + [80] = 61, + [81] = 61, + [82] = 61, + [83] = 61, + [84] = 61, + [85] = 61, + [86] = 61, + [87] = 61, + [88] = 61, + [89] = 61, + [90] = 58, + [91] = 57, + [92] = 61, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 93, + [98] = 94, + [99] = 96, + [100] = 93, + [101] = 101, + [102] = 95, + [103] = 94, + [104] = 93, + [105] = 94, + [106] = 93, + [107] = 94, + [108] = 93, + [109] = 94, [110] = 110, - [111] = 110, - [112] = 103, - [113] = 106, - [114] = 105, - [115] = 115, - [116] = 110, - [117] = 115, - [118] = 103, - [119] = 115, - [120] = 105, - [121] = 103, - [122] = 105, - [123] = 103, - [124] = 105, - [125] = 103, - [126] = 105, - [127] = 103, - [128] = 105, - [129] = 103, - [130] = 105, - [131] = 103, - [132] = 105, - [133] = 103, - [134] = 105, - [135] = 103, - [136] = 105, - [137] = 103, - [138] = 105, - [139] = 105, + [111] = 93, + [112] = 94, + [113] = 93, + [114] = 94, + [115] = 93, + [116] = 94, + [117] = 94, + [118] = 93, + [119] = 94, + [120] = 96, + [121] = 93, + [122] = 94, + [123] = 93, + [124] = 94, + [125] = 93, + [126] = 101, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 127, + [131] = 128, + [132] = 127, + [133] = 133, + [134] = 134, + [135] = 128, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 139, [140] = 140, [141] = 141, [142] = 142, - [143] = 140, + [143] = 143, [144] = 144, - [145] = 140, - [146] = 142, + [145] = 145, + [146] = 146, [147] = 147, - [148] = 142, + [148] = 148, [149] = 149, [150] = 150, [151] = 151, [152] = 152, [153] = 153, - [154] = 154, + [154] = 152, [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, + [160] = 153, + [161] = 152, + [162] = 158, + [163] = 159, [164] = 164, [165] = 165, - [166] = 164, - [167] = 167, - [168] = 167, + [166] = 151, + [167] = 157, + [168] = 156, [169] = 164, - [170] = 170, - [171] = 171, - [172] = 170, - [173] = 173, - [174] = 174, - [175] = 174, - [176] = 176, - [177] = 177, - [178] = 176, - [179] = 179, - [180] = 165, - [181] = 173, - [182] = 177, - [183] = 171, - [184] = 173, - [185] = 173, - [186] = 179, - [187] = 179, - [188] = 165, - [189] = 167, - [190] = 165, - [191] = 167, - [192] = 179, - [193] = 164, - [194] = 194, - [195] = 195, - [196] = 195, - [197] = 195, + [170] = 165, + [171] = 158, + [172] = 159, + [173] = 157, + [174] = 153, + [175] = 158, + [176] = 159, + [177] = 153, + [178] = 152, + [179] = 157, + [180] = 155, + [181] = 181, + [182] = 181, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 181, + [187] = 185, + [188] = 181, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 192, + [195] = 193, + [196] = 193, + [197] = 197, [198] = 198, [199] = 199, - [200] = 194, - [201] = 195, + [200] = 197, + [201] = 199, [202] = 202, [203] = 203, [204] = 204, [205] = 205, - [206] = 205, + [206] = 206, [207] = 207, - [208] = 207, - [209] = 205, - [210] = 210, + [208] = 208, + [209] = 209, + [210] = 208, [211] = 211, [212] = 212, - [213] = 212, + [213] = 213, [214] = 214, - [215] = 211, + [215] = 215, [216] = 216, [217] = 217, [218] = 218, @@ -5446,393 +5384,393 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [221] = 221, [222] = 222, [223] = 223, - [224] = 203, - [225] = 219, + [224] = 205, + [225] = 225, [226] = 226, - [227] = 217, - [228] = 222, - [229] = 223, - [230] = 202, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, [231] = 231, [232] = 232, [233] = 233, [234] = 234, [235] = 235, [236] = 236, - [237] = 237, - [238] = 238, + [237] = 211, + [238] = 206, [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, - [245] = 245, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 231, - [254] = 232, - [255] = 233, - [256] = 234, - [257] = 223, - [258] = 231, - [259] = 232, - [260] = 233, - [261] = 234, - [262] = 235, - [263] = 236, - [264] = 237, - [265] = 238, - [266] = 239, - [267] = 267, - [268] = 240, - [269] = 241, - [270] = 242, - [271] = 243, - [272] = 244, - [273] = 245, - [274] = 246, - [275] = 247, - [276] = 248, - [277] = 249, - [278] = 250, - [279] = 251, - [280] = 252, - [281] = 235, - [282] = 236, - [283] = 237, - [284] = 238, - [285] = 239, - [286] = 267, - [287] = 240, - [288] = 288, - [289] = 241, - [290] = 242, - [291] = 243, - [292] = 244, - [293] = 245, - [294] = 246, - [295] = 247, - [296] = 248, - [297] = 249, - [298] = 250, - [299] = 251, - [300] = 252, - [301] = 301, - [302] = 221, - [303] = 202, - [304] = 267, + [240] = 213, + [241] = 214, + [242] = 215, + [243] = 216, + [244] = 217, + [245] = 218, + [246] = 219, + [247] = 220, + [248] = 221, + [249] = 222, + [250] = 223, + [251] = 225, + [252] = 226, + [253] = 227, + [254] = 228, + [255] = 229, + [256] = 230, + [257] = 231, + [258] = 233, + [259] = 234, + [260] = 235, + [261] = 236, + [262] = 190, + [263] = 263, + [264] = 203, + [265] = 211, + [266] = 213, + [267] = 214, + [268] = 215, + [269] = 216, + [270] = 217, + [271] = 218, + [272] = 219, + [273] = 220, + [274] = 221, + [275] = 222, + [276] = 223, + [277] = 225, + [278] = 226, + [279] = 227, + [280] = 228, + [281] = 229, + [282] = 230, + [283] = 231, + [284] = 232, + [285] = 233, + [286] = 234, + [287] = 235, + [288] = 236, + [289] = 190, + [290] = 189, + [291] = 232, + [292] = 292, + [293] = 239, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 191, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 299, + [302] = 302, + [303] = 302, + [304] = 304, [305] = 305, - [306] = 204, - [307] = 301, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, + [306] = 306, + [307] = 306, + [308] = 302, + [309] = 299, + [310] = 306, + [311] = 306, [312] = 312, - [313] = 313, - [314] = 314, + [313] = 302, + [314] = 306, [315] = 315, - [316] = 316, + [316] = 302, [317] = 317, [318] = 318, [319] = 319, - [320] = 317, - [321] = 312, - [322] = 315, - [323] = 312, - [324] = 315, - [325] = 312, - [326] = 315, - [327] = 317, - [328] = 315, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 317, + [324] = 319, + [325] = 322, + [326] = 326, + [327] = 327, + [328] = 318, [329] = 329, - [330] = 312, - [331] = 314, + [330] = 330, + [331] = 331, [332] = 332, - [333] = 333, - [334] = 334, + [333] = 320, + [334] = 321, [335] = 335, - [336] = 336, + [336] = 137, [337] = 337, - [338] = 338, - [339] = 336, - [340] = 335, + [338] = 327, + [339] = 335, + [340] = 340, [341] = 341, [342] = 342, - [343] = 334, - [344] = 333, - [345] = 332, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 347, - [350] = 341, - [351] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 326, + [347] = 329, + [348] = 330, + [349] = 331, + [350] = 332, + [351] = 351, [352] = 352, - [353] = 353, - [354] = 354, + [353] = 137, + [354] = 344, [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 150, - [360] = 360, - [361] = 346, - [362] = 348, - [363] = 337, - [364] = 338, - [365] = 150, - [366] = 354, - [367] = 355, + [356] = 345, + [357] = 341, + [358] = 342, + [359] = 343, + [360] = 351, + [361] = 138, + [362] = 340, + [363] = 139, + [364] = 337, + [365] = 355, + [366] = 366, + [367] = 367, [368] = 368, [369] = 369, - [370] = 357, - [371] = 360, - [372] = 151, - [373] = 352, - [374] = 353, - [375] = 152, - [376] = 356, - [377] = 358, - [378] = 378, - [379] = 379, - [380] = 158, - [381] = 381, - [382] = 382, - [383] = 369, - [384] = 156, - [385] = 358, - [386] = 155, - [387] = 154, - [388] = 153, - [389] = 389, - [390] = 390, - [391] = 152, - [392] = 157, - [393] = 150, - [394] = 360, - [395] = 368, - [396] = 151, - [397] = 397, - [398] = 381, - [399] = 382, - [400] = 358, - [401] = 401, + [370] = 344, + [371] = 371, + [372] = 145, + [373] = 345, + [374] = 139, + [375] = 138, + [376] = 142, + [377] = 143, + [378] = 140, + [379] = 144, + [380] = 141, + [381] = 352, + [382] = 137, + [383] = 383, + [384] = 384, + [385] = 344, + [386] = 352, + [387] = 387, + [388] = 355, + [389] = 345, + [390] = 367, + [391] = 345, + [392] = 145, + [393] = 140, + [394] = 143, + [395] = 395, + [396] = 396, + [397] = 139, + [398] = 398, + [399] = 138, + [400] = 148, + [401] = 366, [402] = 402, [403] = 403, [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 358, - [409] = 368, - [410] = 410, - [411] = 369, + [405] = 368, + [406] = 369, + [407] = 147, + [408] = 344, + [409] = 146, + [410] = 137, + [411] = 144, [412] = 412, - [413] = 360, - [414] = 414, - [415] = 360, - [416] = 416, + [413] = 413, + [414] = 383, + [415] = 415, + [416] = 371, [417] = 417, [418] = 418, [419] = 419, - [420] = 152, + [420] = 420, [421] = 421, [422] = 422, [423] = 423, - [424] = 150, + [424] = 424, [425] = 425, [426] = 426, - [427] = 158, - [428] = 154, - [429] = 161, - [430] = 160, - [431] = 159, - [432] = 156, - [433] = 157, - [434] = 155, - [435] = 153, - [436] = 389, - [437] = 437, - [438] = 390, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 378, - [443] = 443, - [444] = 444, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 142, + [435] = 141, + [436] = 436, + [437] = 402, + [438] = 355, + [439] = 412, + [440] = 355, + [441] = 137, + [442] = 141, + [443] = 148, + [444] = 352, [445] = 445, - [446] = 379, + [446] = 446, [447] = 447, - [448] = 151, - [449] = 449, - [450] = 450, - [451] = 423, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 425, - [458] = 158, - [459] = 154, - [460] = 369, - [461] = 163, - [462] = 156, - [463] = 157, - [464] = 155, - [465] = 153, - [466] = 150, - [467] = 467, - [468] = 426, - [469] = 378, - [470] = 152, - [471] = 151, - [472] = 161, - [473] = 358, - [474] = 474, - [475] = 379, - [476] = 439, - [477] = 160, - [478] = 159, - [479] = 381, - [480] = 480, - [481] = 445, - [482] = 421, - [483] = 382, - [484] = 360, - [485] = 368, - [486] = 401, - [487] = 402, - [488] = 403, - [489] = 404, - [490] = 405, - [491] = 406, - [492] = 407, - [493] = 410, - [494] = 412, - [495] = 414, - [496] = 416, - [497] = 417, - [498] = 418, - [499] = 419, - [500] = 500, - [501] = 369, - [502] = 437, - [503] = 440, - [504] = 443, - [505] = 368, - [506] = 506, - [507] = 422, - [508] = 447, - [509] = 397, - [510] = 441, - [511] = 444, - [512] = 455, - [513] = 358, - [514] = 378, - [515] = 160, - [516] = 474, - [517] = 368, - [518] = 382, - [519] = 480, - [520] = 159, - [521] = 152, - [522] = 158, - [523] = 154, - [524] = 452, - [525] = 382, - [526] = 151, + [448] = 448, + [449] = 413, + [450] = 387, + [451] = 415, + [452] = 139, + [453] = 417, + [454] = 418, + [455] = 419, + [456] = 420, + [457] = 421, + [458] = 422, + [459] = 384, + [460] = 423, + [461] = 424, + [462] = 425, + [463] = 426, + [464] = 427, + [465] = 147, + [466] = 429, + [467] = 430, + [468] = 431, + [469] = 432, + [470] = 433, + [471] = 146, + [472] = 472, + [473] = 145, + [474] = 144, + [475] = 403, + [476] = 368, + [477] = 369, + [478] = 142, + [479] = 404, + [480] = 150, + [481] = 398, + [482] = 138, + [483] = 483, + [484] = 140, + [485] = 143, + [486] = 345, + [487] = 487, + [488] = 367, + [489] = 489, + [490] = 396, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 344, + [495] = 352, + [496] = 366, + [497] = 436, + [498] = 498, + [499] = 499, + [500] = 428, + [501] = 146, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 487, + [507] = 491, + [508] = 492, + [509] = 493, + [510] = 472, + [511] = 445, + [512] = 448, + [513] = 148, + [514] = 514, + [515] = 498, + [516] = 516, + [517] = 517, + [518] = 499, + [519] = 147, + [520] = 520, + [521] = 521, + [522] = 139, + [523] = 138, + [524] = 150, + [525] = 525, + [526] = 143, [527] = 527, - [528] = 163, - [529] = 161, - [530] = 369, - [531] = 379, - [532] = 379, - [533] = 533, - [534] = 381, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 156, - [539] = 378, - [540] = 456, - [541] = 449, - [542] = 157, - [543] = 506, - [544] = 155, - [545] = 381, - [546] = 500, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 454, - [552] = 153, - [553] = 450, - [554] = 554, - [555] = 555, - [556] = 453, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 360, - [563] = 563, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 141, + [533] = 145, + [534] = 144, + [535] = 142, + [536] = 352, + [537] = 355, + [538] = 367, + [539] = 366, + [540] = 368, + [541] = 369, + [542] = 367, + [543] = 366, + [544] = 368, + [545] = 369, + [546] = 344, + [547] = 345, + [548] = 489, + [549] = 446, + [550] = 447, + [551] = 551, + [552] = 552, + [553] = 140, + [554] = 551, + [555] = 516, + [556] = 517, + [557] = 520, + [558] = 531, + [559] = 521, + [560] = 140, + [561] = 143, + [562] = 562, + [563] = 504, [564] = 564, - [565] = 378, - [566] = 379, - [567] = 381, - [568] = 382, - [569] = 358, - [570] = 548, - [571] = 368, - [572] = 369, - [573] = 561, - [574] = 535, - [575] = 360, - [576] = 554, - [577] = 533, + [565] = 565, + [566] = 367, + [567] = 150, + [568] = 366, + [569] = 569, + [570] = 368, + [571] = 369, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 148, + [576] = 344, + [577] = 577, [578] = 578, [579] = 579, - [580] = 163, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 158, - [585] = 154, - [586] = 549, - [587] = 555, - [588] = 536, - [589] = 156, - [590] = 157, - [591] = 591, - [592] = 155, - [593] = 153, - [594] = 537, - [595] = 161, - [596] = 596, - [597] = 597, - [598] = 547, - [599] = 160, - [600] = 159, - [601] = 550, - [602] = 557, - [603] = 558, - [604] = 559, - [605] = 560, + [580] = 147, + [581] = 146, + [582] = 352, + [583] = 514, + [584] = 355, + [585] = 345, + [586] = 528, + [587] = 587, + [588] = 529, + [589] = 505, + [590] = 530, + [591] = 552, + [592] = 141, + [593] = 525, + [594] = 145, + [595] = 144, + [596] = 142, + [597] = 502, + [598] = 503, + [599] = 527, + [600] = 147, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, [606] = 606, - [607] = 527, + [607] = 607, [608] = 608, - [609] = 368, - [610] = 369, + [609] = 609, + [610] = 610, [611] = 611, [612] = 612, [613] = 613, @@ -5847,286 +5785,286 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [622] = 622, [623] = 623, [624] = 624, - [625] = 378, - [626] = 379, - [627] = 381, - [628] = 382, + [625] = 625, + [626] = 626, + [627] = 627, + [628] = 628, [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, + [630] = 189, + [631] = 148, + [632] = 146, + [633] = 498, + [634] = 499, + [635] = 150, [636] = 636, [637] = 637, [638] = 638, [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, + [640] = 141, + [641] = 145, + [642] = 144, + [643] = 142, [644] = 644, [645] = 645, [646] = 646, [647] = 647, [648] = 648, [649] = 649, - [650] = 203, + [650] = 650, [651] = 651, [652] = 652, - [653] = 454, + [653] = 653, [654] = 654, [655] = 655, [656] = 656, [657] = 657, [658] = 658, - [659] = 161, + [659] = 659, [660] = 660, - [661] = 661, - [662] = 160, - [663] = 159, - [664] = 163, + [661] = 352, + [662] = 662, + [663] = 355, + [664] = 664, [665] = 665, - [666] = 666, - [667] = 564, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 156, - [672] = 157, - [673] = 155, - [674] = 153, + [666] = 579, + [667] = 367, + [668] = 366, + [669] = 368, + [670] = 369, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, [675] = 675, [676] = 676, [677] = 677, - [678] = 678, - [679] = 679, + [678] = 574, + [679] = 578, [680] = 680, [681] = 681, - [682] = 606, - [683] = 583, + [682] = 682, + [683] = 573, [684] = 684, [685] = 685, [686] = 686, - [687] = 687, - [688] = 563, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 453, - [693] = 677, - [694] = 611, - [695] = 608, - [696] = 623, - [697] = 453, - [698] = 454, - [699] = 699, - [700] = 381, - [701] = 654, - [702] = 675, - [703] = 612, - [704] = 382, - [705] = 643, - [706] = 706, - [707] = 163, - [708] = 687, - [709] = 624, - [710] = 156, - [711] = 157, - [712] = 155, - [713] = 153, - [714] = 378, - [715] = 204, - [716] = 644, - [717] = 717, - [718] = 631, - [719] = 641, - [720] = 619, - [721] = 629, - [722] = 632, - [723] = 655, - [724] = 633, - [725] = 630, - [726] = 635, - [727] = 656, - [728] = 636, - [729] = 729, - [730] = 645, - [731] = 680, - [732] = 681, - [733] = 657, - [734] = 634, - [735] = 637, - [736] = 684, - [737] = 615, - [738] = 685, - [739] = 379, - [740] = 620, - [741] = 686, - [742] = 616, - [743] = 743, - [744] = 689, - [745] = 665, - [746] = 658, - [747] = 646, - [748] = 660, - [749] = 661, - [750] = 621, - [751] = 647, + [687] = 142, + [688] = 654, + [689] = 656, + [690] = 657, + [691] = 658, + [692] = 659, + [693] = 660, + [694] = 662, + [695] = 664, + [696] = 665, + [697] = 623, + [698] = 624, + [699] = 672, + [700] = 700, + [701] = 625, + [702] = 626, + [703] = 627, + [704] = 628, + [705] = 629, + [706] = 618, + [707] = 674, + [708] = 616, + [709] = 709, + [710] = 191, + [711] = 675, + [712] = 636, + [713] = 637, + [714] = 367, + [715] = 638, + [716] = 639, + [717] = 366, + [718] = 685, + [719] = 368, + [720] = 369, + [721] = 721, + [722] = 617, + [723] = 601, + [724] = 619, + [725] = 602, + [726] = 498, + [727] = 603, + [728] = 604, + [729] = 673, + [730] = 605, + [731] = 645, + [732] = 646, + [733] = 606, + [734] = 607, + [735] = 676, + [736] = 677, + [737] = 737, + [738] = 499, + [739] = 620, + [740] = 680, + [741] = 608, + [742] = 681, + [743] = 609, + [744] = 682, + [745] = 610, + [746] = 684, + [747] = 647, + [748] = 644, + [749] = 648, + [750] = 649, + [751] = 621, [752] = 622, - [753] = 638, - [754] = 617, - [755] = 618, - [756] = 639, - [757] = 642, - [758] = 666, - [759] = 649, - [760] = 668, - [761] = 690, - [762] = 648, - [763] = 640, - [764] = 670, - [765] = 669, - [766] = 613, - [767] = 678, - [768] = 679, - [769] = 691, - [770] = 652, - [771] = 614, - [772] = 203, + [753] = 651, + [754] = 141, + [755] = 611, + [756] = 652, + [757] = 145, + [758] = 612, + [759] = 144, + [760] = 653, + [761] = 150, + [762] = 613, + [763] = 614, + [764] = 615, + [765] = 655, + [766] = 189, + [767] = 767, + [768] = 768, + [769] = 768, + [770] = 319, + [771] = 322, + [772] = 772, [773] = 773, [774] = 774, - [775] = 773, - [776] = 776, + [775] = 191, + [776] = 327, [777] = 777, - [778] = 336, - [779] = 335, + [778] = 778, + [779] = 779, [780] = 780, - [781] = 204, - [782] = 782, - [783] = 335, - [784] = 784, + [781] = 335, + [782] = 319, + [783] = 783, + [784] = 322, [785] = 785, - [786] = 786, + [786] = 319, [787] = 787, - [788] = 336, - [789] = 342, + [788] = 322, + [789] = 322, [790] = 790, - [791] = 335, - [792] = 335, - [793] = 793, - [794] = 341, - [795] = 336, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 336, - [800] = 796, - [801] = 342, - [802] = 356, - [803] = 357, - [804] = 785, - [805] = 786, - [806] = 341, - [807] = 342, - [808] = 336, - [809] = 341, - [810] = 798, + [791] = 791, + [792] = 792, + [793] = 319, + [794] = 792, + [795] = 319, + [796] = 785, + [797] = 779, + [798] = 340, + [799] = 327, + [800] = 341, + [801] = 322, + [802] = 791, + [803] = 342, + [804] = 327, + [805] = 343, + [806] = 327, + [807] = 335, + [808] = 335, + [809] = 335, + [810] = 810, [811] = 787, - [812] = 812, - [813] = 353, - [814] = 342, - [815] = 341, - [816] = 355, - [817] = 335, - [818] = 336, - [819] = 357, - [820] = 342, - [821] = 355, - [822] = 353, - [823] = 356, - [824] = 356, - [825] = 812, - [826] = 335, - [827] = 341, - [828] = 357, - [829] = 812, - [830] = 357, - [831] = 356, - [832] = 355, - [833] = 812, - [834] = 355, - [835] = 353, - [836] = 353, - [837] = 356, - [838] = 812, - [839] = 353, - [840] = 341, - [841] = 342, - [842] = 357, - [843] = 355, - [844] = 844, - [845] = 844, - [846] = 844, - [847] = 844, - [848] = 356, - [849] = 844, - [850] = 844, - [851] = 851, - [852] = 844, - [853] = 844, - [854] = 844, - [855] = 844, - [856] = 844, - [857] = 357, - [858] = 851, - [859] = 859, - [860] = 844, - [861] = 355, - [862] = 844, - [863] = 844, - [864] = 844, - [865] = 844, - [866] = 844, - [867] = 353, - [868] = 859, - [869] = 812, - [870] = 851, - [871] = 844, + [812] = 810, + [813] = 341, + [814] = 340, + [815] = 335, + [816] = 319, + [817] = 810, + [818] = 340, + [819] = 810, + [820] = 341, + [821] = 340, + [822] = 327, + [823] = 343, + [824] = 342, + [825] = 341, + [826] = 322, + [827] = 342, + [828] = 343, + [829] = 342, + [830] = 343, + [831] = 335, + [832] = 341, + [833] = 342, + [834] = 810, + [835] = 340, + [836] = 343, + [837] = 327, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 840, + [842] = 342, + [843] = 840, + [844] = 343, + [845] = 341, + [846] = 838, + [847] = 840, + [848] = 840, + [849] = 840, + [850] = 840, + [851] = 840, + [852] = 840, + [853] = 840, + [854] = 839, + [855] = 840, + [856] = 840, + [857] = 840, + [858] = 840, + [859] = 840, + [860] = 840, + [861] = 340, + [862] = 810, + [863] = 838, + [864] = 864, + [865] = 864, + [866] = 866, + [867] = 866, + [868] = 866, + [869] = 864, + [870] = 864, + [871] = 866, [872] = 872, [873] = 872, - [874] = 874, + [874] = 864, [875] = 872, - [876] = 874, - [877] = 872, - [878] = 874, - [879] = 874, - [880] = 880, - [881] = 880, - [882] = 882, - [883] = 880, + [876] = 866, + [877] = 877, + [878] = 872, + [879] = 872, + [880] = 872, + [881] = 872, + [882] = 872, + [883] = 872, [884] = 872, - [885] = 874, - [886] = 880, - [887] = 880, - [888] = 880, - [889] = 880, - [890] = 880, - [891] = 880, - [892] = 880, - [893] = 880, - [894] = 880, - [895] = 880, - [896] = 880, - [897] = 880, - [898] = 880, - [899] = 880, - [900] = 880, - [901] = 880, - [902] = 874, - [903] = 872, - [904] = 904, + [885] = 872, + [886] = 872, + [887] = 872, + [888] = 872, + [889] = 872, + [890] = 872, + [891] = 872, + [892] = 866, + [893] = 864, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 894, [905] = 905, [906] = 906, [907] = 907, @@ -6155,11 +6093,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 933, + [933] = 923, [934] = 934, [935] = 935, [936] = 936, - [937] = 904, + [937] = 937, [938] = 938, [939] = 939, [940] = 940, @@ -6171,1388 +6109,1388 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [946] = 946, [947] = 947, [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 905, - [958] = 906, - [959] = 907, - [960] = 908, - [961] = 909, - [962] = 910, - [963] = 911, - [964] = 912, - [965] = 913, - [966] = 914, - [967] = 915, - [968] = 916, - [969] = 917, - [970] = 918, - [971] = 919, - [972] = 920, - [973] = 921, - [974] = 922, - [975] = 923, - [976] = 924, - [977] = 925, - [978] = 926, - [979] = 927, - [980] = 928, - [981] = 929, - [982] = 930, - [983] = 931, - [984] = 932, - [985] = 933, - [986] = 934, - [987] = 935, - [988] = 956, - [989] = 989, - [990] = 938, - [991] = 939, - [992] = 940, - [993] = 941, - [994] = 942, - [995] = 943, - [996] = 944, - [997] = 945, - [998] = 946, - [999] = 947, - [1000] = 948, - [1001] = 949, - [1002] = 950, - [1003] = 951, - [1004] = 952, - [1005] = 953, - [1006] = 954, - [1007] = 955, - [1008] = 956, - [1009] = 905, - [1010] = 906, - [1011] = 907, - [1012] = 908, - [1013] = 909, - [1014] = 910, - [1015] = 911, - [1016] = 912, - [1017] = 913, - [1018] = 914, - [1019] = 915, - [1020] = 916, - [1021] = 917, - [1022] = 918, - [1023] = 919, - [1024] = 920, - [1025] = 921, - [1026] = 922, - [1027] = 923, - [1028] = 924, - [1029] = 925, - [1030] = 926, - [1031] = 927, - [1032] = 928, - [1033] = 929, - [1034] = 930, - [1035] = 931, - [1036] = 932, - [1037] = 933, - [1038] = 934, - [1039] = 935, - [1040] = 936, - [1041] = 1041, - [1042] = 1042, - [1043] = 904, - [1044] = 938, - [1045] = 939, - [1046] = 940, - [1047] = 941, - [1048] = 942, - [1049] = 943, - [1050] = 944, - [1051] = 945, - [1052] = 946, - [1053] = 947, - [1054] = 948, - [1055] = 949, - [1056] = 950, - [1057] = 951, - [1058] = 952, - [1059] = 953, - [1060] = 954, - [1061] = 955, - [1062] = 936, + [949] = 945, + [950] = 943, + [951] = 895, + [952] = 896, + [953] = 897, + [954] = 898, + [955] = 924, + [956] = 899, + [957] = 919, + [958] = 958, + [959] = 925, + [960] = 926, + [961] = 927, + [962] = 900, + [963] = 934, + [964] = 948, + [965] = 895, + [966] = 896, + [967] = 897, + [968] = 898, + [969] = 899, + [970] = 900, + [971] = 901, + [972] = 902, + [973] = 903, + [974] = 944, + [975] = 905, + [976] = 907, + [977] = 908, + [978] = 909, + [979] = 910, + [980] = 911, + [981] = 912, + [982] = 913, + [983] = 914, + [984] = 915, + [985] = 916, + [986] = 917, + [987] = 918, + [988] = 919, + [989] = 920, + [990] = 921, + [991] = 922, + [992] = 923, + [993] = 924, + [994] = 925, + [995] = 926, + [996] = 927, + [997] = 928, + [998] = 929, + [999] = 930, + [1000] = 931, + [1001] = 932, + [1002] = 935, + [1003] = 936, + [1004] = 937, + [1005] = 938, + [1006] = 939, + [1007] = 940, + [1008] = 941, + [1009] = 942, + [1010] = 943, + [1011] = 944, + [1012] = 945, + [1013] = 946, + [1014] = 947, + [1015] = 901, + [1016] = 902, + [1017] = 903, + [1018] = 928, + [1019] = 929, + [1020] = 1020, + [1021] = 894, + [1022] = 930, + [1023] = 931, + [1024] = 905, + [1025] = 932, + [1026] = 946, + [1027] = 907, + [1028] = 908, + [1029] = 909, + [1030] = 910, + [1031] = 911, + [1032] = 912, + [1033] = 918, + [1034] = 913, + [1035] = 914, + [1036] = 920, + [1037] = 915, + [1038] = 921, + [1039] = 922, + [1040] = 916, + [1041] = 935, + [1042] = 917, + [1043] = 936, + [1044] = 937, + [1045] = 938, + [1046] = 939, + [1047] = 940, + [1048] = 941, + [1049] = 942, + [1050] = 934, + [1051] = 948, + [1052] = 947, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, [1063] = 1063, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, + [1064] = 1059, + [1065] = 1060, + [1066] = 1061, [1067] = 1067, [1068] = 1068, - [1069] = 1069, - [1070] = 1063, - [1071] = 1071, - [1072] = 1072, - [1073] = 1071, - [1074] = 1066, - [1075] = 1072, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1064, - [1082] = 1065, - [1083] = 1066, - [1084] = 1067, - [1085] = 1077, - [1086] = 1078, - [1087] = 1079, - [1088] = 1080, - [1089] = 1064, - [1090] = 1065, - [1091] = 1066, - [1092] = 1067, - [1093] = 1068, - [1094] = 1069, - [1095] = 1063, - [1096] = 1071, - [1097] = 1072, - [1098] = 1067, - [1099] = 1068, - [1100] = 1077, - [1101] = 1078, - [1102] = 1079, - [1103] = 1080, - [1104] = 1064, - [1105] = 1065, - [1106] = 1066, - [1107] = 1067, - [1108] = 1068, - [1109] = 1069, - [1110] = 1063, - [1111] = 1080, - [1112] = 1072, - [1113] = 1069, + [1069] = 1062, + [1070] = 1058, + [1071] = 1068, + [1072] = 1067, + [1073] = 1053, + [1074] = 1054, + [1075] = 1055, + [1076] = 1056, + [1077] = 1057, + [1078] = 1058, + [1079] = 1059, + [1080] = 1060, + [1081] = 1061, + [1082] = 1062, + [1083] = 1063, + [1084] = 1059, + [1085] = 1063, + [1086] = 1062, + [1087] = 1063, + [1088] = 1068, + [1089] = 1067, + [1090] = 1053, + [1091] = 1054, + [1092] = 1068, + [1093] = 1053, + [1094] = 1067, + [1095] = 1054, + [1096] = 1067, + [1097] = 1054, + [1098] = 1055, + [1099] = 1055, + [1100] = 1100, + [1101] = 1057, + [1102] = 1056, + [1103] = 1057, + [1104] = 1058, + [1105] = 1060, + [1106] = 1100, + [1107] = 1107, + [1108] = 1061, + [1109] = 1059, + [1110] = 1056, + [1111] = 1060, + [1112] = 1061, + [1113] = 1062, [1114] = 1063, - [1115] = 1077, - [1116] = 1078, - [1117] = 1079, - [1118] = 1080, - [1119] = 1064, - [1120] = 1065, - [1121] = 1066, - [1122] = 1067, - [1123] = 1068, - [1124] = 1069, - [1125] = 1063, - [1126] = 1071, - [1127] = 1072, - [1128] = 1071, - [1129] = 1072, - [1130] = 1077, - [1131] = 1078, - [1132] = 1079, - [1133] = 1080, - [1134] = 1064, - [1135] = 1065, - [1136] = 1066, - [1137] = 1067, - [1138] = 1068, - [1139] = 1139, - [1140] = 1068, - [1141] = 1069, - [1142] = 1077, - [1143] = 1071, - [1144] = 1072, - [1145] = 1078, - [1146] = 1079, - [1147] = 1139, - [1148] = 1080, - [1149] = 1064, - [1150] = 1069, - [1151] = 1063, - [1152] = 1065, - [1153] = 1077, - [1154] = 1078, - [1155] = 1079, - [1156] = 1071, - [1157] = 1157, - [1158] = 1157, - [1159] = 1157, + [1115] = 1055, + [1116] = 1056, + [1117] = 1057, + [1118] = 1068, + [1119] = 1067, + [1120] = 1053, + [1121] = 1054, + [1122] = 1055, + [1123] = 1056, + [1124] = 1057, + [1125] = 1058, + [1126] = 1059, + [1127] = 1060, + [1128] = 1061, + [1129] = 1062, + [1130] = 1063, + [1131] = 1058, + [1132] = 1068, + [1133] = 1053, + [1134] = 1134, + [1135] = 1134, + [1136] = 1134, + [1137] = 1137, + [1138] = 1138, + [1139] = 1137, + [1140] = 1140, + [1141] = 1141, + [1142] = 1138, + [1143] = 1141, + [1144] = 1144, + [1145] = 1134, + [1146] = 1134, + [1147] = 189, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 319, + [1154] = 1154, + [1155] = 319, + [1156] = 191, + [1157] = 322, + [1158] = 322, + [1159] = 319, [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1162, - [1164] = 1161, - [1165] = 1165, - [1166] = 1160, - [1167] = 1157, - [1168] = 1168, - [1169] = 1169, - [1170] = 203, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1157, - [1176] = 336, - [1177] = 336, - [1178] = 335, - [1179] = 1179, - [1180] = 336, - [1181] = 335, - [1182] = 204, - [1183] = 1183, + [1163] = 1163, + [1164] = 1164, + [1165] = 1161, + [1166] = 1166, + [1167] = 1164, + [1168] = 322, + [1169] = 327, + [1170] = 335, + [1171] = 327, + [1172] = 335, + [1173] = 335, + [1174] = 322, + [1175] = 319, + [1176] = 1176, + [1177] = 1177, + [1178] = 327, + [1179] = 1177, + [1180] = 1176, + [1181] = 1181, + [1182] = 810, + [1183] = 340, [1184] = 1184, - [1185] = 335, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1188, - [1190] = 1184, - [1191] = 1191, - [1192] = 342, - [1193] = 1193, - [1194] = 1194, - [1195] = 342, - [1196] = 341, - [1197] = 342, - [1198] = 336, - [1199] = 1194, - [1200] = 1193, - [1201] = 341, - [1202] = 341, - [1203] = 335, - [1204] = 1204, - [1205] = 1205, - [1206] = 353, - [1207] = 357, - [1208] = 353, - [1209] = 812, - [1210] = 336, - [1211] = 355, - [1212] = 356, - [1213] = 1204, - [1214] = 1205, - [1215] = 357, - [1216] = 335, - [1217] = 353, - [1218] = 355, - [1219] = 1204, - [1220] = 341, - [1221] = 342, - [1222] = 356, - [1223] = 355, - [1224] = 812, - [1225] = 812, - [1226] = 356, - [1227] = 357, - [1228] = 1205, - [1229] = 812, - [1230] = 353, - [1231] = 1231, - [1232] = 1232, - [1233] = 1232, - [1234] = 1234, + [1185] = 341, + [1186] = 342, + [1187] = 343, + [1188] = 340, + [1189] = 341, + [1190] = 342, + [1191] = 343, + [1192] = 322, + [1193] = 319, + [1194] = 810, + [1195] = 335, + [1196] = 340, + [1197] = 1197, + [1198] = 1181, + [1199] = 1197, + [1200] = 1184, + [1201] = 1197, + [1202] = 1181, + [1203] = 1184, + [1204] = 810, + [1205] = 341, + [1206] = 342, + [1207] = 343, + [1208] = 327, + [1209] = 340, + [1210] = 341, + [1211] = 342, + [1212] = 343, + [1213] = 810, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1217, + [1219] = 327, + [1220] = 1220, + [1221] = 335, + [1222] = 1222, + [1223] = 1223, + [1224] = 1223, + [1225] = 1220, + [1226] = 1214, + [1227] = 1216, + [1228] = 1222, + [1229] = 317, + [1230] = 342, + [1231] = 341, + [1232] = 810, + [1233] = 340, + [1234] = 343, [1235] = 1235, - [1236] = 1236, - [1237] = 1237, - [1238] = 355, - [1239] = 341, - [1240] = 356, - [1241] = 357, - [1242] = 1235, - [1243] = 1231, - [1244] = 1236, - [1245] = 1245, - [1246] = 1237, - [1247] = 1234, - [1248] = 342, - [1249] = 353, - [1250] = 1250, - [1251] = 355, - [1252] = 314, - [1253] = 356, - [1254] = 357, - [1255] = 1250, - [1256] = 812, - [1257] = 336, - [1258] = 335, - [1259] = 314, - [1260] = 334, - [1261] = 333, + [1236] = 1235, + [1237] = 321, + [1238] = 319, + [1239] = 317, + [1240] = 320, + [1241] = 137, + [1242] = 322, + [1243] = 318, + [1244] = 1244, + [1245] = 331, + [1246] = 322, + [1247] = 322, + [1248] = 1248, + [1249] = 1244, + [1250] = 319, + [1251] = 139, + [1252] = 1252, + [1253] = 1253, + [1254] = 327, + [1255] = 138, + [1256] = 1256, + [1257] = 1257, + [1258] = 1248, + [1259] = 329, + [1260] = 318, + [1261] = 320, [1262] = 332, - [1263] = 1263, - [1264] = 1264, - [1265] = 336, - [1266] = 335, - [1267] = 1267, - [1268] = 150, - [1269] = 1263, - [1270] = 348, - [1271] = 1271, - [1272] = 337, - [1273] = 346, - [1274] = 347, - [1275] = 1275, - [1276] = 1276, - [1277] = 336, - [1278] = 1264, - [1279] = 335, - [1280] = 1263, - [1281] = 333, - [1282] = 1275, - [1283] = 1271, - [1284] = 1275, - [1285] = 1276, - [1286] = 1276, - [1287] = 1263, - [1288] = 150, - [1289] = 332, - [1290] = 1263, - [1291] = 1271, - [1292] = 1275, - [1293] = 1276, - [1294] = 1263, - [1295] = 1271, - [1296] = 1275, - [1297] = 1276, - [1298] = 1263, - [1299] = 1271, - [1300] = 1275, - [1301] = 1276, - [1302] = 1263, - [1303] = 1271, - [1304] = 1275, - [1305] = 1276, - [1306] = 1263, - [1307] = 1271, - [1308] = 1275, - [1309] = 1276, - [1310] = 1263, - [1311] = 1271, - [1312] = 1275, - [1313] = 1276, - [1314] = 341, - [1315] = 1263, - [1316] = 1271, - [1317] = 1275, - [1318] = 1276, - [1319] = 1263, - [1320] = 1263, - [1321] = 1271, - [1322] = 1275, - [1323] = 1276, - [1324] = 1263, - [1325] = 1271, - [1326] = 1275, - [1327] = 1276, - [1328] = 334, - [1329] = 1263, - [1330] = 1271, - [1331] = 1275, - [1332] = 1276, - [1333] = 1275, - [1334] = 1271, - [1335] = 342, - [1336] = 1275, - [1337] = 1276, - [1338] = 1271, - [1339] = 354, - [1340] = 335, - [1341] = 341, - [1342] = 360, - [1343] = 1343, + [1263] = 1244, + [1264] = 1248, + [1265] = 1253, + [1266] = 1256, + [1267] = 1252, + [1268] = 1244, + [1269] = 1253, + [1270] = 1252, + [1271] = 1253, + [1272] = 1248, + [1273] = 1244, + [1274] = 1252, + [1275] = 1253, + [1276] = 1248, + [1277] = 1244, + [1278] = 1252, + [1279] = 1253, + [1280] = 1248, + [1281] = 1244, + [1282] = 1252, + [1283] = 1253, + [1284] = 321, + [1285] = 1248, + [1286] = 1244, + [1287] = 1252, + [1288] = 1253, + [1289] = 1252, + [1290] = 1248, + [1291] = 1244, + [1292] = 1252, + [1293] = 1253, + [1294] = 1248, + [1295] = 1244, + [1296] = 1252, + [1297] = 1253, + [1298] = 1248, + [1299] = 1244, + [1300] = 1252, + [1301] = 1253, + [1302] = 1248, + [1303] = 1252, + [1304] = 330, + [1305] = 1248, + [1306] = 335, + [1307] = 319, + [1308] = 330, + [1309] = 335, + [1310] = 866, + [1311] = 142, + [1312] = 1257, + [1313] = 337, + [1314] = 335, + [1315] = 141, + [1316] = 340, + [1317] = 145, + [1318] = 342, + [1319] = 345, + [1320] = 329, + [1321] = 140, + [1322] = 144, + [1323] = 137, + [1324] = 864, + [1325] = 332, + [1326] = 327, + [1327] = 343, + [1328] = 1328, + [1329] = 864, + [1330] = 344, + [1331] = 322, + [1332] = 341, + [1333] = 319, + [1334] = 866, + [1335] = 327, + [1336] = 143, + [1337] = 864, + [1338] = 137, + [1339] = 866, + [1340] = 351, + [1341] = 331, + [1342] = 139, + [1343] = 340, [1344] = 342, - [1345] = 341, - [1346] = 152, - [1347] = 342, - [1348] = 150, - [1349] = 151, - [1350] = 353, - [1351] = 872, - [1352] = 874, - [1353] = 346, - [1354] = 152, - [1355] = 151, - [1356] = 872, - [1357] = 874, - [1358] = 872, - [1359] = 874, - [1360] = 348, - [1361] = 355, - [1362] = 1267, - [1363] = 352, - [1364] = 356, - [1365] = 357, - [1366] = 358, - [1367] = 150, - [1368] = 347, - [1369] = 336, - [1370] = 337, - [1371] = 153, - [1372] = 332, - [1373] = 153, - [1374] = 354, - [1375] = 353, - [1376] = 155, - [1377] = 358, - [1378] = 1378, - [1379] = 152, - [1380] = 356, - [1381] = 158, - [1382] = 154, - [1383] = 357, - [1384] = 1384, - [1385] = 355, - [1386] = 156, - [1387] = 355, - [1388] = 150, - [1389] = 155, - [1390] = 353, - [1391] = 342, - [1392] = 360, - [1393] = 156, - [1394] = 356, - [1395] = 157, - [1396] = 158, - [1397] = 872, - [1398] = 368, - [1399] = 152, - [1400] = 1400, - [1401] = 151, - [1402] = 369, - [1403] = 151, - [1404] = 314, - [1405] = 154, - [1406] = 874, - [1407] = 357, - [1408] = 341, - [1409] = 352, - [1410] = 157, - [1411] = 1411, - [1412] = 156, - [1413] = 161, - [1414] = 334, - [1415] = 357, - [1416] = 160, - [1417] = 159, - [1418] = 156, - [1419] = 157, - [1420] = 155, - [1421] = 157, - [1422] = 358, - [1423] = 155, - [1424] = 153, - [1425] = 161, - [1426] = 153, - [1427] = 160, - [1428] = 159, - [1429] = 158, - [1430] = 154, - [1431] = 355, - [1432] = 333, - [1433] = 368, - [1434] = 152, - [1435] = 151, - [1436] = 1378, - [1437] = 369, - [1438] = 348, - [1439] = 360, - [1440] = 1440, - [1441] = 337, - [1442] = 346, - [1443] = 872, - [1444] = 874, - [1445] = 389, - [1446] = 347, - [1447] = 390, - [1448] = 336, - [1449] = 356, - [1450] = 378, - [1451] = 379, - [1452] = 158, - [1453] = 154, - [1454] = 335, - [1455] = 381, - [1456] = 382, - [1457] = 353, - [1458] = 314, - [1459] = 159, - [1460] = 378, - [1461] = 403, - [1462] = 360, - [1463] = 368, - [1464] = 358, - [1465] = 158, - [1466] = 154, - [1467] = 404, - [1468] = 379, - [1469] = 405, - [1470] = 406, - [1471] = 381, - [1472] = 382, - [1473] = 407, - [1474] = 410, - [1475] = 163, - [1476] = 412, - [1477] = 414, - [1478] = 163, - [1479] = 416, - [1480] = 417, - [1481] = 1481, - [1482] = 161, - [1483] = 156, - [1484] = 360, - [1485] = 369, - [1486] = 160, - [1487] = 445, - [1488] = 389, - [1489] = 419, - [1490] = 341, - [1491] = 332, - [1492] = 157, - [1493] = 155, - [1494] = 342, - [1495] = 159, - [1496] = 153, - [1497] = 425, - [1498] = 422, - [1499] = 161, - [1500] = 1400, - [1501] = 421, - [1502] = 401, - [1503] = 402, - [1504] = 390, - [1505] = 334, - [1506] = 423, - [1507] = 160, - [1508] = 163, - [1509] = 444, - [1510] = 333, - [1511] = 358, - [1512] = 426, - [1513] = 439, - [1514] = 150, + [1345] = 1345, + [1346] = 343, + [1347] = 341, + [1348] = 342, + [1349] = 343, + [1350] = 137, + [1351] = 1351, + [1352] = 351, + [1353] = 139, + [1354] = 1354, + [1355] = 352, + [1356] = 351, + [1357] = 148, + [1358] = 138, + [1359] = 147, + [1360] = 146, + [1361] = 317, + [1362] = 355, + [1363] = 327, + [1364] = 337, + [1365] = 318, + [1366] = 340, + [1367] = 337, + [1368] = 345, + [1369] = 335, + [1370] = 341, + [1371] = 866, + [1372] = 864, + [1373] = 344, + [1374] = 138, + [1375] = 332, + [1376] = 366, + [1377] = 140, + [1378] = 143, + [1379] = 141, + [1380] = 317, + [1381] = 137, + [1382] = 145, + [1383] = 1383, + [1384] = 144, + [1385] = 320, + [1386] = 866, + [1387] = 864, + [1388] = 321, + [1389] = 145, + [1390] = 383, + [1391] = 368, + [1392] = 1392, + [1393] = 345, + [1394] = 369, + [1395] = 371, + [1396] = 143, + [1397] = 340, + [1398] = 142, + [1399] = 141, + [1400] = 144, + [1401] = 329, + [1402] = 139, + [1403] = 142, + [1404] = 341, + [1405] = 138, + [1406] = 352, + [1407] = 367, + [1408] = 344, + [1409] = 150, + [1410] = 330, + [1411] = 331, + [1412] = 355, + [1413] = 139, + [1414] = 342, + [1415] = 1345, + [1416] = 138, + [1417] = 343, + [1418] = 140, + [1419] = 369, + [1420] = 366, + [1421] = 140, + [1422] = 143, + [1423] = 145, + [1424] = 144, + [1425] = 371, + [1426] = 436, + [1427] = 141, + [1428] = 148, + [1429] = 321, + [1430] = 345, + [1431] = 383, + [1432] = 145, + [1433] = 418, + [1434] = 419, + [1435] = 420, + [1436] = 322, + [1437] = 345, + [1438] = 147, + [1439] = 146, + [1440] = 318, + [1441] = 148, + [1442] = 421, + [1443] = 144, + [1444] = 422, + [1445] = 384, + [1446] = 320, + [1447] = 415, + [1448] = 424, + [1449] = 1351, + [1450] = 425, + [1451] = 426, + [1452] = 142, + [1453] = 427, + [1454] = 428, + [1455] = 429, + [1456] = 147, + [1457] = 137, + [1458] = 430, + [1459] = 146, + [1460] = 431, + [1461] = 319, + [1462] = 352, + [1463] = 432, + [1464] = 433, + [1465] = 367, + [1466] = 141, + [1467] = 413, + [1468] = 344, + [1469] = 140, + [1470] = 143, + [1471] = 1471, + [1472] = 355, + [1473] = 142, + [1474] = 417, + [1475] = 150, + [1476] = 368, + [1477] = 412, + [1478] = 344, + [1479] = 423, + [1480] = 445, + [1481] = 413, + [1482] = 146, + [1483] = 331, + [1484] = 150, + [1485] = 384, + [1486] = 423, + [1487] = 1383, + [1488] = 138, + [1489] = 472, + [1490] = 424, + [1491] = 345, + [1492] = 425, + [1493] = 415, + [1494] = 344, + [1495] = 367, + [1496] = 426, + [1497] = 332, + [1498] = 427, + [1499] = 1499, + [1500] = 1500, + [1501] = 448, + [1502] = 436, + [1503] = 352, + [1504] = 428, + [1505] = 1505, + [1506] = 499, + [1507] = 355, + [1508] = 487, + [1509] = 137, + [1510] = 148, + [1511] = 345, + [1512] = 498, + [1513] = 429, + [1514] = 430, [1515] = 418, - [1516] = 1440, - [1517] = 357, - [1518] = 422, - [1519] = 337, - [1520] = 346, - [1521] = 445, - [1522] = 347, - [1523] = 1411, - [1524] = 1524, - [1525] = 405, - [1526] = 150, - [1527] = 360, - [1528] = 379, - [1529] = 406, - [1530] = 163, - [1531] = 407, - [1532] = 368, - [1533] = 161, - [1534] = 453, - [1535] = 474, - [1536] = 426, - [1537] = 403, - [1538] = 1538, - [1539] = 410, - [1540] = 454, - [1541] = 369, - [1542] = 160, - [1543] = 404, - [1544] = 444, - [1545] = 336, - [1546] = 159, - [1547] = 152, - [1548] = 452, - [1549] = 412, - [1550] = 358, - [1551] = 151, - [1552] = 335, - [1553] = 414, - [1554] = 416, - [1555] = 358, - [1556] = 157, - [1557] = 456, - [1558] = 500, - [1559] = 450, - [1560] = 1267, - [1561] = 417, - [1562] = 401, - [1563] = 418, - [1564] = 402, - [1565] = 381, - [1566] = 419, - [1567] = 423, - [1568] = 378, - [1569] = 353, - [1570] = 382, - [1571] = 156, - [1572] = 480, - [1573] = 360, - [1574] = 348, - [1575] = 421, - [1576] = 1576, - [1577] = 425, - [1578] = 356, - [1579] = 352, - [1580] = 1524, - [1581] = 150, - [1582] = 355, - [1583] = 158, - [1584] = 155, - [1585] = 154, - [1586] = 354, - [1587] = 1524, - [1588] = 368, - [1589] = 153, - [1590] = 369, - [1591] = 439, - [1592] = 455, - [1593] = 406, - [1594] = 450, + [1516] = 139, + [1517] = 431, + [1518] = 1257, + [1519] = 327, + [1520] = 419, + [1521] = 1500, + [1522] = 420, + [1523] = 421, + [1524] = 148, + [1525] = 412, + [1526] = 366, + [1527] = 352, + [1528] = 335, + [1529] = 1500, + [1530] = 368, + [1531] = 344, + [1532] = 422, + [1533] = 147, + [1534] = 146, + [1535] = 319, + [1536] = 1392, + [1537] = 417, + [1538] = 432, + [1539] = 433, + [1540] = 369, + [1541] = 330, + [1542] = 329, + [1543] = 147, + [1544] = 491, + [1545] = 492, + [1546] = 493, + [1547] = 355, + [1548] = 322, + [1549] = 1500, + [1550] = 433, + [1551] = 427, + [1552] = 527, + [1553] = 516, + [1554] = 138, + [1555] = 517, + [1556] = 428, + [1557] = 150, + [1558] = 448, + [1559] = 366, + [1560] = 352, + [1561] = 355, + [1562] = 431, + [1563] = 487, + [1564] = 366, + [1565] = 368, + [1566] = 368, + [1567] = 369, + [1568] = 520, + [1569] = 472, + [1570] = 369, + [1571] = 425, + [1572] = 426, + [1573] = 528, + [1574] = 1574, + [1575] = 1575, + [1576] = 344, + [1577] = 529, + [1578] = 530, + [1579] = 498, + [1580] = 140, + [1581] = 143, + [1582] = 499, + [1583] = 1583, + [1584] = 521, + [1585] = 340, + [1586] = 341, + [1587] = 342, + [1588] = 343, + [1589] = 345, + [1590] = 1590, + [1591] = 367, + [1592] = 493, + [1593] = 141, + [1594] = 355, [1595] = 1595, - [1596] = 341, - [1597] = 404, - [1598] = 549, - [1599] = 405, - [1600] = 352, - [1601] = 1601, - [1602] = 548, - [1603] = 382, - [1604] = 555, - [1605] = 474, - [1606] = 561, - [1607] = 536, - [1608] = 535, - [1609] = 480, - [1610] = 1610, - [1611] = 407, - [1612] = 158, - [1613] = 154, - [1614] = 421, - [1615] = 379, - [1616] = 554, - [1617] = 1617, - [1618] = 1618, - [1619] = 410, - [1620] = 412, - [1621] = 151, - [1622] = 360, - [1623] = 368, - [1624] = 152, - [1625] = 1625, - [1626] = 533, - [1627] = 444, - [1628] = 414, - [1629] = 1629, - [1630] = 416, - [1631] = 1538, - [1632] = 417, - [1633] = 418, - [1634] = 537, - [1635] = 368, - [1636] = 419, - [1637] = 369, - [1638] = 452, - [1639] = 1639, - [1640] = 527, - [1641] = 342, - [1642] = 1524, - [1643] = 161, - [1644] = 152, - [1645] = 1267, - [1646] = 439, - [1647] = 159, - [1648] = 150, - [1649] = 354, - [1650] = 163, - [1651] = 1651, - [1652] = 401, - [1653] = 455, - [1654] = 381, - [1655] = 156, - [1656] = 378, - [1657] = 369, - [1658] = 157, - [1659] = 155, - [1660] = 402, - [1661] = 379, - [1662] = 153, - [1663] = 445, - [1664] = 381, - [1665] = 382, - [1666] = 453, - [1667] = 403, - [1668] = 1576, - [1669] = 151, - [1670] = 456, - [1671] = 500, - [1672] = 454, - [1673] = 160, - [1674] = 378, - [1675] = 358, - [1676] = 161, - [1677] = 1677, - [1678] = 156, - [1679] = 157, - [1680] = 155, - [1681] = 358, - [1682] = 153, - [1683] = 554, - [1684] = 358, - [1685] = 160, - [1686] = 159, - [1687] = 533, - [1688] = 1618, - [1689] = 1629, - [1690] = 378, - [1691] = 1625, - [1692] = 1692, - [1693] = 360, - [1694] = 163, - [1695] = 379, - [1696] = 425, - [1697] = 527, - [1698] = 549, - [1699] = 381, - [1700] = 527, - [1701] = 382, - [1702] = 549, - [1703] = 555, - [1704] = 536, - [1705] = 1705, - [1706] = 537, - [1707] = 1601, - [1708] = 1617, - [1709] = 555, - [1710] = 353, - [1711] = 536, - [1712] = 426, - [1713] = 378, - [1714] = 355, - [1715] = 422, - [1716] = 379, - [1717] = 356, - [1718] = 1718, - [1719] = 368, - [1720] = 535, - [1721] = 369, - [1722] = 357, - [1723] = 382, - [1724] = 156, - [1725] = 157, - [1726] = 155, - [1727] = 1727, - [1728] = 150, - [1729] = 153, - [1730] = 1651, - [1731] = 1731, - [1732] = 1732, - [1733] = 152, - [1734] = 564, - [1735] = 1595, - [1736] = 352, - [1737] = 423, - [1738] = 474, - [1739] = 354, - [1740] = 453, - [1741] = 151, - [1742] = 480, + [1596] = 1596, + [1597] = 1597, + [1598] = 531, + [1599] = 1599, + [1600] = 145, + [1601] = 429, + [1602] = 144, + [1603] = 1505, + [1604] = 139, + [1605] = 142, + [1606] = 430, + [1607] = 432, + [1608] = 445, + [1609] = 514, + [1610] = 445, + [1611] = 327, + [1612] = 367, + [1613] = 492, + [1614] = 1257, + [1615] = 1499, + [1616] = 335, + [1617] = 417, + [1618] = 424, + [1619] = 448, + [1620] = 418, + [1621] = 419, + [1622] = 1622, + [1623] = 420, + [1624] = 421, + [1625] = 422, + [1626] = 384, + [1627] = 423, + [1628] = 491, + [1629] = 352, + [1630] = 514, + [1631] = 1590, + [1632] = 368, + [1633] = 527, + [1634] = 148, + [1635] = 140, + [1636] = 369, + [1637] = 368, + [1638] = 1638, + [1639] = 1622, + [1640] = 340, + [1641] = 355, + [1642] = 531, + [1643] = 337, + [1644] = 529, + [1645] = 343, + [1646] = 341, + [1647] = 520, + [1648] = 530, + [1649] = 369, + [1650] = 147, + [1651] = 139, + [1652] = 146, + [1653] = 1653, + [1654] = 521, + [1655] = 601, + [1656] = 1656, + [1657] = 344, + [1658] = 143, + [1659] = 345, + [1660] = 602, + [1661] = 413, + [1662] = 528, + [1663] = 527, + [1664] = 366, + [1665] = 436, + [1666] = 138, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 366, + [1671] = 1671, + [1672] = 529, + [1673] = 530, + [1674] = 415, + [1675] = 528, + [1676] = 351, + [1677] = 531, + [1678] = 412, + [1679] = 345, + [1680] = 579, + [1681] = 367, + [1682] = 1597, + [1683] = 498, + [1684] = 141, + [1685] = 1638, + [1686] = 137, + [1687] = 1595, + [1688] = 516, + [1689] = 1599, + [1690] = 145, + [1691] = 344, + [1692] = 144, + [1693] = 1693, + [1694] = 367, + [1695] = 352, + [1696] = 1575, + [1697] = 499, + [1698] = 1698, + [1699] = 342, + [1700] = 517, + [1701] = 1596, + [1702] = 142, + [1703] = 150, + [1704] = 1704, + [1705] = 646, + [1706] = 1706, + [1707] = 1707, + [1708] = 656, + [1709] = 613, + [1710] = 659, + [1711] = 142, + [1712] = 649, + [1713] = 601, + [1714] = 1671, + [1715] = 579, + [1716] = 636, + [1717] = 660, + [1718] = 602, + [1719] = 614, + [1720] = 658, + [1721] = 383, + [1722] = 141, + [1723] = 615, + [1724] = 616, + [1725] = 148, + [1726] = 1726, + [1727] = 355, + [1728] = 529, + [1729] = 605, + [1730] = 617, + [1731] = 530, + [1732] = 618, + [1733] = 1638, + [1734] = 1734, + [1735] = 1735, + [1736] = 371, + [1737] = 1693, + [1738] = 1738, + [1739] = 1739, + [1740] = 611, + [1741] = 610, + [1742] = 619, [1743] = 352, - [1744] = 454, - [1745] = 1692, - [1746] = 158, - [1747] = 154, - [1748] = 1748, - [1749] = 360, - [1750] = 152, - [1751] = 1751, - [1752] = 151, - [1753] = 1753, - [1754] = 537, - [1755] = 548, - [1756] = 354, - [1757] = 561, - [1758] = 381, - [1759] = 613, - [1760] = 655, - [1761] = 657, - [1762] = 390, - [1763] = 153, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, + [1744] = 1704, + [1745] = 620, + [1746] = 621, + [1747] = 622, + [1748] = 623, + [1749] = 145, + [1750] = 1750, + [1751] = 528, + [1752] = 624, + [1753] = 612, + [1754] = 144, + [1755] = 625, + [1756] = 626, + [1757] = 1653, + [1758] = 627, + [1759] = 1759, + [1760] = 1656, + [1761] = 628, + [1762] = 629, + [1763] = 654, + [1764] = 531, + [1765] = 499, + [1766] = 1669, + [1767] = 367, [1768] = 1768, - [1769] = 1769, - [1770] = 1748, - [1771] = 665, - [1772] = 624, - [1773] = 1705, - [1774] = 527, - [1775] = 631, - [1776] = 378, - [1777] = 632, - [1778] = 633, - [1779] = 634, - [1780] = 1780, - [1781] = 379, - [1782] = 1782, - [1783] = 368, - [1784] = 381, - [1785] = 637, - [1786] = 382, - [1787] = 638, - [1788] = 639, - [1789] = 1789, - [1790] = 1790, - [1791] = 640, - [1792] = 641, - [1793] = 642, - [1794] = 643, - [1795] = 644, - [1796] = 646, - [1797] = 647, - [1798] = 564, - [1799] = 369, - [1800] = 203, - [1801] = 1801, - [1802] = 549, - [1803] = 648, - [1804] = 635, - [1805] = 622, - [1806] = 555, - [1807] = 536, - [1808] = 608, - [1809] = 654, - [1810] = 658, - [1811] = 656, - [1812] = 666, - [1813] = 668, - [1814] = 670, - [1815] = 677, - [1816] = 678, - [1817] = 679, - [1818] = 158, - [1819] = 154, - [1820] = 691, - [1821] = 1692, - [1822] = 652, - [1823] = 611, - [1824] = 612, - [1825] = 614, - [1826] = 615, - [1827] = 616, - [1828] = 617, - [1829] = 618, - [1830] = 619, - [1831] = 389, - [1832] = 621, - [1833] = 622, - [1834] = 623, - [1835] = 675, - [1836] = 687, - [1837] = 629, - [1838] = 630, - [1839] = 1727, - [1840] = 636, - [1841] = 645, - [1842] = 1732, - [1843] = 161, - [1844] = 1753, + [1769] = 140, + [1770] = 1770, + [1771] = 1759, + [1772] = 527, + [1773] = 653, + [1774] = 143, + [1775] = 498, + [1776] = 142, + [1777] = 366, + [1778] = 145, + [1779] = 672, + [1780] = 662, + [1781] = 150, + [1782] = 189, + [1783] = 1698, + [1784] = 147, + [1785] = 1785, + [1786] = 1786, + [1787] = 355, + [1788] = 638, + [1789] = 674, + [1790] = 639, + [1791] = 368, + [1792] = 146, + [1793] = 369, + [1794] = 637, + [1795] = 603, + [1796] = 604, + [1797] = 1693, + [1798] = 1798, + [1799] = 657, + [1800] = 606, + [1801] = 607, + [1802] = 1656, + [1803] = 1803, + [1804] = 1804, + [1805] = 648, + [1806] = 651, + [1807] = 352, + [1808] = 664, + [1809] = 665, + [1810] = 609, + [1811] = 1638, + [1812] = 141, + [1813] = 685, + [1814] = 608, + [1815] = 645, + [1816] = 652, + [1817] = 647, + [1818] = 144, + [1819] = 1819, + [1820] = 1595, + [1821] = 344, + [1822] = 1798, + [1823] = 1656, + [1824] = 1824, + [1825] = 636, + [1826] = 148, + [1827] = 645, + [1828] = 602, + [1829] = 1596, + [1830] = 646, + [1831] = 367, + [1832] = 144, + [1833] = 1803, + [1834] = 1804, + [1835] = 1835, + [1836] = 1693, + [1837] = 1837, + [1838] = 657, + [1839] = 1839, + [1840] = 579, + [1841] = 147, + [1842] = 1842, + [1843] = 366, + [1844] = 191, [1845] = 1845, - [1846] = 660, - [1847] = 661, - [1848] = 1848, - [1849] = 537, - [1850] = 1850, - [1851] = 160, - [1852] = 159, - [1853] = 368, - [1854] = 1854, - [1855] = 1692, - [1856] = 1848, - [1857] = 453, - [1858] = 158, - [1859] = 154, - [1860] = 623, - [1861] = 454, - [1862] = 156, - [1863] = 157, - [1864] = 155, - [1865] = 152, - [1866] = 163, - [1867] = 153, - [1868] = 156, - [1869] = 1869, + [1846] = 369, + [1847] = 654, + [1848] = 672, + [1849] = 498, + [1850] = 619, + [1851] = 345, + [1852] = 1768, + [1853] = 1853, + [1854] = 367, + [1855] = 366, + [1856] = 620, + [1857] = 1857, + [1858] = 472, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1656, + [1863] = 1863, + [1864] = 605, + [1865] = 1785, + [1866] = 1693, + [1867] = 621, + [1868] = 487, + [1869] = 658, [1870] = 1870, - [1871] = 1727, - [1872] = 1872, + [1871] = 1871, + [1872] = 622, [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 1768, - [1877] = 1769, - [1878] = 369, - [1879] = 151, - [1880] = 157, - [1881] = 1881, - [1882] = 1872, - [1883] = 155, - [1884] = 1731, - [1885] = 1732, - [1886] = 1873, - [1887] = 1874, - [1888] = 1875, - [1889] = 1751, - [1890] = 620, - [1891] = 1891, - [1892] = 381, - [1893] = 1765, - [1894] = 1894, - [1895] = 204, - [1896] = 635, - [1897] = 624, - [1898] = 161, - [1899] = 382, - [1900] = 389, - [1901] = 156, - [1902] = 1727, - [1903] = 453, - [1904] = 157, - [1905] = 155, - [1906] = 1732, - [1907] = 608, - [1908] = 654, - [1909] = 379, - [1910] = 153, - [1911] = 658, - [1912] = 631, - [1913] = 1601, - [1914] = 455, - [1915] = 456, - [1916] = 1617, - [1917] = 632, - [1918] = 633, - [1919] = 634, - [1920] = 1780, - [1921] = 1782, - [1922] = 629, - [1923] = 630, - [1924] = 564, - [1925] = 1925, - [1926] = 382, - [1927] = 1927, - [1928] = 454, - [1929] = 390, - [1930] = 636, - [1931] = 645, - [1932] = 1766, - [1933] = 655, - [1934] = 656, - [1935] = 657, - [1936] = 637, - [1937] = 638, - [1938] = 639, - [1939] = 666, - [1940] = 1789, - [1941] = 1790, - [1942] = 160, - [1943] = 159, - [1944] = 668, - [1945] = 1651, - [1946] = 665, - [1947] = 640, - [1948] = 641, - [1949] = 642, - [1950] = 1950, - [1951] = 1595, - [1952] = 643, - [1953] = 1767, - [1954] = 644, - [1955] = 646, - [1956] = 647, + [1874] = 499, + [1875] = 611, + [1876] = 1876, + [1877] = 603, + [1878] = 491, + [1879] = 492, + [1880] = 493, + [1881] = 1734, + [1882] = 1735, + [1883] = 1883, + [1884] = 1884, + [1885] = 368, + [1886] = 604, + [1887] = 629, + [1888] = 617, + [1889] = 618, + [1890] = 659, + [1891] = 616, + [1892] = 371, + [1893] = 1893, + [1894] = 637, + [1895] = 652, + [1896] = 1896, + [1897] = 638, + [1898] = 639, + [1899] = 1786, + [1900] = 623, + [1901] = 606, + [1902] = 665, + [1903] = 613, + [1904] = 1726, + [1905] = 1859, + [1906] = 614, + [1907] = 624, + [1908] = 649, + [1909] = 1738, + [1910] = 1739, + [1911] = 660, + [1912] = 612, + [1913] = 1770, + [1914] = 383, + [1915] = 601, + [1916] = 662, + [1917] = 674, + [1918] = 1918, + [1919] = 146, + [1920] = 1597, + [1921] = 647, + [1922] = 625, + [1923] = 626, + [1924] = 651, + [1925] = 608, + [1926] = 653, + [1927] = 627, + [1928] = 150, + [1929] = 141, + [1930] = 369, + [1931] = 607, + [1932] = 628, + [1933] = 145, + [1934] = 1599, + [1935] = 685, + [1936] = 664, + [1937] = 368, + [1938] = 615, + [1939] = 609, + [1940] = 656, + [1941] = 1706, + [1942] = 610, + [1943] = 1707, + [1944] = 142, + [1945] = 1945, + [1946] = 1824, + [1947] = 1859, + [1948] = 1824, + [1949] = 648, + [1950] = 419, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, [1957] = 1957, - [1958] = 660, - [1959] = 670, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, - [1961] = 677, - [1962] = 661, - [1963] = 378, - [1964] = 678, - [1965] = 679, - [1966] = 691, - [1967] = 1960, - [1968] = 1727, - [1969] = 378, - [1970] = 652, - [1971] = 161, - [1972] = 1869, - [1973] = 1973, - [1974] = 611, - [1975] = 612, - [1976] = 1854, - [1977] = 156, - [1978] = 613, - [1979] = 614, - [1980] = 160, - [1981] = 159, - [1982] = 615, - [1983] = 616, - [1984] = 617, - [1985] = 157, - [1986] = 618, - [1987] = 619, - [1988] = 155, - [1989] = 153, - [1990] = 620, - [1991] = 1801, - [1992] = 1732, - [1993] = 621, - [1994] = 687, - [1995] = 358, - [1996] = 622, - [1997] = 623, - [1998] = 360, - [1999] = 1999, - [2000] = 2000, - [2001] = 163, - [2002] = 2002, - [2003] = 2003, - [2004] = 2004, - [2005] = 381, - [2006] = 500, - [2007] = 1870, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1968, + [1969] = 1969, + [1970] = 1970, + [1971] = 1971, + [1972] = 1972, + [1973] = 345, + [1974] = 420, + [1975] = 421, + [1976] = 422, + [1977] = 384, + [1978] = 412, + [1979] = 413, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, + [1983] = 1983, + [1984] = 344, + [1985] = 1985, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 423, + [1995] = 424, + [1996] = 425, + [1997] = 426, + [1998] = 427, + [1999] = 428, + [2000] = 352, + [2001] = 355, + [2002] = 429, + [2003] = 430, + [2004] = 431, + [2005] = 432, + [2006] = 345, + [2007] = 433, [2008] = 2008, [2009] = 2009, - [2010] = 2010, + [2010] = 417, [2011] = 2011, [2012] = 2012, [2013] = 2013, [2014] = 2014, - [2015] = 2015, - [2016] = 158, - [2017] = 154, - [2018] = 379, - [2019] = 450, - [2020] = 1850, - [2021] = 1764, - [2022] = 648, - [2023] = 675, - [2024] = 1881, - [2025] = 1960, - [2026] = 1927, - [2027] = 452, - [2028] = 1927, + [2015] = 605, + [2016] = 2016, + [2017] = 637, + [2018] = 2018, + [2019] = 2019, + [2020] = 2020, + [2021] = 608, + [2022] = 685, + [2023] = 2023, + [2024] = 645, + [2025] = 646, + [2026] = 647, + [2027] = 2027, + [2028] = 2028, [2029] = 2029, [2030] = 2030, - [2031] = 2031, - [2032] = 422, - [2033] = 637, - [2034] = 151, - [2035] = 668, - [2036] = 2036, - [2037] = 352, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 439, - [2043] = 2043, - [2044] = 150, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 678, + [2031] = 652, + [2032] = 653, + [2033] = 654, + [2034] = 611, + [2035] = 2035, + [2036] = 612, + [2037] = 657, + [2038] = 658, + [2039] = 659, + [2040] = 660, + [2041] = 662, + [2042] = 664, + [2043] = 665, + [2044] = 613, + [2045] = 415, + [2046] = 614, + [2047] = 615, + [2048] = 616, [2049] = 2049, - [2050] = 2050, - [2051] = 611, - [2052] = 414, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 617, - [2059] = 421, - [2060] = 679, - [2061] = 401, - [2062] = 691, - [2063] = 2063, - [2064] = 402, - [2065] = 612, - [2066] = 2066, - [2067] = 618, - [2068] = 2068, - [2069] = 403, + [2050] = 617, + [2051] = 618, + [2052] = 2052, + [2053] = 619, + [2054] = 620, + [2055] = 621, + [2056] = 622, + [2057] = 623, + [2058] = 624, + [2059] = 625, + [2060] = 626, + [2061] = 627, + [2062] = 628, + [2063] = 629, + [2064] = 436, + [2065] = 2065, + [2066] = 418, + [2067] = 2049, + [2068] = 2052, + [2069] = 2065, [2070] = 2070, - [2071] = 613, + [2071] = 2071, [2072] = 2072, [2073] = 2073, [2074] = 2074, - [2075] = 425, - [2076] = 2076, + [2075] = 367, + [2076] = 366, [2077] = 2077, - [2078] = 2078, - [2079] = 368, - [2080] = 640, - [2081] = 619, + [2078] = 368, + [2079] = 369, + [2080] = 514, + [2081] = 2081, [2082] = 2082, [2083] = 2083, - [2084] = 670, - [2085] = 658, - [2086] = 614, - [2087] = 358, - [2088] = 161, - [2089] = 2089, - [2090] = 632, - [2091] = 641, - [2092] = 639, - [2093] = 633, + [2084] = 1837, + [2085] = 2085, + [2086] = 2086, + [2087] = 491, + [2088] = 492, + [2089] = 493, + [2090] = 1884, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, [2094] = 2094, - [2095] = 354, - [2096] = 652, - [2097] = 644, - [2098] = 159, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, [2099] = 2099, [2100] = 2100, [2101] = 2101, - [2102] = 631, - [2103] = 369, - [2104] = 480, + [2102] = 2102, + [2103] = 2103, + [2104] = 2104, [2105] = 2105, - [2106] = 404, - [2107] = 405, + [2106] = 2106, + [2107] = 1819, [2108] = 2108, - [2109] = 2036, - [2110] = 2039, - [2111] = 406, - [2112] = 2112, - [2113] = 620, - [2114] = 423, - [2115] = 407, + [2109] = 2109, + [2110] = 2110, + [2111] = 636, + [2112] = 487, + [2113] = 528, + [2114] = 527, + [2115] = 672, [2116] = 2116, - [2117] = 635, - [2118] = 2118, - [2119] = 2119, - [2120] = 410, - [2121] = 2121, - [2122] = 416, - [2123] = 634, - [2124] = 412, - [2125] = 638, - [2126] = 677, - [2127] = 2127, - [2128] = 160, - [2129] = 445, - [2130] = 2130, - [2131] = 360, - [2132] = 2132, - [2133] = 647, - [2134] = 417, - [2135] = 418, - [2136] = 2136, - [2137] = 2137, - [2138] = 642, - [2139] = 666, - [2140] = 643, - [2141] = 616, - [2142] = 360, - [2143] = 2143, - [2144] = 624, - [2145] = 419, - [2146] = 2146, - [2147] = 2147, - [2148] = 152, - [2149] = 2149, - [2150] = 621, - [2151] = 2151, - [2152] = 2152, - [2153] = 2153, - [2154] = 426, + [2117] = 355, + [2118] = 639, + [2119] = 529, + [2120] = 530, + [2121] = 150, + [2122] = 516, + [2123] = 517, + [2124] = 2124, + [2125] = 674, + [2126] = 498, + [2127] = 648, + [2128] = 649, + [2129] = 651, + [2130] = 531, + [2131] = 656, + [2132] = 448, + [2133] = 520, + [2134] = 445, + [2135] = 352, + [2136] = 521, + [2137] = 531, + [2138] = 603, + [2139] = 604, + [2140] = 499, + [2141] = 606, + [2142] = 607, + [2143] = 609, + [2144] = 610, + [2145] = 472, + [2146] = 1896, + [2147] = 2124, + [2148] = 2074, + [2149] = 2077, + [2150] = 2074, + [2151] = 2074, + [2152] = 2074, + [2153] = 638, + [2154] = 2154, [2155] = 2155, - [2156] = 474, + [2156] = 2156, [2157] = 2157, - [2158] = 646, + [2158] = 2158, [2159] = 2159, - [2160] = 2112, + [2160] = 2160, [2161] = 2161, - [2162] = 444, - [2163] = 615, - [2164] = 629, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, [2165] = 2165, - [2166] = 2166, + [2166] = 337, [2167] = 2167, [2168] = 2168, [2169] = 2169, - [2170] = 630, - [2171] = 163, - [2172] = 636, - [2173] = 645, - [2174] = 608, - [2175] = 561, - [2176] = 453, - [2177] = 535, - [2178] = 537, - [2179] = 455, - [2180] = 654, - [2181] = 554, - [2182] = 456, - [2183] = 533, - [2184] = 452, - [2185] = 500, - [2186] = 660, - [2187] = 661, - [2188] = 2015, - [2189] = 675, - [2190] = 156, - [2191] = 2161, - [2192] = 655, - [2193] = 153, - [2194] = 2194, - [2195] = 368, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 1693, + [2185] = 2185, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 1656, + [2195] = 2195, [2196] = 2196, [2197] = 2197, [2198] = 2198, [2199] = 2199, [2200] = 2200, - [2201] = 369, - [2202] = 656, - [2203] = 657, + [2201] = 2201, + [2202] = 369, + [2203] = 2203, [2204] = 2204, - [2205] = 454, - [2206] = 549, - [2207] = 527, - [2208] = 155, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, [2209] = 2209, - [2210] = 158, - [2211] = 154, + [2210] = 2210, + [2211] = 2211, [2212] = 2212, [2213] = 2213, - [2214] = 474, + [2214] = 2214, [2215] = 2215, - [2216] = 555, - [2217] = 536, - [2218] = 450, - [2219] = 1973, - [2220] = 548, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, [2221] = 2221, - [2222] = 2222, - [2223] = 537, - [2224] = 378, - [2225] = 648, - [2226] = 379, - [2227] = 381, + [2222] = 317, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 2165, - [2232] = 665, - [2233] = 2233, - [2234] = 2234, - [2235] = 157, + [2231] = 2213, + [2232] = 1595, + [2233] = 1596, + [2234] = 351, + [2235] = 2235, [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 382, - [2240] = 2194, - [2241] = 2196, - [2242] = 2197, - [2243] = 2198, - [2244] = 2199, - [2245] = 2200, - [2246] = 2166, - [2247] = 2167, - [2248] = 2168, - [2249] = 2169, + [2237] = 137, + [2238] = 368, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 1597, + [2247] = 1599, + [2248] = 2248, + [2249] = 2249, [2250] = 2250, - [2251] = 2165, - [2252] = 2252, + [2251] = 2251, + [2252] = 1839, [2253] = 2253, [2254] = 2254, - [2255] = 2165, - [2256] = 2256, - [2257] = 2257, - [2258] = 2165, + [2255] = 2255, + [2256] = 367, + [2257] = 1842, + [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2261, - [2262] = 2262, + [2262] = 1845, [2263] = 2263, [2264] = 2264, - [2265] = 2265, - [2266] = 687, - [2267] = 2159, - [2268] = 480, - [2269] = 2237, - [2270] = 2238, - [2271] = 2230, - [2272] = 2272, - [2273] = 2273, - [2274] = 379, - [2275] = 554, - [2276] = 160, - [2277] = 2000, - [2278] = 2278, - [2279] = 381, - [2280] = 548, + [2265] = 366, + [2266] = 1853, + [2267] = 345, + [2268] = 1857, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 1860, + [2273] = 514, + [2274] = 1861, + [2275] = 1863, + [2276] = 516, + [2277] = 517, + [2278] = 531, + [2279] = 520, + [2280] = 521, [2281] = 2281, - [2282] = 382, - [2283] = 159, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 533, - [2288] = 2288, - [2289] = 352, + [2282] = 2282, + [2283] = 1870, + [2284] = 1871, + [2285] = 528, + [2286] = 527, + [2287] = 1873, + [2288] = 1876, + [2289] = 2208, [2290] = 2290, [2291] = 2291, [2292] = 2292, - [2293] = 161, - [2294] = 2294, - [2295] = 2295, - [2296] = 1651, - [2297] = 1595, + [2293] = 1883, + [2294] = 529, + [2295] = 530, + [2296] = 2296, + [2297] = 1638, [2298] = 2298, [2299] = 2299, [2300] = 2300, [2301] = 2301, - [2302] = 2009, + [2302] = 2302, [2303] = 2303, [2304] = 2304, [2305] = 2305, [2306] = 2306, - [2307] = 1727, + [2307] = 2307, [2308] = 2308, - [2309] = 354, - [2310] = 360, - [2311] = 2002, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, [2312] = 2312, [2313] = 2313, - [2314] = 537, - [2315] = 2315, + [2314] = 2314, + [2315] = 337, [2316] = 2316, - [2317] = 2317, + [2317] = 138, [2318] = 2318, [2319] = 2319, [2320] = 2320, [2321] = 2321, - [2322] = 2011, + [2322] = 2322, [2323] = 2323, [2324] = 2324, [2325] = 2325, [2326] = 2326, [2327] = 2327, [2328] = 2328, - [2329] = 2329, - [2330] = 150, + [2329] = 322, + [2330] = 319, [2331] = 2331, [2332] = 2332, [2333] = 2333, @@ -7562,38 +7500,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 2003, + [2340] = 2340, [2341] = 2341, [2342] = 2342, [2343] = 2343, [2344] = 2344, - [2345] = 2345, - [2346] = 1601, - [2347] = 1617, + [2345] = 137, + [2346] = 2346, + [2347] = 2347, [2348] = 2348, [2349] = 2349, [2350] = 2350, [2351] = 2351, [2352] = 2352, [2353] = 2353, - [2354] = 1692, + [2354] = 2354, [2355] = 2355, [2356] = 2356, [2357] = 2357, - [2358] = 2012, + [2358] = 2358, [2359] = 2359, [2360] = 2360, - [2361] = 2361, - [2362] = 549, - [2363] = 2010, + [2361] = 579, + [2362] = 2362, + [2363] = 2363, [2364] = 2364, [2365] = 2365, - [2366] = 2013, + [2366] = 2366, [2367] = 2367, [2368] = 2368, [2369] = 2369, [2370] = 2370, - [2371] = 527, + [2371] = 2371, [2372] = 2372, [2373] = 2373, [2374] = 2374, @@ -7604,9 +7542,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2379] = 2379, [2380] = 2380, [2381] = 2381, - [2382] = 561, + [2382] = 2382, [2383] = 2383, - [2384] = 535, + [2384] = 2384, [2385] = 2385, [2386] = 2386, [2387] = 2387, @@ -7618,6292 +7556,5379 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2393] = 2393, [2394] = 2394, [2395] = 2395, - [2396] = 314, + [2396] = 2396, [2397] = 2397, [2398] = 2398, [2399] = 2399, - [2400] = 2360, + [2400] = 2400, [2401] = 2401, [2402] = 2402, - [2403] = 1999, - [2404] = 2292, + [2403] = 2403, + [2404] = 2404, [2405] = 2405, - [2406] = 2004, + [2406] = 2406, [2407] = 2407, [2408] = 2408, [2409] = 2409, [2410] = 2410, - [2411] = 378, + [2411] = 2411, [2412] = 2412, [2413] = 2413, [2414] = 2414, [2415] = 2415, - [2416] = 2416, + [2416] = 322, [2417] = 2417, - [2418] = 2014, - [2419] = 2419, - [2420] = 2420, + [2418] = 320, + [2419] = 1638, + [2420] = 321, [2421] = 2421, - [2422] = 1891, - [2423] = 2008, - [2424] = 555, - [2425] = 536, + [2422] = 319, + [2423] = 2423, + [2424] = 2424, + [2425] = 2425, [2426] = 2426, [2427] = 2427, [2428] = 2428, - [2429] = 2429, - [2430] = 1732, - [2431] = 623, - [2432] = 2432, + [2429] = 2423, + [2430] = 351, + [2431] = 2324, + [2432] = 318, [2433] = 2433, [2434] = 2434, - [2435] = 2435, + [2435] = 2415, [2436] = 2436, - [2437] = 2437, - [2438] = 2438, - [2439] = 2439, + [2437] = 2424, + [2438] = 2401, + [2439] = 2349, [2440] = 2440, [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 352, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 2451, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, - [2455] = 336, - [2456] = 2456, - [2457] = 564, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, + [2444] = 2444, + [2445] = 139, + [2446] = 654, + [2447] = 2082, + [2448] = 2101, + [2449] = 674, + [2450] = 2083, + [2451] = 2412, + [2452] = 601, + [2453] = 327, + [2454] = 659, + [2455] = 335, + [2456] = 2102, + [2457] = 2413, + [2458] = 602, + [2459] = 142, + [2460] = 2103, [2461] = 2461, - [2462] = 2462, - [2463] = 2463, - [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, - [2473] = 150, - [2474] = 622, - [2475] = 2475, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 152, - [2480] = 2480, - [2481] = 1692, - [2482] = 2482, - [2483] = 2483, - [2484] = 2484, - [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, - [2508] = 354, - [2509] = 2509, - [2510] = 2510, - [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 334, - [2521] = 2521, - [2522] = 2522, + [2462] = 672, + [2463] = 2414, + [2464] = 2085, + [2465] = 660, + [2466] = 140, + [2467] = 143, + [2468] = 2104, + [2469] = 685, + [2470] = 2108, + [2471] = 608, + [2472] = 662, + [2473] = 637, + [2474] = 619, + [2475] = 620, + [2476] = 2086, + [2477] = 621, + [2478] = 622, + [2479] = 623, + [2480] = 603, + [2481] = 607, + [2482] = 624, + [2483] = 645, + [2484] = 646, + [2485] = 2105, + [2486] = 604, + [2487] = 664, + [2488] = 2096, + [2489] = 647, + [2490] = 2106, + [2491] = 2409, + [2492] = 639, + [2493] = 665, + [2494] = 2110, + [2495] = 609, + [2496] = 610, + [2497] = 327, + [2498] = 2097, + [2499] = 2410, + [2500] = 648, + [2501] = 649, + [2502] = 651, + [2503] = 613, + [2504] = 657, + [2505] = 335, + [2506] = 652, + [2507] = 653, + [2508] = 2098, + [2509] = 625, + [2510] = 626, + [2511] = 627, + [2512] = 2099, + [2513] = 611, + [2514] = 2081, + [2515] = 531, + [2516] = 628, + [2517] = 629, + [2518] = 658, + [2519] = 318, + [2520] = 612, + [2521] = 605, + [2522] = 2100, [2523] = 2523, - [2524] = 2524, - [2525] = 2525, - [2526] = 2447, - [2527] = 2527, - [2528] = 2528, - [2529] = 2529, - [2530] = 2435, - [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 2534, + [2524] = 2091, + [2525] = 2403, + [2526] = 636, + [2527] = 606, + [2528] = 139, + [2529] = 2092, + [2530] = 2404, + [2531] = 638, + [2532] = 2093, + [2533] = 330, + [2534] = 2405, [2535] = 2535, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 335, - [2542] = 2542, - [2543] = 151, - [2544] = 2544, - [2545] = 2545, - [2546] = 336, - [2547] = 2547, - [2548] = 2548, - [2549] = 2549, - [2550] = 2550, - [2551] = 335, - [2552] = 2552, - [2553] = 2553, - [2554] = 332, - [2555] = 2547, - [2556] = 2556, - [2557] = 2533, - [2558] = 2443, + [2536] = 2411, + [2537] = 615, + [2538] = 616, + [2539] = 2094, + [2540] = 2406, + [2541] = 138, + [2542] = 331, + [2543] = 329, + [2544] = 2095, + [2545] = 2407, + [2546] = 617, + [2547] = 618, + [2548] = 332, + [2549] = 2408, + [2550] = 614, + [2551] = 656, + [2552] = 2073, + [2553] = 141, + [2554] = 145, + [2555] = 144, + [2556] = 2109, + [2557] = 143, + [2558] = 144, [2559] = 2559, [2560] = 2560, - [2561] = 2561, - [2562] = 2562, + [2561] = 337, + [2562] = 342, [2563] = 2563, - [2564] = 2564, - [2565] = 333, - [2566] = 2566, - [2567] = 2567, - [2568] = 2559, - [2569] = 2569, - [2570] = 2263, - [2571] = 2236, - [2572] = 645, - [2573] = 2234, - [2574] = 337, - [2575] = 639, - [2576] = 2494, - [2577] = 2256, - [2578] = 346, - [2579] = 2579, - [2580] = 660, - [2581] = 2498, - [2582] = 658, - [2583] = 341, - [2584] = 2228, - [2585] = 2215, - [2586] = 2487, - [2587] = 670, - [2588] = 621, - [2589] = 611, - [2590] = 612, - [2591] = 618, - [2592] = 613, - [2593] = 614, - [2594] = 640, - [2595] = 615, - [2596] = 2596, - [2597] = 2260, - [2598] = 641, - [2599] = 638, - [2600] = 622, - [2601] = 347, - [2602] = 151, - [2603] = 2229, - [2604] = 642, - [2605] = 2504, - [2606] = 156, - [2607] = 2254, - [2608] = 619, - [2609] = 666, - [2610] = 636, - [2611] = 634, - [2612] = 342, - [2613] = 643, - [2614] = 656, - [2615] = 157, - [2616] = 2261, - [2617] = 661, - [2618] = 678, - [2619] = 679, - [2620] = 2257, - [2621] = 629, - [2622] = 155, - [2623] = 2488, - [2624] = 687, - [2625] = 2262, - [2626] = 158, - [2627] = 154, - [2628] = 2502, - [2629] = 655, - [2630] = 630, - [2631] = 654, - [2632] = 657, - [2633] = 2209, - [2634] = 537, - [2635] = 608, - [2636] = 2221, - [2637] = 668, - [2638] = 677, - [2639] = 644, - [2640] = 2490, - [2641] = 2212, - [2642] = 2250, - [2643] = 2499, - [2644] = 341, - [2645] = 153, + [2564] = 1345, + [2565] = 343, + [2566] = 345, + [2567] = 142, + [2568] = 340, + [2569] = 2563, + [2570] = 2570, + [2571] = 2571, + [2572] = 332, + [2573] = 2560, + [2574] = 147, + [2575] = 140, + [2576] = 331, + [2577] = 2577, + [2578] = 341, + [2579] = 2571, + [2580] = 319, + [2581] = 2581, + [2582] = 2577, + [2583] = 146, + [2584] = 2570, + [2585] = 141, + [2586] = 2559, + [2587] = 330, + [2588] = 322, + [2589] = 329, + [2590] = 341, + [2591] = 148, + [2592] = 351, + [2593] = 342, + [2594] = 137, + [2595] = 343, + [2596] = 340, + [2597] = 145, + [2598] = 344, + [2599] = 2599, + [2600] = 606, + [2601] = 448, + [2602] = 607, + [2603] = 142, + [2604] = 2604, + [2605] = 2605, + [2606] = 2599, + [2607] = 150, + [2608] = 137, + [2609] = 2609, + [2610] = 2610, + [2611] = 603, + [2612] = 604, + [2613] = 2613, + [2614] = 139, + [2615] = 138, + [2616] = 2616, + [2617] = 327, + [2618] = 335, + [2619] = 351, + [2620] = 445, + [2621] = 2621, + [2622] = 352, + [2623] = 355, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 337, + [2628] = 2628, + [2629] = 2629, + [2630] = 2630, + [2631] = 2631, + [2632] = 141, + [2633] = 2624, + [2634] = 2625, + [2635] = 2628, + [2636] = 2636, + [2637] = 2626, + [2638] = 2629, + [2639] = 2639, + [2640] = 2640, + [2641] = 1693, + [2642] = 2631, + [2643] = 1656, + [2644] = 2621, + [2645] = 2631, [2646] = 2646, - [2647] = 646, - [2648] = 2264, - [2649] = 2213, - [2650] = 632, - [2651] = 2252, - [2652] = 152, - [2653] = 348, - [2654] = 637, - [2655] = 647, - [2656] = 2253, - [2657] = 2222, - [2658] = 623, - [2659] = 342, - [2660] = 2265, - [2661] = 2492, - [2662] = 2259, - [2663] = 620, - [2664] = 691, - [2665] = 2233, - [2666] = 648, - [2667] = 2272, - [2668] = 2496, - [2669] = 624, - [2670] = 616, - [2671] = 2503, - [2672] = 633, - [2673] = 617, - [2674] = 652, - [2675] = 2505, - [2676] = 332, - [2677] = 665, - [2678] = 675, - [2679] = 635, - [2680] = 631, - [2681] = 161, - [2682] = 358, - [2683] = 160, - [2684] = 157, - [2685] = 352, + [2647] = 2609, + [2648] = 2648, + [2649] = 148, + [2650] = 2616, + [2651] = 2636, + [2652] = 2646, + [2653] = 2648, + [2654] = 2654, + [2655] = 609, + [2656] = 2616, + [2657] = 610, + [2658] = 2646, + [2659] = 2616, + [2660] = 2646, + [2661] = 2610, + [2662] = 145, + [2663] = 2663, + [2664] = 144, + [2665] = 2654, + [2666] = 2666, + [2667] = 147, + [2668] = 146, + [2669] = 2666, + [2670] = 371, + [2671] = 344, + [2672] = 421, + [2673] = 412, + [2674] = 422, + [2675] = 345, + [2676] = 366, + [2677] = 383, + [2678] = 368, + [2679] = 369, + [2680] = 384, + [2681] = 423, + [2682] = 424, + [2683] = 139, + [2684] = 138, + [2685] = 425, [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 335, - [2691] = 158, - [2692] = 155, - [2693] = 2689, - [2694] = 337, - [2695] = 353, - [2696] = 2687, - [2697] = 154, - [2698] = 2688, - [2699] = 356, - [2700] = 1378, - [2701] = 150, - [2702] = 336, - [2703] = 356, - [2704] = 357, - [2705] = 2705, - [2706] = 348, - [2707] = 159, - [2708] = 360, - [2709] = 353, - [2710] = 156, - [2711] = 346, - [2712] = 357, - [2713] = 347, + [2687] = 344, + [2688] = 426, + [2689] = 427, + [2690] = 428, + [2691] = 141, + [2692] = 429, + [2693] = 2639, + [2694] = 2640, + [2695] = 430, + [2696] = 431, + [2697] = 432, + [2698] = 433, + [2699] = 145, + [2700] = 413, + [2701] = 345, + [2702] = 144, + [2703] = 150, + [2704] = 2613, + [2705] = 2663, + [2706] = 2706, + [2707] = 142, + [2708] = 2708, + [2709] = 2709, + [2710] = 415, + [2711] = 606, + [2712] = 1656, + [2713] = 607, [2714] = 2714, - [2715] = 2715, - [2716] = 354, - [2717] = 2714, - [2718] = 355, - [2719] = 2686, - [2720] = 2705, - [2721] = 355, - [2722] = 153, - [2723] = 2723, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, + [2715] = 2630, + [2716] = 418, + [2717] = 2717, + [2718] = 140, + [2719] = 143, + [2720] = 137, + [2721] = 445, + [2722] = 2722, + [2723] = 609, + [2724] = 610, + [2725] = 436, + [2726] = 340, [2727] = 2727, - [2728] = 2728, - [2729] = 1727, - [2730] = 1732, - [2731] = 2723, - [2732] = 2724, - [2733] = 2733, - [2734] = 2734, - [2735] = 2735, - [2736] = 629, - [2737] = 630, - [2738] = 636, - [2739] = 645, - [2740] = 161, - [2741] = 660, - [2742] = 661, - [2743] = 160, - [2744] = 159, - [2745] = 2745, + [2728] = 341, + [2729] = 417, + [2730] = 342, + [2731] = 2714, + [2732] = 2722, + [2733] = 343, + [2734] = 419, + [2735] = 587, + [2736] = 2736, + [2737] = 2737, + [2738] = 141, + [2739] = 2604, + [2740] = 145, + [2741] = 2605, + [2742] = 144, + [2743] = 1693, + [2744] = 448, + [2745] = 142, [2746] = 2746, - [2747] = 474, - [2748] = 2748, - [2749] = 2749, - [2750] = 480, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 156, - [2755] = 157, - [2756] = 155, - [2757] = 153, - [2758] = 2758, - [2759] = 352, - [2760] = 354, - [2761] = 2761, - [2762] = 150, - [2763] = 2763, - [2764] = 341, - [2765] = 342, - [2766] = 152, - [2767] = 151, - [2768] = 2768, - [2769] = 368, - [2770] = 369, - [2771] = 2761, - [2772] = 2763, + [2747] = 603, + [2748] = 604, + [2749] = 420, + [2750] = 367, + [2751] = 141, + [2752] = 384, + [2753] = 140, + [2754] = 423, + [2755] = 137, + [2756] = 424, + [2757] = 425, + [2758] = 426, + [2759] = 427, + [2760] = 428, + [2761] = 429, + [2762] = 430, + [2763] = 431, + [2764] = 432, + [2765] = 433, + [2766] = 139, + [2767] = 345, + [2768] = 138, + [2769] = 345, + [2770] = 355, + [2771] = 2771, + [2772] = 143, [2773] = 2773, - [2774] = 2774, - [2775] = 2768, - [2776] = 2734, - [2777] = 2777, - [2778] = 2777, - [2779] = 2726, - [2780] = 2725, - [2781] = 2726, - [2782] = 2752, - [2783] = 2753, - [2784] = 2758, - [2785] = 2735, - [2786] = 2733, - [2787] = 2773, - [2788] = 2774, - [2789] = 2735, - [2790] = 2773, - [2791] = 2735, - [2792] = 2773, - [2793] = 163, - [2794] = 636, - [2795] = 2728, - [2796] = 163, - [2797] = 389, - [2798] = 390, - [2799] = 422, - [2800] = 2746, - [2801] = 150, - [2802] = 597, - [2803] = 2803, - [2804] = 2804, - [2805] = 2805, - [2806] = 423, - [2807] = 152, - [2808] = 151, - [2809] = 2745, - [2810] = 353, - [2811] = 153, - [2812] = 355, - [2813] = 439, - [2814] = 356, - [2815] = 357, - [2816] = 2748, - [2817] = 158, - [2818] = 154, - [2819] = 2749, - [2820] = 156, - [2821] = 157, - [2822] = 155, - [2823] = 358, - [2824] = 153, - [2825] = 629, - [2826] = 630, - [2827] = 444, - [2828] = 360, - [2829] = 378, - [2830] = 445, - [2831] = 379, - [2832] = 2832, - [2833] = 381, - [2834] = 382, - [2835] = 421, - [2836] = 401, - [2837] = 155, + [2774] = 421, + [2775] = 422, + [2776] = 145, + [2777] = 144, + [2778] = 344, + [2779] = 317, + [2780] = 671, + [2781] = 344, + [2782] = 142, + [2783] = 2783, + [2784] = 2784, + [2785] = 189, + [2786] = 148, + [2787] = 2686, + [2788] = 417, + [2789] = 2789, + [2790] = 352, + [2791] = 418, + [2792] = 419, + [2793] = 147, + [2794] = 146, + [2795] = 2773, + [2796] = 352, + [2797] = 2784, + [2798] = 322, + [2799] = 420, + [2800] = 355, + [2801] = 2789, + [2802] = 2802, + [2803] = 367, + [2804] = 366, + [2805] = 368, + [2806] = 369, + [2807] = 472, + [2808] = 493, + [2809] = 2809, + [2810] = 352, + [2811] = 355, + [2812] = 150, + [2813] = 352, + [2814] = 417, + [2815] = 355, + [2816] = 367, + [2817] = 140, + [2818] = 366, + [2819] = 368, + [2820] = 369, + [2821] = 418, + [2822] = 419, + [2823] = 191, + [2824] = 1590, + [2825] = 137, + [2826] = 420, + [2827] = 421, + [2828] = 2828, + [2829] = 422, + [2830] = 384, + [2831] = 143, + [2832] = 587, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 423, + [2837] = 2837, [2838] = 2838, - [2839] = 645, - [2840] = 402, - [2841] = 157, - [2842] = 403, - [2843] = 404, - [2844] = 360, - [2845] = 405, - [2846] = 406, - [2847] = 474, - [2848] = 407, - [2849] = 660, - [2850] = 661, - [2851] = 1727, - [2852] = 410, - [2853] = 2853, - [2854] = 480, - [2855] = 412, - [2856] = 414, - [2857] = 416, - [2858] = 417, - [2859] = 2859, - [2860] = 418, - [2861] = 419, - [2862] = 2751, - [2863] = 1732, - [2864] = 425, - [2865] = 2865, - [2866] = 2838, - [2867] = 2867, - [2868] = 2868, - [2869] = 426, - [2870] = 2870, - [2871] = 156, - [2872] = 2865, - [2873] = 2727, - [2874] = 358, - [2875] = 360, - [2876] = 314, - [2877] = 2859, - [2878] = 439, - [2879] = 444, - [2880] = 445, - [2881] = 421, - [2882] = 401, - [2883] = 402, - [2884] = 403, - [2885] = 404, - [2886] = 405, - [2887] = 406, - [2888] = 407, - [2889] = 410, - [2890] = 412, - [2891] = 414, - [2892] = 416, - [2893] = 417, - [2894] = 418, - [2895] = 419, - [2896] = 2896, - [2897] = 152, - [2898] = 151, - [2899] = 676, - [2900] = 154, - [2901] = 156, - [2902] = 2902, - [2903] = 157, - [2904] = 155, - [2905] = 153, - [2906] = 150, - [2907] = 161, - [2908] = 160, - [2909] = 159, - [2910] = 368, - [2911] = 369, - [2912] = 358, - [2913] = 358, - [2914] = 368, - [2915] = 369, - [2916] = 2916, - [2917] = 360, - [2918] = 203, - [2919] = 2919, - [2920] = 2920, - [2921] = 2902, - [2922] = 2916, - [2923] = 2919, - [2924] = 158, - [2925] = 500, - [2926] = 444, - [2927] = 445, - [2928] = 421, - [2929] = 401, - [2930] = 402, - [2931] = 403, - [2932] = 404, - [2933] = 405, - [2934] = 406, - [2935] = 407, - [2936] = 410, - [2937] = 412, - [2938] = 414, - [2939] = 453, - [2940] = 454, - [2941] = 416, - [2942] = 163, - [2943] = 158, - [2944] = 154, - [2945] = 417, - [2946] = 161, - [2947] = 418, - [2948] = 419, - [2949] = 160, - [2950] = 159, - [2951] = 156, - [2952] = 157, - [2953] = 155, - [2954] = 153, - [2955] = 150, - [2956] = 450, - [2957] = 314, - [2958] = 334, - [2959] = 333, - [2960] = 203, - [2961] = 152, - [2962] = 151, - [2963] = 378, - [2964] = 2964, - [2965] = 439, + [2839] = 424, + [2840] = 2840, + [2841] = 320, + [2842] = 491, + [2843] = 148, + [2844] = 425, + [2845] = 2845, + [2846] = 498, + [2847] = 448, + [2848] = 2848, + [2849] = 321, + [2850] = 139, + [2851] = 138, + [2852] = 141, + [2853] = 145, + [2854] = 2840, + [2855] = 144, + [2856] = 142, + [2857] = 426, + [2858] = 427, + [2859] = 428, + [2860] = 429, + [2861] = 430, + [2862] = 431, + [2863] = 499, + [2864] = 147, + [2865] = 146, + [2866] = 432, + [2867] = 2835, + [2868] = 335, + [2869] = 317, + [2870] = 189, + [2871] = 433, + [2872] = 492, + [2873] = 2837, + [2874] = 2838, + [2875] = 327, + [2876] = 189, + [2877] = 445, + [2878] = 2878, + [2879] = 521, + [2880] = 140, + [2881] = 527, + [2882] = 143, + [2883] = 150, + [2884] = 141, + [2885] = 189, + [2886] = 321, + [2887] = 139, + [2888] = 344, + [2889] = 2889, + [2890] = 531, + [2891] = 528, + [2892] = 368, + [2893] = 345, + [2894] = 528, + [2895] = 147, + [2896] = 369, + [2897] = 671, + [2898] = 2898, + [2899] = 2899, + [2900] = 191, + [2901] = 529, + [2902] = 530, + [2903] = 367, + [2904] = 142, + [2905] = 520, + [2906] = 146, + [2907] = 579, + [2908] = 366, + [2909] = 531, + [2910] = 144, + [2911] = 516, + [2912] = 368, + [2913] = 369, + [2914] = 145, + [2915] = 322, + [2916] = 491, + [2917] = 492, + [2918] = 340, + [2919] = 319, + [2920] = 342, + [2921] = 341, + [2922] = 493, + [2923] = 320, + [2924] = 1638, + [2925] = 345, + [2926] = 138, + [2927] = 367, + [2928] = 445, + [2929] = 191, + [2930] = 498, + [2931] = 499, + [2932] = 2932, + [2933] = 448, + [2934] = 472, + [2935] = 514, + [2936] = 529, + [2937] = 530, + [2938] = 517, + [2939] = 343, + [2940] = 366, + [2941] = 148, + [2942] = 344, + [2943] = 1698, + [2944] = 144, + [2945] = 626, + [2946] = 627, + [2947] = 2947, + [2948] = 628, + [2949] = 145, + [2950] = 2950, + [2951] = 327, + [2952] = 335, + [2953] = 144, + [2954] = 638, + [2955] = 639, + [2956] = 2947, + [2957] = 2950, + [2958] = 352, + [2959] = 322, + [2960] = 148, + [2961] = 2961, + [2962] = 2962, + [2963] = 2963, + [2964] = 612, + [2965] = 141, [2966] = 2966, - [2967] = 381, - [2968] = 382, - [2969] = 2969, - [2970] = 368, - [2971] = 369, - [2972] = 368, - [2973] = 203, - [2974] = 369, - [2975] = 2975, - [2976] = 378, - [2977] = 474, - [2978] = 2978, - [2979] = 379, - [2980] = 381, - [2981] = 382, - [2982] = 480, + [2967] = 2963, + [2968] = 319, + [2969] = 1693, + [2970] = 352, + [2971] = 355, + [2972] = 355, + [2973] = 147, + [2974] = 2961, + [2975] = 2962, + [2976] = 146, + [2977] = 672, + [2978] = 345, + [2979] = 649, + [2980] = 1734, + [2981] = 2981, + [2982] = 1735, [2983] = 2983, - [2984] = 1618, - [2985] = 455, - [2986] = 597, - [2987] = 456, - [2988] = 2969, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2983, - [2993] = 2993, - [2994] = 2994, - [2995] = 2990, - [2996] = 2991, - [2997] = 204, - [2998] = 379, - [2999] = 153, - [3000] = 527, - [3001] = 360, - [3002] = 378, - [3003] = 537, - [3004] = 3004, - [3005] = 379, - [3006] = 161, - [3007] = 381, - [3008] = 382, - [3009] = 378, - [3010] = 554, - [3011] = 533, - [3012] = 379, - [3013] = 474, - [3014] = 381, - [3015] = 382, - [3016] = 480, - [3017] = 676, - [3018] = 548, - [3019] = 204, - [3020] = 152, - [3021] = 334, - [3022] = 453, - [3023] = 3023, - [3024] = 151, - [3025] = 336, - [3026] = 335, - [3027] = 549, - [3028] = 555, - [3029] = 333, - [3030] = 158, - [3031] = 536, - [3032] = 454, - [3033] = 154, - [3034] = 3034, - [3035] = 360, - [3036] = 204, - [3037] = 203, - [3038] = 561, - [3039] = 549, - [3040] = 535, - [3041] = 160, - [3042] = 500, - [3043] = 537, - [3044] = 564, - [3045] = 555, - [3046] = 536, - [3047] = 159, - [3048] = 358, - [3049] = 3049, - [3050] = 3050, - [3051] = 1731, - [3052] = 156, - [3053] = 1692, - [3054] = 157, - [3055] = 155, - [3056] = 450, - [3057] = 163, - [3058] = 455, - [3059] = 456, - [3060] = 358, - [3061] = 636, - [3062] = 670, - [3063] = 677, - [3064] = 616, - [3065] = 617, - [3066] = 618, - [3067] = 153, - [3068] = 158, - [3069] = 154, - [3070] = 564, - [3071] = 619, - [3072] = 620, - [3073] = 621, - [3074] = 622, - [3075] = 623, - [3076] = 1727, - [3077] = 156, - [3078] = 157, - [3079] = 155, - [3080] = 153, - [3081] = 3081, - [3082] = 1732, - [3083] = 3083, - [3084] = 161, - [3085] = 160, - [3086] = 159, - [3087] = 675, - [3088] = 597, - [3089] = 1789, - [3090] = 1790, - [3091] = 368, - [3092] = 369, - [3093] = 648, - [3094] = 687, - [3095] = 655, - [3096] = 657, - [3097] = 3097, - [3098] = 665, - [3099] = 635, + [2984] = 140, + [2985] = 615, + [2986] = 616, + [2987] = 617, + [2988] = 143, + [2989] = 618, + [2990] = 1738, + [2991] = 1739, + [2992] = 605, + [2993] = 619, + [2994] = 620, + [2995] = 674, + [2996] = 189, + [2997] = 621, + [2998] = 622, + [2999] = 648, + [3000] = 603, + [3001] = 2966, + [3002] = 604, + [3003] = 623, + [3004] = 624, + [3005] = 141, + [3006] = 145, + [3007] = 3007, + [3008] = 142, + [3009] = 579, + [3010] = 611, + [3011] = 608, + [3012] = 656, + [3013] = 651, + [3014] = 606, + [3015] = 1257, + [3016] = 607, + [3017] = 636, + [3018] = 602, + [3019] = 150, + [3020] = 142, + [3021] = 587, + [3022] = 344, + [3023] = 601, + [3024] = 3024, + [3025] = 319, + [3026] = 613, + [3027] = 614, + [3028] = 1656, + [3029] = 191, + [3030] = 625, + [3031] = 609, + [3032] = 610, + [3033] = 629, + [3034] = 499, + [3035] = 529, + [3036] = 530, + [3037] = 658, + [3038] = 659, + [3039] = 660, + [3040] = 342, + [3041] = 142, + [3042] = 343, + [3043] = 662, + [3044] = 531, + [3045] = 647, + [3046] = 608, + [3047] = 645, + [3048] = 3048, + [3049] = 327, + [3050] = 367, + [3051] = 637, + [3052] = 579, + [3053] = 1257, + [3054] = 340, + [3055] = 613, + [3056] = 612, + [3057] = 664, + [3058] = 665, + [3059] = 3059, + [3060] = 3060, + [3061] = 345, + [3062] = 3062, + [3063] = 614, + [3064] = 141, + [3065] = 341, + [3066] = 335, + [3067] = 366, + [3068] = 615, + [3069] = 616, + [3070] = 3070, + [3071] = 3071, + [3072] = 498, + [3073] = 617, + [3074] = 618, + [3075] = 619, + [3076] = 652, + [3077] = 3077, + [3078] = 657, + [3079] = 189, + [3080] = 601, + [3081] = 147, + [3082] = 620, + [3083] = 367, + [3084] = 146, + [3085] = 352, + [3086] = 145, + [3087] = 621, + [3088] = 671, + [3089] = 622, + [3090] = 366, + [3091] = 2981, + [3092] = 144, + [3093] = 344, + [3094] = 3094, + [3095] = 623, + [3096] = 3096, + [3097] = 368, + [3098] = 369, + [3099] = 653, [3100] = 3100, - [3101] = 1780, - [3102] = 358, - [3103] = 1267, - [3104] = 3104, - [3105] = 341, - [3106] = 368, - [3107] = 156, - [3108] = 342, - [3109] = 155, - [3110] = 336, - [3111] = 335, - [3112] = 1782, - [3113] = 203, - [3114] = 163, - [3115] = 608, - [3116] = 654, - [3117] = 360, - [3118] = 658, - [3119] = 678, - [3120] = 679, - [3121] = 157, - [3122] = 3122, - [3123] = 656, - [3124] = 666, + [3101] = 624, + [3102] = 625, + [3103] = 626, + [3104] = 627, + [3105] = 602, + [3106] = 628, + [3107] = 654, + [3108] = 150, + [3109] = 368, + [3110] = 685, + [3111] = 629, + [3112] = 191, + [3113] = 646, + [3114] = 355, + [3115] = 528, + [3116] = 605, + [3117] = 611, + [3118] = 369, + [3119] = 148, + [3120] = 608, + [3121] = 621, + [3122] = 344, + [3123] = 622, + [3124] = 3124, [3125] = 3125, - [3126] = 3104, - [3127] = 3081, - [3128] = 3128, - [3129] = 691, - [3130] = 3083, - [3131] = 3097, - [3132] = 652, - [3133] = 3125, - [3134] = 3128, - [3135] = 204, - [3136] = 668, - [3137] = 611, - [3138] = 612, - [3139] = 629, - [3140] = 630, - [3141] = 645, - [3142] = 660, - [3143] = 661, - [3144] = 613, - [3145] = 614, - [3146] = 615, - [3147] = 3147, - [3148] = 3148, - [3149] = 369, - [3150] = 642, - [3151] = 623, - [3152] = 637, - [3153] = 161, - [3154] = 204, - [3155] = 537, - [3156] = 639, - [3157] = 640, - [3158] = 641, - [3159] = 549, - [3160] = 643, - [3161] = 644, - [3162] = 156, - [3163] = 646, - [3164] = 647, - [3165] = 368, - [3166] = 157, - [3167] = 3167, - [3168] = 369, - [3169] = 631, - [3170] = 638, - [3171] = 564, - [3172] = 353, - [3173] = 666, - [3174] = 378, - [3175] = 160, - [3176] = 355, - [3177] = 668, - [3178] = 379, - [3179] = 676, - [3180] = 356, - [3181] = 159, - [3182] = 381, - [3183] = 357, - [3184] = 382, - [3185] = 632, - [3186] = 341, - [3187] = 670, - [3188] = 155, + [3126] = 3126, + [3127] = 623, + [3128] = 624, + [3129] = 625, + [3130] = 626, + [3131] = 627, + [3132] = 637, + [3133] = 628, + [3134] = 3134, + [3135] = 629, + [3136] = 611, + [3137] = 345, + [3138] = 352, + [3139] = 612, + [3140] = 355, + [3141] = 605, + [3142] = 150, + [3143] = 685, + [3144] = 499, + [3145] = 645, + [3146] = 646, + [3147] = 652, + [3148] = 653, + [3149] = 654, + [3150] = 613, + [3151] = 3151, + [3152] = 3152, + [3153] = 498, + [3154] = 3154, + [3155] = 2983, + [3156] = 3156, + [3157] = 601, + [3158] = 614, + [3159] = 657, + [3160] = 658, + [3161] = 659, + [3162] = 141, + [3163] = 3007, + [3164] = 615, + [3165] = 660, + [3166] = 616, + [3167] = 145, + [3168] = 3168, + [3169] = 617, + [3170] = 144, + [3171] = 662, + [3172] = 664, + [3173] = 3173, + [3174] = 142, + [3175] = 665, + [3176] = 620, + [3177] = 191, + [3178] = 618, + [3179] = 3179, + [3180] = 367, + [3181] = 366, + [3182] = 368, + [3183] = 369, + [3184] = 3184, + [3185] = 340, + [3186] = 3186, + [3187] = 341, + [3188] = 602, [3189] = 342, - [3190] = 677, - [3191] = 678, - [3192] = 679, - [3193] = 691, - [3194] = 622, - [3195] = 633, - [3196] = 203, - [3197] = 624, - [3198] = 652, - [3199] = 611, - [3200] = 3200, - [3201] = 3201, - [3202] = 634, - [3203] = 153, - [3204] = 612, + [3190] = 619, + [3191] = 343, + [3192] = 647, + [3193] = 367, + [3194] = 366, + [3195] = 368, + [3196] = 369, + [3197] = 371, + [3198] = 3198, + [3199] = 355, + [3200] = 352, + [3201] = 383, + [3202] = 383, + [3203] = 367, + [3204] = 3204, [3205] = 3205, - [3206] = 613, - [3207] = 614, - [3208] = 615, - [3209] = 616, - [3210] = 378, - [3211] = 536, - [3212] = 617, - [3213] = 379, - [3214] = 658, - [3215] = 3215, + [3206] = 3206, + [3207] = 345, + [3208] = 344, + [3209] = 3209, + [3210] = 371, + [3211] = 3168, + [3212] = 368, + [3213] = 3213, + [3214] = 3214, + [3215] = 3209, [3216] = 3216, - [3217] = 453, - [3218] = 454, - [3219] = 381, - [3220] = 3220, - [3221] = 382, - [3222] = 1267, - [3223] = 618, - [3224] = 360, - [3225] = 619, - [3226] = 620, - [3227] = 621, - [3228] = 3228, - [3229] = 3229, - [3230] = 3230, - [3231] = 3147, - [3232] = 358, - [3233] = 163, - [3234] = 555, - [3235] = 635, - [3236] = 379, - [3237] = 617, - [3238] = 453, - [3239] = 454, - [3240] = 381, - [3241] = 3100, - [3242] = 635, - [3243] = 382, - [3244] = 638, - [3245] = 639, - [3246] = 611, - [3247] = 612, - [3248] = 204, - [3249] = 613, - [3250] = 618, - [3251] = 3251, - [3252] = 677, - [3253] = 614, - [3254] = 640, - [3255] = 678, - [3256] = 679, - [3257] = 621, - [3258] = 642, - [3259] = 643, - [3260] = 622, - [3261] = 619, - [3262] = 369, - [3263] = 691, - [3264] = 623, - [3265] = 666, - [3266] = 668, - [3267] = 647, - [3268] = 637, - [3269] = 3269, - [3270] = 3270, - [3271] = 3271, - [3272] = 615, - [3273] = 3273, - [3274] = 658, - [3275] = 360, - [3276] = 368, - [3277] = 163, - [3278] = 3278, - [3279] = 156, - [3280] = 644, - [3281] = 353, - [3282] = 358, - [3283] = 3283, - [3284] = 3284, - [3285] = 3285, - [3286] = 157, - [3287] = 155, - [3288] = 3288, - [3289] = 3289, - [3290] = 3290, - [3291] = 652, - [3292] = 641, - [3293] = 355, - [3294] = 624, - [3295] = 153, - [3296] = 620, - [3297] = 378, - [3298] = 356, - [3299] = 631, - [3300] = 357, - [3301] = 646, - [3302] = 632, - [3303] = 633, - [3304] = 3148, - [3305] = 634, - [3306] = 670, - [3307] = 3307, - [3308] = 616, - [3309] = 369, - [3310] = 368, - [3311] = 378, - [3312] = 379, - [3313] = 381, - [3314] = 382, - [3315] = 389, - [3316] = 390, - [3317] = 3317, - [3318] = 381, - [3319] = 3319, - [3320] = 358, - [3321] = 3321, - [3322] = 3322, - [3323] = 360, - [3324] = 390, - [3325] = 3325, - [3326] = 3307, - [3327] = 3327, - [3328] = 389, - [3329] = 3329, - [3330] = 3322, - [3331] = 3321, - [3332] = 3319, - [3333] = 3329, - [3334] = 3327, - [3335] = 3325, - [3336] = 3336, - [3337] = 3337, - [3338] = 378, - [3339] = 3339, - [3340] = 379, - [3341] = 3336, - [3342] = 382, - [3343] = 3337, - [3344] = 369, - [3345] = 360, - [3346] = 368, - [3347] = 3339, - [3348] = 358, - [3349] = 554, - [3350] = 382, - [3351] = 548, - [3352] = 561, - [3353] = 3353, - [3354] = 535, - [3355] = 537, - [3356] = 533, - [3357] = 527, - [3358] = 379, - [3359] = 381, - [3360] = 3360, - [3361] = 549, - [3362] = 555, - [3363] = 378, - [3364] = 536, - [3365] = 369, - [3366] = 368, - [3367] = 3367, - [3368] = 527, - [3369] = 548, - [3370] = 3370, - [3371] = 555, - [3372] = 379, - [3373] = 536, - [3374] = 381, - [3375] = 1692, - [3376] = 382, - [3377] = 537, - [3378] = 561, - [3379] = 549, - [3380] = 535, - [3381] = 378, - [3382] = 533, - [3383] = 554, - [3384] = 2491, - [3385] = 314, - [3386] = 1881, - [3387] = 3387, - [3388] = 3388, - [3389] = 3389, - [3390] = 1692, - [3391] = 2459, - [3392] = 2464, - [3393] = 2466, - [3394] = 2469, - [3395] = 2471, - [3396] = 2475, - [3397] = 2478, - [3398] = 2480, - [3399] = 2501, - [3400] = 2506, - [3401] = 2513, - [3402] = 2523, - [3403] = 3389, - [3404] = 2462, - [3405] = 2465, - [3406] = 2467, - [3407] = 2472, - [3408] = 3408, - [3409] = 2569, - [3410] = 2514, - [3411] = 2515, - [3412] = 2522, - [3413] = 2525, - [3414] = 2564, - [3415] = 2521, - [3416] = 2535, - [3417] = 2542, - [3418] = 2470, - [3419] = 2483, - [3420] = 2549, - [3421] = 2432, - [3422] = 2440, - [3423] = 2468, - [3424] = 2433, - [3425] = 2437, - [3426] = 2448, - [3427] = 2454, - [3428] = 2460, - [3429] = 2477, - [3430] = 2489, - [3431] = 2524, - [3432] = 2438, - [3433] = 2456, - [3434] = 2484, - [3435] = 2528, - [3436] = 2434, - [3437] = 2476, - [3438] = 2516, - [3439] = 2527, - [3440] = 2482, - [3441] = 2486, - [3442] = 2493, - [3443] = 2495, - [3444] = 2497, - [3445] = 2500, - [3446] = 2529, - [3447] = 2531, - [3448] = 3448, - [3449] = 2537, - [3450] = 2539, - [3451] = 2540, - [3452] = 2544, - [3453] = 2545, - [3454] = 2548, - [3455] = 2550, - [3456] = 2552, - [3457] = 2553, - [3458] = 2556, - [3459] = 2560, - [3460] = 2562, - [3461] = 2563, - [3462] = 2566, - [3463] = 2567, - [3464] = 2507, - [3465] = 2518, - [3466] = 2511, - [3467] = 2436, - [3468] = 2538, - [3469] = 2445, - [3470] = 2532, - [3471] = 2534, - [3472] = 2561, - [3473] = 2439, - [3474] = 2509, - [3475] = 2519, - [3476] = 2442, - [3477] = 2446, - [3478] = 2450, - [3479] = 2451, - [3480] = 2453, - [3481] = 2458, - [3482] = 2461, - [3483] = 2463, - [3484] = 2485, - [3485] = 2510, - [3486] = 2512, - [3487] = 2517, - [3488] = 2487, - [3489] = 2488, - [3490] = 2490, - [3491] = 2492, - [3492] = 2494, - [3493] = 2496, - [3494] = 2498, - [3495] = 2499, - [3496] = 2502, - [3497] = 2503, - [3498] = 2504, - [3499] = 2505, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 3389, - [3504] = 314, - [3505] = 2536, - [3506] = 335, - [3507] = 333, - [3508] = 156, - [3509] = 334, - [3510] = 3510, - [3511] = 3511, - [3512] = 157, - [3513] = 3513, - [3514] = 3514, - [3515] = 3515, - [3516] = 3516, - [3517] = 334, - [3518] = 1400, - [3519] = 333, - [3520] = 314, - [3521] = 3353, - [3522] = 3360, - [3523] = 3516, - [3524] = 3524, - [3525] = 2487, - [3526] = 2488, - [3527] = 3514, - [3528] = 2490, - [3529] = 2492, - [3530] = 2494, - [3531] = 2496, - [3532] = 2498, - [3533] = 2499, - [3534] = 2502, - [3535] = 2503, - [3536] = 3515, - [3537] = 153, - [3538] = 336, - [3539] = 1881, - [3540] = 314, - [3541] = 2504, - [3542] = 2505, - [3543] = 332, - [3544] = 3524, - [3545] = 155, - [3546] = 335, - [3547] = 332, - [3548] = 337, - [3549] = 347, - [3550] = 333, - [3551] = 346, - [3552] = 341, - [3553] = 1400, - [3554] = 1440, + [3217] = 3217, + [3218] = 3218, + [3219] = 3204, + [3220] = 3213, + [3221] = 3214, + [3222] = 3205, + [3223] = 369, + [3224] = 366, + [3225] = 3206, + [3226] = 3217, + [3227] = 3216, + [3228] = 3218, + [3229] = 344, + [3230] = 345, + [3231] = 355, + [3232] = 352, + [3233] = 3233, + [3234] = 520, + [3235] = 528, + [3236] = 369, + [3237] = 517, + [3238] = 366, + [3239] = 527, + [3240] = 355, + [3241] = 516, + [3242] = 521, + [3243] = 3243, + [3244] = 529, + [3245] = 3245, + [3246] = 531, + [3247] = 368, + [3248] = 530, + [3249] = 514, + [3250] = 352, + [3251] = 367, + [3252] = 3252, + [3253] = 530, + [3254] = 521, + [3255] = 520, + [3256] = 368, + [3257] = 1638, + [3258] = 516, + [3259] = 531, + [3260] = 369, + [3261] = 517, + [3262] = 367, + [3263] = 366, + [3264] = 527, + [3265] = 528, + [3266] = 514, + [3267] = 529, + [3268] = 2371, + [3269] = 2434, + [3270] = 2436, + [3271] = 2441, + [3272] = 2442, + [3273] = 2309, + [3274] = 2444, + [3275] = 2443, + [3276] = 2336, + [3277] = 2321, + [3278] = 2327, + [3279] = 2425, + [3280] = 2363, + [3281] = 2389, + [3282] = 2322, + [3283] = 2331, + [3284] = 2341, + [3285] = 2366, + [3286] = 2398, + [3287] = 2426, + [3288] = 2334, + [3289] = 2352, + [3290] = 2380, + [3291] = 2391, + [3292] = 2427, + [3293] = 2328, + [3294] = 2353, + [3295] = 2369, + [3296] = 2384, + [3297] = 2339, + [3298] = 2417, + [3299] = 2346, + [3300] = 2320, + [3301] = 2351, + [3302] = 2326, + [3303] = 2354, + [3304] = 2344, + [3305] = 2358, + [3306] = 2368, + [3307] = 2377, + [3308] = 2359, + [3309] = 2338, + [3310] = 2343, + [3311] = 2348, + [3312] = 2356, + [3313] = 2360, + [3314] = 2365, + [3315] = 2367, + [3316] = 2370, + [3317] = 2382, + [3318] = 2386, + [3319] = 2390, + [3320] = 2392, + [3321] = 2396, + [3322] = 2399, + [3323] = 2400, + [3324] = 2402, + [3325] = 2421, + [3326] = 2428, + [3327] = 2440, + [3328] = 2310, + [3329] = 2311, + [3330] = 2312, + [3331] = 2313, + [3332] = 2314, + [3333] = 2318, + [3334] = 2319, + [3335] = 2323, + [3336] = 2325, + [3337] = 2335, + [3338] = 2337, + [3339] = 2340, + [3340] = 2342, + [3341] = 2347, + [3342] = 2350, + [3343] = 2355, + [3344] = 2357, + [3345] = 2373, + [3346] = 2376, + [3347] = 2379, + [3348] = 2381, + [3349] = 2383, + [3350] = 2385, + [3351] = 2387, + [3352] = 2388, + [3353] = 2393, + [3354] = 2394, + [3355] = 2395, + [3356] = 2397, + [3357] = 2403, + [3358] = 2404, + [3359] = 2405, + [3360] = 2406, + [3361] = 2407, + [3362] = 2408, + [3363] = 2409, + [3364] = 2410, + [3365] = 2411, + [3366] = 2412, + [3367] = 2413, + [3368] = 2414, + [3369] = 2364, + [3370] = 1726, + [3371] = 3371, + [3372] = 2372, + [3373] = 3373, + [3374] = 3374, + [3375] = 3375, + [3376] = 2374, + [3377] = 3377, + [3378] = 317, + [3379] = 3379, + [3380] = 2378, + [3381] = 3381, + [3382] = 3373, + [3383] = 3373, + [3384] = 1638, + [3385] = 3385, + [3386] = 2433, + [3387] = 2333, + [3388] = 2375, + [3389] = 1726, + [3390] = 3390, + [3391] = 320, + [3392] = 3392, + [3393] = 3390, + [3394] = 321, + [3395] = 3392, + [3396] = 2403, + [3397] = 3397, + [3398] = 2413, + [3399] = 2404, + [3400] = 317, + [3401] = 2405, + [3402] = 2406, + [3403] = 3403, + [3404] = 3404, + [3405] = 2407, + [3406] = 2414, + [3407] = 2408, + [3408] = 3243, + [3409] = 3409, + [3410] = 2409, + [3411] = 2410, + [3412] = 2411, + [3413] = 2412, + [3414] = 3409, + [3415] = 3397, + [3416] = 3233, + [3417] = 3417, + [3418] = 321, + [3419] = 3419, + [3420] = 319, + [3421] = 322, + [3422] = 3419, + [3423] = 1351, + [3424] = 320, + [3425] = 318, + [3426] = 3426, + [3427] = 3427, + [3428] = 3428, + [3429] = 3429, + [3430] = 1392, + [3431] = 3431, + [3432] = 3432, + [3433] = 3433, + [3434] = 3434, + [3435] = 3434, + [3436] = 3436, + [3437] = 3437, + [3438] = 587, + [3439] = 329, + [3440] = 330, + [3441] = 331, + [3442] = 332, + [3443] = 3426, + [3444] = 3431, + [3445] = 1257, + [3446] = 1383, + [3447] = 335, + [3448] = 319, + [3449] = 3432, + [3450] = 3433, + [3451] = 3436, + [3452] = 3426, + [3453] = 3427, + [3454] = 3437, + [3455] = 3455, + [3456] = 3456, + [3457] = 3432, + [3458] = 3433, + [3459] = 3436, + [3460] = 3427, + [3461] = 3437, + [3462] = 3455, + [3463] = 3456, + [3464] = 322, + [3465] = 3455, + [3466] = 3456, + [3467] = 327, + [3468] = 335, + [3469] = 345, + [3470] = 1257, + [3471] = 340, + [3472] = 3472, + [3473] = 341, + [3474] = 342, + [3475] = 3475, + [3476] = 343, + [3477] = 3477, + [3478] = 671, + [3479] = 344, + [3480] = 327, + [3481] = 3481, + [3482] = 355, + [3483] = 340, + [3484] = 189, + [3485] = 345, + [3486] = 341, + [3487] = 319, + [3488] = 342, + [3489] = 343, + [3490] = 3490, + [3491] = 344, + [3492] = 352, + [3493] = 191, + [3494] = 383, + [3495] = 371, + [3496] = 368, + [3497] = 352, + [3498] = 355, + [3499] = 367, + [3500] = 369, + [3501] = 366, + [3502] = 367, + [3503] = 3168, + [3504] = 322, + [3505] = 371, + [3506] = 369, + [3507] = 319, + [3508] = 383, + [3509] = 366, + [3510] = 344, + [3511] = 345, + [3512] = 368, + [3513] = 345, + [3514] = 352, + [3515] = 344, + [3516] = 327, + [3517] = 335, + [3518] = 322, + [3519] = 355, + [3520] = 319, + [3521] = 529, + [3522] = 1884, + [3523] = 335, + [3524] = 352, + [3525] = 517, + [3526] = 531, + [3527] = 3527, + [3528] = 3528, + [3529] = 368, + [3530] = 528, + [3531] = 521, + [3532] = 472, + [3533] = 491, + [3534] = 492, + [3535] = 493, + [3536] = 527, + [3537] = 1837, + [3538] = 514, + [3539] = 366, + [3540] = 367, + [3541] = 369, + [3542] = 342, + [3543] = 343, + [3544] = 520, + [3545] = 516, + [3546] = 3546, + [3547] = 530, + [3548] = 355, + [3549] = 327, + [3550] = 341, + [3551] = 1819, + [3552] = 487, + [3553] = 1896, + [3554] = 340, [3555] = 3555, - [3556] = 150, - [3557] = 3555, - [3558] = 342, - [3559] = 352, - [3560] = 354, - [3561] = 336, - [3562] = 1411, - [3563] = 334, - [3564] = 348, - [3565] = 1400, - [3566] = 332, - [3567] = 335, - [3568] = 336, - [3569] = 3569, - [3570] = 341, - [3571] = 342, - [3572] = 336, - [3573] = 335, - [3574] = 353, - [3575] = 3575, - [3576] = 355, - [3577] = 3577, - [3578] = 3578, - [3579] = 356, - [3580] = 3580, - [3581] = 357, - [3582] = 341, - [3583] = 1267, - [3584] = 3584, - [3585] = 1378, - [3586] = 342, - [3587] = 3584, - [3588] = 3588, - [3589] = 3569, - [3590] = 3590, - [3591] = 597, - [3592] = 348, - [3593] = 3593, - [3594] = 346, - [3595] = 347, - [3596] = 3596, - [3597] = 1267, - [3598] = 3588, - [3599] = 1440, - [3600] = 3575, - [3601] = 3577, - [3602] = 3578, - [3603] = 3580, - [3604] = 3604, - [3605] = 3605, - [3606] = 1411, - [3607] = 152, - [3608] = 151, - [3609] = 3588, - [3610] = 3569, - [3611] = 3575, - [3612] = 3577, - [3613] = 3578, - [3614] = 3580, - [3615] = 3604, - [3616] = 3605, - [3617] = 3590, - [3618] = 3605, - [3619] = 3604, - [3620] = 337, - [3621] = 676, - [3622] = 360, - [3623] = 353, - [3624] = 358, - [3625] = 3625, - [3626] = 356, - [3627] = 352, - [3628] = 357, - [3629] = 1267, - [3630] = 1267, - [3631] = 341, - [3632] = 354, - [3633] = 358, - [3634] = 3634, - [3635] = 353, - [3636] = 355, - [3637] = 360, - [3638] = 355, - [3639] = 3639, - [3640] = 342, - [3641] = 356, - [3642] = 357, - [3643] = 3643, - [3644] = 150, - [3645] = 421, - [3646] = 150, - [3647] = 152, - [3648] = 425, - [3649] = 416, - [3650] = 401, - [3651] = 402, - [3652] = 151, - [3653] = 439, - [3654] = 1732, - [3655] = 403, - [3656] = 357, - [3657] = 368, - [3658] = 369, - [3659] = 368, - [3660] = 412, - [3661] = 410, - [3662] = 203, - [3663] = 355, - [3664] = 407, - [3665] = 417, - [3666] = 423, - [3667] = 418, - [3668] = 353, - [3669] = 360, - [3670] = 358, - [3671] = 422, - [3672] = 426, - [3673] = 414, - [3674] = 369, - [3675] = 419, - [3676] = 356, - [3677] = 404, - [3678] = 1727, - [3679] = 564, - [3680] = 405, - [3681] = 444, - [3682] = 445, - [3683] = 406, + [3556] = 531, + [3557] = 2336, + [3558] = 2364, + [3559] = 2338, + [3560] = 2343, + [3561] = 2348, + [3562] = 2356, + [3563] = 2360, + [3564] = 2365, + [3565] = 2367, + [3566] = 2370, + [3567] = 2382, + [3568] = 2371, + [3569] = 2386, + [3570] = 2390, + [3571] = 2392, + [3572] = 2396, + [3573] = 2399, + [3574] = 2400, + [3575] = 2402, + [3576] = 2421, + [3577] = 2428, + [3578] = 2440, + [3579] = 2310, + [3580] = 2311, + [3581] = 2312, + [3582] = 2313, + [3583] = 2314, + [3584] = 2372, + [3585] = 2318, + [3586] = 3555, + [3587] = 2374, + [3588] = 2378, + [3589] = 3555, + [3590] = 2319, + [3591] = 2323, + [3592] = 2339, + [3593] = 516, + [3594] = 2325, + [3595] = 2335, + [3596] = 2337, + [3597] = 3555, + [3598] = 2340, + [3599] = 2342, + [3600] = 2347, + [3601] = 517, + [3602] = 2350, + [3603] = 2355, + [3604] = 3555, + [3605] = 2357, + [3606] = 2346, + [3607] = 343, + [3608] = 3555, + [3609] = 341, + [3610] = 366, + [3611] = 529, + [3612] = 530, + [3613] = 2373, + [3614] = 2376, + [3615] = 2379, + [3616] = 3555, + [3617] = 2381, + [3618] = 368, + [3619] = 2359, + [3620] = 369, + [3621] = 520, + [3622] = 2385, + [3623] = 2433, + [3624] = 2387, + [3625] = 2434, + [3626] = 2436, + [3627] = 2441, + [3628] = 2388, + [3629] = 2442, + [3630] = 2393, + [3631] = 2309, + [3632] = 2394, + [3633] = 2444, + [3634] = 2395, + [3635] = 2397, + [3636] = 2443, + [3637] = 2375, + [3638] = 2321, + [3639] = 2327, + [3640] = 2425, + [3641] = 2363, + [3642] = 2389, + [3643] = 2351, + [3644] = 2322, + [3645] = 514, + [3646] = 2331, + [3647] = 2341, + [3648] = 2366, + [3649] = 2398, + [3650] = 2426, + [3651] = 2334, + [3652] = 2352, + [3653] = 2380, + [3654] = 2391, + [3655] = 2427, + [3656] = 2328, + [3657] = 2353, + [3658] = 2369, + [3659] = 2384, + [3660] = 2354, + [3661] = 2417, + [3662] = 2320, + [3663] = 2326, + [3664] = 2344, + [3665] = 342, + [3666] = 521, + [3667] = 367, + [3668] = 2358, + [3669] = 528, + [3670] = 2368, + [3671] = 340, + [3672] = 2377, + [3673] = 527, + [3674] = 2333, + [3675] = 345, + [3676] = 1638, + [3677] = 2383, + [3678] = 3678, + [3679] = 3679, + [3680] = 3680, + [3681] = 1638, + [3682] = 3682, + [3683] = 3683, [3684] = 3684, - [3685] = 636, - [3686] = 613, - [3687] = 679, - [3688] = 618, - [3689] = 619, - [3690] = 204, - [3691] = 614, - [3692] = 687, - [3693] = 629, - [3694] = 152, - [3695] = 655, - [3696] = 691, - [3697] = 158, - [3698] = 648, + [3685] = 3685, + [3686] = 3686, + [3687] = 3687, + [3688] = 3688, + [3689] = 3682, + [3690] = 3690, + [3691] = 3691, + [3692] = 3688, + [3693] = 3682, + [3694] = 3688, + [3695] = 3695, + [3696] = 3696, + [3697] = 3697, + [3698] = 3698, [3699] = 3699, - [3700] = 615, - [3701] = 661, - [3702] = 154, - [3703] = 670, - [3704] = 378, - [3705] = 389, - [3706] = 152, - [3707] = 151, - [3708] = 657, - [3709] = 390, - [3710] = 620, - [3711] = 389, - [3712] = 656, - [3713] = 617, - [3714] = 652, - [3715] = 382, - [3716] = 611, - [3717] = 621, - [3718] = 379, - [3719] = 622, - [3720] = 151, - [3721] = 379, - [3722] = 390, - [3723] = 630, - [3724] = 623, - [3725] = 616, - [3726] = 677, - [3727] = 381, - [3728] = 665, - [3729] = 658, - [3730] = 612, - [3731] = 382, - [3732] = 635, - [3733] = 381, - [3734] = 368, - [3735] = 654, - [3736] = 675, - [3737] = 666, - [3738] = 645, - [3739] = 378, - [3740] = 678, - [3741] = 668, - [3742] = 369, - [3743] = 3307, - [3744] = 660, - [3745] = 608, - [3746] = 154, - [3747] = 159, - [3748] = 336, - [3749] = 158, - [3750] = 335, - [3751] = 158, - [3752] = 154, - [3753] = 156, - [3754] = 358, - [3755] = 157, - [3756] = 155, - [3757] = 153, - [3758] = 3307, - [3759] = 360, - [3760] = 422, - [3761] = 423, - [3762] = 378, - [3763] = 379, - [3764] = 381, - [3765] = 382, - [3766] = 439, - [3767] = 444, - [3768] = 445, - [3769] = 421, - [3770] = 401, - [3771] = 402, - [3772] = 403, - [3773] = 404, - [3774] = 405, - [3775] = 407, - [3776] = 410, - [3777] = 412, - [3778] = 414, - [3779] = 352, - [3780] = 354, - [3781] = 150, - [3782] = 416, - [3783] = 417, - [3784] = 418, - [3785] = 419, - [3786] = 1618, - [3787] = 425, - [3788] = 426, - [3789] = 358, - [3790] = 389, - [3791] = 390, - [3792] = 156, - [3793] = 360, - [3794] = 157, - [3795] = 155, - [3796] = 153, - [3797] = 3307, - [3798] = 161, - [3799] = 160, - [3800] = 406, - [3801] = 480, - [3802] = 564, - [3803] = 358, - [3804] = 360, - [3805] = 368, - [3806] = 163, - [3807] = 160, - [3808] = 369, - [3809] = 2161, - [3810] = 368, - [3811] = 159, - [3812] = 342, - [3813] = 474, - [3814] = 369, - [3815] = 453, - [3816] = 537, - [3817] = 159, - [3818] = 454, - [3819] = 335, - [3820] = 452, - [3821] = 1692, - [3822] = 2015, - [3823] = 336, - [3824] = 500, - [3825] = 161, - [3826] = 1705, - [3827] = 161, - [3828] = 527, - [3829] = 341, - [3830] = 1731, - [3831] = 160, - [3832] = 455, - [3833] = 456, - [3834] = 549, - [3835] = 1973, - [3836] = 2159, - [3837] = 555, - [3838] = 536, - [3839] = 450, - [3840] = 1617, - [3841] = 1651, - [3842] = 636, - [3843] = 645, - [3844] = 1891, - [3845] = 1595, - [3846] = 3846, - [3847] = 555, - [3848] = 660, - [3849] = 353, - [3850] = 661, - [3851] = 630, - [3852] = 1780, - [3853] = 1782, - [3854] = 635, - [3855] = 2011, - [3856] = 561, - [3857] = 665, - [3858] = 535, - [3859] = 2008, - [3860] = 355, - [3861] = 368, - [3862] = 675, - [3863] = 369, - [3864] = 2012, - [3865] = 1764, - [3866] = 1765, - [3867] = 1766, - [3868] = 1767, - [3869] = 3869, - [3870] = 342, - [3871] = 356, - [3872] = 658, - [3873] = 2161, - [3874] = 2009, - [3875] = 2013, - [3876] = 687, - [3877] = 357, - [3878] = 548, - [3879] = 666, - [3880] = 2014, - [3881] = 668, - [3882] = 670, - [3883] = 561, - [3884] = 677, - [3885] = 678, - [3886] = 679, - [3887] = 535, - [3888] = 691, - [3889] = 652, - [3890] = 554, - [3891] = 611, - [3892] = 533, - [3893] = 612, - [3894] = 613, - [3895] = 614, - [3896] = 615, - [3897] = 549, - [3898] = 527, - [3899] = 616, - [3900] = 1999, - [3901] = 378, - [3902] = 617, - [3903] = 2000, - [3904] = 555, - [3905] = 536, - [3906] = 618, - [3907] = 619, - [3908] = 379, - [3909] = 620, - [3910] = 381, - [3911] = 621, - [3912] = 382, - [3913] = 2002, - [3914] = 1789, - [3915] = 341, - [3916] = 2159, - [3917] = 2003, - [3918] = 2004, - [3919] = 648, - [3920] = 537, - [3921] = 1727, - [3922] = 360, - [3923] = 163, - [3924] = 1732, - [3925] = 1790, - [3926] = 548, - [3927] = 608, - [3928] = 654, - [3929] = 554, - [3930] = 549, - [3931] = 622, - [3932] = 1601, - [3933] = 537, - [3934] = 657, - [3935] = 378, - [3936] = 2159, - [3937] = 452, - [3938] = 1973, - [3939] = 2161, - [3940] = 2015, - [3941] = 2010, - [3942] = 452, - [3943] = 533, - [3944] = 527, - [3945] = 379, - [3946] = 3946, - [3947] = 450, - [3948] = 455, - [3949] = 456, - [3950] = 500, - [3951] = 381, - [3952] = 382, - [3953] = 623, - [3954] = 629, - [3955] = 655, - [3956] = 656, - [3957] = 536, - [3958] = 2564, - [3959] = 2562, - [3960] = 2563, - [3961] = 2566, - [3962] = 2567, - [3963] = 2507, - [3964] = 2518, - [3965] = 2511, - [3966] = 2436, - [3967] = 2538, - [3968] = 2445, - [3969] = 2532, - [3970] = 2534, - [3971] = 2561, - [3972] = 2439, - [3973] = 2509, - [3974] = 2519, - [3975] = 536, - [3976] = 379, - [3977] = 360, - [3978] = 2442, - [3979] = 2446, - [3980] = 2450, - [3981] = 2451, - [3982] = 2453, - [3983] = 2458, - [3984] = 2461, - [3985] = 2463, - [3986] = 2485, - [3987] = 2510, - [3988] = 2512, - [3989] = 2517, - [3990] = 381, - [3991] = 2459, - [3992] = 2464, - [3993] = 2466, - [3994] = 2469, - [3995] = 382, - [3996] = 3996, - [3997] = 2471, - [3998] = 356, - [3999] = 2475, - [4000] = 2478, - [4001] = 2480, - [4002] = 3996, - [4003] = 378, - [4004] = 2501, - [4005] = 2506, - [4006] = 2513, - [4007] = 2523, - [4008] = 355, - [4009] = 1692, - [4010] = 2462, - [4011] = 2465, - [4012] = 2467, - [4013] = 2472, - [4014] = 2491, - [4015] = 2569, - [4016] = 2514, - [4017] = 2515, - [4018] = 2522, - [4019] = 2525, - [4020] = 537, - [4021] = 2556, - [4022] = 2560, - [4023] = 2535, - [4024] = 2542, - [4025] = 2470, - [4026] = 353, - [4027] = 548, - [4028] = 2483, - [4029] = 561, - [4030] = 2549, - [4031] = 535, - [4032] = 2432, - [4033] = 554, - [4034] = 533, - [4035] = 2440, - [4036] = 2468, - [4037] = 357, - [4038] = 2433, - [4039] = 2437, - [4040] = 2448, - [4041] = 2454, - [4042] = 2460, - [4043] = 2477, - [4044] = 3996, - [4045] = 3996, - [4046] = 3996, - [4047] = 3996, - [4048] = 2489, - [4049] = 2524, - [4050] = 2438, - [4051] = 2456, - [4052] = 1692, - [4053] = 2484, - [4054] = 2528, - [4055] = 2434, - [4056] = 2476, - [4057] = 527, - [4058] = 2516, - [4059] = 2527, - [4060] = 3996, - [4061] = 549, - [4062] = 555, - [4063] = 2482, - [4064] = 2486, - [4065] = 2493, - [4066] = 2495, - [4067] = 2497, - [4068] = 2500, - [4069] = 2529, - [4070] = 2531, - [4071] = 2536, - [4072] = 2537, - [4073] = 2539, - [4074] = 2540, - [4075] = 2544, - [4076] = 2545, - [4077] = 2548, - [4078] = 2550, - [4079] = 2552, - [4080] = 2553, - [4081] = 2521, - [4082] = 2209, - [4083] = 638, - [4084] = 639, - [4085] = 2502, - [4086] = 2265, - [4087] = 4087, - [4088] = 4088, + [3700] = 3700, + [3701] = 3701, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3707, + [3708] = 3708, + [3709] = 3687, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 2403, + [3714] = 3714, + [3715] = 2405, + [3716] = 2405, + [3717] = 2414, + [3718] = 3718, + [3719] = 2408, + [3720] = 2406, + [3721] = 2407, + [3722] = 3718, + [3723] = 3718, + [3724] = 2408, + [3725] = 2409, + [3726] = 2410, + [3727] = 2406, + [3728] = 2410, + [3729] = 3718, + [3730] = 3730, + [3731] = 2413, + [3732] = 3686, + [3733] = 2409, + [3734] = 2411, + [3735] = 3718, + [3736] = 3679, + [3737] = 2411, + [3738] = 2412, + [3739] = 2413, + [3740] = 3718, + [3741] = 2403, + [3742] = 2404, + [3743] = 2412, + [3744] = 2414, + [3745] = 2407, + [3746] = 2404, + [3747] = 3718, + [3748] = 3718, + [3749] = 3749, + [3750] = 3750, + [3751] = 3751, + [3752] = 3751, + [3753] = 3753, + [3754] = 3749, + [3755] = 3755, + [3756] = 3753, + [3757] = 3751, + [3758] = 3751, + [3759] = 3759, + [3760] = 3760, + [3761] = 3761, + [3762] = 3751, + [3763] = 3751, + [3764] = 3761, + [3765] = 3760, + [3766] = 3750, + [3767] = 3755, + [3768] = 150, + [3769] = 3759, + [3770] = 317, + [3771] = 320, + [3772] = 318, + [3773] = 317, + [3774] = 321, + [3775] = 320, + [3776] = 321, + [3777] = 319, + [3778] = 318, + [3779] = 322, + [3780] = 317, + [3781] = 332, + [3782] = 329, + [3783] = 330, + [3784] = 331, + [3785] = 317, + [3786] = 329, + [3787] = 1257, + [3788] = 330, + [3789] = 331, + [3790] = 332, + [3791] = 322, + [3792] = 319, + [3793] = 327, + [3794] = 335, + [3795] = 137, + [3796] = 321, + [3797] = 318, + [3798] = 320, + [3799] = 345, + [3800] = 327, + [3801] = 335, + [3802] = 321, + [3803] = 340, + [3804] = 329, + [3805] = 341, + [3806] = 330, + [3807] = 342, + [3808] = 343, + [3809] = 320, + [3810] = 331, + [3811] = 344, + [3812] = 332, + [3813] = 1257, + [3814] = 137, + [3815] = 322, + [3816] = 318, + [3817] = 319, + [3818] = 343, + [3819] = 344, + [3820] = 331, + [3821] = 335, + [3822] = 1257, + [3823] = 345, + [3824] = 352, + [3825] = 341, + [3826] = 332, + [3827] = 355, + [3828] = 189, + [3829] = 329, + [3830] = 330, + [3831] = 342, + [3832] = 327, + [3833] = 340, + [3834] = 322, + [3835] = 319, + [3836] = 317, + [3837] = 351, + [3838] = 320, + [3839] = 340, + [3840] = 337, + [3841] = 352, + [3842] = 322, + [3843] = 345, + [3844] = 355, + [3845] = 319, + [3846] = 383, + [3847] = 371, + [3848] = 367, + [3849] = 327, + [3850] = 366, + [3851] = 368, + [3852] = 369, + [3853] = 191, + [3854] = 318, + [3855] = 341, + [3856] = 342, + [3857] = 344, + [3858] = 321, + [3859] = 1257, + [3860] = 137, + [3861] = 335, + [3862] = 343, + [3863] = 383, + [3864] = 1345, + [3865] = 367, + [3866] = 340, + [3867] = 355, + [3868] = 337, + [3869] = 352, + [3870] = 344, + [3871] = 343, + [3872] = 366, + [3873] = 344, + [3874] = 326, + [3875] = 335, + [3876] = 332, + [3877] = 329, + [3878] = 368, + [3879] = 369, + [3880] = 138, + [3881] = 327, + [3882] = 345, + [3883] = 139, + [3884] = 341, + [3885] = 331, + [3886] = 330, + [3887] = 342, + [3888] = 351, + [3889] = 345, + [3890] = 137, + [3891] = 371, + [3892] = 3892, + [3893] = 345, + [3894] = 3894, + [3895] = 340, + [3896] = 142, + [3897] = 366, + [3898] = 1345, + [3899] = 140, + [3900] = 345, + [3901] = 352, + [3902] = 352, + [3903] = 355, + [3904] = 341, + [3905] = 144, + [3906] = 143, + [3907] = 138, + [3908] = 3908, + [3909] = 344, + [3910] = 383, + [3911] = 3911, + [3912] = 369, + [3913] = 351, + [3914] = 367, + [3915] = 141, + [3916] = 343, + [3917] = 141, + [3918] = 145, + [3919] = 137, + [3920] = 344, + [3921] = 142, + [3922] = 355, + [3923] = 145, + [3924] = 139, + [3925] = 371, + [3926] = 368, + [3927] = 144, + [3928] = 337, + [3929] = 487, + [3930] = 472, + [3931] = 491, + [3932] = 492, + [3933] = 493, + [3934] = 342, + [3935] = 493, + [3936] = 530, + [3937] = 2605, + [3938] = 430, + [3939] = 431, + [3940] = 352, + [3941] = 432, + [3942] = 355, + [3943] = 419, + [3944] = 514, + [3945] = 383, + [3946] = 366, + [3947] = 3908, + [3948] = 344, + [3949] = 402, + [3950] = 3911, + [3951] = 3892, + [3952] = 140, + [3953] = 143, + [3954] = 138, + [3955] = 516, + [3956] = 433, + [3957] = 517, + [3958] = 403, + [3959] = 144, + [3960] = 147, + [3961] = 3961, + [3962] = 2640, + [3963] = 520, + [3964] = 146, + [3965] = 420, + [3966] = 421, + [3967] = 422, + [3968] = 521, + [3969] = 384, + [3970] = 367, + [3971] = 413, + [3972] = 140, + [3973] = 366, + [3974] = 143, + [3975] = 368, + [3976] = 369, + [3977] = 148, + [3978] = 2639, + [3979] = 529, + [3980] = 145, + [3981] = 487, + [3982] = 367, + [3983] = 142, + [3984] = 352, + [3985] = 3985, + [3986] = 368, + [3987] = 2663, + [3988] = 355, + [3989] = 2630, + [3990] = 436, + [3991] = 412, + [3992] = 472, + [3993] = 417, + [3994] = 3994, + [3995] = 491, + [3996] = 492, + [3997] = 369, + [3998] = 141, + [3999] = 3999, + [4000] = 404, + [4001] = 4001, + [4002] = 371, + [4003] = 527, + [4004] = 528, + [4005] = 418, + [4006] = 2613, + [4007] = 345, + [4008] = 415, + [4009] = 423, + [4010] = 424, + [4011] = 425, + [4012] = 139, + [4013] = 426, + [4014] = 427, + [4015] = 2604, + [4016] = 428, + [4017] = 429, + [4018] = 531, + [4019] = 412, + [4020] = 445, + [4021] = 4021, + [4022] = 424, + [4023] = 413, + [4024] = 425, + [4025] = 355, + [4026] = 419, + [4027] = 147, + [4028] = 146, + [4029] = 4029, + [4030] = 514, + [4031] = 147, + [4032] = 146, + [4033] = 521, + [4034] = 472, + [4035] = 426, + [4036] = 427, + [4037] = 498, + [4038] = 428, + [4039] = 429, + [4040] = 4040, + [4041] = 531, + [4042] = 529, + [4043] = 530, + [4044] = 4021, + [4045] = 516, + [4046] = 448, + [4047] = 433, + [4048] = 420, + [4049] = 352, + [4050] = 430, + [4051] = 527, + [4052] = 421, + [4053] = 423, + [4054] = 148, + [4055] = 422, + [4056] = 367, + [4057] = 384, + [4058] = 417, + [4059] = 517, + [4060] = 366, + [4061] = 148, + [4062] = 402, + [4063] = 371, + [4064] = 369, + [4065] = 493, + [4066] = 403, + [4067] = 3961, + [4068] = 150, + [4069] = 431, + [4070] = 4070, + [4071] = 367, + [4072] = 418, + [4073] = 4073, + [4074] = 366, + [4075] = 1638, + [4076] = 368, + [4077] = 369, + [4078] = 528, + [4079] = 4079, + [4080] = 4021, + [4081] = 4081, + [4082] = 345, + [4083] = 141, + [4084] = 404, + [4085] = 145, + [4086] = 144, + [4087] = 487, + [4088] = 142, [4089] = 4089, - [4090] = 2259, - [4091] = 2221, - [4092] = 2215, - [4093] = 3353, - [4094] = 634, - [4095] = 2253, - [4096] = 2503, - [4097] = 3360, - [4098] = 4098, - [4099] = 4089, - [4100] = 2499, - [4101] = 2260, - [4102] = 2504, - [4103] = 2261, - [4104] = 640, - [4105] = 4105, + [4090] = 3985, + [4091] = 4021, + [4092] = 383, + [4093] = 4001, + [4094] = 499, + [4095] = 491, + [4096] = 492, + [4097] = 520, + [4098] = 3994, + [4099] = 432, + [4100] = 436, + [4101] = 3999, + [4102] = 4102, + [4103] = 344, + [4104] = 415, + [4105] = 368, [4106] = 4106, - [4107] = 641, - [4108] = 642, - [4109] = 643, - [4110] = 4110, - [4111] = 4111, - [4112] = 4112, - [4113] = 644, - [4114] = 4114, - [4115] = 4115, - [4116] = 646, - [4117] = 647, - [4118] = 2254, - [4119] = 2256, - [4120] = 4120, - [4121] = 537, - [4122] = 4122, - [4123] = 2505, - [4124] = 4124, - [4125] = 2262, - [4126] = 2272, - [4127] = 2222, - [4128] = 2252, - [4129] = 2228, - [4130] = 2487, - [4131] = 2498, + [4107] = 429, + [4108] = 527, + [4109] = 4109, + [4110] = 430, + [4111] = 431, + [4112] = 432, + [4113] = 521, + [4114] = 433, + [4115] = 345, + [4116] = 4081, + [4117] = 499, + [4118] = 150, + [4119] = 4119, + [4120] = 415, + [4121] = 4121, + [4122] = 529, + [4123] = 1622, + [4124] = 530, + [4125] = 413, + [4126] = 4126, + [4127] = 4127, + [4128] = 4128, + [4129] = 4129, + [4130] = 4130, + [4131] = 4131, [4132] = 4132, [4133] = 4133, - [4134] = 637, - [4135] = 2229, - [4136] = 2488, - [4137] = 2263, - [4138] = 2233, - [4139] = 2490, - [4140] = 2234, + [4134] = 4134, + [4135] = 4135, + [4136] = 4136, + [4137] = 4137, + [4138] = 4138, + [4139] = 137, + [4140] = 472, [4141] = 4141, [4142] = 4142, [4143] = 4143, - [4144] = 1692, - [4145] = 2492, - [4146] = 2236, - [4147] = 2494, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 4147, [4148] = 4148, [4149] = 4149, - [4150] = 624, + [4150] = 4150, [4151] = 4151, [4152] = 4152, [4153] = 4153, [4154] = 4154, [4155] = 4155, - [4156] = 2264, + [4156] = 4156, [4157] = 4157, - [4158] = 4088, - [4159] = 4098, - [4160] = 2250, - [4161] = 2496, - [4162] = 2257, - [4163] = 631, - [4164] = 4088, - [4165] = 4098, - [4166] = 632, - [4167] = 2212, - [4168] = 2213, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 4162, + [4163] = 4163, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, [4169] = 4169, - [4170] = 633, + [4170] = 4170, [4171] = 4171, - [4172] = 2499, - [4173] = 2488, + [4172] = 4172, + [4173] = 367, [4174] = 4174, - [4175] = 2492, - [4176] = 2494, - [4177] = 4087, - [4178] = 2496, - [4179] = 2503, - [4180] = 2504, - [4181] = 2505, - [4182] = 2498, + [4175] = 4175, + [4176] = 4176, + [4177] = 4177, + [4178] = 4178, + [4179] = 4179, + [4180] = 4180, + [4181] = 4181, + [4182] = 4182, [4183] = 4183, - [4184] = 2487, - [4185] = 2488, - [4186] = 2490, - [4187] = 2492, - [4188] = 2494, - [4189] = 2496, - [4190] = 2498, - [4191] = 2490, - [4192] = 2503, - [4193] = 2504, - [4194] = 2505, - [4195] = 4183, - [4196] = 4183, - [4197] = 4183, - [4198] = 4183, - [4199] = 2499, - [4200] = 4183, - [4201] = 2502, - [4202] = 4183, - [4203] = 4183, - [4204] = 2487, - [4205] = 4111, + [4184] = 4184, + [4185] = 4185, + [4186] = 4186, + [4187] = 366, + [4188] = 4188, + [4189] = 4189, + [4190] = 4190, + [4191] = 498, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 4195, + [4196] = 4196, + [4197] = 4197, + [4198] = 4198, + [4199] = 4199, + [4200] = 368, + [4201] = 4201, + [4202] = 4202, + [4203] = 417, + [4204] = 4204, + [4205] = 4205, [4206] = 4206, - [4207] = 2502, + [4207] = 4207, [4208] = 4208, [4209] = 4209, - [4210] = 4210, - [4211] = 4209, - [4212] = 4209, - [4213] = 4209, - [4214] = 4214, + [4210] = 531, + [4211] = 319, + [4212] = 4212, + [4213] = 4213, + [4214] = 369, [4215] = 4215, - [4216] = 4209, - [4217] = 4210, - [4218] = 4209, + [4216] = 4216, + [4217] = 4217, + [4218] = 4218, [4219] = 4219, - [4220] = 4208, - [4221] = 4221, - [4222] = 4209, - [4223] = 4214, - [4224] = 4215, + [4220] = 1595, + [4221] = 1596, + [4222] = 4222, + [4223] = 1590, + [4224] = 4224, [4225] = 4225, - [4226] = 4219, - [4227] = 4221, - [4228] = 4225, - [4229] = 314, - [4230] = 163, - [4231] = 333, - [4232] = 314, - [4233] = 332, - [4234] = 334, - [4235] = 347, - [4236] = 314, - [4237] = 346, - [4238] = 337, - [4239] = 348, - [4240] = 332, - [4241] = 335, - [4242] = 334, - [4243] = 336, - [4244] = 333, - [4245] = 347, - [4246] = 335, - [4247] = 342, - [4248] = 314, - [4249] = 332, - [4250] = 341, - [4251] = 1267, - [4252] = 348, - [4253] = 337, - [4254] = 346, - [4255] = 333, - [4256] = 336, - [4257] = 334, - [4258] = 353, - [4259] = 358, - [4260] = 335, - [4261] = 348, - [4262] = 332, - [4263] = 337, - [4264] = 334, - [4265] = 357, - [4266] = 347, - [4267] = 333, - [4268] = 356, - [4269] = 336, - [4270] = 346, - [4271] = 150, - [4272] = 355, - [4273] = 341, - [4274] = 1267, - [4275] = 352, - [4276] = 354, - [4277] = 360, - [4278] = 342, - [4279] = 357, - [4280] = 335, - [4281] = 368, - [4282] = 352, - [4283] = 1267, - [4284] = 354, - [4285] = 347, - [4286] = 341, - [4287] = 360, - [4288] = 337, - [4289] = 336, - [4290] = 346, - [4291] = 358, - [4292] = 348, - [4293] = 353, - [4294] = 356, - [4295] = 369, - [4296] = 203, - [4297] = 150, - [4298] = 152, - [4299] = 151, - [4300] = 342, - [4301] = 355, - [4302] = 314, - [4303] = 381, - [4304] = 353, - [4305] = 358, - [4306] = 150, - [4307] = 356, - [4308] = 341, - [4309] = 150, - [4310] = 360, - [4311] = 379, - [4312] = 336, - [4313] = 357, - [4314] = 352, - [4315] = 1267, - [4316] = 378, - [4317] = 390, - [4318] = 335, - [4319] = 334, - [4320] = 204, - [4321] = 333, - [4322] = 354, - [4323] = 389, - [4324] = 152, - [4325] = 151, - [4326] = 355, - [4327] = 368, - [4328] = 382, - [4329] = 342, - [4330] = 369, - [4331] = 332, - [4332] = 348, - [4333] = 151, - [4334] = 347, - [4335] = 353, - [4336] = 352, - [4337] = 360, - [4338] = 337, - [4339] = 369, - [4340] = 360, - [4341] = 382, - [4342] = 357, - [4343] = 389, - [4344] = 378, - [4345] = 342, - [4346] = 368, - [4347] = 152, - [4348] = 354, - [4349] = 1378, - [4350] = 355, - [4351] = 346, - [4352] = 358, - [4353] = 379, - [4354] = 150, - [4355] = 356, - [4356] = 390, - [4357] = 338, - [4358] = 341, - [4359] = 358, - [4360] = 381, - [4361] = 150, - [4362] = 500, - [4363] = 379, - [4364] = 353, - [4365] = 369, - [4366] = 4366, - [4367] = 157, - [4368] = 153, - [4369] = 158, - [4370] = 382, - [4371] = 154, - [4372] = 369, - [4373] = 356, - [4374] = 4374, - [4375] = 4375, - [4376] = 358, - [4377] = 360, - [4378] = 390, - [4379] = 358, - [4380] = 352, + [4226] = 4226, + [4227] = 4227, + [4228] = 4228, + [4229] = 4229, + [4230] = 1597, + [4231] = 1599, + [4232] = 436, + [4233] = 352, + [4234] = 4234, + [4235] = 4235, + [4236] = 4236, + [4237] = 4237, + [4238] = 487, + [4239] = 4239, + [4240] = 4240, + [4241] = 4241, + [4242] = 4242, + [4243] = 4243, + [4244] = 1638, + [4245] = 4245, + [4246] = 4246, + [4247] = 4247, + [4248] = 4248, + [4249] = 528, + [4250] = 4250, + [4251] = 355, + [4252] = 514, + [4253] = 418, + [4254] = 4208, + [4255] = 4255, + [4256] = 4256, + [4257] = 344, + [4258] = 419, + [4259] = 445, + [4260] = 4260, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 4266, + [4267] = 4267, + [4268] = 4268, + [4269] = 4269, + [4270] = 4270, + [4271] = 4271, + [4272] = 4272, + [4273] = 4273, + [4274] = 4274, + [4275] = 4275, + [4276] = 345, + [4277] = 420, + [4278] = 421, + [4279] = 422, + [4280] = 491, + [4281] = 492, + [4282] = 493, + [4283] = 4283, + [4284] = 4284, + [4285] = 516, + [4286] = 384, + [4287] = 517, + [4288] = 448, + [4289] = 423, + [4290] = 424, + [4291] = 425, + [4292] = 426, + [4293] = 427, + [4294] = 412, + [4295] = 428, + [4296] = 520, + [4297] = 4297, + [4298] = 445, + [4299] = 4299, + [4300] = 4256, + [4301] = 4106, + [4302] = 4302, + [4303] = 4262, + [4304] = 4263, + [4305] = 4264, + [4306] = 1622, + [4307] = 4265, + [4308] = 4266, + [4309] = 369, + [4310] = 4310, + [4311] = 4267, + [4312] = 520, + [4313] = 4268, + [4314] = 4269, + [4315] = 521, + [4316] = 4316, + [4317] = 1597, + [4318] = 4318, + [4319] = 1693, + [4320] = 4213, + [4321] = 528, + [4322] = 4322, + [4323] = 527, + [4324] = 4217, + [4325] = 352, + [4326] = 4270, + [4327] = 498, + [4328] = 322, + [4329] = 4329, + [4330] = 4330, + [4331] = 4299, + [4332] = 531, + [4333] = 4271, + [4334] = 1798, + [4335] = 355, + [4336] = 448, + [4337] = 319, + [4338] = 4272, + [4339] = 4274, + [4340] = 4275, + [4341] = 4302, + [4342] = 472, + [4343] = 150, + [4344] = 4344, + [4345] = 1669, + [4346] = 1698, + [4347] = 516, + [4348] = 4348, + [4349] = 4330, + [4350] = 517, + [4351] = 4351, + [4352] = 1590, + [4353] = 4215, + [4354] = 4354, + [4355] = 4138, + [4356] = 4356, + [4357] = 491, + [4358] = 492, + [4359] = 368, + [4360] = 499, + [4361] = 4361, + [4362] = 4245, + [4363] = 529, + [4364] = 1595, + [4365] = 1596, + [4366] = 1656, + [4367] = 493, + [4368] = 514, + [4369] = 487, + [4370] = 4370, + [4371] = 4371, + [4372] = 345, + [4373] = 4370, + [4374] = 1599, + [4375] = 530, + [4376] = 4376, + [4377] = 4248, + [4378] = 4250, + [4379] = 366, + [4380] = 367, [4381] = 4381, - [4382] = 355, - [4383] = 150, - [4384] = 354, - [4385] = 152, - [4386] = 151, - [4387] = 368, - [4388] = 1378, - [4389] = 452, - [4390] = 378, - [4391] = 450, - [4392] = 455, - [4393] = 456, - [4394] = 360, - [4395] = 155, - [4396] = 357, - [4397] = 381, - [4398] = 368, - [4399] = 389, - [4400] = 156, - [4401] = 456, - [4402] = 2746, - [4403] = 554, - [4404] = 2748, - [4405] = 2749, - [4406] = 150, - [4407] = 421, - [4408] = 401, - [4409] = 533, - [4410] = 402, - [4411] = 352, - [4412] = 4412, - [4413] = 2727, - [4414] = 548, - [4415] = 452, - [4416] = 2751, - [4417] = 389, - [4418] = 403, - [4419] = 404, - [4420] = 158, - [4421] = 154, - [4422] = 537, - [4423] = 405, - [4424] = 4375, - [4425] = 406, - [4426] = 381, - [4427] = 447, - [4428] = 407, - [4429] = 439, - [4430] = 358, - [4431] = 354, - [4432] = 397, - [4433] = 2728, - [4434] = 379, - [4435] = 410, - [4436] = 412, - [4437] = 152, - [4438] = 414, - [4439] = 156, - [4440] = 4440, - [4441] = 416, - [4442] = 417, - [4443] = 157, - [4444] = 418, - [4445] = 4381, - [4446] = 382, - [4447] = 155, - [4448] = 161, - [4449] = 381, - [4450] = 425, - [4451] = 151, - [4452] = 368, - [4453] = 527, - [4454] = 360, - [4455] = 153, - [4456] = 160, - [4457] = 159, - [4458] = 441, - [4459] = 382, - [4460] = 369, - [4461] = 378, - [4462] = 368, - [4463] = 4463, + [4382] = 579, + [4383] = 1638, + [4384] = 579, + [4385] = 4329, + [4386] = 517, + [4387] = 615, + [4388] = 616, + [4389] = 4351, + [4390] = 4390, + [4391] = 502, + [4392] = 503, + [4393] = 606, + [4394] = 4344, + [4395] = 4395, + [4396] = 4396, + [4397] = 617, + [4398] = 674, + [4399] = 4356, + [4400] = 504, + [4401] = 505, + [4402] = 647, + [4403] = 611, + [4404] = 648, + [4405] = 651, + [4406] = 520, + [4407] = 656, + [4408] = 652, + [4409] = 4409, + [4410] = 653, + [4411] = 4411, + [4412] = 2604, + [4413] = 4413, + [4414] = 4414, + [4415] = 2605, + [4416] = 4416, + [4417] = 4417, + [4418] = 4418, + [4419] = 4419, + [4420] = 4420, + [4421] = 4421, + [4422] = 4422, + [4423] = 607, + [4424] = 618, + [4425] = 4425, + [4426] = 603, + [4427] = 4427, + [4428] = 531, + [4429] = 672, + [4430] = 1803, + [4431] = 1804, + [4432] = 529, + [4433] = 638, + [4434] = 639, + [4435] = 654, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 2613, + [4440] = 527, + [4441] = 604, + [4442] = 608, + [4443] = 1706, + [4444] = 1707, + [4445] = 609, + [4446] = 1693, + [4447] = 619, + [4448] = 516, + [4449] = 620, + [4450] = 610, + [4451] = 621, + [4452] = 622, + [4453] = 623, + [4454] = 4454, + [4455] = 2630, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 579, + [4460] = 4460, + [4461] = 4461, + [4462] = 4462, + [4463] = 530, [4464] = 4464, [4465] = 4465, - [4466] = 390, - [4467] = 426, - [4468] = 561, - [4469] = 422, - [4470] = 4366, - [4471] = 549, - [4472] = 450, - [4473] = 2745, - [4474] = 378, - [4475] = 455, - [4476] = 535, - [4477] = 500, - [4478] = 444, - [4479] = 445, - [4480] = 423, - [4481] = 555, - [4482] = 536, - [4483] = 369, - [4484] = 379, - [4485] = 419, - [4486] = 155, - [4487] = 450, - [4488] = 441, - [4489] = 4489, - [4490] = 548, + [4466] = 4466, + [4467] = 2663, + [4468] = 1798, + [4469] = 2630, + [4470] = 1698, + [4471] = 4471, + [4472] = 675, + [4473] = 4473, + [4474] = 4474, + [4475] = 322, + [4476] = 646, + [4477] = 602, + [4478] = 319, + [4479] = 327, + [4480] = 367, + [4481] = 636, + [4482] = 605, + [4483] = 4483, + [4484] = 4322, + [4485] = 4485, + [4486] = 4486, + [4487] = 366, + [4488] = 4488, + [4489] = 335, + [4490] = 4490, [4491] = 4491, - [4492] = 150, - [4493] = 4464, - [4494] = 414, - [4495] = 397, - [4496] = 425, - [4497] = 158, - [4498] = 154, - [4499] = 4463, - [4500] = 378, - [4501] = 4440, - [4502] = 537, - [4503] = 1692, - [4504] = 403, - [4505] = 404, - [4506] = 554, - [4507] = 4507, - [4508] = 4508, - [4509] = 426, - [4510] = 549, - [4511] = 379, - [4512] = 354, - [4513] = 405, - [4514] = 381, - [4515] = 533, - [4516] = 456, - [4517] = 152, - [4518] = 156, - [4519] = 416, - [4520] = 4520, - [4521] = 378, - [4522] = 406, - [4523] = 382, - [4524] = 4524, - [4525] = 4525, - [4526] = 389, - [4527] = 474, - [4528] = 455, - [4529] = 423, - [4530] = 157, - [4531] = 402, - [4532] = 452, - [4533] = 422, - [4534] = 454, - [4535] = 444, - [4536] = 421, - [4537] = 480, - [4538] = 4508, - [4539] = 445, + [4492] = 368, + [4493] = 369, + [4494] = 1656, + [4495] = 4495, + [4496] = 4496, + [4497] = 4497, + [4498] = 4498, + [4499] = 612, + [4500] = 1638, + [4501] = 657, + [4502] = 658, + [4503] = 1669, + [4504] = 528, + [4505] = 4354, + [4506] = 649, + [4507] = 345, + [4508] = 645, + [4509] = 659, + [4510] = 660, + [4511] = 4511, + [4512] = 4381, + [4513] = 624, + [4514] = 625, + [4515] = 626, + [4516] = 627, + [4517] = 4517, + [4518] = 2604, + [4519] = 2605, + [4520] = 1734, + [4521] = 613, + [4522] = 1735, + [4523] = 628, + [4524] = 521, + [4525] = 629, + [4526] = 685, + [4527] = 662, + [4528] = 614, + [4529] = 514, + [4530] = 4361, + [4531] = 637, + [4532] = 2362, + [4533] = 664, + [4534] = 2663, + [4535] = 655, + [4536] = 2613, + [4537] = 1738, + [4538] = 1739, + [4539] = 673, [4540] = 4540, - [4541] = 368, - [4542] = 407, - [4543] = 153, - [4544] = 417, - [4545] = 410, - [4546] = 379, - [4547] = 358, - [4548] = 555, - [4549] = 418, - [4550] = 561, - [4551] = 536, - [4552] = 352, - [4553] = 360, - [4554] = 412, - [4555] = 500, - [4556] = 161, - [4557] = 439, - [4558] = 4508, - [4559] = 447, - [4560] = 4465, - [4561] = 163, - [4562] = 401, - [4563] = 4508, - [4564] = 535, - [4565] = 419, - [4566] = 390, - [4567] = 160, - [4568] = 369, - [4569] = 159, - [4570] = 453, - [4571] = 381, - [4572] = 382, - [4573] = 4573, - [4574] = 527, - [4575] = 4412, - [4576] = 151, + [4541] = 665, + [4542] = 601, + [4543] = 4543, + [4544] = 4544, + [4545] = 4545, + [4546] = 4546, + [4547] = 4547, + [4548] = 4548, + [4549] = 4549, + [4550] = 4550, + [4551] = 4551, + [4552] = 4552, + [4553] = 648, + [4554] = 614, + [4555] = 613, + [4556] = 4556, + [4557] = 621, + [4558] = 4551, + [4559] = 2362, + [4560] = 4560, + [4561] = 574, + [4562] = 578, + [4563] = 617, + [4564] = 4564, + [4565] = 317, + [4566] = 4566, + [4567] = 4567, + [4568] = 605, + [4569] = 4569, + [4570] = 4570, + [4571] = 638, + [4572] = 665, + [4573] = 1803, + [4574] = 4574, + [4575] = 4575, + [4576] = 4576, [4577] = 4577, - [4578] = 150, - [4579] = 161, - [4580] = 160, - [4581] = 159, - [4582] = 549, - [4583] = 527, - [4584] = 4584, - [4585] = 4585, - [4586] = 4586, + [4578] = 1804, + [4579] = 639, + [4580] = 4409, + [4581] = 624, + [4582] = 651, + [4583] = 662, + [4584] = 601, + [4585] = 624, + [4586] = 636, [4587] = 4587, - [4588] = 555, - [4589] = 536, - [4590] = 4590, - [4591] = 4591, + [4588] = 618, + [4589] = 602, + [4590] = 603, + [4591] = 604, [4592] = 4592, - [4593] = 425, - [4594] = 4594, - [4595] = 4595, + [4593] = 4593, + [4594] = 606, + [4595] = 607, [4596] = 4596, - [4597] = 4597, - [4598] = 426, - [4599] = 4599, + [4597] = 351, + [4598] = 605, + [4599] = 1734, [4600] = 4600, [4601] = 4601, - [4602] = 4602, - [4603] = 439, - [4604] = 444, - [4605] = 445, - [4606] = 358, - [4607] = 421, - [4608] = 156, - [4609] = 401, - [4610] = 402, + [4602] = 622, + [4603] = 4603, + [4604] = 637, + [4605] = 627, + [4606] = 4606, + [4607] = 4607, + [4608] = 606, + [4609] = 607, + [4610] = 1735, [4611] = 4611, - [4612] = 403, - [4613] = 1601, - [4614] = 404, - [4615] = 405, - [4616] = 1617, - [4617] = 4617, - [4618] = 4618, - [4619] = 4619, - [4620] = 406, - [4621] = 407, - [4622] = 410, - [4623] = 412, - [4624] = 414, - [4625] = 1651, - [4626] = 1595, - [4627] = 360, - [4628] = 416, - [4629] = 417, - [4630] = 4630, - [4631] = 418, - [4632] = 4632, - [4633] = 419, - [4634] = 378, - [4635] = 452, - [4636] = 4636, - [4637] = 4637, - [4638] = 4638, - [4639] = 360, - [4640] = 379, - [4641] = 157, - [4642] = 4642, - [4643] = 381, - [4644] = 382, - [4645] = 453, - [4646] = 548, - [4647] = 454, - [4648] = 455, - [4649] = 456, - [4650] = 500, - [4651] = 155, - [4652] = 561, - [4653] = 535, - [4654] = 537, - [4655] = 156, - [4656] = 1618, - [4657] = 1629, - [4658] = 1692, - [4659] = 335, - [4660] = 152, - [4661] = 157, - [4662] = 153, - [4663] = 155, - [4664] = 554, + [4612] = 4612, + [4613] = 4613, + [4614] = 4614, + [4615] = 4414, + [4616] = 4616, + [4617] = 4567, + [4618] = 619, + [4619] = 620, + [4620] = 657, + [4621] = 327, + [4622] = 4622, + [4623] = 625, + [4624] = 623, + [4625] = 4625, + [4626] = 4626, + [4627] = 651, + [4628] = 4628, + [4629] = 625, + [4630] = 1706, + [4631] = 4631, + [4632] = 335, + [4633] = 4633, + [4634] = 4634, + [4635] = 4418, + [4636] = 4417, + [4637] = 621, + [4638] = 4622, + [4639] = 4639, + [4640] = 340, + [4641] = 4641, + [4642] = 4419, + [4643] = 656, + [4644] = 4644, + [4645] = 4645, + [4646] = 614, + [4647] = 612, + [4648] = 4648, + [4649] = 4413, + [4650] = 341, + [4651] = 618, + [4652] = 4652, + [4653] = 318, + [4654] = 4547, + [4655] = 4655, + [4656] = 4656, + [4657] = 655, + [4658] = 4549, + [4659] = 4659, + [4660] = 1707, + [4661] = 616, + [4662] = 4662, + [4663] = 342, + [4664] = 609, [4665] = 4665, - [4666] = 4666, - [4667] = 151, + [4666] = 337, + [4667] = 2604, [4668] = 4668, - [4669] = 4669, - [4670] = 4670, - [4671] = 4671, + [4669] = 622, + [4670] = 611, + [4671] = 343, [4672] = 4672, - [4673] = 4673, - [4674] = 4674, + [4673] = 660, + [4674] = 623, [4675] = 4675, - [4676] = 4676, + [4676] = 672, [4677] = 4677, [4678] = 4678, - [4679] = 4679, + [4679] = 613, [4680] = 4680, - [4681] = 4681, - [4682] = 4682, - [4683] = 4683, - [4684] = 4684, + [4681] = 648, + [4682] = 626, + [4683] = 4655, + [4684] = 603, [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, - [4689] = 4689, - [4690] = 4690, + [4686] = 656, + [4687] = 616, + [4688] = 4420, + [4689] = 1345, + [4690] = 673, [4691] = 4691, - [4692] = 153, - [4693] = 4693, - [4694] = 4694, - [4695] = 4695, + [4692] = 4692, + [4693] = 615, + [4694] = 617, + [4695] = 604, [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 4699, + [4697] = 639, + [4698] = 627, + [4699] = 317, [4700] = 4700, - [4701] = 4701, - [4702] = 533, - [4703] = 4703, - [4704] = 4704, - [4705] = 158, - [4706] = 154, - [4707] = 450, - [4708] = 4708, - [4709] = 4709, - [4710] = 4710, - [4711] = 4711, - [4712] = 4712, - [4713] = 474, - [4714] = 4714, - [4715] = 4715, + [4701] = 664, + [4702] = 4422, + [4703] = 4457, + [4704] = 4458, + [4705] = 4460, + [4706] = 4411, + [4707] = 4437, + [4708] = 4490, + [4709] = 4495, + [4710] = 4438, + [4711] = 2613, + [4712] = 4540, + [4713] = 4390, + [4714] = 4543, + [4715] = 615, [4716] = 4716, [4717] = 4717, [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 4721, - [4722] = 368, - [4723] = 4723, - [4724] = 4724, - [4725] = 4725, + [4719] = 4483, + [4720] = 4395, + [4721] = 626, + [4722] = 4639, + [4723] = 4421, + [4724] = 1738, + [4725] = 1739, [4726] = 4726, - [4727] = 4727, - [4728] = 4728, - [4729] = 4729, - [4730] = 4730, - [4731] = 4731, - [4732] = 4732, - [4733] = 4733, + [4727] = 658, + [4728] = 675, + [4729] = 4473, + [4730] = 608, + [4731] = 628, + [4732] = 609, + [4733] = 610, [4734] = 4734, - [4735] = 4735, - [4736] = 4736, + [4735] = 685, + [4736] = 659, [4737] = 4737, - [4738] = 4738, - [4739] = 4739, - [4740] = 4740, - [4741] = 4741, - [4742] = 4742, - [4743] = 4743, - [4744] = 4744, + [4738] = 645, + [4739] = 646, + [4740] = 629, + [4741] = 1785, + [4742] = 647, + [4743] = 2630, + [4744] = 628, [4745] = 4745, [4746] = 4746, [4747] = 4747, - [4748] = 4748, - [4749] = 4749, + [4748] = 1786, + [4749] = 619, [4750] = 4750, [4751] = 4751, [4752] = 4752, - [4753] = 4753, + [4753] = 620, [4754] = 4754, [4755] = 4755, [4756] = 4756, [4757] = 4757, [4758] = 4758, - [4759] = 163, + [4759] = 629, [4760] = 4760, [4761] = 4761, - [4762] = 4762, - [4763] = 4763, - [4764] = 4764, - [4765] = 4765, - [4766] = 4766, + [4762] = 318, + [4763] = 608, + [4764] = 674, + [4765] = 4655, + [4766] = 649, [4767] = 4767, [4768] = 4768, - [4769] = 4769, - [4770] = 4770, + [4769] = 601, + [4770] = 2461, [4771] = 4771, - [4772] = 480, - [4773] = 369, + [4772] = 4772, + [4773] = 649, [4774] = 4774, [4775] = 4775, [4776] = 4776, - [4777] = 4777, - [4778] = 4520, - [4779] = 150, - [4780] = 422, - [4781] = 423, - [4782] = 4782, - [4783] = 474, - [4784] = 160, - [4785] = 159, + [4777] = 652, + [4778] = 653, + [4779] = 654, + [4780] = 573, + [4781] = 611, + [4782] = 610, + [4783] = 636, + [4784] = 4784, + [4785] = 4785, [4786] = 4786, - [4787] = 1692, - [4788] = 4725, - [4789] = 535, - [4790] = 153, - [4791] = 4732, - [4792] = 336, - [4793] = 341, - [4794] = 4794, - [4795] = 4795, - [4796] = 4733, - [4797] = 4734, - [4798] = 452, + [4787] = 4787, + [4788] = 2523, + [4789] = 4789, + [4790] = 4790, + [4791] = 2663, + [4792] = 4438, + [4793] = 612, + [4794] = 2605, + [4795] = 602, + [4796] = 4796, + [4797] = 638, + [4798] = 4631, [4799] = 4799, [4800] = 4800, - [4801] = 156, - [4802] = 4799, - [4803] = 4800, - [4804] = 378, - [4805] = 1618, - [4806] = 4735, + [4801] = 322, + [4802] = 4802, + [4803] = 319, + [4804] = 4804, + [4805] = 4805, + [4806] = 4806, [4807] = 4807, - [4808] = 4727, - [4809] = 4736, - [4810] = 360, - [4811] = 4737, - [4812] = 4812, + [4808] = 4808, + [4809] = 4809, + [4810] = 4810, + [4811] = 4811, + [4812] = 2362, [4813] = 4813, - [4814] = 1629, - [4815] = 4815, - [4816] = 158, - [4817] = 154, - [4818] = 4750, - [4819] = 342, - [4820] = 157, - [4821] = 4751, - [4822] = 4752, - [4823] = 336, - [4824] = 335, - [4825] = 4636, - [4826] = 4637, - [4827] = 554, - [4828] = 152, - [4829] = 4638, - [4830] = 4708, - [4831] = 4831, - [4832] = 155, - [4833] = 163, - [4834] = 151, - [4835] = 561, - [4836] = 4721, - [4837] = 4729, - [4838] = 1727, - [4839] = 1801, - [4840] = 369, - [4841] = 480, - [4842] = 4730, - [4843] = 4794, - [4844] = 1732, - [4845] = 549, - [4846] = 4846, - [4847] = 379, - [4848] = 527, - [4849] = 548, - [4850] = 4850, - [4851] = 4851, - [4852] = 1601, - [4853] = 1617, - [4854] = 455, - [4855] = 456, - [4856] = 4795, - [4857] = 500, - [4858] = 533, - [4859] = 4724, + [4814] = 4814, + [4815] = 4648, + [4816] = 330, + [4817] = 331, + [4818] = 332, + [4819] = 320, + [4820] = 4796, + [4821] = 4560, + [4822] = 4822, + [4823] = 321, + [4824] = 4824, + [4825] = 4825, + [4826] = 4826, + [4827] = 340, + [4828] = 4828, + [4829] = 341, + [4830] = 342, + [4831] = 343, + [4832] = 4832, + [4833] = 4833, + [4834] = 4834, + [4835] = 637, + [4836] = 139, + [4837] = 685, + [4838] = 645, + [4839] = 646, + [4840] = 647, + [4841] = 138, + [4842] = 652, + [4843] = 653, + [4844] = 654, + [4845] = 657, + [4846] = 658, + [4847] = 659, + [4848] = 660, + [4849] = 662, + [4850] = 664, + [4851] = 665, + [4852] = 1785, + [4853] = 1786, + [4854] = 4854, + [4855] = 4606, + [4856] = 1351, + [4857] = 4857, + [4858] = 4787, + [4859] = 4859, [4860] = 4860, - [4861] = 555, - [4862] = 536, - [4863] = 4719, - [4864] = 4864, - [4865] = 1651, - [4866] = 1595, - [4867] = 381, + [4861] = 4861, + [4862] = 4862, + [4863] = 4784, + [4864] = 4592, + [4865] = 4438, + [4866] = 4866, + [4867] = 4854, [4868] = 4868, - [4869] = 453, - [4870] = 454, + [4869] = 4869, + [4870] = 4870, [4871] = 4871, - [4872] = 382, - [4873] = 4812, - [4874] = 161, - [4875] = 4666, + [4872] = 4872, + [4873] = 4873, + [4874] = 4874, + [4875] = 4875, [4876] = 4876, - [4877] = 1705, - [4878] = 1731, + [4877] = 4877, + [4878] = 4878, [4879] = 4879, - [4880] = 537, - [4881] = 450, - [4882] = 4731, - [4883] = 564, - [4884] = 368, - [4885] = 640, - [4886] = 636, - [4887] = 608, - [4888] = 2746, - [4889] = 654, - [4890] = 675, - [4891] = 656, - [4892] = 4892, - [4893] = 645, + [4880] = 4880, + [4881] = 1345, + [4882] = 4871, + [4883] = 321, + [4884] = 4675, + [4885] = 4691, + [4886] = 4886, + [4887] = 4887, + [4888] = 4888, + [4889] = 4717, + [4890] = 4776, + [4891] = 4626, + [4892] = 319, + [4893] = 4893, [4894] = 4894, - [4895] = 4895, - [4896] = 687, - [4897] = 655, + [4895] = 322, + [4896] = 4862, + [4897] = 4897, [4898] = 4898, - [4899] = 657, - [4900] = 4879, + [4899] = 4899, + [4900] = 2523, [4901] = 4901, - [4902] = 658, - [4903] = 357, + [4902] = 4902, + [4903] = 4903, [4904] = 4904, [4905] = 4905, [4906] = 4906, - [4907] = 666, + [4907] = 4907, [4908] = 4908, [4909] = 4909, - [4910] = 336, - [4911] = 4911, - [4912] = 665, - [4913] = 4913, - [4914] = 1727, - [4915] = 2748, - [4916] = 4851, - [4917] = 1801, - [4918] = 2751, - [4919] = 4919, - [4920] = 4860, - [4921] = 2749, - [4922] = 624, + [4910] = 4910, + [4911] = 329, + [4912] = 330, + [4913] = 331, + [4914] = 332, + [4915] = 4915, + [4916] = 4587, + [4917] = 4685, + [4918] = 4718, + [4919] = 4612, + [4920] = 2461, + [4921] = 4871, + [4922] = 4922, [4923] = 4923, [4924] = 4924, - [4925] = 1731, - [4926] = 1732, + [4925] = 4925, + [4926] = 4926, [4927] = 4927, [4928] = 4928, - [4929] = 548, - [4930] = 335, - [4931] = 378, - [4932] = 360, - [4933] = 561, - [4934] = 535, - [4935] = 660, - [4936] = 661, + [4929] = 4746, + [4930] = 4930, + [4931] = 4931, + [4932] = 4932, + [4933] = 4933, + [4934] = 4934, + [4935] = 4935, + [4936] = 4936, [4937] = 4937, - [4938] = 554, - [4939] = 533, - [4940] = 649, - [4941] = 670, - [4942] = 668, - [4943] = 353, - [4944] = 1705, - [4945] = 341, - [4946] = 4946, - [4947] = 1764, - [4948] = 2449, - [4949] = 677, - [4950] = 1765, - [4951] = 4951, - [4952] = 379, - [4953] = 4953, - [4954] = 342, - [4955] = 678, - [4956] = 679, - [4957] = 4957, - [4958] = 156, - [4959] = 2745, - [4960] = 4960, - [4961] = 527, - [4962] = 2751, - [4963] = 564, - [4964] = 161, - [4965] = 691, - [4966] = 355, - [4967] = 629, - [4968] = 157, - [4969] = 155, - [4970] = 652, - [4971] = 153, - [4972] = 381, - [4973] = 4973, + [4938] = 4938, + [4939] = 137, + [4940] = 4940, + [4941] = 4941, + [4942] = 672, + [4943] = 674, + [4944] = 2746, + [4945] = 4806, + [4946] = 320, + [4947] = 4422, + [4948] = 329, + [4949] = 4457, + [4950] = 4458, + [4951] = 4460, + [4952] = 4411, + [4953] = 4437, + [4954] = 4490, + [4955] = 4495, + [4956] = 4540, + [4957] = 4390, + [4958] = 4543, + [4959] = 4483, + [4960] = 322, + [4961] = 4758, + [4962] = 4760, + [4963] = 4893, + [4964] = 319, + [4965] = 4655, + [4966] = 4768, + [4967] = 4616, + [4968] = 4968, + [4969] = 319, + [4970] = 2523, + [4971] = 4971, + [4972] = 4972, + [4973] = 322, [4974] = 4974, - [4975] = 4975, + [4975] = 335, [4976] = 4976, - [4977] = 4977, - [4978] = 631, + [4977] = 1392, + [4978] = 319, [4979] = 4979, - [4980] = 4980, - [4981] = 632, - [4982] = 633, - [4983] = 630, - [4984] = 4984, - [4985] = 382, - [4986] = 4986, - [4987] = 4868, - [4988] = 611, - [4989] = 612, - [4990] = 634, - [4991] = 549, - [4992] = 669, - [4993] = 4993, - [4994] = 4994, - [4995] = 690, - [4996] = 1766, - [4997] = 555, - [4998] = 536, - [4999] = 4999, - [5000] = 1767, - [5001] = 160, - [5002] = 159, - [5003] = 613, - [5004] = 356, - [5005] = 5005, - [5006] = 614, - [5007] = 615, - [5008] = 1780, - [5009] = 1782, - [5010] = 154, - [5011] = 616, - [5012] = 5012, - [5013] = 617, - [5014] = 618, - [5015] = 619, - [5016] = 158, - [5017] = 537, - [5018] = 557, - [5019] = 558, - [5020] = 559, - [5021] = 560, - [5022] = 620, - [5023] = 621, - [5024] = 2746, - [5025] = 2748, - [5026] = 637, - [5027] = 5027, - [5028] = 635, + [4980] = 4971, + [4981] = 327, + [4982] = 436, + [4983] = 412, + [4984] = 318, + [4985] = 4985, + [4986] = 4972, + [4987] = 335, + [4988] = 4972, + [4989] = 4989, + [4990] = 4990, + [4991] = 4991, + [4992] = 413, + [4993] = 415, + [4994] = 417, + [4995] = 4995, + [4996] = 322, + [4997] = 419, + [4998] = 420, + [4999] = 421, + [5000] = 422, + [5001] = 384, + [5002] = 423, + [5003] = 424, + [5004] = 425, + [5005] = 426, + [5006] = 427, + [5007] = 428, + [5008] = 429, + [5009] = 430, + [5010] = 431, + [5011] = 432, + [5012] = 433, + [5013] = 137, + [5014] = 327, + [5015] = 4974, + [5016] = 4985, + [5017] = 327, + [5018] = 4972, + [5019] = 5019, + [5020] = 1383, + [5021] = 335, + [5022] = 4985, + [5023] = 4655, + [5024] = 322, + [5025] = 2461, + [5026] = 319, + [5027] = 418, + [5028] = 431, [5029] = 5029, - [5030] = 638, - [5031] = 4813, - [5032] = 5032, - [5033] = 622, - [5034] = 4815, - [5035] = 639, - [5036] = 564, - [5037] = 5037, - [5038] = 623, - [5039] = 1789, - [5040] = 1790, - [5041] = 5041, - [5042] = 2749, - [5043] = 648, - [5044] = 4846, - [5045] = 4850, - [5046] = 1692, - [5047] = 641, - [5048] = 642, - [5049] = 643, - [5050] = 644, - [5051] = 646, - [5052] = 5052, - [5053] = 647, - [5054] = 2745, - [5055] = 5055, - [5056] = 5056, - [5057] = 5057, - [5058] = 679, - [5059] = 1854, - [5060] = 5060, - [5061] = 1789, - [5062] = 1790, - [5063] = 160, - [5064] = 648, + [5030] = 5030, + [5031] = 5031, + [5032] = 413, + [5033] = 436, + [5034] = 5034, + [5035] = 5035, + [5036] = 5029, + [5037] = 343, + [5038] = 330, + [5039] = 331, + [5040] = 332, + [5041] = 415, + [5042] = 5042, + [5043] = 5043, + [5044] = 322, + [5045] = 417, + [5046] = 418, + [5047] = 419, + [5048] = 420, + [5049] = 421, + [5050] = 422, + [5051] = 384, + [5052] = 423, + [5053] = 424, + [5054] = 425, + [5055] = 426, + [5056] = 427, + [5057] = 428, + [5058] = 429, + [5059] = 430, + [5060] = 335, + [5061] = 432, + [5062] = 433, + [5063] = 412, + [5064] = 1345, [5065] = 5065, - [5066] = 629, - [5067] = 159, - [5068] = 630, - [5069] = 5069, - [5070] = 1378, - [5071] = 5071, - [5072] = 668, - [5073] = 5065, - [5074] = 5074, - [5075] = 5075, - [5076] = 4908, - [5077] = 5074, - [5078] = 2748, - [5079] = 640, - [5080] = 635, - [5081] = 5081, - [5082] = 5082, - [5083] = 5083, - [5084] = 2449, - [5085] = 648, - [5086] = 5086, - [5087] = 5087, + [5066] = 5042, + [5067] = 345, + [5068] = 5043, + [5069] = 2535, + [5070] = 341, + [5071] = 189, + [5072] = 319, + [5073] = 5073, + [5074] = 343, + [5075] = 5030, + [5076] = 139, + [5077] = 340, + [5078] = 138, + [5079] = 5031, + [5080] = 141, + [5081] = 337, + [5082] = 137, + [5083] = 341, + [5084] = 145, + [5085] = 335, + [5086] = 327, + [5087] = 5035, [5088] = 5088, - [5089] = 5089, - [5090] = 635, - [5091] = 624, - [5092] = 1766, - [5093] = 641, - [5094] = 642, - [5095] = 636, - [5096] = 643, - [5097] = 644, - [5098] = 646, - [5099] = 647, - [5100] = 645, - [5101] = 1767, - [5102] = 5005, - [5103] = 670, - [5104] = 5104, - [5105] = 677, - [5106] = 678, - [5107] = 655, - [5108] = 657, - [5109] = 691, - [5110] = 314, - [5111] = 652, - [5112] = 5112, - [5113] = 2745, - [5114] = 611, + [5089] = 5042, + [5090] = 5043, + [5091] = 5035, + [5092] = 5029, + [5093] = 329, + [5094] = 340, + [5095] = 5035, + [5096] = 5029, + [5097] = 5035, + [5098] = 5029, + [5099] = 5035, + [5100] = 5029, + [5101] = 5035, + [5102] = 5029, + [5103] = 5035, + [5104] = 5029, + [5105] = 5035, + [5106] = 5029, + [5107] = 5029, + [5108] = 144, + [5109] = 5065, + [5110] = 1345, + [5111] = 137, + [5112] = 5030, + [5113] = 5035, + [5114] = 351, [5115] = 5115, - [5116] = 612, - [5117] = 613, - [5118] = 665, - [5119] = 614, - [5120] = 615, - [5121] = 608, + [5116] = 5029, + [5117] = 5117, + [5118] = 5118, + [5119] = 5119, + [5120] = 340, + [5121] = 5042, [5122] = 5122, - [5123] = 5123, - [5124] = 616, - [5125] = 617, - [5126] = 618, - [5127] = 619, - [5128] = 654, - [5129] = 649, - [5130] = 620, - [5131] = 621, + [5123] = 341, + [5124] = 5031, + [5125] = 342, + [5126] = 5126, + [5127] = 322, + [5128] = 344, + [5129] = 342, + [5130] = 5035, + [5131] = 343, [5132] = 5132, - [5133] = 5133, - [5134] = 332, - [5135] = 690, - [5136] = 4901, - [5137] = 622, - [5138] = 5138, - [5139] = 5139, - [5140] = 5140, - [5141] = 623, - [5142] = 5142, - [5143] = 658, - [5144] = 5144, + [5133] = 342, + [5134] = 327, + [5135] = 142, + [5136] = 335, + [5137] = 5035, + [5138] = 5043, + [5139] = 5034, + [5140] = 319, + [5141] = 327, + [5142] = 326, + [5143] = 5029, + [5144] = 343, [5145] = 5145, - [5146] = 5146, - [5147] = 606, + [5146] = 143, + [5147] = 5147, [5148] = 5148, - [5149] = 583, - [5150] = 5150, - [5151] = 5151, + [5149] = 5145, + [5150] = 5148, + [5151] = 355, [5152] = 5152, [5153] = 5153, - [5154] = 608, + [5154] = 5154, [5155] = 5155, - [5156] = 5156, + [5156] = 342, [5157] = 5157, - [5158] = 654, - [5159] = 5159, - [5160] = 5160, - [5161] = 5161, - [5162] = 5162, - [5163] = 656, - [5164] = 675, - [5165] = 5165, - [5166] = 2749, - [5167] = 5167, - [5168] = 5168, - [5169] = 629, - [5170] = 630, - [5171] = 5171, - [5172] = 666, - [5173] = 658, - [5174] = 5174, - [5175] = 660, - [5176] = 661, - [5177] = 668, - [5178] = 5178, - [5179] = 631, - [5180] = 5180, - [5181] = 5181, - [5182] = 632, - [5183] = 633, - [5184] = 332, - [5185] = 670, - [5186] = 341, - [5187] = 636, - [5188] = 634, - [5189] = 677, - [5190] = 645, - [5191] = 5191, - [5192] = 1780, - [5193] = 678, - [5194] = 5194, - [5195] = 679, - [5196] = 1782, - [5197] = 691, - [5198] = 314, - [5199] = 5199, - [5200] = 652, - [5201] = 4908, - [5202] = 5202, - [5203] = 5203, - [5204] = 5204, - [5205] = 5205, - [5206] = 611, - [5207] = 5207, - [5208] = 612, - [5209] = 669, - [5210] = 5012, - [5211] = 5211, - [5212] = 613, - [5213] = 5213, - [5214] = 614, - [5215] = 615, + [5158] = 5158, + [5159] = 5147, + [5160] = 345, + [5161] = 340, + [5162] = 139, + [5163] = 138, + [5164] = 141, + [5165] = 145, + [5166] = 144, + [5167] = 1590, + [5168] = 142, + [5169] = 139, + [5170] = 5158, + [5171] = 5155, + [5172] = 436, + [5173] = 352, + [5174] = 341, + [5175] = 343, + [5176] = 5152, + [5177] = 5157, + [5178] = 138, + [5179] = 5158, + [5180] = 345, + [5181] = 319, + [5182] = 327, + [5183] = 5158, + [5184] = 5148, + [5185] = 5145, + [5186] = 5147, + [5187] = 5152, + [5188] = 5157, + [5189] = 5158, + [5190] = 5190, + [5191] = 327, + [5192] = 5152, + [5193] = 5158, + [5194] = 5088, + [5195] = 412, + [5196] = 5152, + [5197] = 5158, + [5198] = 335, + [5199] = 5152, + [5200] = 5158, + [5201] = 5145, + [5202] = 5157, + [5203] = 5152, + [5204] = 5158, + [5205] = 5147, + [5206] = 5152, + [5207] = 5158, + [5208] = 335, + [5209] = 5152, + [5210] = 5158, + [5211] = 5152, + [5212] = 5158, + [5213] = 5152, + [5214] = 5158, + [5215] = 5215, [5216] = 342, - [5217] = 616, - [5218] = 660, - [5219] = 617, - [5220] = 618, - [5221] = 661, - [5222] = 619, - [5223] = 5223, - [5224] = 5224, - [5225] = 1764, - [5226] = 5226, - [5227] = 2579, - [5228] = 5228, - [5229] = 563, - [5230] = 620, + [5217] = 5158, + [5218] = 5152, + [5219] = 5152, + [5220] = 5152, + [5221] = 5152, + [5222] = 5152, + [5223] = 5190, + [5224] = 5152, + [5225] = 5158, + [5226] = 5126, + [5227] = 5148, + [5228] = 344, + [5229] = 5115, + [5230] = 140, [5231] = 5231, - [5232] = 621, - [5233] = 1765, - [5234] = 5234, - [5235] = 5235, - [5236] = 5236, - [5237] = 687, - [5238] = 5238, - [5239] = 2746, - [5240] = 5240, - [5241] = 622, - [5242] = 5242, - [5243] = 5243, - [5244] = 353, - [5245] = 5245, - [5246] = 5246, - [5247] = 5247, - [5248] = 2751, - [5249] = 2646, - [5250] = 5250, - [5251] = 655, - [5252] = 5252, - [5253] = 657, - [5254] = 5254, - [5255] = 5255, - [5256] = 623, - [5257] = 5257, - [5258] = 5258, - [5259] = 355, - [5260] = 656, - [5261] = 4974, - [5262] = 4975, - [5263] = 4976, - [5264] = 5057, - [5265] = 4979, - [5266] = 4980, - [5267] = 5240, - [5268] = 4984, - [5269] = 5269, - [5270] = 5270, - [5271] = 5271, - [5272] = 5272, - [5273] = 637, + [5232] = 5231, + [5233] = 191, + [5234] = 5153, + [5235] = 322, + [5236] = 413, + [5237] = 436, + [5238] = 415, + [5239] = 412, + [5240] = 417, + [5241] = 418, + [5242] = 419, + [5243] = 5158, + [5244] = 420, + [5245] = 421, + [5246] = 422, + [5247] = 384, + [5248] = 423, + [5249] = 5231, + [5250] = 5153, + [5251] = 424, + [5252] = 5119, + [5253] = 425, + [5254] = 5122, + [5255] = 340, + [5256] = 426, + [5257] = 427, + [5258] = 428, + [5259] = 341, + [5260] = 1345, + [5261] = 429, + [5262] = 342, + [5263] = 1622, + [5264] = 430, + [5265] = 343, + [5266] = 431, + [5267] = 432, + [5268] = 433, + [5269] = 340, + [5270] = 341, + [5271] = 5158, + [5272] = 344, + [5273] = 5152, [5274] = 5274, - [5275] = 5254, - [5276] = 5255, + [5275] = 5275, + [5276] = 5276, [5277] = 5277, - [5278] = 356, - [5279] = 638, + [5278] = 579, + [5279] = 5279, [5280] = 5280, - [5281] = 5052, - [5282] = 5037, - [5283] = 4923, - [5284] = 5027, - [5285] = 4898, - [5286] = 4904, - [5287] = 4905, - [5288] = 4906, - [5289] = 5289, - [5290] = 4973, - [5291] = 4986, - [5292] = 4999, - [5293] = 5269, - [5294] = 4960, - [5295] = 5295, - [5296] = 639, - [5297] = 5297, - [5298] = 5298, + [5281] = 527, + [5282] = 369, + [5283] = 5283, + [5284] = 5284, + [5285] = 137, + [5286] = 5274, + [5287] = 143, + [5288] = 5288, + [5289] = 5274, + [5290] = 343, + [5291] = 335, + [5292] = 367, + [5293] = 341, + [5294] = 5274, + [5295] = 368, + [5296] = 141, + [5297] = 1345, + [5298] = 148, [5299] = 5299, - [5300] = 5300, - [5301] = 5301, - [5302] = 5302, - [5303] = 665, - [5304] = 5304, - [5305] = 5295, - [5306] = 666, - [5307] = 5240, - [5308] = 357, - [5309] = 5309, + [5300] = 5274, + [5301] = 355, + [5302] = 1669, + [5303] = 366, + [5304] = 5277, + [5305] = 5274, + [5306] = 5306, + [5307] = 5307, + [5308] = 342, + [5309] = 5307, [5310] = 5310, - [5311] = 1850, - [5312] = 161, + [5311] = 5274, + [5312] = 5312, [5313] = 5313, - [5314] = 5314, + [5314] = 345, [5315] = 5315, - [5316] = 2853, + [5316] = 5274, [5317] = 5317, - [5318] = 335, - [5319] = 5319, - [5320] = 5071, - [5321] = 5223, - [5322] = 675, - [5323] = 333, - [5324] = 333, + [5318] = 341, + [5319] = 1622, + [5320] = 5320, + [5321] = 5274, + [5322] = 5322, + [5323] = 342, + [5324] = 343, [5325] = 5325, - [5326] = 5326, - [5327] = 5327, - [5328] = 5122, - [5329] = 624, - [5330] = 2646, - [5331] = 5331, - [5332] = 2449, + [5326] = 5274, + [5327] = 140, + [5328] = 5274, + [5329] = 5277, + [5330] = 5274, + [5331] = 5307, + [5332] = 143, [5333] = 5333, - [5334] = 348, - [5335] = 5335, - [5336] = 5336, - [5337] = 5157, - [5338] = 5338, - [5339] = 353, - [5340] = 5340, - [5341] = 5341, + [5334] = 5274, + [5335] = 1698, + [5336] = 147, + [5337] = 5274, + [5338] = 5276, + [5339] = 5274, + [5340] = 5288, + [5341] = 5274, [5342] = 5342, - [5343] = 5343, - [5344] = 5089, - [5345] = 5345, - [5346] = 5346, - [5347] = 336, - [5348] = 5075, - [5349] = 5349, - [5350] = 5350, - [5351] = 5351, - [5352] = 4908, - [5353] = 335, - [5354] = 5314, - [5355] = 5242, - [5356] = 5356, - [5357] = 5357, - [5358] = 5224, - [5359] = 687, + [5343] = 5274, + [5344] = 5344, + [5345] = 5274, + [5346] = 5274, + [5347] = 5274, + [5348] = 5274, + [5349] = 5274, + [5350] = 5274, + [5351] = 5274, + [5352] = 5274, + [5353] = 5274, + [5354] = 5274, + [5355] = 5274, + [5356] = 5276, + [5357] = 5288, + [5358] = 137, + [5359] = 5325, [5360] = 5360, - [5361] = 5361, - [5362] = 334, - [5363] = 5363, - [5364] = 5364, - [5365] = 355, - [5366] = 5366, - [5367] = 5178, - [5368] = 1378, + [5361] = 5275, + [5362] = 5279, + [5363] = 1638, + [5364] = 352, + [5365] = 5299, + [5366] = 344, + [5367] = 5333, + [5368] = 5274, [5369] = 5369, - [5370] = 337, - [5371] = 346, - [5372] = 347, - [5373] = 5373, - [5374] = 5146, - [5375] = 5375, - [5376] = 5376, - [5377] = 5377, - [5378] = 5378, - [5379] = 356, - [5380] = 5380, - [5381] = 5243, - [5382] = 631, - [5383] = 632, - [5384] = 633, - [5385] = 5069, - [5386] = 634, - [5387] = 5387, - [5388] = 5388, - [5389] = 348, - [5390] = 5390, - [5391] = 5391, - [5392] = 336, - [5393] = 337, - [5394] = 335, - [5395] = 346, - [5396] = 347, - [5397] = 5257, - [5398] = 357, - [5399] = 5258, - [5400] = 5400, - [5401] = 5401, - [5402] = 638, - [5403] = 639, - [5404] = 5404, - [5405] = 5405, - [5406] = 5406, - [5407] = 334, - [5408] = 640, - [5409] = 641, - [5410] = 642, - [5411] = 643, - [5412] = 5052, - [5413] = 644, - [5414] = 646, - [5415] = 647, - [5416] = 5037, - [5417] = 4923, - [5418] = 5027, - [5419] = 4898, - [5420] = 4904, - [5421] = 4905, - [5422] = 4906, - [5423] = 5423, - [5424] = 4973, - [5425] = 4986, - [5426] = 4999, - [5427] = 5228, - [5428] = 4960, - [5429] = 5142, - [5430] = 5430, - [5431] = 5431, - [5432] = 5432, - [5433] = 5433, - [5434] = 5434, - [5435] = 5246, - [5436] = 5436, + [5370] = 145, + [5371] = 528, + [5372] = 5215, + [5373] = 144, + [5374] = 5374, + [5375] = 5310, + [5376] = 142, + [5377] = 5306, + [5378] = 5312, + [5379] = 5315, + [5380] = 5317, + [5381] = 5320, + [5382] = 1590, + [5383] = 5322, + [5384] = 5280, + [5385] = 5342, + [5386] = 5344, + [5387] = 5360, + [5388] = 529, + [5389] = 5275, + [5390] = 5279, + [5391] = 5280, + [5392] = 5283, + [5393] = 5284, + [5394] = 5274, + [5395] = 146, + [5396] = 327, + [5397] = 5325, + [5398] = 340, + [5399] = 531, + [5400] = 5283, + [5401] = 5299, + [5402] = 5333, + [5403] = 355, + [5404] = 5369, + [5405] = 5374, + [5406] = 530, + [5407] = 5274, + [5408] = 587, + [5409] = 5369, + [5410] = 5374, + [5411] = 340, + [5412] = 5306, + [5413] = 5284, + [5414] = 5312, + [5415] = 5315, + [5416] = 5317, + [5417] = 5320, + [5418] = 140, + [5419] = 352, + [5420] = 139, + [5421] = 5322, + [5422] = 5342, + [5423] = 5344, + [5424] = 138, + [5425] = 5360, + [5426] = 5310, + [5427] = 415, + [5428] = 368, + [5429] = 371, + [5430] = 147, + [5431] = 146, + [5432] = 638, + [5433] = 639, + [5434] = 528, + [5435] = 5435, + [5436] = 1706, [5437] = 5437, - [5438] = 5438, - [5439] = 5247, - [5440] = 5363, - [5441] = 5441, - [5442] = 5442, - [5443] = 5443, - [5444] = 1400, - [5445] = 5086, - [5446] = 5406, - [5447] = 5447, - [5448] = 5448, - [5449] = 5087, - [5450] = 2579, - [5451] = 5226, - [5452] = 5452, - [5453] = 5240, - [5454] = 5454, - [5455] = 5455, - [5456] = 5456, - [5457] = 5457, - [5458] = 5458, - [5459] = 5459, - [5460] = 5460, - [5461] = 5461, - [5462] = 5462, - [5463] = 5463, + [5438] = 1707, + [5439] = 148, + [5440] = 343, + [5441] = 648, + [5442] = 649, + [5443] = 651, + [5444] = 529, + [5445] = 1738, + [5446] = 1739, + [5447] = 530, + [5448] = 420, + [5449] = 421, + [5450] = 656, + [5451] = 422, + [5452] = 384, + [5453] = 2833, + [5454] = 423, + [5455] = 424, + [5456] = 1693, + [5457] = 425, + [5458] = 413, + [5459] = 1656, + [5460] = 672, + [5461] = 426, + [5462] = 427, + [5463] = 428, [5464] = 5464, - [5465] = 5325, - [5466] = 5082, - [5467] = 5467, - [5468] = 5468, - [5469] = 5325, - [5470] = 336, - [5471] = 5471, + [5465] = 5465, + [5466] = 674, + [5467] = 429, + [5468] = 430, + [5469] = 431, + [5470] = 432, + [5471] = 433, [5472] = 5472, [5473] = 5473, - [5474] = 5474, - [5475] = 5475, - [5476] = 1850, - [5477] = 1854, - [5478] = 5387, - [5479] = 637, - [5480] = 5240, - [5481] = 150, - [5482] = 336, - [5483] = 422, - [5484] = 423, - [5485] = 336, - [5486] = 342, - [5487] = 151, - [5488] = 439, - [5489] = 444, - [5490] = 445, - [5491] = 421, + [5474] = 579, + [5475] = 366, + [5476] = 415, + [5477] = 147, + [5478] = 5115, + [5479] = 146, + [5480] = 5480, + [5481] = 5481, + [5482] = 5482, + [5483] = 601, + [5484] = 602, + [5485] = 603, + [5486] = 340, + [5487] = 604, + [5488] = 605, + [5489] = 606, + [5490] = 607, + [5491] = 5491, [5492] = 5492, - [5493] = 401, - [5494] = 402, - [5495] = 403, - [5496] = 404, - [5497] = 405, - [5498] = 5498, - [5499] = 406, - [5500] = 407, - [5501] = 410, - [5502] = 412, - [5503] = 414, - [5504] = 416, - [5505] = 335, - [5506] = 2579, - [5507] = 5507, - [5508] = 341, - [5509] = 335, - [5510] = 1440, - [5511] = 418, - [5512] = 341, - [5513] = 419, - [5514] = 5514, - [5515] = 5515, - [5516] = 425, - [5517] = 5517, - [5518] = 5518, - [5519] = 5498, - [5520] = 5520, - [5521] = 5498, - [5522] = 150, - [5523] = 5517, - [5524] = 336, - [5525] = 5525, - [5526] = 152, - [5527] = 5498, - [5528] = 1411, - [5529] = 335, - [5530] = 5530, - [5531] = 5514, - [5532] = 5498, - [5533] = 5514, - [5534] = 5534, - [5535] = 2646, - [5536] = 342, - [5537] = 341, - [5538] = 426, - [5539] = 5539, - [5540] = 332, - [5541] = 5518, - [5542] = 342, - [5543] = 417, - [5544] = 5544, - [5545] = 5545, - [5546] = 337, - [5547] = 153, - [5548] = 5548, - [5549] = 342, - [5550] = 5545, - [5551] = 1378, - [5552] = 5548, - [5553] = 203, - [5554] = 5545, - [5555] = 353, - [5556] = 5556, - [5557] = 335, - [5558] = 336, - [5559] = 5548, - [5560] = 5545, - [5561] = 356, - [5562] = 5548, - [5563] = 342, - [5564] = 5545, - [5565] = 5548, - [5566] = 421, - [5567] = 341, - [5568] = 152, - [5569] = 416, - [5570] = 417, - [5571] = 401, - [5572] = 5545, - [5573] = 5545, - [5574] = 5574, - [5575] = 426, - [5576] = 5576, - [5577] = 348, - [5578] = 444, - [5579] = 402, - [5580] = 5580, - [5581] = 5548, - [5582] = 5582, - [5583] = 5544, - [5584] = 5582, - [5585] = 346, - [5586] = 5586, - [5587] = 5548, - [5588] = 418, - [5589] = 341, - [5590] = 5590, - [5591] = 5545, - [5592] = 445, - [5593] = 157, - [5594] = 403, - [5595] = 355, - [5596] = 423, - [5597] = 5545, - [5598] = 5548, - [5599] = 5545, - [5600] = 5600, - [5601] = 154, - [5602] = 419, - [5603] = 341, - [5604] = 5604, - [5605] = 5548, - [5606] = 155, - [5607] = 404, - [5608] = 5608, - [5609] = 2596, - [5610] = 5548, + [5493] = 608, + [5494] = 609, + [5495] = 610, + [5496] = 368, + [5497] = 611, + [5498] = 612, + [5499] = 636, + [5500] = 369, + [5501] = 613, + [5502] = 352, + [5503] = 413, + [5504] = 614, + [5505] = 615, + [5506] = 616, + [5507] = 617, + [5508] = 618, + [5509] = 383, + [5510] = 619, + [5511] = 355, + [5512] = 620, + [5513] = 402, + [5514] = 621, + [5515] = 622, + [5516] = 623, + [5517] = 137, + [5518] = 624, + [5519] = 625, + [5520] = 626, + [5521] = 627, + [5522] = 628, + [5523] = 3168, + [5524] = 531, + [5525] = 629, + [5526] = 5526, + [5527] = 345, + [5528] = 436, + [5529] = 341, + [5530] = 403, + [5531] = 189, + [5532] = 369, + [5533] = 527, + [5534] = 1698, + [5535] = 1638, + [5536] = 404, + [5537] = 5464, + [5538] = 371, + [5539] = 1345, + [5540] = 1140, + [5541] = 383, + [5542] = 1803, + [5543] = 418, + [5544] = 419, + [5545] = 1804, + [5546] = 342, + [5547] = 671, + [5548] = 1669, + [5549] = 2802, + [5550] = 417, + [5551] = 367, + [5552] = 1734, + [5553] = 2809, + [5554] = 1735, + [5555] = 5215, + [5556] = 5115, + [5557] = 2828, + [5558] = 367, + [5559] = 412, + [5560] = 344, + [5561] = 366, + [5562] = 148, + [5563] = 2833, + [5564] = 5564, + [5565] = 355, + [5566] = 5566, + [5567] = 5567, + [5568] = 5568, + [5569] = 5569, + [5570] = 5567, + [5571] = 5571, + [5572] = 5572, + [5573] = 5571, + [5574] = 672, + [5575] = 531, + [5576] = 601, + [5577] = 345, + [5578] = 5578, + [5579] = 602, + [5580] = 603, + [5581] = 604, + [5582] = 1738, + [5583] = 605, + [5584] = 5584, + [5585] = 5585, + [5586] = 606, + [5587] = 607, + [5588] = 448, + [5589] = 5589, + [5590] = 344, + [5591] = 5591, + [5592] = 674, + [5593] = 5593, + [5594] = 5567, + [5595] = 5571, + [5596] = 5578, + [5597] = 5597, + [5598] = 5585, + [5599] = 5599, + [5600] = 5584, + [5601] = 1739, + [5602] = 5602, + [5603] = 4465, + [5604] = 4471, + [5605] = 1693, + [5606] = 5578, + [5607] = 191, + [5608] = 5589, + [5609] = 1622, + [5610] = 5593, [5611] = 5611, - [5612] = 336, - [5613] = 355, - [5614] = 405, - [5615] = 5545, - [5616] = 342, - [5617] = 360, - [5618] = 335, - [5619] = 406, - [5620] = 357, - [5621] = 336, - [5622] = 335, - [5623] = 1378, - [5624] = 5586, - [5625] = 5545, - [5626] = 5626, - [5627] = 5627, - [5628] = 5556, - [5629] = 422, - [5630] = 5611, - [5631] = 407, - [5632] = 354, - [5633] = 5586, - [5634] = 5548, - [5635] = 5545, - [5636] = 356, - [5637] = 410, - [5638] = 5586, - [5639] = 5556, - [5640] = 5556, - [5641] = 412, - [5642] = 355, - [5643] = 357, - [5644] = 151, - [5645] = 158, - [5646] = 425, - [5647] = 357, - [5648] = 5648, - [5649] = 439, - [5650] = 5548, - [5651] = 5548, - [5652] = 5582, - [5653] = 338, - [5654] = 5544, - [5655] = 353, - [5656] = 414, - [5657] = 352, - [5658] = 5548, - [5659] = 356, - [5660] = 150, - [5661] = 150, - [5662] = 156, - [5663] = 347, - [5664] = 353, - [5665] = 5608, - [5666] = 358, - [5667] = 342, - [5668] = 152, - [5669] = 151, - [5670] = 5670, - [5671] = 5671, - [5672] = 5672, - [5673] = 5673, - [5674] = 341, - [5675] = 5626, - [5676] = 5672, - [5677] = 158, - [5678] = 154, - [5679] = 5679, - [5680] = 160, - [5681] = 159, - [5682] = 5682, - [5683] = 423, - [5684] = 5627, + [5612] = 5567, + [5613] = 5571, + [5614] = 5597, + [5615] = 396, + [5616] = 5585, + [5617] = 491, + [5618] = 608, + [5619] = 5619, + [5620] = 5584, + [5621] = 150, + [5622] = 609, + [5623] = 610, + [5624] = 1656, + [5625] = 5625, + [5626] = 5593, + [5627] = 5567, + [5628] = 5571, + [5629] = 5597, + [5630] = 492, + [5631] = 5585, + [5632] = 5584, + [5633] = 493, + [5634] = 5634, + [5635] = 5593, + [5636] = 5567, + [5637] = 5571, + [5638] = 1590, + [5639] = 5597, + [5640] = 5585, + [5641] = 5641, + [5642] = 5642, + [5643] = 398, + [5644] = 5584, + [5645] = 367, + [5646] = 5593, + [5647] = 5567, + [5648] = 5571, + [5649] = 5597, + [5650] = 5585, + [5651] = 1590, + [5652] = 5584, + [5653] = 366, + [5654] = 5654, + [5655] = 5593, + [5656] = 5567, + [5657] = 5571, + [5658] = 5658, + [5659] = 5597, + [5660] = 5585, + [5661] = 5584, + [5662] = 5584, + [5663] = 150, + [5664] = 344, + [5665] = 672, + [5666] = 5666, + [5667] = 5667, + [5668] = 5593, + [5669] = 5567, + [5670] = 5571, + [5671] = 5597, + [5672] = 5585, + [5673] = 368, + [5674] = 369, + [5675] = 5619, + [5676] = 5584, + [5677] = 5593, + [5678] = 5567, + [5679] = 5571, + [5680] = 344, + [5681] = 5597, + [5682] = 5585, + [5683] = 5683, + [5684] = 5584, [5685] = 5685, - [5686] = 156, - [5687] = 157, - [5688] = 155, - [5689] = 153, - [5690] = 5648, - [5691] = 5604, - [5692] = 5692, - [5693] = 5693, - [5694] = 5694, - [5695] = 5695, - [5696] = 5679, - [5697] = 5697, - [5698] = 5698, - [5699] = 5697, - [5700] = 5580, - [5701] = 5672, - [5702] = 5673, - [5703] = 5703, - [5704] = 5693, - [5705] = 152, - [5706] = 369, - [5707] = 5707, - [5708] = 341, - [5709] = 204, - [5710] = 342, - [5711] = 1378, - [5712] = 151, - [5713] = 5685, - [5714] = 358, - [5715] = 1629, - [5716] = 5698, - [5717] = 353, - [5718] = 5672, - [5719] = 5673, - [5720] = 355, - [5721] = 425, - [5722] = 422, - [5723] = 426, - [5724] = 423, - [5725] = 439, - [5726] = 444, - [5727] = 445, - [5728] = 421, - [5729] = 401, - [5730] = 402, - [5731] = 403, - [5732] = 404, - [5733] = 405, - [5734] = 406, - [5735] = 407, - [5736] = 410, - [5737] = 412, - [5738] = 414, - [5739] = 416, - [5740] = 417, - [5741] = 418, - [5742] = 419, - [5743] = 356, - [5744] = 357, - [5745] = 353, - [5746] = 5707, - [5747] = 342, - [5748] = 5698, - [5749] = 355, - [5750] = 5693, - [5751] = 358, - [5752] = 356, - [5753] = 357, - [5754] = 5707, - [5755] = 360, - [5756] = 150, - [5757] = 5672, - [5758] = 5673, - [5759] = 336, - [5760] = 5679, - [5761] = 5698, - [5762] = 360, - [5763] = 335, - [5764] = 1618, - [5765] = 5693, - [5766] = 5707, - [5767] = 5672, - [5768] = 5673, - [5769] = 5679, - [5770] = 5698, - [5771] = 5693, - [5772] = 5672, - [5773] = 5693, - [5774] = 5672, - [5775] = 5693, - [5776] = 5672, - [5777] = 335, - [5778] = 5693, - [5779] = 5672, - [5780] = 5693, - [5781] = 5672, - [5782] = 5693, - [5783] = 5672, - [5784] = 5693, - [5785] = 5672, - [5786] = 5693, - [5787] = 5672, - [5788] = 5693, - [5789] = 5672, - [5790] = 5693, - [5791] = 5672, - [5792] = 5693, - [5793] = 5693, - [5794] = 5693, - [5795] = 5693, - [5796] = 5693, - [5797] = 5692, - [5798] = 5672, - [5799] = 5703, - [5800] = 5670, - [5801] = 5672, - [5802] = 5703, - [5803] = 5670, - [5804] = 353, - [5805] = 355, - [5806] = 161, - [5807] = 356, - [5808] = 422, - [5809] = 336, - [5810] = 368, - [5811] = 357, - [5812] = 341, - [5813] = 5679, - [5814] = 5679, - [5815] = 156, - [5816] = 5816, - [5817] = 5817, - [5818] = 5818, - [5819] = 150, - [5820] = 152, - [5821] = 151, - [5822] = 382, - [5823] = 355, - [5824] = 154, - [5825] = 1789, + [5686] = 1622, + [5687] = 5593, + [5688] = 5567, + [5689] = 5571, + [5690] = 5597, + [5691] = 499, + [5692] = 3218, + [5693] = 345, + [5694] = 5584, + [5695] = 5593, + [5696] = 5526, + [5697] = 5593, + [5698] = 5597, + [5699] = 5585, + [5700] = 5584, + [5701] = 2828, + [5702] = 611, + [5703] = 5593, + [5704] = 5597, + [5705] = 5585, + [5706] = 5584, + [5707] = 5593, + [5708] = 352, + [5709] = 5597, + [5710] = 5585, + [5711] = 5584, + [5712] = 636, + [5713] = 472, + [5714] = 5585, + [5715] = 5584, + [5716] = 5585, + [5717] = 612, + [5718] = 5584, + [5719] = 3961, + [5720] = 528, + [5721] = 527, + [5722] = 1734, + [5723] = 1735, + [5724] = 5597, + [5725] = 5725, + [5726] = 613, + [5727] = 5727, + [5728] = 5728, + [5729] = 445, + [5730] = 4001, + [5731] = 5599, + [5732] = 5634, + [5733] = 5725, + [5734] = 5734, + [5735] = 614, + [5736] = 615, + [5737] = 616, + [5738] = 5584, + [5739] = 5585, + [5740] = 345, + [5741] = 617, + [5742] = 618, + [5743] = 5743, + [5744] = 619, + [5745] = 620, + [5746] = 621, + [5747] = 529, + [5748] = 622, + [5749] = 623, + [5750] = 5750, + [5751] = 530, + [5752] = 5642, + [5753] = 5753, + [5754] = 638, + [5755] = 639, + [5756] = 5115, + [5757] = 472, + [5758] = 5758, + [5759] = 491, + [5760] = 492, + [5761] = 493, + [5762] = 139, + [5763] = 2932, + [5764] = 5764, + [5765] = 2899, + [5766] = 5766, + [5767] = 5767, + [5768] = 648, + [5769] = 649, + [5770] = 5597, + [5771] = 651, + [5772] = 5625, + [5773] = 5773, + [5774] = 5774, + [5775] = 624, + [5776] = 625, + [5777] = 626, + [5778] = 138, + [5779] = 656, + [5780] = 1803, + [5781] = 1804, + [5782] = 5593, + [5783] = 627, + [5784] = 1150, + [5785] = 674, + [5786] = 628, + [5787] = 5567, + [5788] = 5571, + [5789] = 5578, + [5790] = 629, + [5791] = 5625, + [5792] = 5625, + [5793] = 487, + [5794] = 498, + [5795] = 1706, + [5796] = 1707, + [5797] = 5597, + [5798] = 5593, + [5799] = 5566, + [5800] = 5585, + [5801] = 5585, + [5802] = 5802, + [5803] = 4700, + [5804] = 1669, + [5805] = 5805, + [5806] = 1803, + [5807] = 384, + [5808] = 1804, + [5809] = 4754, + [5810] = 5810, + [5811] = 4790, + [5812] = 142, + [5813] = 4633, + [5814] = 344, + [5815] = 4716, + [5816] = 4665, + [5817] = 4680, + [5818] = 430, + [5819] = 5819, + [5820] = 431, + [5821] = 5821, + [5822] = 5805, + [5823] = 4662, + [5824] = 4755, + [5825] = 5825, [5826] = 5826, - [5827] = 5682, - [5828] = 356, - [5829] = 1764, - [5830] = 1765, - [5831] = 368, - [5832] = 5832, - [5833] = 1790, - [5834] = 357, - [5835] = 358, - [5836] = 369, - [5837] = 158, - [5838] = 154, - [5839] = 597, - [5840] = 5840, - [5841] = 5841, - [5842] = 1780, - [5843] = 5843, - [5844] = 5844, - [5845] = 357, - [5846] = 5846, - [5847] = 5847, - [5848] = 5848, - [5849] = 352, - [5850] = 1782, - [5851] = 356, - [5852] = 1692, - [5853] = 5817, - [5854] = 5818, - [5855] = 5826, - [5856] = 5832, - [5857] = 157, - [5858] = 155, - [5859] = 5840, - [5860] = 5841, - [5861] = 5844, - [5862] = 5846, - [5863] = 5863, - [5864] = 5864, - [5865] = 5865, - [5866] = 5866, - [5867] = 5867, - [5868] = 5868, - [5869] = 5869, - [5870] = 5870, - [5871] = 5871, - [5872] = 5872, - [5873] = 5873, - [5874] = 5874, - [5875] = 5875, - [5876] = 5876, - [5877] = 353, - [5878] = 5816, - [5879] = 368, - [5880] = 5847, - [5881] = 153, - [5882] = 5848, - [5883] = 1766, - [5884] = 341, - [5885] = 527, - [5886] = 1767, - [5887] = 5887, - [5888] = 1618, - [5889] = 5870, - [5890] = 150, - [5891] = 5817, - [5892] = 5818, - [5893] = 5826, - [5894] = 342, - [5895] = 5816, - [5896] = 5832, - [5897] = 5840, - [5898] = 354, - [5899] = 5841, - [5900] = 5844, - [5901] = 5846, - [5902] = 5816, - [5903] = 369, - [5904] = 5863, - [5905] = 5816, - [5906] = 5864, - [5907] = 5865, - [5908] = 5816, - [5909] = 5866, - [5910] = 5867, - [5911] = 5869, - [5912] = 5816, - [5913] = 5869, - [5914] = 5863, - [5915] = 5864, - [5916] = 5870, - [5917] = 5816, - [5918] = 5871, - [5919] = 5872, - [5920] = 5816, - [5921] = 5873, - [5922] = 5874, - [5923] = 5816, - [5924] = 5875, - [5925] = 5876, - [5926] = 5816, - [5927] = 355, - [5928] = 5865, - [5929] = 5816, - [5930] = 5816, - [5931] = 5816, - [5932] = 356, - [5933] = 5816, - [5934] = 357, - [5935] = 537, - [5936] = 5816, - [5937] = 5866, - [5938] = 1378, - [5939] = 5816, - [5940] = 1629, - [5941] = 5816, - [5942] = 5816, - [5943] = 5816, - [5944] = 360, - [5945] = 5816, - [5946] = 5816, - [5947] = 5816, - [5948] = 5816, - [5949] = 5816, - [5950] = 5816, - [5951] = 5816, - [5952] = 5816, - [5953] = 5816, - [5954] = 5816, - [5955] = 5816, - [5956] = 5816, - [5957] = 5816, - [5958] = 5816, - [5959] = 5816, - [5960] = 5816, - [5961] = 5816, - [5962] = 5816, - [5963] = 5816, - [5964] = 5816, - [5965] = 5816, - [5966] = 5816, - [5967] = 5816, - [5968] = 5873, - [5969] = 5867, - [5970] = 5816, - [5971] = 161, - [5972] = 342, - [5973] = 1705, - [5974] = 549, - [5975] = 5868, - [5976] = 1731, - [5977] = 555, - [5978] = 536, - [5979] = 5874, - [5980] = 5847, - [5981] = 160, - [5982] = 159, - [5983] = 5875, - [5984] = 5848, - [5985] = 1378, - [5986] = 5871, - [5987] = 5876, - [5988] = 341, - [5989] = 378, - [5990] = 5872, - [5991] = 379, - [5992] = 353, - [5993] = 381, - [5994] = 353, - [5995] = 355, - [5996] = 5887, - [5997] = 158, - [5998] = 5868, - [5999] = 2993, - [6000] = 426, - [6001] = 439, - [6002] = 378, - [6003] = 1378, - [6004] = 2989, - [6005] = 379, - [6006] = 2975, - [6007] = 381, - [6008] = 382, - [6009] = 423, - [6010] = 1692, - [6011] = 358, - [6012] = 425, - [6013] = 5580, - [6014] = 527, - [6015] = 357, - [6016] = 390, - [6017] = 161, - [6018] = 389, - [6019] = 1705, - [6020] = 6020, - [6021] = 447, - [6022] = 160, - [6023] = 389, - [6024] = 159, - [6025] = 444, - [6026] = 445, - [6027] = 353, - [6028] = 6028, - [6029] = 6029, - [6030] = 5580, - [6031] = 355, - [6032] = 6032, - [6033] = 6033, - [6034] = 390, - [6035] = 356, - [6036] = 150, - [6037] = 357, - [6038] = 1168, + [5827] = 5810, + [5828] = 5828, + [5829] = 5829, + [5830] = 5830, + [5831] = 5805, + [5832] = 447, + [5833] = 423, + [5834] = 5834, + [5835] = 4734, + [5836] = 5805, + [5837] = 355, + [5838] = 1896, + [5839] = 5810, + [5840] = 4552, + [5841] = 5810, + [5842] = 4465, + [5843] = 4785, + [5844] = 368, + [5845] = 424, + [5846] = 432, + [5847] = 5805, + [5848] = 4737, + [5849] = 5810, + [5850] = 355, + [5851] = 1638, + [5852] = 4471, + [5853] = 5853, + [5854] = 4726, + [5855] = 367, + [5856] = 5805, + [5857] = 4556, + [5858] = 4677, + [5859] = 5810, + [5860] = 4545, + [5861] = 5861, + [5862] = 5862, + [5863] = 4564, + [5864] = 4566, + [5865] = 1693, + [5866] = 413, + [5867] = 1738, + [5868] = 5805, + [5869] = 1739, + [5870] = 4745, + [5871] = 4546, + [5872] = 352, + [5873] = 5766, + [5874] = 1734, + [5875] = 5810, + [5876] = 4656, + [5877] = 5877, + [5878] = 433, + [5879] = 5879, + [5880] = 1735, + [5881] = 5821, + [5882] = 4678, + [5883] = 5821, + [5884] = 4747, + [5885] = 5829, + [5886] = 141, + [5887] = 352, + [5888] = 4593, + [5889] = 4569, + [5890] = 4576, + [5891] = 352, + [5892] = 4641, + [5893] = 5893, + [5894] = 4668, + [5895] = 5805, + [5896] = 413, + [5897] = 5829, + [5898] = 5825, + [5899] = 5899, + [5900] = 5900, + [5901] = 5901, + [5902] = 5810, + [5903] = 5802, + [5904] = 5526, + [5905] = 4596, + [5906] = 425, + [5907] = 5907, + [5908] = 4613, + [5909] = 5909, + [5910] = 1669, + [5911] = 4614, + [5912] = 4750, + [5913] = 5913, + [5914] = 5899, + [5915] = 5802, + [5916] = 2828, + [5917] = 5758, + [5918] = 4600, + [5919] = 5919, + [5920] = 5830, + [5921] = 4752, + [5922] = 5907, + [5923] = 4603, + [5924] = 420, + [5925] = 415, + [5926] = 489, + [5927] = 5810, + [5928] = 5805, + [5929] = 5929, + [5930] = 345, + [5931] = 4607, + [5932] = 426, + [5933] = 5810, + [5934] = 4756, + [5935] = 5935, + [5936] = 1656, + [5937] = 4645, + [5938] = 345, + [5939] = 5939, + [5940] = 1706, + [5941] = 1707, + [5942] = 1622, + [5943] = 1698, + [5944] = 4634, + [5945] = 137, + [5946] = 5946, + [5947] = 1590, + [5948] = 427, + [5949] = 4611, + [5950] = 5919, + [5951] = 428, + [5952] = 5899, + [5953] = 4652, + [5954] = 5810, + [5955] = 5862, + [5956] = 5861, + [5957] = 5828, + [5958] = 4757, + [5959] = 5901, + [5960] = 5960, + [5961] = 1698, + [5962] = 5962, + [5963] = 5683, + [5964] = 5805, + [5965] = 145, + [5966] = 5853, + [5967] = 1884, + [5968] = 355, + [5969] = 5802, + [5970] = 4786, + [5971] = 5830, + [5972] = 5805, + [5973] = 5810, + [5974] = 144, + [5975] = 5975, + [5976] = 418, + [5977] = 4544, + [5978] = 5862, + [5979] = 5861, + [5980] = 5828, + [5981] = 2833, + [5982] = 5982, + [5983] = 419, + [5984] = 5862, + [5985] = 5861, + [5986] = 5828, + [5987] = 5901, + [5988] = 5685, + [5989] = 5989, + [5990] = 5962, + [5991] = 5853, + [5992] = 5767, + [5993] = 5802, + [5994] = 5830, + [5995] = 446, + [5996] = 4659, + [5997] = 140, + [5998] = 143, + [5999] = 5802, + [6000] = 5830, + [6001] = 6001, + [6002] = 5909, + [6003] = 5802, + [6004] = 5830, + [6005] = 5802, + [6006] = 5830, + [6007] = 4548, + [6008] = 4550, + [6009] = 5802, + [6010] = 5830, + [6011] = 6011, + [6012] = 5962, + [6013] = 5805, + [6014] = 5802, + [6015] = 5830, + [6016] = 4574, + [6017] = 5802, + [6018] = 5830, + [6019] = 5810, + [6020] = 369, + [6021] = 5802, + [6022] = 5830, + [6023] = 5802, + [6024] = 5830, + [6025] = 6025, + [6026] = 6001, + [6027] = 6001, + [6028] = 5802, + [6029] = 5830, + [6030] = 5802, + [6031] = 5830, + [6032] = 5901, + [6033] = 5830, + [6034] = 5802, + [6035] = 5830, + [6036] = 5802, + [6037] = 5830, + [6038] = 5805, [6039] = 421, - [6040] = 401, - [6041] = 402, - [6042] = 403, - [6043] = 160, - [6044] = 159, - [6045] = 676, - [6046] = 404, - [6047] = 6047, - [6048] = 378, - [6049] = 406, - [6050] = 407, - [6051] = 410, - [6052] = 412, - [6053] = 422, - [6054] = 379, - [6055] = 161, - [6056] = 356, - [6057] = 537, - [6058] = 397, - [6059] = 368, - [6060] = 6060, - [6061] = 369, - [6062] = 381, - [6063] = 150, - [6064] = 6064, - [6065] = 414, - [6066] = 416, - [6067] = 417, - [6068] = 418, - [6069] = 549, - [6070] = 382, - [6071] = 425, - [6072] = 555, - [6073] = 360, - [6074] = 536, - [6075] = 419, - [6076] = 5682, - [6077] = 2994, - [6078] = 6064, + [6040] = 1638, + [6041] = 345, + [6042] = 5877, + [6043] = 5879, + [6044] = 5929, + [6045] = 4789, + [6046] = 4696, + [6047] = 5989, + [6048] = 5810, + [6049] = 5805, + [6050] = 4672, + [6051] = 5641, + [6052] = 417, + [6053] = 5727, + [6054] = 5805, + [6055] = 6001, + [6056] = 422, + [6057] = 5900, + [6058] = 429, + [6059] = 4767, + [6060] = 366, + [6061] = 5810, + [6062] = 5893, + [6063] = 5728, + [6064] = 5919, + [6065] = 4772, + [6066] = 415, + [6067] = 5893, + [6068] = 5825, + [6069] = 6069, + [6070] = 4607, + [6071] = 4611, + [6072] = 2630, + [6073] = 531, + [6074] = 6074, + [6075] = 6075, + [6076] = 6076, + [6077] = 6077, + [6078] = 552, [6079] = 6079, - [6080] = 6080, - [6081] = 355, - [6082] = 1378, - [6083] = 3307, - [6084] = 203, - [6085] = 353, - [6086] = 426, - [6087] = 441, - [6088] = 564, - [6089] = 1731, - [6090] = 405, + [6080] = 531, + [6081] = 6081, + [6082] = 352, + [6083] = 6083, + [6084] = 6084, + [6085] = 355, + [6086] = 6086, + [6087] = 6086, + [6088] = 368, + [6089] = 6089, + [6090] = 2663, [6091] = 6091, - [6092] = 151, - [6093] = 6093, - [6094] = 620, - [6095] = 621, - [6096] = 636, - [6097] = 6097, - [6098] = 652, - [6099] = 622, + [6092] = 206, + [6093] = 1638, + [6094] = 528, + [6095] = 6095, + [6096] = 5960, + [6097] = 527, + [6098] = 6098, + [6099] = 6099, [6100] = 6100, [6101] = 6101, [6102] = 6102, - [6103] = 623, + [6103] = 6103, [6104] = 6104, - [6105] = 675, - [6106] = 3339, - [6107] = 358, + [6105] = 6105, + [6106] = 6106, + [6107] = 6107, [6108] = 6108, - [6109] = 1727, + [6109] = 4574, [6110] = 6110, - [6111] = 645, - [6112] = 152, - [6113] = 6091, - [6114] = 163, - [6115] = 613, - [6116] = 1629, - [6117] = 204, + [6111] = 344, + [6112] = 369, + [6113] = 139, + [6114] = 6102, + [6115] = 6115, + [6116] = 6069, + [6117] = 6117, [6118] = 6118, - [6119] = 6119, - [6120] = 6120, - [6121] = 6121, - [6122] = 6119, - [6123] = 611, - [6124] = 6110, - [6125] = 1173, - [6126] = 6101, - [6127] = 3049, - [6128] = 555, - [6129] = 1732, - [6130] = 6091, - [6131] = 608, - [6132] = 5056, + [6119] = 2604, + [6120] = 531, + [6121] = 3374, + [6122] = 2605, + [6123] = 3375, + [6124] = 6124, + [6125] = 138, + [6126] = 6126, + [6127] = 521, + [6128] = 6128, + [6129] = 6115, + [6130] = 6130, + [6131] = 6131, + [6132] = 6132, [6133] = 6133, - [6134] = 3050, - [6135] = 536, + [6134] = 6134, + [6135] = 6135, [6136] = 6136, - [6137] = 1764, - [6138] = 1765, - [6139] = 612, - [6140] = 2975, - [6141] = 4977, + [6137] = 6137, + [6138] = 6075, + [6139] = 6139, + [6140] = 367, + [6141] = 3385, [6142] = 6142, [6143] = 6143, - [6144] = 6118, - [6145] = 474, - [6146] = 360, - [6147] = 6120, - [6148] = 6121, - [6149] = 6110, - [6150] = 6101, + [6144] = 6144, + [6145] = 6076, + [6146] = 6146, + [6147] = 3371, + [6148] = 514, + [6149] = 6149, + [6150] = 6150, [6151] = 6151, - [6152] = 6091, - [6153] = 6097, - [6154] = 6133, - [6155] = 6118, - [6156] = 454, - [6157] = 6120, - [6158] = 6121, - [6159] = 6110, - [6160] = 6101, + [6152] = 6152, + [6153] = 6153, + [6154] = 6154, + [6155] = 6155, + [6156] = 3060, + [6157] = 6157, + [6158] = 502, + [6159] = 1140, + [6160] = 503, [6161] = 6161, - [6162] = 6091, - [6163] = 6104, - [6164] = 6091, - [6165] = 369, - [6166] = 6166, - [6167] = 6118, - [6168] = 163, - [6169] = 6120, - [6170] = 6121, - [6171] = 6110, - [6172] = 675, - [6173] = 358, - [6174] = 6101, - [6175] = 6175, - [6176] = 6118, - [6177] = 6091, - [6178] = 655, - [6179] = 656, - [6180] = 6118, - [6181] = 6120, - [6182] = 6121, - [6183] = 6110, - [6184] = 6101, - [6185] = 657, - [6186] = 1766, - [6187] = 6091, - [6188] = 1767, - [6189] = 648, + [6162] = 6162, + [6163] = 6163, + [6164] = 6164, + [6165] = 6165, + [6166] = 6081, + [6167] = 6081, + [6168] = 6168, + [6169] = 3048, + [6170] = 6170, + [6171] = 6131, + [6172] = 6132, + [6173] = 6133, + [6174] = 6134, + [6175] = 1590, + [6176] = 366, + [6177] = 6075, + [6178] = 2613, + [6179] = 367, + [6180] = 6076, + [6181] = 6081, + [6182] = 528, + [6183] = 6183, + [6184] = 6117, + [6185] = 6074, + [6186] = 6086, + [6187] = 6095, + [6188] = 6069, + [6189] = 6117, [6190] = 6118, - [6191] = 6120, - [6192] = 6121, - [6193] = 6110, - [6194] = 6101, - [6195] = 6195, - [6196] = 6196, - [6197] = 6197, - [6198] = 6091, - [6199] = 6199, + [6191] = 6135, + [6192] = 6136, + [6193] = 6137, + [6194] = 6152, + [6195] = 6099, + [6196] = 579, + [6197] = 4644, + [6198] = 6198, + [6199] = 528, [6200] = 6200, - [6201] = 6118, - [6202] = 6120, - [6203] = 6121, - [6204] = 6110, - [6205] = 6101, + [6201] = 6201, + [6202] = 527, + [6203] = 6203, + [6204] = 6204, + [6205] = 6205, [6206] = 6206, - [6207] = 635, - [6208] = 6208, - [6209] = 6209, - [6210] = 6118, - [6211] = 6120, - [6212] = 6121, - [6213] = 6110, - [6214] = 6101, - [6215] = 6195, - [6216] = 6196, - [6217] = 6101, - [6218] = 6091, - [6219] = 658, - [6220] = 6047, - [6221] = 6197, - [6222] = 6199, - [6223] = 6118, - [6224] = 6120, - [6225] = 6121, - [6226] = 6120, - [6227] = 6110, - [6228] = 654, - [6229] = 6101, - [6230] = 660, - [6231] = 6091, - [6232] = 661, - [6233] = 6233, - [6234] = 6118, - [6235] = 6120, - [6236] = 6121, - [6237] = 6110, - [6238] = 6101, - [6239] = 6093, - [6240] = 6240, - [6241] = 6091, - [6242] = 453, - [6243] = 665, - [6244] = 6118, - [6245] = 6110, - [6246] = 6101, - [6247] = 691, - [6248] = 6091, - [6249] = 6166, - [6250] = 6250, - [6251] = 6118, - [6252] = 6110, - [6253] = 6101, - [6254] = 6254, - [6255] = 6091, - [6256] = 6256, - [6257] = 6118, - [6258] = 358, - [6259] = 6110, - [6260] = 6101, - [6261] = 368, - [6262] = 6091, - [6263] = 450, - [6264] = 6101, + [6207] = 6207, + [6208] = 6075, + [6209] = 6076, + [6210] = 516, + [6211] = 6135, + [6212] = 6081, + [6213] = 367, + [6214] = 6214, + [6215] = 6136, + [6216] = 517, + [6217] = 6095, + [6218] = 6069, + [6219] = 6117, + [6220] = 6118, + [6221] = 6135, + [6222] = 6136, + [6223] = 6137, + [6224] = 6152, + [6225] = 6137, + [6226] = 368, + [6227] = 6075, + [6228] = 6076, + [6229] = 6118, + [6230] = 6230, + [6231] = 6081, + [6232] = 2639, + [6233] = 529, + [6234] = 2640, + [6235] = 530, + [6236] = 6095, + [6237] = 6069, + [6238] = 6117, + [6239] = 6118, + [6240] = 6135, + [6241] = 6136, + [6242] = 6137, + [6243] = 6152, + [6244] = 6244, + [6245] = 6075, + [6246] = 6076, + [6247] = 6247, + [6248] = 6248, + [6249] = 6249, + [6250] = 6081, + [6251] = 6251, + [6252] = 6252, + [6253] = 6095, + [6254] = 6069, + [6255] = 6117, + [6256] = 6118, + [6257] = 6135, + [6258] = 6136, + [6259] = 6137, + [6260] = 6152, + [6261] = 6075, + [6262] = 6076, + [6263] = 6263, + [6264] = 6081, [6265] = 6265, - [6266] = 6091, - [6267] = 455, - [6268] = 6101, - [6269] = 456, - [6270] = 6091, - [6271] = 6118, - [6272] = 6101, - [6273] = 6273, - [6274] = 6091, - [6275] = 6200, - [6276] = 6276, - [6277] = 6277, - [6278] = 500, - [6279] = 6279, - [6280] = 6206, + [6266] = 6266, + [6267] = 6095, + [6268] = 6069, + [6269] = 6117, + [6270] = 6118, + [6271] = 6135, + [6272] = 6136, + [6273] = 6137, + [6274] = 6152, + [6275] = 6275, + [6276] = 6075, + [6277] = 369, + [6278] = 6076, + [6279] = 4656, + [6280] = 6081, [6281] = 6281, - [6282] = 6282, - [6283] = 152, - [6284] = 6284, - [6285] = 378, - [6286] = 6208, - [6287] = 6120, - [6288] = 379, - [6289] = 6289, - [6290] = 6209, - [6291] = 381, - [6292] = 382, - [6293] = 4412, - [6294] = 614, - [6295] = 6121, + [6282] = 6095, + [6283] = 6069, + [6284] = 6117, + [6285] = 6118, + [6286] = 6135, + [6287] = 6136, + [6288] = 6137, + [6289] = 6152, + [6290] = 4659, + [6291] = 520, + [6292] = 6075, + [6293] = 6076, + [6294] = 6095, + [6295] = 6081, [6296] = 6296, [6297] = 6297, - [6298] = 1780, - [6299] = 6121, - [6300] = 6300, - [6301] = 6301, - [6302] = 6302, - [6303] = 6303, - [6304] = 1782, - [6305] = 6305, - [6306] = 6100, - [6307] = 6250, - [6308] = 6254, - [6309] = 151, - [6310] = 6256, - [6311] = 6118, - [6312] = 6312, - [6313] = 6120, - [6314] = 687, - [6315] = 360, - [6316] = 615, - [6317] = 6121, - [6318] = 6142, - [6319] = 443, - [6320] = 687, - [6321] = 616, - [6322] = 1618, - [6323] = 6143, - [6324] = 6301, - [6325] = 450, - [6326] = 6302, - [6327] = 455, - [6328] = 456, - [6329] = 500, - [6330] = 6303, - [6331] = 1789, - [6332] = 1790, - [6333] = 452, - [6334] = 666, - [6335] = 5580, - [6336] = 6091, - [6337] = 6337, - [6338] = 480, - [6339] = 6119, - [6340] = 617, - [6341] = 668, - [6342] = 6342, - [6343] = 670, - [6344] = 6119, - [6345] = 6273, + [6298] = 6095, + [6299] = 6069, + [6300] = 6117, + [6301] = 6118, + [6302] = 6135, + [6303] = 6136, + [6304] = 6137, + [6305] = 6152, + [6306] = 6095, + [6307] = 6307, + [6308] = 6075, + [6309] = 6076, + [6310] = 6310, + [6311] = 520, + [6312] = 6081, + [6313] = 3379, + [6314] = 3381, + [6315] = 6095, + [6316] = 6069, + [6317] = 6117, + [6318] = 6118, + [6319] = 6135, + [6320] = 6136, + [6321] = 6137, + [6322] = 6152, + [6323] = 6323, + [6324] = 6324, + [6325] = 6075, + [6326] = 6076, + [6327] = 6327, + [6328] = 6328, + [6329] = 6329, + [6330] = 6330, + [6331] = 6081, + [6332] = 6332, + [6333] = 521, + [6334] = 6095, + [6335] = 6069, + [6336] = 6117, + [6337] = 6118, + [6338] = 6135, + [6339] = 6136, + [6340] = 6137, + [6341] = 6152, + [6342] = 6075, + [6343] = 6076, + [6344] = 6081, + [6345] = 5819, [6346] = 6346, - [6347] = 549, - [6348] = 618, - [6349] = 527, - [6350] = 6300, - [6351] = 619, - [6352] = 677, - [6353] = 6110, - [6354] = 2989, - [6355] = 678, - [6356] = 679, - [6357] = 6357, - [6358] = 6151, - [6359] = 6359, - [6360] = 537, - [6361] = 6273, - [6362] = 6110, - [6363] = 6273, - [6364] = 6364, - [6365] = 1618, - [6366] = 6101, - [6367] = 1629, - [6368] = 6368, - [6369] = 6175, - [6370] = 4463, - [6371] = 360, - [6372] = 629, - [6373] = 440, - [6374] = 630, - [6375] = 6375, - [6376] = 6376, - [6377] = 5168, - [6378] = 5271, - [6379] = 404, - [6380] = 405, + [6347] = 366, + [6348] = 6095, + [6349] = 6069, + [6350] = 6117, + [6351] = 6118, + [6352] = 6135, + [6353] = 6136, + [6354] = 6137, + [6355] = 6152, + [6356] = 6075, + [6357] = 6076, + [6358] = 514, + [6359] = 6081, + [6360] = 366, + [6361] = 551, + [6362] = 6095, + [6363] = 6069, + [6364] = 6117, + [6365] = 6118, + [6366] = 6135, + [6367] = 6136, + [6368] = 6137, + [6369] = 6152, + [6370] = 6075, + [6371] = 6076, + [6372] = 3071, + [6373] = 6081, + [6374] = 6102, + [6375] = 6115, + [6376] = 6095, + [6377] = 6069, + [6378] = 6117, + [6379] = 6118, + [6380] = 6135, [6381] = 6381, - [6382] = 5171, - [6383] = 6383, - [6384] = 5156, - [6385] = 5270, - [6386] = 5250, - [6387] = 5174, - [6388] = 406, - [6389] = 5132, - [6390] = 407, - [6391] = 1692, - [6392] = 410, - [6393] = 156, - [6394] = 412, - [6395] = 360, - [6396] = 6396, - [6397] = 6397, - [6398] = 1692, - [6399] = 439, - [6400] = 426, - [6401] = 2989, - [6402] = 5280, - [6403] = 6403, - [6404] = 6404, - [6405] = 5289, - [6406] = 6381, - [6407] = 6383, - [6408] = 157, - [6409] = 5297, - [6410] = 5252, - [6411] = 155, - [6412] = 6412, - [6413] = 6413, - [6414] = 5298, - [6415] = 5236, - [6416] = 6416, - [6417] = 414, - [6418] = 1789, - [6419] = 1764, - [6420] = 1790, - [6421] = 369, - [6422] = 6422, - [6423] = 416, - [6424] = 417, - [6425] = 6425, + [6382] = 6137, + [6383] = 6152, + [6384] = 6075, + [6385] = 6076, + [6386] = 6386, + [6387] = 6081, + [6388] = 504, + [6389] = 6095, + [6390] = 6069, + [6391] = 6117, + [6392] = 6118, + [6393] = 6135, + [6394] = 6136, + [6395] = 6137, + [6396] = 6152, + [6397] = 6075, + [6398] = 6076, + [6399] = 6069, + [6400] = 6081, + [6401] = 6117, + [6402] = 6118, + [6403] = 6095, + [6404] = 6069, + [6405] = 6117, + [6406] = 6118, + [6407] = 6135, + [6408] = 6136, + [6409] = 6137, + [6410] = 6152, + [6411] = 6075, + [6412] = 6076, + [6413] = 6081, + [6414] = 6414, + [6415] = 6075, + [6416] = 6076, + [6417] = 6081, + [6418] = 6418, + [6419] = 6075, + [6420] = 6076, + [6421] = 6421, + [6422] = 6081, + [6423] = 528, + [6424] = 6075, + [6425] = 6076, [6426] = 6426, - [6427] = 5088, - [6428] = 1766, - [6429] = 1767, - [6430] = 5299, - [6431] = 6422, - [6432] = 153, - [6433] = 6433, - [6434] = 6434, - [6435] = 6276, - [6436] = 6277, - [6437] = 6426, - [6438] = 1727, - [6439] = 6439, - [6440] = 352, - [6441] = 1765, - [6442] = 382, + [6427] = 6081, + [6428] = 6428, + [6429] = 6075, + [6430] = 6076, + [6431] = 6081, + [6432] = 505, + [6433] = 6075, + [6434] = 6076, + [6435] = 6081, + [6436] = 6076, + [6437] = 6075, + [6438] = 6076, + [6439] = 6081, + [6440] = 6075, + [6441] = 6076, + [6442] = 6081, [6443] = 6443, - [6444] = 360, - [6445] = 6445, - [6446] = 444, - [6447] = 418, - [6448] = 445, - [6449] = 419, - [6450] = 6422, - [6451] = 6368, - [6452] = 6426, - [6453] = 6396, - [6454] = 6397, - [6455] = 6422, - [6456] = 6426, - [6457] = 1732, - [6458] = 6458, - [6459] = 6434, - [6460] = 6403, - [6461] = 6422, - [6462] = 6404, - [6463] = 6381, - [6464] = 6426, - [6465] = 6383, - [6466] = 6445, - [6467] = 6467, - [6468] = 6468, - [6469] = 150, - [6470] = 6422, - [6471] = 6412, - [6472] = 6413, - [6473] = 6426, - [6474] = 6357, - [6475] = 5245, - [6476] = 6422, - [6477] = 6477, - [6478] = 6422, - [6479] = 6425, - [6480] = 6434, - [6481] = 6426, - [6482] = 5181, - [6483] = 5191, - [6484] = 5194, - [6485] = 6485, - [6486] = 6422, - [6487] = 6426, - [6488] = 5056, - [6489] = 5199, - [6490] = 4977, + [6444] = 6075, + [6445] = 6076, + [6446] = 6081, + [6447] = 6447, + [6448] = 6075, + [6449] = 6076, + [6450] = 6081, + [6451] = 6075, + [6452] = 6076, + [6453] = 6081, + [6454] = 6075, + [6455] = 6076, + [6456] = 6081, + [6457] = 6075, + [6458] = 6076, + [6459] = 6081, + [6460] = 6075, + [6461] = 6076, + [6462] = 6081, + [6463] = 6075, + [6464] = 6076, + [6465] = 6081, + [6466] = 6075, + [6467] = 6076, + [6468] = 6081, + [6469] = 6075, + [6470] = 6076, + [6471] = 6081, + [6472] = 6076, + [6473] = 6081, + [6474] = 6076, + [6475] = 6081, + [6476] = 6076, + [6477] = 6081, + [6478] = 6076, + [6479] = 6081, + [6480] = 6076, + [6481] = 6081, + [6482] = 6075, + [6483] = 6483, + [6484] = 6484, + [6485] = 4734, + [6486] = 6157, + [6487] = 4737, + [6488] = 6488, + [6489] = 4754, + [6490] = 4755, [6491] = 6491, - [6492] = 6467, - [6493] = 6422, - [6494] = 1780, - [6495] = 2975, - [6496] = 6426, - [6497] = 6426, - [6498] = 6468, - [6499] = 6499, - [6500] = 5272, - [6501] = 1782, - [6502] = 6422, - [6503] = 6426, - [6504] = 368, - [6505] = 5202, - [6506] = 6108, - [6507] = 6422, - [6508] = 6508, - [6509] = 6426, - [6510] = 378, - [6511] = 156, - [6512] = 360, - [6513] = 6422, - [6514] = 6426, - [6515] = 5300, - [6516] = 157, - [6517] = 155, - [6518] = 153, - [6519] = 5203, - [6520] = 6422, - [6521] = 379, - [6522] = 354, - [6523] = 6426, - [6524] = 5301, - [6525] = 6422, - [6526] = 5151, - [6527] = 6426, - [6528] = 5302, - [6529] = 6529, - [6530] = 6412, - [6531] = 6296, - [6532] = 5155, - [6533] = 425, - [6534] = 426, - [6535] = 6535, - [6536] = 6422, - [6537] = 6297, - [6538] = 6434, - [6539] = 6364, - [6540] = 6540, - [6541] = 6426, - [6542] = 5204, - [6543] = 6413, - [6544] = 5205, - [6545] = 6047, + [6492] = 6492, + [6493] = 516, + [6494] = 6494, + [6495] = 517, + [6496] = 6496, + [6497] = 6149, + [6498] = 6498, + [6499] = 345, + [6500] = 529, + [6501] = 530, + [6502] = 6502, + [6503] = 6089, + [6504] = 529, + [6505] = 530, + [6506] = 1622, + [6507] = 6139, + [6508] = 472, + [6509] = 6150, + [6510] = 368, + [6511] = 6511, + [6512] = 6512, + [6513] = 6155, + [6514] = 6131, + [6515] = 6132, + [6516] = 6133, + [6517] = 6134, + [6518] = 6518, + [6519] = 6135, + [6520] = 6136, + [6521] = 6137, + [6522] = 3059, + [6523] = 6523, + [6524] = 6524, + [6525] = 1638, + [6526] = 4593, + [6527] = 4613, + [6528] = 4614, + [6529] = 4652, + [6530] = 4662, + [6531] = 4677, + [6532] = 529, + [6533] = 6533, + [6534] = 148, + [6535] = 530, + [6536] = 4678, + [6537] = 369, + [6538] = 6538, + [6539] = 6149, + [6540] = 6150, + [6541] = 6152, + [6542] = 6542, + [6543] = 1669, + [6544] = 3062, + [6545] = 6545, [6546] = 6546, - [6547] = 5211, - [6548] = 158, - [6549] = 421, - [6550] = 154, - [6551] = 401, - [6552] = 6535, - [6553] = 6553, - [6554] = 6529, - [6555] = 5153, - [6556] = 1705, - [6557] = 5112, - [6558] = 6416, - [6559] = 5213, - [6560] = 5274, - [6561] = 6561, - [6562] = 5138, - [6563] = 5309, - [6564] = 6396, - [6565] = 5144, - [6566] = 6566, - [6567] = 6397, - [6568] = 368, - [6569] = 402, - [6570] = 1731, - [6571] = 5145, - [6572] = 5148, - [6573] = 1629, - [6574] = 5310, - [6575] = 381, - [6576] = 6576, - [6577] = 6577, - [6578] = 368, - [6579] = 6445, - [6580] = 6467, - [6581] = 6468, - [6582] = 2015, - [6583] = 6425, - [6584] = 5277, - [6585] = 425, - [6586] = 1705, - [6587] = 6416, - [6588] = 6561, - [6589] = 369, - [6590] = 6561, - [6591] = 403, - [6592] = 6592, - [6593] = 158, - [6594] = 1618, - [6595] = 1731, - [6596] = 6596, - [6597] = 5150, - [6598] = 358, - [6599] = 6445, - [6600] = 6467, - [6601] = 6468, - [6602] = 6425, - [6603] = 6416, - [6604] = 6561, - [6605] = 6416, - [6606] = 6561, - [6607] = 6416, - [6608] = 6561, - [6609] = 6416, - [6610] = 6561, - [6611] = 6416, - [6612] = 6561, - [6613] = 6416, - [6614] = 6561, - [6615] = 6416, - [6616] = 6561, - [6617] = 6416, - [6618] = 6561, - [6619] = 6416, - [6620] = 6561, - [6621] = 6416, - [6622] = 6561, - [6623] = 5159, - [6624] = 6416, - [6625] = 6561, - [6626] = 6416, - [6627] = 6561, - [6628] = 6416, - [6629] = 6561, - [6630] = 6416, - [6631] = 6561, - [6632] = 6416, - [6633] = 6561, - [6634] = 6416, - [6635] = 6561, - [6636] = 449, - [6637] = 6477, - [6638] = 6499, - [6639] = 6553, - [6640] = 6592, - [6641] = 6508, - [6642] = 6596, - [6643] = 5160, - [6644] = 6403, - [6645] = 5161, - [6646] = 5152, - [6647] = 5231, - [6648] = 6404, - [6649] = 5234, - [6650] = 1973, - [6651] = 5162, - [6652] = 506, - [6653] = 154, - [6654] = 5165, - [6655] = 5235, - [6656] = 5140, - [6657] = 369, - [6658] = 5144, - [6659] = 6659, - [6660] = 6660, - [6661] = 6661, - [6662] = 6662, - [6663] = 6663, - [6664] = 6664, - [6665] = 6665, - [6666] = 533, - [6667] = 1629, - [6668] = 6668, + [6547] = 531, + [6548] = 6548, + [6549] = 6549, + [6550] = 6550, + [6551] = 6488, + [6552] = 1698, + [6553] = 5939, + [6554] = 6142, + [6555] = 4633, + [6556] = 6556, + [6557] = 4634, + [6558] = 4641, + [6559] = 4645, + [6560] = 4665, + [6561] = 4668, + [6562] = 4672, + [6563] = 6563, + [6564] = 6564, + [6565] = 4544, + [6566] = 6152, + [6567] = 4696, + [6568] = 487, + [6569] = 4700, + [6570] = 6075, + [6571] = 4716, + [6572] = 4726, + [6573] = 4745, + [6574] = 4747, + [6575] = 4750, + [6576] = 4752, + [6577] = 4756, + [6578] = 4757, + [6579] = 4767, + [6580] = 525, + [6581] = 4772, + [6582] = 4785, + [6583] = 4786, + [6584] = 4789, + [6585] = 6502, + [6586] = 3100, + [6587] = 6587, + [6588] = 4790, + [6589] = 4680, + [6590] = 4545, + [6591] = 6170, + [6592] = 6587, + [6593] = 6511, + [6594] = 6512, + [6595] = 6332, + [6596] = 6556, + [6597] = 4546, + [6598] = 147, + [6599] = 146, + [6600] = 527, + [6601] = 6587, + [6602] = 6511, + [6603] = 6512, + [6604] = 6332, + [6605] = 4548, + [6606] = 4550, + [6607] = 4552, + [6608] = 4556, + [6609] = 4564, + [6610] = 4566, + [6611] = 4569, + [6612] = 4576, + [6613] = 4596, + [6614] = 4600, + [6615] = 491, + [6616] = 492, + [6617] = 493, + [6618] = 6084, + [6619] = 4603, + [6620] = 6620, + [6621] = 6621, + [6622] = 6136, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6623, + [6627] = 6627, + [6628] = 6628, + [6629] = 6629, + [6630] = 603, + [6631] = 6631, + [6632] = 6632, + [6633] = 6633, + [6634] = 6624, + [6635] = 6426, + [6636] = 6636, + [6637] = 6637, + [6638] = 604, + [6639] = 6625, + [6640] = 6640, + [6641] = 6623, + [6642] = 6627, + [6643] = 239, + [6644] = 573, + [6645] = 6645, + [6646] = 2981, + [6647] = 6647, + [6648] = 4485, + [6649] = 6110, + [6650] = 6631, + [6651] = 6651, + [6652] = 6652, + [6653] = 6653, + [6654] = 6640, + [6655] = 6632, + [6656] = 5482, + [6657] = 6623, + [6658] = 6627, + [6659] = 6629, + [6660] = 6620, + [6661] = 6621, + [6662] = 6631, + [6663] = 6632, + [6664] = 6381, + [6665] = 6624, + [6666] = 3071, + [6667] = 4486, + [6668] = 6653, [6669] = 6669, - [6670] = 3230, - [6671] = 6671, - [6672] = 6662, - [6673] = 6673, - [6674] = 564, - [6675] = 160, - [6676] = 452, - [6677] = 1618, - [6678] = 6678, - [6679] = 159, - [6680] = 6662, - [6681] = 6681, - [6682] = 6682, - [6683] = 6683, - [6684] = 6684, - [6685] = 6685, - [6686] = 6686, - [6687] = 6687, - [6688] = 6660, - [6689] = 6663, - [6690] = 6659, - [6691] = 6691, - [6692] = 6692, - [6693] = 6693, - [6694] = 555, - [6695] = 6662, - [6696] = 6696, - [6697] = 6664, - [6698] = 537, - [6699] = 6699, - [6700] = 6700, - [6701] = 6701, - [6702] = 6702, - [6703] = 6671, - [6704] = 537, - [6705] = 5088, - [6706] = 5112, - [6707] = 561, - [6708] = 5132, - [6709] = 536, - [6710] = 6664, - [6711] = 5138, - [6712] = 6712, - [6713] = 6713, - [6714] = 5140, - [6715] = 6683, - [6716] = 6684, - [6717] = 6685, - [6718] = 6686, - [6719] = 6687, - [6720] = 6660, - [6721] = 6663, - [6722] = 6659, - [6723] = 6723, - [6724] = 6724, - [6725] = 6725, + [6670] = 6165, + [6671] = 5491, + [6672] = 657, + [6673] = 658, + [6674] = 1150, + [6675] = 528, + [6676] = 6201, + [6677] = 659, + [6678] = 660, + [6679] = 6645, + [6680] = 2630, + [6681] = 529, + [6682] = 662, + [6683] = 664, + [6684] = 665, + [6685] = 6653, + [6686] = 674, + [6687] = 6640, + [6688] = 6688, + [6689] = 6689, + [6690] = 6625, + [6691] = 6623, + [6692] = 6627, + [6693] = 646, + [6694] = 6629, + [6695] = 6183, + [6696] = 6631, + [6697] = 6632, + [6698] = 190, + [6699] = 6624, + [6700] = 6168, + [6701] = 6203, + [6702] = 6153, + [6703] = 653, + [6704] = 6704, + [6705] = 6205, + [6706] = 6706, + [6707] = 6128, + [6708] = 6708, + [6709] = 6645, + [6710] = 6143, + [6711] = 6144, + [6712] = 6653, + [6713] = 6146, + [6714] = 6640, + [6715] = 2983, + [6716] = 6542, + [6717] = 6625, + [6718] = 6623, + [6719] = 6627, + [6720] = 6720, + [6721] = 6629, + [6722] = 3179, + [6723] = 6631, + [6724] = 6632, + [6725] = 6624, [6726] = 6726, - [6727] = 6662, + [6727] = 6727, [6728] = 6728, - [6729] = 6664, - [6730] = 6730, - [6731] = 1629, - [6732] = 2746, - [6733] = 6733, - [6734] = 6671, - [6735] = 6735, - [6736] = 6671, - [6737] = 6737, - [6738] = 3220, - [6739] = 6671, - [6740] = 537, + [6729] = 6328, + [6730] = 6230, + [6731] = 609, + [6732] = 6633, + [6733] = 6645, + [6734] = 6151, + [6735] = 2613, + [6736] = 6154, + [6737] = 3007, + [6738] = 6738, + [6739] = 6653, + [6740] = 6640, [6741] = 6741, - [6742] = 3501, - [6743] = 6683, - [6744] = 6684, - [6745] = 6685, - [6746] = 6686, - [6747] = 6687, - [6748] = 6660, - [6749] = 6663, - [6750] = 6659, - [6751] = 3502, - [6752] = 6752, - [6753] = 6753, - [6754] = 6662, - [6755] = 6755, - [6756] = 6664, - [6757] = 6737, - [6758] = 6758, - [6759] = 6759, - [6760] = 549, - [6761] = 527, - [6762] = 6671, - [6763] = 6458, - [6764] = 6485, - [6765] = 378, - [6766] = 6766, + [6742] = 6742, + [6743] = 610, + [6744] = 6625, + [6745] = 6623, + [6746] = 6627, + [6747] = 6629, + [6748] = 654, + [6749] = 6631, + [6750] = 6632, + [6751] = 6647, + [6752] = 6624, + [6753] = 6629, + [6754] = 6329, + [6755] = 6631, + [6756] = 675, + [6757] = 6738, + [6758] = 6741, + [6759] = 6632, + [6760] = 6645, + [6761] = 6625, + [6762] = 6623, + [6763] = 6627, + [6764] = 605, + [6765] = 3184, + [6766] = 6653, [6767] = 6767, - [6768] = 6768, + [6768] = 6640, [6769] = 6769, - [6770] = 6669, - [6771] = 6771, - [6772] = 6772, - [6773] = 6683, - [6774] = 6684, - [6775] = 6685, - [6776] = 6686, - [6777] = 6687, - [6778] = 6660, - [6779] = 6663, - [6780] = 6659, - [6781] = 455, - [6782] = 456, + [6770] = 6625, + [6771] = 6623, + [6772] = 6627, + [6773] = 6629, + [6774] = 6324, + [6775] = 6631, + [6776] = 6632, + [6777] = 6777, + [6778] = 6624, + [6779] = 3186, + [6780] = 2663, + [6781] = 6645, + [6782] = 6625, [6783] = 6783, [6784] = 6784, - [6785] = 6662, + [6785] = 6785, [6786] = 6786, - [6787] = 6664, - [6788] = 6788, - [6789] = 500, - [6790] = 6687, + [6787] = 6627, + [6788] = 6645, + [6789] = 6789, + [6790] = 6161, [6791] = 6791, - [6792] = 6792, - [6793] = 6671, - [6794] = 6660, + [6792] = 6653, + [6793] = 6793, + [6794] = 6640, [6795] = 6795, - [6796] = 6796, - [6797] = 549, - [6798] = 6798, - [6799] = 6663, + [6796] = 6625, + [6797] = 6623, + [6798] = 6627, + [6799] = 6629, [6800] = 6800, - [6801] = 6801, - [6802] = 535, - [6803] = 6803, - [6804] = 6683, - [6805] = 6684, - [6806] = 6685, - [6807] = 6686, - [6808] = 6687, - [6809] = 6660, - [6810] = 6663, - [6811] = 6659, - [6812] = 3167, - [6813] = 358, - [6814] = 6814, - [6815] = 6815, - [6816] = 6662, - [6817] = 6817, - [6818] = 6664, - [6819] = 6683, - [6820] = 6820, - [6821] = 6821, - [6822] = 6671, - [6823] = 6684, - [6824] = 6685, - [6825] = 6825, - [6826] = 379, + [6801] = 6631, + [6802] = 6632, + [6803] = 529, + [6804] = 530, + [6805] = 6624, + [6806] = 6806, + [6807] = 2639, + [6808] = 6206, + [6809] = 6162, + [6810] = 2640, + [6811] = 6484, + [6812] = 6207, + [6813] = 674, + [6814] = 6645, + [6815] = 6248, + [6816] = 574, + [6817] = 613, + [6818] = 530, + [6819] = 6653, + [6820] = 6640, + [6821] = 6625, + [6822] = 6623, + [6823] = 6627, + [6824] = 6629, + [6825] = 6631, + [6826] = 6632, [6827] = 6827, - [6828] = 6686, - [6829] = 6687, - [6830] = 6683, - [6831] = 6684, - [6832] = 6685, - [6833] = 6686, - [6834] = 6687, - [6835] = 6660, - [6836] = 6663, - [6837] = 6659, - [6838] = 6768, - [6839] = 6660, - [6840] = 6840, - [6841] = 6662, - [6842] = 6663, - [6843] = 6664, - [6844] = 6659, - [6845] = 6845, - [6846] = 6846, - [6847] = 6671, - [6848] = 381, - [6849] = 555, - [6850] = 6850, - [6851] = 6851, + [6828] = 6624, + [6829] = 6645, + [6830] = 6163, + [6831] = 367, + [6832] = 6637, + [6833] = 3124, + [6834] = 3125, + [6835] = 614, + [6836] = 6645, + [6837] = 6327, + [6838] = 3126, + [6839] = 578, + [6840] = 6653, + [6841] = 6624, + [6842] = 6640, + [6843] = 6625, + [6844] = 6623, + [6845] = 6627, + [6846] = 6629, + [6847] = 528, + [6848] = 6631, + [6849] = 6632, + [6850] = 608, + [6851] = 6624, [6852] = 6852, - [6853] = 6683, - [6854] = 6684, - [6855] = 6685, - [6856] = 6686, - [6857] = 6687, - [6858] = 6660, - [6859] = 6663, - [6860] = 6659, - [6861] = 6861, - [6862] = 5115, - [6863] = 6662, - [6864] = 6664, - [6865] = 6865, - [6866] = 6866, - [6867] = 6867, - [6868] = 6671, - [6869] = 6869, - [6870] = 6870, - [6871] = 6871, + [6853] = 6091, + [6854] = 6854, + [6855] = 6855, + [6856] = 6645, + [6857] = 6653, + [6858] = 6633, + [6859] = 6640, + [6860] = 685, + [6861] = 6625, + [6862] = 6623, + [6863] = 6627, + [6864] = 6077, + [6865] = 6629, + [6866] = 366, + [6867] = 6631, + [6868] = 6632, + [6869] = 3059, + [6870] = 6624, + [6871] = 6204, [6872] = 6872, [6873] = 6873, - [6874] = 6683, - [6875] = 6684, - [6876] = 6685, - [6877] = 6686, - [6878] = 6687, - [6879] = 6660, - [6880] = 6663, - [6881] = 6659, - [6882] = 6766, - [6883] = 6820, - [6884] = 6662, - [6885] = 6664, - [6886] = 6886, - [6887] = 6671, - [6888] = 555, - [6889] = 6889, - [6890] = 379, - [6891] = 6683, - [6892] = 6684, - [6893] = 6685, - [6894] = 6686, - [6895] = 6687, - [6896] = 6660, - [6897] = 6663, - [6898] = 6659, - [6899] = 536, - [6900] = 6685, - [6901] = 6662, - [6902] = 6664, - [6903] = 5145, - [6904] = 6671, - [6905] = 6741, - [6906] = 6870, - [6907] = 549, - [6908] = 6683, - [6909] = 6684, - [6910] = 6685, - [6911] = 6686, - [6912] = 6687, - [6913] = 6660, - [6914] = 6663, - [6915] = 6659, - [6916] = 381, - [6917] = 6662, - [6918] = 6664, - [6919] = 5148, - [6920] = 6671, - [6921] = 6921, - [6922] = 2727, - [6923] = 527, - [6924] = 6683, - [6925] = 6684, - [6926] = 6685, - [6927] = 6686, - [6928] = 6687, - [6929] = 6660, - [6930] = 6663, - [6931] = 6659, - [6932] = 382, - [6933] = 6662, - [6934] = 6664, - [6935] = 5150, - [6936] = 6671, - [6937] = 6683, - [6938] = 6662, - [6939] = 6664, - [6940] = 5152, - [6941] = 6671, - [6942] = 2728, - [6943] = 6662, - [6944] = 6664, - [6945] = 5155, - [6946] = 6671, - [6947] = 382, - [6948] = 6662, - [6949] = 6664, - [6950] = 6671, - [6951] = 6687, - [6952] = 6662, - [6953] = 6664, - [6954] = 6671, - [6955] = 536, - [6956] = 6662, - [6957] = 6664, - [6958] = 6671, - [6959] = 6662, - [6960] = 6662, - [6961] = 6664, - [6962] = 6671, - [6963] = 6963, - [6964] = 6662, - [6965] = 6664, - [6966] = 6671, - [6967] = 6967, - [6968] = 6662, - [6969] = 6664, - [6970] = 6671, - [6971] = 6971, - [6972] = 6662, - [6973] = 6664, - [6974] = 6671, - [6975] = 6664, - [6976] = 6662, - [6977] = 6664, - [6978] = 6671, - [6979] = 6684, - [6980] = 6662, - [6981] = 6664, - [6982] = 6671, - [6983] = 6983, - [6984] = 6662, - [6985] = 6664, - [6986] = 6671, + [6874] = 6263, + [6875] = 6875, + [6876] = 6645, + [6877] = 6653, + [6878] = 3062, + [6879] = 6640, + [6880] = 368, + [6881] = 6881, + [6882] = 6625, + [6883] = 6623, + [6884] = 6627, + [6885] = 6629, + [6886] = 1622, + [6887] = 6887, + [6888] = 6631, + [6889] = 6632, + [6890] = 369, + [6891] = 6891, + [6892] = 6624, + [6893] = 6893, + [6894] = 6894, + [6895] = 6647, + [6896] = 647, + [6897] = 6897, + [6898] = 6640, + [6899] = 6899, + [6900] = 6625, + [6901] = 6623, + [6902] = 6627, + [6903] = 6727, + [6904] = 6629, + [6905] = 6281, + [6906] = 6631, + [6907] = 6632, + [6908] = 6624, + [6909] = 6786, + [6910] = 6910, + [6911] = 6777, + [6912] = 6899, + [6913] = 6629, + [6914] = 6784, + [6915] = 6640, + [6916] = 6652, + [6917] = 6625, + [6918] = 6623, + [6919] = 6627, + [6920] = 6629, + [6921] = 6800, + [6922] = 612, + [6923] = 6631, + [6924] = 6632, + [6925] = 6806, + [6926] = 6624, + [6927] = 6631, + [6928] = 3060, + [6929] = 6881, + [6930] = 6632, + [6931] = 6887, + [6932] = 6265, + [6933] = 6933, + [6934] = 6645, + [6935] = 6894, + [6936] = 3151, + [6937] = 3152, + [6938] = 6938, + [6939] = 3154, + [6940] = 6418, + [6941] = 6428, + [6942] = 6443, + [6943] = 6447, + [6944] = 6944, + [6945] = 3156, + [6946] = 6653, + [6947] = 6629, + [6948] = 6948, + [6949] = 355, + [6950] = 345, + [6951] = 6640, + [6952] = 6266, + [6953] = 2604, + [6954] = 6652, + [6955] = 6897, + [6956] = 6728, + [6957] = 352, + [6958] = 2605, + [6959] = 6098, + [6960] = 6960, + [6961] = 6100, + [6962] = 6103, + [6963] = 6524, + [6964] = 6252, + [6965] = 6101, + [6966] = 1590, + [6967] = 6742, + [6968] = 655, + [6969] = 6108, + [6970] = 673, + [6971] = 6645, + [6972] = 6563, + [6973] = 6973, + [6974] = 637, + [6975] = 6973, + [6976] = 6910, + [6977] = 615, + [6978] = 6640, + [6979] = 6873, + [6980] = 616, + [6981] = 6981, + [6982] = 6330, + [6983] = 617, + [6984] = 6652, + [6985] = 6985, + [6986] = 6986, [6987] = 6987, - [6988] = 6662, - [6989] = 6664, - [6990] = 6671, - [6991] = 6662, - [6992] = 6662, - [6993] = 6664, - [6994] = 6671, - [6995] = 6995, - [6996] = 6662, - [6997] = 6664, - [6998] = 6671, - [6999] = 6999, - [7000] = 6662, - [7001] = 6664, - [7002] = 6671, - [7003] = 7003, - [7004] = 6662, - [7005] = 6664, - [7006] = 6671, - [7007] = 7007, - [7008] = 6662, - [7009] = 6664, - [7010] = 6671, - [7011] = 6684, - [7012] = 6662, - [7013] = 6664, - [7014] = 6671, - [7015] = 527, - [7016] = 6662, - [7017] = 6664, - [7018] = 6671, - [7019] = 6671, - [7020] = 6662, - [7021] = 6664, - [7022] = 6671, - [7023] = 6660, - [7024] = 6662, - [7025] = 6664, - [7026] = 6663, - [7027] = 6662, - [7028] = 6664, - [7029] = 6671, - [7030] = 6662, - [7031] = 6664, - [7032] = 6671, - [7033] = 6662, - [7034] = 6664, - [7035] = 6671, - [7036] = 6662, - [7037] = 6664, - [7038] = 6671, - [7039] = 6664, - [7040] = 6671, - [7041] = 6664, - [7042] = 6671, - [7043] = 6664, - [7044] = 6671, - [7045] = 6664, - [7046] = 6662, - [7047] = 5156, - [7048] = 7048, - [7049] = 6685, - [7050] = 7050, - [7051] = 6673, - [7052] = 535, - [7053] = 7053, - [7054] = 6737, - [7055] = 1618, - [7056] = 7056, - [7057] = 3216, - [7058] = 6686, - [7059] = 7059, - [7060] = 548, - [7061] = 6766, - [7062] = 7062, - [7063] = 6788, - [7064] = 7064, - [7065] = 161, - [7066] = 7066, - [7067] = 3201, - [7068] = 7068, - [7069] = 6671, - [7070] = 7070, - [7071] = 7071, - [7072] = 7072, - [7073] = 7073, - [7074] = 7074, - [7075] = 6659, - [7076] = 7076, - [7077] = 6995, - [7078] = 7078, - [7079] = 5151, - [7080] = 3215, - [7081] = 7081, - [7082] = 7082, - [7083] = 7083, - [7084] = 7084, - [7085] = 6664, - [7086] = 6791, - [7087] = 5153, - [7088] = 7088, - [7089] = 7089, - [7090] = 533, - [7091] = 2749, - [7092] = 7092, - [7093] = 7093, - [7094] = 7094, - [7095] = 7095, - [7096] = 7096, - [7097] = 7097, - [7098] = 7098, + [6988] = 6491, + [6989] = 6708, + [6990] = 618, + [6991] = 6652, + [6992] = 6653, + [6993] = 6981, + [6994] = 6855, + [6995] = 6783, + [6996] = 6564, + [6997] = 6789, + [6998] = 6891, + [6999] = 6247, + [7000] = 6651, + [7001] = 6640, + [7002] = 527, + [7003] = 6494, + [7004] = 6624, + [7005] = 6986, + [7006] = 6633, + [7007] = 6164, + [7008] = 7008, + [7009] = 6625, + [7010] = 7010, + [7011] = 6623, + [7012] = 6627, + [7013] = 1698, + [7014] = 7014, + [7015] = 7015, + [7016] = 141, + [7017] = 672, + [7018] = 606, + [7019] = 7019, + [7020] = 7020, + [7021] = 6629, + [7022] = 6631, + [7023] = 6632, + [7024] = 619, + [7025] = 6742, + [7026] = 145, + [7027] = 6538, + [7028] = 6986, + [7029] = 607, + [7030] = 7030, + [7031] = 189, + [7032] = 6981, + [7033] = 144, + [7034] = 6783, + [7035] = 620, + [7036] = 6789, + [7037] = 6624, + [7038] = 6894, + [7039] = 6651, + [7040] = 656, + [7041] = 6653, + [7042] = 6897, + [7043] = 672, + [7044] = 621, + [7045] = 7045, + [7046] = 142, + [7047] = 3173, + [7048] = 622, + [7049] = 623, + [7050] = 4488, + [7051] = 4498, + [7052] = 601, + [7053] = 624, + [7054] = 6483, + [7055] = 636, + [7056] = 1638, + [7057] = 611, + [7058] = 6742, + [7059] = 6777, + [7060] = 7060, + [7061] = 6986, + [7062] = 6784, + [7063] = 6981, + [7064] = 6783, + [7065] = 6244, + [7066] = 6789, + [7067] = 6651, + [7068] = 6800, + [7069] = 6421, + [7070] = 6742, + [7071] = 6806, + [7072] = 6986, + [7073] = 1669, + [7074] = 6981, + [7075] = 6783, + [7076] = 6789, + [7077] = 6651, + [7078] = 6742, + [7079] = 531, + [7080] = 7080, + [7081] = 6986, + [7082] = 6881, + [7083] = 6981, + [7084] = 6783, + [7085] = 6887, + [7086] = 6789, + [7087] = 6651, + [7088] = 6742, + [7089] = 6986, + [7090] = 6496, + [7091] = 6104, + [7092] = 6981, + [7093] = 6783, + [7094] = 625, + [7095] = 6789, + [7096] = 6651, + [7097] = 6742, + [7098] = 626, [7099] = 7099, - [7100] = 7100, - [7101] = 6683, - [7102] = 6684, - [7103] = 550, - [7104] = 5159, - [7105] = 5160, - [7106] = 5161, - [7107] = 5162, - [7108] = 5165, - [7109] = 5168, - [7110] = 5171, - [7111] = 5174, - [7112] = 559, - [7113] = 560, - [7114] = 6685, - [7115] = 7115, - [7116] = 6686, - [7117] = 6687, - [7118] = 6660, - [7119] = 6663, - [7120] = 6659, - [7121] = 378, - [7122] = 6768, - [7123] = 7123, - [7124] = 7124, - [7125] = 3408, - [7126] = 3500, - [7127] = 7127, - [7128] = 6662, - [7129] = 6664, - [7130] = 1692, - [7131] = 7131, - [7132] = 6845, - [7133] = 549, - [7134] = 548, - [7135] = 378, - [7136] = 7136, - [7137] = 6683, + [7100] = 6986, + [7101] = 627, + [7102] = 6981, + [7103] = 6783, + [7104] = 6789, + [7105] = 6651, + [7106] = 6742, + [7107] = 628, + [7108] = 6986, + [7109] = 3100, + [7110] = 140, + [7111] = 6981, + [7112] = 6783, + [7113] = 6789, + [7114] = 6651, + [7115] = 6742, + [7116] = 7116, + [7117] = 6986, + [7118] = 6105, + [7119] = 3048, + [7120] = 6981, + [7121] = 6783, + [7122] = 6789, + [7123] = 6651, + [7124] = 6742, + [7125] = 6545, + [7126] = 6986, + [7127] = 6981, + [7128] = 6783, + [7129] = 6789, + [7130] = 6651, + [7131] = 6742, + [7132] = 7132, + [7133] = 6986, + [7134] = 6872, + [7135] = 6546, + [7136] = 6981, + [7137] = 6783, [7138] = 7138, - [7139] = 555, - [7140] = 7140, - [7141] = 160, - [7142] = 159, - [7143] = 536, - [7144] = 6850, - [7145] = 7145, - [7146] = 7146, - [7147] = 6671, - [7148] = 3387, - [7149] = 7149, - [7150] = 379, - [7151] = 7151, - [7152] = 7152, - [7153] = 6662, - [7154] = 6662, - [7155] = 7155, - [7156] = 7156, - [7157] = 7157, - [7158] = 7158, - [7159] = 6659, - [7160] = 7160, - [7161] = 5181, - [7162] = 7162, - [7163] = 7163, - [7164] = 3388, - [7165] = 7165, - [7166] = 7166, - [7167] = 381, - [7168] = 7076, - [7169] = 6663, - [7170] = 368, - [7171] = 6683, - [7172] = 7172, - [7173] = 7173, - [7174] = 7174, - [7175] = 217, - [7176] = 382, - [7177] = 6684, - [7178] = 5191, - [7179] = 6685, - [7180] = 6686, - [7181] = 7181, - [7182] = 6687, - [7183] = 6660, - [7184] = 6663, - [7185] = 554, - [7186] = 6659, - [7187] = 7187, - [7188] = 7188, - [7189] = 7189, - [7190] = 5194, - [7191] = 6845, - [7192] = 5199, - [7193] = 6683, - [7194] = 5202, - [7195] = 5203, - [7196] = 1705, - [7197] = 5204, - [7198] = 5205, - [7199] = 6662, - [7200] = 7200, - [7201] = 1731, - [7202] = 360, - [7203] = 5211, - [7204] = 5213, - [7205] = 5231, - [7206] = 6664, + [7139] = 6789, + [7140] = 6651, + [7141] = 6742, + [7142] = 648, + [7143] = 6548, + [7144] = 6986, + [7145] = 6549, + [7146] = 629, + [7147] = 6981, + [7148] = 6783, + [7149] = 143, + [7150] = 6789, + [7151] = 6651, + [7152] = 6742, + [7153] = 6986, + [7154] = 6550, + [7155] = 6981, + [7156] = 6783, + [7157] = 6789, + [7158] = 6651, + [7159] = 6742, + [7160] = 6986, + [7161] = 6981, + [7162] = 6783, + [7163] = 645, + [7164] = 6789, + [7165] = 6651, + [7166] = 6742, + [7167] = 6986, + [7168] = 7168, + [7169] = 6981, + [7170] = 6783, + [7171] = 6533, + [7172] = 6789, + [7173] = 6651, + [7174] = 6742, + [7175] = 6986, + [7176] = 7176, + [7177] = 6981, + [7178] = 6783, + [7179] = 6307, + [7180] = 6789, + [7181] = 6651, + [7182] = 6275, + [7183] = 531, + [7184] = 6200, + [7185] = 6106, + [7186] = 649, + [7187] = 6107, + [7188] = 602, + [7189] = 6645, + [7190] = 638, + [7191] = 1638, + [7192] = 651, + [7193] = 6875, + [7194] = 7194, + [7195] = 7195, + [7196] = 639, + [7197] = 652, + [7198] = 6652, + [7199] = 7199, + [7200] = 6653, + [7201] = 6640, + [7202] = 6625, + [7203] = 7203, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, [7207] = 7207, - [7208] = 5234, - [7209] = 5235, - [7210] = 5236, - [7211] = 7211, - [7212] = 7212, - [7213] = 5245, - [7214] = 5250, - [7215] = 5252, - [7216] = 561, + [7208] = 7208, + [7209] = 1698, + [7210] = 7210, + [7211] = 6767, + [7212] = 2110, + [7213] = 7213, + [7214] = 4395, + [7215] = 1669, + [7216] = 7216, [7217] = 7217, - [7218] = 5270, - [7219] = 5271, - [7220] = 5272, - [7221] = 7221, - [7222] = 6671, - [7223] = 5274, - [7224] = 5277, - [7225] = 5280, - [7226] = 6686, - [7227] = 6659, - [7228] = 5289, - [7229] = 5297, - [7230] = 5298, - [7231] = 7231, + [7218] = 4644, + [7219] = 7219, + [7220] = 7220, + [7221] = 7208, + [7222] = 644, + [7223] = 7223, + [7224] = 7224, + [7225] = 7225, + [7226] = 7226, + [7227] = 7227, + [7228] = 7228, + [7229] = 684, + [7230] = 7230, + [7231] = 7206, [7232] = 7232, - [7233] = 5299, - [7234] = 5300, - [7235] = 5301, - [7236] = 6801, - [7237] = 7237, - [7238] = 5302, - [7239] = 5309, - [7240] = 5310, - [7241] = 6788, - [7242] = 7242, - [7243] = 2745, + [7233] = 7208, + [7234] = 2106, + [7235] = 3233, + [7236] = 7236, + [7237] = 7224, + [7238] = 3243, + [7239] = 4575, + [7240] = 191, + [7241] = 7241, + [7242] = 7236, + [7243] = 7243, [7244] = 7244, - [7245] = 1692, - [7246] = 537, - [7247] = 7247, - [7248] = 6683, - [7249] = 6684, - [7250] = 6685, - [7251] = 6686, - [7252] = 6687, - [7253] = 6660, - [7254] = 6663, - [7255] = 6659, - [7256] = 6687, - [7257] = 6662, + [7245] = 3100, + [7246] = 7246, + [7247] = 531, + [7248] = 7248, + [7249] = 7249, + [7250] = 7250, + [7251] = 2086, + [7252] = 7252, + [7253] = 7208, + [7254] = 7254, + [7255] = 7208, + [7256] = 7256, + [7257] = 147, [7258] = 7258, - [7259] = 7259, - [7260] = 6820, - [7261] = 6870, - [7262] = 6662, - [7263] = 6684, + [7259] = 7216, + [7260] = 7260, + [7261] = 7206, + [7262] = 676, + [7263] = 7263, [7264] = 7264, - [7265] = 6664, - [7266] = 7266, + [7265] = 7265, + [7266] = 7210, [7267] = 7267, - [7268] = 6685, - [7269] = 6686, - [7270] = 450, + [7268] = 7206, + [7269] = 7269, + [7270] = 7270, [7271] = 7271, [7272] = 7272, - [7273] = 7273, + [7273] = 7256, [7274] = 7274, - [7275] = 7212, - [7276] = 7181, - [7277] = 7050, - [7278] = 7165, - [7279] = 6850, - [7280] = 7280, - [7281] = 7272, - [7282] = 369, - [7283] = 6671, - [7284] = 161, - [7285] = 6439, - [7286] = 7272, - [7287] = 7212, - [7288] = 7181, - [7289] = 7050, - [7290] = 7290, - [7291] = 7291, - [7292] = 6671, - [7293] = 6795, - [7294] = 554, - [7295] = 547, - [7296] = 557, - [7297] = 6664, - [7298] = 6683, - [7299] = 558, - [7300] = 6684, - [7301] = 6685, - [7302] = 2751, - [7303] = 6686, - [7304] = 7274, - [7305] = 2748, - [7306] = 6687, - [7307] = 7307, - [7308] = 7053, - [7309] = 6660, - [7310] = 6671, - [7311] = 677, - [7312] = 5029, - [7313] = 6792, - [7314] = 360, - [7315] = 7315, - [7316] = 6796, + [7275] = 7275, + [7276] = 677, + [7277] = 680, + [7278] = 7274, + [7279] = 7279, + [7280] = 7219, + [7281] = 7206, + [7282] = 682, + [7283] = 7279, + [7284] = 681, + [7285] = 7204, + [7286] = 7286, + [7287] = 7210, + [7288] = 366, + [7289] = 7219, + [7290] = 7219, + [7291] = 7219, + [7292] = 7292, + [7293] = 7293, + [7294] = 7213, + [7295] = 7295, + [7296] = 7279, + [7297] = 7204, + [7298] = 527, + [7299] = 7299, + [7300] = 7228, + [7301] = 7232, + [7302] = 531, + [7303] = 7303, + [7304] = 7304, + [7305] = 7279, + [7306] = 7279, + [7307] = 4473, + [7308] = 7204, + [7309] = 7204, + [7310] = 7310, + [7311] = 148, + [7312] = 7216, + [7313] = 7313, + [7314] = 146, + [7315] = 7256, + [7316] = 7316, [7317] = 7317, - [7318] = 675, - [7319] = 7319, - [7320] = 555, + [7318] = 2081, + [7319] = 7274, + [7320] = 7204, [7321] = 7321, - [7322] = 7322, - [7323] = 6889, - [7324] = 636, - [7325] = 7325, - [7326] = 536, - [7327] = 6798, + [7322] = 7279, + [7323] = 7272, + [7324] = 7265, + [7325] = 7208, + [7326] = 3071, + [7327] = 7327, [7328] = 7328, - [7329] = 7329, - [7330] = 7330, - [7331] = 7062, + [7329] = 7210, + [7330] = 528, + [7331] = 7331, [7332] = 7332, - [7333] = 631, - [7334] = 7334, + [7333] = 7228, + [7334] = 7206, [7335] = 7335, - [7336] = 624, - [7337] = 632, - [7338] = 7338, - [7339] = 633, - [7340] = 670, - [7341] = 7341, - [7342] = 6800, - [7343] = 7343, - [7344] = 6803, - [7345] = 7315, - [7346] = 7200, - [7347] = 7321, - [7348] = 7321, - [7349] = 7322, - [7350] = 7325, - [7351] = 6814, - [7352] = 7352, - [7353] = 7328, - [7354] = 7329, - [7355] = 7330, - [7356] = 7356, - [7357] = 7332, - [7358] = 7334, - [7359] = 7335, - [7360] = 7360, - [7361] = 7338, - [7362] = 7362, - [7363] = 7363, - [7364] = 6815, - [7365] = 7365, - [7366] = 7366, - [7367] = 7367, - [7368] = 6817, - [7369] = 6821, - [7370] = 7123, - [7371] = 7315, - [7372] = 634, - [7373] = 6693, - [7374] = 7140, - [7375] = 7152, - [7376] = 7155, - [7377] = 7156, - [7378] = 7322, - [7379] = 7328, - [7380] = 7325, - [7381] = 7157, - [7382] = 7328, - [7383] = 7329, - [7384] = 7330, - [7385] = 7332, - [7386] = 623, - [7387] = 7334, - [7388] = 7335, - [7389] = 7315, - [7390] = 7338, - [7391] = 7158, - [7392] = 7160, - [7393] = 6825, - [7394] = 3220, - [7395] = 7056, - [7396] = 7315, - [7397] = 378, - [7398] = 7066, - [7399] = 3216, - [7400] = 635, - [7401] = 7322, - [7402] = 6827, - [7403] = 7325, - [7404] = 7328, - [7405] = 7329, - [7406] = 7330, - [7407] = 7332, - [7408] = 7334, - [7409] = 7335, - [7410] = 7338, - [7411] = 7411, + [7336] = 368, + [7337] = 7337, + [7338] = 7232, + [7339] = 2109, + [7340] = 3059, + [7341] = 3048, + [7342] = 7244, + [7343] = 1726, + [7344] = 7213, + [7345] = 3062, + [7346] = 7263, + [7347] = 7241, + [7348] = 7348, + [7349] = 1638, + [7350] = 367, + [7351] = 7337, + [7352] = 7328, + [7353] = 7258, + [7354] = 7270, + [7355] = 7271, + [7356] = 369, + [7357] = 529, + [7358] = 530, + [7359] = 7228, + [7360] = 7219, + [7361] = 7207, + [7362] = 7256, + [7363] = 7216, + [7364] = 2105, + [7365] = 7232, + [7366] = 7217, + [7367] = 7274, + [7368] = 7254, + [7369] = 7216, + [7370] = 7370, + [7371] = 7371, + [7372] = 7372, + [7373] = 7373, + [7374] = 7374, + [7375] = 7375, + [7376] = 7376, + [7377] = 7377, + [7378] = 7378, + [7379] = 7379, + [7380] = 7380, + [7381] = 7381, + [7382] = 7382, + [7383] = 7383, + [7384] = 7384, + [7385] = 7376, + [7386] = 7386, + [7387] = 7371, + [7388] = 7380, + [7389] = 7389, + [7390] = 7390, + [7391] = 7303, + [7392] = 7392, + [7393] = 7374, + [7394] = 7394, + [7395] = 7374, + [7396] = 7374, + [7397] = 7376, + [7398] = 7398, + [7399] = 7399, + [7400] = 7394, + [7401] = 7394, + [7402] = 7402, + [7403] = 7403, + [7404] = 7404, + [7405] = 7405, + [7406] = 7406, + [7407] = 7407, + [7408] = 7408, + [7409] = 7374, + [7410] = 7405, + [7411] = 7381, [7412] = 7412, - [7413] = 3278, - [7414] = 7414, - [7415] = 379, - [7416] = 7244, - [7417] = 3148, - [7418] = 6713, - [7419] = 7315, - [7420] = 3100, - [7421] = 7421, - [7422] = 608, - [7423] = 7338, - [7424] = 654, - [7425] = 381, - [7426] = 669, - [7427] = 7322, - [7428] = 382, - [7429] = 645, - [7430] = 7325, - [7431] = 6851, - [7432] = 6852, - [7433] = 6733, - [7434] = 7328, - [7435] = 7329, - [7436] = 7330, - [7437] = 7081, - [7438] = 7332, - [7439] = 7334, - [7440] = 7335, - [7441] = 7338, - [7442] = 6771, - [7443] = 7321, - [7444] = 369, - [7445] = 7445, - [7446] = 7446, - [7447] = 678, - [7448] = 7315, - [7449] = 7068, - [7450] = 679, - [7451] = 7451, - [7452] = 7322, - [7453] = 7453, - [7454] = 7322, - [7455] = 7070, - [7456] = 7456, - [7457] = 7325, + [7413] = 7413, + [7414] = 7407, + [7415] = 7415, + [7416] = 7416, + [7417] = 7415, + [7418] = 7382, + [7419] = 7419, + [7420] = 7383, + [7421] = 7377, + [7422] = 7392, + [7423] = 499, + [7424] = 7404, + [7425] = 7405, + [7426] = 7376, + [7427] = 7383, + [7428] = 7407, + [7429] = 7429, + [7430] = 7416, + [7431] = 7431, + [7432] = 7415, + [7433] = 7433, + [7434] = 7381, + [7435] = 7382, + [7436] = 7383, + [7437] = 7437, + [7438] = 7438, + [7439] = 7405, + [7440] = 7440, + [7441] = 7441, + [7442] = 7407, + [7443] = 7376, + [7444] = 7444, + [7445] = 7404, + [7446] = 7405, + [7447] = 7407, + [7448] = 7448, + [7449] = 7416, + [7450] = 7450, + [7451] = 7398, + [7452] = 7452, + [7453] = 7374, + [7454] = 7415, + [7455] = 7455, + [7456] = 7374, + [7457] = 7405, [7458] = 7458, - [7459] = 691, - [7460] = 7328, - [7461] = 7329, - [7462] = 7330, - [7463] = 7071, - [7464] = 7332, - [7465] = 7334, - [7466] = 7335, - [7467] = 7338, - [7468] = 6840, - [7469] = 2746, - [7470] = 652, - [7471] = 7232, - [7472] = 7315, - [7473] = 6861, - [7474] = 7474, - [7475] = 7352, - [7476] = 7322, - [7477] = 527, - [7478] = 7325, - [7479] = 687, - [7480] = 7280, - [7481] = 7328, - [7482] = 7329, - [7483] = 7330, - [7484] = 7332, - [7485] = 7334, - [7486] = 7335, + [7459] = 7394, + [7460] = 7381, + [7461] = 7404, + [7462] = 7386, + [7463] = 7383, + [7464] = 7382, + [7465] = 7383, + [7466] = 7374, + [7467] = 7370, + [7468] = 7468, + [7469] = 7406, + [7470] = 7470, + [7471] = 7374, + [7472] = 7472, + [7473] = 7473, + [7474] = 7384, + [7475] = 7394, + [7476] = 7404, + [7477] = 7376, + [7478] = 7379, + [7479] = 7394, + [7480] = 7405, + [7481] = 7408, + [7482] = 7482, + [7483] = 7405, + [7484] = 7382, + [7485] = 7407, + [7486] = 7407, [7487] = 7487, - [7488] = 7338, - [7489] = 7072, - [7490] = 7073, - [7491] = 7491, - [7492] = 7145, - [7493] = 7315, - [7494] = 7315, - [7495] = 7495, + [7488] = 7376, + [7489] = 7374, + [7490] = 7405, + [7491] = 7374, + [7492] = 7416, + [7493] = 7383, + [7494] = 7415, + [7495] = 7394, [7496] = 7496, - [7497] = 7325, - [7498] = 7322, - [7499] = 7291, - [7500] = 7325, - [7501] = 537, - [7502] = 7328, - [7503] = 7329, - [7504] = 7330, + [7497] = 7404, + [7498] = 7402, + [7499] = 7405, + [7500] = 7407, + [7501] = 7416, + [7502] = 7415, + [7503] = 7503, + [7504] = 7504, [7505] = 7505, - [7506] = 7332, - [7507] = 5694, - [7508] = 7334, - [7509] = 7335, - [7510] = 7510, - [7511] = 7338, - [7512] = 3288, - [7513] = 3289, - [7514] = 7207, - [7515] = 6692, - [7516] = 6699, - [7517] = 7237, - [7518] = 7242, - [7519] = 7074, - [7520] = 7315, - [7521] = 7321, - [7522] = 7322, - [7523] = 7325, - [7524] = 7322, - [7525] = 7328, - [7526] = 7329, - [7527] = 7330, - [7528] = 7247, - [7529] = 7332, - [7530] = 687, - [7531] = 7334, - [7532] = 7335, - [7533] = 7325, - [7534] = 7534, - [7535] = 7338, - [7536] = 7082, - [7537] = 658, - [7538] = 3290, - [7539] = 3269, - [7540] = 3270, - [7541] = 7258, - [7542] = 7315, - [7543] = 3271, - [7544] = 7083, - [7545] = 7149, - [7546] = 7322, - [7547] = 3273, - [7548] = 7325, - [7549] = 655, - [7550] = 7328, - [7551] = 7329, - [7552] = 7330, - [7553] = 2745, - [7554] = 7332, - [7555] = 7555, - [7556] = 7334, - [7557] = 7335, - [7558] = 7259, - [7559] = 7338, - [7560] = 656, - [7561] = 657, - [7562] = 7562, - [7563] = 7356, - [7564] = 3167, - [7565] = 637, - [7566] = 638, - [7567] = 639, - [7568] = 7315, - [7569] = 7084, - [7570] = 7088, - [7571] = 7089, - [7572] = 7322, - [7573] = 7092, - [7574] = 7325, - [7575] = 7093, - [7576] = 7328, - [7577] = 7329, - [7578] = 7330, - [7579] = 7332, - [7580] = 5695, - [7581] = 7334, - [7582] = 7335, - [7583] = 7338, - [7584] = 7584, - [7585] = 1692, - [7586] = 7094, - [7587] = 7329, - [7588] = 6886, - [7589] = 7328, - [7590] = 7329, - [7591] = 7330, - [7592] = 7325, - [7593] = 7367, - [7594] = 7095, - [7595] = 7328, - [7596] = 7329, - [7597] = 7330, - [7598] = 7332, - [7599] = 7096, - [7600] = 7334, - [7601] = 7335, - [7602] = 6712, - [7603] = 7338, - [7604] = 7097, - [7605] = 7325, - [7606] = 7328, - [7607] = 7329, - [7608] = 7330, - [7609] = 7332, - [7610] = 7098, - [7611] = 7334, - [7612] = 7335, - [7613] = 7613, - [7614] = 6725, - [7615] = 7338, - [7616] = 6702, - [7617] = 549, - [7618] = 203, - [7619] = 7099, - [7620] = 7325, - [7621] = 7100, - [7622] = 7328, - [7623] = 7329, - [7624] = 7330, - [7625] = 7332, - [7626] = 7264, - [7627] = 7334, - [7628] = 7335, - [7629] = 6723, - [7630] = 7338, - [7631] = 555, - [7632] = 536, - [7633] = 7505, + [7506] = 7503, + [7507] = 7507, + [7508] = 498, + [7509] = 7404, + [7510] = 7458, + [7511] = 7472, + [7512] = 7455, + [7513] = 7472, + [7514] = 7394, + [7515] = 7458, + [7516] = 7381, + [7517] = 7382, + [7518] = 7383, + [7519] = 7408, + [7520] = 499, + [7521] = 7374, + [7522] = 7398, + [7523] = 7523, + [7524] = 7524, + [7525] = 7374, + [7526] = 7416, + [7527] = 7416, + [7528] = 7383, + [7529] = 7376, + [7530] = 7383, + [7531] = 7415, + [7532] = 7376, + [7533] = 7455, + [7534] = 7374, + [7535] = 7458, + [7536] = 7536, + [7537] = 7537, + [7538] = 7538, + [7539] = 7383, + [7540] = 7381, + [7541] = 7405, + [7542] = 7404, + [7543] = 7374, + [7544] = 7544, + [7545] = 7392, + [7546] = 7383, + [7547] = 7415, + [7548] = 7455, + [7549] = 7458, + [7550] = 7381, + [7551] = 7382, + [7552] = 7374, + [7553] = 7431, + [7554] = 7383, + [7555] = 7383, + [7556] = 7556, + [7557] = 7382, + [7558] = 7374, + [7559] = 7383, + [7560] = 7374, + [7561] = 7381, + [7562] = 7455, + [7563] = 7458, + [7564] = 7403, + [7565] = 7379, + [7566] = 7566, + [7567] = 7374, + [7568] = 7416, + [7569] = 7394, + [7570] = 7404, + [7571] = 7571, + [7572] = 7374, + [7573] = 7405, + [7574] = 7455, + [7575] = 7455, + [7576] = 7458, + [7577] = 7407, + [7578] = 7413, + [7579] = 7374, + [7580] = 7472, + [7581] = 7581, + [7582] = 7370, + [7583] = 7403, + [7584] = 499, + [7585] = 7374, + [7586] = 7416, + [7587] = 7473, + [7588] = 7455, + [7589] = 7415, + [7590] = 7415, + [7591] = 7374, + [7592] = 7374, + [7593] = 7406, + [7594] = 7394, + [7595] = 7595, + [7596] = 7405, + [7597] = 7374, + [7598] = 7598, + [7599] = 7472, + [7600] = 7600, + [7601] = 7455, + [7602] = 7458, + [7603] = 7603, + [7604] = 7374, + [7605] = 7605, + [7606] = 7606, + [7607] = 7407, + [7608] = 7608, + [7609] = 7374, + [7610] = 7416, + [7611] = 7415, + [7612] = 7415, + [7613] = 7377, + [7614] = 7455, + [7615] = 7458, + [7616] = 7374, + [7617] = 7413, + [7618] = 7618, + [7619] = 7406, + [7620] = 7406, + [7621] = 7412, + [7622] = 7374, + [7623] = 7382, + [7624] = 7403, + [7625] = 7472, + [7626] = 7383, + [7627] = 7455, + [7628] = 7458, + [7629] = 7374, + [7630] = 7381, + [7631] = 7382, + [7632] = 7632, + [7633] = 7374, [7634] = 7634, - [7635] = 7271, - [7636] = 3230, - [7637] = 7637, - [7638] = 7534, - [7639] = 7584, - [7640] = 7332, - [7641] = 7334, - [7642] = 7335, - [7643] = 7341, - [7644] = 7343, - [7645] = 7124, - [7646] = 5032, - [7647] = 622, - [7648] = 7648, - [7649] = 7319, - [7650] = 7211, - [7651] = 7328, - [7652] = 7329, - [7653] = 6700, - [7654] = 6701, - [7655] = 7330, - [7656] = 7315, - [7657] = 6872, + [7635] = 7383, + [7636] = 7374, + [7637] = 7374, + [7638] = 7377, + [7639] = 7374, + [7640] = 7455, + [7641] = 7458, + [7642] = 7642, + [7643] = 7403, + [7644] = 7374, + [7645] = 7376, + [7646] = 7646, + [7647] = 7374, + [7648] = 7389, + [7649] = 7394, + [7650] = 7374, + [7651] = 7581, + [7652] = 7455, + [7653] = 7455, + [7654] = 7458, + [7655] = 7376, + [7656] = 7656, + [7657] = 7404, [7658] = 7658, - [7659] = 7659, - [7660] = 7231, - [7661] = 549, - [7662] = 7662, - [7663] = 527, - [7664] = 7664, - [7665] = 6753, - [7666] = 7666, - [7667] = 7667, - [7668] = 2748, - [7669] = 6873, - [7670] = 7670, - [7671] = 6866, - [7672] = 7338, - [7673] = 6661, - [7674] = 7674, - [7675] = 7675, - [7676] = 666, - [7677] = 2749, - [7678] = 7138, - [7679] = 7078, - [7680] = 6726, - [7681] = 7146, - [7682] = 6724, - [7683] = 6730, - [7684] = 3201, - [7685] = 7131, - [7686] = 6755, - [7687] = 6758, - [7688] = 648, - [7689] = 6759, - [7690] = 7495, - [7691] = 7691, - [7692] = 7692, - [7693] = 7341, - [7694] = 7048, - [7695] = 7343, - [7696] = 3215, - [7697] = 6999, - [7698] = 2727, - [7699] = 2728, - [7700] = 6921, - [7701] = 7701, - [7702] = 611, - [7703] = 612, - [7704] = 1618, - [7705] = 6728, - [7706] = 1692, - [7707] = 6678, - [7708] = 7059, - [7709] = 613, - [7710] = 7496, - [7711] = 614, - [7712] = 615, - [7713] = 7352, - [7714] = 7356, - [7715] = 7637, - [7716] = 7716, - [7717] = 7360, - [7718] = 616, - [7719] = 7719, - [7720] = 7363, - [7721] = 7360, - [7722] = 7722, - [7723] = 7723, - [7724] = 7322, - [7725] = 7325, - [7726] = 7726, - [7727] = 7365, - [7728] = 7367, - [7729] = 7716, - [7730] = 1705, - [7731] = 7719, - [7732] = 7534, - [7733] = 6752, - [7734] = 7734, + [7659] = 7606, + [7660] = 7658, + [7661] = 7381, + [7662] = 7458, + [7663] = 7455, + [7664] = 7458, + [7665] = 7381, + [7666] = 7384, + [7667] = 7581, + [7668] = 7405, + [7669] = 7407, + [7670] = 7382, + [7671] = 7383, + [7672] = 7406, + [7673] = 7455, + [7674] = 7382, + [7675] = 7383, + [7676] = 7416, + [7677] = 7618, + [7678] = 7482, + [7679] = 7415, + [7680] = 7394, + [7681] = 7681, + [7682] = 7455, + [7683] = 7473, + [7684] = 7684, + [7685] = 7381, + [7686] = 498, + [7687] = 7376, + [7688] = 7390, + [7689] = 7370, + [7690] = 7376, + [7691] = 7455, + [7692] = 7455, + [7693] = 7455, + [7694] = 7455, + [7695] = 7455, + [7696] = 7455, + [7697] = 7455, + [7698] = 7455, + [7699] = 7455, + [7700] = 7455, + [7701] = 7455, + [7702] = 7455, + [7703] = 7455, + [7704] = 7455, + [7705] = 7455, + [7706] = 7455, + [7707] = 7455, + [7708] = 7455, + [7709] = 7455, + [7710] = 7455, + [7711] = 7455, + [7712] = 7455, + [7713] = 7403, + [7714] = 7714, + [7715] = 7472, + [7716] = 7374, + [7717] = 7581, + [7718] = 7386, + [7719] = 7392, + [7720] = 7403, + [7721] = 7404, + [7722] = 7407, + [7723] = 7452, + [7724] = 7406, + [7725] = 7394, + [7726] = 7404, + [7727] = 7727, + [7728] = 7384, + [7729] = 7405, + [7730] = 7407, + [7731] = 7416, + [7732] = 7415, + [7733] = 7603, + [7734] = 498, [7735] = 7735, - [7736] = 6971, - [7737] = 7411, - [7738] = 6681, - [7739] = 7332, - [7740] = 6963, - [7741] = 7187, - [7742] = 7334, - [7743] = 7734, - [7744] = 7335, - [7745] = 7634, - [7746] = 7746, - [7747] = 7007, - [7748] = 7334, - [7749] = 668, - [7750] = 7151, - [7751] = 649, - [7752] = 7217, - [7753] = 7363, - [7754] = 3283, - [7755] = 7453, + [7736] = 7384, + [7737] = 7375, + [7738] = 7374, + [7739] = 7394, + [7740] = 7405, + [7741] = 7407, + [7742] = 7472, + [7743] = 7406, + [7744] = 7415, + [7745] = 7603, + [7746] = 7598, + [7747] = 7405, + [7748] = 7748, + [7749] = 7473, + [7750] = 7407, + [7751] = 7603, + [7752] = 7714, + [7753] = 7603, + [7754] = 7606, + [7755] = 7381, [7756] = 7756, - [7757] = 7757, - [7758] = 3284, - [7759] = 7335, - [7760] = 7760, - [7761] = 7761, - [7762] = 7162, - [7763] = 7221, - [7764] = 617, - [7765] = 537, - [7766] = 7756, - [7767] = 7767, + [7757] = 7382, + [7758] = 7383, + [7759] = 7496, + [7760] = 7403, + [7761] = 7681, + [7762] = 7406, + [7763] = 7370, + [7764] = 7383, + [7765] = 7537, + [7766] = 7416, + [7767] = 7458, [7768] = 7768, - [7769] = 618, - [7770] = 619, - [7771] = 7735, - [7772] = 620, - [7773] = 7330, - [7774] = 7166, - [7775] = 4993, - [7776] = 1629, - [7777] = 6869, - [7778] = 3285, - [7779] = 1618, - [7780] = 6682, - [7781] = 7781, - [7782] = 2751, - [7783] = 4994, - [7784] = 1731, - [7785] = 7785, - [7786] = 7786, - [7787] = 7064, - [7788] = 690, - [7789] = 7365, - [7790] = 7315, - [7791] = 7701, - [7792] = 7716, - [7793] = 7793, - [7794] = 1692, - [7795] = 7734, - [7796] = 7453, - [7797] = 7757, - [7798] = 7798, - [7799] = 7321, - [7800] = 7756, - [7801] = 7801, - [7802] = 7723, - [7803] = 537, - [7804] = 7322, - [7805] = 555, - [7806] = 7757, - [7807] = 7325, - [7808] = 1629, - [7809] = 3147, - [7810] = 368, - [7811] = 7584, - [7812] = 6691, - [7813] = 7328, - [7814] = 7329, - [7815] = 7330, - [7816] = 7701, - [7817] = 7332, - [7818] = 7716, - [7819] = 7334, - [7820] = 7335, - [7821] = 7734, - [7822] = 7453, - [7823] = 7757, - [7824] = 7756, - [7825] = 660, - [7826] = 7701, - [7827] = 7338, - [7828] = 621, - [7829] = 7716, - [7830] = 7734, - [7831] = 7453, - [7832] = 1731, - [7833] = 7757, - [7834] = 7756, - [7835] = 7701, - [7836] = 7836, - [7837] = 7716, - [7838] = 536, - [7839] = 665, - [7840] = 7734, - [7841] = 7453, - [7842] = 675, - [7843] = 7757, - [7844] = 7756, - [7845] = 7701, - [7846] = 7798, - [7847] = 7716, - [7848] = 7848, - [7849] = 7734, - [7850] = 7453, - [7851] = 640, - [7852] = 7757, - [7853] = 7756, - [7854] = 7701, - [7855] = 641, - [7856] = 642, - [7857] = 7716, - [7858] = 643, - [7859] = 644, - [7860] = 7734, - [7861] = 7453, - [7862] = 7757, - [7863] = 7756, - [7864] = 7701, - [7865] = 6967, - [7866] = 7716, - [7867] = 7701, - [7868] = 7734, - [7869] = 7453, - [7870] = 7757, - [7871] = 7756, - [7872] = 7701, - [7873] = 661, - [7874] = 7716, - [7875] = 7734, - [7876] = 7453, - [7877] = 7877, - [7878] = 7757, - [7879] = 7756, - [7880] = 7701, - [7881] = 7881, - [7882] = 7716, - [7883] = 549, - [7884] = 7734, - [7885] = 7453, - [7886] = 646, - [7887] = 7757, - [7888] = 7756, - [7889] = 7701, - [7890] = 647, - [7891] = 7716, - [7892] = 6767, - [7893] = 6769, - [7894] = 7734, - [7895] = 7453, - [7896] = 7338, - [7897] = 7757, - [7898] = 7756, - [7899] = 7701, - [7900] = 6772, - [7901] = 202, - [7902] = 7716, - [7903] = 301, - [7904] = 6983, - [7905] = 7734, - [7906] = 7453, - [7907] = 7003, - [7908] = 7757, - [7909] = 7756, - [7910] = 7701, - [7911] = 6867, - [7912] = 7716, - [7913] = 7734, - [7914] = 7453, - [7915] = 7757, - [7916] = 7756, - [7917] = 7701, - [7918] = 7716, - [7919] = 7734, - [7920] = 7453, - [7921] = 7648, - [7922] = 7757, - [7923] = 7756, - [7924] = 7701, - [7925] = 7716, - [7926] = 7734, - [7927] = 7453, - [7928] = 7757, - [7929] = 7756, - [7930] = 7701, - [7931] = 7716, - [7932] = 7734, - [7933] = 7453, - [7934] = 6696, - [7935] = 7757, - [7936] = 7756, - [7937] = 7701, - [7938] = 7716, - [7939] = 7734, - [7940] = 7453, - [7941] = 7757, - [7942] = 7756, - [7943] = 7701, - [7944] = 7716, - [7945] = 7734, - [7946] = 7453, - [7947] = 7757, - [7948] = 7756, - [7949] = 606, - [7950] = 583, - [7951] = 7315, - [7952] = 6783, - [7953] = 6784, - [7954] = 7362, - [7955] = 7332, - [7956] = 7956, - [7957] = 7726, - [7958] = 7321, - [7959] = 563, - [7960] = 7322, - [7961] = 1705, - [7962] = 7962, - [7963] = 7325, - [7964] = 7848, - [7965] = 6786, - [7966] = 629, - [7967] = 630, - [7968] = 7328, - [7969] = 7329, - [7970] = 7330, - [7971] = 7584, - [7972] = 7332, - [7973] = 7973, - [7974] = 7334, - [7975] = 7335, - [7976] = 7338, - [7977] = 6865, - [7978] = 7978, - [7979] = 7979, - [7980] = 7980, - [7981] = 7981, - [7982] = 7982, - [7983] = 7983, - [7984] = 2215, - [7985] = 7985, - [7986] = 7986, - [7987] = 7987, - [7988] = 7988, - [7989] = 527, - [7990] = 381, - [7991] = 1692, - [7992] = 7992, - [7993] = 7993, - [7994] = 7994, - [7995] = 7995, - [7996] = 204, - [7997] = 7997, - [7998] = 7998, - [7999] = 7999, - [8000] = 8000, - [8001] = 8001, - [8002] = 685, - [8003] = 8003, - [8004] = 8004, - [8005] = 8005, - [8006] = 8006, - [8007] = 8007, - [8008] = 8008, - [8009] = 8009, - [8010] = 537, - [8011] = 8011, - [8012] = 8012, - [8013] = 8013, - [8014] = 7997, - [8015] = 8015, - [8016] = 3353, - [8017] = 8012, - [8018] = 379, - [8019] = 8019, - [8020] = 2222, - [8021] = 3167, - [8022] = 3360, - [8023] = 8023, - [8024] = 382, - [8025] = 8025, - [8026] = 549, - [8027] = 3201, - [8028] = 8028, - [8029] = 8029, - [8030] = 1705, - [8031] = 8031, - [8032] = 686, - [8033] = 8033, - [8034] = 8003, - [8035] = 8007, - [8036] = 549, - [8037] = 8037, - [8038] = 8013, - [8039] = 7980, - [8040] = 7981, - [8041] = 8041, - [8042] = 8042, - [8043] = 8043, - [8044] = 8006, - [8045] = 8045, - [8046] = 8046, - [8047] = 7982, - [8048] = 7983, - [8049] = 8049, - [8050] = 8050, - [8051] = 537, - [8052] = 7994, - [8053] = 689, - [8054] = 3215, - [8055] = 2209, - [8056] = 5115, - [8057] = 8057, - [8058] = 8058, - [8059] = 8033, - [8060] = 3220, - [8061] = 555, - [8062] = 8062, - [8063] = 536, - [8064] = 527, - [8065] = 8065, - [8066] = 8066, - [8067] = 8050, - [8068] = 8042, - [8069] = 8069, - [8070] = 8070, - [8071] = 7980, - [8072] = 8072, - [8073] = 537, - [8074] = 8074, - [8075] = 8075, - [8076] = 8049, - [8077] = 8077, - [8078] = 8078, - [8079] = 8079, - [8080] = 8080, - [8081] = 8081, - [8082] = 7981, - [8083] = 7978, - [8084] = 2263, - [8085] = 8085, - [8086] = 8086, - [8087] = 8087, - [8088] = 8088, - [8089] = 2221, - [8090] = 8090, - [8091] = 7994, - [8092] = 8092, - [8093] = 8093, - [8094] = 8057, - [8095] = 8095, - [8096] = 8096, - [8097] = 3230, - [8098] = 8098, - [8099] = 8099, - [8100] = 8100, - [8101] = 4901, - [8102] = 8062, - [8103] = 8103, - [8104] = 8104, - [8105] = 1731, - [8106] = 8092, - [8107] = 8107, - [8108] = 8093, - [8109] = 8046, - [8110] = 8110, - [8111] = 7981, - [8112] = 7982, - [8113] = 7983, - [8114] = 378, - [8115] = 1731, - [8116] = 8116, - [8117] = 8095, - [8118] = 7979, - [8119] = 7994, - [8120] = 8057, - [8121] = 8011, - [8122] = 8098, - [8123] = 8012, - [8124] = 7998, - [8125] = 7978, - [8126] = 8126, - [8127] = 2264, - [8128] = 8103, - [8129] = 7962, - [8130] = 7994, - [8131] = 8066, - [8132] = 8132, - [8133] = 8133, - [8134] = 7994, - [8135] = 680, - [8136] = 8136, - [8137] = 8137, - [8138] = 1881, - [8139] = 7994, - [8140] = 8062, - [8141] = 8141, - [8142] = 8011, - [8143] = 8012, - [8144] = 7985, - [8145] = 8103, - [8146] = 8146, - [8147] = 7999, - [8148] = 8062, - [8149] = 8103, - [8150] = 8062, - [8151] = 7980, - [8152] = 8103, - [8153] = 7981, - [8154] = 8099, - [8155] = 8100, - [8156] = 8156, - [8157] = 8157, - [8158] = 8158, - [8159] = 7980, - [8160] = 7981, - [8161] = 8126, - [8162] = 7995, - [8163] = 8163, - [8164] = 8000, - [8165] = 8165, - [8166] = 8166, - [8167] = 8167, - [8168] = 555, - [8169] = 7978, - [8170] = 8170, - [8171] = 1705, - [8172] = 8172, - [8173] = 8173, - [8174] = 681, - [8175] = 8001, - [8176] = 8005, - [8177] = 8177, - [8178] = 8137, - [8179] = 8179, - [8180] = 8090, - [8181] = 5012, - [8182] = 1692, - [8183] = 8028, - [8184] = 8062, - [8185] = 8103, - [8186] = 7988, - [8187] = 8187, - [8188] = 8165, - [8189] = 536, - [8190] = 8008, - [8191] = 8019, - [8192] = 8192, - [8193] = 8025, - [8194] = 7982, - [8195] = 8170, - [8196] = 7983, - [8197] = 8058, - [8198] = 8029, - [8199] = 684, - [8200] = 5139, - [8201] = 8062, - [8202] = 8103, - [8203] = 8104, - [8204] = 7978, - [8205] = 8037, - [8206] = 8008, - [8207] = 8057, - [8208] = 7980, - [8209] = 7981, - [8210] = 8116, - [8211] = 8187, - [8212] = 8177, - [8213] = 8011, - [8214] = 7986, - [8215] = 8031, - [8216] = 8107, - [8217] = 7987, - [8218] = 8072, - [8219] = 8136, - [8220] = 8156, - [8221] = 8166, - [8222] = 7992, - [8223] = 7980, - [8224] = 8224, - [8225] = 8225, - [8226] = 2746, - [8227] = 8227, - [8228] = 8228, - [8229] = 8229, - [8230] = 8230, - [8231] = 8231, - [8232] = 8232, - [8233] = 8233, - [8234] = 8230, - [8235] = 8235, - [8236] = 8236, - [8237] = 8237, - [8238] = 8224, - [8239] = 8239, - [8240] = 8240, - [8241] = 8241, - [8242] = 8242, - [8243] = 8225, - [8244] = 8244, - [8245] = 8225, - [8246] = 8246, - [8247] = 8247, - [8248] = 8248, - [8249] = 8249, - [8250] = 8225, - [8251] = 8227, - [8252] = 8252, - [8253] = 8231, - [8254] = 8235, - [8255] = 8237, - [8256] = 8252, - [8257] = 8257, - [8258] = 8224, - [8259] = 8259, - [8260] = 8225, - [8261] = 8227, - [8262] = 8262, - [8263] = 8262, - [8264] = 8264, - [8265] = 8228, - [8266] = 8231, - [8267] = 8267, - [8268] = 8235, - [8269] = 8225, - [8270] = 8225, - [8271] = 8271, - [8272] = 8272, - [8273] = 8273, - [8274] = 8274, - [8275] = 8225, - [8276] = 8257, - [8277] = 8252, - [8278] = 8158, - [8279] = 2751, - [8280] = 8237, - [8281] = 8224, - [8282] = 8282, - [8283] = 8237, - [8284] = 8225, - [8285] = 8227, - [8286] = 8252, - [8287] = 8228, - [8288] = 8288, - [8289] = 8289, - [8290] = 8231, - [8291] = 8235, - [8292] = 8292, - [8293] = 8237, - [8294] = 8294, - [8295] = 8224, - [8296] = 8230, - [8297] = 8231, - [8298] = 8298, - [8299] = 8235, - [8300] = 8300, - [8301] = 8249, - [8302] = 8302, - [8303] = 8225, - [8304] = 8262, - [8305] = 8305, - [8306] = 8225, - [8307] = 8292, - [8308] = 8308, - [8309] = 8309, - [8310] = 8310, - [8311] = 8235, - [8312] = 8242, - [8313] = 8230, - [8314] = 8262, - [8315] = 8292, - [8316] = 8248, - [8317] = 8225, - [8318] = 8225, - [8319] = 8228, - [8320] = 8320, - [8321] = 8246, - [8322] = 8272, - [8323] = 8259, - [8324] = 8227, - [8325] = 8259, - [8326] = 8252, - [8327] = 8239, - [8328] = 8225, - [8329] = 8329, - [8330] = 8292, - [8331] = 8230, - [8332] = 8252, - [8333] = 8292, - [8334] = 8334, - [8335] = 8239, - [8336] = 8259, - [8337] = 8230, - [8338] = 8230, - [8339] = 8259, - [8340] = 8239, - [8341] = 8239, - [8342] = 8262, - [8343] = 8343, - [8344] = 8227, - [8345] = 8309, - [8346] = 8259, - [8347] = 8225, - [8348] = 8348, - [8349] = 8349, - [8350] = 8292, - [8351] = 8351, - [8352] = 8352, - [8353] = 8320, - [8354] = 8225, - [8355] = 8329, - [8356] = 8356, - [8357] = 453, - [8358] = 8358, - [8359] = 8320, - [8360] = 8225, - [8361] = 8361, - [8362] = 8362, - [8363] = 8230, - [8364] = 8225, - [8365] = 8239, - [8366] = 8235, - [8367] = 8302, - [8368] = 8252, - [8369] = 8292, - [8370] = 8305, - [8371] = 8225, - [8372] = 8230, - [8373] = 8225, - [8374] = 8225, - [8375] = 8224, - [8376] = 8320, - [8377] = 8235, - [8378] = 8225, - [8379] = 8225, - [8380] = 8227, - [8381] = 8231, - [8382] = 8257, - [8383] = 8235, - [8384] = 8384, - [8385] = 8224, - [8386] = 8225, - [8387] = 8387, - [8388] = 8302, - [8389] = 2748, - [8390] = 8302, - [8391] = 8391, - [8392] = 8305, - [8393] = 8252, - [8394] = 8262, - [8395] = 8349, - [8396] = 8320, - [8397] = 8225, - [8398] = 8237, - [8399] = 8305, - [8400] = 8230, - [8401] = 8292, - [8402] = 8230, - [8403] = 8225, - [8404] = 8242, - [8405] = 8302, - [8406] = 8305, - [8407] = 8384, - [8408] = 8239, - [8409] = 8241, - [8410] = 8259, - [8411] = 8320, - [8412] = 8412, - [8413] = 8228, - [8414] = 8239, - [8415] = 8415, - [8416] = 8235, - [8417] = 8227, - [8418] = 8225, - [8419] = 8302, - [8420] = 8305, - [8421] = 8421, - [8422] = 8228, - [8423] = 2749, - [8424] = 8424, - [8425] = 8425, - [8426] = 8426, - [8427] = 8427, - [8428] = 8428, - [8429] = 8225, - [8430] = 8225, - [8431] = 8431, - [8432] = 8248, - [8433] = 8302, - [8434] = 8305, - [8435] = 8435, - [8436] = 8227, - [8437] = 8228, - [8438] = 8225, - [8439] = 8231, - [8440] = 8235, - [8441] = 8224, - [8442] = 8231, - [8443] = 8227, - [8444] = 8235, - [8445] = 8289, - [8446] = 8302, - [8447] = 8305, - [8448] = 8237, - [8449] = 8449, - [8450] = 8224, - [8451] = 8451, - [8452] = 8452, - [8453] = 8230, - [8454] = 8425, - [8455] = 8320, - [8456] = 8456, - [8457] = 8289, - [8458] = 8231, - [8459] = 8302, - [8460] = 8305, - [8461] = 8252, - [8462] = 8225, - [8463] = 8231, - [8464] = 8224, - [8465] = 8428, - [8466] = 8466, - [8467] = 454, - [8468] = 8228, - [8469] = 8320, - [8470] = 8257, - [8471] = 8289, - [8472] = 8302, - [8473] = 8305, - [8474] = 8252, - [8475] = 8249, - [8476] = 8292, - [8477] = 8292, - [8478] = 8478, - [8479] = 8225, - [8480] = 8230, - [8481] = 8329, - [8482] = 8320, - [8483] = 8320, - [8484] = 8235, - [8485] = 8302, - [8486] = 8305, - [8487] = 8239, - [8488] = 8225, - [8489] = 8489, - [8490] = 454, - [8491] = 8225, - [8492] = 8231, - [8493] = 8235, - [8494] = 8224, - [8495] = 8298, - [8496] = 8237, - [8497] = 8224, - [8498] = 8302, - [8499] = 8305, - [8500] = 8230, - [8501] = 8320, - [8502] = 8231, - [8503] = 8231, - [8504] = 8225, - [8505] = 8310, - [8506] = 8235, - [8507] = 8235, - [8508] = 8508, - [8509] = 8227, - [8510] = 8237, - [8511] = 8302, - [8512] = 8305, - [8513] = 8244, - [8514] = 8246, - [8515] = 8305, - [8516] = 8516, - [8517] = 8225, - [8518] = 8225, - [8519] = 8508, - [8520] = 8237, - [8521] = 8449, - [8522] = 8225, - [8523] = 8224, - [8524] = 8302, - [8525] = 8305, - [8526] = 8228, - [8527] = 8310, - [8528] = 8435, - [8529] = 8227, - [8530] = 8530, - [8531] = 8228, - [8532] = 8225, - [8533] = 8231, - [8534] = 8302, - [8535] = 8305, - [8536] = 8235, - [8537] = 8231, - [8538] = 453, - [8539] = 8225, - [8540] = 8233, - [8541] = 8227, - [8542] = 8230, - [8543] = 8543, - [8544] = 8302, - [8545] = 8246, - [8546] = 8225, - [8547] = 8228, - [8548] = 8548, - [8549] = 454, - [8550] = 8235, - [8551] = 8225, - [8552] = 8235, - [8553] = 8302, - [8554] = 8224, - [8555] = 453, - [8556] = 8289, - [8557] = 8557, - [8558] = 8237, - [8559] = 8231, - [8560] = 8560, - [8561] = 8272, - [8562] = 8302, - [8563] = 8252, - [8564] = 8560, - [8565] = 8235, - [8566] = 8224, - [8567] = 8231, - [8568] = 8237, - [8569] = 8225, - [8570] = 8570, - [8571] = 8302, - [8572] = 8302, - [8573] = 8302, - [8574] = 8302, - [8575] = 8302, - [8576] = 8302, - [8577] = 8302, - [8578] = 8302, - [8579] = 8302, - [8580] = 8302, - [8581] = 8302, - [8582] = 8302, - [8583] = 8302, - [8584] = 8302, - [8585] = 8302, - [8586] = 8302, - [8587] = 8302, - [8588] = 8302, - [8589] = 8302, - [8590] = 8302, - [8591] = 8302, - [8592] = 8302, - [8593] = 8302, - [8594] = 8302, - [8595] = 8302, - [8596] = 8302, - [8597] = 8302, - [8598] = 8302, - [8599] = 8302, - [8600] = 8302, - [8601] = 8224, - [8602] = 8384, - [8603] = 8288, - [8604] = 2745, - [8605] = 8225, - [8606] = 8231, - [8607] = 8235, - [8608] = 8244, - [8609] = 8302, - [8610] = 8235, - [8611] = 8262, - [8612] = 8235, - [8613] = 8225, - [8614] = 8235, - [8615] = 8248, - [8616] = 8236, - [8617] = 8227, - [8618] = 8246, - [8619] = 8619, - [8620] = 8620, - [8621] = 8621, - [8622] = 8230, - [8623] = 8548, - [8624] = 8624, - [8625] = 8228, - [8626] = 8252, - [8627] = 8431, - [8628] = 8456, - [8629] = 8292, - [8630] = 8230, - [8631] = 8262, - [8632] = 8231, - [8633] = 8259, - [8634] = 8235, - [8635] = 8237, - [8636] = 8239, - [8637] = 8309, - [8638] = 8273, - [8639] = 8242, - [8640] = 8252, - [8641] = 8259, - [8642] = 8292, - [8643] = 8288, - [8644] = 8230, - [8645] = 8235, - [8646] = 8271, - [8647] = 8426, - [8648] = 8320, - [8649] = 8329, - [8650] = 8225, - [8651] = 8262, - [8652] = 8237, - [8653] = 8292, - [8654] = 8252, - [8655] = 8655, - [8656] = 8248, - [8657] = 8224, - [8658] = 8435, - [8659] = 8230, - [8660] = 8320, - [8661] = 8230, - [8662] = 8662, - [8663] = 8309, - [8664] = 8225, - [8665] = 8292, - [8666] = 8620, - [8667] = 8230, - [8668] = 8451, - [8669] = 8225, - [8670] = 8225, - [8671] = 8227, - [8672] = 8672, - [8673] = 8230, - [8674] = 8228, - [8675] = 8675, - [8676] = 8320, - [8677] = 8619, - [8678] = 8247, - [8679] = 8679, - [8680] = 8298, - [8681] = 8681, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -14349,10834 +13374,9196 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '"', 4171, - '#', 5588, - '$', 3815, - '\'', 4187, - '(', 3895, - ')', 4021, - '*', 3156, - '+', 3161, - ',', 3690, - '-', 3162, - '.', 3937, - '/', 3158, - '0', 3358, - ':', 4199, - ';', 3650, - '<', 3179, - '=', 1862, - '>', 3182, - '?', 3714, - '@', 3711, - '[', 4141, - ']', 3687, - '^', 4208, - '_', 3807, - '`', 553, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 12, - ' ', 12, - '!', 5393, - '&', 5393, - 'I', 3411, - 'i', 3411, - 'N', 3405, - 'n', 3405, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5470, + '$', 3714, + '\'', 4083, + '(', 3794, + ')', 3917, + '*', 3080, + '+', 3085, + ',', 3595, + '-', 3086, + '.', 3836, + '/', 3082, + '0', 3282, + ':', 4095, + ';', 3555, + '<', 3103, + '=', 1786, + '>', 3106, + '?', 3619, + '@', 3616, + '[', 4037, + ']', 3592, + '^', 4116, + '_', 3706, + '`', 481, + '{', 3702, + '|', 3556, + '}', 3703, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3359); - if (lookahead != 0) ADVANCE(3419); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1673); + if (lookahead == '!' || + lookahead == '&') ADVANCE(5275); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3335); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3329); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3343); END_STATE(); case 1: + if (lookahead == '\n') ADVANCE(3552); + END_STATE(); + case 2: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 2502, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '*', 3863, - '+', 3913, - ',', 3690, - '-', 3733, - '.', 3947, - '/', 3902, - '0', 4054, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2698, - 'b', 2664, - 'c', 2537, - 'd', 2591, - 'e', 1976, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2532, - 'n', 2765, - 'o', 1977, - 'r', 2592, - 's', 2746, - 't', 2785, - 'u', 2827, - 'w', 2656, - 'x', 2754, - '|', 3651, - '}', 3804, - '\t', 3, - ' ', 3, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 2426, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '*', 3762, + '+', 3812, + ',', 3595, + '-', 3637, + '.', 4103, + '/', 3801, + '0', 3950, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2622, + 'b', 2588, + 'c', 2461, + 'd', 2515, + 'e', 1900, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2456, + 'n', 2689, + 'o', 1901, + 'r', 2516, + 's', 2670, + 't', 2709, + 'u', 2751, + 'w', 2580, + 'x', 2678, + '|', 3556, + '}', 3703, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); - END_STATE(); - case 2: - ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 2502, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '*', 3863, - '+', 3913, - ',', 3690, - '-', 3733, - '.', 3947, - '/', 3902, - '0', 4054, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - 'I', 2917, - 'N', 2910, - '[', 4141, - '_', 2521, - '`', 553, - 'a', 2698, - 'b', 2664, - 'c', 2537, - 'd', 2591, - 'e', 1976, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2532, - 'n', 2765, - 'o', 1977, - 'r', 2592, - 's', 2746, - 't', 2785, - 'u', 2827, - 'w', 2656, - 'x', 2754, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 4, - ' ', 4, - 0x0b, 516, - '\f', 516, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 3: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 2502, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '*', 3863, - '+', 3913, - ',', 3690, - '-', 3733, - '.', 2141, - '/', 3902, - '0', 4054, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2698, - 'b', 2664, - 'c', 2537, - 'd', 2591, - 'e', 1976, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2532, - 'n', 2765, - 'o', 1977, - 'r', 2592, - 's', 2746, - 't', 2785, - 'u', 2827, - 'w', 2656, - 'x', 2754, - '|', 3651, - '}', 3804, - '\t', 3, - ' ', 3, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 2426, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '*', 3762, + '+', 3812, + ',', 3595, + '-', 3637, + '.', 4104, + '/', 3801, + '0', 3950, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2622, + 'b', 2588, + 'c', 2461, + 'd', 2515, + 'e', 1900, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2456, + 'n', 2689, + 'o', 1901, + 'r', 2516, + 's', 2670, + 't', 2709, + 'u', 2751, + 'w', 2580, + 'x', 2678, + '|', 3556, + '}', 3703, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(3); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 4: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 2502, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '*', 3863, - '+', 3913, - ',', 3690, - '-', 3733, - '.', 2141, - '/', 3902, - '0', 4054, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2698, - 'b', 2664, - 'c', 2537, - 'd', 2591, - 'e', 1976, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2532, - 'n', 2765, - 'o', 1977, - 'r', 2592, - 's', 2746, - 't', 2785, - 'u', 2827, - 'w', 2656, - 'x', 2754, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 4, - ' ', 4, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 2426, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '*', 3762, + '+', 3812, + ',', 3595, + '-', 3637, + '.', 2064, + '/', 3801, + '0', 3950, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2622, + 'b', 2588, + 'c', 2461, + 'd', 2515, + 'e', 1900, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2456, + 'n', 2689, + 'o', 1901, + 'r', 2516, + 's', 2670, + 't', 2709, + 'u', 2751, + 'w', 2580, + 'x', 2678, + '|', 3556, + '}', 3703, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(2931); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 5: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 2502, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '*', 3863, - '+', 3913, - ',', 3690, - '-', 3733, - '.', 2141, - '/', 3902, - '0', 4054, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2698, - 'b', 2664, - 'c', 2537, - 'd', 2591, - 'e', 1976, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2532, - 'n', 2765, - 'o', 1977, - 'r', 2592, - 's', 2746, - 't', 2785, - 'u', 2827, - 'w', 2656, - 'x', 2754, - '|', 3651, - '}', 3804, - '\t', 5, - ' ', 5, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 2426, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '*', 3762, + '+', 3812, + ',', 3595, + '-', 3637, + '.', 2065, + '/', 3801, + '0', 3950, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2622, + 'b', 2588, + 'c', 2461, + 'd', 2515, + 'e', 1900, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2456, + 'n', 2689, + 'o', 1901, + 'r', 2516, + 's', 2670, + 't', 2709, + 'u', 2751, + 'w', 2580, + 'x', 2678, + '|', 3556, + '}', 3703, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(5); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 6: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 2502, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '*', 3863, - '+', 3913, - ',', 3690, - '-', 3733, - '.', 2140, - '/', 3902, - '0', 4054, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2698, - 'b', 2664, - 'c', 2537, - 'd', 2591, - 'e', 1976, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2532, - 'n', 2765, - 'o', 1977, - 'r', 2592, - 's', 2746, - 't', 2785, - 'u', 2827, - 'w', 2656, - 'x', 2754, - '|', 3651, - '}', 3804, - '\t', 5, - ' ', 5, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\'' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + if (lookahead == '\t' || + lookahead == ' ') SKIP(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 7: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 520, - '#', 5586, - '$', 3691, - '(', 3688, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 521, - '>', 3709, - '?', 3865, - 'B', 4120, - 'E', 538, - 'G', 538, - 'K', 538, - 'M', 538, - 'P', 538, - 'T', 538, - 'a', 1205, - 'b', 4123, - 'd', 587, - 'e', 443, - 'f', 669, - 'g', 536, - 'h', 1365, - 'i', 909, - 'k', 536, - 'm', 537, - 'n', 1295, - 'o', 451, - 'p', 536, - 's', 861, - 't', 535, - 'u', 1433, - 'w', 1055, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 1433, - '\t', 8, - ' ', 8, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4514, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 8: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 520, - '#', 5586, - '$', 3691, - '(', 3688, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 521, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'f', 669, - 'i', 909, - 'm', 1272, - 'n', 1294, - 'o', 451, - 's', 1567, - 't', 1424, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 8, - ' ', 8, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4503, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '{', 3702, + 0xb5, 4587, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 9: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, - '\t', 9, - ' ', 9, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 10: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 520, - '#', 5586, - '*', 3863, - '+', 3914, - '-', 3745, - '.', 3951, - '/', 3902, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 11, - ' ', 11, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4503, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '{', 3702, + 0xb5, 4587, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 11: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 520, - '#', 5586, - '*', 3863, - '+', 3914, - '-', 3745, - '/', 3902, - ':', 4199, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 11, - ' ', 11, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4503, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '{', 3702, + 0xb5, 4587, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 12: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '"', 4171, - '#', 5588, - '$', 3691, - '\'', 441, - '(', 3688, - ')', 3689, - '*', 3862, - '+', 3910, - ',', 3690, - '-', 3719, - '.', 5299, - '/', 3904, - '0', 3358, - ':', 4199, - ';', 3650, - '<', 3883, - '=', 1862, - '>', 3708, - '?', 3865, - '[', 3686, - ']', 3687, - '^', 4208, - '_', 3807, - '`', 553, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 12, - ' ', 12, - 'I', 3411, - 'i', 3411, - 'N', 3405, - 'n', 3405, - 0x0b, 516, - '\f', 516, - '!', 5355, - '&', 5355, - '@', 5355, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4506, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '{', 3702, + 0xb5, 4587, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3359); - if (lookahead != 0) ADVANCE(3419); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 13: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3735, - '.', 500, - '0', 4050, - ':', 4199, - ';', 3650, - '>', 3708, - '?', 3865, - 'I', 1672, - 'N', 1659, - '[', 3686, - '_', 541, - '`', 553, - 'a', 1137, - 'c', 1312, - 'd', 833, - 'e', 450, - 'f', 669, - 'i', 910, - 'm', 579, - 'n', 1292, - 'o', 454, - 't', 1367, - 'u', 1465, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 13, - ' ', 13, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 14: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3735, - '.', 3942, - '0', 4050, - ':', 4199, - ';', 3650, - '=', 4390, - '>', 3708, - '?', 3865, - '@', 3711, - 'I', 1672, - 'N', 1659, - '[', 3686, - '_', 541, - '`', 553, - 'a', 1137, - 'c', 1312, - 'd', 833, - 'e', 450, - 'f', 669, - 'i', 910, - 'm', 579, - 'n', 1292, - 'o', 454, - 't', 1367, - 'u', 1465, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 13, - ' ', 13, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 15: ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '#', 5586, - ':', 4199, - ';', 3650, - 'e', 449, - 'o', 454, - '|', 3651, - '}', 3804, - '\t', 3648, - ' ', 3648, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(3647); - if (lookahead == ':') ADVANCE(4199); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(516); + ADVANCE_MAP( + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(3646); + ADVANCE_MAP( + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 18: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 3963, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 19: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 4624, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4493, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 20: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4687, + '#', 5474, + '(', 3794, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + '<', 3784, + '=', 4689, + '>', 3615, + 'a', 4776, + 'b', 4759, + 'e', 4781, + 'i', 4777, + 'm', 4789, + 'n', 4792, + 'o', 4801, + 's', 4830, + 'x', 4791, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 21: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '$', 3596, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 474, + '/', 3800, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 1165, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 1286, + 's', 1491, + 'x', 1218, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(21); END_STATE(); case 22: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 382, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 386, + 's', 1491, + 'x', 1218, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4616, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 382, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 386, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3936, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 382, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 386, + 's', 1491, + 'x', 1218, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 1165, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 1286, + 's', 1491, + 'x', 1218, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 4109, + ':', 3589, + ';', 3555, + '<', 3103, + '=', 1786, + '>', 3613, + '?', 3764, + '@', 3616, + '[', 3591, + ']', 3592, + '`', 481, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(31); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^') ADVANCE(3343); END_STATE(); case 31: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 4108, + ':', 3589, + ';', 3555, + '=', 1786, + '>', 3613, + '?', 3764, + '[', 3591, + ']', 3592, + '`', 481, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(31); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^') ADVANCE(3343); END_STATE(); case 32: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4801, - '#', 5592, - '(', 3895, - '*', 3864, - '+', 3915, - '-', 3746, - '/', 3903, - '<', 3885, - '=', 4803, - '>', 3710, - 'a', 4890, - 'b', 4873, - 'e', 4895, - 'i', 4891, - 'm', 4903, - 'n', 4906, - 'o', 4916, - 's', 4946, - 'x', 4905, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2065, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(32); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 33: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '$', 3691, - '*', 3862, - '+', 3911, - '-', 3740, - '.', 545, - '/', 3901, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 429, + '.', 4366, + '0', 3944, + 'N', 4428, + '[', 3591, + '_', 3707, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4424, + 'o', 4362, + 't', 4411, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(33); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); case 34: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4913, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); case 35: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 448, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 453, - 's', 1567, - 'x', 1291, - '|', 3651, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1908, + '0', 3951, + 'I', 2038, + 'N', 2035, + '[', 4037, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); + lookahead == ' ') SKIP(32); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); case 36: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + ';', 3555, + '=', 4298, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2231, + 'b', 2205, + 'c', 2078, + 'd', 2107, + 'e', 2081, + 'f', 2084, + 'g', 2197, + 'h', 2096, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2158, + 'm', 2086, + 'n', 2281, + 'o', 2389, + 'p', 2101, + 'q', 2383, + 'r', 2088, + 's', 2125, + 't', 2091, + 'u', 2291, + 'v', 2209, + 'w', 2194, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); + lookahead == ' ') SKIP(37); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); case 37: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 448, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 453, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + ';', 3555, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2231, + 'b', 2205, + 'c', 2078, + 'd', 2107, + 'e', 2081, + 'f', 2084, + 'g', 2197, + 'h', 2096, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2158, + 'm', 2086, + 'n', 2281, + 'o', 2389, + 'p', 2101, + 'q', 2383, + 'r', 2088, + 's', 2125, + 't', 2091, + 'u', 2291, + 'v', 2209, + 'w', 2194, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); case 38: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + '=', 4298, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2245, + 'b', 2206, + 'c', 2080, + 'd', 2109, + 'e', 2082, + 'f', 2085, + 'g', 2197, + 'h', 2097, + 'i', 2076, + 'j', 2333, + 'k', 2138, + 'l', 2168, + 'm', 2113, + 'n', 2281, + 'o', 2390, + 'p', 2101, + 'q', 2383, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2209, + 'w', 2199, + '{', 3702, + '\t', 3554, + ' ', 3554, + '!', 2855, + '&', 2855, + '*', 2855, + ',', 2855, + '?', 2855, + '@', 2855, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); case 39: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 448, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 453, - 's', 1567, - 'x', 1291, - '|', 3651, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2245, + 'b', 2205, + 'c', 2079, + 'd', 2108, + 'e', 1903, + 'f', 2085, + 'g', 2197, + 'h', 2097, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2168, + 'm', 2087, + 'n', 2281, + 'o', 1905, + 'p', 2101, + 'q', 2383, + 'r', 2090, + 's', 2126, + 't', 2091, + 'u', 2292, + 'v', 2209, + 'w', 2204, + '{', 3702, + '|', 3556, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); case 40: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + 'I', 2841, + 'N', 2834, + '[', 3591, + '^', 4116, + '_', 2445, + '`', 481, + 'a', 2644, + 'b', 2600, + 'c', 2460, + 'd', 2479, + 'e', 2480, + 'f', 2483, + 'g', 2579, + 'h', 2470, + 'i', 2439, + 'j', 2755, + 'k', 2530, + 'l', 2562, + 'm', 2463, + 'n', 2683, + 'o', 2824, + 'p', 2472, + 'q', 2822, + 'r', 2478, + 's', 2493, + 't', 2464, + 'u', 2698, + 'v', 2601, + 'w', 2587, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 41: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 3961, - ':', 3684, - ';', 3650, - '<', 3179, - '=', 1862, - '>', 3708, - '?', 3865, - '@', 3711, - '[', 3686, - ']', 3687, - '`', 553, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 397, + '.', 2442, + ':', 4095, + '=', 4298, + 'I', 2843, + 'N', 2835, + '[', 4037, + ']', 3592, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^') ADVANCE(3419); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 42: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 504, - ':', 3684, - ';', 3650, - '=', 1862, - '>', 3708, - '?', 3865, - '[', 3686, - ']', 3687, - '`', 553, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 397, + '.', 2442, + ':', 4095, + 'I', 2843, + 'N', 2835, + ']', 3592, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^') ADVANCE(3419); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); case 43: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2141, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 3626, + '.', 4369, + '0', 3944, + ':', 4095, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, + '\t', 3553, + ' ', 3553, + 'I', 4431, + 'i', 4431, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + lookahead != ']') ADVANCE(4451); END_STATE(); case 44: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 4480, - '-', 496, - '.', 4476, - '0', 4048, - 'N', 4538, - '[', 3686, - '_', 3808, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4534, - 'o', 4472, - 't', 4521, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3944, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4424, + 'o', 4362, + 't', 4411, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); case 45: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 3639, + '.', 4366, + '0', 3944, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4408, + 'o', 4362, + 't', 4411, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); case 46: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1984, - '0', 4055, - 'I', 2114, - 'N', 2111, - '[', 4141, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4918, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(43); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(46); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); case 47: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 3650, - '=', 4390, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2307, - 'b', 2281, - 'c', 2154, - 'd', 2183, - 'e', 2157, - 'f', 2160, - 'g', 2273, - 'h', 2172, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2234, - 'm', 2162, - 'n', 2357, - 'o', 2465, - 'p', 2177, - 'q', 2459, - 'r', 2164, - 's', 2201, - 't', 2167, - 'u', 2367, - 'v', 2285, - 'w', 2270, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 5185, + '-', 5184, + '.', 5183, + '0', 3947, + 'N', 5217, + '[', 3591, + '_', 5194, + '`', 481, + 'e', 5177, + 'f', 5196, + 'n', 5213, + 'o', 5178, + 't', 5206, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); + lookahead == ' ') SKIP(47); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5237); END_STATE(); case 48: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 3650, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2307, - 'b', 2281, - 'c', 2154, - 'd', 2183, - 'e', 2157, - 'f', 2160, - 'g', 2273, - 'h', 2172, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2234, - 'm', 2162, - 'n', 2357, - 'o', 2465, - 'p', 2177, - 'q', 2459, - 'r', 2164, - 's', 2201, - 't', 2167, - 'u', 2367, - 'v', 2285, - 'w', 2270, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '+', 5245, + ',', 3595, + '-', 3630, + '.', 5241, + ':', 3589, + '=', 1786, + ']', 3592, + '_', 3284, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(65); if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 49: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - '=', 4390, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2321, - 'b', 2282, - 'c', 2156, - 'd', 2185, - 'e', 2158, - 'f', 2161, - 'g', 2273, - 'h', 2173, - 'i', 2152, - 'j', 2409, - 'k', 2214, - 'l', 2244, - 'm', 2189, - 'n', 2357, - 'o', 2466, - 'p', 2177, - 'q', 2459, - 'r', 2165, - 's', 2202, - 't', 2168, - 'u', 2368, - 'v', 2285, - 'w', 2275, - '{', 3803, - '\t', 3649, - ' ', 3649, - '!', 2931, - '&', 2931, - '*', 2931, - ',', 2931, - '?', 2931, - '@', 2931, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '+', 5245, + ',', 3595, + '-', 3630, + '.', 3856, + ':', 3589, + '=', 1786, + ']', 3592, + '_', 3284, + '|', 3556, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); + if (lookahead == '\t' || + lookahead == ' ') SKIP(65); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 50: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - 'I', 2917, - 'N', 2910, - '[', 3686, - '^', 4208, - '_', 2521, - '`', 553, - 'a', 2720, - 'b', 2676, - 'c', 2536, - 'd', 2555, - 'e', 2556, - 'f', 2559, - 'g', 2655, - 'h', 2546, - 'i', 2515, - 'j', 2831, - 'k', 2606, - 'l', 2638, - 'm', 2539, - 'n', 2759, - 'o', 2900, - 'p', 2548, - 'q', 2898, - 'r', 2554, - 's', 2569, - 't', 2540, - 'u', 2774, - 'v', 2677, - 'w', 2663, - '{', 3803, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 3858, + ':', 3589, + '=', 1786, + 'E', 3270, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + ']', 3592, + 'd', 3286, + 'e', 3269, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + '|', 3556, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(50); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 51: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 464, - '.', 2518, - '=', 4390, - 'I', 2919, - 'N', 2911, - '[', 4141, - ']', 3687, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 3858, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3271); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 52: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 464, - '.', 2518, - 'I', 2919, - 'N', 2911, - ']', 3687, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5244, + ':', 3589, + '=', 1786, + 'E', 3270, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + ']', 3592, + '_', 3284, + 'd', 3286, + 'e', 3269, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + '|', 3556, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 53: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4534, - 'o', 4472, - 't', 4521, - '{', 3803, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5244, + ':', 3589, + '=', 1786, + 'E', 3270, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + ']', 3592, + 'd', 3286, + 'e', 3269, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + '|', 3556, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(53); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 54: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4480, - '-', 3735, - '.', 4476, - '0', 4048, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4518, - 'o', 4472, - 't', 4521, - '{', 3803, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5244, + ':', 3589, + '=', 1786, + 'E', 3280, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + ']', 3592, + 'd', 3286, + 'e', 3279, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + '|', 3556, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(54); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); + lookahead == ' ') SKIP(68); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 55: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5035, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5244, + ':', 3589, + '=', 1786, + '[', 4037, + ']', 3592, + '{', 3702, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(55); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == ' ') SKIP(67); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); END_STATE(); case 56: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 5303, - '-', 5302, - '.', 5301, - '0', 4051, - 'N', 5335, - '[', 3686, - '_', 5312, - '`', 553, - 'e', 5294, - 'f', 5314, - 'n', 5331, - 'o', 5295, - 't', 5324, - '{', 3803, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5244, + ':', 3589, + '=', 1786, + ']', 3592, + '_', 3284, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(56); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5341); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4074); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5355); + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3271); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 57: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '+', 5363, - ',', 3690, - '-', 3726, - '.', 5359, - ':', 3684, - '=', 1862, - ']', 3687, - '_', 3360, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5244, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3271); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 58: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '+', 5363, - ',', 3690, - '-', 3726, - '.', 3958, - ':', 3684, - '=', 1862, - ']', 3687, - '_', 3360, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 3855, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3271); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 59: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 3961, - ':', 3684, - '=', 1862, - 'E', 3346, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - ']', 3687, - 'd', 3362, - 'e', 3345, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - '|', 3651, - 0xb5, 3397, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5242, + ':', 3589, + '=', 1786, + ']', 3592, + '_', 3284, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == ' ') SKIP(68); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3271); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 60: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 3961, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5242, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); + lookahead == ' ') SKIP(68); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3347); + lookahead == 'e') ADVANCE(3271); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 61: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5362, - ':', 3684, - '=', 1862, - 'E', 3346, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - ']', 3687, - '_', 3360, - 'd', 3362, - 'e', 3345, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - '|', 3651, - 0xb5, 3397, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 5242, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == ' ') SKIP(68); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(5275); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); case 62: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5362, - ':', 3684, - '=', 1862, - 'E', 3346, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - ']', 3687, - 'd', 3362, - 'e', 3345, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - '|', 3651, - 0xb5, 3397, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3593, + ')', 3594, + '-', 3625, + '.', 4105, + ':', 4095, + ';', 3555, + '=', 1786, + '>', 3613, + '?', 3764, + '[', 3591, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(63); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 63: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5362, - ':', 3684, - '=', 1862, - 'E', 3356, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - ']', 3687, - 'd', 3362, - 'e', 3355, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - '|', 3651, - 0xb5, 3397, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3593, + ')', 3594, + '-', 3625, + '.', 4099, + ':', 4095, + ';', 3555, + '=', 1786, + '>', 3613, + '?', 3764, + '[', 3591, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(63); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 64: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5362, - ':', 3684, - '=', 1862, - '[', 4141, - ']', 3687, - '{', 3803, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3593, + '+', 432, + '-', 3639, + '.', 471, + '0', 3282, + ':', 3589, + '=', 1786, + 'N', 3329, + '_', 3283, + 'f', 3288, + 'n', 3310, + 't', 3319, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(78); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3419); + lookahead == ' ') SKIP(64); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3335); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 65: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5362, - ':', 3684, - '=', 1862, - ']', 3687, - '_', 3360, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '+', 437, + ',', 3595, + '-', 3628, + '.', 436, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3347); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(65); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 66: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5362, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 435, + ':', 3589, + '=', 1786, + '?', 3619, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3347); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(68); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 67: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5360, - ':', 3684, - '=', 1862, - ']', 3687, - '_', 3360, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 435, + ':', 3589, + '=', 1786, + ']', 3592, + '{', 3702, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3347); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 68: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5360, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + ',', 3595, + '-', 3625, + '.', 435, + ':', 3589, + '=', 1786, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3347); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(68); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 69: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 5360, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + '.', 4099, + ':', 3589, + ';', 3555, + '=', 1786, + '>', 3613, + '@', 3616, + '[', 3591, + ']', 3592, + 'c', 3292, + 'e', 3318, + 'f', 3327, + 'i', 3306, + 'o', 3309, + 'v', 3287, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(70); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 70: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 3957, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + '.', 4099, + ':', 3589, + ';', 3555, + '=', 1786, + '>', 3613, + '[', 3591, + ']', 3592, + 'c', 3292, + 'e', 3318, + 'f', 3327, + 'i', 3306, + 'o', 3309, + 'v', 3287, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3347); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5393); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(70); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); case 71: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3688, - ')', 3689, - '-', 3720, - '.', 3936, - ':', 3684, - ';', 3650, - '=', 1862, - '>', 3708, - '?', 3865, - '[', 3686, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '.', 3849, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 72: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3688, - ')', 3689, - '-', 3720, - ':', 3684, - ';', 3650, - '=', 1862, - '>', 3708, - '?', 3865, - '[', 3686, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '.', 4485, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 73: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3688, - '+', 499, - '-', 3735, - '.', 542, - '0', 3358, - ':', 3684, - '=', 1862, - 'N', 3405, - '_', 3359, - 'f', 3364, - 'n', 3386, - 't', 3395, - '{', 3803, + '\n', 3552, + '\r', 1, + '#', 5468, + '.', 4485, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3359); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 74: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '+', 503, - ',', 3690, - '-', 3723, - '.', 505, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5468, + '.', 4485, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4508, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 75: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 3960, - ':', 3684, - '=', 1862, - '?', 3865, - ']', 3687, - '|', 3651, - ); + if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4298); if (lookahead == '\t' || - lookahead == ' ') SKIP(77); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') ADVANCE(3554); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); END_STATE(); case 76: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 504, - ':', 3684, - '=', 1862, - '?', 3714, - ']', 3687, - '|', 3651, - ); + if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4298); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') ADVANCE(3554); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 77: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 504, - ':', 3684, - '=', 1862, - '?', 3865, - ']', 3687, - '|', 3651, - ); + if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(77); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') ADVANCE(3554); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 78: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 504, - ':', 3684, - '=', 1862, - ']', 3687, - '{', 3803, - '|', 3651, + '\n', 3552, + '\r', 1, + '#', 5471, + '$', 3600, + '(', 3794, + ')', 3594, + ',', 3595, + '-', 3636, + '.', 5353, + ':', 3589, + '=', 1788, + ']', 3592, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(78); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(68); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5461); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5460); END_STATE(); case 79: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - ',', 3690, - '-', 3720, - '.', 504, - ':', 3684, - '=', 1862, - ']', 3687, - '|', 3651, - ); + if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(5474); + if (lookahead == '(') ADVANCE(3794); if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') ADVANCE(3554); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 80: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - '.', 3936, - ':', 3684, - ';', 3650, - '=', 1862, - '>', 3708, - '@', 3711, - '[', 3686, - ']', 3687, - 'c', 3368, - 'e', 3394, - 'f', 3403, - 'i', 3382, - 'o', 3385, - 'v', 3363, - '{', 3803, - '}', 3804, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(82); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if (lookahead == ' ') ADVANCE(705); END_STATE(); case 81: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - '.', 501, - ':', 3684, - ';', 3650, - '=', 1862, - 'a', 1206, - 'e', 449, - 'i', 1181, - 'o', 453, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(83); + if (lookahead == ' ') ADVANCE(616); END_STATE(); case 82: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - ':', 3684, - ';', 3650, - '=', 1862, - '>', 3708, - '[', 3686, - ']', 3687, - 'c', 3368, - 'e', 3394, - 'f', 3403, - 'i', 3382, - 'o', 3385, - 'v', 3363, - '{', 3803, - '}', 3804, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(82); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 83: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - ':', 3684, - ';', 3650, - '=', 1862, - 'a', 1206, - 'e', 449, - 'i', 1181, - 'o', 453, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4514, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(83); + lookahead == ' ') SKIP(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); case 84: ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '.', 3951, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 85: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 86: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 87: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '.', 4595, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 88: - if (lookahead == '\n') ADVANCE(3646); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3649); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); - END_STATE(); - case 89: - if (lookahead == '\n') ADVANCE(3646); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3649); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 90: - if (lookahead == '\n') ADVANCE(3646); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3649); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 91: - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5589, - '$', 3695, - '(', 3895, - ')', 3689, - ',', 3690, - '-', 3732, - '.', 5471, - ':', 3684, - '=', 1864, - ']', 3687, - '|', 3651, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(79); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5579); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5578); - END_STATE(); - case 92: - if (lookahead == '\n') ADVANCE(3646); - if (lookahead == '\r') ADVANCE(17); - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3649); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); - END_STATE(); - case 93: - if (lookahead == ' ') ADVANCE(777); - END_STATE(); - case 94: - if (lookahead == ' ') ADVANCE(688); - END_STATE(); - case 95: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 3963, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 96: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 4624, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 97: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - '*', 3862, - '+', 3912, - '-', 3725, - '.', 3963, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 98: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - '*', 3862, - '+', 3912, - '-', 3725, - '.', 4624, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 99: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 100: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 101: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 102: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 103: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'B', 4120, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4616, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 104: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 105: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 106: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 107: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3936, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 108: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 109: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 110: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 4602, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 111: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 3951, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 112: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 3951, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 113: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 114: - ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4613, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4503, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 115: + case 85: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4616, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4685, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - 0xb5, 4699, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 116: + case 86: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4503, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 117: + case 87: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4503, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 118: + case 88: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 4595, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'B', 4016, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4506, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4573, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 119: + case 89: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 3936, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 120: + case 90: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 121: + case 91: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4630, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 122: + case 92: ADVANCE_MAP( - '!', 4601, - '#', 5586, - '(', 3895, - '*', 3862, - '+', 3910, - '-', 3720, - '/', 3901, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4672, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4685, - 's', 4708, - 'x', 4680, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 123: + case 93: ADVANCE_MAP( - '!', 4801, - '#', 5592, - '(', 3895, - '*', 3864, - '+', 3915, - '-', 3746, - '/', 3903, - '<', 3885, - '=', 4802, - '>', 3710, - 'a', 4890, - 'b', 4873, - 'e', 4895, - 'i', 4891, - 'm', 4903, - 'n', 4906, - 'o', 4916, - 's', 4946, - 'x', 4905, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 124: + case 94: ADVANCE_MAP( - '!', 4801, - '#', 5592, - '(', 3895, - '*', 3864, - '+', 3915, - '-', 3729, - '/', 3903, - '<', 3885, - '=', 4803, - '>', 3710, - 'a', 4890, - 'b', 4873, - 'e', 4895, - 'i', 4891, - 'm', 4903, - 'n', 4906, - 'o', 4916, - 's', 4946, - 'x', 4905, - '{', 3803, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4520, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 125: - ADVANCE_MAP( - '!', 520, - '#', 5586, - '$', 3691, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 3936, - '/', 3901, - ':', 4199, - ';', 4202, - '<', 3884, - '=', 522, - '>', 3709, - '?', 3865, - 'E', 551, - 'a', 1205, - 'b', 1017, - 'e', 549, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, - '\t', 126, - ' ', 126, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); - END_STATE(); - case 126: - ADVANCE_MAP( - '!', 520, - '#', 5586, - '$', 3691, - '*', 3862, - '+', 3910, - '-', 3720, - '/', 3901, - ':', 4199, - ';', 4202, - '<', 3884, - '=', 522, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, - '\t', 126, - ' ', 126, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); - END_STATE(); - case 127: + case 95: ADVANCE_MAP( - '!', 520, - '#', 5586, - '$', 3691, - '*', 3862, - '+', 3911, - '-', 3740, - '.', 545, - '/', 3901, - '<', 3884, - '=', 521, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, + '!', 4491, + '#', 5468, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4492, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4562, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4573, + 's', 4595, + 'x', 4570, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(127); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 128: + case 96: ADVANCE_MAP( - '!', 520, - '#', 5586, - '$', 3691, - '*', 3862, - '+', 3911, - '-', 3723, - '.', 545, - '/', 3901, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, + '!', 4687, + '#', 5474, + '(', 3794, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + '<', 3784, + '=', 4688, + '>', 3615, + 'a', 4776, + 'b', 4759, + 'e', 4781, + 'i', 4777, + 'm', 4789, + 'n', 4792, + 'o', 4801, + 's', 4830, + 'x', 4791, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(128); + lookahead == ' ') SKIP(98); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 129: + case 97: ADVANCE_MAP( - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - '<', 3884, - '=', 521, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, + '!', 450, + '#', 5468, + '$', 3596, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 474, + '/', 3800, + '<', 3783, + '=', 451, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 1165, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 1286, + 's', 1491, + 'x', 1218, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(129); + lookahead == ' ') SKIP(97); END_STATE(); - case 130: + case 98: ADVANCE_MAP( - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3720, - '/', 3901, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 451, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 1165, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 1286, + 's', 1491, + 'x', 1218, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(130); + lookahead == ' ') SKIP(98); END_STATE(); - case 131: + case 99: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5030, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4913, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 132: + case 100: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5120, - ',', 3690, - '-', 5119, - '.', 5115, - '0', 3980, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5003, + ',', 3595, + '-', 5002, + '.', 4998, + '0', 3876, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(218); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 133: + case 101: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5120, - ',', 3690, - '-', 5119, - '.', 3941, - '0', 3980, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5003, + ',', 3595, + '-', 5002, + '.', 3840, + '0', 3876, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(218); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 134: + case 102: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5120, - ',', 4194, - '-', 5119, - '.', 5115, - '0', 3980, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5003, + ',', 4090, + '-', 5002, + '.', 4998, + '0', 3876, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 135: + case 103: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5120, - ',', 4194, - '-', 5119, - '.', 3941, - '0', 3980, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5003, + ',', 4090, + '-', 5002, + '.', 3840, + '0', 3876, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 136: + case 104: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1984, - '0', 3983, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1908, + '0', 3879, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 137: + case 105: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1984, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1908, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 138: + case 106: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1984, - '0', 4055, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1908, + '0', 3951, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 139: + case 107: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 3959, - '0', 4055, - 'B', 4120, - 'E', 1991, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1990, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 3857, + '0', 3951, + 'B', 4016, + 'E', 1915, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1914, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 140: + case 108: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 3959, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 3857, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 141: + case 109: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1987, - '0', 3983, - 'B', 4120, - 'E', 1991, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1990, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 3847, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 142: + case 110: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1987, - '0', 3983, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1911, + '0', 3879, + 'B', 4016, + 'E', 1915, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1914, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 143: + case 111: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1987, - '0', 4055, - 'B', 4120, - 'E', 1991, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1990, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1911, + '0', 3879, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 144: + case 112: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1987, - '0', 4055, - 'B', 4120, - 'E', 1996, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1993, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1911, + '0', 3951, + 'B', 4016, + 'E', 1915, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1914, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 145: + case 113: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1987, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1911, + '0', 3951, + 'B', 4016, + 'E', 1920, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1917, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 146: + case 114: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 1987, - '0', 4055, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1911, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 147: + case 115: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 2931, - '-', 3742, - '.', 3949, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 2855, + '-', 3644, + '.', 1911, + '0', 3951, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 148: + case 116: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1984, - '0', 3983, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1908, + '0', 3879, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 149: + case 117: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1984, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1908, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 150: + case 118: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1984, - '0', 4055, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1908, + '0', 3951, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 151: + case 119: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 3959, - '0', 4055, - 'B', 4120, - 'E', 1991, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1990, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 3857, + '0', 3951, + 'B', 4016, + 'E', 1915, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '[', 4037, + ']', 3592, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1914, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 152: + case 120: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 3959, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 3857, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 153: + case 121: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1987, - '0', 3983, - 'B', 4120, - 'E', 1991, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1990, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 3847, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 154: + case 122: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1987, - '0', 3983, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1911, + '0', 3879, + 'B', 4016, + 'E', 1915, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1914, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 155: + case 123: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1987, - '0', 4055, - 'B', 4120, - 'E', 1991, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1990, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1911, + '0', 3879, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 156: + case 124: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1987, - '0', 4055, - 'B', 4120, - 'E', 1996, - 'G', 1996, - 'I', 2114, - 'K', 1996, - 'M', 1996, - 'N', 2111, - 'P', 1996, - 'T', 1996, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 4124, - 'c', 2011, - 'd', 2017, - 'e', 1993, - 'f', 2012, - 'g', 1995, - 'h', 2049, - 'i', 1997, - 'k', 1995, - 'l', 2035, - 'm', 1992, - 'n', 2088, - 'o', 2108, - 'p', 1995, - 'r', 2026, - 's', 2038, - 't', 1994, - 'u', 2090, - 'w', 2047, - '}', 3804, - 0xb5, 2089, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1911, + '0', 3951, + 'B', 4016, + 'E', 1915, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1914, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 157: + case 125: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1987, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1911, + '0', 3951, + 'B', 4016, + 'E', 1920, + 'G', 1920, + 'I', 2038, + 'K', 1920, + 'M', 1920, + 'N', 2035, + 'P', 1920, + 'T', 1920, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 4020, + 'c', 1935, + 'd', 1941, + 'e', 1917, + 'f', 1936, + 'g', 1919, + 'h', 1973, + 'i', 1921, + 'k', 1919, + 'l', 1959, + 'm', 1916, + 'n', 2012, + 'o', 2032, + 'p', 1919, + 'r', 1950, + 's', 1962, + 't', 1918, + 'u', 2014, + 'w', 1971, + '}', 3703, + 0xb5, 2013, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 158: + case 126: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1987, - '0', 4055, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1911, + '0', 3951, + 'E', 1933, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1932, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 159: + case 127: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 3949, - '0', 4055, - 'E', 2009, - 'I', 2114, - 'N', 2111, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2008, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1911, + '0', 3951, + 'I', 2038, + 'N', 2035, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 160: + case 128: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3920, - ',', 2931, - '-', 3743, - '.', 3950, - '0', 3983, - 'I', 2114, - 'N', 2111, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 5000, + '0', 3876, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'd', 5033, + 'e', 4993, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, + '\t', 4091, + ' ', 4091, + 'B', 4016, + 'b', 4016, + 'I', 5069, + 'i', 5069, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(252); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 161: + case 129: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3920, - ',', 2931, - '-', 3743, - '.', 1985, - '0', 3983, - 'I', 2114, - 'N', 2111, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 5000, + '0', 3876, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(252); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 162: + case 130: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3920, - ',', 4194, - '-', 3743, - '.', 3950, - '0', 3983, - ':', 3684, - 'I', 2114, - 'N', 2111, - '[', 3686, - ']', 3687, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 5000, + '0', 3949, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'd', 5033, + 'e', 4993, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, + '\t', 4091, + ' ', 4091, + 'B', 4016, + 'b', 4016, + 'I', 5069, + 'i', 5069, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 163: + case 131: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 3920, - ',', 4194, - '-', 3743, - '.', 1985, - '0', 3983, - 'I', 2114, - 'N', 2111, - '[', 4141, - ']', 3687, - '_', 2003, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 5000, + '0', 3949, + 'E', 5017, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'd', 5033, + 'e', 4990, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, + '\t', 4091, + ' ', 4091, + 'B', 4016, + 'b', 4016, + 'I', 5069, + 'i', 5069, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 164: + case 132: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5117, - '0', 3980, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'd', 5150, - 'e', 5110, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, - '\t', 4195, - ' ', 4195, - 'B', 4120, - 'b', 4120, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 5000, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 165: + case 133: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5117, - '0', 3980, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 5000, + '0', 3949, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 166: + case 134: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5117, - '0', 4053, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'd', 5150, - 'e', 5110, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, - '\t', 4195, - ' ', 4195, - 'B', 4120, - 'b', 4120, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 4999, + '0', 3876, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 167: + case 135: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5117, - '0', 4053, - 'E', 5134, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'd', 5150, - 'e', 5107, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, - '\t', 4195, - ' ', 4195, - 'B', 4120, - 'b', 4120, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 4999, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 168: + case 136: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5117, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 4999, + '0', 3949, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 169: + case 137: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5117, - '0', 4053, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 3853, + '0', 3949, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'd', 5033, + 'e', 4993, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, + '\t', 4091, + ' ', 4091, + 'B', 4016, + 'b', 4016, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 170: + case 138: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5116, - '0', 3980, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 3853, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 171: + case 139: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5116, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 3843, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 172: + case 140: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5116, - '0', 4053, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3819, + ',', 2855, + '-', 3645, + '.', 3848, + '0', 3879, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (lookahead == '\t' || + lookahead == ' ') SKIP(217); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 173: + case 141: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 3956, - '0', 4053, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'd', 5150, - 'e', 5110, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, - '\t', 4195, - ' ', 4195, - 'B', 4120, - 'b', 4120, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3819, + ',', 2855, + '-', 3645, + '.', 1909, + '0', 3879, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (lookahead == '\t' || + lookahead == ' ') SKIP(217); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 174: + case 142: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 3956, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3819, + ',', 4090, + '-', 3645, + '.', 3848, + '0', 3879, + ':', 3589, + 'I', 2038, + 'N', 2035, + '[', 3591, + ']', 3592, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '0' || '>' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 175: + case 143: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 3946, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 3819, + ',', 4090, + '-', 3645, + '.', 1909, + '0', 3879, + 'I', 2038, + 'N', 2035, + '_', 1927, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 176: + case 144: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5037, - ',', 3690, - '-', 5036, - '.', 5031, - '0', 3981, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 4920, + ',', 3595, + '-', 4919, + '.', 4914, + '0', 3877, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(218); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 177: + case 145: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5037, - ',', 3690, - '-', 5036, - '.', 3944, - '0', 3981, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 4920, + ',', 3595, + '-', 4919, + '.', 3842, + '0', 3877, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(218); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 178: + case 146: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5037, - ',', 4194, - '-', 5036, - '.', 5031, - '0', 3981, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 4920, + ',', 4090, + '-', 4919, + '.', 4914, + '0', 3877, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 179: + case 147: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3895, - '+', 5037, - ',', 4194, - '-', 5036, - '.', 3944, - '0', 3981, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3794, + '+', 4920, + ',', 4090, + '-', 4919, + '.', 3842, + '0', 3877, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 180: + case 148: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 3690, - '-', 3734, - '.', 2141, - '0', 4054, - ':', 4199, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 180, - ' ', 180, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 3595, + '-', 3638, + '.', 4104, + '0', 3950, + ':', 4095, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(148); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 181: + case 149: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 3690, - '-', 3734, - '.', 2141, - '0', 4054, - ':', 4199, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 181, - ' ', 181, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 3595, + '-', 3638, + '.', 4104, + '0', 3950, + ':', 4095, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); - END_STATE(); - case 182: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 3690, - '-', 3734, - '.', 3948, - '0', 4054, - ':', 4199, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 180, - ' ', 180, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 183: + case 150: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 3690, - '-', 3734, - '.', 3948, - '0', 4054, - ':', 4199, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 181, - ' ', 181, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 3595, + '-', 3638, + '.', 2065, + '0', 3950, + ':', 4095, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == '\t' || + lookahead == ' ') SKIP(150); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 184: + case 151: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 3947, - '0', 4054, - ':', 3684, - '>', 3708, - 'I', 2917, - 'N', 2910, - ']', 3687, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 4103, + '0', 3950, + ':', 3589, + '>', 3613, + 'I', 2841, + 'N', 2834, + ']', 3592, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 185: + case 152: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 3947, - '0', 4054, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 4103, + '0', 3950, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 186: + case 153: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 3947, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 4104, + '0', 3950, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 187: + case 154: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 2141, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 4104, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 188: + case 155: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 2141, - '0', 3982, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2526, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 3845, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 189: + case 156: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 3948, - '0', 4054, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 2064, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 190: + case 157: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 3948, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 2064, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 191: + case 158: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 3948, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 2064, + '0', 3878, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2450, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 192: + case 159: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 2140, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 2065, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 193: + case 160: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 2140, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 2065, + '0', 3878, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2450, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 194: + case 161: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - ',', 4194, - '-', 3734, - '.', 2140, - '0', 3982, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2526, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + ',', 4090, + '-', 3638, + '.', 3846, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, + '\t', 4091, + ' ', 4091, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 195: + case 162: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 3947, - '0', 4054, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 4103, + '0', 3950, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(198); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 196: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 3947, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); - END_STATE(); - case 197: + case 163: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 3947, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 4103, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(165); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 198: + case 164: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2141, - '0', 4054, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 4104, + '0', 3950, + '?', 3764, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(198); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 199: + case 165: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2141, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 4104, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(165); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 200: + case 166: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2141, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 3845, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 201: + case 167: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2141, - '0', 3982, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2526, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2064, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 202: + case 168: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 3948, - '0', 4054, - '?', 3865, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2064, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(198); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 203: + case 169: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 3948, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2064, + '0', 3878, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2450, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 204: + case 170: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 3948, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2065, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 205: + case 171: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2140, - '0', 4054, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2065, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 206: + case 172: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2140, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 2065, + '0', 3878, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2450, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 207: + case 173: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3916, - '-', 3734, - '.', 2140, - '0', 3982, - 'E', 2528, - 'I', 2917, - 'N', 2910, - '_', 2526, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2527, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3815, + '-', 3638, + '.', 3846, + '0', 3950, + 'E', 2452, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2451, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 208: + case 174: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 4480, - ',', 4194, - '-', 497, - '.', 4476, - '0', 4048, - 'N', 4538, - '[', 3686, - '_', 3808, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4534, - 'o', 4472, - 't', 4521, - '{', 3803, - '}', 3804, - '\t', 4195, - ' ', 4195, - 'I', 4541, - 'i', 4541, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4370, + ',', 4090, + '-', 430, + '.', 4366, + '0', 3944, + 'N', 4428, + '[', 3591, + '_', 3707, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4424, + 'o', 4362, + 't', 4411, + '{', 3702, + '}', 3703, + '\t', 4091, + ' ', 4091, + 'I', 4431, + 'i', 4431, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); - case 209: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 4049, - ';', 4202, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 209, - ' ', 209, - 'I', 5084, - 'i', 5084, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(519); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); - END_STATE(); - case 210: + case 175: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 4049, - '?', 3865, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4913, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(210); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 211: + case 176: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4913, + '0', 3945, + 'N', 4961, + '[', 4037, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 212: + case 177: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 4049, - 'N', 5078, - '[', 4141, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4913, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 213: + case 178: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4913, + '0', 3877, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 214: + case 179: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5030, - '0', 3981, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4107, + '0', 3945, + '?', 3764, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 215: + case 180: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5032, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4107, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(186); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 216: + case 181: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5032, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4915, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 217: + case 182: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 5032, - '0', 3981, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4915, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 218: + case 183: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 3954, - '0', 4049, - '?', 3865, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4915, + '0', 3877, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(210); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 219: + case 184: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 3954, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4102, + '0', 3945, + ';', 4098, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 184, + ' ', 184, + 'I', 4967, + 'i', 4967, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(213); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 220: + case 185: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 3954, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4102, + '0', 3945, + '?', 3764, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 221: + case 186: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 3939, - '0', 4049, - ';', 4202, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 209, - ' ', 209, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 4102, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(519); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (lookahead == '\t' || + lookahead == ' ') SKIP(186); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 222: + case 187: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 3939, - '0', 4049, - '?', 3865, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 3852, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(210); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 223: + case 188: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 3690, - '-', 5033, - '.', 3939, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 3595, + '-', 4916, + '.', 3838, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 224: + case 189: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5030, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4913, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 225: + case 190: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5030, - '0', 4049, - 'N', 5078, - '[', 4141, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4913, + '0', 3945, + 'N', 4961, + '[', 4037, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 226: + case 191: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5030, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4913, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 227: + case 192: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5030, - '0', 3981, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4913, + '0', 3877, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 228: + case 193: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5032, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4107, + '0', 3945, + '?', 3764, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 229: + case 194: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5032, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4107, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 230: + case 195: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 5032, - '0', 3981, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5054, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4915, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3996); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 231: + case 196: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3954, - '0', 4049, - '?', 3865, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4915, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 232: + case 197: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3954, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4915, + '0', 3877, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4937, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 233: + case 198: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3954, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4102, + '0', 3945, + ';', 4098, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4092, + ' ', 4092, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 234: + case 199: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3939, - '0', 4049, - ';', 4202, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4196, - ' ', 4196, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4102, + '0', 3945, + '?', 3764, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4197); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 235: + case 200: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3939, - '0', 4049, - '?', 3865, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 4102, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 236: + case 201: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3939, - '0', 4049, - 'E', 5056, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5026, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 3852, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 237: + case 202: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5034, - ',', 4194, - '-', 5033, - '.', 3939, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5084, - 'i', 5084, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4917, + ',', 4090, + '-', 4916, + '.', 3838, + '0', 3945, + 'E', 4939, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4909, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 4967, + 'i', 4967, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 238: + case 203: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3918, - ',', 4194, - '-', 3742, - '.', 1984, - '0', 4055, - 'I', 2114, - 'N', 2111, - '[', 4141, - '_', 1998, - '`', 553, - 'a', 2057, - 'b', 2080, - 'c', 2011, - 'd', 2025, - 'e', 2063, - 'f', 2012, - 'h', 2050, - 'i', 1997, - 'l', 2035, - 'm', 2013, - 'n', 2102, - 'o', 2108, - 'r', 2026, - 's', 2070, - 't', 2076, - 'u', 2091, - 'w', 2048, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3817, + ',', 4090, + '-', 3644, + '.', 1908, + '0', 3951, + 'I', 2038, + 'N', 2035, + '[', 4037, + '_', 1922, + '`', 481, + 'a', 1981, + 'b', 2004, + 'c', 1935, + 'd', 1949, + 'e', 1987, + 'f', 1936, + 'h', 1974, + 'i', 1921, + 'l', 1959, + 'm', 1937, + 'n', 2026, + 'o', 2032, + 'r', 1950, + 's', 1994, + 't', 2000, + 'u', 2015, + 'w', 1972, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5393); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(5275); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2119); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); END_STATE(); - case 239: + case 204: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5117, - '0', 3980, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'd', 5150, - 'e', 5110, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 5000, + '0', 3876, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'd', 5033, + 'e', 4993, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 240: + case 205: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5117, - '0', 3980, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 5000, + '0', 3876, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 241: + case 206: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5117, - '0', 4053, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'd', 5150, - 'e', 5110, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 5000, + '0', 3949, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'd', 5033, + 'e', 4993, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 242: + case 207: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5117, - '0', 4053, - 'E', 5134, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'd', 5150, - 'e', 5107, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 5000, + '0', 3949, + 'E', 5017, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'd', 5033, + 'e', 4990, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 243: + case 208: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5117, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 5000, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 244: + case 209: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5117, - '0', 4053, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 5000, + '0', 3949, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 245: + case 210: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5116, - '0', 3980, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5136, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 4999, + '0', 3876, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5019, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3995); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 246: + case 211: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5116, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 4999, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 247: + case 212: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 5116, - '0', 4053, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 4999, + '0', 3949, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 248: + case 213: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 3956, - '0', 4053, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'N', 5179, - 'P', 5134, - 'T', 5134, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'd', 5150, - 'e', 5110, - 'f', 5149, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5170, - 'o', 5109, - 'p', 5133, - 's', 5155, - 't', 5132, - 'u', 5171, - 'w', 5158, - '{', 3803, - 0xb5, 5171, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 3853, + '0', 3949, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'N', 5062, + 'P', 5017, + 'T', 5017, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'd', 5033, + 'e', 4993, + 'f', 5032, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5053, + 'o', 4992, + 'p', 5016, + 's', 5038, + 't', 5015, + 'u', 5054, + 'w', 5041, + '{', 3702, + 0xb5, 5054, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 249: + case 214: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 3956, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 3853, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 250: + case 215: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 3690, - '-', 5121, - '.', 3946, - '0', 4053, - 'E', 5145, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5111, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 3595, + '-', 5004, + '.', 3843, + '0', 3949, + 'E', 5027, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4994, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5186); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + lookahead == 'i') ADVANCE(5069); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 251: + case 216: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5122, - ',', 4194, - '-', 5121, - '.', 5116, - '0', 4053, - 'N', 5179, - '[', 3686, - ']', 3687, - '_', 5141, - '`', 553, - 'e', 5108, - 'f', 5149, - 'n', 5175, - 'o', 5109, - 't', 5166, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5186, - 'i', 5186, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 5005, + ',', 4090, + '-', 5004, + '.', 4999, + '0', 3949, + 'N', 5062, + '[', 3591, + ']', 3592, + '_', 5031, + '`', 481, + 'e', 4991, + 'f', 5032, + 'n', 5058, + 'o', 4992, + 't', 5049, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5069, + 'i', 5069, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4076); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 252: + case 217: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 3919, - '-', 3739, - '.', 2142, - '0', 4054, - 'I', 2917, - 'N', 2910, - '_', 2521, - '`', 553, - 'a', 2699, - 'b', 2794, - 'c', 2537, - 'd', 2591, - 'e', 2712, - 'f', 2530, - 'h', 2666, - 'i', 2514, - 'l', 2608, - 'm', 2533, - 'n', 2881, - 'o', 2899, - 'r', 2592, - 's', 2747, - 't', 2785, - 'u', 2827, - 'w', 2656, - '}', 3804, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 3818, + '-', 3641, + '.', 2066, + '0', 3950, + 'I', 2841, + 'N', 2834, + '_', 2445, + '`', 481, + 'a', 2623, + 'b', 2718, + 'c', 2461, + 'd', 2515, + 'e', 2636, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2457, + 'n', 2805, + 'o', 2823, + 'r', 2516, + 's', 2671, + 't', 2709, + 'u', 2751, + 'w', 2580, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(252); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(217); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 253: + case 218: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3691, - '\'', 441, - '(', 3688, - '+', 5037, - ',', 3690, - '-', 5036, - '.', 5031, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + '+', 4920, + ',', 3595, + '-', 4919, + '.', 4914, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(253); + lookahead == ' ') SKIP(218); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); + lookahead == 'i') ADVANCE(4967); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 254: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - '+', 499, - '-', 3736, - '.', 500, - '0', 4409, - '=', 4390, - 'N', 4435, - '[', 3686, - '_', 4410, - '`', 553, - 'f', 4417, - 'n', 4424, - 't', 4425, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4440); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4416); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 255: + case 219: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 4202, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2321, - 'b', 2281, - 'c', 2155, - 'd', 2184, - 'e', 2158, - 'f', 2161, - 'g', 2273, - 'h', 2173, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2244, - 'm', 2163, - 'n', 2357, - 'o', 2466, - 'p', 2177, - 'q', 2459, - 'r', 2166, - 's', 2202, - 't', 2167, - 'u', 2368, - 'v', 2285, - 'w', 2280, - '{', 3803, - '\t', 255, - ' ', 255, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + ';', 4098, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2245, + 'b', 2205, + 'c', 2079, + 'd', 2108, + 'e', 2082, + 'f', 2085, + 'g', 2197, + 'h', 2097, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2168, + 'm', 2087, + 'n', 2281, + 'o', 2390, + 'p', 2101, + 'q', 2383, + 'r', 2090, + 's', 2126, + 't', 2091, + 'u', 2292, + 'v', 2209, + 'w', 2204, + '{', 3702, + '\t', 219, + ' ', 219, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(519); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); - case 256: + case 220: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2321, - 'b', 2282, - 'c', 2156, - 'd', 2185, - 'e', 2158, - 'f', 2161, - 'g', 2273, - 'h', 2173, - 'i', 2152, - 'j', 2409, - 'k', 2214, - 'l', 2244, - 'm', 2189, - 'n', 2357, - 'o', 2466, - 'p', 2177, - 'q', 2459, - 'r', 2165, - 's', 2202, - 't', 2168, - 'u', 2368, - 'v', 2285, - 'w', 2275, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2245, + 'b', 2206, + 'c', 2080, + 'd', 2109, + 'e', 2082, + 'f', 2085, + 'g', 2197, + 'h', 2097, + 'i', 2076, + 'j', 2333, + 'k', 2138, + 'l', 2168, + 'm', 2113, + 'n', 2281, + 'o', 2390, + 'p', 2101, + 'q', 2383, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2209, + 'w', 2199, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(256); + lookahead == ' ') SKIP(220); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); - END_STATE(); - case 257: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3721, - '.', 500, - '0', 4050, - '=', 1862, - '@', 3711, - 'N', 1659, - '[', 3686, - '_', 541, - '`', 553, - 'f', 669, - 'n', 1292, - 't', 1424, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(258); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1672); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); - END_STATE(); - case 258: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3721, - '.', 500, - '0', 4050, - '=', 1862, - 'N', 1659, - '[', 3686, - '_', 541, - '`', 553, - 'f', 669, - 'n', 1292, - 't', 1424, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(258); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1672); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); - END_STATE(); - case 259: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3735, - '.', 500, - '0', 4050, - 'N', 1659, - '[', 4141, - '_', 541, - '`', 553, - 'f', 669, - 'n', 1292, - 't', 1424, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1672); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); - END_STATE(); - case 260: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3735, - '.', 500, - '0', 4050, - 'N', 1659, - '[', 3686, - '_', 541, - '`', 553, - 'f', 669, - 'n', 1292, - 't', 1424, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1672); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); - case 261: + case 221: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 499, - '-', 3735, - '.', 500, - '0', 3442, - '=', 4390, - 'N', 3570, - '[', 3686, - '_', 3443, - '`', 553, - 'f', 3450, - 'n', 3519, - 't', 3524, - '{', 3803, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 430, + '.', 4366, + '0', 3944, + ':', 4095, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4424, + 'o', 4362, + 't', 4411, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(260); + lookahead == ' ') SKIP(221); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3582); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3449); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); - END_STATE(); - case 262: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4480, - '-', 497, - '.', 4476, - '0', 4048, - ':', 4199, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4534, - 'o', 4472, - 't', 4521, - '{', 3803, - '\t', 262, - ' ', 262, - 'I', 4541, - 'i', 4541, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); - END_STATE(); - case 263: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4480, - '-', 497, - '.', 4476, - ':', 4199, - 'N', 4538, - '_', 4493, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4534, - 'o', 4472, - 't', 4521, - '\t', 263, - ' ', 263, - 'I', 4541, - 'i', 4541, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); - case 264: + case 222: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4480, - '-', 497, - '.', 4476, - 'N', 4538, - '_', 4493, - '`', 553, - 'e', 4471, - 'f', 4506, - 'n', 4534, - 'o', 4472, - 't', 4521, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 430, + '.', 4366, + ':', 4095, + 'N', 4428, + '_', 4383, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4424, + 'o', 4362, + 't', 4411, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(264); + lookahead == ' ') SKIP(222); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4561); - END_STATE(); - case 265: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 5034, - '-', 5033, - '.', 5035, - '0', 4049, - 'N', 5078, - '[', 3686, - ']', 3687, - '_', 5045, - '`', 553, - 'e', 5024, - 'f', 5058, - 'n', 5075, - 'o', 5025, - 't', 5068, - '{', 3803, - '\t', 4198, - ' ', 4198, - 'I', 5084, - 'i', 5084, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4072); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5106); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); - case 266: + case 223: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4597, - '-', 3744, - '.', 4594, - '0', 3978, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4622, - '`', 553, - 'd', 4638, - 'e', 4614, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4682, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4370, + '-', 430, + '.', 4366, + 'N', 4428, + '_', 4383, + '`', 481, + 'e', 4361, + 'f', 4396, + 'n', 4424, + 'o', 4362, + 't', 4411, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == ' ') SKIP(223); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4431); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && + lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4451); END_STATE(); - case 267: + case 224: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4597, - '-', 3744, - '.', 4594, - '0', 4052, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4614, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4682, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 4917, + '-', 4916, + '.', 4918, + '0', 3945, + 'N', 4961, + '[', 3591, + ']', 3592, + '_', 4928, + '`', 481, + 'e', 4907, + 'f', 4941, + 'n', 4958, + 'o', 4908, + 't', 4951, + '{', 3702, + '\t', 4094, + ' ', 4094, + 'I', 4967, + 'i', 4967, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4989); END_STATE(); - case 268: + case 225: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4597, - '-', 3744, - '.', 4594, - '0', 4052, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4618, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4682, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + ',', 4090, + '-', 431, + '.', 2442, + 'I', 2843, + 'N', 2835, + ']', 3592, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, + '\t', 4091, + ' ', 4091, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 269: + case 226: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4597, - '-', 3744, - '.', 4593, - '0', 4052, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'f', 4637, - 'n', 4683, - 't', 4690, - '{', 3803, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 397, + '.', 4110, + '?', 3764, + 'I', 2843, + 'N', 2835, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); + lookahead == ' ') SKIP(226); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2855); END_STATE(); - case 270: + case 227: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 4597, - '-', 3744, - '.', 3955, - '0', 4052, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4614, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4682, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 397, + '.', 4110, + 'I', 2843, + 'N', 2835, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); - END_STATE(); - case 271: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - ',', 4194, - '-', 498, - '.', 2518, - 'I', 2919, - 'N', 2911, - ']', 3687, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - '\t', 4195, - ' ', 4195, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); - END_STATE(); - case 272: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 464, - '.', 2518, - ':', 4199, - 'I', 2919, - 'N', 2911, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - '\t', 272, - ' ', 272, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + lookahead == ' ') SKIP(227); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2855); END_STATE(); - case 273: + case 228: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 464, - '.', 2518, - '=', 4390, - 'I', 3583, - 'N', 3571, - '_', 3443, - '`', 553, - 'a', 3499, - 'b', 3531, - 'c', 3454, - 'd', 3464, - 'e', 3504, - 'f', 3456, - 'h', 3490, - 'i', 3438, - 'l', 3470, - 'm', 3451, - 'n', 3558, - 'o', 3563, - 'r', 3465, - 's', 3518, - 't', 3526, - 'u', 3541, - 'w', 3487, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 397, + '.', 2442, + '=', 4298, + 'I', 3496, + 'N', 3484, + '_', 3362, + '`', 481, + 'a', 3415, + 'b', 3445, + 'c', 3370, + 'd', 3380, + 'e', 3420, + 'f', 3372, + 'h', 3406, + 'i', 3359, + 'l', 3386, + 'm', 3367, + 'n', 3471, + 'o', 3476, + 'r', 3381, + 's', 3433, + 't', 3440, + 'u', 3455, + 'w', 3403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + lookahead == ' ') SKIP(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2931); - END_STATE(); - case 274: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 464, - '.', 2518, - '?', 3865, - 'I', 2919, - 'N', 2911, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); - END_STATE(); - case 275: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 464, - '.', 2518, - 'I', 2919, - 'N', 2911, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(275); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); - END_STATE(); - case 276: - ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 464, - '.', 3962, - '?', 3865, - 'I', 2919, - 'N', 2911, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 277: + case 229: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 464, - '.', 3962, - 'I', 2919, - 'N', 2911, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 397, + '.', 2442, + 'I', 2843, + 'N', 2835, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2931); + lookahead == ' ') SKIP(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2855); END_STATE(); - case 278: + case 230: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 4586, - '.', 2518, - 'I', 2919, - 'N', 2911, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 4476, + '.', 2442, + 'I', 2843, + 'N', 2835, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(229); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4763); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(4649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 279: + case 231: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 4586, - '.', 2143, - 'B', 4120, - 'E', 2508, - 'G', 2513, - 'I', 2919, - 'K', 2513, - 'M', 2513, - 'N', 2911, - 'P', 2513, - 'T', 2513, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 4125, - 'c', 2553, - 'd', 2544, - 'e', 2507, - 'f', 2531, - 'g', 2512, - 'h', 2682, - 'i', 2516, - 'k', 2512, - 'l', 2638, - 'm', 2509, - 'n', 2823, - 'o', 2900, - 'p', 2512, - 'r', 2639, - 's', 2614, - 't', 2511, - 'u', 2825, - 'w', 2662, - 0xb5, 2824, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 4476, + '.', 2067, + 'B', 4016, + 'E', 2432, + 'G', 2437, + 'I', 2843, + 'K', 2437, + 'M', 2437, + 'N', 2835, + 'P', 2437, + 'T', 2437, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 4021, + 'c', 2477, + 'd', 2468, + 'e', 2431, + 'f', 2455, + 'g', 2436, + 'h', 2606, + 'i', 2440, + 'k', 2436, + 'l', 2562, + 'm', 2433, + 'n', 2747, + 'o', 2824, + 'p', 2436, + 'r', 2563, + 's', 2538, + 't', 2435, + 'u', 2749, + 'w', 2586, + 0xb5, 2748, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(229); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4763); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(4649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 280: + case 232: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 4586, - '.', 2143, - 'B', 4120, - 'E', 2508, - 'G', 2513, - 'I', 2919, - 'K', 2513, - 'M', 2513, - 'N', 2911, - 'P', 2513, - 'T', 2513, - '_', 2526, - '`', 553, - 'a', 2721, - 'b', 4125, - 'c', 2553, - 'd', 2544, - 'e', 2507, - 'f', 2531, - 'g', 2512, - 'h', 2682, - 'i', 2516, - 'k', 2512, - 'l', 2638, - 'm', 2509, - 'n', 2823, - 'o', 2900, - 'p', 2512, - 'r', 2639, - 's', 2614, - 't', 2511, - 'u', 2825, - 'w', 2662, - 0xb5, 2824, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 4476, + '.', 2067, + 'B', 4016, + 'E', 2432, + 'G', 2437, + 'I', 2843, + 'K', 2437, + 'M', 2437, + 'N', 2835, + 'P', 2437, + 'T', 2437, + '_', 2450, + '`', 481, + 'a', 2645, + 'b', 4021, + 'c', 2477, + 'd', 2468, + 'e', 2431, + 'f', 2455, + 'g', 2436, + 'h', 2606, + 'i', 2440, + 'k', 2436, + 'l', 2562, + 'm', 2433, + 'n', 2747, + 'o', 2824, + 'p', 2436, + 'r', 2563, + 's', 2538, + 't', 2435, + 'u', 2749, + 'w', 2586, + 0xb5, 2748, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(229); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4763); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == '^') ADVANCE(4649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 281: + case 233: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 4586, - '.', 2143, - 'B', 4120, - 'E', 2513, - 'G', 2513, - 'I', 2919, - 'K', 2513, - 'M', 2513, - 'N', 2911, - 'P', 2513, - 'T', 2513, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 4125, - 'c', 2553, - 'd', 2544, - 'e', 2510, - 'f', 2531, - 'g', 2512, - 'h', 2682, - 'i', 2516, - 'k', 2512, - 'l', 2638, - 'm', 2509, - 'n', 2823, - 'o', 2900, - 'p', 2512, - 'r', 2639, - 's', 2614, - 't', 2511, - 'u', 2825, - 'w', 2662, - 0xb5, 2824, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 4476, + '.', 2067, + 'B', 4016, + 'E', 2437, + 'G', 2437, + 'I', 2843, + 'K', 2437, + 'M', 2437, + 'N', 2835, + 'P', 2437, + 'T', 2437, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 4021, + 'c', 2477, + 'd', 2468, + 'e', 2434, + 'f', 2455, + 'g', 2436, + 'h', 2606, + 'i', 2440, + 'k', 2436, + 'l', 2562, + 'm', 2433, + 'n', 2747, + 'o', 2824, + 'p', 2436, + 'r', 2563, + 's', 2538, + 't', 2435, + 'u', 2749, + 'w', 2586, + 0xb5, 2748, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(229); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4763); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(4649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 282: + case 234: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '+', 2136, - '-', 4586, - '.', 3952, - 'B', 4120, - 'E', 2508, - 'G', 2513, - 'I', 2919, - 'K', 2513, - 'M', 2513, - 'N', 2911, - 'P', 2513, - 'T', 2513, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 4125, - 'c', 2553, - 'd', 2544, - 'e', 2507, - 'f', 2531, - 'g', 2512, - 'h', 2682, - 'i', 2516, - 'k', 2512, - 'l', 2638, - 'm', 2509, - 'n', 2823, - 'o', 2900, - 'p', 2512, - 'r', 2639, - 's', 2614, - 't', 2511, - 'u', 2825, - 'w', 2662, - 0xb5, 2824, + '"', 4067, + '#', 5468, + '\'', 375, + '+', 2060, + '-', 4476, + '.', 3850, + 'B', 4016, + 'E', 2432, + 'G', 2437, + 'I', 2843, + 'K', 2437, + 'M', 2437, + 'N', 2835, + 'P', 2437, + 'T', 2437, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 4021, + 'c', 2477, + 'd', 2468, + 'e', 2431, + 'f', 2455, + 'g', 2436, + 'h', 2606, + 'i', 2440, + 'k', 2436, + 'l', 2562, + 'm', 2433, + 'n', 2747, + 'o', 2824, + 'p', 2436, + 'r', 2563, + 's', 2538, + 't', 2435, + 'u', 2749, + 'w', 2586, + 0xb5, 2748, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(229); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4763); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == '^') ADVANCE(4649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 283: + case 235: ADVANCE_MAP( - '"', 4171, - '#', 5586, - '\'', 441, - '.', 3936, - '>', 3708, - '?', 3865, - ']', 3687, - '`', 553, - '}', 3804, - '\t', 4198, - ' ', 4198, + '"', 4067, + '#', 5468, + '\'', 375, + '.', 4099, + ';', 4098, + '?', 3764, + '`', 481, + '\t', 235, + ' ', 235, ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + END_STATE(); + case 236: + if (lookahead == '"') ADVANCE(4067); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '\'') ADVANCE(375); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == '`') ADVANCE(481); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -25184,411 +22571,337 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3419); - END_STATE(); - case 284: - if (lookahead == '"') ADVANCE(4171); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '\'') ADVANCE(441); - if (lookahead == '`') ADVANCE(553); - if (lookahead == '\t' || - lookahead == ' ') SKIP(284); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); END_STATE(); - case 285: - if (lookahead == '"') ADVANCE(4171); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '\'') ADVANCE(4203); - if (lookahead == '`') ADVANCE(4204); - if (lookahead == '\t' || - lookahead == ' ') SKIP(284); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4205); + case 237: + ADVANCE_MAP( + '"', 4067, + '#', 5468, + '\'', 4111, + '.', 4099, + ';', 4098, + '?', 3764, + '`', 4112, + '\t', 235, + ' ', 235, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ',' && + lookahead != ':' && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4113); END_STATE(); - case 286: + case 238: ADVANCE_MAP( - '"', 4171, - '#', 5589, - '$', 3695, - '\'', 441, - '(', 3895, - '+', 3917, - ',', 2931, - '-', 3737, - '.', 5468, - '0', 5473, - 'I', 5571, - 'N', 5568, - '_', 5475, - '`', 553, - 'a', 5519, - 'b', 5541, - 'c', 5479, - 'd', 5490, - 'e', 5525, - 'f', 5480, - 'h', 5512, - 'i', 5472, - 'l', 5500, - 'm', 5481, - 'n', 5560, - 'o', 5566, - 'r', 5491, - 's', 5531, - 't', 5537, - 'u', 5549, - 'w', 5511, - '}', 3804, + '"', 4067, + '#', 5471, + '$', 3600, + '\'', 375, + '(', 3794, + '+', 3816, + ',', 2855, + '-', 3640, + '.', 5350, + '0', 5355, + 'I', 5453, + 'N', 5450, + '_', 5357, + '`', 481, + 'a', 5401, + 'b', 5423, + 'c', 5361, + 'd', 5372, + 'e', 5407, + 'f', 5362, + 'h', 5394, + 'i', 5354, + 'l', 5382, + 'm', 5363, + 'n', 5442, + 'o', 5448, + 'r', 5373, + 's', 5413, + 't', 5419, + 'u', 5431, + 'w', 5393, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5579); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5475); + lookahead == '^') ADVANCE(5461); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5357); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5577); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5459); END_STATE(); - case 287: + case 239: ADVANCE_MAP( - '"', 4171, - '#', 5589, - '$', 3695, - '\'', 441, - '(', 3895, - '+', 3917, - ',', 4194, - '-', 3737, - '.', 5468, - '0', 5473, - 'I', 5571, - 'N', 5568, - '_', 5475, - '`', 553, - 'a', 5519, - 'b', 5541, - 'c', 5479, - 'd', 5490, - 'e', 5525, - 'f', 5480, - 'h', 5512, - 'i', 5472, - 'l', 5500, - 'm', 5481, - 'n', 5560, - 'o', 5566, - 'r', 5491, - 's', 5531, - 't', 5537, - 'u', 5549, - 'w', 5511, - '}', 3804, - '\t', 4195, - ' ', 4195, + '"', 4067, + '#', 5471, + '$', 3600, + '\'', 375, + '(', 3794, + '+', 3816, + ',', 4090, + '-', 3640, + '.', 5350, + '0', 5355, + 'I', 5453, + 'N', 5450, + '_', 5357, + '`', 481, + 'a', 5401, + 'b', 5423, + 'c', 5361, + 'd', 5372, + 'e', 5407, + 'f', 5362, + 'h', 5394, + 'i', 5354, + 'l', 5382, + 'm', 5363, + 'n', 5442, + 'o', 5448, + 'r', 5373, + 's', 5413, + 't', 5419, + 'u', 5431, + 'w', 5393, + '}', 3703, + '\t', 4091, + ' ', 4091, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5579); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5475); + lookahead == '^') ADVANCE(5461); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5357); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5577); - END_STATE(); - case 288: - ADVANCE_MAP( - '"', 4171, - '#', 5592, - '$', 3693, - '\'', 441, - '(', 3688, - '+', 4793, - '-', 3738, - '.', 4794, - '0', 4815, - 'N', 4981, - '[', 3686, - '_', 4817, - '`', 553, - 'f', 4827, - 'n', 4910, - 't', 4914, - '{', 3803, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(260); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4991); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4820); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5022); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5459); END_STATE(); - case 289: + case 240: ADVANCE_MAP( - '"', 4171, - '#', 5592, - '\'', 441, - '+', 4795, - '-', 4785, - '.', 4822, - 'I', 4993, - 'N', 4982, - '_', 4826, - '`', 553, - 'a', 4885, - 'b', 4922, - 'c', 4828, - 'd', 4847, - 'e', 4882, - 'f', 4829, - 'h', 4868, - 'i', 4813, - 'l', 4851, - 'm', 4830, - 'n', 4960, - 'o', 4968, - 'r', 4848, - 's', 4900, - 't', 4921, - 'u', 4939, - 'w', 4867, + '"', 4067, + '#', 5474, + '\'', 375, + '+', 4681, + '-', 4671, + '.', 4708, + 'I', 4877, + 'N', 4866, + '_', 4712, + '`', 481, + 'a', 4771, + 'b', 4807, + 'c', 4714, + 'd', 4733, + 'e', 4768, + 'f', 4715, + 'h', 4754, + 'i', 4699, + 'l', 4737, + 'm', 4716, + 'n', 4844, + 'o', 4852, + 'r', 4734, + 's', 4786, + 't', 4806, + 'u', 4824, + 'w', 4753, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); + lookahead == ' ') SKIP(229); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); + lookahead == '^') ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4886); END_STATE(); - case 290: + case 241: ADVANCE_MAP( - '"', 4171, - '#', 5591, - '$', 3696, - '\'', 441, - '(', 3895, - '+', 5225, - ',', 4194, - '-', 5224, - '.', 5226, - '0', 5237, - 'N', 5266, - '[', 3686, - ']', 3687, - '_', 5239, - '`', 553, - 'e', 5218, - 'f', 5245, - 'n', 5262, - 'o', 5219, - 't', 5255, - '{', 3803, - '\t', 4195, - ' ', 4195, - 'I', 5271, - 'i', 5271, + '"', 4067, + '#', 5473, + '$', 3601, + '\'', 375, + '(', 3794, + '+', 5108, + ',', 4090, + '-', 5107, + '.', 5109, + '0', 5120, + 'N', 5149, + '[', 3591, + ']', 3592, + '_', 5122, + '`', 481, + 'e', 5101, + 'f', 5128, + 'n', 5145, + 'o', 5102, + 't', 5138, + '{', 3702, + '\t', 4091, + ' ', 4091, + 'I', 5154, + 'i', 5154, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5242); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5125); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5293); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5176); END_STATE(); - case 291: + case 242: ADVANCE_MAP( - '"', 4171, - '#', 5591, - '$', 3696, - '\'', 441, - '(', 3688, - '+', 5225, - ',', 3690, - '-', 5224, - '.', 5226, - '0', 5237, - 'N', 5266, - '[', 3686, - ']', 3687, - '_', 5239, - '`', 553, - 'e', 5218, - 'f', 5245, - 'n', 5262, - 'o', 5219, - 't', 5255, - '{', 3803, + '"', 4067, + '#', 5473, + '$', 3601, + '\'', 375, + '(', 3593, + '+', 5108, + ',', 3595, + '-', 5107, + '.', 5109, + '0', 5120, + 'N', 5149, + '[', 3591, + ']', 3592, + '_', 5122, + '`', 481, + 'e', 5101, + 'f', 5128, + 'n', 5145, + 'o', 5102, + 't', 5138, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(213); + lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5271); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5242); + lookahead == 'i') ADVANCE(5154); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5125); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5293); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5176); END_STATE(); - case 292: - if (lookahead == '"') ADVANCE(4171); - if (lookahead == '#') ADVANCE(4174); - if (lookahead == '\\') ADVANCE(1600); + case 243: + if (lookahead == '"') ADVANCE(4067); + if (lookahead == '#') ADVANCE(4070); + if (lookahead == '\\') ADVANCE(1524); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4173); - if (lookahead != 0) ADVANCE(4174); + lookahead == ' ') ADVANCE(4069); + if (lookahead != 0) ADVANCE(4070); END_STATE(); - case 293: - if (lookahead == '"') ADVANCE(4172); - if (lookahead == '#') ADVANCE(5595); - if (lookahead == '$') ADVANCE(3694); - if (lookahead == '\'') ADVANCE(4462); - if (lookahead == '(') ADVANCE(3688); - if (lookahead == '`') ADVANCE(4463); + case 244: + if (lookahead == '"') ADVANCE(4068); + if (lookahead == '#') ADVANCE(5477); + if (lookahead == '$') ADVANCE(3599); + if (lookahead == '\'') ADVANCE(4352); + if (lookahead == '(') ADVANCE(3593); + if (lookahead == '`') ADVANCE(4353); if (lookahead == '\t' || - lookahead == ' ') SKIP(293); + lookahead == ' ') SKIP(244); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); - END_STATE(); - case 294: - if (lookahead == '"') ADVANCE(4190); - if (lookahead == '#') ADVANCE(4181); - if (lookahead == '(') ADVANCE(3688); - if (lookahead == '\\') ADVANCE(1571); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4180); - if (lookahead != 0) ADVANCE(4181); - END_STATE(); - case 295: - ADVANCE_MAP( - '#', 5586, - '$', 3691, - '(', 3895, - '.', 3963, - '=', 4604, - '_', 4622, - 'i', 4655, - '|', 3651, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(328); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 296: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(3963); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '|') ADVANCE(3651); - if (lookahead == '\t' || - lookahead == ' ') SKIP(329); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 297: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(3963); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '{') ADVANCE(3803); + case 245: + if (lookahead == '"') ADVANCE(4086); + if (lookahead == '#') ADVANCE(4077); + if (lookahead == '(') ADVANCE(3593); + if (lookahead == '\\') ADVANCE(1495); if (lookahead == '\t' || - lookahead == ' ') SKIP(331); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') ADVANCE(4076); + if (lookahead != 0) ADVANCE(4077); END_STATE(); - case 298: + case 246: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '(', 3895, - '.', 4624, - '=', 4604, - '_', 4622, - 'i', 4655, - '|', 3651, + '#', 5468, + '$', 3596, + '(', 3794, + '.', 3859, + '=', 4494, + '_', 4512, + 'i', 4545, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(328); + lookahead == ' ') SKIP(275); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 299: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(4624); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '|') ADVANCE(3651); + case 247: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(329); + lookahead == ' ') SKIP(276); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 300: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(4624); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '{') ADVANCE(3803); + case 248: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(331); + lookahead == ' ') SKIP(278); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 301: + case 249: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '(', 3895, - '.', 3965, - ']', 3687, - '_', 5379, - '}', 3804, - '\t', 4198, - ' ', 4198, - '+', 5363, - '-', 5363, + '#', 5468, + '$', 3596, + '(', 3794, + '.', 3861, + ']', 3592, + '_', 5261, + '}', 3703, + '\t', 4094, + ' ', 4094, + '+', 5245, + '-', 5245, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -25596,24 +22909,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5393); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5275); END_STATE(); - case 302: + case 250: + ADVANCE_MAP( + '#', 5468, + '$', 3596, + '(', 3794, + '.', 4514, + '=', 4494, + '_', 4512, + 'i', 4545, + '|', 3556, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(275); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); + END_STATE(); + case 251: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4514); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '|') ADVANCE(3556); + if (lookahead == '\t' || + lookahead == ' ') SKIP(276); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); + END_STATE(); + case 252: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4514); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '{') ADVANCE(3702); + if (lookahead == '\t' || + lookahead == ' ') SKIP(278); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); + END_STATE(); + case 253: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '(', 3895, - '.', 5138, - ']', 3687, - '_', 5136, - '\t', 4198, - ' ', 4198, - '+', 5120, - '-', 5120, + '#', 5468, + '$', 3596, + '(', 3794, + '.', 3860, + ']', 3592, + '_', 5019, + '\t', 4094, + ' ', 4094, + '+', 5003, + '-', 5003, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -25621,24 +22981,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 303: + case 254: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '(', 3895, - '.', 3964, - ']', 3687, - '_', 5136, - '\t', 4198, - ' ', 4198, - '+', 5120, - '-', 5120, + '#', 5468, + '$', 3596, + '(', 3794, + '.', 5021, + ']', 3592, + '_', 5019, + '\t', 4094, + ' ', 4094, + '+', 5003, + '-', 5003, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -25646,715 +23006,524 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 304: + case 255: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '(', 3895, - '.', 5374, - '_', 5379, - '}', 3804, - '\t', 4198, - ' ', 4198, - '+', 5363, - '-', 5363, + '#', 5468, + '$', 3596, + '(', 3794, + '.', 5256, + '_', 5261, + '}', 3703, + '\t', 4094, + ' ', 4094, + '+', 5245, + '-', 5245, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5275); END_STATE(); - case 305: + case 256: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 3951, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 3849, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 306: + case 257: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 3951, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 3849, + 'E', 3273, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + 'd', 3286, + 'e', 3272, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 307: + case 258: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 4485, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 308: + case 259: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 4485, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 309: + case 260: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 4595, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 4485, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4508, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); + lookahead == ' ') SKIP(268); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 310: + case 261: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 4595, - 'E', 3356, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3355, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 4485, + 'E', 3280, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + 'd', 3286, + 'e', 3279, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 311: + case 262: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 4595, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - '_', 3360, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 4485, + 'E', 3273, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + '_', 3284, + 'd', 3286, + 'e', 3272, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 312: + case 263: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - '.', 4595, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '$', 3596, + '-', 3625, + '.', 4485, + 'E', 3273, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + 'd', 3286, + 'e', 3272, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 313: + case 264: ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - ':', 4199, - ';', 4202, - '=', 4390, - '{', 3803, - '\t', 314, - ' ', 314, + '#', 5468, + '$', 3596, + '-', 3625, + ';', 4098, + '=', 4298, + '{', 3702, + '\t', 265, + ' ', 265, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 314: - ADVANCE_MAP( - '#', 5586, - '$', 3691, - '-', 3720, - ':', 4199, - ';', 4202, - '{', 3803, - '\t', 314, - ' ', 314, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(515); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + case 265: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == ';') ADVANCE(4098); + if (lookahead == '{') ADVANCE(3702); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(265); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 315: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == '{') ADVANCE(3803); + case 266: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '=') ADVANCE(4298); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + lookahead == ' ') SKIP(268); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); END_STATE(); - case 316: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); - if (lookahead == '=') ADVANCE(4390); + case 267: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '=') ADVANCE(4298); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3569); + lookahead == ' ') SKIP(272); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3482); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3419); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3343); END_STATE(); - case 317: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); - if (lookahead == '{') ADVANCE(3803); + case 268: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); + lookahead == ' ') SKIP(268); END_STATE(); - case 318: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); - if (lookahead == '{') ADVANCE(3803); + case 269: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 319: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); - if (lookahead == '{') ADVANCE(3803); + case 270: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(319); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 320: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); + case 271: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(272); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 321: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3720); + case 272: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 322: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3731); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == '{') ADVANCE(3803); + case 273: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3635); + if (lookahead == '=') ADVANCE(4298); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(317); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == ' ') SKIP(268); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 323: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '-') ADVANCE(3731); - if (lookahead == '=') ADVANCE(4390); + case 274: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '-') ADVANCE(3635); + if (lookahead == '=') ADVANCE(4298); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(272); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(4461); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4444); + lookahead == '@') ADVANCE(4351); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4341); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3419); - END_STATE(); - case 324: - ADVANCE_MAP( - '#', 5586, - '$', 3691, - '.', 3951, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); - END_STATE(); - case 325: - ADVANCE_MAP( - '#', 5586, - '$', 3691, - '.', 4595, - 'E', 3356, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3355, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); - END_STATE(); - case 326: - ADVANCE_MAP( - '#', 5586, - '$', 3691, - '.', 4595, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - '_', 3360, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); - END_STATE(); - case 327: - ADVANCE_MAP( - '#', 5586, - '$', 3691, - '.', 4595, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3343); END_STATE(); - case 328: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '.') ADVANCE(545); - if (lookahead == '=') ADVANCE(524); - if (lookahead == 'i') ADVANCE(908); - if (lookahead == '|') ADVANCE(3651); + case 275: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '.') ADVANCE(474); + if (lookahead == '=') ADVANCE(454); + if (lookahead == 'i') ADVANCE(836); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(328); + lookahead == ' ') SKIP(275); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); + lookahead == '-') ADVANCE(437); END_STATE(); - case 329: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '.') ADVANCE(545); - if (lookahead == '=') ADVANCE(524); - if (lookahead == '|') ADVANCE(3651); + case 276: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '.') ADVANCE(474); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(329); + lookahead == ' ') SKIP(276); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); + lookahead == '-') ADVANCE(437); END_STATE(); - case 330: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '.') ADVANCE(545); - if (lookahead == ']') ADVANCE(3687); + case 277: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '.') ADVANCE(474); + if (lookahead == ']') ADVANCE(3592); if (lookahead == '\t' || - lookahead == ' ') SKIP(330); + lookahead == ' ') SKIP(277); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); + lookahead == '-') ADVANCE(437); END_STATE(); - case 331: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '.') ADVANCE(545); - if (lookahead == '{') ADVANCE(3803); + case 278: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '.') ADVANCE(474); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(331); + lookahead == ' ') SKIP(278); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); + lookahead == '-') ADVANCE(437); END_STATE(); - case 332: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '.') ADVANCE(545); + case 279: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '.') ADVANCE(474); if (lookahead == '\t' || - lookahead == ' ') SKIP(332); + lookahead == ' ') SKIP(279); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); - END_STATE(); - case 333: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if (lookahead == '!' || - lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(4461); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4444); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '.' < lookahead) && - (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3419); - END_STATE(); - case 334: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); - END_STATE(); - case 335: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '\t' || - lookahead == ' ') SKIP(335); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == '-') ADVANCE(437); END_STATE(); - case 336: + case 280: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 3951, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'P', 5134, - 'T', 5134, - ']', 3687, - 'd', 5150, - 'e', 5130, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5171, - 'p', 5133, - 's', 5155, - 't', 5133, - 'u', 5171, - 'w', 5158, - '}', 3804, - 0xb5, 5171, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 3849, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'P', 5017, + 'T', 5017, + ']', 3592, + 'd', 5033, + 'e', 5013, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5054, + 'p', 5016, + 's', 5038, + 't', 5016, + 'u', 5054, + 'w', 5041, + '}', 3703, + 0xb5, 5054, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26362,56 +23531,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 337: + case 281: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 3951, - 'E', 5365, - 'G', 5367, - 'K', 5367, - 'M', 5367, - 'P', 5367, - 'T', 5367, - 'd', 5380, - 'e', 5364, - 'g', 5366, - 'h', 5386, - 'k', 5366, - 'm', 5368, - 'n', 5387, - 'p', 5366, - 's', 5383, - 't', 5366, - 'u', 5387, - 'w', 5384, - '}', 3804, - 0xb5, 5387, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 3849, + 'E', 5247, + 'G', 5249, + 'K', 5249, + 'M', 5249, + 'P', 5249, + 'T', 5249, + 'd', 5262, + 'e', 5246, + 'g', 5248, + 'h', 5268, + 'k', 5248, + 'm', 5250, + 'n', 5269, + 'p', 5248, + 's', 5265, + 't', 5248, + 'u', 5269, + 'w', 5266, + '}', 3703, + 0xb5, 5269, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 338: + case 282: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 3951, - ']', 3687, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5145, - 'e', 5145, + '#', 5468, + '(', 3794, + '.', 3849, + ']', 3592, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5027, + 'e', 5027, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26419,37 +23588,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 339: + case 283: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 3951, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5377, - 'e', 5377, + '#', 5468, + '(', 3794, + '.', 3849, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5259, + 'e', 5259, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 340: + case 284: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 3936, - ']', 3687, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5377, - 'e', 5377, + '#', 5468, + '(', 3794, + '.', 3835, + ']', 3592, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5259, + 'e', 5259, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26458,21 +23627,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5393); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5275); END_STATE(); - case 341: + case 285: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 3936, - ']', 3687, - '\t', 4198, - ' ', 4198, - 'E', 5145, - 'e', 5145, + '#', 5468, + '(', 3794, + '.', 3835, + ']', 3592, + '\t', 4094, + ' ', 4094, + 'E', 5027, + 'e', 5027, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26480,43 +23649,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 342: + case 286: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5118, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'P', 5134, - 'T', 5134, - ']', 3687, - '_', 5136, - 'd', 5150, - 'e', 5130, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5171, - 'p', 5133, - 's', 5155, - 't', 5133, - 'u', 5171, - 'w', 5158, - '}', 3804, - 0xb5, 5171, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 5001, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'P', 5017, + 'T', 5017, + ']', 3592, + '_', 5019, + 'd', 5033, + 'e', 5013, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5054, + 'p', 5016, + 's', 5038, + 't', 5016, + 'u', 5054, + 'w', 5041, + '}', 3703, + 0xb5, 5054, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26525,41 +23694,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 343: + case 287: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5118, - 'E', 5131, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'P', 5134, - 'T', 5134, - ']', 3687, - 'd', 5150, - 'e', 5130, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5171, - 'p', 5133, - 's', 5155, - 't', 5133, - 'u', 5171, - 'w', 5158, - '}', 3804, - 0xb5, 5171, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 5001, + 'E', 5014, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'P', 5017, + 'T', 5017, + ']', 3592, + 'd', 5033, + 'e', 5013, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5054, + 'p', 5016, + 's', 5038, + 't', 5016, + 'u', 5054, + 'w', 5041, + '}', 3703, + 0xb5, 5054, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26567,41 +23736,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 344: + case 288: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5118, - 'E', 5134, - 'G', 5134, - 'K', 5134, - 'M', 5134, - 'P', 5134, - 'T', 5134, - ']', 3687, - 'd', 5150, - 'e', 5133, - 'g', 5133, - 'h', 5165, - 'k', 5133, - 'm', 5135, - 'n', 5171, - 'p', 5133, - 's', 5155, - 't', 5133, - 'u', 5171, - 'w', 5158, - '}', 3804, - 0xb5, 5171, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 5001, + 'E', 5017, + 'G', 5017, + 'K', 5017, + 'M', 5017, + 'P', 5017, + 'T', 5017, + ']', 3592, + 'd', 5033, + 'e', 5016, + 'g', 5016, + 'h', 5048, + 'k', 5016, + 'm', 5018, + 'n', 5054, + 'p', 5016, + 's', 5038, + 't', 5016, + 'u', 5054, + 'w', 5041, + '}', 3703, + 0xb5, 5054, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26609,24 +23778,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 345: + case 289: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5118, - ']', 3687, - '_', 5136, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5145, - 'e', 5145, + '#', 5468, + '(', 3794, + '.', 5001, + ']', 3592, + '_', 5019, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5027, + 'e', 5027, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26635,22 +23804,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 346: + case 290: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5118, - ']', 3687, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5145, - 'e', 5145, + '#', 5468, + '(', 3794, + '.', 5001, + ']', 3592, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5027, + 'e', 5027, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26658,18 +23827,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 347: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(5118); - if (lookahead == ']') ADVANCE(3687); - if (lookahead == '}') ADVANCE(3804); + case 291: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5001); + if (lookahead == ']') ADVANCE(3592); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26677,169 +23846,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 348: + case 292: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5357, - 'E', 5365, - 'G', 5367, - 'K', 5367, - 'M', 5367, - 'P', 5367, - 'T', 5367, - '_', 5379, - 'd', 5380, - 'e', 5364, - 'g', 5366, - 'h', 5386, - 'k', 5366, - 'm', 5368, - 'n', 5387, - 'p', 5366, - 's', 5383, - 't', 5366, - 'u', 5387, - 'w', 5384, - '}', 3804, - 0xb5, 5387, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 5239, + 'E', 5247, + 'G', 5249, + 'K', 5249, + 'M', 5249, + 'P', 5249, + 'T', 5249, + '_', 5261, + 'd', 5262, + 'e', 5246, + 'g', 5248, + 'h', 5268, + 'k', 5248, + 'm', 5250, + 'n', 5269, + 'p', 5248, + 's', 5265, + 't', 5248, + 'u', 5269, + 'w', 5266, + '}', 3703, + 0xb5, 5269, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 349: + case 293: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5357, - 'E', 5365, - 'G', 5367, - 'K', 5367, - 'M', 5367, - 'P', 5367, - 'T', 5367, - 'd', 5380, - 'e', 5364, - 'g', 5366, - 'h', 5386, - 'k', 5366, - 'm', 5368, - 'n', 5387, - 'p', 5366, - 's', 5383, - 't', 5366, - 'u', 5387, - 'w', 5384, - '}', 3804, - 0xb5, 5387, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 5239, + 'E', 5247, + 'G', 5249, + 'K', 5249, + 'M', 5249, + 'P', 5249, + 'T', 5249, + 'd', 5262, + 'e', 5246, + 'g', 5248, + 'h', 5268, + 'k', 5248, + 'm', 5250, + 'n', 5269, + 'p', 5248, + 's', 5265, + 't', 5248, + 'u', 5269, + 'w', 5266, + '}', 3703, + 0xb5, 5269, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 350: + case 294: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5357, - 'E', 5367, - 'G', 5367, - 'K', 5367, - 'M', 5367, - 'P', 5367, - 'T', 5367, - 'd', 5380, - 'e', 5366, - 'g', 5366, - 'h', 5386, - 'k', 5366, - 'm', 5368, - 'n', 5387, - 'p', 5366, - 's', 5383, - 't', 5366, - 'u', 5387, - 'w', 5384, - '}', 3804, - 0xb5, 5387, - '\t', 4198, - ' ', 4198, - 'B', 4120, - 'b', 4120, + '#', 5468, + '(', 3794, + '.', 5239, + 'E', 5249, + 'G', 5249, + 'K', 5249, + 'M', 5249, + 'P', 5249, + 'T', 5249, + 'd', 5262, + 'e', 5248, + 'g', 5248, + 'h', 5268, + 'k', 5248, + 'm', 5250, + 'n', 5269, + 'p', 5248, + 's', 5265, + 't', 5248, + 'u', 5269, + 'w', 5266, + '}', 3703, + 0xb5, 5269, + '\t', 4094, + ' ', 4094, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 351: + case 295: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5357, - '_', 5379, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5377, - 'e', 5377, + '#', 5468, + '(', 3794, + '.', 5239, + '_', 5261, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5259, + 'e', 5259, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 352: + case 296: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '.', 5357, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5377, - 'e', 5377, + '#', 5468, + '(', 3794, + '.', 5239, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5259, + 'e', 5259, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 353: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(5357); - if (lookahead == '}') ADVANCE(3804); + case 297: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5239); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 354: + case 298: ADVANCE_MAP( - '#', 5586, - '(', 3895, - ']', 3687, - '_', 5136, - '\t', 4198, - ' ', 4198, - 'E', 5145, - 'e', 5145, + '#', 5468, + '(', 3794, + ']', 3592, + '_', 5019, + '\t', 4094, + ' ', 4094, + 'E', 5027, + 'e', 5027, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26848,18 +24017,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 355: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == ']') ADVANCE(3687); + case 299: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == ']') ADVANCE(3592); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5145); + lookahead == 'e') ADVANCE(5027); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26867,16 +24036,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 356: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == ']') ADVANCE(3687); + case 300: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == ']') ADVANCE(3592); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26884,1311 +24053,1133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5208); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5091); END_STATE(); - case 357: + case 301: ADVANCE_MAP( - '#', 5586, - '(', 3895, - '_', 5379, - '}', 3804, - '\t', 4198, - ' ', 4198, - 'E', 5377, - 'e', 5377, + '#', 5468, + '(', 3794, + '_', 5261, + '}', 3703, + '\t', 4094, + ' ', 4094, + 'E', 5259, + 'e', 5259, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 358: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '}') ADVANCE(3804); + case 302: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5377); + lookahead == 'e') ADVANCE(5259); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 359: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '}') ADVANCE(3804); + case 303: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 360: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == ',') ADVANCE(3690); - if (lookahead == ']') ADVANCE(3687); + case 304: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == ',') ADVANCE(3595); + if (lookahead == ']') ADVANCE(3592); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); + lookahead == ' ') SKIP(304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4038); END_STATE(); - case 361: + case 305: ADVANCE_MAP( - '#', 5586, - ',', 4194, - '.', 3936, - ';', 4202, - '?', 3865, - ']', 3687, - '\t', 4196, - ' ', 4196, + '#', 5468, + ',', 4090, + '.', 4099, + ';', 4098, + '?', 3764, + ']', 3592, + '\t', 4092, + ' ', 4092, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4197); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); END_STATE(); - case 362: + case 306: ADVANCE_MAP( - '#', 5586, - '-', 3720, - '.', 3951, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '-', 3625, + '.', 3849, + 'E', 3273, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + 'd', 3286, + 'e', 3272, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(311); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 363: + case 307: ADVANCE_MAP( - '#', 5586, - '-', 3720, - '.', 4595, - 'E', 3356, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3355, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '-', 3625, + '.', 4485, + 'E', 3280, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + 'd', 3286, + 'e', 3279, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(311); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 364: + case 308: ADVANCE_MAP( - '#', 5586, - '-', 3720, - '.', 4595, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - '_', 3360, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '-', 3625, + '.', 4485, + 'E', 3273, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + '_', 3284, + 'd', 3286, + 'e', 3272, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(311); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 365: + case 309: ADVANCE_MAP( - '#', 5586, - '-', 3720, - '.', 4595, - 'E', 3349, - 'G', 3356, - 'K', 3356, - 'M', 3356, - 'P', 3356, - 'T', 3356, - 'd', 3362, - 'e', 3348, - 'g', 3355, - 'h', 3393, - 'k', 3355, - 'm', 3357, - 'n', 3397, - 'p', 3355, - 's', 3372, - 't', 3355, - 'u', 3397, - 'w', 3376, - 0xb5, 3397, + '#', 5468, + '-', 3625, + '.', 4485, + 'E', 3273, + 'G', 3280, + 'K', 3280, + 'M', 3280, + 'P', 3280, + 'T', 3280, + 'd', 3286, + 'e', 3272, + 'g', 3279, + 'h', 3317, + 'k', 3279, + 'm', 3281, + 'n', 3321, + 'p', 3279, + 's', 3296, + 't', 3279, + 'u', 3321, + 'w', 3300, + 0xb5, 3321, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(311); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 366: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '-') ADVANCE(3720); + case 310: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(311); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4763); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3419); + lookahead == '^') ADVANCE(4649); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); END_STATE(); - case 367: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '-') ADVANCE(3720); + case 311: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == ' ') SKIP(311); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 368: - ADVANCE_MAP( - '#', 5586, - '-', 529, - ':', 4199, - '<', 3179, - '=', 1862, - '>', 3708, - '@', 3711, - 'h', 3375, - 'u', 3399, - '{', 3803, - '\t', 369, - ' ', 369, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); - END_STATE(); - case 369: + case 312: ADVANCE_MAP( - '#', 5586, - '-', 529, - ':', 4199, - '=', 1862, - '>', 3708, - 'h', 3375, - 'u', 3399, - '{', 3803, - '\t', 369, - ' ', 369, + '#', 5468, + '-', 459, + ':', 4095, + '<', 3103, + '=', 1786, + '>', 3613, + '@', 3616, + 'h', 3299, + 'u', 3323, + '{', 3702, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + if (lookahead == '\t' || + lookahead == ' ') SKIP(313); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 370: + case 313: ADVANCE_MAP( - '#', 5586, - '.', 3951, - ':', 3684, - '<', 3179, - '>', 3708, - '?', 3865, - '@', 3711, - '[', 3686, - ']', 3687, - 'c', 3368, - 'e', 3394, - 'f', 3403, - 'i', 3382, - 'o', 3385, - 'v', 3363, - '}', 3804, - '\t', 4198, - ' ', 4198, + '#', 5468, + '-', 459, + ':', 4095, + '=', 1786, + '>', 3613, + 'h', 3299, + 'u', 3323, + '{', 3702, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3419); + if (lookahead == '\t' || + lookahead == ' ') SKIP(313); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 371: + case 314: ADVANCE_MAP( - '#', 5586, - '.', 3951, - '=', 4604, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'i', 4655, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 3849, + '=', 4494, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'i', 4545, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 372: + case 315: ADVANCE_MAP( - '#', 5586, - '.', 3951, - '=', 4604, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 3849, + '=', 4494, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 373: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3951); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 316: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3849); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 374: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3951); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '|') ADVANCE(3651); + case 317: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3849); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 375: - ADVANCE_MAP( - '#', 5586, - '.', 3951, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 376: + case 318: ADVANCE_MAP( - '#', 5586, - '.', 3951, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '.', 3849, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 377: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3951); - if (lookahead == '{') ADVANCE(3803); + case 319: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3849); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 378: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3963); - if (lookahead == '_') ADVANCE(4622); + case 320: + ADVANCE_MAP( + '#', 5468, + '.', 4105, + ':', 3589, + '<', 3103, + '>', 3613, + '?', 3764, + '@', 3616, + '[', 3591, + ']', 3592, + 'c', 3292, + 'e', 3318, + 'f', 3327, + 'i', 3306, + 'o', 3309, + 'v', 3287, + '}', 3703, + '\t', 4094, + ' ', 4094, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4090); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); + END_STATE(); + case 321: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '_') ADVANCE(4512); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(344); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 379: + case 322: ADVANCE_MAP( - '#', 5586, - '.', 4595, - '=', 4604, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'i', 4655, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 4485, + '=', 4494, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'i', 4545, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 380: + case 323: ADVANCE_MAP( - '#', 5586, - '.', 4595, - '=', 4604, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 4485, + '=', 4494, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 381: + case 324: ADVANCE_MAP( - '#', 5586, - '.', 4595, - '=', 4604, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'i', 4655, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 4485, + '=', 4494, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'i', 4545, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 382: + case 325: ADVANCE_MAP( - '#', 5586, - '.', 4595, - '=', 4604, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 4485, + '=', 4494, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 383: + case 326: ADVANCE_MAP( - '#', 5586, - '.', 4595, - '=', 4604, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'i', 4655, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 4485, + '=', 4494, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4508, + 'g', 4508, + 'h', 4577, + 'i', 4545, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 384: + case 327: ADVANCE_MAP( - '#', 5586, - '.', 4595, - '=', 4604, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - 0xb5, 4699, + '#', 5468, + '.', 4485, + '=', 4494, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4508, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 385: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 328: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 386: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '|') ADVANCE(3651); + case 329: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 387: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 330: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 388: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 331: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 389: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '|') ADVANCE(3651); + case 332: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 390: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '|') ADVANCE(3651); - if (lookahead == '\t' || - lookahead == ' ') SKIP(407); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 391: - ADVANCE_MAP( - '#', 5586, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 392: - ADVANCE_MAP( - '#', 5586, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 393: - ADVANCE_MAP( - '#', 5586, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, - ); + case 333: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 394: + case 334: ADVANCE_MAP( - '#', 5586, - '.', 4595, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '.', 4485, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 395: + case 335: ADVANCE_MAP( - '#', 5586, - '.', 4595, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 0xb5, 4699, + '#', 5468, + '.', 4485, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 396: + case 336: ADVANCE_MAP( - '#', 5586, - '.', 4595, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '{', 3803, - 0xb5, 4699, + '#', 5468, + '.', 4485, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4508, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '{', 3702, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 397: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '{') ADVANCE(3803); + case 337: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 398: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '{') ADVANCE(3803); + case 338: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 399: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4595); - if (lookahead == '{') ADVANCE(3803); + case 339: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4485); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 400: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3936); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 340: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3835); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 401: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3936); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '|') ADVANCE(3651); + case 341: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3835); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 402: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(3936); - if (lookahead == '{') ADVANCE(3803); + case 342: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(3835); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 403: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4624); - if (lookahead == '_') ADVANCE(4622); + case 343: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4514); + if (lookahead == '_') ADVANCE(4512); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(344); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 404: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(545); + case 344: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(474); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(344); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); - END_STATE(); - case 405: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == ':') ADVANCE(4199); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(405); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - END_STATE(); - case 406: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(524); - if (lookahead == 'i') ADVANCE(908); - if (lookahead == '|') ADVANCE(3651); - if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == '-') ADVANCE(437); END_STATE(); - case 407: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(524); - if (lookahead == '|') ADVANCE(3651); + case 345: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == ':') ADVANCE(4095); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(345); END_STATE(); - case 408: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == 'i') ADVANCE(4423); + case 346: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(454); + if (lookahead == 'i') ADVANCE(836); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == ' ') SKIP(346); END_STATE(); - case 409: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == 'i') ADVANCE(3510); + case 347: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(454); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + lookahead == ' ') SKIP(347); END_STATE(); - case 410: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4390); - if (lookahead == '{') ADVANCE(3803); + case 348: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4298); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == ' ') SKIP(357); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 411: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 349: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 412: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '|') ADVANCE(3651); + case 350: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 413: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 351: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); + lookahead == ' ') SKIP(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 414: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == 'i') ADVANCE(4655); - if (lookahead == '|') ADVANCE(3651); + case 352: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == 'i') ADVANCE(4545); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 415: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '|') ADVANCE(3651); + case 353: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); + lookahead == ' ') SKIP(347); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 416: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '=') ADVANCE(4604); - if (lookahead == '|') ADVANCE(3651); + case 354: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '=') ADVANCE(4494); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 417: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '_') ADVANCE(4622); - if (lookahead == '{') ADVANCE(3803); + case 355: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '_') ADVANCE(4512); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 418: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == 'i') ADVANCE(4670); - if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 419: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == 'i') ADVANCE(3384); - if (lookahead == '\t' || - lookahead == ' ') SKIP(419); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3419); + lookahead == 'e') ADVANCE(4523); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 420: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == 'i') ADVANCE(1181); + case 356: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == 'i') ADVANCE(3308); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); + lookahead == ' ') SKIP(356); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); END_STATE(); - case 421: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '{') ADVANCE(3803); + case 357: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); END_STATE(); - case 422: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '{') ADVANCE(3803); + case 358: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); + lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'e') ADVANCE(4523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 423: - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '{') ADVANCE(3803); + case 359: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 424: - if (lookahead == '#') ADVANCE(5586); + case 360: + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); + lookahead == ' ') SKIP(360); END_STATE(); - case 425: - if (lookahead == '#') ADVANCE(5586); + case 361: + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3747); + lookahead == ' ') SKIP(360); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3648); END_STATE(); - case 426: - if (lookahead == '#') ADVANCE(5586); + case 362: + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4207); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4115); END_STATE(); - case 427: - if (lookahead == '#') ADVANCE(5586); + case 363: + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 428: - if (lookahead == '#') ADVANCE(5586); + case 364: + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 429: - if (lookahead == '#') ADVANCE(5589); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '}') ADVANCE(3804); + case 365: + if (lookahead == '#') ADVANCE(5471); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); - END_STATE(); - case 430: - if (lookahead == '#') ADVANCE(5589); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + lookahead == ',') ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 431: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '$') ADVANCE(3697); - if (lookahead == '-') ADVANCE(3729); - if (lookahead == '{') ADVANCE(3803); + case 366: + if (lookahead == '#') ADVANCE(5471); + if (lookahead == '(') ADVANCE(3794); if (lookahead == '\t' || - lookahead == ' ') SKIP(319); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5022); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5006); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 432: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '$') ADVANCE(3697); + case 367: + if (lookahead == '#') ADVANCE(5474); + if (lookahead == '$') ADVANCE(3602); + if (lookahead == '-') ADVANCE(3633); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(335); + lookahead == ' ') SKIP(270); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5022); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5006); + lookahead == '^') ADVANCE(4905); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4889); END_STATE(); - case 433: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '{') ADVANCE(3803); + case 368: + if (lookahead == '#') ADVANCE(5474); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(357); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 434: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '-') ADVANCE(3729); + case 369: + if (lookahead == '#') ADVANCE(5474); + if (lookahead == '-') ADVANCE(3633); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(311); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5022); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5006); + lookahead == '^') ADVANCE(4905); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4889); END_STATE(); - case 435: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '=') ADVANCE(4808); - if (lookahead == 'i') ADVANCE(4861); - if (lookahead == '|') ADVANCE(3651); - if (lookahead == '\t' || - lookahead == ' ') SKIP(406); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); - END_STATE(); - case 436: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == '=') ADVANCE(4808); - if (lookahead == '|') ADVANCE(3651); + case 370: + if (lookahead == '#') ADVANCE(5474); + if (lookahead == '=') ADVANCE(4694); + if (lookahead == 'i') ADVANCE(4747); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(407); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 437: - if (lookahead == '#') ADVANCE(5592); - if (lookahead == 'i') ADVANCE(4891); + case 371: + if (lookahead == '#') ADVANCE(5474); + if (lookahead == '=') ADVANCE(4694); + if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || - lookahead == ' ') SKIP(420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 438: - if (lookahead == '#') ADVANCE(5591); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == ']') ADVANCE(3687); + case 372: + if (lookahead == '#') ADVANCE(5473); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == ']') ADVANCE(3592); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -28196,8612 +25187,8563 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5293); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5176); END_STATE(); - case 439: - if (lookahead == '#') ADVANCE(5591); - if (lookahead == '(') ADVANCE(3895); + case 373: + if (lookahead == '#') ADVANCE(5473); + if (lookahead == '(') ADVANCE(3794); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 440: - if (lookahead == '#') ADVANCE(4183); - if (lookahead == '\'') ADVANCE(4186); - if (lookahead == '(') ADVANCE(3688); + case 374: + if (lookahead == '#') ADVANCE(4079); + if (lookahead == '\'') ADVANCE(4082); + if (lookahead == '(') ADVANCE(3593); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4182); - if (lookahead != 0) ADVANCE(4183); + lookahead == ' ') ADVANCE(4078); + if (lookahead != 0) ADVANCE(4079); + END_STATE(); + case 375: + if (lookahead == '\'') ADVANCE(4071); + if (lookahead != 0) ADVANCE(375); + END_STATE(); + case 376: + ADVANCE_MAP( + '+', 478, + '-', 480, + '>', 4251, + 'I', 1584, + '_', 480, + 'i', 1584, + 'n', 709, + 'r', 1291, + 'B', 4016, + 'b', 4016, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + END_STATE(); + case 377: + if (lookahead == '+') ADVANCE(478); + if (lookahead == '-') ADVANCE(480); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'l') ADVANCE(1391); + if (lookahead == 'n') ADVANCE(709); + if (lookahead == 'r') ADVANCE(1291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + END_STATE(); + case 378: + if (lookahead == '+') ADVANCE(1176); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'l') ADVANCE(1391); + if (lookahead == 'n') ADVANCE(709); + if (lookahead == 'r') ADVANCE(1291); + END_STATE(); + case 379: + if (lookahead == '+') ADVANCE(1176); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'n') ADVANCE(709); + if (lookahead == 'r') ADVANCE(1291); + END_STATE(); + case 380: + if (lookahead == '+') ADVANCE(1211); + if (lookahead == '>') ADVANCE(4243); + END_STATE(); + case 381: + if (lookahead == '+') ADVANCE(1185); + if (lookahead == '>') ADVANCE(1573); + if (lookahead == 'l') ADVANCE(1391); + if (lookahead == 'r') ADVANCE(1300); + if (lookahead == 'x') ADVANCE(1463); + END_STATE(); + case 382: + if (lookahead == '+') ADVANCE(1185); + if (lookahead == '>') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(709); + if (lookahead == 'r') ADVANCE(1300); + END_STATE(); + case 383: + if (lookahead == '+') ADVANCE(1185); + if (lookahead == '>') ADVANCE(1573); + if (lookahead == 'r') ADVANCE(1300); + END_STATE(); + case 384: + if (lookahead == '+') ADVANCE(738); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(1416); + END_STATE(); + case 385: + if (lookahead == '+') ADVANCE(803); + if (lookahead == '>') ADVANCE(4247); + END_STATE(); + case 386: + if (lookahead == '+') ADVANCE(759); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(1422); + END_STATE(); + case 387: + if (lookahead == '+') ADVANCE(759); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'u') ADVANCE(1422); + END_STATE(); + case 388: + if (lookahead == '+') ADVANCE(1230); + if (lookahead == '>') ADVANCE(1576); + END_STATE(); + case 389: + if (lookahead == '+') ADVANCE(817); + if (lookahead == '>') ADVANCE(1578); + END_STATE(); + case 390: + if (lookahead == '-') ADVANCE(1249); + END_STATE(); + case 391: + if (lookahead == '-') ADVANCE(693); + END_STATE(); + case 392: + if (lookahead == '-') ADVANCE(849); + END_STATE(); + case 393: + if (lookahead == '-') ADVANCE(1070); + END_STATE(); + case 394: + if (lookahead == '-') ADVANCE(980); + if (lookahead == 'f') ADVANCE(1450); + END_STATE(); + case 395: + if (lookahead == '-') ADVANCE(683); + END_STATE(); + case 396: + if (lookahead == '-') ADVANCE(857); + END_STATE(); + case 397: + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + END_STATE(); + case 398: + if (lookahead == '-') ADVANCE(582); + END_STATE(); + case 399: + if (lookahead == '-') ADVANCE(989); + END_STATE(); + case 400: + if (lookahead == '-') ADVANCE(1323); + END_STATE(); + case 401: + if (lookahead == '-') ADVANCE(663); + END_STATE(); + case 402: + if (lookahead == '-') ADVANCE(1544); + END_STATE(); + case 403: + if (lookahead == '-') ADVANCE(611); + END_STATE(); + case 404: + if (lookahead == '-') ADVANCE(1529); + if (lookahead == 'o') ADVANCE(1406); + END_STATE(); + case 405: + if (lookahead == '-') ADVANCE(1260); + END_STATE(); + case 406: + if (lookahead == '-') ADVANCE(1384); + END_STATE(); + case 407: + if (lookahead == '-') ADVANCE(662); + END_STATE(); + case 408: + if (lookahead == '-') ADVANCE(1402); + END_STATE(); + case 409: + if (lookahead == '-') ADVANCE(1505); + END_STATE(); + case 410: + if (lookahead == '-') ADVANCE(1128); + END_STATE(); + case 411: + if (lookahead == '-') ADVANCE(1115); + END_STATE(); + case 412: + if (lookahead == '-') ADVANCE(1153); + END_STATE(); + case 413: + if (lookahead == '-') ADVANCE(1417); + END_STATE(); + case 414: + if (lookahead == '-') ADVANCE(1172); + END_STATE(); + case 415: + if (lookahead == '-') ADVANCE(1486); + END_STATE(); + case 416: + if (lookahead == '-') ADVANCE(1227); + END_STATE(); + case 417: + if (lookahead == '-') ADVANCE(1508); + END_STATE(); + case 418: + if (lookahead == '-') ADVANCE(655); + END_STATE(); + case 419: + if (lookahead == '-') ADVANCE(1615); + END_STATE(); + case 420: + if (lookahead == '-') ADVANCE(1469); + END_STATE(); + case 421: + if (lookahead == '-') ADVANCE(1385); + END_STATE(); + case 422: + if (lookahead == '-') ADVANCE(944); + END_STATE(); + case 423: + if (lookahead == '-') ADVANCE(944); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); + END_STATE(); + case 424: + if (lookahead == '-') ADVANCE(1547); + END_STATE(); + case 425: + if (lookahead == '-') ADVANCE(644); + END_STATE(); + case 426: + if (lookahead == '-') ADVANCE(1274); + END_STATE(); + case 427: + if (lookahead == '-') ADVANCE(1277); + END_STATE(); + case 428: + if (lookahead == '-') ADVANCE(1551); + END_STATE(); + case 429: + if (lookahead == '.') ADVANCE(468); + if (lookahead == '>') ADVANCE(3590); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + END_STATE(); + case 430: + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + END_STATE(); + case 431: + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1597); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + END_STATE(); + case 432: + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + END_STATE(); + case 433: + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + END_STATE(); + case 434: + if (lookahead == '.') ADVANCE(3617); + END_STATE(); + case 435: + if (lookahead == '.') ADVANCE(434); + END_STATE(); + case 436: + if (lookahead == '.') ADVANCE(434); + if (lookahead == '_') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + END_STATE(); + case 437: + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + END_STATE(); + case 438: + if (lookahead == '2') ADVANCE(4241); + END_STATE(); + case 439: + if (lookahead == '2') ADVANCE(1604); + if (lookahead == '0' || + lookahead == '1') ADVANCE(1610); + END_STATE(); + case 440: + if (lookahead == '2') ADVANCE(445); END_STATE(); case 441: - if (lookahead == '\'') ADVANCE(4175); - if (lookahead != 0) ADVANCE(441); + if (lookahead == '2') ADVANCE(4175); END_STATE(); case 442: - if (lookahead == '+') ADVANCE(550); - if (lookahead == '-') ADVANCE(552); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == '_') ADVANCE(552); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'r') ADVANCE(1366); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (lookahead == '3') ADVANCE(441); + if (lookahead == '6') ADVANCE(443); END_STATE(); case 443: - ADVANCE_MAP( - '+', 1249, - '>', 4343, - 'I', 1660, - 'i', 1660, - 'n', 781, - 'r', 1366, - 'B', 4120, - 'b', 4120, - ); + if (lookahead == '4') ADVANCE(4241); END_STATE(); case 444: - if (lookahead == '+') ADVANCE(1249); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'l') ADVANCE(1467); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'r') ADVANCE(1366); + if (lookahead == '5') ADVANCE(4241); END_STATE(); case 445: - if (lookahead == '+') ADVANCE(1249); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'r') ADVANCE(1366); + if (lookahead == '5') ADVANCE(446); END_STATE(); case 446: - if (lookahead == '+') ADVANCE(1284); - if (lookahead == '>') ADVANCE(4335); + if (lookahead == '6') ADVANCE(4241); END_STATE(); case 447: - if (lookahead == '+') ADVANCE(1258); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'l') ADVANCE(1467); - if (lookahead == 'r') ADVANCE(1375); + if (lookahead == ':') ADVANCE(1611); END_STATE(); case 448: - if (lookahead == '+') ADVANCE(1258); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'r') ADVANCE(1375); + if (lookahead == ':') ADVANCE(1612); END_STATE(); case 449: - if (lookahead == '+') ADVANCE(1258); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'r') ADVANCE(1375); + if (lookahead == ';') ADVANCE(4098); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(449); END_STATE(); case 450: - if (lookahead == '+') ADVANCE(1258); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'r') ADVANCE(1375); - if (lookahead == 'x') ADVANCE(1538); + if (lookahead == '=') ADVANCE(3780); + if (lookahead == '~') ADVANCE(3791); END_STATE(); case 451: - if (lookahead == '+') ADVANCE(810); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'r') ADVANCE(3871); - if (lookahead == 'u') ADVANCE(1491); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '>') ADVANCE(3704); + if (lookahead == '~') ADVANCE(3789); END_STATE(); case 452: - if (lookahead == '+') ADVANCE(875); - if (lookahead == '>') ADVANCE(4339); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '~') ADVANCE(3789); END_STATE(); case 453: - if (lookahead == '+') ADVANCE(831); - if (lookahead == '>') ADVANCE(1650); - if (lookahead == 'r') ADVANCE(3871); - if (lookahead == 'u') ADVANCE(1497); + if (lookahead == '=') ADVANCE(3101); + if (lookahead == '~') ADVANCE(3089); END_STATE(); case 454: - if (lookahead == '+') ADVANCE(831); - if (lookahead == '>') ADVANCE(1650); - if (lookahead == 'u') ADVANCE(1497); + if (lookahead == '>') ADVANCE(3704); END_STATE(); case 455: - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '>') ADVANCE(1652); + if (lookahead == '>') ADVANCE(4271); END_STATE(); case 456: - if (lookahead == '+') ADVANCE(889); - if (lookahead == '>') ADVANCE(1654); + if (lookahead == '>') ADVANCE(4267); END_STATE(); case 457: - if (lookahead == '-') ADVANCE(1324); + if (lookahead == '>') ADVANCE(4259); END_STATE(); case 458: - if (lookahead == '-') ADVANCE(765); + if (lookahead == '>') ADVANCE(4263); END_STATE(); case 459: - if (lookahead == '-') ADVANCE(921); + if (lookahead == '>') ADVANCE(3590); END_STATE(); case 460: - if (lookahead == '-') ADVANCE(1142); + if (lookahead == '>') ADVANCE(1575); END_STATE(); case 461: - if (lookahead == '-') ADVANCE(1052); - if (lookahead == 'f') ADVANCE(1525); + if (lookahead == '>') ADVANCE(1577); END_STATE(); case 462: - if (lookahead == '-') ADVANCE(755); + if (lookahead == '>') ADVANCE(1579); END_STATE(); case 463: - if (lookahead == '-') ADVANCE(929); + if (lookahead == '>') ADVANCE(1580); END_STATE(); case 464: - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if (lookahead == 'I') ADVANCE(1584); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'i') ADVANCE(608); + if (lookahead == '+' || + lookahead == '-') ADVANCE(480); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 465: - if (lookahead == '-') ADVANCE(654); + if (lookahead == 'I') ADVANCE(1584); + if (lookahead == 'i') ADVANCE(1584); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 466: - if (lookahead == '-') ADVANCE(1061); + if (lookahead == 'I') ADVANCE(1584); + if (lookahead == 'i') ADVANCE(1108); + if (lookahead == 'o') ADVANCE(680); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 467: - if (lookahead == '-') ADVANCE(1398); + if (lookahead == 'I') ADVANCE(1584); + if (lookahead == 'i') ADVANCE(608); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 468: - if (lookahead == '-') ADVANCE(735); + if (lookahead == '_') ADVANCE(468); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); END_STATE(); case 469: - if (lookahead == '-') ADVANCE(1620); + if (lookahead == '_') ADVANCE(469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); END_STATE(); case 470: - if (lookahead == '-') ADVANCE(683); + if (lookahead == '_') ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 471: - if (lookahead == '-') ADVANCE(1605); - if (lookahead == 'o') ADVANCE(1481); + if (lookahead == '_') ADVANCE(471); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); END_STATE(); case 472: - if (lookahead == '-') ADVANCE(1335); + if (lookahead == '_') ADVANCE(473); + if (lookahead == '+' || + lookahead == '-') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 473: - if (lookahead == '-') ADVANCE(1459); + if (lookahead == '_') ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 474: - if (lookahead == '-') ADVANCE(734); + if (lookahead == '_') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 475: - if (lookahead == '-') ADVANCE(1477); + if (lookahead == '_') ADVANCE(476); + if (lookahead == '+' || + lookahead == '-') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); END_STATE(); case 476: - if (lookahead == '-') ADVANCE(1581); + if (lookahead == '_') ADVANCE(476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); END_STATE(); case 477: - if (lookahead == '-') ADVANCE(1200); + if (lookahead == '_') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 478: - if (lookahead == '-') ADVANCE(1187); + if (lookahead == '_') ADVANCE(480); + if (lookahead == 'o') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 479: - if (lookahead == '-') ADVANCE(1225); + if (lookahead == '_') ADVANCE(480); + if (lookahead == '+' || + lookahead == '-') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 480: - if (lookahead == '-') ADVANCE(1492); + if (lookahead == '_') ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 481: - if (lookahead == '-') ADVANCE(1245); + if (lookahead == '`') ADVANCE(4073); + if (lookahead != 0) ADVANCE(481); END_STATE(); case 482: - if (lookahead == '-') ADVANCE(1562); + ADVANCE_MAP( + 'a', 681, + 'b', 952, + 'c', 881, + 'd', 896, + 'f', 807, + 'g', 1321, + 'h', 732, + 'i', 1124, + 'l', 1173, + 'p', 1306, + 'r', 716, + 's', 1426, + 't', 505, + 'w', 1200, + ); END_STATE(); case 483: - if (lookahead == '-') ADVANCE(1301); + ADVANCE_MAP( + 'a', 681, + 'b', 776, + 'c', 885, + 'd', 1192, + 'h', 732, + 'i', 1104, + 'm', 823, + 'n', 710, + 'p', 1498, + 'r', 1504, + 's', 827, + 't', 740, + 'u', 1156, + ); END_STATE(); case 484: - if (lookahead == '-') ADVANCE(1584); + if (lookahead == 'a') ADVANCE(681); + if (lookahead == 'd') ADVANCE(896); + if (lookahead == 'f') ADVANCE(1178); + if (lookahead == 'n') ADVANCE(1166); + if (lookahead == 'p') ADVANCE(517); + if (lookahead == 't') ADVANCE(1167); + if (lookahead == 'u') ADVANCE(1407); END_STATE(); case 485: - if (lookahead == '-') ADVANCE(727); + if (lookahead == 'a') ADVANCE(681); + if (lookahead == 'g') ADVANCE(798); + if (lookahead == 'r') ADVANCE(736); + if (lookahead == 's') ADVANCE(798); END_STATE(); case 486: - if (lookahead == '-') ADVANCE(1691); + if (lookahead == 'a') ADVANCE(681); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'm') ADVANCE(1222); + if (lookahead == 'p') ADVANCE(1305); + if (lookahead == 'r') ADVANCE(772); + if (lookahead == 'u') ADVANCE(1158); END_STATE(); case 487: - if (lookahead == '-') ADVANCE(1544); + if (lookahead == 'a') ADVANCE(681); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'r') ADVANCE(1066); + if (lookahead == 's') ADVANCE(1454); + if (lookahead == 'u') ADVANCE(1382); END_STATE(); case 488: - if (lookahead == '-') ADVANCE(1460); + if (lookahead == 'a') ADVANCE(681); + if (lookahead == 'r') ADVANCE(772); END_STATE(); case 489: - if (lookahead == '-') ADVANCE(1016); + ADVANCE_MAP( + 'a', 1000, + 'b', 1301, + 'c', 504, + 'e', 1554, + 'g', 950, + 'i', 1367, + 'l', 491, + 'o', 1294, + 'p', 1282, + 'r', 712, + 's', 713, + 'v', 522, + 'w', 1186, + ); END_STATE(); case 490: - if (lookahead == '-') ADVANCE(1016); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); + if (lookahead == 'a') ADVANCE(4241); END_STATE(); case 491: - if (lookahead == '-') ADVANCE(1623); + if (lookahead == 'a') ADVANCE(615); END_STATE(); case 492: - if (lookahead == '-') ADVANCE(716); + if (lookahead == 'a') ADVANCE(1067); END_STATE(); case 493: - if (lookahead == '-') ADVANCE(1349); + if (lookahead == 'a') ADVANCE(1067); + if (lookahead == 'm') ADVANCE(993); END_STATE(); case 494: - if (lookahead == '-') ADVANCE(1352); + if (lookahead == 'a') ADVANCE(993); END_STATE(); case 495: - if (lookahead == '-') ADVANCE(1627); + ADVANCE_MAP( + 'a', 614, + 'c', 777, + 'e', 1556, + 'f', 1028, + 'l', 1102, + 'm', 519, + 'p', 1342, + 'r', 1191, + 's', 927, + 't', 544, + 'v', 590, + ); END_STATE(); case 496: - if (lookahead == '.') ADVANCE(539); - if (lookahead == '>') ADVANCE(3685); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if (lookahead == 'a') ADVANCE(1098); + if (lookahead == 'o') ADVANCE(1078); END_STATE(); case 497: - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ADVANCE_MAP( + 'a', 682, + 'b', 1528, + 'c', 1204, + 'e', 1149, + 'i', 1129, + 'l', 760, + 'r', 720, + 's', 1479, + ); END_STATE(); case 498: - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if (lookahead == 'a') ADVANCE(1371); END_STATE(); case 499: - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + if (lookahead == 'a') ADVANCE(1320); END_STATE(); case 500: - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(542); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); + ADVANCE_MAP( + 'a', 856, + 'c', 501, + 'd', 584, + 'e', 1559, + 'f', 808, + 'g', 790, + 'i', 1096, + 'j', 1225, + 'l', 512, + 'm', 518, + 'n', 404, + 'o', 1268, + 'p', 905, + 'q', 1494, + 'r', 721, + 's', 502, + 't', 569, + 'u', 1106, + 'v', 511, + 'w', 891, + ); END_STATE(); case 501: - if (lookahead == '.') ADVANCE(3935); + if (lookahead == 'a') ADVANCE(639); + if (lookahead == 'o') ADVANCE(996); + if (lookahead == 'u') ADVANCE(1080); END_STATE(); case 502: - if (lookahead == '.') ADVANCE(3712); + ADVANCE_MAP( + 'a', 1099, + 'c', 888, + 'e', 1043, + 'h', 563, + 'l', 924, + 'o', 1327, + 't', 675, + 'u', 1069, + ); END_STATE(); case 503: - if (lookahead == '.') ADVANCE(540); - if (lookahead == '_') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + if (lookahead == 'a') ADVANCE(674); END_STATE(); case 504: - if (lookahead == '.') ADVANCE(502); + if (lookahead == 'a') ADVANCE(638); + if (lookahead == 'o') ADVANCE(688); END_STATE(); case 505: - if (lookahead == '.') ADVANCE(502); - if (lookahead == '_') ADVANCE(545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); + if (lookahead == 'a') ADVANCE(851); END_STATE(); case 506: - if (lookahead == '2') ADVANCE(4333); + if (lookahead == 'a') ADVANCE(440); END_STATE(); case 507: - if (lookahead == '2') ADVANCE(1680); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1686); + if (lookahead == 'a') ADVANCE(991); + if (lookahead == 'o') ADVANCE(708); END_STATE(); case 508: - if (lookahead == '2') ADVANCE(513); + if (lookahead == 'a') ADVANCE(1423); END_STATE(); case 509: - if (lookahead == '2') ADVANCE(4267); + if (lookahead == 'a') ADVANCE(1059); + if (lookahead == 'c') ADVANCE(1189); + if (lookahead == 'e') ADVANCE(1393); + if (lookahead == 'm') ADVANCE(1184); + if (lookahead == 'o') ADVANCE(1259); END_STATE(); case 510: - if (lookahead == '3') ADVANCE(509); - if (lookahead == '6') ADVANCE(511); + if (lookahead == 'a') ADVANCE(1059); + if (lookahead == 'c') ADVANCE(1189); + if (lookahead == 'e') ADVANCE(1126); + if (lookahead == 'm') ADVANCE(1184); + if (lookahead == 'v') ADVANCE(601); END_STATE(); case 511: - if (lookahead == '4') ADVANCE(4333); + if (lookahead == 'a') ADVANCE(1053); END_STATE(); case 512: - if (lookahead == '5') ADVANCE(4333); + if (lookahead == 'a') ADVANCE(1365); + if (lookahead == 'e') ADVANCE(1101); + if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 'o') ADVANCE(1545); END_STATE(); case 513: - if (lookahead == '5') ADVANCE(514); + if (lookahead == 'a') ADVANCE(1112); END_STATE(); case 514: - if (lookahead == '6') ADVANCE(4333); + if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'n') ADVANCE(1181); + if (lookahead == 'o') ADVANCE(1281); + if (lookahead == 'r') ADVANCE(1170); + if (lookahead == 's') ADVANCE(869); + if (lookahead == 'x') ADVANCE(1196); END_STATE(); case 515: - if (lookahead == ':') ADVANCE(4199); - if (lookahead == ';') ADVANCE(4202); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(515); + if (lookahead == 'a') ADVANCE(1562); END_STATE(); case 516: - if (lookahead == ':') ADVANCE(4199); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(516); + if (lookahead == 'a') ADVANCE(1406); END_STATE(); case 517: - if (lookahead == ':') ADVANCE(1687); + if (lookahead == 'a') ADVANCE(1304); END_STATE(); case 518: - if (lookahead == ':') ADVANCE(1688); + if (lookahead == 'a') ADVANCE(1552); + if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'i') ADVANCE(1101); END_STATE(); case 519: - if (lookahead == ';') ADVANCE(4202); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(519); + if (lookahead == 'a') ADVANCE(1552); + if (lookahead == 'e') ADVANCE(702); + if (lookahead == 'i') ADVANCE(1101); + if (lookahead == 'o') ADVANCE(695); END_STATE(); case 520: - if (lookahead == '=') ADVANCE(3881); - if (lookahead == '~') ADVANCE(3892); + if (lookahead == 'a') ADVANCE(1552); + if (lookahead == 'i') ADVANCE(1101); END_STATE(); case 521: - if (lookahead == '=') ADVANCE(3879); - if (lookahead == '>') ADVANCE(3805); - if (lookahead == '~') ADVANCE(3890); + if (lookahead == 'a') ADVANCE(1568); END_STATE(); case 522: - if (lookahead == '=') ADVANCE(3879); - if (lookahead == '~') ADVANCE(3890); + if (lookahead == 'a') ADVANCE(1340); END_STATE(); case 523: - if (lookahead == '=') ADVANCE(3177); - if (lookahead == '~') ADVANCE(3165); + if (lookahead == 'a') ADVANCE(623); END_STATE(); case 524: - if (lookahead == '>') ADVANCE(3805); + if (lookahead == 'a') ADVANCE(623); + if (lookahead == 'i') ADVANCE(1091); END_STATE(); case 525: - if (lookahead == '>') ADVANCE(4363); + if (lookahead == 'a') ADVANCE(1239); END_STATE(); case 526: - if (lookahead == '>') ADVANCE(4359); + if (lookahead == 'a') ADVANCE(1427); END_STATE(); case 527: - if (lookahead == '>') ADVANCE(4351); + if (lookahead == 'a') ADVANCE(1397); END_STATE(); case 528: - if (lookahead == '>') ADVANCE(4355); + if (lookahead == 'a') ADVANCE(613); END_STATE(); case 529: - if (lookahead == '>') ADVANCE(3685); + if (lookahead == 'a') ADVANCE(694); END_STATE(); case 530: - if (lookahead == '>') ADVANCE(1651); + if (lookahead == 'a') ADVANCE(1101); END_STATE(); case 531: - if (lookahead == '>') ADVANCE(1653); + if (lookahead == 'a') ADVANCE(1101); + if (lookahead == 'd') ADVANCE(959); END_STATE(); case 532: - if (lookahead == '>') ADVANCE(1655); + if (lookahead == 'a') ADVANCE(1101); + if (lookahead == 'u') ADVANCE(994); END_STATE(); case 533: - if (lookahead == '>') ADVANCE(1656); + if (lookahead == 'a') ADVANCE(1285); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'n') ADVANCE(851); END_STATE(); case 534: - if (lookahead == 'I') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(1660); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + if (lookahead == 'a') ADVANCE(1355); END_STATE(); case 535: - if (lookahead == 'I') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(1660); - if (lookahead == 'r') ADVANCE(1598); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + if (lookahead == 'a') ADVANCE(1281); END_STATE(); case 536: - if (lookahead == 'I') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + if (lookahead == 'a') ADVANCE(642); END_STATE(); case 537: - if (lookahead == 'I') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(1180); - if (lookahead == 'o') ADVANCE(752); - if (lookahead == 's') ADVANCE(4127); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + if (lookahead == 'a') ADVANCE(1004); END_STATE(); case 538: - if (lookahead == 'I') ADVANCE(1660); - if (lookahead == 'i') ADVANCE(680); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + if (lookahead == 'a') ADVANCE(1341); END_STATE(); case 539: - if (lookahead == '_') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); + if (lookahead == 'a') ADVANCE(1341); + if (lookahead == 'c') ADVANCE(1311); END_STATE(); case 540: - if (lookahead == '_') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if (lookahead == 'a') ADVANCE(1401); END_STATE(); case 541: - if (lookahead == '_') ADVANCE(541); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + if (lookahead == 'a') ADVANCE(1148); END_STATE(); case 542: - if (lookahead == '_') ADVANCE(542); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); + if (lookahead == 'a') ADVANCE(1344); END_STATE(); case 543: - if (lookahead == '_') ADVANCE(544); - if (lookahead == '+' || - lookahead == '-') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if (lookahead == 'a') ADVANCE(652); END_STATE(); case 544: - if (lookahead == '_') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); + if (lookahead == 'a') ADVANCE(1105); END_STATE(); case 545: - if (lookahead == '_') ADVANCE(545); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); + if (lookahead == 'a') ADVANCE(660); + if (lookahead == 's') ADVANCE(743); END_STATE(); case 546: - if (lookahead == '_') ADVANCE(547); - if (lookahead == '+' || - lookahead == '-') ADVANCE(547); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if (lookahead == 'a') ADVANCE(1481); END_STATE(); case 547: - if (lookahead == '_') ADVANCE(547); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + if (lookahead == 'a') ADVANCE(1010); END_STATE(); case 548: - if (lookahead == '_') ADVANCE(548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (lookahead == 'a') ADVANCE(1315); END_STATE(); case 549: - if (lookahead == '_') ADVANCE(552); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == '+' || - lookahead == '-') ADVANCE(552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (lookahead == 'a') ADVANCE(1516); END_STATE(); case 550: - if (lookahead == '_') ADVANCE(552); - if (lookahead == 'o') ADVANCE(525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (lookahead == 'a') ADVANCE(1527); + if (lookahead == 'p') ADVANCE(1329); END_STATE(); case 551: - if (lookahead == '_') ADVANCE(552); - if (lookahead == '+' || - lookahead == '-') ADVANCE(552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (lookahead == 'a') ADVANCE(1431); END_STATE(); case 552: - if (lookahead == '_') ADVANCE(552); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + if (lookahead == 'a') ADVANCE(1296); END_STATE(); case 553: - if (lookahead == '`') ADVANCE(4177); - if (lookahead != 0) ADVANCE(553); + if (lookahead == 'a') ADVANCE(1359); END_STATE(); case 554: - ADVANCE_MAP( - 'a', 753, - 'b', 1024, - 'c', 953, - 'd', 968, - 'f', 879, - 'g', 1396, - 'h', 804, - 'i', 1196, - 'l', 1246, - 'p', 1381, - 'r', 788, - 's', 1501, - 't', 577, - 'w', 1273, - ); + if (lookahead == 'a') ADVANCE(1319); END_STATE(); case 555: - ADVANCE_MAP( - 'a', 753, - 'b', 848, - 'c', 957, - 'd', 1265, - 'h', 804, - 'i', 1176, - 'm', 895, - 'n', 782, - 'p', 1574, - 'r', 1580, - 's', 899, - 't', 812, - 'u', 1228, - ); + if (lookahead == 'a') ADVANCE(994); END_STATE(); case 556: - if (lookahead == 'a') ADVANCE(753); - if (lookahead == 'd') ADVANCE(968); - if (lookahead == 'f') ADVANCE(1251); - if (lookahead == 'n') ADVANCE(1238); - if (lookahead == 'p') ADVANCE(589); - if (lookahead == 't') ADVANCE(1239); - if (lookahead == 'u') ADVANCE(1482); + if (lookahead == 'a') ADVANCE(1428); END_STATE(); case 557: - if (lookahead == 'a') ADVANCE(753); - if (lookahead == 'g') ADVANCE(870); - if (lookahead == 'r') ADVANCE(808); - if (lookahead == 's') ADVANCE(870); + if (lookahead == 'a') ADVANCE(1051); END_STATE(); case 558: - if (lookahead == 'a') ADVANCE(753); - if (lookahead == 'l') ADVANCE(979); - if (lookahead == 'm') ADVANCE(1296); - if (lookahead == 'p') ADVANCE(1380); - if (lookahead == 'r') ADVANCE(844); - if (lookahead == 'u') ADVANCE(1230); + if (lookahead == 'a') ADVANCE(1466); + if (lookahead == 'o') ADVANCE(1365); + if (lookahead == 'u') ADVANCE(1406); END_STATE(); case 559: - if (lookahead == 'a') ADVANCE(753); - if (lookahead == 'l') ADVANCE(978); - if (lookahead == 'r') ADVANCE(1138); - if (lookahead == 's') ADVANCE(1529); - if (lookahead == 'u') ADVANCE(1457); + if (lookahead == 'a') ADVANCE(1310); + if (lookahead == 'o') ADVANCE(1210); END_STATE(); case 560: - if (lookahead == 'a') ADVANCE(753); - if (lookahead == 'r') ADVANCE(844); + if (lookahead == 'a') ADVANCE(990); END_STATE(); case 561: - ADVANCE_MAP( - 'a', 1072, - 'b', 1376, - 'c', 576, - 'e', 1630, - 'g', 1022, - 'i', 1442, - 'l', 563, - 'o', 1369, - 'p', 1357, - 'r', 784, - 's', 785, - 'v', 594, - 'w', 1259, - ); + if (lookahead == 'a') ADVANCE(1451); END_STATE(); case 562: - if (lookahead == 'a') ADVANCE(4333); + if (lookahead == 'a') ADVANCE(1451); + if (lookahead == 'u') ADVANCE(1348); END_STATE(); case 563: - if (lookahead == 'a') ADVANCE(687); + if (lookahead == 'a') ADVANCE(1258); + if (lookahead == 'i') ADVANCE(843); END_STATE(); case 564: - if (lookahead == 'a') ADVANCE(1139); + if (lookahead == 'a') ADVANCE(1083); END_STATE(); case 565: - if (lookahead == 'a') ADVANCE(1139); - if (lookahead == 'm') ADVANCE(1065); + if (lookahead == 'a') ADVANCE(1343); END_STATE(); case 566: - if (lookahead == 'a') ADVANCE(1065); + if (lookahead == 'a') ADVANCE(1487); END_STATE(); case 567: - ADVANCE_MAP( - 'a', 686, - 'c', 849, - 'e', 1632, - 'f', 1100, - 'l', 1174, - 'm', 591, - 'p', 1417, - 'r', 1264, - 's', 999, - 't', 616, - 'v', 662, - ); + if (lookahead == 'a') ADVANCE(1131); END_STATE(); case 568: - if (lookahead == 'a') ADVANCE(1170); - if (lookahead == 'o') ADVANCE(1150); + if (lookahead == 'a') ADVANCE(1312); END_STATE(); case 569: - ADVANCE_MAP( - 'a', 754, - 'b', 1604, - 'c', 1277, - 'e', 1221, - 'i', 1201, - 'l', 832, - 'r', 792, - 's', 1554, - ); + if (lookahead == 'a') ADVANCE(987); END_STATE(); case 570: - if (lookahead == 'a') ADVANCE(1446); + if (lookahead == 'a') ADVANCE(1136); END_STATE(); case 571: - if (lookahead == 'a') ADVANCE(1395); + if (lookahead == 'a') ADVANCE(1100); END_STATE(); case 572: - ADVANCE_MAP( - 'a', 928, - 'c', 573, - 'd', 656, - 'e', 1635, - 'f', 880, - 'g', 862, - 'i', 1168, - 'j', 1299, - 'l', 584, - 'm', 590, - 'n', 471, - 'o', 1343, - 'p', 977, - 'q', 1570, - 'r', 793, - 's', 574, - 't', 641, - 'u', 1178, - 'v', 583, - 'w', 963, - ); + if (lookahead == 'a') ADVANCE(1261); END_STATE(); case 573: - if (lookahead == 'a') ADVANCE(711); - if (lookahead == 'o') ADVANCE(1068); - if (lookahead == 'u') ADVANCE(1152); + if (lookahead == 'a') ADVANCE(1382); END_STATE(); case 574: - ADVANCE_MAP( - 'a', 1171, - 'c', 960, - 'e', 1115, - 'h', 635, - 'l', 996, - 'o', 1402, - 't', 747, - 'u', 1141, - ); + if (lookahead == 'a') ADVANCE(1015); END_STATE(); case 575: - if (lookahead == 'a') ADVANCE(746); + if (lookahead == 'a') ADVANCE(656); END_STATE(); case 576: - if (lookahead == 'a') ADVANCE(710); - if (lookahead == 'o') ADVANCE(760); + if (lookahead == 'a') ADVANCE(1116); END_STATE(); case 577: - if (lookahead == 'a') ADVANCE(923); + if (lookahead == 'a') ADVANCE(1470); + if (lookahead == 'u') ADVANCE(1348); END_STATE(); case 578: - if (lookahead == 'a') ADVANCE(508); + if (lookahead == 'a') ADVANCE(1034); END_STATE(); case 579: - if (lookahead == 'a') ADVANCE(1063); - if (lookahead == 'o') ADVANCE(780); + if (lookahead == 'a') ADVANCE(1452); END_STATE(); case 580: - if (lookahead == 'a') ADVANCE(1498); + if (lookahead == 'a') ADVANCE(1439); END_STATE(); case 581: - if (lookahead == 'a') ADVANCE(1131); - if (lookahead == 'c') ADVANCE(1262); - if (lookahead == 'e') ADVANCE(1468); - if (lookahead == 'm') ADVANCE(1257); - if (lookahead == 'o') ADVANCE(1334); + if (lookahead == 'a') ADVANCE(1456); END_STATE(); case 582: - if (lookahead == 'a') ADVANCE(1131); - if (lookahead == 'c') ADVANCE(1262); - if (lookahead == 'e') ADVANCE(1198); - if (lookahead == 'm') ADVANCE(1257); - if (lookahead == 'v') ADVANCE(673); + if (lookahead == 'a') ADVANCE(1135); + if (lookahead == 'o') ADVANCE(1288); + if (lookahead == 's') ADVANCE(879); + if (lookahead == 'x') ADVANCE(1220); END_STATE(); case 583: - if (lookahead == 'a') ADVANCE(1125); + if (lookahead == 'a') ADVANCE(1441); END_STATE(); case 584: - if (lookahead == 'a') ADVANCE(1440); - if (lookahead == 'e') ADVANCE(1173); - if (lookahead == 'i') ADVANCE(1481); - if (lookahead == 'o') ADVANCE(1621); + if (lookahead == 'a') ADVANCE(1460); + if (lookahead == 'e') ADVANCE(653); + if (lookahead == 'r') ADVANCE(1202); + if (lookahead == 'u') ADVANCE(1097); END_STATE(); case 585: - if (lookahead == 'a') ADVANCE(1184); + if (lookahead == 'a') ADVANCE(1389); END_STATE(); case 586: - if (lookahead == 'a') ADVANCE(1184); - if (lookahead == 'n') ADVANCE(1254); - if (lookahead == 'o') ADVANCE(1356); - if (lookahead == 'r') ADVANCE(1242); - if (lookahead == 's') ADVANCE(941); - if (lookahead == 'x') ADVANCE(1269); + if (lookahead == 'a') ADVANCE(938); END_STATE(); case 587: - if (lookahead == 'a') ADVANCE(1638); + if (lookahead == 'a') ADVANCE(1388); END_STATE(); case 588: - if (lookahead == 'a') ADVANCE(1481); + if (lookahead == 'a') ADVANCE(1462); END_STATE(); case 589: - if (lookahead == 'a') ADVANCE(1379); + if (lookahead == 'a') ADVANCE(942); END_STATE(); case 590: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'e') ADVANCE(603); - if (lookahead == 'i') ADVANCE(1173); + if (lookahead == 'a') ADVANCE(1346); END_STATE(); case 591: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'e') ADVANCE(774); - if (lookahead == 'i') ADVANCE(1173); - if (lookahead == 'o') ADVANCE(767); + if (lookahead == 'a') ADVANCE(622); END_STATE(); case 592: - if (lookahead == 'a') ADVANCE(1628); - if (lookahead == 'i') ADVANCE(1173); + if (lookahead == 'a') ADVANCE(1160); + if (lookahead == 'e') ADVANCE(1296); END_STATE(); case 593: - if (lookahead == 'a') ADVANCE(1644); + if (lookahead == 'a') ADVANCE(706); END_STATE(); case 594: - if (lookahead == 'a') ADVANCE(1415); + if (lookahead == 'a') ADVANCE(1483); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(695); + if (lookahead == 'a') ADVANCE(1468); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(695); - if (lookahead == 'i') ADVANCE(1163); + if (lookahead == 'a') ADVANCE(1484); END_STATE(); case 597: - if (lookahead == 'a') ADVANCE(1314); + if (lookahead == 'a') ADVANCE(1058); END_STATE(); case 598: - if (lookahead == 'a') ADVANCE(1502); + if (lookahead == 'a') ADVANCE(1476); END_STATE(); case 599: - if (lookahead == 'a') ADVANCE(1472); + if (lookahead == 'a') ADVANCE(1476); + if (lookahead == 'o') ADVANCE(1164); END_STATE(); case 600: - if (lookahead == 'a') ADVANCE(685); + if (lookahead == 'a') ADVANCE(1490); END_STATE(); case 601: - if (lookahead == 'a') ADVANCE(766); + if (lookahead == 'a') ADVANCE(1353); END_STATE(); case 602: - if (lookahead == 'a') ADVANCE(1173); + if (lookahead == 'a') ADVANCE(1354); END_STATE(); case 603: - if (lookahead == 'a') ADVANCE(1173); - if (lookahead == 'd') ADVANCE(1031); + ADVANCE_MAP( + 'b', 1567, + 'c', 1356, + 'e', 1067, + 'g', 1566, + 'i', 643, + 'j', 1370, + 'm', 1361, + 'n', 1501, + 'o', 687, + 'p', 533, + 's', 1356, + 't', 1168, + 'u', 1283, + 'v', 631, + 'x', 1016, + 'y', 493, + 'z', 1365, + ); END_STATE(); case 604: - if (lookahead == 'a') ADVANCE(1173); - if (lookahead == 'u') ADVANCE(1066); + ADVANCE_MAP( + 'b', 1567, + 'c', 1356, + 'g', 1566, + 'h', 1408, + 'j', 1370, + 'm', 676, + 'n', 1501, + 'p', 533, + 't', 809, + 'x', 1068, + 'y', 492, + 'z', 1365, + ); END_STATE(); case 605: - if (lookahead == 'a') ADVANCE(1360); - if (lookahead == 'l') ADVANCE(978); - if (lookahead == 'n') ADVANCE(923); + if (lookahead == 'b') ADVANCE(4241); END_STATE(); case 606: - if (lookahead == 'a') ADVANCE(1430); + ADVANCE_MAP( + 'b', 899, + 'c', 765, + 'd', 577, + 'f', 962, + 'g', 1026, + 'i', 1119, + 'r', 751, + 's', 1279, + 'v', 537, + ); END_STATE(); case 607: - if (lookahead == 'a') ADVANCE(1356); + if (lookahead == 'b') ADVANCE(4210); END_STATE(); case 608: - if (lookahead == 'a') ADVANCE(714); + if (lookahead == 'b') ADVANCE(4016); END_STATE(); case 609: - if (lookahead == 'a') ADVANCE(1076); + if (lookahead == 'b') ADVANCE(1507); + if (lookahead == 'd') ADVANCE(747); + if (lookahead == 'e') ADVANCE(1121); + if (lookahead == 'j') ADVANCE(1225); + if (lookahead == 'p') ADVANCE(542); + if (lookahead == 's') ADVANCE(1246); END_STATE(); case 610: - if (lookahead == 'a') ADVANCE(1416); + if (lookahead == 'b') ADVANCE(936); + if (lookahead == 'c') ADVANCE(893); + if (lookahead == 'd') ADVANCE(924); + if (lookahead == 'f') ADVANCE(1025); + if (lookahead == 'i') ADVANCE(1119); + if (lookahead == 'u') ADVANCE(1513); END_STATE(); case 611: - if (lookahead == 'a') ADVANCE(1416); - if (lookahead == 'c') ADVANCE(1386); + if (lookahead == 'b') ADVANCE(1561); END_STATE(); case 612: - if (lookahead == 'a') ADVANCE(1476); + ADVANCE_MAP( + 'b', 739, + 'c', 496, + 'd', 717, + 'e', 1150, + 'i', 1118, + 'j', 1225, + 'k', 731, + 'l', 760, + 'p', 527, + 'r', 718, + 's', 664, + 't', 915, + 'u', 1242, + 'w', 1316, + ); END_STATE(); case 613: - if (lookahead == 'a') ADVANCE(1220); + if (lookahead == 'b') ADVANCE(401); END_STATE(); case 614: - if (lookahead == 'a') ADVANCE(1419); + if (lookahead == 'b') ADVANCE(1355); + if (lookahead == 'r') ADVANCE(627); + if (lookahead == 'v') ADVANCE(851); END_STATE(); case 615: - if (lookahead == 'a') ADVANCE(724); + if (lookahead == 'b') ADVANCE(715); END_STATE(); case 616: - if (lookahead == 'a') ADVANCE(1177); + if (lookahead == 'b') ADVANCE(503); + if (lookahead == 'g') ADVANCE(1215); + if (lookahead == 'r') ADVANCE(825); + if (lookahead == 's') ADVANCE(986); END_STATE(); case 617: - if (lookahead == 'a') ADVANCE(732); - if (lookahead == 's') ADVANCE(815); + if (lookahead == 'b') ADVANCE(528); END_STATE(); case 618: - if (lookahead == 'a') ADVANCE(1557); + ADVANCE_MAP( + 'b', 540, + 'd', 931, + 'e', 1553, + 'j', 1225, + 'p', 542, + 'r', 773, + 's', 1251, + 't', 1564, + ); END_STATE(); case 619: - if (lookahead == 'a') ADVANCE(1082); + if (lookahead == 'b') ADVANCE(573); + if (lookahead == 'f') ADVANCE(1005); + if (lookahead == 'm') ADVANCE(1235); + if (lookahead == 's') ADVANCE(1480); END_STATE(); case 620: - if (lookahead == 'a') ADVANCE(1390); + if (lookahead == 'b') ADVANCE(1398); END_STATE(); case 621: - if (lookahead == 'a') ADVANCE(1592); + if (lookahead == 'b') ADVANCE(585); + if (lookahead == 'h') ADVANCE(745); END_STATE(); case 622: - if (lookahead == 'a') ADVANCE(1603); - if (lookahead == 'p') ADVANCE(1404); + if (lookahead == 'b') ADVANCE(1041); END_STATE(); case 623: - if (lookahead == 'a') ADVANCE(1506); + if (lookahead == 'b') ADVANCE(1033); END_STATE(); case 624: - if (lookahead == 'a') ADVANCE(1371); + if (lookahead == 'b') ADVANCE(1052); END_STATE(); case 625: - if (lookahead == 'a') ADVANCE(1434); + if (lookahead == 'c') ADVANCE(4241); END_STATE(); case 626: - if (lookahead == 'a') ADVANCE(1394); + if (lookahead == 'c') ADVANCE(766); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'r') ADVANCE(1166); + if (lookahead == 'w') ADVANCE(1207); END_STATE(); case 627: - if (lookahead == 'a') ADVANCE(1066); + if (lookahead == 'c') ADVANCE(654); END_STATE(); case 628: - if (lookahead == 'a') ADVANCE(1503); + if (lookahead == 'c') ADVANCE(1045); + if (lookahead == 'd') ADVANCE(816); + if (lookahead == 'e') ADVANCE(685); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'r') ADVANCE(784); + if (lookahead == 'v') ADVANCE(939); END_STATE(); case 629: - if (lookahead == 'a') ADVANCE(1123); + if (lookahead == 'c') ADVANCE(1045); + if (lookahead == 'f') ADVANCE(1214); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'v') ADVANCE(939); END_STATE(); case 630: - if (lookahead == 'a') ADVANCE(1541); - if (lookahead == 'o') ADVANCE(1440); - if (lookahead == 'u') ADVANCE(1481); + if (lookahead == 'c') ADVANCE(4023); END_STATE(); case 631: - if (lookahead == 'a') ADVANCE(1385); - if (lookahead == 'o') ADVANCE(1283); + if (lookahead == 'c') ADVANCE(835); END_STATE(); case 632: - if (lookahead == 'a') ADVANCE(1062); + if (lookahead == 'c') ADVANCE(892); + if (lookahead == 'd') ADVANCE(561); END_STATE(); case 633: - if (lookahead == 'a') ADVANCE(1526); + if (lookahead == 'c') ADVANCE(1245); + if (lookahead == 'd') ADVANCE(916); + if (lookahead == 'h') ADVANCE(1179); + if (lookahead == 'm') ADVANCE(748); + if (lookahead == 'n') ADVANCE(743); + if (lookahead == 't') ADVANCE(753); + if (lookahead == 'u') ADVANCE(1379); END_STATE(); case 634: - if (lookahead == 'a') ADVANCE(1526); - if (lookahead == 'u') ADVANCE(1423); + if (lookahead == 'c') ADVANCE(1406); END_STATE(); case 635: - if (lookahead == 'a') ADVANCE(1333); - if (lookahead == 'i') ADVANCE(915); + if (lookahead == 'c') ADVANCE(867); END_STATE(); case 636: - if (lookahead == 'a') ADVANCE(1155); + if (lookahead == 'c') ADVANCE(1113); END_STATE(); case 637: - if (lookahead == 'a') ADVANCE(1418); + if (lookahead == 'c') ADVANCE(981); END_STATE(); case 638: - if (lookahead == 'a') ADVANCE(1563); + if (lookahead == 'c') ADVANCE(884); END_STATE(); case 639: - if (lookahead == 'a') ADVANCE(1203); + if (lookahead == 'c') ADVANCE(884); + if (lookahead == 's') ADVANCE(1406); END_STATE(); case 640: - if (lookahead == 'a') ADVANCE(1387); + if (lookahead == 'c') ADVANCE(988); END_STATE(); case 641: - if (lookahead == 'a') ADVANCE(1059); + if (lookahead == 'c') ADVANCE(988); + if (lookahead == 'r') ADVANCE(1299); END_STATE(); case 642: - if (lookahead == 'a') ADVANCE(1208); + if (lookahead == 'c') ADVANCE(982); END_STATE(); case 643: - if (lookahead == 'a') ADVANCE(1172); + if (lookahead == 'c') ADVANCE(1355); + if (lookahead == 'n') ADVANCE(897); END_STATE(); case 644: - if (lookahead == 'a') ADVANCE(1336); + if (lookahead == 'c') ADVANCE(1190); END_STATE(); case 645: - if (lookahead == 'a') ADVANCE(1457); + if (lookahead == 'c') ADVANCE(1190); + if (lookahead == 'n') ADVANCE(1423); END_STATE(); case 646: - if (lookahead == 'a') ADVANCE(1087); + if (lookahead == 'c') ADVANCE(873); END_STATE(); case 647: - if (lookahead == 'a') ADVANCE(728); + if (lookahead == 'c') ADVANCE(874); END_STATE(); case 648: - if (lookahead == 'a') ADVANCE(1188); + if (lookahead == 'c') ADVANCE(1415); END_STATE(); case 649: - if (lookahead == 'a') ADVANCE(1545); - if (lookahead == 'u') ADVANCE(1423); + if (lookahead == 'c') ADVANCE(572); END_STATE(); case 650: - if (lookahead == 'a') ADVANCE(1106); + if (lookahead == 'c') ADVANCE(1228); + if (lookahead == 'd') ADVANCE(752); + if (lookahead == 'u') ADVANCE(1139); END_STATE(); case 651: - if (lookahead == 'a') ADVANCE(1527); + if (lookahead == 'c') ADVANCE(1224); END_STATE(); case 652: - if (lookahead == 'a') ADVANCE(1514); + if (lookahead == 'c') ADVANCE(711); END_STATE(); case 653: - if (lookahead == 'a') ADVANCE(1531); + if (lookahead == 'c') ADVANCE(963); END_STATE(); case 654: - if (lookahead == 'a') ADVANCE(1207); - if (lookahead == 'o') ADVANCE(1363); - if (lookahead == 's') ADVANCE(951); - if (lookahead == 'x') ADVANCE(1293); + if (lookahead == 'c') ADVANCE(1198); + if (lookahead == 's') ADVANCE(926); + if (lookahead == 't') ADVANCE(544); END_STATE(); case 655: - if (lookahead == 'a') ADVANCE(1516); + if (lookahead == 'c') ADVANCE(1232); END_STATE(); case 656: - if (lookahead == 'a') ADVANCE(1535); - if (lookahead == 'e') ADVANCE(725); - if (lookahead == 'r') ADVANCE(1275); - if (lookahead == 'u') ADVANCE(1169); + if (lookahead == 'c') ADVANCE(767); END_STATE(); case 657: - if (lookahead == 'a') ADVANCE(1464); + if (lookahead == 'c') ADVANCE(886); END_STATE(); case 658: - if (lookahead == 'a') ADVANCE(1010); + if (lookahead == 'c') ADVANCE(895); END_STATE(); case 659: - if (lookahead == 'a') ADVANCE(1463); + if (lookahead == 'c') ADVANCE(547); END_STATE(); case 660: - if (lookahead == 'a') ADVANCE(1537); + if (lookahead == 'c') ADVANCE(671); END_STATE(); case 661: - if (lookahead == 'a') ADVANCE(1014); + if (lookahead == 'c') ADVANCE(1330); + if (lookahead == 'd') ADVANCE(816); + if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1076); + if (lookahead == 'o') ADVANCE(1267); + if (lookahead == 'r') ADVANCE(825); + if (lookahead == 'u') ADVANCE(1247); END_STATE(); case 662: - if (lookahead == 'a') ADVANCE(1421); + if (lookahead == 'c') ADVANCE(1518); END_STATE(); case 663: - if (lookahead == 'a') ADVANCE(694); + if (lookahead == 'c') ADVANCE(573); END_STATE(); case 664: - if (lookahead == 'a') ADVANCE(1232); - if (lookahead == 'e') ADVANCE(1371); + if (lookahead == 'c') ADVANCE(1332); + if (lookahead == 'i') ADVANCE(1093); + if (lookahead == 'n') ADVANCE(560); + if (lookahead == 't') ADVANCE(499); + if (lookahead == 'u') ADVANCE(620); END_STATE(); case 665: - if (lookahead == 'a') ADVANCE(778); + if (lookahead == 'c') ADVANCE(821); END_STATE(); case 666: - if (lookahead == 'a') ADVANCE(1559); + if (lookahead == 'c') ADVANCE(1212); END_STATE(); case 667: - if (lookahead == 'a') ADVANCE(1543); + if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'r') ADVANCE(1533); END_STATE(); case 668: - if (lookahead == 'a') ADVANCE(1560); + if (lookahead == 'c') ADVANCE(556); + if (lookahead == 't') ADVANCE(586); END_STATE(); case 669: - if (lookahead == 'a') ADVANCE(1130); + if (lookahead == 'c') ADVANCE(1237); END_STATE(); case 670: - if (lookahead == 'a') ADVANCE(1555); + ADVANCE_MAP( + 'c', 1234, + 'd', 754, + 'h', 732, + 'o', 1539, + 'r', 1504, + 's', 734, + 't', 559, + 'u', 1247, + ); END_STATE(); case 671: - if (lookahead == 'a') ADVANCE(1566); + if (lookahead == 'c') ADVANCE(818); END_STATE(); case 672: - if (lookahead == 'a') ADVANCE(1551); + if (lookahead == 'c') ADVANCE(588); END_STATE(); case 673: - if (lookahead == 'a') ADVANCE(1428); + if (lookahead == 'c') ADVANCE(832); END_STATE(); case 674: - if (lookahead == 'a') ADVANCE(1429); + if (lookahead == 'd') ADVANCE(4241); END_STATE(); case 675: - ADVANCE_MAP( - 'b', 1643, - 'c', 1431, - 'e', 1139, - 'g', 1642, - 'i', 715, - 'j', 1445, - 'm', 1436, - 'n', 1577, - 'o', 759, - 'p', 605, - 's', 1431, - 't', 1240, - 'u', 1358, - 'v', 703, - 'x', 1088, - 'y', 565, - 'z', 1440, - ); + if (lookahead == 'd') ADVANCE(4241); + if (lookahead == 'o') ADVANCE(1339); + if (lookahead == 'r') ADVANCE(394); END_STATE(); case 676: - ADVANCE_MAP( - 'b', 1643, - 'c', 1431, - 'g', 1642, - 'h', 1483, - 'j', 1445, - 'm', 748, - 'n', 1577, - 'p', 605, - 't', 881, - 'x', 1140, - 'y', 564, - 'z', 1440, - ); + if (lookahead == 'd') ADVANCE(4241); + if (lookahead == 's') ADVANCE(865); END_STATE(); case 677: - if (lookahead == 'b') ADVANCE(4333); + if (lookahead == 'd') ADVANCE(444); END_STATE(); case 678: - ADVANCE_MAP( - 'b', 971, - 'c', 837, - 'd', 649, - 'f', 1034, - 'g', 1098, - 'i', 1191, - 'r', 823, - 's', 1354, - 'v', 609, - ); + if (lookahead == 'd') ADVANCE(3766); END_STATE(); case 679: - if (lookahead == 'b') ADVANCE(4302); + if (lookahead == 'd') ADVANCE(3824); END_STATE(); case 680: - if (lookahead == 'b') ADVANCE(4120); + if (lookahead == 'd') ADVANCE(3804); END_STATE(); case 681: - if (lookahead == 'b') ADVANCE(1583); - if (lookahead == 'd') ADVANCE(819); - if (lookahead == 'e') ADVANCE(1193); - if (lookahead == 'j') ADVANCE(1299); - if (lookahead == 'p') ADVANCE(614); - if (lookahead == 's') ADVANCE(1321); + if (lookahead == 'd') ADVANCE(674); END_STATE(); case 682: - if (lookahead == 'b') ADVANCE(1008); - if (lookahead == 'c') ADVANCE(965); - if (lookahead == 'd') ADVANCE(996); - if (lookahead == 'f') ADVANCE(1097); - if (lookahead == 'i') ADVANCE(1191); - if (lookahead == 'u') ADVANCE(1589); + if (lookahead == 'd') ADVANCE(674); + if (lookahead == 't') ADVANCE(4241); END_STATE(); case 683: - if (lookahead == 'b') ADVANCE(1637); + if (lookahead == 'd') ADVANCE(835); + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 'n') ADVANCE(1493); END_STATE(); case 684: - ADVANCE_MAP( - 'b', 811, - 'c', 568, - 'd', 789, - 'e', 1222, - 'i', 1190, - 'j', 1299, - 'k', 803, - 'l', 832, - 'p', 599, - 'r', 790, - 's', 736, - 't', 987, - 'u', 1317, - 'w', 1391, - ); + if (lookahead == 'd') ADVANCE(605); + if (lookahead == 'g') ADVANCE(909); + if (lookahead == 'j') ADVANCE(1370); + if (lookahead == 'w') ADVANCE(755); + if (lookahead == 'x') ADVANCE(1067); END_STATE(); case 685: - if (lookahead == 'b') ADVANCE(468); + if (lookahead == 'd') ADVANCE(909); END_STATE(); case 686: - if (lookahead == 'b') ADVANCE(1430); - if (lookahead == 'r') ADVANCE(699); - if (lookahead == 'v') ADVANCE(923); + if (lookahead == 'd') ADVANCE(427); END_STATE(); case 687: - if (lookahead == 'b') ADVANCE(787); + if (lookahead == 'd') ADVANCE(1355); END_STATE(); case 688: - if (lookahead == 'b') ADVANCE(575); - if (lookahead == 'g') ADVANCE(1288); - if (lookahead == 'r') ADVANCE(897); - if (lookahead == 's') ADVANCE(1058); + if (lookahead == 'd') ADVANCE(770); + if (lookahead == 'm') ADVANCE(1248); + if (lookahead == 'n') ADVANCE(845); END_STATE(); case 689: - if (lookahead == 'b') ADVANCE(600); + if (lookahead == 'd') ADVANCE(1531); END_STATE(); case 690: - ADVANCE_MAP( - 'b', 612, - 'd', 1003, - 'e', 1629, - 'j', 1299, - 'p', 614, - 'r', 845, - 's', 1326, - 't', 1640, - ); + if (lookahead == 'd') ADVANCE(1510); END_STATE(); case 691: - if (lookahead == 'b') ADVANCE(645); - if (lookahead == 'f') ADVANCE(1077); - if (lookahead == 'm') ADVANCE(1309); - if (lookahead == 's') ADVANCE(1556); + if (lookahead == 'd') ADVANCE(1362); END_STATE(); case 692: - if (lookahead == 'b') ADVANCE(1473); + if (lookahead == 'd') ADVANCE(1183); + if (lookahead == 'l') ADVANCE(746); + if (lookahead == 'r') ADVANCE(908); + if (lookahead == 'u') ADVANCE(1239); END_STATE(); case 693: - if (lookahead == 'b') ADVANCE(657); - if (lookahead == 'h') ADVANCE(817); + if (lookahead == 'd') ADVANCE(1534); + if (lookahead == 'i') ADVANCE(1101); + if (lookahead == 'n') ADVANCE(1213); + if (lookahead == 'u') ADVANCE(1146); END_STATE(); case 694: - if (lookahead == 'b') ADVANCE(1113); + if (lookahead == 'd') ADVANCE(967); END_STATE(); case 695: - if (lookahead == 'b') ADVANCE(1105); + if (lookahead == 'd') ADVANCE(711); END_STATE(); case 696: - if (lookahead == 'b') ADVANCE(1124); + if (lookahead == 'd') ADVANCE(735); END_STATE(); case 697: - if (lookahead == 'c') ADVANCE(4333); + if (lookahead == 'd') ADVANCE(754); + if (lookahead == 'l') ADVANCE(971); END_STATE(); case 698: - if (lookahead == 'c') ADVANCE(838); - if (lookahead == 'l') ADVANCE(978); - if (lookahead == 'r') ADVANCE(1238); - if (lookahead == 'w') ADVANCE(1280); + if (lookahead == 'd') ADVANCE(714); END_STATE(); case 699: - if (lookahead == 'c') ADVANCE(726); + if (lookahead == 'd') ADVANCE(758); END_STATE(); case 700: - if (lookahead == 'c') ADVANCE(1117); - if (lookahead == 'd') ADVANCE(888); - if (lookahead == 'e') ADVANCE(757); - if (lookahead == 'l') ADVANCE(978); - if (lookahead == 'r') ADVANCE(856); - if (lookahead == 'v') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(816); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'h') ADVANCE(780); + if (lookahead == 'o') ADVANCE(1250); + if (lookahead == 'p') ADVANCE(558); END_STATE(); case 701: - if (lookahead == 'c') ADVANCE(1117); - if (lookahead == 'f') ADVANCE(1287); - if (lookahead == 'l') ADVANCE(978); - if (lookahead == 'v') ADVANCE(1011); + if (lookahead == 'd') ADVANCE(561); END_STATE(); case 702: - if (lookahead == 'c') ADVANCE(4127); + if (lookahead == 'd') ADVANCE(959); END_STATE(); case 703: - if (lookahead == 'c') ADVANCE(907); + if (lookahead == 'd') ADVANCE(750); END_STATE(); case 704: - if (lookahead == 'c') ADVANCE(964); - if (lookahead == 'd') ADVANCE(633); + if (lookahead == 'd') ADVANCE(698); END_STATE(); case 705: - if (lookahead == 'c') ADVANCE(1320); - if (lookahead == 'd') ADVANCE(988); - if (lookahead == 'h') ADVANCE(1252); - if (lookahead == 'm') ADVANCE(820); - if (lookahead == 'n') ADVANCE(815); - if (lookahead == 't') ADVANCE(825); - if (lookahead == 'u') ADVANCE(1454); + if (lookahead == 'd') ADVANCE(1331); + if (lookahead == 'l') ADVANCE(906); + if (lookahead == 'p') ADVANCE(1188); + if (lookahead == 's') ADVANCE(877); END_STATE(); case 706: - if (lookahead == 'c') ADVANCE(1481); + if (lookahead == 'd') ADVANCE(581); END_STATE(); case 707: - if (lookahead == 'c') ADVANCE(939); + if (lookahead == 'd') ADVANCE(562); + if (lookahead == 'f') ADVANCE(961); + if (lookahead == 'p') ADVANCE(546); END_STATE(); case 708: - if (lookahead == 'c') ADVANCE(1185); + if (lookahead == 'd') ADVANCE(1532); END_STATE(); case 709: - if (lookahead == 'c') ADVANCE(1053); + if (lookahead == 'd') ADVANCE(1404); END_STATE(); case 710: - if (lookahead == 'c') ADVANCE(956); + if (lookahead == 'e') ADVANCE(1541); END_STATE(); case 711: - if (lookahead == 'c') ADVANCE(956); - if (lookahead == 's') ADVANCE(1481); + if (lookahead == 'e') ADVANCE(4241); END_STATE(); case 712: - if (lookahead == 'c') ADVANCE(1060); + if (lookahead == 'e') ADVANCE(1019); + if (lookahead == 'u') ADVANCE(1020); END_STATE(); case 713: - if (lookahead == 'c') ADVANCE(1060); - if (lookahead == 'r') ADVANCE(1374); + if (lookahead == 'e') ADVANCE(539); + if (lookahead == 's') ADVANCE(868); + if (lookahead == 't') ADVANCE(526); END_STATE(); case 714: - if (lookahead == 'c') ADVANCE(1054); + if (lookahead == 'e') ADVANCE(1536); END_STATE(); case 715: - if (lookahead == 'c') ADVANCE(1430); - if (lookahead == 'n') ADVANCE(969); + if (lookahead == 'e') ADVANCE(993); END_STATE(); case 716: - if (lookahead == 'c') ADVANCE(1263); + if (lookahead == 'e') ADVANCE(619); + if (lookahead == 'm') ADVANCE(4241); END_STATE(); case 717: - if (lookahead == 'c') ADVANCE(1263); - if (lookahead == 'n') ADVANCE(1498); + if (lookahead == 'e') ADVANCE(650); + if (lookahead == 'i') ADVANCE(1395); + if (lookahead == 'o') ADVANCE(1546); END_STATE(); case 718: - if (lookahead == 'c') ADVANCE(945); + if (lookahead == 'e') ADVANCE(1253); END_STATE(); case 719: - if (lookahead == 'c') ADVANCE(946); + if (lookahead == 'e') ADVANCE(641); END_STATE(); case 720: - if (lookahead == 'c') ADVANCE(1490); + if (lookahead == 'e') ADVANCE(1086); END_STATE(); case 721: - if (lookahead == 'c') ADVANCE(644); + if (lookahead == 'e') ADVANCE(1144); + if (lookahead == 'o') ADVANCE(1027); END_STATE(); case 722: - if (lookahead == 'c') ADVANCE(1302); - if (lookahead == 'd') ADVANCE(824); - if (lookahead == 'u') ADVANCE(1211); + if (lookahead == 'e') ADVANCE(442); END_STATE(); case 723: - if (lookahead == 'c') ADVANCE(1298); + if (lookahead == 'e') ADVANCE(3918); END_STATE(); case 724: - if (lookahead == 'c') ADVANCE(783); + if (lookahead == 'e') ADVANCE(3926); END_STATE(); case 725: - if (lookahead == 'c') ADVANCE(1035); + if (lookahead == 'e') ADVANCE(3583); END_STATE(); case 726: - if (lookahead == 'c') ADVANCE(1271); - if (lookahead == 's') ADVANCE(998); - if (lookahead == 't') ADVANCE(616); + if (lookahead == 'e') ADVANCE(3692); END_STATE(); case 727: - if (lookahead == 'c') ADVANCE(1306); + if (lookahead == 'e') ADVANCE(3672); END_STATE(); case 728: - if (lookahead == 'c') ADVANCE(839); + if (lookahead == 'e') ADVANCE(3578); END_STATE(); case 729: - if (lookahead == 'c') ADVANCE(958); + if (lookahead == 'e') ADVANCE(3612); END_STATE(); case 730: - if (lookahead == 'c') ADVANCE(967); + if (lookahead == 'e') ADVANCE(674); END_STATE(); case 731: - if (lookahead == 'c') ADVANCE(619); + if (lookahead == 'e') ADVANCE(617); END_STATE(); case 732: - if (lookahead == 'c') ADVANCE(743); + if (lookahead == 'e') ADVANCE(1009); END_STATE(); case 733: - if (lookahead == 'c') ADVANCE(1405); - if (lookahead == 'd') ADVANCE(888); - if (lookahead == 'e') ADVANCE(1634); - if (lookahead == 'i') ADVANCE(1148); - if (lookahead == 'o') ADVANCE(1342); - if (lookahead == 'r') ADVANCE(897); - if (lookahead == 'u') ADVANCE(1322); + if (lookahead == 'e') ADVANCE(1561); END_STATE(); case 734: - if (lookahead == 'c') ADVANCE(1594); + if (lookahead == 'e') ADVANCE(1002); END_STATE(); case 735: - if (lookahead == 'c') ADVANCE(645); + if (lookahead == 'e') ADVANCE(1120); END_STATE(); case 736: - if (lookahead == 'c') ADVANCE(1407); - if (lookahead == 'i') ADVANCE(1165); - if (lookahead == 'n') ADVANCE(632); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(692); + if (lookahead == 'e') ADVANCE(1085); END_STATE(); case 737: - if (lookahead == 'c') ADVANCE(893); + if (lookahead == 'e') ADVANCE(4119); END_STATE(); case 738: - if (lookahead == 'c') ADVANCE(1285); + if (lookahead == 'e') ADVANCE(456); END_STATE(); case 739: - if (lookahead == 'c') ADVANCE(640); - if (lookahead == 'r') ADVANCE(1609); + if (lookahead == 'e') ADVANCE(1560); END_STATE(); case 740: - if (lookahead == 'c') ADVANCE(628); - if (lookahead == 't') ADVANCE(658); + if (lookahead == 'e') ADVANCE(1365); END_STATE(); case 741: - if (lookahead == 'c') ADVANCE(1311); + if (lookahead == 'e') ADVANCE(1570); END_STATE(); case 742: - ADVANCE_MAP( - 'c', 1308, - 'd', 826, - 'h', 804, - 'o', 1615, - 'r', 1580, - 's', 806, - 't', 631, - 'u', 1322, - ); + if (lookahead == 'e') ADVANCE(1112); END_STATE(); case 743: - if (lookahead == 'c') ADVANCE(890); + if (lookahead == 'e') ADVANCE(1406); END_STATE(); case 744: - if (lookahead == 'c') ADVANCE(660); + if (lookahead == 'e') ADVANCE(1304); END_STATE(); case 745: - if (lookahead == 'c') ADVANCE(904); + if (lookahead == 'e') ADVANCE(1552); END_STATE(); case 746: - if (lookahead == 'd') ADVANCE(4333); + if (lookahead == 'e') ADVANCE(843); END_STATE(); case 747: - if (lookahead == 'd') ADVANCE(4333); - if (lookahead == 'o') ADVANCE(1414); - if (lookahead == 'r') ADVANCE(461); + if (lookahead == 'e') ADVANCE(651); END_STATE(); case 748: - if (lookahead == 'd') ADVANCE(4333); - if (lookahead == 's') ADVANCE(937); + if (lookahead == 'e') ADVANCE(1066); END_STATE(); case 749: - if (lookahead == 'd') ADVANCE(512); + if (lookahead == 'e') ADVANCE(4121); END_STATE(); case 750: - if (lookahead == 'd') ADVANCE(3867); + if (lookahead == 'e') ADVANCE(1557); END_STATE(); case 751: - if (lookahead == 'd') ADVANCE(3925); + if (lookahead == 'e') ADVANCE(666); END_STATE(); case 752: - if (lookahead == 'd') ADVANCE(3905); + if (lookahead == 'e') ADVANCE(1119); END_STATE(); case 753: - if (lookahead == 'd') ADVANCE(746); + if (lookahead == 'e') ADVANCE(1073); END_STATE(); case 754: - if (lookahead == 'd') ADVANCE(746); - if (lookahead == 't') ADVANCE(4333); + if (lookahead == 'e') ADVANCE(848); END_STATE(); case 755: - if (lookahead == 'd') ADVANCE(907); - if (lookahead == 'l') ADVANCE(593); - if (lookahead == 'n') ADVANCE(1569); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 756: - if (lookahead == 'd') ADVANCE(677); - if (lookahead == 'g') ADVANCE(981); - if (lookahead == 'j') ADVANCE(1445); - if (lookahead == 'w') ADVANCE(827); - if (lookahead == 'x') ADVANCE(1139); + if (lookahead == 'e') ADVANCE(1239); END_STATE(); case 757: - if (lookahead == 'd') ADVANCE(981); + if (lookahead == 'e') ADVANCE(401); END_STATE(); case 758: - if (lookahead == 'd') ADVANCE(494); + if (lookahead == 'e') ADVANCE(4123); END_STATE(); case 759: - if (lookahead == 'd') ADVANCE(1430); + if (lookahead == 'e') ADVANCE(461); END_STATE(); case 760: - if (lookahead == 'd') ADVANCE(842); - if (lookahead == 'm') ADVANCE(1323); - if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'e') ADVANCE(1122); END_STATE(); case 761: - if (lookahead == 'd') ADVANCE(1607); + if (lookahead == 'e') ADVANCE(839); + if (lookahead == 'o') ADVANCE(3681); END_STATE(); case 762: - if (lookahead == 'd') ADVANCE(1586); + if (lookahead == 'e') ADVANCE(1101); END_STATE(); case 763: - if (lookahead == 'd') ADVANCE(1437); + if (lookahead == 'e') ADVANCE(1355); END_STATE(); case 764: - if (lookahead == 'd') ADVANCE(1256); - if (lookahead == 'l') ADVANCE(818); - if (lookahead == 'r') ADVANCE(980); - if (lookahead == 'u') ADVANCE(1314); + if (lookahead == 'e') ADVANCE(648); END_STATE(); case 765: - if (lookahead == 'd') ADVANCE(1610); - if (lookahead == 'i') ADVANCE(1173); - if (lookahead == 'n') ADVANCE(1286); - if (lookahead == 'u') ADVANCE(1218); + if (lookahead == 'e') ADVANCE(1022); END_STATE(); case 766: - if (lookahead == 'd') ADVANCE(1039); + if (lookahead == 'e') ADVANCE(1022); + if (lookahead == 'h') ADVANCE(548); + if (lookahead == 'o') ADVANCE(1017); END_STATE(); case 767: - if (lookahead == 'd') ADVANCE(783); + if (lookahead == 'e') ADVANCE(4135); END_STATE(); case 768: - if (lookahead == 'd') ADVANCE(807); + if (lookahead == 'e') ADVANCE(1281); END_STATE(); case 769: - if (lookahead == 'd') ADVANCE(826); - if (lookahead == 'l') ADVANCE(1043); + if (lookahead == 'e') ADVANCE(685); + if (lookahead == 'g') ADVANCE(800); + if (lookahead == 's') ADVANCE(800); END_STATE(); case 770: - if (lookahead == 'd') ADVANCE(786); + if (lookahead == 'e') ADVANCE(1400); END_STATE(); case 771: - if (lookahead == 'd') ADVANCE(830); + if (lookahead == 'e') ADVANCE(637); END_STATE(); case 772: - if (lookahead == 'd') ADVANCE(888); - if (lookahead == 'g') ADVANCE(815); - if (lookahead == 'h') ADVANCE(852); - if (lookahead == 'o') ADVANCE(1325); - if (lookahead == 'p') ADVANCE(630); + if (lookahead == 'e') ADVANCE(1084); END_STATE(); case 773: - if (lookahead == 'd') ADVANCE(633); + if (lookahead == 'e') ADVANCE(1055); END_STATE(); case 774: - if (lookahead == 'd') ADVANCE(1031); + if (lookahead == 'e') ADVANCE(640); END_STATE(); case 775: - if (lookahead == 'd') ADVANCE(822); + if (lookahead == 'e') ADVANCE(1137); END_STATE(); case 776: - if (lookahead == 'd') ADVANCE(770); + if (lookahead == 'e') ADVANCE(1148); + if (lookahead == 'u') ADVANCE(937); END_STATE(); case 777: - if (lookahead == 'd') ADVANCE(1406); - if (lookahead == 'l') ADVANCE(978); - if (lookahead == 'p') ADVANCE(1261); - if (lookahead == 's') ADVANCE(949); + if (lookahead == 'e') ADVANCE(898); + if (lookahead == 'o') ADVANCE(1357); END_STATE(); case 778: - if (lookahead == 'd') ADVANCE(653); + if (lookahead == 'e') ADVANCE(1344); END_STATE(); case 779: - if (lookahead == 'd') ADVANCE(634); - if (lookahead == 'f') ADVANCE(1033); - if (lookahead == 'p') ADVANCE(618); + if (lookahead == 'e') ADVANCE(634); END_STATE(); case 780: - if (lookahead == 'd') ADVANCE(1608); + if (lookahead == 'e') ADVANCE(503); END_STATE(); case 781: - if (lookahead == 'd') ADVANCE(1479); + if (lookahead == 'e') ADVANCE(1376); END_STATE(); case 782: - if (lookahead == 'e') ADVANCE(1617); + if (lookahead == 'e') ADVANCE(1103); + if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 'r') ADVANCE(825); END_STATE(); case 783: - if (lookahead == 'e') ADVANCE(4333); + if (lookahead == 'e') ADVANCE(396); END_STATE(); case 784: - if (lookahead == 'e') ADVANCE(1091); - if (lookahead == 'u') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1143); END_STATE(); case 785: - if (lookahead == 'e') ADVANCE(611); - if (lookahead == 's') ADVANCE(940); - if (lookahead == 't') ADVANCE(598); + if (lookahead == 'e') ADVANCE(1238); END_STATE(); case 786: - if (lookahead == 'e') ADVANCE(1612); + if (lookahead == 'e') ADVANCE(421); END_STATE(); case 787: - if (lookahead == 'e') ADVANCE(1065); + if (lookahead == 'e') ADVANCE(1010); END_STATE(); case 788: - if (lookahead == 'e') ADVANCE(691); - if (lookahead == 'm') ADVANCE(4333); + if (lookahead == 'e') ADVANCE(1315); END_STATE(); case 789: - if (lookahead == 'e') ADVANCE(722); - if (lookahead == 'i') ADVANCE(1470); - if (lookahead == 'o') ADVANCE(1622); + if (lookahead == 'e') ADVANCE(630); + if (lookahead == 't') ADVANCE(602); END_STATE(); case 790: - if (lookahead == 'e') ADVANCE(1328); + if (lookahead == 'e') ADVANCE(1419); + if (lookahead == 'r') ADVANCE(1205); END_STATE(); case 791: - if (lookahead == 'e') ADVANCE(713); + if (lookahead == 'e') ADVANCE(1296); END_STATE(); case 792: - if (lookahead == 'e') ADVANCE(1158); + if (lookahead == 'e') ADVANCE(1326); END_STATE(); case 793: - if (lookahead == 'e') ADVANCE(1216); - if (lookahead == 'o') ADVANCE(1099); + if (lookahead == 'e') ADVANCE(571); END_STATE(); case 794: - if (lookahead == 'e') ADVANCE(510); + if (lookahead == 'e') ADVANCE(1424); END_STATE(); case 795: - if (lookahead == 'e') ADVANCE(4022); + if (lookahead == 'e') ADVANCE(1345); END_STATE(); case 796: - if (lookahead == 'e') ADVANCE(4030); + if (lookahead == 'e') ADVANCE(1012); END_STATE(); case 797: - if (lookahead == 'e') ADVANCE(3678); + if (lookahead == 'e') ADVANCE(1303); END_STATE(); case 798: - if (lookahead == 'e') ADVANCE(3773); + if (lookahead == 'e') ADVANCE(1443); END_STATE(); case 799: - if (lookahead == 'e') ADVANCE(3673); + if (lookahead == 'e') ADVANCE(1309); END_STATE(); case 800: - if (lookahead == 'e') ADVANCE(3793); + if (lookahead == 'e') ADVANCE(1444); END_STATE(); case 801: - if (lookahead == 'e') ADVANCE(3707); + if (lookahead == 'e') ADVANCE(1313); END_STATE(); case 802: - if (lookahead == 'e') ADVANCE(746); + if (lookahead == 'e') ADVANCE(1351); END_STATE(); case 803: - if (lookahead == 'e') ADVANCE(689); + if (lookahead == 'e') ADVANCE(1336); END_STATE(); case 804: - if (lookahead == 'e') ADVANCE(1081); + if (lookahead == 'e') ADVANCE(1334); END_STATE(); case 805: - if (lookahead == 'e') ADVANCE(1637); + if (lookahead == 'e') ADVANCE(1335); END_STATE(); case 806: - if (lookahead == 'e') ADVANCE(1074); + if (lookahead == 'e') ADVANCE(749); END_STATE(); case 807: - if (lookahead == 'e') ADVANCE(1192); + if (lookahead == 'e') ADVANCE(1466); END_STATE(); case 808: - if (lookahead == 'e') ADVANCE(1157); + if (lookahead == 'e') ADVANCE(1466); + if (lookahead == 'i') ADVANCE(1003); + if (lookahead == 'l') ADVANCE(566); END_STATE(); case 809: - if (lookahead == 'e') ADVANCE(4211); + if (lookahead == 'e') ADVANCE(1555); + if (lookahead == 'o') ADVANCE(1067); + if (lookahead == 's') ADVANCE(1536); END_STATE(); case 810: - if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'e') ADVANCE(1378); END_STATE(); case 811: - if (lookahead == 'e') ADVANCE(1636); + if (lookahead == 'e') ADVANCE(561); END_STATE(); case 812: - if (lookahead == 'e') ADVANCE(1440); + if (lookahead == 'e') ADVANCE(1451); END_STATE(); case 813: - if (lookahead == 'e') ADVANCE(1646); + if (lookahead == 'e') ADVANCE(413); END_STATE(); case 814: - if (lookahead == 'e') ADVANCE(1184); + if (lookahead == 'e') ADVANCE(862); + if (lookahead == 'o') ADVANCE(395); END_STATE(); case 815: - if (lookahead == 'e') ADVANCE(1481); + if (lookahead == 'e') ADVANCE(1151); END_STATE(); case 816: - if (lookahead == 'e') ADVANCE(1379); + if (lookahead == 'e') ADVANCE(1039); END_STATE(); case 817: - if (lookahead == 'e') ADVANCE(1628); + if (lookahead == 'e') ADVANCE(1337); END_STATE(); case 818: - if (lookahead == 'e') ADVANCE(915); + if (lookahead == 'e') ADVANCE(1375); END_STATE(); case 819: - if (lookahead == 'e') ADVANCE(723); + if (lookahead == 'e') ADVANCE(530); + if (lookahead == 'i') ADVANCE(1252); END_STATE(); case 820: - if (lookahead == 'e') ADVANCE(1138); + if (lookahead == 'e') ADVANCE(1145); END_STATE(); case 821: - if (lookahead == 'e') ADVANCE(4213); + if (lookahead == 'e') ADVANCE(1029); END_STATE(); case 822: - if (lookahead == 'e') ADVANCE(1633); + if (lookahead == 'e') ADVANCE(1450); END_STATE(); case 823: - if (lookahead == 'e') ADVANCE(738); + if (lookahead == 'e') ADVANCE(1453); END_STATE(); case 824: - if (lookahead == 'e') ADVANCE(1191); + if (lookahead == 'e') ADVANCE(573); END_STATE(); case 825: - if (lookahead == 'e') ADVANCE(1145); + if (lookahead == 'e') ADVANCE(1372); END_STATE(); case 826: - if (lookahead == 'e') ADVANCE(920); + if (lookahead == 'e') ADVANCE(1090); END_STATE(); case 827: - if (lookahead == 'e') ADVANCE(679); + if (lookahead == 'e') ADVANCE(538); END_STATE(); case 828: - if (lookahead == 'e') ADVANCE(1314); + if (lookahead == 'e') ADVANCE(1328); END_STATE(); case 829: - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'e') ADVANCE(1468); END_STATE(); case 830: - if (lookahead == 'e') ADVANCE(4215); + if (lookahead == 'e') ADVANCE(418); END_STATE(); case 831: - if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'e') ADVANCE(1350); END_STATE(); case 832: - if (lookahead == 'e') ADVANCE(1194); + if (lookahead == 'e') ADVANCE(1061); END_STATE(); case 833: - if (lookahead == 'e') ADVANCE(911); - if (lookahead == 'o') ADVANCE(3782); + if (lookahead == 'e') ADVANCE(1489); END_STATE(); case 834: - if (lookahead == 'e') ADVANCE(1173); + if (lookahead == 'f') ADVANCE(1178); + if (lookahead == 'h') ADVANCE(1525); + if (lookahead == 'l') ADVANCE(965); + if (lookahead == 'n') ADVANCE(1166); + if (lookahead == 't') ADVANCE(1174); END_STATE(); case 835: - if (lookahead == 'e') ADVANCE(1430); + if (lookahead == 'f') ADVANCE(4241); END_STATE(); case 836: - if (lookahead == 'e') ADVANCE(720); + if (lookahead == 'f') ADVANCE(3686); END_STATE(); case 837: - if (lookahead == 'e') ADVANCE(1094); + if (lookahead == 'f') ADVANCE(3686); + if (lookahead == 'n') ADVANCE(3661); END_STATE(); case 838: - if (lookahead == 'e') ADVANCE(1094); - if (lookahead == 'h') ADVANCE(620); - if (lookahead == 'o') ADVANCE(1089); + if (lookahead == 'f') ADVANCE(3686); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1588); END_STATE(); case 839: - if (lookahead == 'e') ADVANCE(4227); + if (lookahead == 'f') ADVANCE(3565); END_STATE(); case 840: - if (lookahead == 'e') ADVANCE(1356); + if (lookahead == 'f') ADVANCE(3611); END_STATE(); case 841: - if (lookahead == 'e') ADVANCE(757); - if (lookahead == 'g') ADVANCE(872); - if (lookahead == 's') ADVANCE(872); + if (lookahead == 'f') ADVANCE(835); END_STATE(); case 842: - if (lookahead == 'e') ADVANCE(1475); + if (lookahead == 'f') ADVANCE(1167); END_STATE(); case 843: - if (lookahead == 'e') ADVANCE(709); + if (lookahead == 'f') ADVANCE(1406); END_STATE(); case 844: - if (lookahead == 'e') ADVANCE(1156); + if (lookahead == 'f') ADVANCE(970); + if (lookahead == 'i') ADVANCE(1281); + if (lookahead == 's') ADVANCE(1194); END_STATE(); case 845: - if (lookahead == 'e') ADVANCE(1127); + if (lookahead == 'f') ADVANCE(901); END_STATE(); case 846: - if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'f') ADVANCE(1001); END_STATE(); case 847: - if (lookahead == 'e') ADVANCE(1209); + if (lookahead == 'f') ADVANCE(409); END_STATE(); case 848: - if (lookahead == 'e') ADVANCE(1220); - if (lookahead == 'u') ADVANCE(1009); + if (lookahead == 'f') ADVANCE(549); END_STATE(); case 849: - if (lookahead == 'e') ADVANCE(970); - if (lookahead == 'o') ADVANCE(1432); + if (lookahead == 'f') ADVANCE(557); + if (lookahead == 't') ADVANCE(1302); END_STATE(); case 850: - if (lookahead == 'e') ADVANCE(1419); + if (lookahead == 'f') ADVANCE(973); END_STATE(); case 851: - if (lookahead == 'e') ADVANCE(706); + if (lookahead == 'g') ADVANCE(4241); END_STATE(); case 852: - if (lookahead == 'e') ADVANCE(575); + if (lookahead == 'g') ADVANCE(399); END_STATE(); case 853: - if (lookahead == 'e') ADVANCE(1451); + if (lookahead == 'g') ADVANCE(4128); END_STATE(); case 854: - if (lookahead == 'e') ADVANCE(1175); - if (lookahead == 'n') ADVANCE(1569); - if (lookahead == 'r') ADVANCE(897); + if (lookahead == 'g') ADVANCE(1167); END_STATE(); case 855: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'g') ADVANCE(1423); END_STATE(); case 856: - if (lookahead == 'e') ADVANCE(1215); + if (lookahead == 'g') ADVANCE(853); + if (lookahead == 'l') ADVANCE(1018); + if (lookahead == 'p') ADVANCE(1262); + if (lookahead == 'r') ADVANCE(859); + if (lookahead == 's') ADVANCE(4127); END_STATE(); case 857: - if (lookahead == 'e') ADVANCE(1313); + if (lookahead == 'g') ADVANCE(743); + if (lookahead == 'l') ADVANCE(1355); + if (lookahead == 'r') ADVANCE(1066); END_STATE(); case 858: - if (lookahead == 'e') ADVANCE(488); + if (lookahead == 'g') ADVANCE(878); END_STATE(); case 859: - if (lookahead == 'e') ADVANCE(1082); + if (lookahead == 'g') ADVANCE(393); END_STATE(); case 860: - if (lookahead == 'e') ADVANCE(1390); + if (lookahead == 'g') ADVANCE(406); END_STATE(); case 861: - if (lookahead == 'e') ADVANCE(702); - if (lookahead == 't') ADVANCE(674); + if (lookahead == 'g') ADVANCE(794); END_STATE(); case 862: - if (lookahead == 'e') ADVANCE(1494); - if (lookahead == 'r') ADVANCE(1278); + if (lookahead == 'g') ADVANCE(768); END_STATE(); case 863: - if (lookahead == 'e') ADVANCE(1371); + if (lookahead == 'g') ADVANCE(1432); END_STATE(); case 864: - if (lookahead == 'e') ADVANCE(1401); + if (lookahead == 'g') ADVANCE(1317); + if (lookahead == 'l') ADVANCE(918); + if (lookahead == 's') ADVANCE(1438); END_STATE(); case 865: - if (lookahead == 'e') ADVANCE(643); + if (lookahead == 'g') ADVANCE(1256); END_STATE(); case 866: - if (lookahead == 'e') ADVANCE(1499); + if (lookahead == 'g') ADVANCE(954); END_STATE(); case 867: - if (lookahead == 'e') ADVANCE(1420); + if (lookahead == 'h') ADVANCE(4241); END_STATE(); case 868: - if (lookahead == 'e') ADVANCE(1084); + if (lookahead == 'h') ADVANCE(399); END_STATE(); case 869: - if (lookahead == 'e') ADVANCE(1378); + if (lookahead == 'h') ADVANCE(1603); END_STATE(); case 870: - if (lookahead == 'e') ADVANCE(1518); + if (lookahead == 'h') ADVANCE(80); END_STATE(); case 871: - if (lookahead == 'e') ADVANCE(1384); + if (lookahead == 'h') ADVANCE(3776); END_STATE(); case 872: - if (lookahead == 'e') ADVANCE(1519); + if (lookahead == 'h') ADVANCE(3774); END_STATE(); case 873: - if (lookahead == 'e') ADVANCE(1388); + if (lookahead == 'h') ADVANCE(3720); END_STATE(); case 874: - if (lookahead == 'e') ADVANCE(1426); + if (lookahead == 'h') ADVANCE(3697); END_STATE(); case 875: - if (lookahead == 'e') ADVANCE(1411); + if (lookahead == 'h') ADVANCE(3603); END_STATE(); case 876: - if (lookahead == 'e') ADVANCE(1409); + if (lookahead == 'h') ADVANCE(3609); END_STATE(); case 877: - if (lookahead == 'e') ADVANCE(1410); + if (lookahead == 'h') ADVANCE(1166); END_STATE(); case 878: - if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'h') ADVANCE(1406); END_STATE(); case 879: - if (lookahead == 'e') ADVANCE(1541); + if (lookahead == 'h') ADVANCE(997); END_STATE(); case 880: - if (lookahead == 'e') ADVANCE(1541); - if (lookahead == 'i') ADVANCE(1075); - if (lookahead == 'l') ADVANCE(638); + if (lookahead == 'h') ADVANCE(1355); END_STATE(); case 881: - if (lookahead == 'e') ADVANCE(1631); - if (lookahead == 'o') ADVANCE(1139); - if (lookahead == 's') ADVANCE(1612); + if (lookahead == 'h') ADVANCE(719); + if (lookahead == 'l') ADVANCE(1201); + if (lookahead == 'o') ADVANCE(1092); END_STATE(); case 882: - if (lookahead == 'e') ADVANCE(1453); + if (lookahead == 'h') ADVANCE(506); END_STATE(); case 883: - if (lookahead == 'e') ADVANCE(633); + if (lookahead == 'h') ADVANCE(425); END_STATE(); case 884: - if (lookahead == 'e') ADVANCE(1526); + if (lookahead == 'h') ADVANCE(711); END_STATE(); case 885: - if (lookahead == 'e') ADVANCE(480); + if (lookahead == 'h') ADVANCE(771); + if (lookahead == 'l') ADVANCE(819); END_STATE(); case 886: - if (lookahead == 'e') ADVANCE(934); - if (lookahead == 'o') ADVANCE(462); + if (lookahead == 'h') ADVANCE(774); END_STATE(); case 887: - if (lookahead == 'e') ADVANCE(1223); + if (lookahead == 'h') ADVANCE(799); END_STATE(); case 888: - if (lookahead == 'e') ADVANCE(1111); + if (lookahead == 'h') ADVANCE(826); END_STATE(); case 889: - if (lookahead == 'e') ADVANCE(1412); + if (lookahead == 'h') ADVANCE(828); END_STATE(); case 890: - if (lookahead == 'e') ADVANCE(1450); + if (lookahead == 'h') ADVANCE(416); END_STATE(); case 891: - if (lookahead == 'e') ADVANCE(602); - if (lookahead == 'i') ADVANCE(1327); + if (lookahead == 'h') ADVANCE(762); + if (lookahead == 'i') ADVANCE(1465); END_STATE(); case 892: - if (lookahead == 'e') ADVANCE(1217); + if (lookahead == 'h') ADVANCE(535); END_STATE(); case 893: - if (lookahead == 'e') ADVANCE(1101); + if (lookahead == 'h') ADVANCE(548); END_STATE(); case 894: - if (lookahead == 'e') ADVANCE(1525); + if (lookahead == 'h') ADVANCE(973); END_STATE(); case 895: - if (lookahead == 'e') ADVANCE(1528); + if (lookahead == 'h') ADVANCE(589); END_STATE(); case 896: - if (lookahead == 'e') ADVANCE(645); + if (lookahead == 'i') ADVANCE(841); END_STATE(); case 897: - if (lookahead == 'e') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(4241); END_STATE(); case 898: - if (lookahead == 'e') ADVANCE(1162); + if (lookahead == 'i') ADVANCE(993); END_STATE(); case 899: - if (lookahead == 'e') ADVANCE(610); + if (lookahead == 'i') ADVANCE(1162); + if (lookahead == 'o') ADVANCE(1169); END_STATE(); case 900: - if (lookahead == 'e') ADVANCE(1403); + if (lookahead == 'i') ADVANCE(674); END_STATE(); case 901: - if (lookahead == 'e') ADVANCE(1543); + if (lookahead == 'i') ADVANCE(851); END_STATE(); case 902: - if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'i') ADVANCE(1423); END_STATE(); case 903: - if (lookahead == 'e') ADVANCE(1425); + if (lookahead == 'i') ADVANCE(1569); END_STATE(); case 904: - if (lookahead == 'e') ADVANCE(1133); + if (lookahead == 'i') ADVANCE(1537); END_STATE(); case 905: - if (lookahead == 'e') ADVANCE(1565); + if (lookahead == 'i') ADVANCE(1537); + if (lookahead == 'r') ADVANCE(1223); END_STATE(); case 906: - if (lookahead == 'f') ADVANCE(1251); - if (lookahead == 'h') ADVANCE(1601); - if (lookahead == 'l') ADVANCE(1037); - if (lookahead == 'n') ADVANCE(1238); - if (lookahead == 't') ADVANCE(1247); + if (lookahead == 'i') ADVANCE(1365); END_STATE(); case 907: - if (lookahead == 'f') ADVANCE(4333); + if (lookahead == 'i') ADVANCE(1365); + if (lookahead == 'o') ADVANCE(637); END_STATE(); case 908: - if (lookahead == 'f') ADVANCE(3787); + if (lookahead == 'i') ADVANCE(858); END_STATE(); case 909: - if (lookahead == 'f') ADVANCE(3787); - if (lookahead == 'n') ADVANCE(3760); + if (lookahead == 'i') ADVANCE(1406); END_STATE(); case 910: - if (lookahead == 'f') ADVANCE(3787); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1664); + if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 's') ADVANCE(1474); END_STATE(); case 911: - if (lookahead == 'f') ADVANCE(3660); + if (lookahead == 'i') ADVANCE(651); END_STATE(); case 912: - if (lookahead == 'f') ADVANCE(3706); + if (lookahead == 'i') ADVANCE(1066); END_STATE(); case 913: - if (lookahead == 'f') ADVANCE(907); + if (lookahead == 'i') ADVANCE(1239); END_STATE(); case 914: - if (lookahead == 'f') ADVANCE(1239); + if (lookahead == 'i') ADVANCE(1193); END_STATE(); case 915: - if (lookahead == 'f') ADVANCE(1481); + if (lookahead == 'i') ADVANCE(1477); + if (lookahead == 'r') ADVANCE(912); END_STATE(); case 916: - if (lookahead == 'f') ADVANCE(1042); - if (lookahead == 'i') ADVANCE(1356); - if (lookahead == 's') ADVANCE(1267); + if (lookahead == 'i') ADVANCE(1364); END_STATE(); case 917: - if (lookahead == 'f') ADVANCE(973); + if (lookahead == 'i') ADVANCE(1101); END_STATE(); case 918: - if (lookahead == 'f') ADVANCE(1073); + if (lookahead == 'i') ADVANCE(1123); END_STATE(); case 919: - if (lookahead == 'f') ADVANCE(476); + if (lookahead == 'i') ADVANCE(1281); END_STATE(); case 920: - if (lookahead == 'f') ADVANCE(621); + if (lookahead == 'i') ADVANCE(1091); END_STATE(); case 921: - if (lookahead == 'f') ADVANCE(629); - if (lookahead == 't') ADVANCE(1377); + if (lookahead == 'i') ADVANCE(637); END_STATE(); case 922: - if (lookahead == 'f') ADVANCE(1045); + if (lookahead == 'i') ADVANCE(1125); + if (lookahead == 'p') ADVANCE(1329); END_STATE(); case 923: - if (lookahead == 'g') ADVANCE(4333); + if (lookahead == 'i') ADVANCE(523); END_STATE(); case 924: - if (lookahead == 'g') ADVANCE(466); + if (lookahead == 'i') ADVANCE(652); END_STATE(); case 925: - if (lookahead == 'g') ADVANCE(4220); + if (lookahead == 'i') ADVANCE(1014); END_STATE(); case 926: - if (lookahead == 'g') ADVANCE(1239); + if (lookahead == 'i') ADVANCE(1105); END_STATE(); case 927: - if (lookahead == 'g') ADVANCE(1498); + if (lookahead == 'i') ADVANCE(1105); + if (lookahead == 'q') ADVANCE(1304); + if (lookahead == 't') ADVANCE(704); + if (lookahead == 'u') ADVANCE(1066); END_STATE(); case 928: - if (lookahead == 'g') ADVANCE(925); - if (lookahead == 'l') ADVANCE(1090); - if (lookahead == 'p') ADVANCE(1337); - if (lookahead == 'r') ADVANCE(931); - if (lookahead == 's') ADVANCE(4219); + if (lookahead == 'i') ADVANCE(1430); END_STATE(); case 929: - if (lookahead == 'g') ADVANCE(815); - if (lookahead == 'l') ADVANCE(1430); - if (lookahead == 'r') ADVANCE(1138); + if (lookahead == 'i') ADVANCE(1368); END_STATE(); case 930: - if (lookahead == 'g') ADVANCE(950); + if (lookahead == 'i') ADVANCE(672); END_STATE(); case 931: - if (lookahead == 'g') ADVANCE(460); + if (lookahead == 'i') ADVANCE(1324); END_STATE(); case 932: - if (lookahead == 'g') ADVANCE(473); + if (lookahead == 'i') ADVANCE(1163); END_STATE(); case 933: - if (lookahead == 'g') ADVANCE(866); + if (lookahead == 'i') ADVANCE(1163); + if (lookahead == 'u') ADVANCE(1155); END_STATE(); case 934: - if (lookahead == 'g') ADVANCE(840); + if (lookahead == 'i') ADVANCE(1114); END_STATE(); case 935: - if (lookahead == 'g') ADVANCE(1507); + if (lookahead == 'i') ADVANCE(1057); END_STATE(); case 936: - if (lookahead == 'g') ADVANCE(1392); - if (lookahead == 'l') ADVANCE(990); - if (lookahead == 's') ADVANCE(1513); + if (lookahead == 'i') ADVANCE(1161); + if (lookahead == 'o') ADVANCE(1169); END_STATE(); case 937: - if (lookahead == 'g') ADVANCE(1331); + if (lookahead == 'i') ADVANCE(999); END_STATE(); case 938: - if (lookahead == 'g') ADVANCE(1026); + if (lookahead == 'i') ADVANCE(1130); END_STATE(); case 939: - if (lookahead == 'h') ADVANCE(4333); + if (lookahead == 'i') ADVANCE(710); END_STATE(); case 940: - if (lookahead == 'h') ADVANCE(466); + if (lookahead == 'i') ADVANCE(1154); END_STATE(); case 941: - if (lookahead == 'h') ADVANCE(1679); + if (lookahead == 'i') ADVANCE(570); END_STATE(); case 942: - if (lookahead == 'h') ADVANCE(93); + if (lookahead == 'i') ADVANCE(1127); END_STATE(); case 943: - if (lookahead == 'h') ADVANCE(3877); + if (lookahead == 'i') ADVANCE(1413); END_STATE(); case 944: - if (lookahead == 'h') ADVANCE(3875); + if (lookahead == 'i') ADVANCE(1107); END_STATE(); case 945: - if (lookahead == 'h') ADVANCE(3798); + if (lookahead == 'i') ADVANCE(1447); END_STATE(); case 946: - if (lookahead == 'h') ADVANCE(3821); + if (lookahead == 'i') ADVANCE(763); END_STATE(); case 947: - if (lookahead == 'h') ADVANCE(3698); + if (lookahead == 'i') ADVANCE(1466); END_STATE(); case 948: - if (lookahead == 'h') ADVANCE(3704); + if (lookahead == 'i') ADVANCE(1538); END_STATE(); case 949: - if (lookahead == 'h') ADVANCE(1238); + if (lookahead == 'i') ADVANCE(1451); END_STATE(); case 950: - if (lookahead == 'h') ADVANCE(1481); + if (lookahead == 'i') ADVANCE(1369); + if (lookahead == 'p') ADVANCE(852); END_STATE(); case 951: - if (lookahead == 'h') ADVANCE(1069); + if (lookahead == 'i') ADVANCE(534); END_STATE(); case 952: - if (lookahead == 'h') ADVANCE(1430); + if (lookahead == 'i') ADVANCE(1383); + if (lookahead == 'r') ADVANCE(541); END_STATE(); case 953: - if (lookahead == 'h') ADVANCE(791); - if (lookahead == 'l') ADVANCE(1274); - if (lookahead == 'o') ADVANCE(1164); + if (lookahead == 'i') ADVANCE(1083); END_STATE(); case 954: - if (lookahead == 'h') ADVANCE(578); + if (lookahead == 'i') ADVANCE(1147); END_STATE(); case 955: - if (lookahead == 'h') ADVANCE(492); + if (lookahead == 'i') ADVANCE(1540); END_STATE(); case 956: - if (lookahead == 'h') ADVANCE(783); + if (lookahead == 'i') ADVANCE(1433); END_STATE(); case 957: - if (lookahead == 'h') ADVANCE(843); - if (lookahead == 'l') ADVANCE(891); + if (lookahead == 'i') ADVANCE(1382); END_STATE(); case 958: - if (lookahead == 'h') ADVANCE(846); + if (lookahead == 'i') ADVANCE(1075); + if (lookahead == 's') ADVANCE(810); END_STATE(); case 959: - if (lookahead == 'h') ADVANCE(871); + if (lookahead == 'i') ADVANCE(530); END_STATE(); case 960: - if (lookahead == 'h') ADVANCE(898); + if (lookahead == 'i') ADVANCE(1208); END_STATE(); case 961: - if (lookahead == 'h') ADVANCE(900); + if (lookahead == 'i') ADVANCE(1047); END_STATE(); case 962: - if (lookahead == 'h') ADVANCE(483); + if (lookahead == 'i') ADVANCE(1047); + if (lookahead == 'l') ADVANCE(1231); END_STATE(); case 963: - if (lookahead == 'h') ADVANCE(834); - if (lookahead == 'i') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1089); END_STATE(); case 964: - if (lookahead == 'h') ADVANCE(607); + if (lookahead == 'i') ADVANCE(1434); END_STATE(); case 965: - if (lookahead == 'h') ADVANCE(620); + if (lookahead == 'i') ADVANCE(1377); END_STATE(); case 966: - if (lookahead == 'h') ADVANCE(1045); + if (lookahead == 'i') ADVANCE(699); END_STATE(); case 967: - if (lookahead == 'h') ADVANCE(661); + if (lookahead == 'i') ADVANCE(752); END_STATE(); case 968: - if (lookahead == 'i') ADVANCE(913); + if (lookahead == 'i') ADVANCE(1229); END_STATE(); case 969: - if (lookahead == 'i') ADVANCE(4333); + if (lookahead == 'i') ADVANCE(1455); END_STATE(); case 970: - if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'i') ADVANCE(1041); END_STATE(); case 971: - if (lookahead == 'i') ADVANCE(1234); - if (lookahead == 'o') ADVANCE(1241); + if (lookahead == 'i') ADVANCE(1380); END_STATE(); case 972: - if (lookahead == 'i') ADVANCE(746); + if (lookahead == 'i') ADVANCE(553); END_STATE(); case 973: - if (lookahead == 'i') ADVANCE(923); + if (lookahead == 'i') ADVANCE(1033); END_STATE(); case 974: - if (lookahead == 'i') ADVANCE(1498); + if (lookahead == 'i') ADVANCE(1381); + if (lookahead == 'p') ADVANCE(513); END_STATE(); case 975: - if (lookahead == 'i') ADVANCE(1645); + if (lookahead == 'i') ADVANCE(1276); END_STATE(); case 976: - if (lookahead == 'i') ADVANCE(1613); + if (lookahead == 'i') ADVANCE(1276); + if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'p') ADVANCE(904); END_STATE(); case 977: - if (lookahead == 'i') ADVANCE(1613); - if (lookahead == 'r') ADVANCE(1297); + if (lookahead == 'i') ADVANCE(591); END_STATE(); case 978: - if (lookahead == 'i') ADVANCE(1440); + if (lookahead == 'i') ADVANCE(1471); END_STATE(); case 979: - if (lookahead == 'i') ADVANCE(1440); - if (lookahead == 'o') ADVANCE(709); + if (lookahead == 'i') ADVANCE(587); END_STATE(); case 980: - if (lookahead == 'i') ADVANCE(930); + if (lookahead == 'j') ADVANCE(1225); + if (lookahead == 'l') ADVANCE(815); + if (lookahead == 's') ADVANCE(1024); END_STATE(); case 981: - if (lookahead == 'i') ADVANCE(1481); + if (lookahead == 'k') ADVANCE(4241); END_STATE(); case 982: - if (lookahead == 'i') ADVANCE(1481); - if (lookahead == 's') ADVANCE(1549); + if (lookahead == 'k') ADVANCE(4240); END_STATE(); case 983: - if (lookahead == 'i') ADVANCE(723); + if (lookahead == 'k') ADVANCE(4023); END_STATE(); case 984: - if (lookahead == 'i') ADVANCE(1138); + if (lookahead == 'k') ADVANCE(846); END_STATE(); case 985: - if (lookahead == 'i') ADVANCE(1314); + if (lookahead == 'k') ADVANCE(1355); END_STATE(); case 986: - if (lookahead == 'i') ADVANCE(1266); + if (lookahead == 'k') ADVANCE(913); + if (lookahead == 't') ADVANCE(517); END_STATE(); case 987: - if (lookahead == 'i') ADVANCE(1552); - if (lookahead == 'r') ADVANCE(984); + if (lookahead == 'k') ADVANCE(711); END_STATE(); case 988: - if (lookahead == 'i') ADVANCE(1439); + if (lookahead == 'k') ADVANCE(1203); END_STATE(); case 989: - if (lookahead == 'i') ADVANCE(1173); + if (lookahead == 'k') ADVANCE(733); END_STATE(); case 990: - if (lookahead == 'i') ADVANCE(1195); + if (lookahead == 'k') ADVANCE(757); END_STATE(); case 991: - if (lookahead == 'i') ADVANCE(1356); + if (lookahead == 'k') ADVANCE(727); + if (lookahead == 't') ADVANCE(647); END_STATE(); case 992: - if (lookahead == 'i') ADVANCE(1163); + if (lookahead == 'k') ADVANCE(1482); END_STATE(); case 993: - if (lookahead == 'i') ADVANCE(709); + if (lookahead == 'l') ADVANCE(4241); END_STATE(); case 994: - if (lookahead == 'i') ADVANCE(1197); - if (lookahead == 'p') ADVANCE(1404); + if (lookahead == 'l') ADVANCE(993); END_STATE(); case 995: - if (lookahead == 'i') ADVANCE(595); + if (lookahead == 'l') ADVANCE(993); + if (lookahead == 's') ADVANCE(867); END_STATE(); case 996: - if (lookahead == 'i') ADVANCE(724); + if (lookahead == 'l') ADVANCE(4188); + if (lookahead == 'n') ADVANCE(668); + if (lookahead == 'u') ADVANCE(1142); END_STATE(); case 997: - if (lookahead == 'i') ADVANCE(1086); + if (lookahead == 'l') ADVANCE(3820); + if (lookahead == 'r') ADVANCE(3822); END_STATE(); case 998: - if (lookahead == 'i') ADVANCE(1177); + if (lookahead == 'l') ADVANCE(3910); END_STATE(); case 999: - if (lookahead == 'i') ADVANCE(1177); - if (lookahead == 'q') ADVANCE(1379); - if (lookahead == 't') ADVANCE(776); - if (lookahead == 'u') ADVANCE(1138); + if (lookahead == 'l') ADVANCE(674); END_STATE(); case 1000: - if (lookahead == 'i') ADVANCE(1505); + if (lookahead == 'l') ADVANCE(951); + if (lookahead == 'p') ADVANCE(897); + if (lookahead == 'u') ADVANCE(1423); END_STATE(); case 1001: - if (lookahead == 'i') ADVANCE(1443); + if (lookahead == 'l') ADVANCE(1166); END_STATE(); case 1002: - if (lookahead == 'i') ADVANCE(744); + if (lookahead == 'l') ADVANCE(835); + if (lookahead == 't') ADVANCE(4120); END_STATE(); case 1003: - if (lookahead == 'i') ADVANCE(1399); + if (lookahead == 'l') ADVANCE(1048); + if (lookahead == 'r') ADVANCE(1365); END_STATE(); case 1004: - if (lookahead == 'i') ADVANCE(1235); + if (lookahead == 'l') ADVANCE(1514); END_STATE(); case 1005: - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == 'u') ADVANCE(1227); + if (lookahead == 'l') ADVANCE(1173); END_STATE(); case 1006: - if (lookahead == 'i') ADVANCE(1186); + if (lookahead == 'l') ADVANCE(1406); END_STATE(); case 1007: - if (lookahead == 'i') ADVANCE(1129); + if (lookahead == 'l') ADVANCE(390); END_STATE(); case 1008: - if (lookahead == 'i') ADVANCE(1233); - if (lookahead == 'o') ADVANCE(1241); + if (lookahead == 'l') ADVANCE(909); END_STATE(); case 1009: - if (lookahead == 'i') ADVANCE(1071); + if (lookahead == 'l') ADVANCE(1239); END_STATE(); case 1010: - if (lookahead == 'i') ADVANCE(1202); + if (lookahead == 'l') ADVANCE(401); END_STATE(); case 1011: - if (lookahead == 'i') ADVANCE(782); + if (lookahead == 'l') ADVANCE(4136); END_STATE(); case 1012: - if (lookahead == 'i') ADVANCE(1226); + if (lookahead == 'l') ADVANCE(847); END_STATE(); case 1013: - if (lookahead == 'i') ADVANCE(642); + if (lookahead == 'l') ADVANCE(1355); END_STATE(); case 1014: - if (lookahead == 'i') ADVANCE(1199); + if (lookahead == 'l') ADVANCE(686); END_STATE(); case 1015: - if (lookahead == 'i') ADVANCE(1488); + if (lookahead == 'l') ADVANCE(903); END_STATE(); case 1016: - if (lookahead == 'i') ADVANCE(1179); + if (lookahead == 'l') ADVANCE(1366); + if (lookahead == 'm') ADVANCE(993); + if (lookahead == 'z') ADVANCE(4241); END_STATE(); case 1017: - if (lookahead == 'i') ADVANCE(1522); + if (lookahead == 'l') ADVANCE(1503); END_STATE(); case 1018: - if (lookahead == 'i') ADVANCE(835); + if (lookahead == 'l') ADVANCE(392); END_STATE(); case 1019: - if (lookahead == 'i') ADVANCE(1541); + if (lookahead == 'l') ADVANCE(824); + if (lookahead == 'p') ADVANCE(1175); END_STATE(); case 1020: - if (lookahead == 'i') ADVANCE(1614); + if (lookahead == 'l') ADVANCE(825); + if (lookahead == 'n') ADVANCE(4241); END_STATE(); case 1021: - if (lookahead == 'i') ADVANCE(1526); + if (lookahead == 'l') ADVANCE(928); END_STATE(); case 1022: - if (lookahead == 'i') ADVANCE(1444); - if (lookahead == 'p') ADVANCE(924); + if (lookahead == 'l') ADVANCE(1007); END_STATE(); case 1023: - if (lookahead == 'i') ADVANCE(606); + if (lookahead == 'l') ADVANCE(949); END_STATE(); case 1024: - if (lookahead == 'i') ADVANCE(1458); - if (lookahead == 'r') ADVANCE(613); + if (lookahead == 'l') ADVANCE(924); END_STATE(); case 1025: - if (lookahead == 'i') ADVANCE(1155); + if (lookahead == 'l') ADVANCE(1231); END_STATE(); case 1026: - if (lookahead == 'i') ADVANCE(1219); + if (lookahead == 'l') ADVANCE(1180); END_STATE(); case 1027: - if (lookahead == 'i') ADVANCE(1616); + if (lookahead == 'l') ADVANCE(1054); END_STATE(); case 1028: - if (lookahead == 'i') ADVANCE(1508); + if (lookahead == 'l') ADVANCE(1233); END_STATE(); case 1029: - if (lookahead == 'i') ADVANCE(1457); + if (lookahead == 'l') ADVANCE(1013); END_STATE(); case 1030: - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 's') ADVANCE(882); + if (lookahead == 'l') ADVANCE(1224); END_STATE(); case 1031: - if (lookahead == 'i') ADVANCE(602); + if (lookahead == 'l') ADVANCE(1224); + if (lookahead == 'r') ADVANCE(410); END_STATE(); case 1032: - if (lookahead == 'i') ADVANCE(1281); + if (lookahead == 'l') ADVANCE(543); END_STATE(); case 1033: - if (lookahead == 'i') ADVANCE(1119); + if (lookahead == 'l') ADVANCE(711); END_STATE(); case 1034: - if (lookahead == 'i') ADVANCE(1119); - if (lookahead == 'l') ADVANCE(1305); + if (lookahead == 'l') ADVANCE(1011); END_STATE(); case 1035: - if (lookahead == 'i') ADVANCE(1161); + if (lookahead == 'l') ADVANCE(998); END_STATE(); case 1036: - if (lookahead == 'i') ADVANCE(1509); + if (lookahead == 'l') ADVANCE(930); END_STATE(); case 1037: - if (lookahead == 'i') ADVANCE(1452); + if (lookahead == 'l') ADVANCE(829); END_STATE(); case 1038: - if (lookahead == 'i') ADVANCE(771); + if (lookahead == 'l') ADVANCE(1197); END_STATE(); case 1039: - if (lookahead == 'i') ADVANCE(824); + if (lookahead == 'l') ADVANCE(812); END_STATE(); case 1040: - if (lookahead == 'i') ADVANCE(1303); + if (lookahead == 'l') ADVANCE(757); END_STATE(); case 1041: - if (lookahead == 'i') ADVANCE(1530); + if (lookahead == 'l') ADVANCE(763); END_STATE(); case 1042: - if (lookahead == 'i') ADVANCE(1113); + if (lookahead == 'l') ADVANCE(779); END_STATE(); case 1043: - if (lookahead == 'i') ADVANCE(1455); + if (lookahead == 'l') ADVANCE(779); + if (lookahead == 't') ADVANCE(4130); END_STATE(); case 1044: - if (lookahead == 'i') ADVANCE(625); + if (lookahead == 'l') ADVANCE(728); END_STATE(); case 1045: - if (lookahead == 'i') ADVANCE(1105); + if (lookahead == 'l') ADVANCE(1201); + if (lookahead == 'r') ADVANCE(811); END_STATE(); case 1046: - if (lookahead == 'i') ADVANCE(1456); - if (lookahead == 'p') ADVANCE(585); + if (lookahead == 'l') ADVANCE(1526); END_STATE(); case 1047: - if (lookahead == 'i') ADVANCE(1351); + if (lookahead == 'l') ADVANCE(781); END_STATE(); case 1048: - if (lookahead == 'i') ADVANCE(1351); - if (lookahead == 'n') ADVANCE(812); - if (lookahead == 'p') ADVANCE(976); + if (lookahead == 'l') ADVANCE(411); + if (lookahead == 't') ADVANCE(802); END_STATE(); case 1049: - if (lookahead == 'i') ADVANCE(663); + if (lookahead == 'l') ADVANCE(575); END_STATE(); case 1050: - if (lookahead == 'i') ADVANCE(1546); + if (lookahead == 'l') ADVANCE(658); END_STATE(); case 1051: - if (lookahead == 'i') ADVANCE(659); + if (lookahead == 'l') ADVANCE(1382); END_STATE(); case 1052: - if (lookahead == 'j') ADVANCE(1299); - if (lookahead == 'l') ADVANCE(887); - if (lookahead == 's') ADVANCE(1096); + if (lookahead == 'l') ADVANCE(929); END_STATE(); case 1053: - if (lookahead == 'k') ADVANCE(4333); + if (lookahead == 'l') ADVANCE(1521); + if (lookahead == 'r') ADVANCE(4241); END_STATE(); case 1054: - if (lookahead == 'k') ADVANCE(4332); + if (lookahead == 'l') ADVANCE(934); END_STATE(); case 1055: - if (lookahead == 'k') ADVANCE(4127); + if (lookahead == 'l') ADVANCE(579); END_STATE(); case 1056: - if (lookahead == 'k') ADVANCE(918); + if (lookahead == 'l') ADVANCE(1042); END_STATE(); case 1057: - if (lookahead == 'k') ADVANCE(1430); + if (lookahead == 'l') ADVANCE(565); END_STATE(); case 1058: - if (lookahead == 'k') ADVANCE(985); - if (lookahead == 't') ADVANCE(589); + if (lookahead == 'l') ADVANCE(1392); END_STATE(); case 1059: - if (lookahead == 'k') ADVANCE(783); + if (lookahead == 'l') ADVANCE(979); END_STATE(); case 1060: - if (lookahead == 'k') ADVANCE(1276); + if (lookahead == 'l') ADVANCE(426); END_STATE(); case 1061: - if (lookahead == 'k') ADVANCE(805); + if (lookahead == 'l') ADVANCE(1060); END_STATE(); case 1062: - if (lookahead == 'k') ADVANCE(829); + if (lookahead == 'l') ADVANCE(833); + if (lookahead == 'o') ADVANCE(1159); END_STATE(); case 1063: - if (lookahead == 'k') ADVANCE(798); - if (lookahead == 't') ADVANCE(718); + if (lookahead == 'l') ADVANCE(971); END_STATE(); case 1064: - if (lookahead == 'k') ADVANCE(1558); + if (lookahead == 'l') ADVANCE(600); END_STATE(); case 1065: - if (lookahead == 'l') ADVANCE(4333); + if (lookahead == 'l') ADVANCE(972); END_STATE(); case 1066: - if (lookahead == 'l') ADVANCE(1065); + if (lookahead == 'm') ADVANCE(4241); END_STATE(); case 1067: - if (lookahead == 'l') ADVANCE(1065); - if (lookahead == 's') ADVANCE(939); + if (lookahead == 'm') ADVANCE(993); END_STATE(); case 1068: - if (lookahead == 'l') ADVANCE(4280); - if (lookahead == 'n') ADVANCE(740); - if (lookahead == 'u') ADVANCE(1214); + if (lookahead == 'm') ADVANCE(993); + if (lookahead == 'z') ADVANCE(4241); END_STATE(); case 1069: - if (lookahead == 'l') ADVANCE(3921); - if (lookahead == 'r') ADVANCE(3923); + if (lookahead == 'm') ADVANCE(4194); END_STATE(); case 1070: - if (lookahead == 'l') ADVANCE(4014); + if (lookahead == 'm') ADVANCE(520); + if (lookahead == 's') ADVANCE(1182); + if (lookahead == 't') ADVANCE(1302); + if (lookahead == 'u') ADVANCE(1146); + if (lookahead == 'w') ADVANCE(889); END_STATE(); case 1071: - if (lookahead == 'l') ADVANCE(746); + if (lookahead == 'm') ADVANCE(677); + if (lookahead == 's') ADVANCE(882); END_STATE(); case 1072: - if (lookahead == 'l') ADVANCE(1023); - if (lookahead == 'p') ADVANCE(969); - if (lookahead == 'u') ADVANCE(1498); + if (lookahead == 'm') ADVANCE(909); END_STATE(); case 1073: - if (lookahead == 'l') ADVANCE(1238); + if (lookahead == 'm') ADVANCE(1239); END_STATE(); case 1074: - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 't') ADVANCE(4212); + if (lookahead == 'm') ADVANCE(1101); END_STATE(); case 1075: - if (lookahead == 'l') ADVANCE(1120); - if (lookahead == 'r') ADVANCE(1440); + if (lookahead == 'm') ADVANCE(1273); END_STATE(); case 1076: - if (lookahead == 'l') ADVANCE(1590); + if (lookahead == 'm') ADVANCE(1273); + if (lookahead == 'n') ADVANCE(1387); END_STATE(); case 1077: - if (lookahead == 'l') ADVANCE(1246); + if (lookahead == 'm') ADVANCE(1271); END_STATE(); case 1078: - if (lookahead == 'l') ADVANCE(1481); + if (lookahead == 'm') ADVANCE(1271); + if (lookahead == 'n') ADVANCE(1445); END_STATE(); case 1079: - if (lookahead == 'l') ADVANCE(457); + if (lookahead == 'm') ADVANCE(1240); END_STATE(); case 1080: - if (lookahead == 'l') ADVANCE(981); + if (lookahead == 'm') ADVANCE(1535); END_STATE(); case 1081: - if (lookahead == 'l') ADVANCE(1314); + if (lookahead == 'm') ADVANCE(567); END_STATE(); case 1082: - if (lookahead == 'l') ADVANCE(468); + if (lookahead == 'm') ADVANCE(1130); END_STATE(); case 1083: - if (lookahead == 'l') ADVANCE(4228); + if (lookahead == 'm') ADVANCE(711); END_STATE(); case 1084: - if (lookahead == 'l') ADVANCE(919); + if (lookahead == 'm') ADVANCE(1222); END_STATE(); case 1085: - if (lookahead == 'l') ADVANCE(1430); + if (lookahead == 'm') ADVANCE(1222); + if (lookahead == 'n') ADVANCE(564); END_STATE(); case 1086: - if (lookahead == 'l') ADVANCE(758); + if (lookahead == 'm') ADVANCE(1222); + if (lookahead == 'p') ADVANCE(1032); + if (lookahead == 'v') ADVANCE(778); END_STATE(); case 1087: - if (lookahead == 'l') ADVANCE(975); + if (lookahead == 'm') ADVANCE(576); END_STATE(); case 1088: - if (lookahead == 'l') ADVANCE(1441); - if (lookahead == 'm') ADVANCE(1065); - if (lookahead == 'z') ADVANCE(4333); + if (lookahead == 'm') ADVANCE(946); END_STATE(); case 1089: - if (lookahead == 'l') ADVANCE(1579); + if (lookahead == 'm') ADVANCE(494); END_STATE(); case 1090: - if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'm') ADVANCE(490); END_STATE(); case 1091: - if (lookahead == 'l') ADVANCE(896); - if (lookahead == 'p') ADVANCE(1248); + if (lookahead == 'm') ADVANCE(741); END_STATE(); case 1092: - if (lookahead == 'l') ADVANCE(897); - if (lookahead == 'n') ADVANCE(4333); + if (lookahead == 'm') ADVANCE(1072); END_STATE(); case 1093: - if (lookahead == 'l') ADVANCE(1000); + if (lookahead == 'm') ADVANCE(935); END_STATE(); case 1094: - if (lookahead == 'l') ADVANCE(1079); + if (lookahead == 'm') ADVANCE(1087); END_STATE(); case 1095: - if (lookahead == 'l') ADVANCE(1021); + if (lookahead == 'm') ADVANCE(516); END_STATE(); case 1096: - if (lookahead == 'l') ADVANCE(996); + if (lookahead == 'm') ADVANCE(1269); + if (lookahead == 'n') ADVANCE(1418); + if (lookahead == 's') ADVANCE(391); END_STATE(); case 1097: - if (lookahead == 'l') ADVANCE(1305); + if (lookahead == 'm') ADVANCE(1088); END_STATE(); case 1098: - if (lookahead == 'l') ADVANCE(1253); + if (lookahead == 'm') ADVANCE(787); + if (lookahead == 'p') ADVANCE(969); END_STATE(); case 1099: - if (lookahead == 'l') ADVANCE(1126); + if (lookahead == 'm') ADVANCE(1272); + if (lookahead == 'v') ADVANCE(711); END_STATE(); case 1100: - if (lookahead == 'l') ADVANCE(1307); + if (lookahead == 'm') ADVANCE(940); END_STATE(); case 1101: - if (lookahead == 'l') ADVANCE(1085); + if (lookahead == 'n') ADVANCE(4241); END_STATE(); case 1102: - if (lookahead == 'l') ADVANCE(1298); + if (lookahead == 'n') ADVANCE(4241); + if (lookahead == 'o') ADVANCE(851); END_STATE(); case 1103: - if (lookahead == 'l') ADVANCE(1298); - if (lookahead == 'r') ADVANCE(477); + if (lookahead == 'n') ADVANCE(1536); END_STATE(); case 1104: - if (lookahead == 'l') ADVANCE(615); + if (lookahead == 'n') ADVANCE(910); END_STATE(); case 1105: - if (lookahead == 'l') ADVANCE(783); + if (lookahead == 'n') ADVANCE(4174); END_STATE(); case 1106: - if (lookahead == 'l') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(976); + if (lookahead == 'p') ADVANCE(1263); END_STATE(); case 1107: - if (lookahead == 'l') ADVANCE(1070); + if (lookahead == 'n') ADVANCE(3772); END_STATE(); case 1108: - if (lookahead == 'l') ADVANCE(1002); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 1109: - if (lookahead == 'l') ADVANCE(901); + if (lookahead == 'n') ADVANCE(3661); END_STATE(); case 1110: - if (lookahead == 'l') ADVANCE(1270); + if (lookahead == 'n') ADVANCE(3573); END_STATE(); case 1111: - if (lookahead == 'l') ADVANCE(884); + if (lookahead == 'n') ADVANCE(3610); END_STATE(); case 1112: - if (lookahead == 'l') ADVANCE(829); + if (lookahead == 'n') ADVANCE(674); END_STATE(); case 1113: - if (lookahead == 'l') ADVANCE(835); + if (lookahead == 'n') ADVANCE(1166); END_STATE(); case 1114: - if (lookahead == 'l') ADVANCE(851); + if (lookahead == 'n') ADVANCE(851); END_STATE(); case 1115: - if (lookahead == 'l') ADVANCE(851); - if (lookahead == 't') ADVANCE(4222); + if (lookahead == 'n') ADVANCE(532); END_STATE(); case 1116: - if (lookahead == 'l') ADVANCE(799); + if (lookahead == 'n') ADVANCE(687); END_STATE(); case 1117: - if (lookahead == 'l') ADVANCE(1274); - if (lookahead == 'r') ADVANCE(883); + if (lookahead == 'n') ADVANCE(663); END_STATE(); case 1118: - if (lookahead == 'l') ADVANCE(1602); + if (lookahead == 'n') ADVANCE(696); END_STATE(); case 1119: - if (lookahead == 'l') ADVANCE(853); + if (lookahead == 'n') ADVANCE(1406); END_STATE(); case 1120: - if (lookahead == 'l') ADVANCE(478); - if (lookahead == 't') ADVANCE(874); + if (lookahead == 'n') ADVANCE(1406); + if (lookahead == 'x') ADVANCE(414); END_STATE(); case 1121: - if (lookahead == 'l') ADVANCE(647); + if (lookahead == 'n') ADVANCE(651); END_STATE(); case 1122: - if (lookahead == 'l') ADVANCE(730); + if (lookahead == 'n') ADVANCE(855); END_STATE(); case 1123: - if (lookahead == 'l') ADVANCE(1457); + if (lookahead == 'n') ADVANCE(981); END_STATE(); case 1124: - if (lookahead == 'l') ADVANCE(1001); + if (lookahead == 'n') ADVANCE(909); END_STATE(); case 1125: - if (lookahead == 'l') ADVANCE(1597); - if (lookahead == 'r') ADVANCE(4333); + if (lookahead == 'n') ADVANCE(842); END_STATE(); case 1126: - if (lookahead == 'l') ADVANCE(1006); + if (lookahead == 'n') ADVANCE(866); + if (lookahead == 'x') ADVANCE(1458); END_STATE(); case 1127: - if (lookahead == 'l') ADVANCE(651); + if (lookahead == 'n') ADVANCE(4124); END_STATE(); case 1128: - if (lookahead == 'l') ADVANCE(1114); + if (lookahead == 'n') ADVANCE(1181); END_STATE(); case 1129: - if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'n') ADVANCE(703); END_STATE(); case 1130: - if (lookahead == 'l') ADVANCE(1466); + if (lookahead == 'n') ADVANCE(1355); END_STATE(); case 1131: - if (lookahead == 'l') ADVANCE(1051); + if (lookahead == 'n') ADVANCE(903); END_STATE(); case 1132: - if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(560); END_STATE(); case 1133: - if (lookahead == 'l') ADVANCE(1132); + if (lookahead == 'n') ADVANCE(678); END_STATE(); case 1134: - if (lookahead == 'l') ADVANCE(905); - if (lookahead == 'o') ADVANCE(1231); + if (lookahead == 'n') ADVANCE(678); + if (lookahead == 's') ADVANCE(3752); END_STATE(); case 1135: - if (lookahead == 'l') ADVANCE(1043); + if (lookahead == 'n') ADVANCE(679); END_STATE(); case 1136: - if (lookahead == 'l') ADVANCE(671); + if (lookahead == 'n') ADVANCE(652); END_STATE(); case 1137: - if (lookahead == 'l') ADVANCE(1044); + if (lookahead == 'n') ADVANCE(1396); END_STATE(); case 1138: - if (lookahead == 'm') ADVANCE(4333); + if (lookahead == 'n') ADVANCE(1374); END_STATE(); case 1139: - if (lookahead == 'm') ADVANCE(1065); + if (lookahead == 'n') ADVANCE(911); END_STATE(); case 1140: - if (lookahead == 'm') ADVANCE(1065); - if (lookahead == 'z') ADVANCE(4333); + if (lookahead == 'n') ADVANCE(1431); END_STATE(); case 1141: - if (lookahead == 'm') ADVANCE(4286); + if (lookahead == 'n') ADVANCE(711); END_STATE(); case 1142: - if (lookahead == 'm') ADVANCE(592); - if (lookahead == 's') ADVANCE(1255); - if (lookahead == 't') ADVANCE(1377); - if (lookahead == 'u') ADVANCE(1218); - if (lookahead == 'w') ADVANCE(961); + if (lookahead == 'n') ADVANCE(1425); END_STATE(); case 1143: - if (lookahead == 'm') ADVANCE(749); - if (lookahead == 's') ADVANCE(954); + if (lookahead == 'n') ADVANCE(564); END_STATE(); case 1144: - if (lookahead == 'm') ADVANCE(981); + if (lookahead == 'n') ADVANCE(564); + if (lookahead == 'p') ADVANCE(1049); + if (lookahead == 'v') ADVANCE(778); END_STATE(); case 1145: - if (lookahead == 'm') ADVANCE(1314); + if (lookahead == 'n') ADVANCE(1424); END_STATE(); case 1146: - if (lookahead == 'm') ADVANCE(1173); + if (lookahead == 'n') ADVANCE(975); END_STATE(); case 1147: - if (lookahead == 'm') ADVANCE(1348); + if (lookahead == 'n') ADVANCE(786); END_STATE(); case 1148: - if (lookahead == 'm') ADVANCE(1348); - if (lookahead == 'n') ADVANCE(1462); + if (lookahead == 'n') ADVANCE(635); END_STATE(); case 1149: - if (lookahead == 'm') ADVANCE(1346); + if (lookahead == 'n') ADVANCE(691); END_STATE(); case 1150: - if (lookahead == 'm') ADVANCE(1346); - if (lookahead == 'n') ADVANCE(1520); + if (lookahead == 'n') ADVANCE(691); + if (lookahead == 'x') ADVANCE(1255); END_STATE(); case 1151: - if (lookahead == 'm') ADVANCE(1315); + if (lookahead == 'n') ADVANCE(863); END_STATE(); case 1152: - if (lookahead == 'm') ADVANCE(1611); + if (lookahead == 'n') ADVANCE(1435); END_STATE(); case 1153: - if (lookahead == 'm') ADVANCE(639); + if (lookahead == 'n') ADVANCE(1515); END_STATE(); case 1154: - if (lookahead == 'm') ADVANCE(1202); + if (lookahead == 'n') ADVANCE(860); END_STATE(); case 1155: - if (lookahead == 'm') ADVANCE(783); + if (lookahead == 'n') ADVANCE(932); END_STATE(); case 1156: - if (lookahead == 'm') ADVANCE(1296); + if (lookahead == 'n') ADVANCE(932); + if (lookahead == 'p') ADVANCE(701); END_STATE(); case 1157: - if (lookahead == 'm') ADVANCE(1296); - if (lookahead == 'n') ADVANCE(636); + if (lookahead == 'n') ADVANCE(1372); END_STATE(); case 1158: - if (lookahead == 'm') ADVANCE(1296); - if (lookahead == 'p') ADVANCE(1104); - if (lookahead == 'v') ADVANCE(850); + if (lookahead == 'n') ADVANCE(1038); END_STATE(); case 1159: - if (lookahead == 'm') ADVANCE(648); + if (lookahead == 'n') ADVANCE(820); END_STATE(); case 1160: - if (lookahead == 'm') ADVANCE(1018); + if (lookahead == 'n') ADVANCE(1488); END_STATE(); case 1161: - if (lookahead == 'm') ADVANCE(566); + if (lookahead == 'n') ADVANCE(552); END_STATE(); case 1162: - if (lookahead == 'm') ADVANCE(562); + if (lookahead == 'n') ADVANCE(552); + if (lookahead == 't') ADVANCE(1355); END_STATE(); case 1163: - if (lookahead == 'm') ADVANCE(813); + if (lookahead == 'n') ADVANCE(1403); END_STATE(); case 1164: - if (lookahead == 'm') ADVANCE(1144); + if (lookahead == 'n') ADVANCE(1386); END_STATE(); case 1165: - if (lookahead == 'm') ADVANCE(1007); + if (lookahead == 'n') ADVANCE(709); END_STATE(); case 1166: - if (lookahead == 'm') ADVANCE(1159); + if (lookahead == 'o') ADVANCE(1541); END_STATE(); case 1167: - if (lookahead == 'm') ADVANCE(588); + if (lookahead == 'o') ADVANCE(4241); END_STATE(); case 1168: - if (lookahead == 'm') ADVANCE(1344); - if (lookahead == 'n') ADVANCE(1493); - if (lookahead == 's') ADVANCE(458); + if (lookahead == 'o') ADVANCE(1067); + if (lookahead == 's') ADVANCE(1536); END_STATE(); case 1169: - if (lookahead == 'm') ADVANCE(1160); + if (lookahead == 'o') ADVANCE(993); END_STATE(); case 1170: - if (lookahead == 'm') ADVANCE(859); - if (lookahead == 'p') ADVANCE(1041); + if (lookahead == 'o') ADVANCE(1603); END_STATE(); case 1171: - if (lookahead == 'm') ADVANCE(1347); - if (lookahead == 'v') ADVANCE(783); + if (lookahead == 'o') ADVANCE(674); END_STATE(); case 1172: - if (lookahead == 'm') ADVANCE(1012); + if (lookahead == 'o') ADVANCE(835); END_STATE(); case 1173: - if (lookahead == 'n') ADVANCE(4333); + if (lookahead == 'o') ADVANCE(851); END_STATE(); case 1174: - if (lookahead == 'n') ADVANCE(4333); - if (lookahead == 'o') ADVANCE(923); + if (lookahead == 'o') ADVANCE(400); END_STATE(); case 1175: - if (lookahead == 'n') ADVANCE(1612); + if (lookahead == 'o') ADVANCE(4118); END_STATE(); case 1176: - if (lookahead == 'n') ADVANCE(982); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 1177: - if (lookahead == 'n') ADVANCE(4266); + if (lookahead == 'o') ADVANCE(1548); END_STATE(); case 1178: - if (lookahead == 'n') ADVANCE(1048); - if (lookahead == 'p') ADVANCE(1338); + if (lookahead == 'o') ADVANCE(1295); END_STATE(); case 1179: - if (lookahead == 'n') ADVANCE(3873); + if (lookahead == 'o') ADVANCE(1365); END_STATE(); case 1180: - if (lookahead == 'n') ADVANCE(4127); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + if (lookahead == 'o') ADVANCE(605); END_STATE(); case 1181: - if (lookahead == 'n') ADVANCE(3760); + if (lookahead == 'o') ADVANCE(1406); END_STATE(); case 1182: - if (lookahead == 'n') ADVANCE(3668); + if (lookahead == 'o') ADVANCE(1304); END_STATE(); case 1183: - if (lookahead == 'n') ADVANCE(3705); + if (lookahead == 'o') ADVANCE(1543); END_STATE(); case 1184: - if (lookahead == 'n') ADVANCE(746); + if (lookahead == 'o') ADVANCE(689); END_STATE(); case 1185: - if (lookahead == 'n') ADVANCE(1238); + if (lookahead == 'o') ADVANCE(460); END_STATE(); case 1186: - if (lookahead == 'n') ADVANCE(923); + if (lookahead == 'o') ADVANCE(1284); END_STATE(); case 1187: - if (lookahead == 'n') ADVANCE(604); + if (lookahead == 'o') ADVANCE(1239); END_STATE(); case 1188: - if (lookahead == 'n') ADVANCE(759); + if (lookahead == 'o') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1368); END_STATE(); case 1189: - if (lookahead == 'n') ADVANCE(735); + if (lookahead == 'o') ADVANCE(1094); END_STATE(); case 1190: - if (lookahead == 'n') ADVANCE(768); + if (lookahead == 'o') ADVANCE(1017); END_STATE(); case 1191: - if (lookahead == 'n') ADVANCE(1481); + if (lookahead == 'o') ADVANCE(1496); END_STATE(); case 1192: - if (lookahead == 'n') ADVANCE(1481); - if (lookahead == 'x') ADVANCE(481); + if (lookahead == 'o') ADVANCE(625); END_STATE(); case 1193: - if (lookahead == 'n') ADVANCE(723); + if (lookahead == 'o') ADVANCE(1101); END_STATE(); case 1194: - if (lookahead == 'n') ADVANCE(927); + if (lookahead == 'o') ADVANCE(1512); + if (lookahead == 'p') ADVANCE(530); END_STATE(); case 1195: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'o') ADVANCE(840); END_STATE(); case 1196: - if (lookahead == 'n') ADVANCE(981); + if (lookahead == 'o') ADVANCE(1281); END_STATE(); case 1197: - if (lookahead == 'n') ADVANCE(914); + if (lookahead == 'o') ADVANCE(637); END_STATE(); case 1198: - if (lookahead == 'n') ADVANCE(938); - if (lookahead == 'x') ADVANCE(1533); + if (lookahead == 'o') ADVANCE(1357); END_STATE(); case 1199: - if (lookahead == 'n') ADVANCE(4216); + if (lookahead == 'o') ADVANCE(680); END_STATE(); case 1200: - if (lookahead == 'n') ADVANCE(1254); + if (lookahead == 'o') ADVANCE(1298); END_STATE(); case 1201: - if (lookahead == 'n') ADVANCE(775); + if (lookahead == 'o') ADVANCE(1141); END_STATE(); case 1202: - if (lookahead == 'n') ADVANCE(1430); + if (lookahead == 'o') ADVANCE(1244); END_STATE(); case 1203: - if (lookahead == 'n') ADVANCE(975); + if (lookahead == 'o') ADVANCE(1497); END_STATE(); case 1204: - if (lookahead == 'n') ADVANCE(632); + if (lookahead == 'o') ADVANCE(1056); END_STATE(); case 1205: - if (lookahead == 'n') ADVANCE(750); + if (lookahead == 'o') ADVANCE(1511); END_STATE(); case 1206: - if (lookahead == 'n') ADVANCE(750); - if (lookahead == 's') ADVANCE(3853); + if (lookahead == 'o') ADVANCE(1315); END_STATE(); case 1207: - if (lookahead == 'n') ADVANCE(751); + if (lookahead == 'o') ADVANCE(1297); END_STATE(); case 1208: - if (lookahead == 'n') ADVANCE(724); + if (lookahead == 'o') ADVANCE(1130); END_STATE(); case 1209: - if (lookahead == 'n') ADVANCE(1471); + if (lookahead == 'o') ADVANCE(408); END_STATE(); case 1210: - if (lookahead == 'n') ADVANCE(1449); + if (lookahead == 'o') ADVANCE(1050); END_STATE(); case 1211: - if (lookahead == 'n') ADVANCE(983); + if (lookahead == 'o') ADVANCE(1519); END_STATE(); case 1212: - if (lookahead == 'n') ADVANCE(1506); + if (lookahead == 'o') ADVANCE(1293); END_STATE(); case 1213: - if (lookahead == 'n') ADVANCE(783); + if (lookahead == 'o') ADVANCE(1475); + if (lookahead == 'u') ADVANCE(994); END_STATE(); case 1214: - if (lookahead == 'n') ADVANCE(1500); + if (lookahead == 'o') ADVANCE(1307); END_STATE(); case 1215: - if (lookahead == 'n') ADVANCE(636); + if (lookahead == 'o') ADVANCE(1171); END_STATE(); case 1216: - if (lookahead == 'n') ADVANCE(636); - if (lookahead == 'p') ADVANCE(1121); - if (lookahead == 'v') ADVANCE(850); + if (lookahead == 'o') ADVANCE(1449); END_STATE(); case 1217: - if (lookahead == 'n') ADVANCE(1499); + if (lookahead == 'o') ADVANCE(1449); + if (lookahead == 's') ADVANCE(4023); END_STATE(); case 1218: - if (lookahead == 'n') ADVANCE(1047); + if (lookahead == 'o') ADVANCE(1287); END_STATE(); case 1219: - if (lookahead == 'n') ADVANCE(858); + if (lookahead == 'o') ADVANCE(1410); + if (lookahead == 'u') ADVANCE(1035); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1593); END_STATE(); case 1220: - if (lookahead == 'n') ADVANCE(707); + if (lookahead == 'o') ADVANCE(1289); END_STATE(); case 1221: - if (lookahead == 'n') ADVANCE(763); + if (lookahead == 'o') ADVANCE(1412); END_STATE(); case 1222: - if (lookahead == 'n') ADVANCE(763); - if (lookahead == 'x') ADVANCE(1330); + if (lookahead == 'o') ADVANCE(1538); END_STATE(); case 1223: - if (lookahead == 'n') ADVANCE(935); + if (lookahead == 'o') ADVANCE(850); END_STATE(); case 1224: - if (lookahead == 'n') ADVANCE(1510); + if (lookahead == 'o') ADVANCE(695); END_STATE(); case 1225: - if (lookahead == 'n') ADVANCE(1591); + if (lookahead == 'o') ADVANCE(917); END_STATE(); case 1226: - if (lookahead == 'n') ADVANCE(932); + if (lookahead == 'o') ADVANCE(690); END_STATE(); case 1227: - if (lookahead == 'n') ADVANCE(1004); + if (lookahead == 'o') ADVANCE(1266); END_STATE(); case 1228: - if (lookahead == 'n') ADVANCE(1004); - if (lookahead == 'p') ADVANCE(773); + if (lookahead == 'o') ADVANCE(1077); END_STATE(); case 1229: - if (lookahead == 'n') ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1138); END_STATE(); case 1230: - if (lookahead == 'n') ADVANCE(1110); + if (lookahead == 'o') ADVANCE(1520); END_STATE(); case 1231: - if (lookahead == 'n') ADVANCE(892); + if (lookahead == 'o') ADVANCE(516); END_STATE(); case 1232: - if (lookahead == 'n') ADVANCE(1564); + if (lookahead == 'o') ADVANCE(1530); END_STATE(); case 1233: - if (lookahead == 'n') ADVANCE(624); + if (lookahead == 'o') ADVANCE(1196); END_STATE(); case 1234: - if (lookahead == 'n') ADVANCE(624); - if (lookahead == 't') ADVANCE(1430); + if (lookahead == 'o') ADVANCE(1079); END_STATE(); case 1235: - if (lookahead == 'n') ADVANCE(1478); + if (lookahead == 'o') ADVANCE(1459); END_STATE(); case 1236: - if (lookahead == 'n') ADVANCE(1461); + if (lookahead == 'o') ADVANCE(1328); END_STATE(); case 1237: - if (lookahead == 'n') ADVANCE(781); + if (lookahead == 'o') ADVANCE(1046); END_STATE(); case 1238: - if (lookahead == 'o') ADVANCE(1617); + if (lookahead == 'p') ADVANCE(517); END_STATE(); case 1239: - if (lookahead == 'o') ADVANCE(4333); + if (lookahead == 'p') ADVANCE(4241); END_STATE(); case 1240: - if (lookahead == 'o') ADVANCE(1139); - if (lookahead == 's') ADVANCE(1612); + if (lookahead == 'p') ADVANCE(1062); END_STATE(); case 1241: - if (lookahead == 'o') ADVANCE(1065); + if (lookahead == 'p') ADVANCE(1561); END_STATE(); case 1242: - if (lookahead == 'o') ADVANCE(1679); + if (lookahead == 'p') ADVANCE(663); END_STATE(); case 1243: - if (lookahead == 'o') ADVANCE(3782); + if (lookahead == 'p') ADVANCE(1031); END_STATE(); case 1244: - if (lookahead == 'o') ADVANCE(746); + if (lookahead == 'p') ADVANCE(4131); END_STATE(); case 1245: - if (lookahead == 'o') ADVANCE(907); + if (lookahead == 'p') ADVANCE(1493); END_STATE(); case 1246: - if (lookahead == 'o') ADVANCE(923); + if (lookahead == 'p') ADVANCE(1021); END_STATE(); case 1247: - if (lookahead == 'o') ADVANCE(467); + if (lookahead == 'p') ADVANCE(701); END_STATE(); case 1248: - if (lookahead == 'o') ADVANCE(4210); + if (lookahead == 'p') ADVANCE(1037); END_STATE(); case 1249: - if (lookahead == 'o') ADVANCE(525); + if (lookahead == 'p') ADVANCE(508); END_STATE(); case 1250: - if (lookahead == 'o') ADVANCE(1624); + if (lookahead == 'p') ADVANCE(1442); END_STATE(); case 1251: - if (lookahead == 'o') ADVANCE(1370); + if (lookahead == 'p') ADVANCE(1008); END_STATE(); case 1252: - if (lookahead == 'o') ADVANCE(1440); + if (lookahead == 'p') ADVANCE(1241); END_STATE(); case 1253: - if (lookahead == 'o') ADVANCE(677); + if (lookahead == 'p') ADVANCE(1032); + if (lookahead == 'v') ADVANCE(778); END_STATE(); case 1254: - if (lookahead == 'o') ADVANCE(1481); + if (lookahead == 'p') ADVANCE(403); END_STATE(); case 1255: - if (lookahead == 'o') ADVANCE(1379); + if (lookahead == 'p') ADVANCE(513); END_STATE(); case 1256: - if (lookahead == 'o') ADVANCE(1619); + if (lookahead == 'p') ADVANCE(536); END_STATE(); case 1257: - if (lookahead == 'o') ADVANCE(761); + if (lookahead == 'p') ADVANCE(543); END_STATE(); case 1258: - if (lookahead == 'o') ADVANCE(530); + if (lookahead == 'p') ADVANCE(711); END_STATE(); case 1259: - if (lookahead == 'o') ADVANCE(1359); + if (lookahead == 'p') ADVANCE(831); END_STATE(); case 1260: - if (lookahead == 'o') ADVANCE(1314); + if (lookahead == 'p') ADVANCE(921); END_STATE(); case 1261: - if (lookahead == 'o') ADVANCE(1314); - if (lookahead == 'u') ADVANCE(1443); + if (lookahead == 'p') ADVANCE(763); END_STATE(); case 1262: - if (lookahead == 'o') ADVANCE(1166); + if (lookahead == 'p') ADVANCE(742); END_STATE(); case 1263: - if (lookahead == 'o') ADVANCE(1089); + if (lookahead == 'p') ADVANCE(797); END_STATE(); case 1264: - if (lookahead == 'o') ADVANCE(1572); + if (lookahead == 'p') ADVANCE(729); END_STATE(); case 1265: - if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'p') ADVANCE(580); END_STATE(); case 1266: - if (lookahead == 'o') ADVANCE(1173); + if (lookahead == 'p') ADVANCE(1472); END_STATE(); case 1267: - if (lookahead == 'o') ADVANCE(1588); - if (lookahead == 'p') ADVANCE(602); + if (lookahead == 'p') ADVANCE(762); END_STATE(); case 1268: - if (lookahead == 'o') ADVANCE(912); + if (lookahead == 'p') ADVANCE(762); + if (lookahead == 't') ADVANCE(887); END_STATE(); case 1269: - if (lookahead == 'o') ADVANCE(1356); + if (lookahead == 'p') ADVANCE(1030); END_STATE(); case 1270: - if (lookahead == 'o') ADVANCE(709); + if (lookahead == 'p') ADVANCE(1036); END_STATE(); case 1271: - if (lookahead == 'o') ADVANCE(1432); + if (lookahead == 'p') ADVANCE(1352); END_STATE(); case 1272: - if (lookahead == 'o') ADVANCE(752); + if (lookahead == 'p') ADVANCE(1033); END_STATE(); case 1273: - if (lookahead == 'o') ADVANCE(1373); + if (lookahead == 'p') ADVANCE(1182); END_STATE(); case 1274: - if (lookahead == 'o') ADVANCE(1213); + if (lookahead == 'p') ADVANCE(583); END_STATE(); case 1275: - if (lookahead == 'o') ADVANCE(1319); + if (lookahead == 'p') ADVANCE(596); END_STATE(); case 1276: - if (lookahead == 'o') ADVANCE(1573); + if (lookahead == 'q') ADVANCE(1514); END_STATE(); case 1277: - if (lookahead == 'o') ADVANCE(1128); + if (lookahead == 'q') ADVANCE(1517); END_STATE(); case 1278: - if (lookahead == 'o') ADVANCE(1587); + if (lookahead == 'q') ADVANCE(1517); + if (lookahead == 's') ADVANCE(903); END_STATE(); case 1279: - if (lookahead == 'o') ADVANCE(1390); + if (lookahead == 'q') ADVANCE(1023); + if (lookahead == 't') ADVANCE(1347); END_STATE(); case 1280: - if (lookahead == 'o') ADVANCE(1372); + if (lookahead == 'q') ADVANCE(1502); END_STATE(); case 1281: - if (lookahead == 'o') ADVANCE(1202); + if (lookahead == 'r') ADVANCE(4241); END_STATE(); case 1282: - if (lookahead == 'o') ADVANCE(475); + if (lookahead == 'r') ADVANCE(4126); END_STATE(); case 1283: - if (lookahead == 'o') ADVANCE(1122); + if (lookahead == 'r') ADVANCE(993); END_STATE(); case 1284: - if (lookahead == 'o') ADVANCE(1595); + if (lookahead == 'r') ADVANCE(984); END_STATE(); case 1285: - if (lookahead == 'o') ADVANCE(1368); + if (lookahead == 'r') ADVANCE(1280); END_STATE(); case 1286: - if (lookahead == 'o') ADVANCE(1550); - if (lookahead == 'u') ADVANCE(1066); + if (lookahead == 'r') ADVANCE(3770); END_STATE(); case 1287: - if (lookahead == 'o') ADVANCE(1382); + if (lookahead == 'r') ADVANCE(3768); END_STATE(); case 1288: - if (lookahead == 'o') ADVANCE(1244); + if (lookahead == 'r') ADVANCE(3828); END_STATE(); case 1289: - if (lookahead == 'o') ADVANCE(1524); + if (lookahead == 'r') ADVANCE(3826); END_STATE(); case 1290: - if (lookahead == 'o') ADVANCE(1524); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'r') ADVANCE(4023); END_STATE(); case 1291: - if (lookahead == 'o') ADVANCE(1362); + if (lookahead == 'r') ADVANCE(380); END_STATE(); case 1292: - if (lookahead == 'o') ADVANCE(1485); - if (lookahead == 'u') ADVANCE(1107); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1669); + if (lookahead == 'r') ADVANCE(1523); END_STATE(); case 1293: - if (lookahead == 'o') ADVANCE(1364); + if (lookahead == 'r') ADVANCE(674); END_STATE(); case 1294: - if (lookahead == 'o') ADVANCE(1487); + if (lookahead == 'r') ADVANCE(851); END_STATE(); case 1295: - if (lookahead == 'o') ADVANCE(1487); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'r') ADVANCE(1095); END_STATE(); case 1296: - if (lookahead == 'o') ADVANCE(1614); + if (lookahead == 'r') ADVANCE(1561); END_STATE(); case 1297: - if (lookahead == 'o') ADVANCE(922); + if (lookahead == 'r') ADVANCE(687); END_STATE(); case 1298: - if (lookahead == 'o') ADVANCE(767); + if (lookahead == 'r') ADVANCE(992); END_STATE(); case 1299: - if (lookahead == 'o') ADVANCE(989); + if (lookahead == 'r') ADVANCE(1563); END_STATE(); case 1300: - if (lookahead == 'o') ADVANCE(762); + if (lookahead == 'r') ADVANCE(388); END_STATE(); case 1301: - if (lookahead == 'o') ADVANCE(1341); + if (lookahead == 'r') ADVANCE(1177); END_STATE(); case 1302: - if (lookahead == 'o') ADVANCE(1149); + if (lookahead == 'r') ADVANCE(1514); END_STATE(); case 1303: - if (lookahead == 'o') ADVANCE(1210); + if (lookahead == 'r') ADVANCE(663); END_STATE(); case 1304: - if (lookahead == 'o') ADVANCE(1596); + if (lookahead == 'r') ADVANCE(1406); END_STATE(); case 1305: - if (lookahead == 'o') ADVANCE(588); + if (lookahead == 'r') ADVANCE(1509); END_STATE(); case 1306: - if (lookahead == 'o') ADVANCE(1606); + if (lookahead == 'r') ADVANCE(1509); + if (lookahead == 'u') ADVANCE(995); END_STATE(); case 1307: - if (lookahead == 'o') ADVANCE(1269); + if (lookahead == 'r') ADVANCE(981); END_STATE(); case 1308: - if (lookahead == 'o') ADVANCE(1151); + if (lookahead == 'r') ADVANCE(458); END_STATE(); case 1309: - if (lookahead == 'o') ADVANCE(1534); + if (lookahead == 'r') ADVANCE(1550); END_STATE(); case 1310: - if (lookahead == 'o') ADVANCE(1403); + if (lookahead == 'r') ADVANCE(861); END_STATE(); case 1311: - if (lookahead == 'o') ADVANCE(1118); + if (lookahead == 'r') ADVANCE(743); END_STATE(); case 1312: - if (lookahead == 'o') ADVANCE(1236); + if (lookahead == 'r') ADVANCE(854); END_STATE(); case 1313: - if (lookahead == 'p') ADVANCE(589); + if (lookahead == 'r') ADVANCE(1101); END_STATE(); case 1314: - if (lookahead == 'p') ADVANCE(4333); + if (lookahead == 'r') ADVANCE(463); END_STATE(); case 1315: - if (lookahead == 'p') ADVANCE(1134); + if (lookahead == 'r') ADVANCE(1355); END_STATE(); case 1316: - if (lookahead == 'p') ADVANCE(1637); + if (lookahead == 'r') ADVANCE(525); END_STATE(); case 1317: - if (lookahead == 'p') ADVANCE(735); + if (lookahead == 'r') ADVANCE(529); END_STATE(); case 1318: - if (lookahead == 'p') ADVANCE(1103); + if (lookahead == 'r') ADVANCE(652); END_STATE(); case 1319: - if (lookahead == 'p') ADVANCE(4223); + if (lookahead == 'r') ADVANCE(1436); END_STATE(); case 1320: - if (lookahead == 'p') ADVANCE(1569); + if (lookahead == 'r') ADVANCE(1436); + if (lookahead == 't') ADVANCE(1355); END_STATE(); case 1321: - if (lookahead == 'p') ADVANCE(1093); + if (lookahead == 'r') ADVANCE(756); END_STATE(); case 1322: - if (lookahead == 'p') ADVANCE(773); + if (lookahead == 'r') ADVANCE(913); END_STATE(); case 1323: - if (lookahead == 'p') ADVANCE(1109); + if (lookahead == 'r') ADVANCE(751); + if (lookahead == 't') ADVANCE(524); END_STATE(); case 1324: - if (lookahead == 'p') ADVANCE(580); + if (lookahead == 'r') ADVANCE(1143); END_STATE(); case 1325: - if (lookahead == 'p') ADVANCE(1517); + if (lookahead == 'r') ADVANCE(1399); END_STATE(); case 1326: - if (lookahead == 'p') ADVANCE(1080); + if (lookahead == 'r') ADVANCE(1130); END_STATE(); case 1327: - if (lookahead == 'p') ADVANCE(1316); + if (lookahead == 'r') ADVANCE(1437); END_STATE(); case 1328: - if (lookahead == 'p') ADVANCE(1104); - if (lookahead == 'v') ADVANCE(850); + if (lookahead == 'r') ADVANCE(711); END_STATE(); case 1329: - if (lookahead == 'p') ADVANCE(470); + if (lookahead == 'r') ADVANCE(1223); END_STATE(); case 1330: - if (lookahead == 'p') ADVANCE(585); + if (lookahead == 'r') ADVANCE(811); END_STATE(); case 1331: - if (lookahead == 'p') ADVANCE(608); + if (lookahead == 'r') ADVANCE(1187); END_STATE(); case 1332: - if (lookahead == 'p') ADVANCE(615); + if (lookahead == 'r') ADVANCE(793); END_STATE(); case 1333: - if (lookahead == 'p') ADVANCE(783); + if (lookahead == 'r') ADVANCE(966); END_STATE(); case 1334: - if (lookahead == 'p') ADVANCE(903); + if (lookahead == 'r') ADVANCE(1110); END_STATE(); case 1335: - if (lookahead == 'p') ADVANCE(993); + if (lookahead == 'r') ADVANCE(1111); END_STATE(); case 1336: - if (lookahead == 'p') ADVANCE(835); + if (lookahead == 'r') ADVANCE(1308); END_STATE(); case 1337: - if (lookahead == 'p') ADVANCE(814); + if (lookahead == 'r') ADVANCE(1314); END_STATE(); case 1338: - if (lookahead == 'p') ADVANCE(869); + if (lookahead == 'r') ADVANCE(806); END_STATE(); case 1339: - if (lookahead == 'p') ADVANCE(801); + if (lookahead == 'r') ADVANCE(783); END_STATE(); case 1340: - if (lookahead == 'p') ADVANCE(652); + if (lookahead == 'r') ADVANCE(923); END_STATE(); case 1341: - if (lookahead == 'p') ADVANCE(1547); + if (lookahead == 'r') ADVANCE(635); END_STATE(); case 1342: - if (lookahead == 'p') ADVANCE(834); + if (lookahead == 'r') ADVANCE(1226); END_STATE(); case 1343: - if (lookahead == 'p') ADVANCE(834); - if (lookahead == 't') ADVANCE(959); + if (lookahead == 'r') ADVANCE(943); END_STATE(); case 1344: - if (lookahead == 'p') ADVANCE(1102); + if (lookahead == 'r') ADVANCE(1382); END_STATE(); case 1345: - if (lookahead == 'p') ADVANCE(1108); + if (lookahead == 'r') ADVANCE(1333); END_STATE(); case 1346: - if (lookahead == 'p') ADVANCE(1427); + if (lookahead == 'r') ADVANCE(941); END_STATE(); case 1347: - if (lookahead == 'p') ADVANCE(1105); + if (lookahead == 'r') ADVANCE(934); END_STATE(); case 1348: - if (lookahead == 'p') ADVANCE(1255); + if (lookahead == 'r') ADVANCE(595); END_STATE(); case 1349: - if (lookahead == 'p') ADVANCE(655); + if (lookahead == 'r') ADVANCE(1522); END_STATE(); case 1350: - if (lookahead == 'p') ADVANCE(668); + if (lookahead == 'r') ADVANCE(594); END_STATE(); case 1351: - if (lookahead == 'q') ADVANCE(1590); + if (lookahead == 'r') ADVANCE(4138); END_STATE(); case 1352: - if (lookahead == 'q') ADVANCE(1593); + if (lookahead == 'r') ADVANCE(818); END_STATE(); case 1353: - if (lookahead == 'q') ADVANCE(1593); - if (lookahead == 's') ADVANCE(975); + if (lookahead == 'r') ADVANCE(977); END_STATE(); case 1354: - if (lookahead == 'q') ADVANCE(1095); - if (lookahead == 't') ADVANCE(1422); + if (lookahead == 'r') ADVANCE(1492); END_STATE(); case 1355: - if (lookahead == 'q') ADVANCE(1578); + if (lookahead == 's') ADVANCE(4241); END_STATE(); case 1356: - if (lookahead == 'r') ADVANCE(4333); + if (lookahead == 's') ADVANCE(1536); END_STATE(); case 1357: - if (lookahead == 'r') ADVANCE(4218); + if (lookahead == 's') ADVANCE(4174); END_STATE(); case 1358: - if (lookahead == 'r') ADVANCE(1065); + if (lookahead == 's') ADVANCE(4023); END_STATE(); case 1359: - if (lookahead == 'r') ADVANCE(1056); + if (lookahead == 's') ADVANCE(1781); END_STATE(); case 1360: - if (lookahead == 'r') ADVANCE(1355); + if (lookahead == 's') ADVANCE(3752); END_STATE(); case 1361: - if (lookahead == 'r') ADVANCE(3871); + if (lookahead == 's') ADVANCE(865); END_STATE(); case 1362: - if (lookahead == 'r') ADVANCE(3869); + if (lookahead == 's') ADVANCE(402); END_STATE(); case 1363: - if (lookahead == 'r') ADVANCE(3929); + if (lookahead == 's') ADVANCE(1514); END_STATE(); case 1364: - if (lookahead == 'r') ADVANCE(3927); + if (lookahead == 's') ADVANCE(985); END_STATE(); case 1365: - if (lookahead == 'r') ADVANCE(4127); + if (lookahead == 's') ADVANCE(1406); END_STATE(); case 1366: - if (lookahead == 'r') ADVANCE(446); + if (lookahead == 's') ADVANCE(1552); END_STATE(); case 1367: - if (lookahead == 'r') ADVANCE(1599); + if (lookahead == 's') ADVANCE(1363); END_STATE(); case 1368: - if (lookahead == 'r') ADVANCE(746); + if (lookahead == 's') ADVANCE(867); END_STATE(); case 1369: - if (lookahead == 'r') ADVANCE(923); + if (lookahead == 's') ADVANCE(1409); END_STATE(); case 1370: - if (lookahead == 'r') ADVANCE(1167); + if (lookahead == 's') ADVANCE(1193); END_STATE(); case 1371: - if (lookahead == 'r') ADVANCE(1637); + if (lookahead == 's') ADVANCE(870); + if (lookahead == 't') ADVANCE(1506); END_STATE(); case 1372: - if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(743); END_STATE(); case 1373: - if (lookahead == 'r') ADVANCE(1064); + if (lookahead == 's') ADVANCE(743); + if (lookahead == 'u') ADVANCE(1157); END_STATE(); case 1374: - if (lookahead == 'r') ADVANCE(1639); + if (lookahead == 's') ADVANCE(4125); END_STATE(); case 1375: - if (lookahead == 'r') ADVANCE(455); + if (lookahead == 's') ADVANCE(1355); END_STATE(); case 1376: - if (lookahead == 'r') ADVANCE(1250); + if (lookahead == 's') ADVANCE(903); END_STATE(); case 1377: - if (lookahead == 'r') ADVANCE(1590); + if (lookahead == 's') ADVANCE(1420); END_STATE(); case 1378: - if (lookahead == 'r') ADVANCE(735); + if (lookahead == 's') ADVANCE(1396); END_STATE(); case 1379: - if (lookahead == 'r') ADVANCE(1481); + if (lookahead == 's') ADVANCE(788); END_STATE(); case 1380: - if (lookahead == 'r') ADVANCE(1585); + if (lookahead == 's') ADVANCE(1414); END_STATE(); case 1381: - if (lookahead == 'r') ADVANCE(1585); - if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 's') ADVANCE(1431); END_STATE(); case 1382: - if (lookahead == 'r') ADVANCE(1053); + if (lookahead == 's') ADVANCE(711); END_STATE(); case 1383: - if (lookahead == 'r') ADVANCE(528); + if (lookahead == 's') ADVANCE(764); END_STATE(); case 1384: - if (lookahead == 'r') ADVANCE(1626); + if (lookahead == 's') ADVANCE(1132); END_STATE(); case 1385: - if (lookahead == 'r') ADVANCE(933); + if (lookahead == 's') ADVANCE(1485); END_STATE(); case 1386: - if (lookahead == 'r') ADVANCE(815); + if (lookahead == 's') ADVANCE(1411); END_STATE(); case 1387: - if (lookahead == 'r') ADVANCE(926); + if (lookahead == 's') ADVANCE(744); END_STATE(); case 1388: - if (lookahead == 'r') ADVANCE(1173); + if (lookahead == 's') ADVANCE(763); END_STATE(); case 1389: - if (lookahead == 'r') ADVANCE(533); + if (lookahead == 's') ADVANCE(722); END_STATE(); case 1390: - if (lookahead == 'r') ADVANCE(1430); + if (lookahead == 's') ADVANCE(725); END_STATE(); case 1391: - if (lookahead == 'r') ADVANCE(597); + if (lookahead == 's') ADVANCE(726); END_STATE(); case 1392: - if (lookahead == 'r') ADVANCE(601); + if (lookahead == 's') ADVANCE(724); END_STATE(); case 1393: - if (lookahead == 'r') ADVANCE(724); + if (lookahead == 's') ADVANCE(649); + if (lookahead == 'x') ADVANCE(1458); END_STATE(); case 1394: - if (lookahead == 'r') ADVANCE(1511); + if (lookahead == 's') ADVANCE(1446); END_STATE(); case 1395: - if (lookahead == 'r') ADVANCE(1511); - if (lookahead == 't') ADVANCE(1430); + if (lookahead == 's') ADVANCE(1448); END_STATE(); case 1396: - if (lookahead == 'r') ADVANCE(828); + if (lookahead == 's') ADVANCE(914); END_STATE(); case 1397: - if (lookahead == 'r') ADVANCE(985); + if (lookahead == 's') ADVANCE(659); END_STATE(); case 1398: - if (lookahead == 'r') ADVANCE(823); - if (lookahead == 't') ADVANCE(596); + if (lookahead == 's') ADVANCE(1440); END_STATE(); case 1399: - if (lookahead == 'r') ADVANCE(1215); + if (lookahead == 's') ADVANCE(1196); END_STATE(); case 1400: - if (lookahead == 'r') ADVANCE(1474); + if (lookahead == 's') ADVANCE(1257); END_STATE(); case 1401: - if (lookahead == 'r') ADVANCE(1202); + if (lookahead == 's') ADVANCE(784); END_STATE(); case 1402: - if (lookahead == 'r') ADVANCE(1512); + if (lookahead == 's') ADVANCE(796); END_STATE(); case 1403: - if (lookahead == 'r') ADVANCE(783); + if (lookahead == 's') ADVANCE(1478); END_STATE(); case 1404: - if (lookahead == 'r') ADVANCE(1297); + if (lookahead == 's') ADVANCE(424); END_STATE(); case 1405: - if (lookahead == 'r') ADVANCE(883); + if (lookahead == 's') ADVANCE(428); END_STATE(); case 1406: - if (lookahead == 'r') ADVANCE(1260); + if (lookahead == 't') ADVANCE(4241); END_STATE(); case 1407: - if (lookahead == 'r') ADVANCE(865); + if (lookahead == 't') ADVANCE(636); END_STATE(); case 1408: - if (lookahead == 'r') ADVANCE(1038); + if (lookahead == 't') ADVANCE(1067); END_STATE(); case 1409: - if (lookahead == 'r') ADVANCE(1182); + if (lookahead == 't') ADVANCE(4117); END_STATE(); case 1410: - if (lookahead == 'r') ADVANCE(1183); + if (lookahead == 't') ADVANCE(1605); END_STATE(); case 1411: - if (lookahead == 'r') ADVANCE(1383); + if (lookahead == 't') ADVANCE(1800); END_STATE(); case 1412: - if (lookahead == 'r') ADVANCE(1389); + if (lookahead == 't') ADVANCE(423); END_STATE(); case 1413: - if (lookahead == 'r') ADVANCE(878); + if (lookahead == 't') ADVANCE(1561); END_STATE(); case 1414: - if (lookahead == 'r') ADVANCE(855); + if (lookahead == 't') ADVANCE(4162); END_STATE(); case 1415: - if (lookahead == 'r') ADVANCE(995); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 1416: - if (lookahead == 'r') ADVANCE(707); + if (lookahead == 't') ADVANCE(385); END_STATE(); case 1417: - if (lookahead == 'r') ADVANCE(1300); + if (lookahead == 't') ADVANCE(1167); END_STATE(); case 1418: - if (lookahead == 'r') ADVANCE(1015); + if (lookahead == 't') ADVANCE(814); END_STATE(); case 1419: - if (lookahead == 'r') ADVANCE(1457); + if (lookahead == 't') ADVANCE(4129); END_STATE(); case 1420: - if (lookahead == 'r') ADVANCE(1408); + if (lookahead == 't') ADVANCE(420); END_STATE(); case 1421: - if (lookahead == 'r') ADVANCE(1013); + if (lookahead == 't') ADVANCE(457); END_STATE(); case 1422: - if (lookahead == 'r') ADVANCE(1006); + if (lookahead == 't') ADVANCE(389); END_STATE(); case 1423: - if (lookahead == 'r') ADVANCE(667); + if (lookahead == 't') ADVANCE(867); END_STATE(); case 1424: - if (lookahead == 'r') ADVANCE(1598); + if (lookahead == 't') ADVANCE(4122); END_STATE(); case 1425: - if (lookahead == 'r') ADVANCE(666); + if (lookahead == 't') ADVANCE(4133); END_STATE(); case 1426: - if (lookahead == 'r') ADVANCE(4230); + if (lookahead == 't') ADVANCE(498); + if (lookahead == 'w') ADVANCE(947); END_STATE(); case 1427: - if (lookahead == 'r') ADVANCE(890); + if (lookahead == 't') ADVANCE(1506); END_STATE(); case 1428: - if (lookahead == 'r') ADVANCE(1049); + if (lookahead == 't') ADVANCE(4132); END_STATE(); case 1429: - if (lookahead == 'r') ADVANCE(1568); + if (lookahead == 't') ADVANCE(462); END_STATE(); case 1430: - if (lookahead == 's') ADVANCE(4333); + if (lookahead == 't') ADVANCE(427); END_STATE(); case 1431: - if (lookahead == 's') ADVANCE(1612); + if (lookahead == 't') ADVANCE(1355); END_STATE(); case 1432: - if (lookahead == 's') ADVANCE(4266); + if (lookahead == 't') ADVANCE(880); END_STATE(); case 1433: - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 't') ADVANCE(871); END_STATE(); case 1434: - if (lookahead == 's') ADVANCE(1857); + if (lookahead == 't') ADVANCE(872); END_STATE(); case 1435: - if (lookahead == 's') ADVANCE(3853); + if (lookahead == 't') ADVANCE(898); END_STATE(); case 1436: - if (lookahead == 's') ADVANCE(937); + if (lookahead == 't') ADVANCE(1362); END_STATE(); case 1437: - if (lookahead == 's') ADVANCE(469); + if (lookahead == 't') ADVANCE(403); END_STATE(); case 1438: - if (lookahead == 's') ADVANCE(1590); + if (lookahead == 't') ADVANCE(1322); END_STATE(); case 1439: - if (lookahead == 's') ADVANCE(1057); + if (lookahead == 't') ADVANCE(875); END_STATE(); case 1440: - if (lookahead == 's') ADVANCE(1481); + if (lookahead == 't') ADVANCE(1347); END_STATE(); case 1441: - if (lookahead == 's') ADVANCE(1628); + if (lookahead == 't') ADVANCE(876); END_STATE(); case 1442: - if (lookahead == 's') ADVANCE(1438); + if (lookahead == 't') ADVANCE(960); END_STATE(); case 1443: - if (lookahead == 's') ADVANCE(939); + if (lookahead == 't') ADVANCE(417); END_STATE(); case 1444: - if (lookahead == 's') ADVANCE(1484); + if (lookahead == 't') ADVANCE(407); END_STATE(); case 1445: - if (lookahead == 's') ADVANCE(1266); + if (lookahead == 't') ADVANCE(586); END_STATE(); case 1446: - if (lookahead == 's') ADVANCE(942); - if (lookahead == 't') ADVANCE(1582); + if (lookahead == 't') ADVANCE(1500); END_STATE(); case 1447: - if (lookahead == 's') ADVANCE(815); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 1448: - if (lookahead == 's') ADVANCE(815); - if (lookahead == 'u') ADVANCE(1229); + if (lookahead == 't') ADVANCE(570); END_STATE(); case 1449: - if (lookahead == 's') ADVANCE(4217); + if (lookahead == 't') ADVANCE(422); END_STATE(); case 1450: - if (lookahead == 's') ADVANCE(1430); + if (lookahead == 't') ADVANCE(953); END_STATE(); case 1451: - if (lookahead == 's') ADVANCE(975); + if (lookahead == 't') ADVANCE(711); END_STATE(); case 1452: - if (lookahead == 's') ADVANCE(1495); + if (lookahead == 't') ADVANCE(955); END_STATE(); case 1453: - if (lookahead == 's') ADVANCE(1471); + if (lookahead == 't') ADVANCE(593); END_STATE(); case 1454: - if (lookahead == 's') ADVANCE(860); + if (lookahead == 't') ADVANCE(1187); END_STATE(); case 1455: - if (lookahead == 's') ADVANCE(1489); + if (lookahead == 't') ADVANCE(574); END_STATE(); case 1456: - if (lookahead == 's') ADVANCE(1506); + if (lookahead == 't') ADVANCE(490); END_STATE(); case 1457: - if (lookahead == 's') ADVANCE(783); + if (lookahead == 't') ADVANCE(1209); END_STATE(); case 1458: - if (lookahead == 's') ADVANCE(836); + if (lookahead == 't') ADVANCE(792); END_STATE(); case 1459: - if (lookahead == 's') ADVANCE(1204); + if (lookahead == 't') ADVANCE(737); END_STATE(); case 1460: - if (lookahead == 's') ADVANCE(1561); + if (lookahead == 't') ADVANCE(785); END_STATE(); case 1461: - if (lookahead == 's') ADVANCE(1486); + if (lookahead == 't') ADVANCE(801); END_STATE(); case 1462: - if (lookahead == 's') ADVANCE(816); + if (lookahead == 't') ADVANCE(730); END_STATE(); case 1463: - if (lookahead == 's') ADVANCE(835); + if (lookahead == 't') ADVANCE(804); END_STATE(); case 1464: - if (lookahead == 's') ADVANCE(794); + if (lookahead == 't') ADVANCE(805); END_STATE(); case 1465: - if (lookahead == 's') ADVANCE(797); + if (lookahead == 't') ADVANCE(883); END_STATE(); case 1466: - if (lookahead == 's') ADVANCE(796); + if (lookahead == 't') ADVANCE(635); END_STATE(); case 1467: - if (lookahead == 's') ADVANCE(800); + if (lookahead == 't') ADVANCE(775); END_STATE(); case 1468: - if (lookahead == 's') ADVANCE(721); - if (lookahead == 'x') ADVANCE(1533); + if (lookahead == 't') ADVANCE(914); END_STATE(); case 1469: - if (lookahead == 's') ADVANCE(1521); + if (lookahead == 't') ADVANCE(920); END_STATE(); case 1470: - if (lookahead == 's') ADVANCE(1523); + if (lookahead == 't') ADVANCE(822); END_STATE(); case 1471: - if (lookahead == 's') ADVANCE(986); + if (lookahead == 't') ADVANCE(890); END_STATE(); case 1472: - if (lookahead == 's') ADVANCE(731); + if (lookahead == 't') ADVANCE(415); END_STATE(); case 1473: - if (lookahead == 's') ADVANCE(1515); + if (lookahead == 't') ADVANCE(762); END_STATE(); case 1474: - if (lookahead == 's') ADVANCE(1269); + if (lookahead == 't') ADVANCE(578); END_STATE(); case 1475: - if (lookahead == 's') ADVANCE(1332); + if (lookahead == 't') ADVANCE(412); END_STATE(); case 1476: - if (lookahead == 's') ADVANCE(856); + if (lookahead == 't') ADVANCE(646); END_STATE(); case 1477: - if (lookahead == 's') ADVANCE(868); + if (lookahead == 't') ADVANCE(1040); END_STATE(); case 1478: - if (lookahead == 's') ADVANCE(1553); + if (lookahead == 't') ADVANCE(555); END_STATE(); case 1479: - if (lookahead == 's') ADVANCE(491); + if (lookahead == 't') ADVANCE(554); END_STATE(); case 1480: - if (lookahead == 's') ADVANCE(495); + if (lookahead == 't') ADVANCE(1236); END_STATE(); case 1481: - if (lookahead == 't') ADVANCE(4333); + if (lookahead == 't') ADVANCE(1461); END_STATE(); case 1482: - if (lookahead == 't') ADVANCE(708); + if (lookahead == 't') ADVANCE(1338); END_STATE(); case 1483: - if (lookahead == 't') ADVANCE(1139); + if (lookahead == 't') ADVANCE(1206); END_STATE(); case 1484: - if (lookahead == 't') ADVANCE(4209); + if (lookahead == 't') ADVANCE(1464); END_STATE(); case 1485: - if (lookahead == 't') ADVANCE(1681); + if (lookahead == 't') ADVANCE(551); END_STATE(); case 1486: - if (lookahead == 't') ADVANCE(1876); + if (lookahead == 't') ADVANCE(1565); END_STATE(); case 1487: - if (lookahead == 't') ADVANCE(490); + if (lookahead == 't') ADVANCE(1473); END_STATE(); case 1488: - if (lookahead == 't') ADVANCE(1637); + if (lookahead == 't') ADVANCE(973); END_STATE(); case 1489: - if (lookahead == 't') ADVANCE(4254); + if (lookahead == 't') ADVANCE(968); END_STATE(); case 1490: - if (lookahead == 't') ADVANCE(94); + if (lookahead == 't') ADVANCE(948); END_STATE(); case 1491: - if (lookahead == 't') ADVANCE(452); + if (lookahead == 't') ADVANCE(602); END_STATE(); case 1492: - if (lookahead == 't') ADVANCE(1239); + if (lookahead == 't') ADVANCE(1405); END_STATE(); case 1493: - if (lookahead == 't') ADVANCE(886); + if (lookahead == 'u') ADVANCE(4241); END_STATE(); case 1494: - if (lookahead == 't') ADVANCE(4221); + if (lookahead == 'u') ADVANCE(592); END_STATE(); case 1495: - if (lookahead == 't') ADVANCE(487); + if (lookahead == 'u') ADVANCE(1571); + if (lookahead == 'x') ADVANCE(1624); + if (lookahead != 0) ADVANCE(4087); END_STATE(); case 1496: - if (lookahead == 't') ADVANCE(527); + if (lookahead == 'u') ADVANCE(1112); END_STATE(); case 1497: - if (lookahead == 't') ADVANCE(456); + if (lookahead == 'u') ADVANCE(1406); END_STATE(); case 1498: - if (lookahead == 't') ADVANCE(939); + if (lookahead == 'u') ADVANCE(624); END_STATE(); case 1499: - if (lookahead == 't') ADVANCE(4214); + if (lookahead == 'u') ADVANCE(1152); + if (lookahead == 'w') ADVANCE(894); END_STATE(); case 1500: - if (lookahead == 't') ADVANCE(4225); + if (lookahead == 'u') ADVANCE(1239); END_STATE(); case 1501: - if (lookahead == 't') ADVANCE(570); - if (lookahead == 'w') ADVANCE(1019); + if (lookahead == 'u') ADVANCE(1193); END_STATE(); case 1502: - if (lookahead == 't') ADVANCE(1582); + if (lookahead == 'u') ADVANCE(743); END_STATE(); case 1503: - if (lookahead == 't') ADVANCE(4224); + if (lookahead == 'u') ADVANCE(1074); END_STATE(); case 1504: - if (lookahead == 't') ADVANCE(532); + if (lookahead == 'u') ADVANCE(1101); END_STATE(); case 1505: - if (lookahead == 't') ADVANCE(494); + if (lookahead == 'u') ADVANCE(1247); END_STATE(); case 1506: - if (lookahead == 't') ADVANCE(1430); + if (lookahead == 'u') ADVANCE(1355); END_STATE(); case 1507: - if (lookahead == 't') ADVANCE(952); + if (lookahead == 'u') ADVANCE(925); END_STATE(); case 1508: - if (lookahead == 't') ADVANCE(943); + if (lookahead == 'u') ADVANCE(1283); END_STATE(); case 1509: - if (lookahead == 't') ADVANCE(944); + if (lookahead == 'u') ADVANCE(1141); END_STATE(); case 1510: - if (lookahead == 't') ADVANCE(970); + if (lookahead == 'u') ADVANCE(634); END_STATE(); case 1511: - if (lookahead == 't') ADVANCE(1437); + if (lookahead == 'u') ADVANCE(1254); END_STATE(); case 1512: - if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(1318); END_STATE(); case 1513: - if (lookahead == 't') ADVANCE(1397); + if (lookahead == 'u') ADVANCE(900); END_STATE(); case 1514: - if (lookahead == 't') ADVANCE(947); + if (lookahead == 'u') ADVANCE(711); END_STATE(); case 1515: - if (lookahead == 't') ADVANCE(1422); + if (lookahead == 'u') ADVANCE(994); END_STATE(); case 1516: - if (lookahead == 't') ADVANCE(948); + if (lookahead == 'u') ADVANCE(1006); END_STATE(); case 1517: - if (lookahead == 't') ADVANCE(1032); + if (lookahead == 'u') ADVANCE(791); END_STATE(); case 1518: - if (lookahead == 't') ADVANCE(484); + if (lookahead == 'u') ADVANCE(1325); END_STATE(); case 1519: - if (lookahead == 't') ADVANCE(474); + if (lookahead == 'u') ADVANCE(1421); END_STATE(); case 1520: - if (lookahead == 't') ADVANCE(658); + if (lookahead == 'u') ADVANCE(1429); END_STATE(); case 1521: - if (lookahead == 't') ADVANCE(1576); + if (lookahead == 'u') ADVANCE(830); END_STATE(); case 1522: - if (lookahead == 't') ADVANCE(465); + if (lookahead == 'u') ADVANCE(723); END_STATE(); case 1523: - if (lookahead == 't') ADVANCE(642); + if (lookahead == 'u') ADVANCE(723); + if (lookahead == 'y') ADVANCE(3715); END_STATE(); case 1524: - if (lookahead == 't') ADVANCE(489); + if (lookahead == 'u') ADVANCE(1572); + if (lookahead == 'x') ADVANCE(1625); + if (lookahead != 0) ADVANCE(4075); END_STATE(); case 1525: - if (lookahead == 't') ADVANCE(1025); + if (lookahead == 'u') ADVANCE(1081); END_STATE(); case 1526: - if (lookahead == 't') ADVANCE(783); + if (lookahead == 'u') ADVANCE(1082); END_STATE(); case 1527: - if (lookahead == 't') ADVANCE(1027); + if (lookahead == 'u') ADVANCE(1457); END_STATE(); case 1528: - if (lookahead == 't') ADVANCE(665); + if (lookahead == 'u') ADVANCE(937); END_STATE(); case 1529: - if (lookahead == 't') ADVANCE(1260); + if (lookahead == 'u') ADVANCE(1146); END_STATE(); case 1530: - if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(1140); END_STATE(); case 1531: - if (lookahead == 't') ADVANCE(562); + if (lookahead == 'u') ADVANCE(1041); END_STATE(); case 1532: - if (lookahead == 't') ADVANCE(1282); + if (lookahead == 'u') ADVANCE(1044); END_STATE(); case 1533: - if (lookahead == 't') ADVANCE(864); + if (lookahead == 'u') ADVANCE(1394); END_STATE(); case 1534: - if (lookahead == 't') ADVANCE(809); + if (lookahead == 'u') ADVANCE(1270); END_STATE(); case 1535: - if (lookahead == 't') ADVANCE(857); + if (lookahead == 'u') ADVANCE(1064); END_STATE(); case 1536: - if (lookahead == 't') ADVANCE(873); + if (lookahead == 'v') ADVANCE(4241); END_STATE(); case 1537: - if (lookahead == 't') ADVANCE(802); + if (lookahead == 'v') ADVANCE(1181); END_STATE(); case 1538: - if (lookahead == 't') ADVANCE(876); + if (lookahead == 'v') ADVANCE(711); END_STATE(); case 1539: - if (lookahead == 't') ADVANCE(877); + if (lookahead == 'v') ADVANCE(795); END_STATE(); case 1540: - if (lookahead == 't') ADVANCE(955); + if (lookahead == 'v') ADVANCE(813); END_STATE(); case 1541: - if (lookahead == 't') ADVANCE(707); + if (lookahead == 'w') ADVANCE(4241); END_STATE(); case 1542: - if (lookahead == 't') ADVANCE(847); + if (lookahead == 'w') ADVANCE(894); END_STATE(); case 1543: - if (lookahead == 't') ADVANCE(986); + if (lookahead == 'w') ADVANCE(1101); END_STATE(); case 1544: - if (lookahead == 't') ADVANCE(992); + if (lookahead == 'w') ADVANCE(902); END_STATE(); case 1545: - if (lookahead == 't') ADVANCE(894); + if (lookahead == 'w') ADVANCE(797); END_STATE(); case 1546: - if (lookahead == 't') ADVANCE(962); + if (lookahead == 'w') ADVANCE(1117); END_STATE(); case 1547: - if (lookahead == 't') ADVANCE(482); + if (lookahead == 'w') ADVANCE(956); END_STATE(); case 1548: - if (lookahead == 't') ADVANCE(834); + if (lookahead == 'w') ADVANCE(1382); END_STATE(); case 1549: - if (lookahead == 't') ADVANCE(650); + if (lookahead == 'w') ADVANCE(978); END_STATE(); case 1550: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 'w') ADVANCE(957); END_STATE(); case 1551: - if (lookahead == 't') ADVANCE(718); + if (lookahead == 'w') ADVANCE(964); END_STATE(); case 1552: - if (lookahead == 't') ADVANCE(1112); + if (lookahead == 'x') ADVANCE(4241); END_STATE(); case 1553: - if (lookahead == 't') ADVANCE(627); + if (lookahead == 'x') ADVANCE(974); END_STATE(); case 1554: - if (lookahead == 't') ADVANCE(626); + if (lookahead == 'x') ADVANCE(1467); END_STATE(); case 1555: - if (lookahead == 't') ADVANCE(719); + if (lookahead == 'x') ADVANCE(1406); END_STATE(); case 1556: - if (lookahead == 't') ADVANCE(1310); + if (lookahead == 'x') ADVANCE(1239); END_STATE(); case 1557: - if (lookahead == 't') ADVANCE(1536); + if (lookahead == 'x') ADVANCE(414); END_STATE(); case 1558: - if (lookahead == 't') ADVANCE(1413); + if (lookahead == 'x') ADVANCE(1273); END_STATE(); case 1559: - if (lookahead == 't') ADVANCE(1279); + if (lookahead == 'x') ADVANCE(1243); END_STATE(); case 1560: - if (lookahead == 't') ADVANCE(1539); + if (lookahead == 'x') ADVANCE(1255); END_STATE(); case 1561: - if (lookahead == 't') ADVANCE(623); + if (lookahead == 'y') ADVANCE(4241); END_STATE(); case 1562: - if (lookahead == 't') ADVANCE(1641); + if (lookahead == 'y') ADVANCE(4023); END_STATE(); case 1563: - if (lookahead == 't') ADVANCE(1548); + if (lookahead == 'y') ADVANCE(405); END_STATE(); case 1564: - if (lookahead == 't') ADVANCE(1045); + if (lookahead == 'y') ADVANCE(1258); END_STATE(); case 1565: - if (lookahead == 't') ADVANCE(1040); + if (lookahead == 'y') ADVANCE(1264); END_STATE(); case 1566: - if (lookahead == 't') ADVANCE(1020); + if (lookahead == 'z') ADVANCE(4241); END_STATE(); case 1567: - if (lookahead == 't') ADVANCE(674); + if (lookahead == 'z') ADVANCE(438); END_STATE(); case 1568: - if (lookahead == 't') ADVANCE(1480); + if (lookahead == 'z') ADVANCE(1561); END_STATE(); case 1569: - if (lookahead == 'u') ADVANCE(4333); + if (lookahead == 'z') ADVANCE(711); END_STATE(); case 1570: - if (lookahead == 'u') ADVANCE(664); + if (lookahead == 'z') ADVANCE(1201); END_STATE(); case 1571: - if (lookahead == 'u') ADVANCE(1647); - if (lookahead == 'x') ADVANCE(1700); - if (lookahead != 0) ADVANCE(4191); + if (lookahead == '{') ADVANCE(1621); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1619); END_STATE(); case 1572: - if (lookahead == 'u') ADVANCE(1184); + if (lookahead == '{') ADVANCE(1623); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1626); END_STATE(); case 1573: - if (lookahead == 'u') ADVANCE(1481); + if (lookahead == '|') ADVANCE(3559); END_STATE(); case 1574: - if (lookahead == 'u') ADVANCE(696); + if (lookahead == '|') ADVANCE(3560); END_STATE(); case 1575: - if (lookahead == 'u') ADVANCE(1224); - if (lookahead == 'w') ADVANCE(966); + if (lookahead == '|') ADVANCE(3564); END_STATE(); case 1576: - if (lookahead == 'u') ADVANCE(1314); + if (lookahead == '|') ADVANCE(3557); END_STATE(); case 1577: - if (lookahead == 'u') ADVANCE(1266); + if (lookahead == '|') ADVANCE(3563); END_STATE(); case 1578: - if (lookahead == 'u') ADVANCE(815); + if (lookahead == '|') ADVANCE(3558); END_STATE(); case 1579: - if (lookahead == 'u') ADVANCE(1146); + if (lookahead == '|') ADVANCE(3561); END_STATE(); case 1580: - if (lookahead == 'u') ADVANCE(1173); + if (lookahead == '|') ADVANCE(3562); END_STATE(); case 1581: - if (lookahead == 'u') ADVANCE(1322); + if (lookahead == '}') ADVANCE(4087); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1581); END_STATE(); case 1582: - if (lookahead == 'u') ADVANCE(1430); + if (lookahead == '}') ADVANCE(4075); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); END_STATE(); case 1583: - if (lookahead == 'u') ADVANCE(997); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1593); END_STATE(); case 1584: - if (lookahead == 'u') ADVANCE(1358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 1585: - if (lookahead == 'u') ADVANCE(1213); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4001); END_STATE(); case 1586: - if (lookahead == 'u') ADVANCE(706); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4002); END_STATE(); case 1587: - if (lookahead == 'u') ADVANCE(1329); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1589); END_STATE(); case 1588: - if (lookahead == 'u') ADVANCE(1393); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3998); END_STATE(); case 1589: - if (lookahead == 'u') ADVANCE(972); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); case 1590: - if (lookahead == 'u') ADVANCE(783); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1599); END_STATE(); case 1591: - if (lookahead == 'u') ADVANCE(1066); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1600); END_STATE(); case 1592: - if (lookahead == 'u') ADVANCE(1078); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1585); END_STATE(); case 1593: - if (lookahead == 'u') ADVANCE(863); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4007); END_STATE(); case 1594: - if (lookahead == 'u') ADVANCE(1400); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1590); END_STATE(); case 1595: - if (lookahead == 'u') ADVANCE(1496); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1586); END_STATE(); case 1596: - if (lookahead == 'u') ADVANCE(1504); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1588); END_STATE(); case 1597: - if (lookahead == 'u') ADVANCE(902); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1587); END_STATE(); case 1598: - if (lookahead == 'u') ADVANCE(795); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1591); END_STATE(); case 1599: - if (lookahead == 'u') ADVANCE(795); - if (lookahead == 'y') ADVANCE(3816); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1602); END_STATE(); case 1600: - if (lookahead == 'u') ADVANCE(1648); - if (lookahead == 'x') ADVANCE(1701); - if (lookahead != 0) ADVANCE(4179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1601); END_STATE(); case 1601: - if (lookahead == 'u') ADVANCE(1153); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3989); END_STATE(); case 1602: - if (lookahead == 'u') ADVANCE(1154); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3999); END_STATE(); case 1603: - if (lookahead == 'u') ADVANCE(1532); + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(4241); END_STATE(); case 1604: - if (lookahead == 'u') ADVANCE(1009); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4045); END_STATE(); case 1605: - if (lookahead == 'u') ADVANCE(1218); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); END_STATE(); case 1606: - if (lookahead == 'u') ADVANCE(1212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); case 1607: - if (lookahead == 'u') ADVANCE(1113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); END_STATE(); case 1608: - if (lookahead == 'u') ADVANCE(1116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); END_STATE(); case 1609: - if (lookahead == 'u') ADVANCE(1469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); END_STATE(); case 1610: - if (lookahead == 'u') ADVANCE(1345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); END_STATE(); case 1611: - if (lookahead == 'u') ADVANCE(1136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); END_STATE(); case 1612: - if (lookahead == 'v') ADVANCE(4333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); END_STATE(); case 1613: - if (lookahead == 'v') ADVANCE(1254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); END_STATE(); case 1614: - if (lookahead == 'v') ADVANCE(783); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1615: - if (lookahead == 'v') ADVANCE(867); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); END_STATE(); case 1616: - if (lookahead == 'v') ADVANCE(885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(419); END_STATE(); case 1617: - if (lookahead == 'w') ADVANCE(4333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(447); END_STATE(); case 1618: - if (lookahead == 'w') ADVANCE(966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1619: - if (lookahead == 'w') ADVANCE(1173); - END_STATE(); - case 1620: - if (lookahead == 'w') ADVANCE(974); - END_STATE(); - case 1621: - if (lookahead == 'w') ADVANCE(869); - END_STATE(); - case 1622: - if (lookahead == 'w') ADVANCE(1189); - END_STATE(); - case 1623: - if (lookahead == 'w') ADVANCE(1028); - END_STATE(); - case 1624: - if (lookahead == 'w') ADVANCE(1457); - END_STATE(); - case 1625: - if (lookahead == 'w') ADVANCE(1050); - END_STATE(); - case 1626: - if (lookahead == 'w') ADVANCE(1029); - END_STATE(); - case 1627: - if (lookahead == 'w') ADVANCE(1036); - END_STATE(); - case 1628: - if (lookahead == 'x') ADVANCE(4333); - END_STATE(); - case 1629: - if (lookahead == 'x') ADVANCE(1046); - END_STATE(); - case 1630: - if (lookahead == 'x') ADVANCE(1542); - END_STATE(); - case 1631: - if (lookahead == 'x') ADVANCE(1481); - END_STATE(); - case 1632: - if (lookahead == 'x') ADVANCE(1314); - END_STATE(); - case 1633: - if (lookahead == 'x') ADVANCE(481); - END_STATE(); - case 1634: - if (lookahead == 'x') ADVANCE(1348); - END_STATE(); - case 1635: - if (lookahead == 'x') ADVANCE(1318); - END_STATE(); - case 1636: - if (lookahead == 'x') ADVANCE(1330); - END_STATE(); - case 1637: - if (lookahead == 'y') ADVANCE(4333); - END_STATE(); - case 1638: - if (lookahead == 'y') ADVANCE(4127); - END_STATE(); - case 1639: - if (lookahead == 'y') ADVANCE(472); - END_STATE(); - case 1640: - if (lookahead == 'y') ADVANCE(1333); - END_STATE(); - case 1641: - if (lookahead == 'y') ADVANCE(1339); - END_STATE(); - case 1642: - if (lookahead == 'z') ADVANCE(4333); - END_STATE(); - case 1643: - if (lookahead == 'z') ADVANCE(506); - END_STATE(); - case 1644: - if (lookahead == 'z') ADVANCE(1637); - END_STATE(); - case 1645: - if (lookahead == 'z') ADVANCE(783); - END_STATE(); - case 1646: - if (lookahead == 'z') ADVANCE(1274); - END_STATE(); - case 1647: - if (lookahead == '{') ADVANCE(1697); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1695); - END_STATE(); - case 1648: - if (lookahead == '{') ADVANCE(1699); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1702); - END_STATE(); - case 1649: - if (lookahead == '|') ADVANCE(3654); - END_STATE(); - case 1650: - if (lookahead == '|') ADVANCE(3655); - END_STATE(); - case 1651: - if (lookahead == '|') ADVANCE(3659); - END_STATE(); - case 1652: - if (lookahead == '|') ADVANCE(3652); - END_STATE(); - case 1653: - if (lookahead == '|') ADVANCE(3658); - END_STATE(); - case 1654: - if (lookahead == '|') ADVANCE(3653); - END_STATE(); - case 1655: - if (lookahead == '|') ADVANCE(3656); - END_STATE(); - case 1656: - if (lookahead == '|') ADVANCE(3657); - END_STATE(); - case 1657: - if (lookahead == '}') ADVANCE(4191); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1657); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1624); END_STATE(); - case 1658: - if (lookahead == '}') ADVANCE(4179); + case 1620: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1658); - END_STATE(); - case 1659: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1669); - END_STATE(); - case 1660: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - END_STATE(); - case 1661: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4105); - END_STATE(); - case 1662: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4106); - END_STATE(); - case 1663: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1665); - END_STATE(); - case 1664: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4102); - END_STATE(); - case 1665: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); - END_STATE(); - case 1666: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1675); - END_STATE(); - case 1667: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1676); - END_STATE(); - case 1668: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1661); - END_STATE(); - case 1669: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4111); - END_STATE(); - case 1670: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1666); - END_STATE(); - case 1671: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1662); - END_STATE(); - case 1672: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1664); - END_STATE(); - case 1673: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1663); - END_STATE(); - case 1674: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1667); - END_STATE(); - case 1675: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1678); - END_STATE(); - case 1676: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1677); - END_STATE(); - case 1677: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4093); - END_STATE(); - case 1678: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4103); - END_STATE(); - case 1679: - if (lookahead == 'l' || - lookahead == 'r') ADVANCE(4333); - END_STATE(); - case 1680: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4149); - END_STATE(); - case 1681: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - END_STATE(); - case 1682: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(518); - END_STATE(); - case 1683: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4144); - END_STATE(); - case 1684: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); - END_STATE(); - case 1685: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4161); - END_STATE(); - case 1686: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4149); - END_STATE(); - case 1687: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); - END_STATE(); - case 1688: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); - END_STATE(); - case 1689: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4160); - END_STATE(); - case 1690: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1692); - END_STATE(); - case 1691: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1689); - END_STATE(); - case 1692: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(486); - END_STATE(); - case 1693: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(517); - END_STATE(); - case 1694: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1693); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4087); END_STATE(); - case 1695: + case 1621: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1700); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1581); END_STATE(); - case 1696: + case 1622: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4191); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4075); END_STATE(); - case 1697: + case 1623: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1657); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); END_STATE(); - case 1698: + case 1624: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4179); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1620); END_STATE(); - case 1699: + case 1625: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1658); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1622); END_STATE(); - case 1700: + case 1626: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1625); END_STATE(); - case 1701: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1698); + case 1627: + if (eof) ADVANCE(1772); + ADVANCE_MAP( + '\n', 3552, + '\r', 1, + '!', 2426, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + ')', 3594, + '*', 3762, + '+', 3812, + ',', 3595, + '-', 3637, + '.', 4103, + '/', 3801, + '0', 3950, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + 'I', 2841, + 'N', 2834, + '[', 4037, + ']', 3592, + '_', 2445, + '`', 481, + 'a', 2622, + 'b', 2588, + 'c', 2461, + 'd', 2515, + 'e', 1900, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2456, + 'n', 2689, + 'o', 1901, + 'r', 2516, + 's', 2670, + 't', 2709, + 'u', 2751, + 'w', 2580, + 'x', 2678, + '|', 3556, + '}', 3703, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 1702: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1701); + case 1628: + if (eof) ADVANCE(1772); + ADVANCE_MAP( + '\n', 3552, + '\r', 1, + '!', 2426, + '"', 4067, + '#', 5468, + '$', 3596, + '\'', 375, + '(', 3593, + ')', 3594, + '*', 3762, + '+', 3812, + ',', 3595, + '-', 3637, + '.', 4104, + '/', 3801, + '0', 3950, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + 'I', 2841, + 'N', 2834, + ']', 3592, + '_', 2445, + '`', 481, + 'a', 2622, + 'b', 2588, + 'c', 2461, + 'd', 2515, + 'e', 1900, + 'f', 2454, + 'h', 2590, + 'i', 2438, + 'l', 2532, + 'm', 2456, + 'n', 2689, + 'o', 1901, + 'r', 2516, + 's', 2670, + 't', 2709, + 'u', 2751, + 'w', 2580, + 'x', 2678, + '|', 3556, + '}', 3703, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 1703: - if (eof) ADVANCE(1848); + case 1629: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 3963, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4564, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4454, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1733); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ' ') SKIP(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4763); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4649); END_STATE(); - case 1704: - if (eof) ADVANCE(1848); + case 1630: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 3963, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4580, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4470, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1705: - if (eof) ADVANCE(1848); + case 1631: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 4624, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4564, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4514, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4454, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1706: - if (eof) ADVANCE(1848); + case 1632: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3912, - '-', 3741, - '.', 4624, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4580, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4514, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4470, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1707: - if (eof) ADVANCE(1848); + case 1633: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '[', 4141, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4568, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4566, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4458, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4456, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); + lookahead == ' ') SKIP(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4649); END_STATE(); - case 1708: - if (eof) ADVANCE(1848); + case 1634: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4573, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4582, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4463, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4472, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1709: - if (eof) ADVANCE(1848); + case 1635: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4570, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4460, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); + lookahead == ' ') SKIP(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4649); END_STATE(); - case 1710: - if (eof) ADVANCE(1848); + case 1636: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4575, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4465, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1711: - if (eof) ADVANCE(1848); + case 1637: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4568, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4566, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4458, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4456, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1712: - if (eof) ADVANCE(1848); + case 1638: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4573, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4582, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4463, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4472, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1713: - if (eof) ADVANCE(1848); + case 1639: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4568, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4566, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4458, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4456, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1714: - if (eof) ADVANCE(1848); + case 1640: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4573, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4582, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4463, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4472, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1715: - if (eof) ADVANCE(1848); + case 1641: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4562, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4566, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4452, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4456, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1716: - if (eof) ADVANCE(1848); + case 1642: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'B', 4120, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'b', 4122, - 'd', 4638, - 'e', 4578, - 'g', 4618, - 'h', 4689, - 'i', 4670, - 'k', 4618, - 'm', 4620, - 'n', 4677, - 'o', 4582, - 'p', 4618, - 's', 4649, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'B', 4016, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'b', 4018, + 'd', 4528, + 'e', 4468, + 'g', 4508, + 'h', 4577, + 'i', 4560, + 'k', 4508, + 'm', 4510, + 'n', 4567, + 'o', 4472, + 'p', 4508, + 's', 4539, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1717: - if (eof) ADVANCE(1848); + case 1643: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4570, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4460, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ' ') SKIP(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4763); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4649); END_STATE(); - case 1718: - if (eof) ADVANCE(1848); + case 1644: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4575, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4465, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1719: - if (eof) ADVANCE(1848); + case 1645: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4570, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4460, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); + lookahead == ' ') SKIP(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4649); END_STATE(); - case 1720: - if (eof) ADVANCE(1848); + case 1646: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4575, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4465, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1721: - if (eof) ADVANCE(1848); + case 1647: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4564, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4454, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); + lookahead == ' ') SKIP(1667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4763); - END_STATE(); - case 1722: - if (eof) ADVANCE(1848); - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 4595, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4580, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4649); END_STATE(); - case 1723: - if (eof) ADVANCE(1848); + case 1648: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3936, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4570, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4485, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4470, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1724: - if (eof) ADVANCE(1848); + case 1649: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3936, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4575, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4460, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1725: - if (eof) ADVANCE(1848); + case 1650: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4570, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4465, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1743); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1726: - if (eof) ADVANCE(1848); + case 1651: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'b', 4660, - 'e', 4575, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4460, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1727: - if (eof) ADVANCE(1848); + case 1652: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4570, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'b', 4550, + 'e', 4465, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1728: - if (eof) ADVANCE(1848); + case 1653: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'E', 4633, - 'a', 4671, - 'b', 4660, - 'e', 4575, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4460, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1729: - if (eof) ADVANCE(1848); + case 1654: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4564, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4566, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'E', 4523, + 'a', 4561, + 'b', 4550, + 'e', 4465, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1730: - if (eof) ADVANCE(1848); + case 1655: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4601, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 4603, - '>', 3709, - 'a', 4671, - 'b', 4660, - 'e', 4580, - 'i', 4670, - 'm', 4676, - 'n', 4678, - 'o', 4582, - 's', 4708, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4454, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4456, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1731: - if (eof) ADVANCE(1848); + case 1656: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4801, - '#', 5592, - '(', 3895, - ')', 3689, - '*', 3864, - '+', 3915, - '-', 3746, - '/', 3903, - ';', 3650, - '<', 3885, - '=', 4803, - '>', 3710, - 'a', 4890, - 'b', 4873, - 'e', 4773, - 'i', 4891, - 'm', 4903, - 'n', 4906, - 'o', 4775, - 's', 4946, - 'x', 4905, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4491, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 4493, + '>', 3614, + 'a', 4561, + 'b', 4550, + 'e', 4470, + 'i', 4560, + 'm', 4566, + 'n', 4568, + 'o', 4472, + 's', 4595, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1732: - if (eof) ADVANCE(1848); + case 1657: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 4801, - '#', 5592, - '(', 3895, - ')', 3689, - '*', 3864, - '+', 3915, - '-', 3746, - '/', 3903, - ';', 3650, - '<', 3885, - '=', 4803, - '>', 3710, - 'a', 4890, - 'b', 4873, - 'e', 4779, - 'i', 4891, - 'm', 4903, - 'n', 4906, - 'o', 4781, - 's', 4946, - 'x', 4905, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4687, + '#', 5474, + '(', 3794, + ')', 3594, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + ';', 3555, + '<', 3784, + '=', 4689, + '>', 3615, + 'a', 4776, + 'b', 4759, + 'e', 4659, + 'i', 4777, + 'm', 4789, + 'n', 4792, + 'o', 4661, + 's', 4830, + 'x', 4791, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(1668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 1733: - if (eof) ADVANCE(1848); + case 1658: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '$', 3691, - ')', 3689, - '*', 3862, - '+', 3911, - '-', 3740, - '.', 545, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 4687, + '#', 5474, + '(', 3794, + ')', 3594, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + ';', 3555, + '<', 3784, + '=', 4689, + '>', 3615, + 'a', 4776, + 'b', 4759, + 'e', 4665, + 'i', 4777, + 'm', 4789, + 'n', 4792, + 'o', 4667, + 's', 4830, + 'x', 4791, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1733); + lookahead == ' ') SKIP(1669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 1734: - if (eof) ADVANCE(1848); + case 1659: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '$', 3691, - ')', 3689, - '*', 3862, - '+', 3911, - '-', 3740, - '.', 545, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '$', 3596, + '(', 3593, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4099, + '/', 3800, + ':', 3589, + ';', 3555, + '<', 3783, + '=', 451, + '>', 3614, + '?', 3764, + '[', 3591, + 'a', 1133, + 'b', 945, + 'c', 598, + 'e', 378, + 'f', 597, + 'i', 837, + 'm', 1199, + 'n', 1221, + 'o', 384, + 's', 1491, + 't', 1349, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1734); + lookahead == ' ') SKIP(1659); END_STATE(); - case 1735: - if (eof) ADVANCE(1848); + case 1660: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '$', 3691, - ')', 3689, - '*', 3862, - '+', 3911, - '-', 3740, - '.', 545, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 448, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 453, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '$', 3596, + '(', 3593, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + ':', 3589, + ';', 3555, + '<', 3783, + '=', 451, + '>', 3614, + '?', 3764, + 'E', 479, + '[', 3591, + 'a', 1133, + 'b', 945, + 'c', 598, + 'e', 377, + 'f', 597, + 'i', 837, + 'm', 1199, + 'n', 1221, + 'o', 384, + 's', 1491, + 't', 1349, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1735); + lookahead == ' ') SKIP(1659); END_STATE(); - case 1736: - if (eof) ADVANCE(1848); + case 1661: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3951, - '/', 3901, - ':', 3684, - ';', 3650, - '<', 3884, - '=', 521, - '>', 3709, - '?', 3865, - '[', 3686, - 'a', 1205, - 'b', 1017, - 'c', 670, - 'e', 444, - 'i', 909, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '$', 3596, + ')', 3594, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 474, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1740); + lookahead == ' ') SKIP(1661); END_STATE(); - case 1737: - if (eof) ADVANCE(1848); + case 1662: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3720, - '.', 3951, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - '?', 3865, - 'B', 4120, - 'E', 538, - 'G', 538, - 'K', 538, - 'M', 538, - 'P', 538, - 'T', 538, - '[', 4141, - 'a', 1206, - 'b', 4123, - 'd', 587, - 'e', 534, - 'g', 536, - 'h', 1365, - 'i', 1181, - 'k', 536, - 'm', 537, - 'n', 1290, - 'o', 1361, - 'p', 536, - 's', 861, - 't', 536, - 'u', 1433, - 'w', 1055, - 'x', 1291, - '{', 3803, - '}', 3804, - 0xb5, 1433, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '$', 3596, + ')', 3594, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 474, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1745); + lookahead == ' ') SKIP(1662); END_STATE(); - case 1738: - if (eof) ADVANCE(1848); + case 1663: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '(', 3895, - ')', 3689, - '*', 3863, - '+', 3914, - '-', 3745, - '.', 3951, - '/', 3902, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '$', 3596, + ')', 3594, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 474, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 382, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 386, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1746); + lookahead == ' ') SKIP(1663); END_STATE(); - case 1739: - if (eof) ADVANCE(1848); + case 1664: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '.', 3936, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 521, - '>', 3709, - '?', 3865, - 'E', 551, - '[', 4141, - '_', 548, - 'a', 1205, - 'b', 1017, - 'e', 442, - 'i', 909, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4105, + '/', 3800, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 451, + '>', 3614, + '?', 3764, + 'B', 4016, + 'E', 464, + 'G', 467, + 'K', 467, + 'M', 467, + 'P', 467, + 'T', 467, + '[', 4037, + '_', 477, + 'a', 1133, + 'b', 4019, + 'd', 515, + 'e', 376, + 'g', 465, + 'h', 1290, + 'i', 837, + 'k', 465, + 'm', 466, + 'n', 1217, + 'o', 384, + 'p', 465, + 's', 789, + 't', 465, + 'u', 1358, + 'w', 983, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 1358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1741); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + lookahead == ' ') SKIP(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); - case 1740: - if (eof) ADVANCE(1848); + case 1665: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ':', 3684, - ';', 3650, - '<', 3884, - '=', 521, - '>', 3709, - '?', 3865, - '[', 3686, - 'a', 1205, - 'b', 1017, - 'c', 670, - 'e', 444, - 'i', 909, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '(', 3794, + ')', 3594, + '*', 3762, + '+', 3813, + '-', 3646, + '.', 4105, + '/', 3801, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + '?', 3764, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1740); + lookahead == ' ') SKIP(1670); END_STATE(); - case 1741: - if (eof) ADVANCE(1848); + case 1666: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 521, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 909, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4099, + '/', 3800, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 451, + '>', 3614, + '?', 3764, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 837, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1741); + lookahead == ' ') SKIP(1666); END_STATE(); - case 1742: - if (eof) ADVANCE(1848); + case 1667: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1742); + lookahead == ' ') SKIP(1667); END_STATE(); - case 1743: - if (eof) ADVANCE(1848); + case 1668: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1743); + lookahead == ' ') SKIP(1668); END_STATE(); - case 1744: - if (eof) ADVANCE(1848); + case 1669: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 448, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 453, - 's', 1567, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 382, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 386, + 's', 1491, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1744); + lookahead == ' ') SKIP(1669); END_STATE(); - case 1745: - if (eof) ADVANCE(1848); + case 1670: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3862, - '+', 3910, - '-', 3720, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - '?', 3865, - 'a', 1206, - 'b', 1017, - 'e', 1237, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 1361, - 's', 1567, - 'x', 1291, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + ')', 3594, + '*', 3762, + '+', 3813, + '-', 3646, + '.', 4099, + '/', 3801, + ':', 4095, + ';', 3555, + '<', 3783, + '=', 1787, + '>', 3614, + '?', 3764, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1745); + lookahead == ' ') SKIP(1670); END_STATE(); - case 1746: - if (eof) ADVANCE(1848); + case 1671: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - ')', 3689, - '*', 3863, - '+', 3914, - '-', 3745, - '/', 3902, - ';', 3650, - '<', 3884, - '=', 1863, - '>', 3709, - '?', 3865, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 379, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 384, + 's', 1491, + 'x', 1218, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1746); + lookahead == ' ') SKIP(1671); END_STATE(); - case 1747: - if (eof) ADVANCE(1848); + case 1672: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 445, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 451, - 's', 1567, - 'x', 1291, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 450, + '#', 5468, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3555, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1133, + 'b', 945, + 'e', 382, + 'i', 1109, + 'm', 1199, + 'n', 1216, + 'o', 386, + 's', 1491, + 'x', 1218, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); + lookahead == ' ') SKIP(1672); END_STATE(); - case 1748: - if (eof) ADVANCE(1848); + case 1673: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 520, - '#', 5586, - '*', 3862, - '+', 3910, - '-', 3719, - '/', 3901, - ';', 3650, - '<', 3884, - '=', 522, - '>', 3709, - 'a', 1205, - 'b', 1017, - 'e', 448, - 'i', 1181, - 'm', 1272, - 'n', 1289, - 'o', 453, - 's', 1567, - 'x', 1291, - '|', 3651, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5470, + '$', 3596, + '\'', 375, + '(', 3593, + ')', 3594, + '*', 3761, + '+', 3809, + ',', 3595, + '-', 3624, + '.', 4100, + '/', 3803, + '0', 3282, + ':', 4095, + ';', 3555, + '<', 3782, + '=', 1786, + '>', 3613, + '?', 3764, + '[', 3591, + ']', 3592, + '^', 4116, + '_', 3706, + '`', 481, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1748); + lookahead == ' ') SKIP(1673); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3335); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3329); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '@') ADVANCE(5237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3343); END_STATE(); - case 1749: - if (eof) ADVANCE(1848); + case 1674: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5588, - '$', 3692, - '\'', 441, - '(', 3688, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 3650, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2307, - 'b', 2281, - 'c', 2154, - 'd', 2183, - 'e', 2157, - 'f', 2160, - 'g', 2273, - 'h', 2172, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2234, - 'm', 2162, - 'n', 2357, - 'o', 2465, - 'p', 2177, - 'q', 2459, - 'r', 2164, - 's', 2201, - 't', 2167, - 'u', 2367, - 'v', 2285, - 'w', 2270, - '{', 3803, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5470, + '$', 3597, + '\'', 375, + '(', 3593, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + ';', 3555, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2231, + 'b', 2205, + 'c', 2078, + 'd', 2107, + 'e', 2081, + 'f', 2084, + 'g', 2197, + 'h', 2096, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2158, + 'm', 2086, + 'n', 2281, + 'o', 2389, + 'p', 2101, + 'q', 2383, + 'r', 2088, + 's', 2125, + 't', 2091, + 'u', 2291, + 'v', 2209, + 'w', 2194, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1749); + lookahead == ' ') SKIP(1674); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2478); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); END_STATE(); - case 1750: - if (eof) ADVANCE(1848); + case 1675: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1751: - if (eof) ADVANCE(1848); + case 1676: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4596, - '-', 3724, - '.', 4592, - '0', 3978, - ';', 3650, - 'N', 4730, - '[', 3686, - '_', 4622, - '`', 553, - 'e', 4565, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4486, + '-', 3629, + '.', 4482, + '0', 3874, + ';', 3555, + 'N', 4617, + '[', 3591, + '_', 4512, + '`', 481, + 'e', 4455, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1719); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1752: - if (eof) ADVANCE(1848); + case 1677: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4596, - '-', 3724, - '.', 3940, - '0', 3978, - ';', 3650, - 'N', 4730, - '[', 3686, - '_', 4622, - '`', 553, - 'e', 4565, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4486, + '-', 3629, + '.', 3839, + '0', 3874, + ';', 3555, + 'N', 4617, + '[', 3591, + '_', 4512, + '`', 481, + 'e', 4455, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1719); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1753: - if (eof) ADVANCE(1848); + case 1678: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 3978, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4622, - '`', 553, - 'd', 4638, - 'e', 4569, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3874, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4512, + '`', 481, + 'd', 4528, + 'e', 4459, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1754: - if (eof) ADVANCE(1848); + case 1679: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 3978, - ';', 3650, - 'E', 4633, - 'N', 4730, - '[', 3686, - '_', 4622, - '`', 553, - 'e', 4571, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3874, + ';', 3555, + 'E', 4523, + 'N', 4617, + '[', 3591, + '_', 4512, + '`', 481, + 'e', 4461, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1755: - if (eof) ADVANCE(1848); + case 1680: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 4052, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4569, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3948, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4517, + '`', 481, + 'd', 4528, + 'e', 4459, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1756: - if (eof) ADVANCE(1848); + case 1681: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 4052, - ';', 3650, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4563, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3948, + ';', 3555, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4517, + '`', 481, + 'd', 4528, + 'e', 4453, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1757: - if (eof) ADVANCE(1848); + case 1682: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 4052, - ';', 3650, - 'E', 4633, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4571, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3948, + ';', 3555, + 'E', 4523, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4461, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1758: - if (eof) ADVANCE(1848); + case 1683: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 4052, - ';', 3650, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4565, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3948, + ';', 3555, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4455, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1759: - if (eof) ADVANCE(1848); + case 1684: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4593, - '0', 3978, - ';', 3650, - 'E', 4633, - 'N', 4730, - '[', 3686, - '_', 4622, - '`', 553, - 'e', 4571, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4483, + '0', 3874, + ';', 3555, + 'E', 4523, + 'N', 4617, + '[', 3591, + '_', 4512, + '`', 481, + 'e', 4461, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1760: - if (eof) ADVANCE(1848); + case 1685: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4593, - '0', 4052, - ';', 3650, - 'E', 4633, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4571, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4483, + '0', 3948, + ';', 3555, + 'E', 4523, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4461, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1761: - if (eof) ADVANCE(1848); + case 1686: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4593, - '0', 4052, - ';', 3650, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4565, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4483, + '0', 3948, + ';', 3555, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4455, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1762: - if (eof) ADVANCE(1848); + case 1687: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 3955, - '0', 4052, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4569, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 3854, + '0', 3948, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4517, + '`', 481, + 'd', 4528, + 'e', 4459, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1763: - if (eof) ADVANCE(1848); + case 1688: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 3955, - '0', 4052, - ';', 3650, - 'E', 4633, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4571, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 3854, + '0', 3948, + ';', 3555, + 'E', 4523, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4461, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1764: - if (eof) ADVANCE(1848); + case 1689: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 3945, - '0', 4052, - ';', 3650, - 'E', 4633, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4571, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 3844, + '0', 3948, + ';', 3555, + 'E', 4523, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4461, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1765: - if (eof) ADVANCE(1848); + case 1690: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4481, - '-', 3722, - '.', 4477, - '0', 3979, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4502, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4371, + '-', 3627, + '.', 4367, + '0', 3875, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4392, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1719); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1766: - if (eof) ADVANCE(1848); + case 1691: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4481, - '-', 3722, - '.', 3943, - '0', 3979, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4502, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4371, + '-', 3627, + '.', 3841, + '0', 3875, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4392, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1719); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1767: - if (eof) ADVANCE(1848); + case 1692: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 4021, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 3650, - '=', 524, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2307, - 'b', 2281, - 'c', 2154, - 'd', 2183, - 'e', 2157, - 'f', 2160, - 'g', 2273, - 'h', 2172, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2234, - 'm', 2162, - 'n', 2357, - 'o', 2465, - 'p', 2177, - 'q', 2459, - 'r', 2164, - 's', 2201, - 't', 2167, - 'u', 2367, - 'v', 2285, - 'w', 2270, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3917, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + ':', 4095, + ';', 3555, + '=', 454, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2231, + 'b', 2205, + 'c', 2078, + 'd', 2107, + 'e', 2081, + 'f', 2084, + 'g', 2197, + 'h', 2096, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2158, + 'm', 2086, + 'n', 2281, + 'o', 2389, + 'p', 2101, + 'q', 2383, + 'r', 2088, + 's', 2125, + 't', 2091, + 'u', 2291, + 'v', 2209, + 'w', 2194, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); + lookahead == ' ') SKIP(1693); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2478); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2402); END_STATE(); - case 1768: - if (eof) ADVANCE(1848); + case 1693: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 3650, - '=', 524, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2307, - 'b', 2281, - 'c', 2154, - 'd', 2183, - 'e', 2157, - 'f', 2160, - 'g', 2273, - 'h', 2172, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2234, - 'm', 2162, - 'n', 2357, - 'o', 2465, - 'p', 2177, - 'q', 2459, - 'r', 2164, - 's', 2201, - 't', 2167, - 'u', 2367, - 'v', 2285, - 'w', 2270, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 2060, + '-', 3638, + '.', 2061, + '0', 3943, + ':', 4095, + ';', 3555, + '=', 454, + 'I', 2399, + 'N', 2397, + '[', 3591, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2231, + 'b', 2205, + 'c', 2078, + 'd', 2107, + 'e', 2081, + 'f', 2084, + 'g', 2197, + 'h', 2096, + 'i', 2074, + 'j', 2333, + 'k', 2138, + 'l', 2158, + 'm', 2086, + 'n', 2281, + 'o', 2389, + 'p', 2101, + 'q', 2383, + 'r', 2088, + 's', 2125, + 't', 2091, + 'u', 2291, + 'v', 2209, + 'w', 2194, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); + lookahead == ' ') SKIP(1693); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2478); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2402); END_STATE(); - case 1769: - if (eof) ADVANCE(1848); + case 1694: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 2136, - '-', 3734, - '.', 2137, - '0', 4047, - ';', 3650, - 'I', 2475, - 'N', 2473, - '[', 3686, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2321, - 'b', 2281, - 'c', 2155, - 'd', 2184, - 'e', 1979, - 'f', 2161, - 'g', 2273, - 'h', 2173, - 'i', 2150, - 'j', 2409, - 'k', 2214, - 'l', 2244, - 'm', 2163, - 'n', 2357, - 'o', 1981, - 'p', 2177, - 'q', 2459, - 'r', 2166, - 's', 2202, - 't', 2167, - 'u', 2368, - 'v', 2285, - 'w', 2280, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 432, + '-', 3639, + '.', 433, + '0', 3946, + ':', 4095, + ';', 3555, + '=', 454, + '>', 3613, + '@', 3616, + 'I', 1596, + 'N', 1583, + '[', 3591, + '_', 470, + '`', 481, + 'a', 1065, + 'c', 599, + 'd', 761, + 'e', 381, + 'f', 597, + 'i', 838, + 'm', 507, + 'n', 1219, + 'o', 387, + 't', 1292, + 'u', 1390, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1769); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2478); + lookahead == ' ') SKIP(1695); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3969); END_STATE(); - case 1770: - if (eof) ADVANCE(1848); + case 1695: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 499, - '-', 3735, - '.', 500, - '0', 4050, - ';', 3650, - '=', 524, - 'I', 1672, - 'N', 1659, - '[', 3686, - '_', 541, - '`', 553, - 'a', 1205, - 'c', 670, - 'd', 1243, - 'e', 447, - 'f', 669, - 'i', 910, - 'm', 672, - 'n', 1292, - 'o', 453, - 't', 1367, - 'x', 1291, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 432, + '-', 3639, + '.', 433, + '0', 3946, + ':', 4095, + ';', 3555, + '=', 454, + '>', 3613, + 'I', 1596, + 'N', 1583, + '[', 3591, + '_', 470, + '`', 481, + 'a', 1065, + 'c', 599, + 'd', 761, + 'e', 381, + 'f', 597, + 'i', 838, + 'm', 507, + 'n', 1219, + 'o', 387, + 't', 1292, + 'u', 1390, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1770); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4073); + lookahead == ' ') SKIP(1695); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3969); END_STATE(); - case 1771: - if (eof) ADVANCE(1848); + case 1696: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 3916, - '-', 3734, - '.', 2138, - '0', 4047, - ':', 3684, - ';', 3650, - '=', 1862, - '>', 3708, - 'I', 2475, - 'N', 2473, - '[', 3686, - ']', 3687, - '^', 4208, - '_', 2153, - '`', 553, - 'a', 2306, - 'b', 2281, - 'c', 2188, - 'd', 2183, - 'e', 2159, - 'f', 2160, - 'g', 2273, - 'h', 2172, - 'i', 2151, - 'j', 2409, - 'k', 2214, - 'l', 2234, - 'm', 2181, - 'n', 2357, - 'o', 2465, - 'p', 2177, - 'q', 2459, - 'r', 2164, - 's', 2201, - 't', 2167, - 'u', 2367, - 'v', 2285, - 'w', 2270, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 3815, + '-', 3638, + '.', 2062, + '0', 3943, + ':', 3589, + ';', 3555, + '=', 1786, + '>', 3613, + 'I', 2399, + 'N', 2397, + '[', 3591, + ']', 3592, + '^', 4116, + '_', 2077, + '`', 481, + 'a', 2230, + 'b', 2205, + 'c', 2112, + 'd', 2107, + 'e', 2083, + 'f', 2084, + 'g', 2197, + 'h', 2096, + 'i', 2075, + 'j', 2333, + 'k', 2138, + 'l', 2158, + 'm', 2105, + 'n', 2281, + 'o', 2389, + 'p', 2101, + 'q', 2383, + 'r', 2088, + 's', 2125, + 't', 2091, + 'u', 2291, + 'v', 2209, + 'w', 2194, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1771); + lookahead == ' ') SKIP(1696); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4070); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(2478); - END_STATE(); - case 1772: - if (eof) ADVANCE(1848); - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4479, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, - 'I', 4541, - 'i', 4541, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == '@') ADVANCE(2855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + (lookahead < '0' || '@' < lookahead)) ADVANCE(2402); END_STATE(); - case 1773: - if (eof) ADVANCE(1848); + case 1697: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 3441, - ';', 3650, - '=', 4390, - 'N', 3570, - '[', 3686, - '_', 3443, - '`', 553, - 'e', 3420, - 'f', 3450, - 'n', 3556, - 'o', 3421, - 't', 3524, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4369, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, + 'I', 4431, + 'i', 4431, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3582); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3446); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1774: - if (eof) ADVANCE(1848); + case 1698: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - ';', 3650, - '=', 4390, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3361, + ';', 3555, + '=', 4298, + 'N', 3483, + '[', 3591, + '_', 3362, + '`', 481, + 'e', 3344, + 'f', 3366, + 'n', 3469, + 'o', 3345, + 't', 3438, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(3495); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3365); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1775: - if (eof) ADVANCE(1848); + case 1699: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - ';', 3650, - '?', 3865, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3944, + ';', 3555, + '=', 4298, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1775); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1776: - if (eof) ADVANCE(1848); + case 1700: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - ';', 3650, - 'E', 4504, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4468, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3944, + ';', 3555, + 'E', 4394, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4358, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1777: - if (eof) ADVANCE(1848); + case 1701: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 4141, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 4037, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1778: - if (eof) ADVANCE(1848); + case 1702: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1779: - if (eof) ADVANCE(1848); + case 1703: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4476, - '0', 3979, - ';', 3650, - 'E', 4504, - 'N', 4538, - '[', 3686, - '_', 4502, - '`', 553, - 'e', 4468, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4366, + '0', 3875, + ';', 3555, + 'E', 4394, + 'N', 4428, + '[', 3591, + '_', 4392, + '`', 481, + 'e', 4358, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1780: - if (eof) ADVANCE(1848); + case 1704: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4478, - '0', 4048, - ';', 3650, - 'E', 4504, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4468, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4106, + '0', 3944, + ';', 3555, + '?', 3764, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1781: - if (eof) ADVANCE(1848); + case 1705: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4478, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4106, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1707); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1782: - if (eof) ADVANCE(1848); + case 1706: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 4478, - '0', 3979, - ';', 3650, - 'E', 4504, - 'N', 4538, - '[', 3686, - '_', 4502, - '`', 553, - 'e', 4468, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4101, + '0', 3944, + ';', 3555, + '?', 3764, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1706); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3994); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1783: - if (eof) ADVANCE(1848); + case 1707: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 3953, - '0', 4048, - ';', 3650, - '?', 3865, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4101, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1775); + lookahead == ' ') SKIP(1707); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1784: - if (eof) ADVANCE(1848); + case 1708: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 3953, - '0', 4048, - ';', 3650, - 'E', 4504, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4468, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4368, + '0', 3944, + ';', 3555, + 'E', 4394, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4358, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1785: - if (eof) ADVANCE(1848); + case 1709: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 3953, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4368, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1786: - if (eof) ADVANCE(1848); + case 1710: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 3938, - '0', 4048, - ';', 3650, - '?', 3865, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 4368, + '0', 3875, + ';', 3555, + 'E', 4394, + 'N', 4428, + '[', 3591, + '_', 4392, + '`', 481, + 'e', 4358, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1775); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1787: - if (eof) ADVANCE(1848); + case 1711: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 3938, - '0', 4048, - ';', 3650, - 'E', 4504, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4468, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 3851, + '0', 3944, + ';', 3555, + 'E', 4394, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4358, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1788: - if (eof) ADVANCE(1848); + case 1712: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3721, - '.', 3938, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3626, + '.', 3837, + '0', 3944, + ';', 3555, + 'E', 4394, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4358, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1789: - if (eof) ADVANCE(1848); + case 1713: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4480, - '-', 3730, - '.', 4476, - '0', 4408, - ';', 3650, - '=', 4390, - 'N', 4435, - '[', 3686, - '_', 4410, - '`', 553, - 'e', 4391, - 'f', 4417, - 'n', 4434, - 'o', 4392, - 't', 4425, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4370, + '-', 3634, + '.', 4366, + '0', 4312, + ';', 3555, + '=', 4298, + 'N', 4332, + '[', 3591, + '_', 4313, + '`', 481, + 'e', 4299, + 'f', 4317, + 'n', 4331, + 'o', 4300, + 't', 4323, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4440); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4413); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == 'i') ADVANCE(4337); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4316); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1790: - if (eof) ADVANCE(1848); + case 1714: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 3978, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4622, - '`', 553, - 'd', 4638, - 'e', 4569, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3874, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4512, + '`', 481, + 'd', 4528, + 'e', 4459, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3993); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1791: - if (eof) ADVANCE(1848); + case 1715: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 4052, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4569, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3948, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4517, + '`', 481, + 'd', 4528, + 'e', 4459, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1792: - if (eof) ADVANCE(1848); + case 1716: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4594, - '0', 4052, - ';', 3650, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4563, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4484, + '0', 3948, + ';', 3555, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4517, + '`', 481, + 'd', 4528, + 'e', 4453, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1793: - if (eof) ADVANCE(1848); + case 1717: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 4593, - '0', 4052, - ';', 3650, - 'N', 4730, - '[', 3686, - '_', 4627, - '`', 553, - 'e', 4565, - 'f', 4637, - 'n', 4715, - 'o', 4567, - 't', 4690, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 4483, + '0', 3948, + ';', 3555, + 'N', 4617, + '[', 3591, + '_', 4517, + '`', 481, + 'e', 4455, + 'f', 4527, + 'n', 4602, + 'o', 4457, + 't', 4578, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1794: - if (eof) ADVANCE(1848); + case 1718: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4597, - '-', 3727, - '.', 3955, - '0', 4052, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'N', 4730, - 'P', 4619, - 'T', 4619, - '[', 3686, - '_', 4627, - '`', 553, - 'd', 4638, - 'e', 4569, - 'f', 4637, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4698, - 'o', 4567, - 'p', 4618, - 's', 4650, - 't', 4617, - 'u', 4699, - 'w', 4663, - '{', 3803, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4487, + '-', 3631, + '.', 3854, + '0', 3948, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'N', 4617, + 'P', 4509, + 'T', 4509, + '[', 3591, + '_', 4517, + '`', 481, + 'd', 4528, + 'e', 4459, + 'f', 4527, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4586, + 'o', 4457, + 'p', 4508, + 's', 4540, + 't', 4507, + 'u', 4587, + 'w', 4553, + '{', 3702, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4739); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4075); + lookahead == 'i') ADVANCE(4626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4763); + lookahead != ']') ADVANCE(4649); END_STATE(); - case 1795: - if (eof) ADVANCE(1848); + case 1719: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '$', 3692, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4481, - '-', 3722, - '.', 4477, - '0', 4048, - ';', 3650, - 'N', 4538, - '[', 3686, - '_', 4493, - '`', 553, - 'e', 4466, - 'f', 4506, - 'n', 4534, - 'o', 4467, - 't', 4521, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '$', 3597, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4371, + '-', 3627, + '.', 4367, + '0', 3944, + ';', 3555, + 'N', 4428, + '[', 3591, + '_', 4383, + '`', 481, + 'e', 4356, + 'f', 4396, + 'n', 4424, + 'o', 4357, + 't', 4411, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1795); + lookahead == ' ') SKIP(1719); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4071); + lookahead == 'i') ADVANCE(4431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4561); + lookahead != ']') ADVANCE(4451); END_STATE(); - case 1796: - if (eof) ADVANCE(1848); + case 1720: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '\'', 441, - ')', 3689, - '*', 3861, - '+', 2136, - '-', 498, - '.', 2518, - ';', 3650, - '?', 3865, - 'I', 2919, - 'N', 2911, - '[', 3686, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '\'', 375, + ')', 3594, + '*', 3760, + '+', 2060, + '-', 431, + '.', 4110, + ';', 3555, + '?', 3764, + 'I', 2843, + 'N', 2835, + '[', 3591, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(1720); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 1797: - if (eof) ADVANCE(1848); + case 1721: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '\'', 441, - ')', 3689, - '*', 3861, - '+', 2136, - '-', 498, - '.', 2518, - ';', 3650, - 'I', 2919, - 'N', 2911, - '[', 3686, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '\'', 375, + ')', 3594, + '*', 3760, + '+', 2060, + '-', 431, + '.', 4110, + ';', 3555, + 'I', 2843, + 'N', 2835, + '[', 3591, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(1721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 1798: - if (eof) ADVANCE(1848); - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '\'', 441, - ')', 3689, - '*', 3861, - '+', 2136, - '-', 498, - '.', 3962, - ';', 3650, - '?', 3865, - 'I', 2919, - 'N', 2911, - '[', 3686, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - '}', 3804, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); - END_STATE(); - case 1799: - if (eof) ADVANCE(1848); + case 1722: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5586, - '\'', 441, - ')', 3689, - '*', 3861, - '+', 2136, - '-', 498, - '.', 3962, - ';', 3650, - 'I', 2919, - 'N', 2911, - '[', 3686, - '_', 2521, - '`', 553, - 'a', 2721, - 'b', 2811, - 'c', 2553, - 'd', 2603, - 'e', 2717, - 'f', 2531, - 'h', 2683, - 'i', 2516, - 'l', 2638, - 'm', 2552, - 'n', 2882, - 'o', 2900, - 'r', 2639, - 's', 2770, - 't', 2812, - 'u', 2837, - 'w', 2663, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5468, + '\'', 375, + ')', 3594, + '*', 3760, + '+', 2060, + '-', 431, + '.', 2442, + ';', 3555, + 'I', 2843, + 'N', 2835, + '[', 3591, + '_', 2445, + '`', 481, + 'a', 2645, + 'b', 2735, + 'c', 2477, + 'd', 2527, + 'e', 2641, + 'f', 2455, + 'h', 2607, + 'i', 2440, + 'l', 2562, + 'm', 2476, + 'n', 2806, + 'o', 2824, + 'r', 2563, + 's', 2694, + 't', 2736, + 'u', 2761, + 'w', 2587, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + lookahead == ' ') SKIP(1722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2931); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); END_STATE(); - case 1800: - if (eof) ADVANCE(1848); + case 1723: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5592, - '$', 3693, - '\'', 441, - '(', 3895, - ')', 3689, - '+', 4793, - '-', 3728, - '.', 4794, - '0', 4815, - ';', 3650, - 'N', 4981, - '[', 3686, - '_', 4817, - '`', 553, - 'e', 4774, - 'f', 4827, - 'n', 4957, - 'o', 4776, - 't', 4914, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5474, + '$', 3598, + '\'', 375, + '(', 3794, + ')', 3594, + '+', 4679, + '-', 3632, + '.', 4680, + '0', 4701, + ';', 3555, + 'N', 4865, + '[', 3591, + '_', 4703, + '`', 481, + 'e', 4660, + 'f', 4713, + 'n', 4841, + 'o', 4662, + 't', 4799, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4991); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4820); + lookahead == 'i') ADVANCE(4875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4706); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(5022); + lookahead != ']') ADVANCE(4905); END_STATE(); - case 1801: - if (eof) ADVANCE(1848); + case 1724: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '"', 4171, - '#', 5592, - '$', 3693, - '\'', 441, - '(', 3688, - ')', 3689, - '+', 4793, - '-', 3728, - '.', 4794, - '0', 4815, - ';', 3650, - 'N', 4981, - '[', 3686, - '_', 4817, - '`', 553, - 'e', 4774, - 'f', 4827, - 'n', 4957, - 'o', 4776, - 't', 4914, - '{', 3803, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '"', 4067, + '#', 5474, + '$', 3598, + '\'', 375, + '(', 3593, + ')', 3594, + '+', 4679, + '-', 3632, + '.', 4680, + '0', 4701, + ';', 3555, + 'N', 4865, + '[', 3591, + '_', 4703, + '`', 481, + 'e', 4660, + 'f', 4713, + 'n', 4841, + 'o', 4662, + 't', 4799, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1778); + lookahead == ' ') SKIP(1702); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4991); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4820); + lookahead == 'i') ADVANCE(4875); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4706); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(5022); + lookahead != ']') ADVANCE(4905); END_STATE(); - case 1802: - if (eof) ADVANCE(1848); + case 1725: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '.', 3963, - ';', 3650, - '[', 4141, - '_', 4622, - 'e', 4581, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, - '+', 4596, - '-', 4596, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '.', 3859, + ';', 3555, + '[', 4037, + '_', 4512, + 'e', 4471, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, + '+', 4486, + '-', 4486, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -36809,17591 +33751,17416 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4763); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4649); END_STATE(); - case 1803: - if (eof) ADVANCE(1848); + case 1726: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '.', 3963, - ';', 3650, - '_', 4622, - 'a', 4671, - 'e', 4581, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '.', 3859, + ';', 3555, + '_', 4512, + 'a', 4561, + 'e', 4471, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1809); + lookahead == ' ') SKIP(1734); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1804: - if (eof) ADVANCE(1848); + case 1727: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '.', 4624, - ';', 3650, - '_', 4622, - 'a', 4671, - 'e', 4581, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '.', 4514, + ';', 3555, + '_', 4512, + 'a', 4561, + 'e', 4471, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1809); + lookahead == ' ') SKIP(1734); if (lookahead == '+' || - lookahead == '-') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1805: - if (eof) ADVANCE(1848); + case 1728: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - '(', 3895, - ')', 3689, - '.', 4624, - ';', 3650, - '_', 4622, - 'e', 4581, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, - '+', 4596, - '-', 4596, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + '(', 3794, + ')', 3594, + '.', 4514, + ';', 3555, + '_', 4512, + 'e', 4471, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, + '+', 4486, + '-', 4486, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1806: - if (eof) ADVANCE(1848); + case 1729: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - '.', 3951, - ';', 3650, - '=', 4390, - '?', 3865, - 'e', 3424, - 'o', 3425, - '{', 3803, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + '.', 4105, + ':', 3589, + ';', 3555, + '=', 1786, + '?', 3764, + '[', 4037, + 'a', 1134, + 'e', 383, + 'i', 1109, + 'o', 386, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1731); END_STATE(); - case 1807: - if (eof) ADVANCE(1848); + case 1730: + if (eof) ADVANCE(1772); + ADVANCE_MAP( + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + '.', 4105, + ';', 3555, + '=', 4298, + '?', 3764, + 'e', 3348, + 'o', 3349, + '{', 3702, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, + ); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + END_STATE(); + case 1731: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - '.', 3936, - ';', 3650, - '=', 4390, - '?', 3865, - 'a', 1435, - 'i', 1181, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + '.', 4099, + ':', 3589, + ';', 3555, + '=', 1786, + '?', 3764, + 'a', 1134, + 'e', 383, + 'i', 1109, + 'o', 386, + 'x', 1218, + '{', 3702, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1808); + lookahead == ' ') SKIP(1731); END_STATE(); - case 1808: - if (eof) ADVANCE(1848); + case 1732: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '-', 3720, - ';', 3650, - '?', 3865, - 'a', 1435, - 'i', 1181, - '{', 3803, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + ';', 3555, + '=', 4298, + 'a', 3452, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1808); + lookahead == ' ') SKIP(1733); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); END_STATE(); - case 1809: - if (eof) ADVANCE(1848); + case 1733: + if (eof) ADVANCE(1772); + ADVANCE_MAP( + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '-', 3625, + ';', 3555, + 'a', 1360, + '{', 3702, + '}', 3703, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1733); + END_STATE(); + case 1734: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '$', 3691, - ')', 3689, - '.', 545, - ';', 3650, - 'a', 1205, - 'e', 449, - 'o', 453, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '$', 3596, + ')', 3594, + '.', 474, + ';', 3555, + 'a', 1133, + 'e', 383, + 'o', 386, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1809); + lookahead == ' ') SKIP(1734); if (lookahead == '+' || - lookahead == '-') ADVANCE(503); + lookahead == '-') ADVANCE(437); END_STATE(); - case 1810: - if (eof) ADVANCE(1848); + case 1735: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 3951, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'd', 4638, - 'e', 4574, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4582, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 3849, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'd', 4528, + 'e', 4464, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4472, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); + lookahead == ' ') SKIP(1768); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1811: - if (eof) ADVANCE(1848); + case 1736: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 3951, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4574, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4583, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - '}', 3804, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 3849, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4464, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4473, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + '}', 3703, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1812: - if (eof) ADVANCE(1848); + case 1737: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 3951, - ';', 3650, - 'E', 4633, - 'a', 4671, - 'e', 4576, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 3849, + ';', 3555, + 'E', 4523, + 'a', 4561, + 'e', 4466, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1813: - if (eof) ADVANCE(1848); + case 1738: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 3951, - ';', 3650, - 'E', 4633, - 'e', 4576, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 3849, + ';', 3555, + 'E', 4523, + 'e', 4466, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1814: - if (eof) ADVANCE(1848); + case 1739: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4671, - 'd', 4638, - 'e', 4574, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4582, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'a', 4561, + 'd', 4528, + 'e', 4464, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4472, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); + lookahead == ' ') SKIP(1768); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1815: - if (eof) ADVANCE(1848); + case 1740: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'd', 4638, - 'e', 4574, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4583, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - '}', 3804, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'd', 4528, + 'e', 4464, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4473, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + '}', 3703, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1816: - if (eof) ADVANCE(1848); + case 1741: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'd', 4638, - 'e', 4574, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4582, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'd', 4528, + 'e', 4464, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4472, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); + lookahead == ' ') SKIP(1768); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1817: - if (eof) ADVANCE(1848); + case 1742: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4574, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4583, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - '}', 3804, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4464, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4473, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + '}', 3703, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1818: - if (eof) ADVANCE(1848); + case 1743: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4671, - 'd', 4638, - 'e', 4579, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4582, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - 'x', 4680, - '|', 3651, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4561, + 'd', 4528, + 'e', 4469, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4472, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + 'x', 4570, + '|', 3556, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); + lookahead == ' ') SKIP(1768); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1819: - if (eof) ADVANCE(1848); + case 1744: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'd', 4638, - 'e', 4579, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'o', 4583, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '|', 3651, - '}', 3804, - 0xb5, 4699, - '\t', 3649, - ' ', 3649, - 'B', 4120, - 'b', 4120, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'd', 4528, + 'e', 4469, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'o', 4473, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '|', 3556, + '}', 3703, + 0xb5, 4587, + '\t', 3554, + ' ', 3554, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1820: - if (eof) ADVANCE(1848); + case 1745: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'e', 4576, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'e', 4466, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1821: - if (eof) ADVANCE(1848); + case 1746: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4633, - '_', 4622, - 'e', 4576, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4523, + '_', 4512, + 'e', 4466, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1822: - if (eof) ADVANCE(1848); + case 1747: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4633, - 'a', 4671, - 'e', 4576, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4523, + 'a', 4561, + 'e', 4466, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1823: - if (eof) ADVANCE(1848); + case 1748: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'E', 4633, - 'e', 4576, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'E', 4523, + 'e', 4466, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1824: - if (eof) ADVANCE(1848); + case 1749: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'a', 4671, - 'e', 4581, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'a', 4561, + 'e', 4471, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1825: - if (eof) ADVANCE(1848); + case 1750: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 4595, - ';', 3650, - 'e', 4581, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 4485, + ';', 3555, + 'e', 4471, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1826: - if (eof) ADVANCE(1848); + case 1751: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 3936, - ';', 3650, - 'E', 4633, - 'a', 4671, - 'e', 4576, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 3835, + ';', 3555, + 'E', 4523, + 'a', 4561, + 'e', 4466, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1827: - if (eof) ADVANCE(1848); + case 1752: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - '.', 3936, - ';', 3650, - 'E', 4633, - 'e', 4576, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + '.', 3835, + ';', 3555, + 'E', 4523, + 'e', 4466, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1828: - if (eof) ADVANCE(1848); + case 1753: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - ';', 3650, - 'E', 4633, - '_', 4622, - 'a', 4671, - 'e', 4576, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + ';', 3555, + 'E', 4523, + '_', 4512, + 'a', 4561, + 'e', 4466, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1829: - if (eof) ADVANCE(1848); + case 1754: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - ';', 3650, - 'E', 4633, - '_', 4622, - 'e', 4576, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + ';', 3555, + 'E', 4523, + '_', 4512, + 'e', 4466, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1830: - if (eof) ADVANCE(1848); + case 1755: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - ';', 3650, - 'E', 4633, - 'a', 4671, - 'e', 4576, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + ';', 3555, + 'E', 4523, + 'a', 4561, + 'e', 4466, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1831: - if (eof) ADVANCE(1848); + case 1756: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - ';', 3650, - 'E', 4633, - 'e', 4576, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + ';', 3555, + 'E', 4523, + 'e', 4466, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1832: - if (eof) ADVANCE(1848); + case 1757: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - ';', 3650, - 'a', 4671, - 'e', 4581, - 'o', 4582, - 'x', 4680, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + ';', 3555, + 'a', 4561, + 'e', 4471, + 'o', 4472, + 'x', 4570, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1833: - if (eof) ADVANCE(1848); + case 1758: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - '(', 3895, - ')', 3689, - ';', 3650, - 'e', 4581, - 'o', 4583, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + '(', 3794, + ')', 3594, + ';', 3555, + 'e', 4471, + 'o', 4473, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1834: - if (eof) ADVANCE(1848); + case 1759: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - '.', 3951, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4700, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + '.', 3849, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4588, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); + lookahead == ' ') SKIP(1765); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1835: - if (eof) ADVANCE(1848); + case 1760: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - '.', 4595, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - '_', 4622, - 'a', 4700, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + '.', 4485, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + '_', 4512, + 'a', 4588, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); + lookahead == ' ') SKIP(1765); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1836: - if (eof) ADVANCE(1848); + case 1761: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - '.', 4595, - ';', 3650, - 'E', 4615, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4700, - 'd', 4638, - 'e', 4614, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + '.', 4485, + ';', 3555, + 'E', 4505, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4588, + 'd', 4528, + 'e', 4504, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); + lookahead == ' ') SKIP(1765); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1837: - if (eof) ADVANCE(1848); + case 1762: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - '.', 4595, - ';', 3650, - 'E', 4619, - 'G', 4619, - 'K', 4619, - 'M', 4619, - 'P', 4619, - 'T', 4619, - 'a', 4700, - 'd', 4638, - 'e', 4618, - 'g', 4618, - 'h', 4689, - 'k', 4618, - 'm', 4621, - 'n', 4699, - 'p', 4618, - 's', 4650, - 't', 4618, - 'u', 4699, - 'w', 4663, - '}', 3804, - 0xb5, 4699, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + '.', 4485, + ';', 3555, + 'E', 4509, + 'G', 4509, + 'K', 4509, + 'M', 4509, + 'P', 4509, + 'T', 4509, + 'a', 4588, + 'd', 4528, + 'e', 4508, + 'g', 4508, + 'h', 4577, + 'k', 4508, + 'm', 4511, + 'n', 4587, + 'p', 4508, + 's', 4540, + 't', 4508, + 'u', 4587, + 'w', 4553, + '}', 3703, + 0xb5, 4587, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); + lookahead == ' ') SKIP(1765); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1838: - if (eof) ADVANCE(1848); + case 1763: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - ';', 3650, - '=', 4390, - 'a', 3538, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + ';', 3555, + '=', 4298, + 'a', 1360, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3610); + lookahead == ' ') SKIP(1765); END_STATE(); - case 1839: - if (eof) ADVANCE(1848); + case 1764: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - ';', 3650, - 'a', 4700, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + ';', 3555, + 'a', 4588, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == ' ') SKIP(1765); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 1840: - if (eof) ADVANCE(1848); + case 1765: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3720, - ';', 3650, - 'a', 1435, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3625, + ';', 3555, + 'a', 1360, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); + lookahead == ' ') SKIP(1765); END_STATE(); - case 1841: - if (eof) ADVANCE(1848); + case 1766: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '-', 3731, - ';', 3650, - '=', 4390, - 'a', 4428, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + '-', 3635, + ';', 3555, + '=', 4298, + 'a', 4326, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 1842: - if (eof) ADVANCE(1848); - ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - '.', 3936, - ';', 3650, - '?', 3865, - 'e', 449, - 'o', 454, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, - ); + lookahead == ' ') SKIP(1765); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 1843: - if (eof) ADVANCE(1848); + case 1767: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - ';', 3650, - '=', 4390, - 'e', 4395, - 'o', 4396, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + ';', 3555, + '=', 4298, + 'e', 4303, + 'o', 4304, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 1844: - if (eof) ADVANCE(1848); + case 1768: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5586, - ')', 3689, - ';', 3650, - 'a', 1205, - 'e', 449, - 'o', 453, - 'x', 1291, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5468, + ')', 3594, + ';', 3555, + 'a', 1133, + 'e', 383, + 'o', 386, + 'x', 1218, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); + lookahead == ' ') SKIP(1768); END_STATE(); - case 1845: - if (eof) ADVANCE(1848); + case 1769: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5592, - '(', 3895, - ')', 3689, - ';', 3650, - 'a', 4890, - 'e', 4780, - 'o', 4781, - 'x', 4905, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5474, + '(', 3794, + ')', 3594, + ';', 3555, + 'a', 4776, + 'e', 4666, + 'o', 4667, + 'x', 4791, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(1768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 1846: - if (eof) ADVANCE(1848); + case 1770: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5592, - '(', 3895, - ')', 3689, - ';', 3650, - 'e', 4780, - 'o', 4782, - '|', 3651, - '}', 3804, - '\t', 3649, - ' ', 3649, + '\n', 3552, + '\r', 1, + '#', 5474, + '(', 3794, + ')', 3594, + ';', 3555, + 'e', 4666, + 'o', 4668, + '|', 3556, + '}', 3703, + '\t', 3554, + ' ', 3554, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 1847: - if (eof) ADVANCE(1848); + case 1771: + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '#', 5592, - ')', 3689, - '-', 3729, - ';', 3650, - 'a', 4935, - '}', 3804, + '\n', 3552, + '\r', 1, + '#', 5474, + ')', 3594, + '-', 3633, + ';', 3555, + 'a', 4820, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == ' ') SKIP(1765); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 1848: + case 1772: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1849: + case 1773: ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); - case 1850: + case 1774: ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); - case 1851: + case 1775: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1850); - if (lookahead == '\r') ADVANCE(1852); - if (lookahead == '#') ADVANCE(5587); + if (lookahead == '\n') ADVANCE(1774); + if (lookahead == '\r') ADVANCE(1776); + if (lookahead == '#') ADVANCE(5469); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1851); - if (lookahead != 0) ADVANCE(1852); + lookahead == ' ') ADVANCE(1775); + if (lookahead != 0) ADVANCE(1776); END_STATE(); - case 1852: + case 1776: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1850); - if (lookahead == '\r') ADVANCE(1852); - if (lookahead != 0) ADVANCE(1852); + if (lookahead == '\n') ADVANCE(1774); + if (lookahead == '\r') ADVANCE(1776); + if (lookahead != 0) ADVANCE(1776); END_STATE(); - case 1853: + case 1777: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == '-') ADVANCE(3104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == '-') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); END_STATE(); - case 1854: + case 1778: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == '-') ADVANCE(5451); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == '-') ADVANCE(5333); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); END_STATE(); - case 1855: + case 1779: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3108); + if (lookahead == '-') ADVANCE(3032); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3114); + lookahead == '@') ADVANCE(3039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); END_STATE(); - case 1856: + case 1780: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3108); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == '-') ADVANCE(3032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 1857: + case 1781: ACCEPT_TOKEN(anon_sym_alias); END_STATE(); - case 1858: + case 1782: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2965); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5443); + if (lookahead == ',') ADVANCE(2889); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5325); END_STATE(); - case 1859: + case 1783: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if (lookahead == ',') ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); END_STATE(); - case 1860: + case 1784: ACCEPT_TOKEN(anon_sym_alias); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2965); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2964); + lookahead == '@') ADVANCE(2889); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2888); END_STATE(); - case 1861: + case 1785: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); END_STATE(); - case 1862: + case 1786: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1863: + case 1787: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3879); - if (lookahead == '~') ADVANCE(3890); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '~') ADVANCE(3789); END_STATE(); - case 1864: + case 1788: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 1865: + case 1789: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == '-') ADVANCE(2977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); END_STATE(); - case 1866: + case 1790: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == '-') ADVANCE(5421); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == '-') ADVANCE(5303); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5306); END_STATE(); - case 1867: + case 1791: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2981); + if (lookahead == '-') ADVANCE(2905); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); + lookahead == '@') ADVANCE(2912); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2911); END_STATE(); - case 1868: + case 1792: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == '-') ADVANCE(2905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 1869: + case 1793: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); + if (lookahead == ',') ADVANCE(2912); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5306); END_STATE(); - case 1870: + case 1794: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); END_STATE(); - case 1871: + case 1795: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 1872: + case 1796: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5425); + if (lookahead == ',') ADVANCE(2915); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5307); END_STATE(); - case 1873: + case 1797: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); + if (lookahead == ',') ADVANCE(2915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); - case 1874: + case 1798: ACCEPT_TOKEN(anon_sym_mut); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); + lookahead == '@') ADVANCE(2915); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2914); END_STATE(); - case 1875: + case 1799: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); END_STATE(); - case 1876: + case 1800: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 1877: + case 1801: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5446); + if (lookahead == ',') ADVANCE(2918); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); END_STATE(); - case 1878: + case 1802: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); + if (lookahead == ',') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); END_STATE(); - case 1879: + case 1803: ACCEPT_TOKEN(anon_sym_const); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2994); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); + lookahead == '@') ADVANCE(2918); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2917); END_STATE(); - case 1880: + case 1804: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); END_STATE(); - case 1881: + case 1805: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 1882: + case 1806: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 1883: + case 1807: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 1884: + case 1808: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 1885: + case 1809: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); - case 1886: + case 1810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(556); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(484); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1887: + case 1811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1888: + case 1812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(561); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(489); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1889: + case 1813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(489); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1890: + case 1814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(676); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(604); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1891: + case 1815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1892: + case 1816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(554); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(482); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1893: + case 1817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1894: + case 1818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(704); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(632); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1895: + case 1819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1896: + case 1820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(684); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(612); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1897: + case 1821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1898: + case 1822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(705); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(633); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1899: + case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1900: + case 1824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(681); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(609); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1901: + case 1825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1902: + case 1826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(936); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(864); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1903: + case 1827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1904: + case 1828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(586); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(514); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1905: + case 1829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1906: + case 1830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(906); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(834); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1907: + case 1831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1908: + case 1832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(717); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(645); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1909: + case 1833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1910: + case 1834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(675); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(603); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1911: + case 1835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(603); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1912: + case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1143); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(1071); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1913: + case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1914: + case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(581); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(509); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1915: + case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(509); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1916: + case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(772); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(700); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1917: + case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1918: + case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1324); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(1249); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1919: + case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1920: + case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(567); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(495); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1921: + case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(495); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1922: + case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(690); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(618); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1923: + case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1924: + case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(764); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(692); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1925: + case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1926: + case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1575); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(1499); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1927: + case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(1499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1928: + case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(733); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(661); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1929: + case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1930: + case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1353); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(1278); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1931: + case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1353); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(1278); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1932: + case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(916); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(844); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1933: + case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1934: + case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(569); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(497); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1935: + case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(497); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1936: + case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(555); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(483); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1937: + case 1861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(483); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1938: + case 1862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(756); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(684); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1939: + case 1863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1940: + case 1864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(582); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(510); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1941: + case 1865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1942: + case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(698); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(626); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1943: + case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1944: + case 1868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(854); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(782); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1945: + case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1946: + case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(693); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(621); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1947: + case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1948: + case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(559); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(487); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1949: + case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(487); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1950: + case 1874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(572); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(500); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1951: + case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1952: + case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(682); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(610); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1953: + case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1954: + case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(742); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(670); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1955: + case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1956: + case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(617); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(545); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1957: + case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1958: + case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(841); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(769); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1959: + case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1960: + case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(769); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(697); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1961: + case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1962: + case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(994); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(922); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1963: + case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1964: + case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1618); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(1542); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1965: + case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1966: + case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1030); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(958); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1967: + case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1968: + case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(737); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(665); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1969: + case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1970: + case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(741); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == ' ') ADVANCE(669); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); - case 1971: + case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ' ') ADVANCE(669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); - case 1972: + case 1896: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(919); + if (lookahead == '=') ADVANCE(4114); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + END_STATE(); + case 1897: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ' ') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + END_STATE(); + case 1898: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '{') ADVANCE(4089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1899: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '{') ADVANCE(4089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + END_STATE(); + case 1900: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2672); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'l') ADVANCE(2752); + if (lookahead == 'n') ADVANCE(2503); + if (lookahead == 'r') ADVANCE(2710); + if (lookahead == 'x') ADVANCE(2706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + END_STATE(); + case 1901: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2528); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(2775); + if (lookahead == 'v') ADVANCE(2536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + END_STATE(); + case 1902: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2674); + if (lookahead == '>') ADVANCE(4243); + if (lookahead == 'o') ADVANCE(2713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + END_STATE(); + case 1903: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + '+', 2272, + '=', 4114, + '>', 1573, + 'a', 2117, + 'l', 2336, + 'n', 2120, + 'r', 2307, + 'x', 2300, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + END_STATE(); + case 1904: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2279); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1576); + if (lookahead == 'o') ADVANCE(2315); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + END_STATE(); + case 1905: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2180); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'u') ADVANCE(2354); + if (lookahead == 'v') ADVANCE(2182); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + END_STATE(); + case 1906: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(2545); + if (lookahead == '>') ADVANCE(4247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + END_STATE(); + case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(991); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == '+') ADVANCE(2172); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1578); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + END_STATE(); + case 1908: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '.') ADVANCE(1910); + if (lookahead == '_') ADVANCE(1924); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1909: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '.') ADVANCE(1910); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1910: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '.') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1911: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '.') ADVANCE(3832); + if (lookahead == '_') ADVANCE(1924); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1912: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '.') ADVANCE(1923); + if (lookahead == '_') ADVANCE(1912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1913: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '.') ADVANCE(1928); + if (lookahead == '_') ADVANCE(1913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1914: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 2855, + 'I', 2036, + '_', 1934, + 'i', 2036, + 'l', 2017, + 'r', 2006, + 'x', 1999, + '+', 1934, + '-', 1934, + 'B', 4016, + 'b', 4016, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1915: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 2855, + 'I', 2036, + '_', 1934, + 'i', 1942, + '+', 1934, + '-', 1934, + 'B', 4016, + 'b', 4016, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1916: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 2855, + 'I', 2036, + 'a', 1980, + 'i', 1992, + 'o', 1947, + 's', 4023, + 'u', 2022, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1917: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + ADVANCE_MAP( + ',', 2855, + 'I', 2036, + 'i', 2036, + 'l', 2017, + 'r', 2006, + 'x', 1999, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1918: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'I') ADVANCE(2036); + if (lookahead == 'i') ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2028); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1919: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'I') ADVANCE(2036); + if (lookahead == 'i') ADVANCE(2036); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1920: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'I') ADVANCE(2036); + if (lookahead == 'i') ADVANCE(1942); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1921: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'N') ADVANCE(2037); + if (lookahead == 'f') ADVANCE(3688); + if (lookahead == 'n') ADVANCE(3662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1922: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1922); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1923: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1923); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1924: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1924); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1925: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1926); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1926); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1926: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1926); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1927: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1928: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1928); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1929: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1930: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1931); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1931: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1932: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1934); + if (lookahead == 'l') ADVANCE(2017); + if (lookahead == 'r') ADVANCE(2006); + if (lookahead == 'x') ADVANCE(1999); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1933: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1934); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1934: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '_') ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1935: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2020); + if (lookahead == 'o') ADVANCE(1989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1936: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(1988); + if (lookahead == 'o') ADVANCE(2001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1937: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(1980); + if (lookahead == 'o') ADVANCE(1947); + if (lookahead == 'u') ADVANCE(2022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1938: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(1979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1939: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1940: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1941: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2034); + if (lookahead == 'e') ADVANCE(1967); + if (lookahead == 'o') ADVANCE(3683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1942: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1943: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1944: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'c') ADVANCE(1969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1945: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'c') ADVANCE(1970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1946: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'c') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1947: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1948: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'd') ADVANCE(1953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1949: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1967); + if (lookahead == 'o') ADVANCE(3683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1950: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1951: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1952: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1953: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1954: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1955: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1956: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1957: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1958: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1959: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2021); + if (lookahead == 'o') ADVANCE(1995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1960: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1961: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1962: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1943); + if (lookahead == 'o') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1963: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1964: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1965: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1966: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1967: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'f') ADVANCE(3567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1968: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'g') ADVANCE(1977); + if (lookahead == 't') ADVANCE(2029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1969: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'h') ADVANCE(3722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1970: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'h') ADVANCE(3699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1971: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'h') ADVANCE(1978); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + END_STATE(); + case 1972: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'h') ADVANCE(1978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'i') ADVANCE(1948); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(4038); - if (lookahead == '(') ADVANCE(3931); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '{') ADVANCE(4193); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'i') ADVANCE(1948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(4038); - if (lookahead == '(') ADVANCE(3931); - if (lookahead == '{') ADVANCE(4193); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'i') ADVANCE(1940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2748); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'l') ADVANCE(2828); - if (lookahead == 'n') ADVANCE(2579); - if (lookahead == 'r') ADVANCE(2786); - if (lookahead == 'x') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'i') ADVANCE(1993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2604); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'r') ADVANCE(3871); - if (lookahead == 'u') ADVANCE(2851); - if (lookahead == 'v') ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2750); - if (lookahead == '>') ADVANCE(4335); - if (lookahead == 'o') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'i') ADVANCE(1985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '+', 2348, - '=', 4206, - '>', 1649, - 'a', 2193, - 'l', 2412, - 'n', 2196, - 'r', 2383, - 'x', 2376, - ); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'k') ADVANCE(3650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2355); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(2391); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'k') ADVANCE(1954); + if (lookahead == 't') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2256); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1650); - if (lookahead == 'u') ADVANCE(2430); - if (lookahead == 'v') ADVANCE(2258); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1975); + if (lookahead == 's') ADVANCE(3754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2621); - if (lookahead == '>') ADVANCE(4339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2248); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1654); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '.') ADVANCE(1986); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '.') ADVANCE(1986); - if (lookahead == '_') ADVANCE(2005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '.') ADVANCE(1974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '.') ADVANCE(3933); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2017); + if (lookahead == 'r') ADVANCE(2006); + if (lookahead == 'x') ADVANCE(1999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '.') ADVANCE(1999); - if (lookahead == '_') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '.') ADVANCE(2004); - if (lookahead == '_') ADVANCE(1989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2931, - 'I', 2112, - '_', 2010, - 'i', 2112, - 'l', 2093, - 'r', 2082, - 'x', 2075, - '+', 2010, - '-', 2010, - 'B', 4120, - 'b', 4120, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'n') ADVANCE(3575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2931, - 'I', 2112, - '_', 2010, - 'i', 2018, - '+', 2010, - '-', 2010, - 'B', 4120, - 'b', 4120, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'n') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2931, - 'I', 2112, - 'a', 2056, - 'i', 2068, - 'o', 2023, - 's', 4127, - 'u', 2098, - 'B', 4120, - 'b', 4120, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2931, - 'I', 2112, - 'i', 2112, - 'l', 2093, - 'r', 2082, - 'x', 2075, - 'B', 4120, - 'b', 4120, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'I') ADVANCE(2112); - if (lookahead == 'i') ADVANCE(2112); - if (lookahead == 'r') ADVANCE(2104); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'I') ADVANCE(2112); - if (lookahead == 'i') ADVANCE(2112); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'o') ADVANCE(1998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'I') ADVANCE(2112); - if (lookahead == 'i') ADVANCE(2018); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'N') ADVANCE(2113); - if (lookahead == 'f') ADVANCE(3789); - if (lookahead == 'n') ADVANCE(3761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(1998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'p') ADVANCE(3669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(1999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'p') ADVANCE(1997); + if (lookahead == 't') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2002); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2003); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2004); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2007); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2007); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2007); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2010); - if (lookahead == 'l') ADVANCE(2093); - if (lookahead == 'r') ADVANCE(2082); - if (lookahead == 'x') ADVANCE(2075); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2010); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(2010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '_') ADVANCE(2010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2096); - if (lookahead == 'o') ADVANCE(2065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(1783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2064); - if (lookahead == 'o') ADVANCE(2077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(1983); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2056); - if (lookahead == 'o') ADVANCE(2023); - if (lookahead == 'u') ADVANCE(2098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(4024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(2023); + if (lookahead == 't') ADVANCE(1976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'a') ADVANCE(2110); - if (lookahead == 'e') ADVANCE(2043); - if (lookahead == 'o') ADVANCE(3784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(2025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'c') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 's') ADVANCE(1963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'c') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 't') ADVANCE(1944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'c') ADVANCE(2046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 't') ADVANCE(1789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'c') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 't') ADVANCE(1797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'd') ADVANCE(2107); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 't') ADVANCE(1802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'd') ADVANCE(2029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 't') ADVANCE(1777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2043); - if (lookahead == 'o') ADVANCE(3784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 't') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'u') ADVANCE(1983); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'u') ADVANCE(1961); + if (lookahead == 'y') ADVANCE(3717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'u') ADVANCE(1958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'u') ADVANCE(1986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'v') ADVANCE(1964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'y') ADVANCE(3749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(3753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2097); - if (lookahead == 'o') ADVANCE(2071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2121); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2019); - if (lookahead == 'o') ADVANCE(2103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'e') ADVANCE(2079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'f') ADVANCE(3662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'g') ADVANCE(2053); - if (lookahead == 't') ADVANCE(2105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(3049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'h') ADVANCE(3823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(3043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3041); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'h') ADVANCE(3800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ',') ADVANCE(3046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'h') ADVANCE(2054); - if (lookahead == 'k') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'h') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'i') ADVANCE(2024); - if (lookahead == 'r') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'i') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'i') ADVANCE(2016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2906); + if (lookahead == '=') ADVANCE(4114); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2912); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2911); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'i') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'i') ADVANCE(2094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2924); + if (lookahead == '=') ADVANCE(4114); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2930); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2929); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'i') ADVANCE(2061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'k') ADVANCE(3749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(3033); + if (lookahead == '=') ADVANCE(4114); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3039); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3038); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'k') ADVANCE(2030); - if (lookahead == 't') ADVANCE(2021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2051); - if (lookahead == 's') ADVANCE(3855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2936); + if (lookahead == '=') ADVANCE(4114); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2941); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '-') ADVANCE(2827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(2441); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(3708); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2093); - if (lookahead == 'r') ADVANCE(2082); - if (lookahead == 'x') ADVANCE(2075); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'l') ADVANCE(2095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(3831); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'n') ADVANCE(2092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'n') ADVANCE(3670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'n') ADVANCE(3827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'n') ADVANCE(4127); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '.') ADVANCE(2446); + if (lookahead == '_') ADVANCE(2068); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'n') ADVANCE(2106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == ':') ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'o') ADVANCE(2103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1575); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'o') ADVANCE(2074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1577); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'o') ADVANCE(2078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1579); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'o') ADVANCE(2085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '>') ADVANCE(1580); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'p') ADVANCE(3770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'N') ADVANCE(2398); + if (lookahead == 'f') ADVANCE(3689); + if (lookahead == 'n') ADVANCE(2289); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'p') ADVANCE(2073); - if (lookahead == 't') ADVANCE(2041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'N') ADVANCE(2398); + if (lookahead == 'f') ADVANCE(3689); + if (lookahead == 'n') ADVANCE(3664); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2104); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'N') ADVANCE(2398); + if (lookahead == 'f') ADVANCE(2405); + if (lookahead == 'n') ADVANCE(2289); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(3757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == '_') ADVANCE(2077); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(3700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2302); + if (lookahead == 'o') ADVANCE(2250); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(3838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2302); + if (lookahead == 'o') ADVANCE(2251); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2302); + if (lookahead == 'o') ADVANCE(2252); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2117); + if (lookahead == 'l') ADVANCE(2336); + if (lookahead == 'n') ADVANCE(2120); + if (lookahead == 'r') ADVANCE(2312); + if (lookahead == 'x') ADVANCE(2288); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2117); + if (lookahead == 'l') ADVANCE(2336); + if (lookahead == 'n') ADVANCE(2120); + if (lookahead == 'r') ADVANCE(2329); + if (lookahead == 'x') ADVANCE(2300); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2117); + if (lookahead == 'l') ADVANCE(2341); + if (lookahead == 'n') ADVANCE(2120); + if (lookahead == 'r') ADVANCE(2312); + if (lookahead == 'x') ADVANCE(2288); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2246); + if (lookahead == 'o') ADVANCE(2304); + if (lookahead == 'r') ADVANCE(2274); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2246); + if (lookahead == 'o') ADVANCE(2309); + if (lookahead == 'r') ADVANCE(2274); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'r') ADVANCE(2060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2224); + if (lookahead == 'e') ADVANCE(2355); + if (lookahead == 'o') ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2349); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(1859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2224); + if (lookahead == 'e') ADVANCE(2355); + if (lookahead == 'o') ADVANCE(2137); + if (lookahead == 'u') ADVANCE(2361); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(4127); - if (lookahead == 'u') ADVANCE(2059); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2260); + if (lookahead == 'e') ADVANCE(2186); + if (lookahead == 'o') ADVANCE(2249); + if (lookahead == 'u') ADVANCE(2339); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2260); + if (lookahead == 'e') ADVANCE(2193); + if (lookahead == 'o') ADVANCE(2249); + if (lookahead == 'u') ADVANCE(2339); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(4128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2260); + if (lookahead == 'e') ADVANCE(2192); + if (lookahead == 'o') ADVANCE(2249); + if (lookahead == 'u') ADVANCE(2339); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2228); + if (lookahead == 'e') ADVANCE(2323); + if (lookahead == 'o') ADVANCE(1814); + if (lookahead == 'r') ADVANCE(2377); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(2099); - if (lookahead == 't') ADVANCE(2052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2228); + if (lookahead == 'e') ADVANCE(2323); + if (lookahead == 'o') ADVANCE(1814); + if (lookahead == 'r') ADVANCE(2378); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(2028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2223); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(2101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2393); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 's') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2227); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 't') ADVANCE(2020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2345); + if (lookahead == 'e') ADVANCE(2244); + if (lookahead == 'i') ADVANCE(2131); + if (lookahead == 't') ADVANCE(2367); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 't') ADVANCE(1865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2345); + if (lookahead == 'e') ADVANCE(2244); + if (lookahead == 'i') ADVANCE(2133); + if (lookahead == 't') ADVANCE(2367); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 't') ADVANCE(1873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2394); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 't') ADVANCE(1878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2332); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2337); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 't') ADVANCE(2042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2369); + if (lookahead == 'l') ADVANCE(2374); + if (lookahead == 'o') ADVANCE(2232); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'u') ADVANCE(2059); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2330); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'u') ADVANCE(2081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2362); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'u') ADVANCE(2037); - if (lookahead == 'y') ADVANCE(3818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(1880); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'u') ADVANCE(2084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2226); + if (lookahead == 'e') ADVANCE(2355); + if (lookahead == 'o') ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2349); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'u') ADVANCE(2034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2262); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'u') ADVANCE(2062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2360); + if (lookahead == 'e') ADVANCE(2115); + if (lookahead == 'o') ADVANCE(3684); + if (lookahead == 'r') ADVANCE(2271); + if (lookahead == 't') ADVANCE(1810); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'v') ADVANCE(2040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2360); + if (lookahead == 'e') ADVANCE(2116); + if (lookahead == 'o') ADVANCE(3684); + if (lookahead == 'r') ADVANCE(2271); + if (lookahead == 't') ADVANCE(1810); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'y') ADVANCE(3850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2360); + if (lookahead == 'e') ADVANCE(2116); + if (lookahead == 'o') ADVANCE(2404); + if (lookahead == 'r') ADVANCE(2271); + if (lookahead == 't') ADVANCE(1810); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'y') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2130); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2372); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2303); + if (lookahead == 'o') ADVANCE(2250); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'a') ADVANCE(2225); + if (lookahead == 'e') ADVANCE(2355); + if (lookahead == 'o') ADVANCE(2137); + if (lookahead == 'u') ADVANCE(2361); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'b') ADVANCE(2218); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'b') ADVANCE(2375); + if (lookahead == 'c') ADVANCE(2277); + if (lookahead == 'f') ADVANCE(3568); + if (lookahead == 't') ADVANCE(2154); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'b') ADVANCE(2375); + if (lookahead == 'c') ADVANCE(2277); + if (lookahead == 'f') ADVANCE(2406); + if (lookahead == 't') ADVANCE(2154); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2200); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2198); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2119); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2195); + if (lookahead == 'h') ADVANCE(1844); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3123); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2277); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3117); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2196); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3120); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2147); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2157); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2203); + if (lookahead == 'h') ADVANCE(1844); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + ADVANCE_MAP( + '=', 4114, + 'c', 2276, + 'e', 2301, + 'k', 2220, + 'o', 2376, + 'p', 2233, + 't', 2280, + 'y', 2335, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + ADVANCE_MAP( + '=', 4114, + 'c', 2276, + 'e', 2301, + 'k', 2220, + 'o', 2384, + 'p', 2233, + 't', 2280, + 'y', 2335, + ); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2982); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'c') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2988); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2987); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2385); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3000); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2111); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3005); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2103); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3109); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2141); + if (lookahead == 's') ADVANCE(2370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3114); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2210); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3012); - if (lookahead == '=') ADVANCE(4206); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2152); + if (lookahead == 's') ADVANCE(2370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3017); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2238); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2176); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2517); - if (lookahead == '_') ADVANCE(2136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2287); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'd') ADVANCE(2387); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3809); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2392); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3586); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3932); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2391); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2139); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3742); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2139); - if (lookahead == '_') ADVANCE(2523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3919); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3927); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2522); - if (lookahead == '_') ADVANCE(2144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3765); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3679); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1651); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3581); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1653); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3731); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1655); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3655); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '>') ADVANCE(1656); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3695); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'N') ADVANCE(2474); - if (lookahead == 'f') ADVANCE(3790); - if (lookahead == 'n') ADVANCE(2365); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(3675); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'N') ADVANCE(2474); - if (lookahead == 'f') ADVANCE(3790); - if (lookahead == 'n') ADVANCE(3763); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2093); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'N') ADVANCE(2474); - if (lookahead == 'f') ADVANCE(2481); - if (lookahead == 'n') ADVANCE(2365); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2053); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == '_') ADVANCE(2153); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2410); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2378); - if (lookahead == 'o') ADVANCE(2326); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2127); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2378); - if (lookahead == 'o') ADVANCE(2327); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2412); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2378); - if (lookahead == 'o') ADVANCE(2328); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2325); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2193); - if (lookahead == 'l') ADVANCE(2412); - if (lookahead == 'n') ADVANCE(2196); - if (lookahead == 'r') ADVANCE(2388); - if (lookahead == 'x') ADVANCE(2364); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2057); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2193); - if (lookahead == 'l') ADVANCE(2412); - if (lookahead == 'n') ADVANCE(2196); - if (lookahead == 'r') ADVANCE(2405); - if (lookahead == 'x') ADVANCE(2376); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2348); + if (lookahead == 'o') ADVANCE(2275); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2193); - if (lookahead == 'l') ADVANCE(2417); - if (lookahead == 'n') ADVANCE(2196); - if (lookahead == 'r') ADVANCE(2388); - if (lookahead == 'x') ADVANCE(2364); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2308); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2322); - if (lookahead == 'o') ADVANCE(2380); - if (lookahead == 'r') ADVANCE(2350); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2409); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2322); - if (lookahead == 'o') ADVANCE(2385); - if (lookahead == 'r') ADVANCE(2350); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2317); + if (lookahead == 'i') ADVANCE(2239); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2300); - if (lookahead == 'e') ADVANCE(2431); - if (lookahead == 'o') ADVANCE(2204); - if (lookahead == 'u') ADVANCE(2425); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2317); + if (lookahead == 'i') ADVANCE(2242); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2300); - if (lookahead == 'e') ADVANCE(2431); - if (lookahead == 'o') ADVANCE(2213); - if (lookahead == 'u') ADVANCE(2437); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1830); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2336); - if (lookahead == 'e') ADVANCE(2262); - if (lookahead == 'o') ADVANCE(2325); - if (lookahead == 'u') ADVANCE(2415); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2311); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2336); - if (lookahead == 'e') ADVANCE(2269); - if (lookahead == 'o') ADVANCE(2325); - if (lookahead == 'u') ADVANCE(2415); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2095); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2336); - if (lookahead == 'e') ADVANCE(2268); - if (lookahead == 'o') ADVANCE(2325); - if (lookahead == 'u') ADVANCE(2415); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2419); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2304); - if (lookahead == 'e') ADVANCE(2399); - if (lookahead == 'o') ADVANCE(1890); - if (lookahead == 'r') ADVANCE(2453); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2421); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2304); - if (lookahead == 'e') ADVANCE(2399); - if (lookahead == 'o') ADVANCE(1890); - if (lookahead == 'r') ADVANCE(2454); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2353); + if (lookahead == 'o') ADVANCE(2278); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2299); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2306); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2469); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2314); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2303); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2318); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2421); + if (lookahead == '=') ADVANCE(4114); if (lookahead == 'e') ADVANCE(2320); - if (lookahead == 'i') ADVANCE(2207); - if (lookahead == 't') ADVANCE(2443); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2421); - if (lookahead == 'e') ADVANCE(2320); - if (lookahead == 'i') ADVANCE(2209); - if (lookahead == 't') ADVANCE(2443); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1850); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2470); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2424); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2408); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1864); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2413); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1870); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2445); - if (lookahead == 'l') ADVANCE(2450); - if (lookahead == 'o') ADVANCE(2308); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1892); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2406); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1896); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2438); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(1882); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(1956); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2302); - if (lookahead == 'e') ADVANCE(2431); - if (lookahead == 'o') ADVANCE(2204); - if (lookahead == 'u') ADVANCE(2425); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2342); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2338); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'e') ADVANCE(2327); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2436); - if (lookahead == 'e') ADVANCE(2191); - if (lookahead == 'o') ADVANCE(3785); - if (lookahead == 'r') ADVANCE(2347); - if (lookahead == 't') ADVANCE(1886); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'f') ADVANCE(2217); + if (lookahead == 's') ADVANCE(2351); + if (lookahead == 't') ADVANCE(2208); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2436); - if (lookahead == 'e') ADVANCE(2192); - if (lookahead == 'o') ADVANCE(3785); - if (lookahead == 'r') ADVANCE(2347); - if (lookahead == 't') ADVANCE(1886); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'f') ADVANCE(2217); + if (lookahead == 's') ADVANCE(2363); + if (lookahead == 't') ADVANCE(2208); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2436); - if (lookahead == 'e') ADVANCE(2192); - if (lookahead == 'o') ADVANCE(2480); - if (lookahead == 'r') ADVANCE(2347); - if (lookahead == 't') ADVANCE(1886); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'f') ADVANCE(2217); + if (lookahead == 's') ADVANCE(2363); + if (lookahead == 't') ADVANCE(2221); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2206); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(2212); + if (lookahead == 't') ADVANCE(2379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2448); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(2285); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2379); - if (lookahead == 'o') ADVANCE(2326); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(2215); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'a') ADVANCE(2301); - if (lookahead == 'e') ADVANCE(2431); - if (lookahead == 'o') ADVANCE(2213); - if (lookahead == 'u') ADVANCE(2437); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(1886); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'b') ADVANCE(2294); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(1868); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'b') ADVANCE(2451); - if (lookahead == 'c') ADVANCE(2353); - if (lookahead == 'f') ADVANCE(3663); - if (lookahead == 't') ADVANCE(2230); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(2344); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'b') ADVANCE(2451); - if (lookahead == 'c') ADVANCE(2353); - if (lookahead == 'f') ADVANCE(2482); - if (lookahead == 't') ADVANCE(2230); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(2222); + if (lookahead == 't') ADVANCE(2379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2276); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'g') ADVANCE(2222); + if (lookahead == 't') ADVANCE(2386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2274); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(2161); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2271); - if (lookahead == 'h') ADVANCE(1920); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(3700); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2353); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(3723); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2272); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(1812); + if (lookahead == 'i') ADVANCE(2357); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2223); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(2415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2233); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(2219); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2279); - if (lookahead == 'h') ADVANCE(1920); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(1888); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4206, - 'c', 2352, - 'e', 2377, - 'k', 2296, - 'o', 2452, - 'p', 2309, - 't', 2356, - 'y', 2411, - ); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(1836); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4206, - 'c', 2352, - 'e', 2377, - 'k', 2296, - 'o', 2460, - 'p', 2309, - 't', 2356, - 'y', 2411, - ); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(1846); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'c') ADVANCE(2441); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(2418); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2461); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'h') ADVANCE(2162); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2187); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2366); + if (lookahead == 'r') ADVANCE(2151); + if (lookahead == 'y') ADVANCE(2359); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2179); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2366); + if (lookahead == 'r') ADVANCE(2165); + if (lookahead == 'y') ADVANCE(2359); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2217); - if (lookahead == 's') ADVANCE(2446); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2099); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2286); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2268); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2228); - if (lookahead == 's') ADVANCE(2446); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2140); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2314); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2261); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2252); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2270); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2363); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2346); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'd') ADVANCE(2463); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(1826); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2468); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3681); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2267); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2467); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2364); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3843); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2190); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(4023); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2263); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(4031); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2242); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3866); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2297); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3780); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2269); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3676); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'i') ADVANCE(2347); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3832); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'k') ADVANCE(3651); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3754); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'k') ADVANCE(2155); + if (lookahead == 't') ADVANCE(2119); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3796); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'k') ADVANCE(2155); + if (lookahead == 't') ADVANCE(2124); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(3776); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'k') ADVANCE(2150); + if (lookahead == 't') ADVANCE(2119); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2169); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'k') ADVANCE(2414); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2129); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'k') ADVANCE(2173); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2486); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(3911); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2203); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2207); + if (lookahead == 'n') ADVANCE(2334); + if (lookahead == 's') ADVANCE(3755); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2488); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2207); + if (lookahead == 'n') ADVANCE(2334); + if (lookahead == 's') ADVANCE(2403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2401); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2102); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2133); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2216); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2424); - if (lookahead == 'o') ADVANCE(2351); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2229); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2384); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(1824); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2485); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2094); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2393); - if (lookahead == 'i') ADVANCE(2315); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2098); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2393); - if (lookahead == 'i') ADVANCE(2318); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2211); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1906); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2145); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2387); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2146); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2171); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(1848); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2495); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2166); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2497); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2167); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2429); - if (lookahead == 'o') ADVANCE(2354); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2295); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2382); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2214); + if (lookahead == 'n') ADVANCE(2334); + if (lookahead == 's') ADVANCE(2403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2390); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2340); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2394); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2283); + if (lookahead == 'o') ADVANCE(2316); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2396); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2283); + if (lookahead == 'o') ADVANCE(2319); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1926); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(2241); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2500); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(2254); + if (lookahead == 'n') ADVANCE(2183); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1940); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(2254); + if (lookahead == 'n') ADVANCE(2184); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1946); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(2254); + if (lookahead == 'n') ADVANCE(2185); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1968); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(2952); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2957); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2956); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1972); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(2106); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(1958); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(1834); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2147); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(1854); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2418); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'm') ADVANCE(1876); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'e') ADVANCE(2403); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(3576); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'f') ADVANCE(2293); - if (lookahead == 's') ADVANCE(2427); - if (lookahead == 't') ADVANCE(2284); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(3727); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'f') ADVANCE(2293); - if (lookahead == 's') ADVANCE(2439); - if (lookahead == 't') ADVANCE(2284); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2136); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'f') ADVANCE(2293); - if (lookahead == 's') ADVANCE(2439); - if (lookahead == 't') ADVANCE(2297); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2191); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(2288); - if (lookahead == 't') ADVANCE(2455); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2134); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(2361); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2132); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(2291); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(1962); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(1842); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(1944); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(2420); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(1872); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(2298); - if (lookahead == 't') ADVANCE(2455); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'g') ADVANCE(2298); - if (lookahead == 't') ADVANCE(2462); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2382); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(2237); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'n') ADVANCE(2179); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(3801); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2294); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(3824); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2070); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(1888); - if (lookahead == 'i') ADVANCE(2433); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2265); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(2491); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2255); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(2295); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2290); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(1964); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2299); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(1912); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(1922); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2293); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(2494); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'h') ADVANCE(2238); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2321); + if (lookahead == 'r') ADVANCE(1820); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2442); - if (lookahead == 'r') ADVANCE(2227); - if (lookahead == 'y') ADVANCE(2435); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2350); + if (lookahead == 'u') ADVANCE(2234); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2400); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2442); - if (lookahead == 'r') ADVANCE(2241); - if (lookahead == 'y') ADVANCE(2435); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2305); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2175); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2331); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2344); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2315); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2216); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(1860); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2337); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2322); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2346); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'o') ADVANCE(2257); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2422); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(2247); + if (lookahead == 't') ADVANCE(2164); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(1902); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(3011); + if (lookahead == 't') ADVANCE(3007); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3013); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3023); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2176); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(3670); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2343); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(2129); + if (lookahead == 'r') ADVANCE(2235); + if (lookahead == 's') ADVANCE(2139); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2440); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(2129); + if (lookahead == 'r') ADVANCE(2235); + if (lookahead == 's') ADVANCE(2160); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2266); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(2411); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2339); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(1832); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2318); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(1838); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2373); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(1840); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2345); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(1850); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'i') ADVANCE(2423); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(1878); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'k') ADVANCE(3750); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(2175); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'k') ADVANCE(2231); - if (lookahead == 't') ADVANCE(2195); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'p') ADVANCE(2248); + if (lookahead == 't') ADVANCE(2170); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'k') ADVANCE(2231); - if (lookahead == 't') ADVANCE(2200); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'q') ADVANCE(1818); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'k') ADVANCE(2226); - if (lookahead == 't') ADVANCE(2195); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2187); + if (lookahead == 't') ADVANCE(2118); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'k') ADVANCE(2490); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2187); + if (lookahead == 't') ADVANCE(2121); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'k') ADVANCE(2249); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(3659); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(4015); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(3606); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2283); - if (lookahead == 'n') ADVANCE(2410); - if (lookahead == 's') ADVANCE(3856); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(3738); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2283); - if (lookahead == 'n') ADVANCE(2410); - if (lookahead == 's') ADVANCE(2479); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(1904); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2178); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2395); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2292); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2253); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2305); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(1900); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2258); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2170); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2282); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2174); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2287); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2264); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2221); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2417); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2222); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2352); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(1924); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2144); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2242); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2243); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2356); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2371); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2328); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2290); - if (lookahead == 'n') ADVANCE(2410); - if (lookahead == 's') ADVANCE(2479); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(1852); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2416); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2359); - if (lookahead == 'o') ADVANCE(2392); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2256); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2359); - if (lookahead == 'o') ADVANCE(2395); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2123); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'l') ADVANCE(2317); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2236); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(2330); - if (lookahead == 'n') ADVANCE(2259); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2266); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(2330); - if (lookahead == 'n') ADVANCE(2260); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2237); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(2330); - if (lookahead == 'n') ADVANCE(2261); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2073); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(3028); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2284); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3032); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(2182); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2343); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(1910); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'r') ADVANCE(2178); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(1930); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(1784); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'm') ADVANCE(1952); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2273); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(3671); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2213); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(3828); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(1822); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2212); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2153); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2267); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2413); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2210); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(1828); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2208); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2358); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2496); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2143); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(1918); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2498); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(1858); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(1948); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(1874); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2456); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(1884); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2458); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2201); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'n') ADVANCE(2255); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2370); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 's') ADVANCE(2373); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2146); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1791); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2341); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1798); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2331); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2366); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1803); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2375); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1779); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2211); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2051); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2369); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1907); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2457); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2110); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2397); - if (lookahead == 'r') ADVANCE(1896); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2055); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2426); - if (lookahead == 'u') ADVANCE(2310); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2476); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1816); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2381); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2388); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2407); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2181); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2391); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2163); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(1936); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2398); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2104); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'o') ADVANCE(2333); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2416); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(2323); - if (lookahead == 't') ADVANCE(2240); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1866); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(3087); - if (lookahead == 't') ADVANCE(3083); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3089); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(1894); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(3771); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2338); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(2205); - if (lookahead == 'r') ADVANCE(2311); - if (lookahead == 's') ADVANCE(2215); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2296); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(2205); - if (lookahead == 'r') ADVANCE(2311); - if (lookahead == 's') ADVANCE(2236); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2072); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(2487); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2202); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(1908); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2286); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(1914); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2169); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(1916); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2177); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(1926); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 't') ADVANCE(2171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(1954); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2188); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(2251); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2189); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'p') ADVANCE(2324); - if (lookahead == 't') ADVANCE(2246); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2310); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'q') ADVANCE(1894); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2142); + if (lookahead == 'y') ADVANCE(3718); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2263); - if (lookahead == 't') ADVANCE(2194); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2142); + if (lookahead == 'y') ADVANCE(2408); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2263); - if (lookahead == 't') ADVANCE(2197); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2313); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(3758); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2148); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(3701); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(3839); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2174); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(1980); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2159); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2471); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2324); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2329); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2240); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2198); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2326); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2334); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2358); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'u') ADVANCE(2298); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2335); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'v') ADVANCE(2156); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2340); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'v') ADVANCE(2182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2493); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'w') ADVANCE(1856); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2428); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'y') ADVANCE(2114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2220); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'y') ADVANCE(3750); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2501); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'y') ADVANCE(2423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2432); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'y') ADVANCE(1862); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2404); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'y') ADVANCE(1890); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(1928); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2400); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2472); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3991); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2332); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2398); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2199); + if (lookahead == '=') ADVANCE(4114); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4009); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2312); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2342); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2855); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2313); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2996); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2995); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2149); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2969); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2968); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2360); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2972); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2971); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2419); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2885); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'r') ADVANCE(2254); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2915); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2914); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(1860); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2978); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2977); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2349); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2892); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2891); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2289); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2975); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2974); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(1898); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2960); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2959); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2229); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(3027); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3026); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2489); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2889); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2888); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(1904); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2987); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2986); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2434); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2981); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2980); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2219); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2917); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2225); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2966); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2965); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(1934); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2984); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2983); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(1950); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2963); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2962); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(1960); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2897); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2896); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2277); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2900); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2899); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2447); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2993); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2992); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 's') ADVANCE(2449); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2944); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1867); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2990); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2989); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1874); + if (lookahead == '=') ADVANCE(4114); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + lookahead == '@') ADVANCE(2948); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2947); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2477); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '=') ADVANCE(3780); + if (lookahead == '~') ADVANCE(3791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1879); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '>') ADVANCE(4271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1855); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '>') ADVANCE(4267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2127); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '>') ADVANCE(4259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1983); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2186); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + ADVANCE_MAP( + 'I', 2836, + '_', 2453, + 'i', 2836, + 'l', 2762, + 'r', 2745, + 'x', 2707, + '+', 2453, + '-', 2453, + 'B', 4016, + 'b', 4016, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2131); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'I') ADVANCE(2836); + if (lookahead == '_') ADVANCE(2453); + if (lookahead == 'i') ADVANCE(2485); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2453); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1892); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + ADVANCE_MAP( + 'I', 2836, + 'a', 2617, + 'i', 2656, + 'o', 2514, + 's', 4023, + 'u', 2789, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2464); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'I') ADVANCE(2836); + if (lookahead == 'i') ADVANCE(2836); + if (lookahead == 'l') ADVANCE(2762); + if (lookahead == 'r') ADVANCE(2745); + if (lookahead == 'x') ADVANCE(2707); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2257); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'I') ADVANCE(2836); + if (lookahead == 'i') ADVANCE(2836); + if (lookahead == 'r') ADVANCE(2811); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2239); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'I') ADVANCE(2836); + if (lookahead == 'i') ADVANCE(2836); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2483); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'I') ADVANCE(2836); + if (lookahead == 'i') ADVANCE(2485); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2180); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'N') ADVANCE(2837); + if (lookahead == 'f') ADVANCE(3690); + if (lookahead == 'n') ADVANCE(3665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2492); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'N') ADVANCE(2837); + if (lookahead == 'f') ADVANCE(3690); + if (lookahead == 'n') ADVANCE(2697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1942); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'N') ADVANCE(2839); + if (lookahead == 'f') ADVANCE(2858); + if (lookahead == 'n') ADVANCE(2838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(1970); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2441); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2414); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2372); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2444); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2148); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2278); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2362); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2446); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2245); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2253); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2449); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 't') ADVANCE(2247); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2264); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2265); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2453); + if (lookahead == 'l') ADVANCE(2752); + if (lookahead == 'r') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2706); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2386); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2453); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2218); - if (lookahead == 'y') ADVANCE(3819); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == '_') ADVANCE(2453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2218); - if (lookahead == 'y') ADVANCE(2484); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2639); + if (lookahead == 'o') ADVANCE(2711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2389); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2639); + if (lookahead == 'o') ADVANCE(2734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2224); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2614); + if (lookahead == 'o') ADVANCE(2501); + if (lookahead == 'u') ADVANCE(2774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2444); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2614); + if (lookahead == 'o') ADVANCE(2504); + if (lookahead == 'u') ADVANCE(2774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2250); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2235); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2400); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2717); + if (lookahead == 'o') ADVANCE(2646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2316); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2772); + if (lookahead == 'o') ADVANCE(2652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2402); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2659); + if (lookahead == 'o') ADVANCE(2714); + if (lookahead == 's') ADVANCE(2576); + if (lookahead == 'x') ADVANCE(2682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2319); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2616); + if (lookahead == 'e') ADVANCE(2786); + if (lookahead == 'o') ADVANCE(2514); + if (lookahead == 'u') ADVANCE(2789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'u') ADVANCE(2374); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2618); + if (lookahead == 'e') ADVANCE(2739); + if (lookahead == 'o') ADVANCE(1815); + if (lookahead == 'r') ADVANCE(2815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'v') ADVANCE(2232); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'v') ADVANCE(2258); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'w') ADVANCE(1932); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'y') ADVANCE(2190); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2830); + if (lookahead == 'e') ADVANCE(2565); + if (lookahead == 'o') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'y') ADVANCE(3851); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'y') ADVANCE(2499); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2769); + if (lookahead == 'e') ADVANCE(2638); + if (lookahead == 'i') ADVANCE(2509); + if (lookahead == 't') ADVANCE(2797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'y') ADVANCE(1938); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'y') ADVANCE(1966); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2798); + if (lookahead == 'l') ADVANCE(2807); + if (lookahead == 'o') ADVANCE(2637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2476); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4095); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2474); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(1881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4113); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2617); + if (lookahead == 'o') ADVANCE(2514); + if (lookahead == 'u') ADVANCE(2789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2800); + if (lookahead == 'o') ADVANCE(2667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2478); + if (lookahead == 'a') ADVANCE(2660); + if (lookahead == 'e') ADVANCE(2573); + if (lookahead == 'o') ADVANCE(2630); + if (lookahead == 'u') ADVANCE(2763); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3071); + if (lookahead == 'a') ADVANCE(2794); + if (lookahead == 'e') ADVANCE(2486); + if (lookahead == 'o') ADVANCE(2857); + if (lookahead == 'r') ADVANCE(2675); + if (lookahead == 't') ADVANCE(1811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3045); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3044); + if (lookahead == 'a') ADVANCE(2491); + if (lookahead == 'l') ADVANCE(2762); + if (lookahead == 'n') ADVANCE(2494); + if (lookahead == 'r') ADVANCE(2745); + if (lookahead == 'x') ADVANCE(2696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3048); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3047); + if (lookahead == 'a') ADVANCE(2661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2961); + if (lookahead == 'a') ADVANCE(2799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2991); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2990); + if (lookahead == 'a') ADVANCE(2642); + if (lookahead == 'o') ADVANCE(2720); + if (lookahead == 'r') ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3053); + if (lookahead == 'a') ADVANCE(2512); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2967); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3050); + if (lookahead == 'b') ADVANCE(2808); + if (lookahead == 'c') ADVANCE(2690); + if (lookahead == 'f') ADVANCE(2860); + if (lookahead == 't') ADVANCE(2535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3036); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3035); + if (lookahead == 'b') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3103); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3102); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2964); + if (lookahead == 'c') ADVANCE(2574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3062); + if (lookahead == 'c') ADVANCE(2575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3057); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3056); + if (lookahead == 'c') ADVANCE(2581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2994); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2993); + if (lookahead == 'c') ADVANCE(2583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3042); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3041); + if (lookahead == 'c') ADVANCE(2679); + if (lookahead == 'e') ADVANCE(2708); + if (lookahead == 'k') ADVANCE(2610); + if (lookahead == 'o') ADVANCE(2818); + if (lookahead == 'p') ADVANCE(2640); + if (lookahead == 't') ADVANCE(2684); + if (lookahead == 'y') ADVANCE(2754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3059); + if (lookahead == 'c') ADVANCE(2690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3038); + if (lookahead == 'c') ADVANCE(2523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2973); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2972); + if (lookahead == 'c') ADVANCE(2540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2976); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2975); + if (lookahead == 'c') ADVANCE(2584); + if (lookahead == 'h') ADVANCE(1845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3068); + if (lookahead == 'c') ADVANCE(2584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3020); + if (lookahead == 'c') ADVANCE(2796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3065); + if (lookahead == 'd') ADVANCE(3766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4206); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3023); + if (lookahead == 'd') ADVANCE(3805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3881); - if (lookahead == '~') ADVANCE(3892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(3824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4363); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4359); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4355); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 2912, - '_', 2529, - 'i', 2912, - 'l', 2838, - 'r', 2821, - 'x', 2783, - '+', 2529, - '-', 2529, - 'B', 4120, - 'b', 4120, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2912); - if (lookahead == '_') ADVANCE(2529); - if (lookahead == 'i') ADVANCE(2561); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2529); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 2912, - 'a', 2693, - 'i', 2732, - 'o', 2590, - 's', 4127, - 'u', 2865, - 'B', 4120, - 'b', 4120, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2539); + if (lookahead == 's') ADVANCE(2802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2912); - if (lookahead == 'i') ADVANCE(2912); - if (lookahead == 'l') ADVANCE(2838); - if (lookahead == 'r') ADVANCE(2821); - if (lookahead == 'x') ADVANCE(2783); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2539); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2912); - if (lookahead == 'i') ADVANCE(2912); - if (lookahead == 'r') ADVANCE(2887); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2912); - if (lookahead == 'i') ADVANCE(2912); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2474); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2912); - if (lookahead == 'i') ADVANCE(2561); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2913); - if (lookahead == 'f') ADVANCE(3791); - if (lookahead == 'n') ADVANCE(3764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'd') ADVANCE(2820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2913); - if (lookahead == 'f') ADVANCE(3791); - if (lookahead == 'n') ADVANCE(2773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2564); + if (lookahead == 'o') ADVANCE(3685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2915); - if (lookahead == 'f') ADVANCE(2934); - if (lookahead == 'n') ADVANCE(2914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2520); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2520); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2520); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2525); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2526); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(3931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2529); - if (lookahead == 'l') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(2818); - if (lookahead == 'x') ADVANCE(2782); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2565); + if (lookahead == 'o') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2529); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2529); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2715); - if (lookahead == 'o') ADVANCE(2787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2715); - if (lookahead == 'o') ADVANCE(2810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2690); - if (lookahead == 'o') ADVANCE(2577); - if (lookahead == 'u') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2773); + if (lookahead == 'o') ADVANCE(2673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2690); - if (lookahead == 'o') ADVANCE(2580); - if (lookahead == 'u') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2458); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2689); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2793); - if (lookahead == 'o') ADVANCE(2722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2848); - if (lookahead == 'o') ADVANCE(2728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2735); - if (lookahead == 'o') ADVANCE(2790); - if (lookahead == 's') ADVANCE(2652); - if (lookahead == 'x') ADVANCE(2758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2488); + if (lookahead == 'o') ADVANCE(2818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2692); - if (lookahead == 'e') ADVANCE(2862); - if (lookahead == 'o') ADVANCE(2590); - if (lookahead == 'u') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2694); - if (lookahead == 'e') ADVANCE(2815); - if (lookahead == 'o') ADVANCE(1891); - if (lookahead == 'r') ADVANCE(2891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2691); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2906); - if (lookahead == 'e') ADVANCE(2641); - if (lookahead == 'o') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2845); - if (lookahead == 'e') ADVANCE(2714); - if (lookahead == 'i') ADVANCE(2585); - if (lookahead == 't') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2874); - if (lookahead == 'l') ADVANCE(2883); - if (lookahead == 'o') ADVANCE(2713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2693); - if (lookahead == 'o') ADVANCE(2590); - if (lookahead == 'u') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2876); - if (lookahead == 'o') ADVANCE(2743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2736); - if (lookahead == 'e') ADVANCE(2649); - if (lookahead == 'o') ADVANCE(2706); - if (lookahead == 'u') ADVANCE(2839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2870); - if (lookahead == 'e') ADVANCE(2562); - if (lookahead == 'o') ADVANCE(2933); - if (lookahead == 'r') ADVANCE(2751); - if (lookahead == 't') ADVANCE(1887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2567); - if (lookahead == 'l') ADVANCE(2838); - if (lookahead == 'n') ADVANCE(2570); - if (lookahead == 'r') ADVANCE(2821); - if (lookahead == 'x') ADVANCE(2772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2718); - if (lookahead == 'o') ADVANCE(2796); - if (lookahead == 'r') ADVANCE(2753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2884); - if (lookahead == 'c') ADVANCE(2766); - if (lookahead == 'f') ADVANCE(2936); - if (lookahead == 't') ADVANCE(2611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2783); + if (lookahead == 'o') ADVANCE(2676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'f') ADVANCE(3569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'f') ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'f') ADVANCE(2604); + if (lookahead == 's') ADVANCE(2792); + if (lookahead == 't') ADVANCE(2611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(2592); + if (lookahead == 't') ADVANCE(2812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(2688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2755); - if (lookahead == 'e') ADVANCE(2784); - if (lookahead == 'k') ADVANCE(2686); - if (lookahead == 'o') ADVANCE(2894); - if (lookahead == 'p') ADVANCE(2716); - if (lookahead == 't') ADVANCE(2760); - if (lookahead == 'y') ADVANCE(2830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(2605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(1887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(1869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(2768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2660); - if (lookahead == 'h') ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'g') ADVANCE(2612); + if (lookahead == 't') ADVANCE(2819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(3724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(3701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(3776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(3774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(1813); + if (lookahead == 'i') ADVANCE(2782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(1837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2615); - if (lookahead == 's') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(1847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2608); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'h') ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2779); + if (lookahead == 'r') ADVANCE(2533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2465); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2640); - if (lookahead == 'o') ADVANCE(3786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2629); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(1827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2790); + if (lookahead == 'r') ADVANCE(2537); + if (lookahead == 'y') ADVANCE(2793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(4027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(4035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2641); - if (lookahead == 'o') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2471); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2504); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2510); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2849); - if (lookahead == 'o') ADVANCE(2749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'i') ADVANCE(2771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'k') ADVANCE(3652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2564); - if (lookahead == 'o') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2520); + if (lookahead == 't') ADVANCE(2490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2546); + if (lookahead == 't') ADVANCE(2497); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2798); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2546); + if (lookahead == 't') ADVANCE(2498); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'k') ADVANCE(2551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(3820); + if (lookahead == 'r') ADVANCE(3822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(3914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2806); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2589); + if (lookahead == 'n') ADVANCE(2500); + if (lookahead == 's') ADVANCE(3758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2589); + if (lookahead == 's') ADVANCE(3758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2459); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(1825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(1849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2805); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2752); + if (lookahead == 'r') ADVANCE(2742); + if (lookahead == 'x') ADVANCE(2706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2473); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2859); - if (lookahead == 'o') ADVANCE(2752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(3664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2602); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2762); + if (lookahead == 'r') ADVANCE(2745); + if (lookahead == 'x') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2680); - if (lookahead == 's') ADVANCE(2868); - if (lookahead == 't') ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2668); - if (lookahead == 't') ADVANCE(2888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2687); + if (lookahead == 'o') ADVANCE(2743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2603); + if (lookahead == 'n') ADVANCE(2757); + if (lookahead == 's') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'l') ADVANCE(2603); + if (lookahead == 's') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'm') ADVANCE(2648); + if (lookahead == 'n') ADVANCE(2566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'm') ADVANCE(2953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'm') ADVANCE(2481); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2688); - if (lookahead == 't') ADVANCE(2895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'm') ADVANCE(1835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'm') ADVANCE(1855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'm') ADVANCE(1877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(3577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1889); - if (lookahead == 'i') ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(3728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2507); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2684); - if (lookahead == 'k') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2508); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(1843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(2609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(1873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2809); + if (lookahead == 't') ADVANCE(2469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2427); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2866); - if (lookahead == 'r') ADVANCE(2613); - if (lookahead == 'y') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2586); - if (lookahead == 'r') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2778); + if (lookahead == 'u') ADVANCE(2628); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2732); + if (lookahead == 'r') ADVANCE(1821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(1861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2780); + if (lookahead == 'u') ADVANCE(2624); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2596); - if (lookahead == 't') ADVANCE(2566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2513); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2622); - if (lookahead == 't') ADVANCE(2573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2622); - if (lookahead == 't') ADVANCE(2574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'o') ADVANCE(2818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3921); - if (lookahead == 'r') ADVANCE(3923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(3671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(4018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2643); + if (lookahead == 't') ADVANCE(2552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(3012); + if (lookahead == 't') ADVANCE(3008); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2665); - if (lookahead == 'n') ADVANCE(2576); - if (lookahead == 's') ADVANCE(3859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2506); + if (lookahead == 'r') ADVANCE(2626); + if (lookahead == 's') ADVANCE(2542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2665); - if (lookahead == 's') ADVANCE(3859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(1833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(1839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(1841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(1851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(1879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2691); + if (lookahead == 't') ADVANCE(2541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2598); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'p') ADVANCE(2686); + if (lookahead == 't') ADVANCE(2552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'q') ADVANCE(1819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(1902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(2818); - if (lookahead == 'x') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(3739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2838); - if (lookahead == 'r') ADVANCE(2821); - if (lookahead == 'x') ADVANCE(2783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2568); + if (lookahead == 't') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2763); - if (lookahead == 'o') ADVANCE(2819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2495); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2679); - if (lookahead == 'n') ADVANCE(2833); - if (lookahead == 's') ADVANCE(2932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2679); - if (lookahead == 's') ADVANCE(2932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2724); - if (lookahead == 'n') ADVANCE(2642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + if (lookahead == 'r') ADVANCE(2430); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(4127); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(1853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2787); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2885); - if (lookahead == 't') ADVANCE(2545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(1785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(2624); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(4025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2518); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2776); + if (lookahead == 't') ADVANCE(2591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(1823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2854); - if (lookahead == 'u') ADVANCE(2704); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(1829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2808); - if (lookahead == 'r') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2792); + if (lookahead == 't') ADVANCE(2611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2856); - if (lookahead == 'u') ADVANCE(2700); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(1859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(1875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(1885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3772); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 's') ADVANCE(2803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2719); - if (lookahead == 't') ADVANCE(2628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2489); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3088); - if (lookahead == 't') ADVANCE(3084); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 't') ADVANCE(1792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2582); - if (lookahead == 'r') ADVANCE(2702); - if (lookahead == 's') ADVANCE(2618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2631); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2767); - if (lookahead == 't') ADVANCE(2617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2762); - if (lookahead == 't') ADVANCE(2628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'q') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2644); - if (lookahead == 't') ADVANCE(2568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2506); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 't') ADVANCE(2770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2624); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2624); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2959); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2531); + if (lookahead == 'y') ADVANCE(3719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2531); + if (lookahead == 'y') ADVANCE(2863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2525); + if (lookahead == 'y') ADVANCE(2863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'u') ADVANCE(2549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4127); - if (lookahead == 'u') ADVANCE(2700); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'v') ADVANCE(2536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'v') ADVANCE(2560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'w') ADVANCE(2598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'w') ADVANCE(1857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'w') ADVANCE(2599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'y') ADVANCE(3751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2852); - if (lookahead == 't') ADVANCE(2667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'y') ADVANCE(2487); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'y') ADVANCE(2881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'y') ADVANCE(1863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'y') ADVANCE(1891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2619); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2868); - if (lookahead == 't') ADVANCE(2687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2700); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2700); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); END_STATE(); case 2884: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2885: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2886: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2607); - if (lookahead == 'y') ADVANCE(3820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2887: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2607); - if (lookahead == 'y') ADVANCE(2939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2888: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2889: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2890: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2891: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2601); - if (lookahead == 'y') ADVANCE(2939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2892: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2893: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2894: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2895: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2896: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2897: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2898: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2899: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2900: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2901: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2902: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2903: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2904: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2905: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2906: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2907: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2908: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2909: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2910: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2911: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2912: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2913: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2914: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); - END_STATE(); - case 2915: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2916: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); - END_STATE(); - case 2917: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2918: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4114); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2919: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2920: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2921: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2922: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2923: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2924: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2925: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4154); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2926: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2927: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2928: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2929: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2930: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2931: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); - END_STATE(); - case 2932: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); - END_STATE(); - case 2933: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); - END_STATE(); - case 2934: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); - END_STATE(); - case 2935: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); - END_STATE(); - case 2936: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); - END_STATE(); - case 2937: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); - END_STATE(); - case 2938: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); - END_STATE(); - case 2939: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); - END_STATE(); - case 2940: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); - END_STATE(); - case 2941: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); - END_STATE(); - case 2942: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); - END_STATE(); - case 2943: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); - END_STATE(); - case 2944: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); - END_STATE(); - case 2945: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); - END_STATE(); - case 2946: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); - END_STATE(); - case 2947: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); - END_STATE(); - case 2948: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); - END_STATE(); - case 2949: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); - END_STATE(); - case 2950: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); - END_STATE(); - case 2951: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); - END_STATE(); - case 2952: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); - END_STATE(); - case 2953: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); - END_STATE(); - case 2954: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); - END_STATE(); - case 2955: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); - END_STATE(); - case 2956: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); - END_STATE(); - case 2957: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); - END_STATE(); - case 2958: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); - END_STATE(); - case 2959: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); - END_STATE(); - case 2960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); + if (lookahead == ',') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2884); END_STATE(); - case 2961: + case 2885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + lookahead == '@') ADVANCE(2886); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2885); END_STATE(); - case 2962: + case 2886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); END_STATE(); - case 2963: + case 2887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if (lookahead == ',') ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); END_STATE(); - case 2964: + case 2888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2965); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2964); + lookahead == '@') ADVANCE(2889); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2888); END_STATE(); - case 2965: + case 2889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); END_STATE(); - case 2966: + case 2890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if (lookahead == ',') ADVANCE(2892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); END_STATE(); - case 2967: + case 2891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2968); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2967); + lookahead == '@') ADVANCE(2892); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2891); END_STATE(); - case 2968: + case 2892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); END_STATE(); - case 2969: + case 2893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(2970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if (lookahead == ',') ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); END_STATE(); - case 2970: + case 2894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); END_STATE(); - case 2971: + case 2895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(2973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); + if (lookahead == ',') ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); END_STATE(); - case 2972: + case 2896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2973); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); + lookahead == '@') ADVANCE(2897); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2896); END_STATE(); - case 2973: + case 2897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); END_STATE(); - case 2974: + case 2898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(2976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); + if (lookahead == ',') ADVANCE(2900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); END_STATE(); - case 2975: + case 2899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); + lookahead == '@') ADVANCE(2900); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2899); END_STATE(); - case 2976: + case 2900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); END_STATE(); - case 2977: + case 2901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == 'e') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == 'e') ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); END_STATE(); - case 2978: + case 2902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == 'n') ADVANCE(2979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == 'n') ADVANCE(2903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); END_STATE(); - case 2979: + case 2903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == 'v') ADVANCE(1870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == 'v') ADVANCE(1794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); END_STATE(); - case 2980: + case 2904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); END_STATE(); - case 2981: + case 2905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'e') ADVANCE(2907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2982: + case 2906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'e') ADVANCE(2908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2983: + case 2907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'n') ADVANCE(2910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2984: + case 2908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'n') ADVANCE(2909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2985: + case 2909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(2988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'v') ADVANCE(2912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2986: + case 2910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'v') ADVANCE(1795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2987: + case 2911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); + lookahead == '@') ADVANCE(2912); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2911); END_STATE(); - case 2988: + case 2912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); - case 2989: + case 2913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); + if (lookahead == ',') ADVANCE(2915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); - case 2990: + case 2914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); + lookahead == '@') ADVANCE(2915); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2914); END_STATE(); - case 2991: + case 2915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); END_STATE(); - case 2992: + case 2916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); + if (lookahead == ',') ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); END_STATE(); - case 2993: + case 2917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2994); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); + lookahead == '@') ADVANCE(2918); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2917); END_STATE(); - case 2994: + case 2918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); END_STATE(); - case 2995: + case 2919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == 'e') ADVANCE(2996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == 'e') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); END_STATE(); - case 2996: + case 2920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == 'n') ADVANCE(2997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == 'n') ADVANCE(2921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); END_STATE(); - case 2997: + case 2921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == 'v') ADVANCE(3847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == 'v') ADVANCE(3746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); END_STATE(); - case 2998: + case 2922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + if (lookahead == ',') ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); END_STATE(); - case 2999: + case 2923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(3001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'e') ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3000: + case 2924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(3002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'e') ADVANCE(2926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3001: + case 2925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(3004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'n') ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3002: + case 2926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(3003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'n') ADVANCE(2927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3003: + case 2927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'v') ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3004: + case 2928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'v') ADVANCE(3747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3005: + case 2929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3006); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3005); + lookahead == '@') ADVANCE(2930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2929); END_STATE(); - case 3006: + case 2930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); - case 3007: + case 2931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == 'e') ADVANCE(3008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == 'e') ADVANCE(2932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); END_STATE(); - case 3008: + case 2932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == 'n') ADVANCE(3009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == 'n') ADVANCE(2933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); END_STATE(); - case 3009: + case 2933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == 'v') ADVANCE(3835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == 'v') ADVANCE(3734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); END_STATE(); - case 3010: + case 2934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); + if (lookahead == ',') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); END_STATE(); - case 3011: + case 2935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(3013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'e') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3012: + case 2936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(3014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'e') ADVANCE(2938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3013: + case 2937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(3016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'n') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3014: + case 2938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'n') ADVANCE(2939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3015: + case 2939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'v') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3016: + case 2940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'v') ADVANCE(3735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3017: + case 2941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3018); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3017); + lookahead == '@') ADVANCE(2942); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2941); END_STATE(); - case 3018: + case 2942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); - case 3019: + case 2943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); + if (lookahead == ',') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); - case 3020: + case 2944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3020); + lookahead == '@') ADVANCE(2945); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2944); END_STATE(); - case 3021: + case 2945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); END_STATE(); - case 3022: + case 2946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(3024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3022); + if (lookahead == ',') ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); END_STATE(); - case 3023: + case 2947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + lookahead == '@') ADVANCE(2948); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2947); END_STATE(); - case 3024: + case 2948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); END_STATE(); - case 3025: + case 2949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(779); + if (lookahead == ' ') ADVANCE(707); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); + lookahead == '@') ADVANCE(2957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); END_STATE(); - case 3026: + case 2950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + if (lookahead == ' ') ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); - case 3027: + case 2951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + if (lookahead == ',') ADVANCE(2957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); END_STATE(); - case 3028: + case 2952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(3030); + if (lookahead == 'a') ADVANCE(2954); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); + lookahead == '@') ADVANCE(2957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); END_STATE(); - case 3029: + case 2953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(3031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + if (lookahead == 'a') ADVANCE(2955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); - case 3030: + case 2954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(3025); + if (lookahead == 't') ADVANCE(2949); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); + lookahead == '@') ADVANCE(2957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); END_STATE(); - case 3031: + case 2955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(3026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + if (lookahead == 't') ADVANCE(2950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); - case 3032: + case 2956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); + lookahead == '@') ADVANCE(2957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); END_STATE(); - case 3033: + case 2957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); - case 3034: + case 2958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(3036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3034); + if (lookahead == ',') ADVANCE(2960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); - case 3035: + case 2959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3035); + lookahead == '@') ADVANCE(2960); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2959); END_STATE(); - case 3036: + case 2960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); END_STATE(); - case 3037: + case 2961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); + if (lookahead == ',') ADVANCE(2963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); - case 3038: + case 2962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); + lookahead == '@') ADVANCE(2963); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2962); END_STATE(); - case 3039: + case 2963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); END_STATE(); - case 3040: + case 2964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(3042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); + if (lookahead == ',') ADVANCE(2966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); - case 3041: + case 2965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3042); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3041); + lookahead == '@') ADVANCE(2966); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2965); END_STATE(); - case 3042: + case 2966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); END_STATE(); - case 3043: + case 2967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(3045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + if (lookahead == ',') ADVANCE(2969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); END_STATE(); - case 3044: + case 2968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3045); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3044); + lookahead == '@') ADVANCE(2969); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2968); END_STATE(); - case 3045: + case 2969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); END_STATE(); - case 3046: + case 2970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(3048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if (lookahead == ',') ADVANCE(2972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); - case 3047: + case 2971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3047); + lookahead == '@') ADVANCE(2972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2971); END_STATE(); - case 3048: + case 2972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); END_STATE(); - case 3049: + case 2973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if (lookahead == ',') ADVANCE(2975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); - case 3050: + case 2974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3050); + lookahead == '@') ADVANCE(2975); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2974); END_STATE(); - case 3051: + case 2975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); END_STATE(); - case 3052: + case 2976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); + if (lookahead == ',') ADVANCE(2978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); - case 3053: + case 2977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3053); + lookahead == '@') ADVANCE(2978); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2977); END_STATE(); - case 3054: + case 2978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); END_STATE(); - case 3055: + case 2979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(3057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); + if (lookahead == ',') ADVANCE(2981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); - case 3056: + case 2980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3057); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3056); + lookahead == '@') ADVANCE(2981); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2980); END_STATE(); - case 3057: + case 2981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); END_STATE(); - case 3058: + case 2982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3058); + if (lookahead == ',') ADVANCE(2984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); - case 3059: + case 2983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + lookahead == '@') ADVANCE(2984); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2983); END_STATE(); - case 3060: + case 2984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); END_STATE(); - case 3061: + case 2985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3061); + if (lookahead == ',') ADVANCE(2987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); - case 3062: + case 2986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3062); + lookahead == '@') ADVANCE(2987); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2986); END_STATE(); - case 3063: + case 2987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); END_STATE(); - case 3064: + case 2988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if (lookahead == ',') ADVANCE(2990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); - case 3065: + case 2989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3065); + lookahead == '@') ADVANCE(2990); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2989); END_STATE(); - case 3066: + case 2990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); END_STATE(); - case 3067: + case 2991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + if (lookahead == ',') ADVANCE(2993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); - case 3068: + case 2992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + lookahead == '@') ADVANCE(2993); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); END_STATE(); - case 3069: + case 2993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); END_STATE(); - case 3070: + case 2994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); + if (lookahead == ',') ADVANCE(2996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); - case 3071: + case 2995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3071); + lookahead == '@') ADVANCE(2996); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2995); END_STATE(); - case 3072: + case 2996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); END_STATE(); - case 3073: + case 2997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(678); + if (lookahead == ' ') ADVANCE(606); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3074: + case 2998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == ' ') ADVANCE(606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3075: + case 2999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1135); + if (lookahead == ' ') ADVANCE(1063); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3076: + case 3000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == ' ') ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3077: + case 3001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + lookahead == 'i') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3078: + case 3002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + lookahead == 'i') ADVANCE(3004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3079: + case 3003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3078); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + lookahead == 'n') ADVANCE(3002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3080: + case 3004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3081); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + lookahead == 't') ADVANCE(3005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3081: + case 3005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + lookahead == 'y') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3082: + case 3006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + if (lookahead == ',') ADVANCE(3024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); - case 3083: + case 3007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(3073); + if (lookahead == 'o') ADVANCE(2997); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3084: + case 3008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(3074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 'o') ADVANCE(2998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3085: + case 3009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(3075); + if (lookahead == 't') ADVANCE(2999); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3086: + case 3010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(3076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 't') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3087: + case 3011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3085); + if (lookahead == 'u') ADVANCE(3009); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3088: + case 3012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3086); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if (lookahead == 'u') ADVANCE(3010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3089: + case 3013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3093); + lookahead == 'i') ADVANCE(3017); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3090: + case 3014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3095); + lookahead == 'i') ADVANCE(3019); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3091: + case 3015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'i') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3092: + case 3016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'i') ADVANCE(3020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3093: + case 3017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3090); + lookahead == 'n') ADVANCE(3014); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3094: + case 3018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'n') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3095: + case 3019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3098); + lookahead == 't') ADVANCE(3022); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3096: + case 3020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 't') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3097: + case 3021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + lookahead == 'y') ADVANCE(3024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3098: + case 3022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3099); + lookahead == 'y') ADVANCE(3023); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3099: + case 3023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); - case 3100: + case 3024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); - case 3101: + case 3025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(3103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3101); + if (lookahead == ',') ADVANCE(3027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); - case 3102: + case 3026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3103); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3102); + lookahead == '@') ADVANCE(3027); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3026); END_STATE(); - case 3103: + case 3027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); END_STATE(); - case 3104: + case 3028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == 'e') ADVANCE(3105); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == 'e') ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); END_STATE(); - case 3105: + case 3029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == 'n') ADVANCE(3106); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == 'n') ADVANCE(3030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); END_STATE(); - case 3106: + case 3030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == 'v') ADVANCE(3666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == 'v') ADVANCE(3571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); END_STATE(); - case 3107: + case 3031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3107); + if (lookahead == ',') ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); END_STATE(); - case 3108: + case 3032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3110); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'e') ADVANCE(3034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3109: + case 3033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3111); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'e') ADVANCE(3035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3110: + case 3034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'n') ADVANCE(3036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3111: + case 3035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'n') ADVANCE(3037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3112: + case 3036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'v') ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3113: + case 3037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3116); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'v') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3114: + case 3038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3115); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3114); + lookahead == '@') ADVANCE(3039); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); END_STATE(); - case 3115: + case 3039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); - case 3116: + case 3040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); END_STATE(); - case 3117: + case 3041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(3119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3117); + if (lookahead == ',') ADVANCE(3043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3041); END_STATE(); - case 3118: + case 3042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3119); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3118); + lookahead == '@') ADVANCE(3043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3042); END_STATE(); - case 3119: + case 3043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); END_STATE(); - case 3120: + case 3044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(3122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3120); + if (lookahead == ',') ADVANCE(3046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); - case 3121: + case 3045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3122); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3121); + lookahead == '@') ADVANCE(3046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3045); END_STATE(); - case 3122: + case 3046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); END_STATE(); - case 3123: + case 3047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == ',') ADVANCE(3125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3123); + if (lookahead == ',') ADVANCE(3049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); - case 3124: + case 3048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3125); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3124); + lookahead == '@') ADVANCE(3049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3048); END_STATE(); - case 3125: + case 3049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); END_STATE(); - case 3126: + case 3050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); + lookahead == 'i') ADVANCE(3052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3127: + case 3051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); + lookahead == 'n') ADVANCE(3050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3128: + case 3052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); + lookahead == 't') ADVANCE(3053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3129: + case 3053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); + lookahead == 'y') ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3130: + case 3054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); + if (lookahead == ',') ADVANCE(3064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); - case 3131: + case 3055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3135); + lookahead == 'i') ADVANCE(3059); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); + lookahead == '@') ADVANCE(3064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); END_STATE(); - case 3132: + case 3056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + lookahead == 'i') ADVANCE(3060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); - case 3133: + case 3057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3131); + lookahead == 'n') ADVANCE(3055); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); + lookahead == '@') ADVANCE(3064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); END_STATE(); - case 3134: + case 3058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + lookahead == 'n') ADVANCE(3056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); - case 3135: + case 3059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3138); + lookahead == 't') ADVANCE(3062); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); + lookahead == '@') ADVANCE(3064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); END_STATE(); - case 3136: + case 3060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + lookahead == 't') ADVANCE(3061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); - case 3137: + case 3061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + lookahead == 'y') ADVANCE(3064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); - case 3138: + case 3062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3139); + lookahead == 'y') ADVANCE(3063); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); + lookahead == '@') ADVANCE(3064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); END_STATE(); - case 3139: + case 3063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); + lookahead == '@') ADVANCE(3064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); END_STATE(); - case 3140: + case 3064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); - case 3141: + case 3065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3143); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); + lookahead == 'i') ADVANCE(3067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); - case 3142: + case 3066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); + lookahead == 'n') ADVANCE(3065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); - case 3143: + case 3067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3144); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); + lookahead == 't') ADVANCE(3068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); - case 3144: + case 3068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3145); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); + lookahead == 'y') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); - case 3145: + case 3069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); + if (lookahead == ',') ADVANCE(3074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); - case 3146: + case 3070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3148); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); + lookahead == 'i') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); - case 3147: + case 3071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3146); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); + lookahead == 'n') ADVANCE(3070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); - case 3148: + case 3072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3149); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); + lookahead == 't') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); - case 3149: + case 3073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3150); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); + lookahead == 'y') ADVANCE(3074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); - case 3150: + case 3074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); - case 3151: + case 3075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if (lookahead == ',') ADVANCE(3153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3151); + if (lookahead == ',') ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); - case 3152: + case 3076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3153); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3152); + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); - case 3153: + case 3077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); - case 3154: + case 3078: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 3155: + case 3079: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 3156: + case 3080: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(3154); + if (lookahead == '*') ADVANCE(3078); END_STATE(); - case 3157: + case 3081: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(3160); + if (lookahead == '/') ADVANCE(3084); END_STATE(); - case 3158: + case 3082: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3159: + case 3083: ACCEPT_TOKEN(anon_sym_mod); END_STATE(); - case 3160: + case 3084: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 3161: + case 3085: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3155); + if (lookahead == '+') ADVANCE(3079); END_STATE(); - case 3162: + case 3086: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 3163: + case 3087: ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); - case 3164: + case 3088: ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); - case 3165: + case 3089: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 3166: + case 3090: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 3167: + case 3091: ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); - case 3168: + case 3092: ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); - case 3169: + case 3093: ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); - case 3170: + case 3094: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 3171: + case 3095: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 3172: + case 3096: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 3173: + case 3097: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 3174: + case 3098: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 3175: + case 3099: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 3176: + case 3100: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 3177: + case 3101: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 3178: + case 3102: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 3179: + case 3103: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 3180: + case 3104: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3181); + if (lookahead == '=') ADVANCE(3105); END_STATE(); - case 3181: + case 3105: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 3182: + case 3106: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 3183: + case 3107: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3184); + if (lookahead == '=') ADVANCE(3108); END_STATE(); - case 3184: + case 3108: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 3185: + case 3109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ':', 4199, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, - '\t', 9, - ' ', 9, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3186: + case 3110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ':', 4199, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, - '\t', 9, - ' ', 9, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3187: + case 3111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ':', 4199, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, - '\t', 9, - ' ', 9, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3188: + case 3112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3647, - '\r', 16, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ':', 4199, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3233, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, - '\t', 9, - ' ', 9, - 0x0b, 516, - '\f', 516, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); - if (lookahead != 0 && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3189: + case 3113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3190: + case 3114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3191: + case 3115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3157, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3192: + case 3116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3159, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3193: + case 3117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3158, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3154, + 's', 3243, + 'x', 3220, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3194: + case 3118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + ')', 3594, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3160, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3162, + 's', 3243, + 'x', 3220, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3195: + case 3119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3233, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ':', 4095, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3196: + case 3120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3235, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3197: + case 3121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3234, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3230, - 's', 3319, - 'x', 3296, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3198: + case 3122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - ')', 3689, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3236, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3238, - 's', 3319, - 'x', 3296, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3199: + case 3123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3200: + case 3124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ':', 4095, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3201: + case 3125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ':', 4095, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3202: + case 3126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ':', 4095, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3157, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3203: + case 3127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3204: + case 3128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3205: + case 3129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3206: + case 3130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3207: + case 3131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3233, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3157, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3208: + case 3132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3235, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - '}', 3804, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3159, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + '}', 3703, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3209: + case 3133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3210: + case 3134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3211: + case 3135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3212: + case 3136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3213: + case 3137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3233, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3157, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3214: + case 3138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3235, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3159, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3215: + case 3139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3234, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3230, - 's', 3319, - 'x', 3296, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3158, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3154, + 's', 3243, + 'x', 3220, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3216: + case 3140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3236, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3238, - 's', 3319, - 'x', 3296, - '|', 3651, - '}', 3804, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3160, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3162, + 's', 3243, + 'x', 3220, + '|', 3556, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3217: + case 3141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3234, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3230, - 's', 3319, - 'x', 3296, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3158, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3154, + 's', 3243, + 'x', 3220, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3218: + case 3142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3236, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3238, - 's', 3319, - 'x', 3296, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3160, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3162, + 's', 3243, + 'x', 3220, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3219: + case 3143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3936, - '/', 3157, - ':', 4199, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3255, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, - '\t', 405, - ' ', 405, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3835, + '/', 3081, + ':', 4095, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3179, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3220: + case 3144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3936, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3255, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3835, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3179, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3221: + case 3145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ':', 4199, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3255, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, - '\t', 405, - ' ', 405, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ':', 4095, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3179, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3222: + case 3146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ':', 4199, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3255, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, - '\t', 405, - ' ', 405, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ':', 4095, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3179, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3223: + case 3147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ':', 4199, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3257, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, - '\t', 405, - ' ', 405, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ':', 4095, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3181, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '\t' || + lookahead == ' ') SKIP(345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3224: + case 3148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3255, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3179, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(360); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3225: + case 3149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3255, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3179, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3226: + case 3150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3257, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3304, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - 0xb5, 3315, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3181, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3228, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3227: + case 3151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3292, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3304, - 's', 3319, - 'x', 3296, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3216, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3228, + 's', 3243, + 'x', 3220, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3228: + case 3152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '#') ADVANCE(5586); + if (lookahead == '#') ADVANCE(5468); if (lookahead == '\t' || - lookahead == ' ') SKIP(424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3229: + case 3153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3261, - '-', 3263, - '>', 4343, - 'I', 3333, - '_', 3263, - 'i', 3333, - 'n', 3273, - 'r', 3305, - 'B', 4120, - 'b', 4120, + '+', 3185, + '-', 3187, + '>', 4251, + 'I', 3257, + '_', 3187, + 'i', 3257, + 'n', 3197, + 'r', 3229, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3230: + case 3154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3275); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'r') ADVANCE(3172); - if (lookahead == 'u') ADVANCE(3321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3199); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'r') ADVANCE(3096); + if (lookahead == 'u') ADVANCE(3245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3231: + case 3155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3295); - if (lookahead == '>') ADVANCE(4335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3219); + if (lookahead == '>') ADVANCE(4243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3232: + case 3156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3276); - if (lookahead == '>') ADVANCE(4339); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3200); + if (lookahead == '>') ADVANCE(4247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3233: + case 3157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3294, - '>', 4343, - 'I', 3333, - 'i', 3333, - 'n', 3273, - 'r', 3305, - 'B', 4120, - 'b', 4120, + '+', 3218, + '>', 4251, + 'I', 3257, + 'i', 3257, + 'n', 3197, + 'r', 3229, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3234: + case 3158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3294); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'n') ADVANCE(3273); - if (lookahead == 'r') ADVANCE(3305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3218); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'n') ADVANCE(3197); + if (lookahead == 'r') ADVANCE(3229); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3235: + case 3159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3298, - '>', 1649, - 'I', 3333, - 'i', 3333, - 'n', 3273, - 'r', 3310, - 'B', 4120, - 'b', 4120, + '+', 3222, + '>', 1573, + 'I', 3257, + 'i', 3257, + 'n', 3197, + 'r', 3234, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3236: + case 3160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3298); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'n') ADVANCE(3273); - if (lookahead == 'r') ADVANCE(3310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3222); + if (lookahead == '>') ADVANCE(1573); + if (lookahead == 'n') ADVANCE(3197); + if (lookahead == 'r') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3237: + case 3161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '+', 3262, - '-', 3263, - '>', 1649, - 'I', 3333, - '_', 3263, - 'i', 3333, - 'n', 3273, - 'r', 3310, - 'B', 4120, - 'b', 4120, + '+', 3186, + '-', 3187, + '>', 1573, + 'I', 3257, + '_', 3187, + 'i', 3257, + 'n', 3197, + 'r', 3234, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3238: + case 3162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3277); - if (lookahead == '>') ADVANCE(1650); - if (lookahead == 'r') ADVANCE(3172); - if (lookahead == 'u') ADVANCE(3325); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3201); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'r') ADVANCE(3096); + if (lookahead == 'u') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3239: + case 3163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3302); - if (lookahead == '>') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3226); + if (lookahead == '>') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3240: + case 3164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3278); - if (lookahead == '>') ADVANCE(1654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '+') ADVANCE(3202); + if (lookahead == '>') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3241: + case 3165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '-') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3242: + case 3166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '-') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3243: + case 3167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3330); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '-') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3244: + case 3168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '-') ADVANCE(3255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3245: + case 3169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3246: + case 3170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(3178); - if (lookahead == '~') ADVANCE(3166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '=') ADVANCE(3102); + if (lookahead == '~') ADVANCE(3090); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3247: + case 3171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4363); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(4271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3248: + case 3172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4359); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(4267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3249: + case 3173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(4259); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3250: + case 3174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4355); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3251: + case 3175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(1575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3252: + case 3176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3253: + case 3177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3254: + case 3178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '>') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3255: + case 3179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - 'I', 3333, - '_', 3263, - 'i', 3333, - 'n', 3273, - '+', 3263, - '-', 3263, - 'B', 4120, - 'b', 4120, + 'I', 3257, + '_', 3187, + 'i', 3257, + 'n', 3197, + '+', 3187, + '-', 3187, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3256: + case 3180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3333); - if (lookahead == '_') ADVANCE(3263); - if (lookahead == 'i') ADVANCE(3268); + if (lookahead == 'I') ADVANCE(3257); + if (lookahead == '_') ADVANCE(3187); + if (lookahead == 'i') ADVANCE(3192); if (lookahead == '+' || - lookahead == '-') ADVANCE(3263); + lookahead == '-') ADVANCE(3187); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3257: + case 3181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3333); - if (lookahead == 'i') ADVANCE(3333); - if (lookahead == 'n') ADVANCE(3273); + if (lookahead == 'I') ADVANCE(3257); + if (lookahead == 'i') ADVANCE(3257); + if (lookahead == 'n') ADVANCE(3197); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3258: + case 3182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3333); - if (lookahead == 'i') ADVANCE(3333); + if (lookahead == 'I') ADVANCE(3257); + if (lookahead == 'i') ADVANCE(3257); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3259: + case 3183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3333); - if (lookahead == 'i') ADVANCE(3268); + if (lookahead == 'I') ADVANCE(3257); + if (lookahead == 'i') ADVANCE(3192); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3260: + case 3184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3333); - if (lookahead == 'i') ADVANCE(3288); - if (lookahead == 'o') ADVANCE(3271); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'I') ADVANCE(3257); + if (lookahead == 'i') ADVANCE(3212); + if (lookahead == 'o') ADVANCE(3195); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3261: + case 3185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3263); - if (lookahead == 'o') ADVANCE(3247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '_') ADVANCE(3187); + if (lookahead == 'o') ADVANCE(3171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3262: + case 3186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3263); - if (lookahead == 'o') ADVANCE(3251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '_') ADVANCE(3187); + if (lookahead == 'o') ADVANCE(3175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3263: + case 3187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3263); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '_') ADVANCE(3187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3264: + case 3188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3264); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == '_') ADVANCE(3188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3265: + case 3189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'a') ADVANCE(3256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3266: + case 3190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'a') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3267: + case 3191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3293); - if (lookahead == 'o') ADVANCE(3307); - if (lookahead == 's') ADVANCE(3279); - if (lookahead == 'x') ADVANCE(3299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'a') ADVANCE(3217); + if (lookahead == 'o') ADVANCE(3231); + if (lookahead == 's') ADVANCE(3203); + if (lookahead == 'x') ADVANCE(3223); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3268: + case 3192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3269: + case 3193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3270: + case 3194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3170); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'd') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3271: + case 3195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3159); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'd') ADVANCE(3083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3272: + case 3196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'd') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3273: + case 3197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'd') ADVANCE(3240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3274: + case 3198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3269); - if (lookahead == 't') ADVANCE(3266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'e') ADVANCE(3193); + if (lookahead == 't') ADVANCE(3190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3275: + case 3199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'e') ADVANCE(3172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3276: + case 3200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'e') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3277: + case 3201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'e') ADVANCE(3176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3278: + case 3202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'e') ADVANCE(3238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3279: + case 3203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'h') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3280: + case 3204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'h') ADVANCE(3100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3281: + case 3205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'h') ADVANCE(3099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3282: + case 3206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'i') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3283: + case 3207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'i') ADVANCE(3215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3284: + case 3208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'i') ADVANCE(3246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3285: + case 3209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'i') ADVANCE(3248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3286: + case 3210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3287: + case 3211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(3163); - if (lookahead == 'r') ADVANCE(3164); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'l') ADVANCE(3087); + if (lookahead == 'r') ADVANCE(3088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3288: + case 3212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'n') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3289: + case 3213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3270); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'n') ADVANCE(3194); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3290: + case 3214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'n') ADVANCE(3097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3291: + case 3215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'n') ADVANCE(3098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3292: + case 3216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3273); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'n') ADVANCE(3197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3293: + case 3217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'n') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3294: + case 3218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3171); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3295: + case 3219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3328); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3296: + case 3220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3297: + case 3221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3298: + case 3222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3299: + case 3223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3300: + case 3224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3320); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3244); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3301: + case 3225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3302: + case 3226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3329); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'o') ADVANCE(3253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3303: + case 3227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3304: + case 3228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3305: + case 3229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3155); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3306: + case 3230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3307: + case 3231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3169); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3308: + case 3232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3168); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3309: + case 3233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3310: + case 3234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3163); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3311: + case 3235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3312: + case 3236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3313: + case 3237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3314: + case 3238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'r') ADVANCE(3237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3315: + case 3239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3316: + case 3240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 's') ADVANCE(3167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3317: + case 3241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 's') ADVANCE(3168); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3318: + case 3242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3319: + case 3243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3190); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3320: + case 3244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3321: + case 3245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3322: + case 3246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3323: + case 3247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3324: + case 3248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3325: + case 3249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3326: + case 3250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3177); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3327: + case 3251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 't') ADVANCE(3241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3328: + case 3252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'u') ADVANCE(3247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3329: + case 3253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'u') ADVANCE(3250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3330: + case 3254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'w') ADVANCE(3208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3331: + case 3255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'w') ADVANCE(3209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3332: + case 3256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3333: + case 3257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3334: + case 3258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3335: + case 3259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3336: + case 3260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3951, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3849, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3337: + case 3261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3338: + case 3262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - '_', 3264, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + '_', 3188, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1748); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3339: + case 3263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3229, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3153, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3340: + case 3264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3256, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3237, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3180, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3161, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3341: + case 3265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3233, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3230, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3157, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3154, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3342: + case 3266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '.', 3245, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'B', 4120, - 'E', 3259, - 'G', 3259, - 'K', 3259, - 'M', 3259, - 'P', 3259, - 'T', 3259, - 'a', 3289, - 'b', 4121, - 'd', 3265, - 'e', 3235, - 'g', 3258, - 'h', 3303, - 'i', 3290, - 'k', 3258, - 'm', 3260, - 'n', 3300, - 'o', 3238, - 'p', 3258, - 's', 3274, - 't', 3258, - 'u', 3315, - 'w', 3286, - 'x', 3296, - '|', 3651, - 0xb5, 3315, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '.', 3169, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'B', 4016, + 'E', 3183, + 'G', 3183, + 'K', 3183, + 'M', 3183, + 'P', 3183, + 'T', 3183, + 'a', 3213, + 'b', 4017, + 'd', 3189, + 'e', 3159, + 'g', 3182, + 'h', 3227, + 'i', 3214, + 'k', 3182, + 'm', 3184, + 'n', 3224, + 'o', 3162, + 'p', 3182, + 's', 3198, + 't', 3182, + 'u', 3239, + 'w', 3210, + 'x', 3220, + '|', 3556, + 0xb5, 3239, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3343: + case 3267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3234, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3230, - 's', 3319, - 'x', 3296, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3158, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3154, + 's', 3243, + 'x', 3220, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3344: + case 3268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1848); + if (eof) ADVANCE(1772); ADVANCE_MAP( - '\n', 3646, - '\r', 17, - '!', 3246, - '#', 5586, - '*', 3156, - '+', 3161, - '-', 3162, - '/', 3157, - ';', 3650, - '<', 3180, - '=', 523, - '>', 3183, - 'a', 3289, - 'b', 3282, - 'e', 3236, - 'i', 3290, - 'm', 3297, - 'n', 3301, - 'o', 3238, - 's', 3319, - 'x', 3296, - '|', 3651, + '\n', 3552, + '\r', 1, + '!', 3170, + '#', 5468, + '*', 3080, + '+', 3085, + '-', 3086, + '/', 3081, + ';', 3555, + '<', 3104, + '=', 453, + '>', 3107, + 'a', 3213, + 'b', 3206, + 'e', 3160, + 'i', 3214, + 'm', 3221, + 'n', 3225, + 'o', 3162, + 's', 3243, + 'x', 3220, + '|', 3556, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3334); + lookahead == ' ') SKIP(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); END_STATE(); - case 3345: + case 3269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3361); - if (lookahead == '-') ADVANCE(5378); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == '_') ADVANCE(3361); - if (lookahead == 'i') ADVANCE(3406); + if (lookahead == '+') ADVANCE(3285); + if (lookahead == '-') ADVANCE(5260); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == '_') ADVANCE(3285); + if (lookahead == 'i') ADVANCE(3330); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3346: + case 3270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3361); - if (lookahead == '-') ADVANCE(5378); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == '_') ADVANCE(3361); - if (lookahead == 'i') ADVANCE(3365); + if (lookahead == '+') ADVANCE(3285); + if (lookahead == '-') ADVANCE(5260); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == '_') ADVANCE(3285); + if (lookahead == 'i') ADVANCE(3289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3347: + case 3271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3361); - if (lookahead == '-') ADVANCE(5378); - if (lookahead == '_') ADVANCE(3361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '+') ADVANCE(3285); + if (lookahead == '-') ADVANCE(5260); + if (lookahead == '_') ADVANCE(3285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3348: + case 3272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3361); - if (lookahead == '-') ADVANCE(4634); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == '_') ADVANCE(3361); - if (lookahead == 'i') ADVANCE(3406); + if (lookahead == '+') ADVANCE(3285); + if (lookahead == '-') ADVANCE(4524); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == '_') ADVANCE(3285); + if (lookahead == 'i') ADVANCE(3330); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3349: + case 3273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3361); - if (lookahead == '-') ADVANCE(4634); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == '_') ADVANCE(3361); - if (lookahead == 'i') ADVANCE(3365); + if (lookahead == '+') ADVANCE(3285); + if (lookahead == '-') ADVANCE(4524); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == '_') ADVANCE(3285); + if (lookahead == 'i') ADVANCE(3289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3350: + case 3274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1268); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '-') ADVANCE(1195); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3351: + case 3275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1625); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '-') ADVANCE(1549); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3352: + case 3276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '-') ADVANCE(1275); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3353: + case 3277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '-') ADVANCE(1265); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3354: + case 3278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(745); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '-') ADVANCE(673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3355: + case 3279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == 'i') ADVANCE(3406); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == 'i') ADVANCE(3330); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3356: + case 3280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == 'i') ADVANCE(3365); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == 'i') ADVANCE(3289); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3357: + case 3281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3406); - if (lookahead == 'i') ADVANCE(3383); - if (lookahead == 's') ADVANCE(4130); + if (lookahead == 'I') ADVANCE(3330); + if (lookahead == 'i') ADVANCE(3307); + if (lookahead == 's') ADVANCE(4026); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3358: + case 3282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3359); - if (lookahead == 'b') ADVANCE(3415); - if (lookahead == 'o') ADVANCE(3417); - if (lookahead == 'x') ADVANCE(3418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '_') ADVANCE(3283); + if (lookahead == 'b') ADVANCE(3339); + if (lookahead == 'o') ADVANCE(3341); + if (lookahead == 'x') ADVANCE(3342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3359: + case 3283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '_') ADVANCE(3283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3360: + case 3284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '_') ADVANCE(3284); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3361: + case 3285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == '_') ADVANCE(3285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3362: + case 3286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3404); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'a') ADVANCE(3328); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3363: + case 3287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3396); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'a') ADVANCE(3320); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3364: + case 3288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3377); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'a') ADVANCE(3301); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3365: + case 3289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(4126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3366: + case 3290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(4130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'c') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3367: + case 3291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3374); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'd') ADVANCE(3298); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3368: + case 3292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3378); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3302); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3369: + case 3293: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3274); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3370: + case 3294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(4026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3922); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3371: + case 3295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(4034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3372: + case 3296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3366); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3290); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3373: + case 3297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3682); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3587); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3374: + case 3298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3845); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'e') ADVANCE(3744); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3375: + case 3299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(3367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'i') ADVANCE(3291); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3376: + case 3300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(4130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'k') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3377: + case 3301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3398); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'l') ADVANCE(3322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3378: + case 3302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3379); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'l') ADVANCE(3303); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3379: + case 3303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3353); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'l') ADVANCE(3277); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3380: + case 3304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3354); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'l') ADVANCE(3278); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3381: + case 3305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3380); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'l') ADVANCE(3304); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3382: + case 3306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(3389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'm') ADVANCE(3313); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3383: + case 3307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(4130); + if (lookahead == 'n') ADVANCE(4026); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3384: + case 3308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3767); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'n') ADVANCE(3666); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3385: + case 3309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'n') ADVANCE(3293); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3386: + case 3310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3400); + if (lookahead == 'o') ADVANCE(3324); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3410); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'a') ADVANCE(3334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3387: + case 3311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3391); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'o') ADVANCE(3315); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3388: + case 3312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3392); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'o') ADVANCE(3316); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3389: + case 3313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3388); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'p') ADVANCE(3312); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3390: + case 3314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3387); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(3311); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3391: + case 3315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3702); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(3607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3392: + case 3316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3401); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(3325); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3393: + case 3317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(4130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3394: + case 3318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3390); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(3314); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3395: + case 3319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3402); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(3326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3396: + case 3320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'r') ADVANCE(3275); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3397: + case 3321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(4130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 's') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3398: + case 3322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 's') ADVANCE(3295); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3399: + case 3323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3373); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 's') ADVANCE(3297); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3400: + case 3324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3416); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 't') ADVANCE(3340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3401: + case 3325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 't') ADVANCE(3276); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3402: + case 3326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'u') ADVANCE(3294); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3403: + case 3327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3381); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'u') ADVANCE(3305); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3404: + case 3328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(4130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if (lookahead == 'y') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3405: + case 3329: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3410); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'a') ADVANCE(3334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3406: + case 3330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4126); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3407: + case 3331: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3409); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'f') ADVANCE(3333); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3408: + case 3332: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3413); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'i') ADVANCE(3337); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3409: + case 3333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3412); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'i') ADVANCE(3336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3410: + case 3334: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3419); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'n') ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3411: + case 3335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3407); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'n') ADVANCE(3331); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3412: + case 3336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3408); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'n') ADVANCE(3332); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3413: + case 3337: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3414); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 't') ADVANCE(3338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3414: + case 3338: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3419); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == 'y') ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3415: + case 3339: ACCEPT_TOKEN(sym_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3415); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == '_') ADVANCE(3339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3416: + case 3340: ACCEPT_TOKEN(sym_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3417: + case 3341: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3417); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == '_') ADVANCE(3341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3418: + case 3342: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3418); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 3419: + case 3343: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + END_STATE(); + case 3344: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4406); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'r') ADVANCE(3439); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3345: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4399); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'u') ADVANCE(3462); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3346: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4407); + if (lookahead == '>') ADVANCE(4243); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3347: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(4400); + if (lookahead == '>') ADVANCE(4247); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3348: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(1185); + if (lookahead == '>') ADVANCE(1573); + if (lookahead == 'r') ADVANCE(3442); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3349: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(759); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'u') ADVANCE(3464); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3350: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(1230); + if (lookahead == '>') ADVANCE(1576); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3351: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(817); + if (lookahead == '>') ADVANCE(1578); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3352: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(3512); + if (lookahead == '_') ADVANCE(3362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3353: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(3382); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + END_STATE(); + case 3354: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(3384); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + END_STATE(); + case 3355: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(3387); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + END_STATE(); + case 3356: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(3389); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + END_STATE(); + case 3357: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '-') ADVANCE(3513); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3358: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == ':') ADVANCE(4450); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3359: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'N') ADVANCE(3486); + if (lookahead == 'f') ADVANCE(3519); + if (lookahead == 'n') ADVANCE(3487); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3360: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T') ADVANCE(3514); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3361: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(3362); + if (lookahead == 'b') ADVANCE(4013); + if (lookahead == 'o') ADVANCE(4029); + if (lookahead == 'x') ADVANCE(4034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3362: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(3362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3363: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(3362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3364: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(3362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3365: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '_') ADVANCE(3362); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3366: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3413); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3367: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3412); + if (lookahead == 'o') ADVANCE(3376); + if (lookahead == 'u') ADVANCE(3465); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3368: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3411); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3369: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3481); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3370: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3460); + if (lookahead == 'o') ADVANCE(3424); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3371: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3456); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3372: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'a') ADVANCE(3421); + if (lookahead == 'o') ADVANCE(3448); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3373: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(3404); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3374: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(3388); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3375: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'c') ADVANCE(3405); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3376: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(3475); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3377: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'd') ADVANCE(3383); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3378: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3920); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3379: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3928); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3380: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3401); + if (lookahead == 'o') ADVANCE(3518); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3381: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3402); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3382: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3425); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + END_STATE(); + case 3383: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3354); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3384: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3426); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + END_STATE(); + case 3385: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3368); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3386: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3461); + if (lookahead == 'o') ADVANCE(3432); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3387: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3427); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + END_STATE(); + case 3388: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3356); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3389: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3428); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + END_STATE(); + case 3390: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3447); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3391: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3444); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3392: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3526); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3393: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3528); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3394: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3531); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3395: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3533); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3396: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3539); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3397: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3542); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3398: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3544); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3399: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3549); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3400: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'e') ADVANCE(3450); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3401: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'f') ADVANCE(3521); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3402: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'g') ADVANCE(3409); + if (lookahead == 't') ADVANCE(3472); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3403: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'h') ADVANCE(3410); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3404: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'h') ADVANCE(3536); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3405: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'h') ADVANCE(3541); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3406: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(3377); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3407: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(3371); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3408: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(3431); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3409: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(3454); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3410: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'i') ADVANCE(3422); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3411: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'k') ADVANCE(3535); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3412: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'k') ADVANCE(3394); + if (lookahead == 't') ADVANCE(3375); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3413: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3453); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3414: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3912); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3415: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3407); + if (lookahead == 's') ADVANCE(3517); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3416: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3414); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3417: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3369); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3418: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3419); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + END_STATE(); + case 3419: + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'l') ADVANCE(3532); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4516); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'r') ADVANCE(3525); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'l') ADVANCE(3458); + if (lookahead == 'r') ADVANCE(3443); + if (lookahead == 'x') ADVANCE(3437); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4509); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'u') ADVANCE(3549); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'l') ADVANCE(3459); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4517); - if (lookahead == '>') ADVANCE(4335); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'l') ADVANCE(3397); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4510); - if (lookahead == '>') ADVANCE(4339); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'l') ADVANCE(3398); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1258); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'r') ADVANCE(3528); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'n') ADVANCE(3457); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(831); - if (lookahead == '>') ADVANCE(1650); - if (lookahead == 'u') ADVANCE(3551); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'n') ADVANCE(3477); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); case 3426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '>') ADVANCE(1652); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'n') ADVANCE(3478); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); case 3427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(889); - if (lookahead == '>') ADVANCE(1654); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'n') ADVANCE(3480); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); case 3428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3600); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'n') ADVANCE(3479); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); case 3429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3466); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 'n') ADVANCE(3543); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3468); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'n') ADVANCE(3545); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3471); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'n') ADVANCE(3474); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3473); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'o') ADVANCE(3436); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3602); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'o') ADVANCE(3470); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3606); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'o') ADVANCE(3446); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3608); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'o') ADVANCE(3449); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(1687); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'p') ADVANCE(3530); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(4560); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'p') ADVANCE(3434); + if (lookahead == 't') ADVANCE(3391); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(3573); - if (lookahead == 'f') ADVANCE(3613); - if (lookahead == 'n') ADVANCE(3574); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3468); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(3603); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3346); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(3604); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3473); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (lookahead == 'b') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(4133); - if (lookahead == 'x') ADVANCE(4138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3374); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (lookahead == 'b') ADVANCE(4117); - if (lookahead == 'o') ADVANCE(4133); - if (lookahead == 'x') ADVANCE(4138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3350); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3443); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3435); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3428); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3429); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3385); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3463); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3435); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3417); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3522); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3538); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3497); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3550); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3496); - if (lookahead == 'o') ADVANCE(3460); - if (lookahead == 'u') ADVANCE(3552); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'r') ADVANCE(3430); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3495); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3756); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3568); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3379); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3546); - if (lookahead == 'o') ADVANCE(3508); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3467); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3542); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3392); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3505); - if (lookahead == 'o') ADVANCE(3534); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3534); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3488); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3466); + if (lookahead == 't') ADVANCE(3408); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3472); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3393); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3489); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 's') ADVANCE(3396); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3562); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3373); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3467); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3353); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(4024); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3347); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(4032); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3355); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3485); - if (lookahead == 'o') ADVANCE(3612); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3351); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3465: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3486); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3524); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3466: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3509); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == 't') ADVANCE(3537); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3467: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3430); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 't') ADVANCE(3400); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3468: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3511); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == 'u') ADVANCE(3378); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3452); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'u') ADVANCE(3416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3494); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3470: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3547); - if (lookahead == 'o') ADVANCE(3517); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'u') ADVANCE(3441); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3471: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3512); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (lookahead == 'u') ADVANCE(3418); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3499); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3472: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3432); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'u') ADVANCE(3451); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3473: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3513); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (lookahead == 'u') ADVANCE(3395); + if (lookahead == 'y') ADVANCE(3525); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3474: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3533); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'u') ADVANCE(3399); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3475: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3530); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'u') ADVANCE(3423); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3476: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3620); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'v') ADVANCE(3390); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3477: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3622); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'v') ADVANCE(3529); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); case 3478: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3625); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'v') ADVANCE(3540); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); case 3479: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3627); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'v') ADVANCE(3548); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); case 3480: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3633); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'v') ADVANCE(3551); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); case 3481: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3636); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'y') ADVANCE(3547); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3482: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3638); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == '-' || + lookahead == '?') ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3482); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3483: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3643); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3494); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3484: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3536); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3499); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3485: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(3615); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3493); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3486: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(3493); - if (lookahead == 't') ADVANCE(3559); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3489); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3487: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3494); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3491); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3488: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3630); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3501); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3489: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3635); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3498); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3490: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3461); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3502); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3491: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3455); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3500); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3492: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3516); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3503); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3493: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3540); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3497); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3494: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3506); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3495: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3629); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3485); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3496: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3478); - if (lookahead == 't') ADVANCE(3459); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3486); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3497: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3539); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3488); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3498: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(4016); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3490); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3499: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3491); - if (lookahead == 's') ADVANCE(3611); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3520); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3500: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3498); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3492); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3501: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3453); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3504); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3502: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3503); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3506); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3503: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3626); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3505); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3504: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3544); - if (lookahead == 'r') ADVANCE(3529); - if (lookahead == 'x') ADVANCE(3523); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3505: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3545); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3523); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3506: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3481); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3527); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3507: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3482); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3507); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3508: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3543); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3508); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3509: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3564); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3510: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3765); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3511: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3565); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3512: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3567); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3513: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3566); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3514: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3637); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3515: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3639); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3515); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3516: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3561); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3517: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3522); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); END_STATE(); case 3518: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3557); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3518); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); END_STATE(); case 3519: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3548); - if (lookahead == 'u') ADVANCE(3500); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3581); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); END_STATE(); case 3520: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3532); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 3521: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3535); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); END_STATE(); case 3522: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3624); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); case 3523: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3520); - if (lookahead == 't') ADVANCE(3475); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3524: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3555); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); END_STATE(); case 3525: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3422); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); END_STATE(); case 3526: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3560); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); END_STATE(); case 3527: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3458); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3528: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3426); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); END_STATE(); case 3529: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3521); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); END_STATE(); case 3530: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3514); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); END_STATE(); case 3531: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3469); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); END_STATE(); case 3532: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3550); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); END_STATE(); case 3533: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3501); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); END_STATE(); case 3534: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3616); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); END_STATE(); case 3535: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3632); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); END_STATE(); case 3536: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3644); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); END_STATE(); case 3537: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3515); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); END_STATE(); case 3538: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3857); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); END_STATE(); case 3539: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3463); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); END_STATE(); case 3540: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3554); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); case 3541: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3476); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); END_STATE(); case 3542: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3628); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); END_STATE(); case 3543: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3553); - if (lookahead == 't') ADVANCE(3492); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); END_STATE(); case 3544: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3477); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); END_STATE(); case 3545: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3480); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); END_STATE(); case 3546: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3457); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); END_STATE(); case 3547: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3429); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); END_STATE(); case 3548: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3595); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); case 3549: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3423); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); END_STATE(); case 3550: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3431); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); END_STATE(); case 3551: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3427); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); END_STATE(); case 3552: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3618); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 3553: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3631); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(4095); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3553); END_STATE(); case 3554: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3484); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3554); END_STATE(); case 3555: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3462); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 3556: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3500); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3581); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 3557: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3527); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 3558: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3502); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3586); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 3559: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3537); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 3560: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3479); - if (lookahead == 'y') ADVANCE(3619); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 3561: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3483); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 3562: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3507); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 3563: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3474); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 3564: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3623); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 3565: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3634); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 3566: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3642); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == ',') ADVANCE(2886); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 3567: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3645); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + ACCEPT_TOKEN(anon_sym_def); + if (lookahead == ',') ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2884); END_STATE(); case 3568: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(3641); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_def); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2886); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2885); END_STATE(); case 3569: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(3610); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3569); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); END_STATE(); case 3570: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3581); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(2894); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5347); END_STATE(); case 3571: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3586); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); END_STATE(); case 3572: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3580); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); END_STATE(); case 3573: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3576); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 3574: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3578); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == ',') ADVANCE(2897); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); END_STATE(); case 3575: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3588); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == ',') ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); END_STATE(); case 3576: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3585); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + ACCEPT_TOKEN(anon_sym_extern); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2897); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2896); END_STATE(); case 3577: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3589); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); END_STATE(); case 3578: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3587); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 3579: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3590); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == ',') ADVANCE(2900); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 3580: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3584); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == ',') ADVANCE(2900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); END_STATE(); case 3581: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3610); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_module); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2900); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2899); END_STATE(); case 3582: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3572); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); END_STATE(); case 3583: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3573); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 3584: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3575); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == ',') ADVANCE(2892); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); END_STATE(); case 3585: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3577); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + ACCEPT_TOKEN(anon_sym_use); + if (lookahead == ',') ADVANCE(2892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); END_STATE(); case 3586: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3614); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_use); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2892); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2891); END_STATE(); case 3587: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3579); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3588: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3591); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); END_STATE(); case 3589: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3593); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 3590: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3592); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 3591: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3610); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 3592: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3617); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 3593: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3621); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 3594: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3594); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 3595: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 3596: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3596); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 3597: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3433); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(4084); + if (lookahead == '\'') ADVANCE(4080); END_STATE(); case 3598: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3439); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(4084); + if (lookahead == '\'') ADVANCE(4080); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3599: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3437); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(4085); + if (lookahead == '\'') ADVANCE(4081); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); case 3600: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3597); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 3601: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3436); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3602: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3598); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3603: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3599); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 3604: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3601); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_error); + if (lookahead == ',') ADVANCE(2966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5329); END_STATE(); case 3605: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3440); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_error); + if (lookahead == ',') ADVANCE(2966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); case 3606: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3605); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_error); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2966); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2965); END_STATE(); case 3607: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3434); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_error); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3608: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3607); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_error); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); END_STATE(); case 3609: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3609); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 3610: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 3611: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 3612: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 3613: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 3614: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(3787); END_STATE(); case 3615: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(3788); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3616: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3616); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 3617: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 3618: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 3619: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3619); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 3620: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 3621: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3622: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3622); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 3623: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3624: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 3625: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); END_STATE(); case 3626: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3627: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(437); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3628: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3629: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(4513); + if (lookahead == '_') ADVANCE(4486); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4628); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3630: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(5255); + if (lookahead == '_') ADVANCE(5245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3631: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3631); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(4518); + if (lookahead == '_') ADVANCE(4487); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4628); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3632: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3623); + if (lookahead == '.') ADVANCE(4703); + if (lookahead == '_') ADVANCE(4679); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3633: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3634: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3621); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(4309); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4313); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3635: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3621); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3636: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(3622); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 3637: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '=') ADVANCE(1806); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3638: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3639: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(432); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3640: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3115); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(5358); + if (lookahead == '_') ADVANCE(5349); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); case 3641: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(437); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1592); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3642: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3643: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(4513); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3644: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(5254); + if (lookahead == '_') ADVANCE(5243); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3645: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(5255); + if (lookahead == '_') ADVANCE(5245); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3646: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '=') ADVANCE(1806); END_STATE(); case 3647: - ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(4199); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(516); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3648: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(3647); - if (lookahead == '\r') ADVANCE(16); - if (lookahead == ':') ADVANCE(4199); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3648); - if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(516); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 3649: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3649); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ',') ADVANCE(2987); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5326); END_STATE(); case 3650: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ',') ADVANCE(2987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 3651: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_break); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2987); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2986); END_STATE(); case 3652: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_break); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); END_STATE(); case 3653: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ',') ADVANCE(2990); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5345); END_STATE(); case 3654: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ',') ADVANCE(2990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3655: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_continue); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2990); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2989); END_STATE(); case 3656: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_continue); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); END_STATE(); case 3657: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ',') ADVANCE(2957); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5302); END_STATE(); case 3658: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ',') ADVANCE(2957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); END_STATE(); case 3659: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'm') ADVANCE(2952); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2957); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); END_STATE(); case 3660: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); END_STATE(); case 3661: - ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 3662: - ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); + ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == ',') ADVANCE(3024); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3663: - ACCEPT_TOKEN(anon_sym_def); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2962); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2961); + ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == ',') ADVANCE(3024); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5288); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); case 3664: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); + ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == 'p') ADVANCE(3011); + if (lookahead == 't') ADVANCE(3007); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3013); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); END_STATE(); case 3665: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2970); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5465); + ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); END_STATE(); case 3666: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + ACCEPT_TOKEN(anon_sym_in2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3667: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + ACCEPT_TOKEN(anon_sym_in2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3668: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == ',') ADVANCE(2960); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5321); END_STATE(); case 3669: - ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2973); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == ',') ADVANCE(2960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 3670: - ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); - END_STATE(); - case 3671: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2973); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); + lookahead == '@') ADVANCE(2960); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2959); + END_STATE(); + case 3671: + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); END_STATE(); case 3672: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); + ACCEPT_TOKEN(anon_sym_make); END_STATE(); case 3673: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_make); + if (lookahead == ',') ADVANCE(3027); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); END_STATE(); case 3674: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2976); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); + ACCEPT_TOKEN(anon_sym_make); + if (lookahead == ',') ADVANCE(3027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3675: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); - END_STATE(); - case 3676: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); + lookahead == '@') ADVANCE(3027); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3026); + END_STATE(); + case 3676: + ACCEPT_TOKEN(anon_sym_make); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); END_STATE(); case 3677: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ',') ADVANCE(2963); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5332); END_STATE(); case 3678: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ',') ADVANCE(2963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); case 3679: - ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2968); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5427); + ACCEPT_TOKEN(anon_sym_while); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2963); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2962); END_STATE(); case 3680: - ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); END_STATE(); case 3681: - ACCEPT_TOKEN(anon_sym_use); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2968); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2967); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 3682: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ',') ADVANCE(2969); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5286); END_STATE(); case 3683: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ',') ADVANCE(2969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); END_STATE(); case 3684: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_do); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2969); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2968); END_STATE(); case 3685: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_do); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); END_STATE(); case 3686: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 3687: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ',') ADVANCE(2972); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); END_STATE(); case 3688: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ',') ADVANCE(2972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 3689: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_if); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2971); END_STATE(); case 3690: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); END_STATE(); case 3691: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3692: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4188); - if (lookahead == '\'') ADVANCE(4184); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 3693: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4188); - if (lookahead == '\'') ADVANCE(4184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ',') ADVANCE(2975); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5316); END_STATE(); case 3694: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4189); - if (lookahead == '\'') ADVANCE(4185); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ',') ADVANCE(2975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 3695: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + ACCEPT_TOKEN(anon_sym_else); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2975); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2974); END_STATE(); case 3696: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); END_STATE(); case 3697: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 3698: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == ',') ADVANCE(2984); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 3699: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(3042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5447); + ACCEPT_TOKEN(anon_sym_match); + if (lookahead == ',') ADVANCE(2984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 3700: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(3042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); - END_STATE(); - case 3701: - ACCEPT_TOKEN(anon_sym_error); + ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3042); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3041); + lookahead == '@') ADVANCE(2984); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2983); + END_STATE(); + case 3701: + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); END_STATE(); case 3702: - ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 3703: - ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 3704: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 3705: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_EQ_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3706: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(3283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3707: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3708: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(1899); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3709: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3888); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(4355); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3710: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3889); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(4906); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3711: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3712: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3867); + if (lookahead == '=') ADVANCE(3864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3713: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3866); + if (lookahead == '=') ADVANCE(3863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3714: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 3715: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 3716: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == ',') ADVANCE(2978); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5308); END_STATE(); case 3717: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == ',') ADVANCE(2978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 3718: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_try); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2978); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2977); END_STATE(); case 3719: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); END_STATE(); case 3720: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 3721: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ',') ADVANCE(2981); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5327); END_STATE(); case 3722: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(540); - if (lookahead == '_') ADVANCE(503); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ',') ADVANCE(2981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 3723: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(540); - if (lookahead == '_') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_catch); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2981); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2980); END_STATE(); case 3724: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4596); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4741); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); END_STATE(); case 3725: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ',') ADVANCE(2993); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); END_STATE(); case 3726: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(5373); - if (lookahead == '_') ADVANCE(5363); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ',') ADVANCE(2993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 3727: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4741); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_return); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2993); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); END_STATE(); case 3728: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3718); - if (lookahead == '.') ADVANCE(4817); - if (lookahead == '_') ADVANCE(4793); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4991); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_return); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); END_STATE(); case 3729: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == '-') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); END_STATE(); case 3730: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3716); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(4403); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == '-') ADVANCE(5340); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5343); END_STATE(); case 3731: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3716); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(2935); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2942); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2941); END_STATE(); case 3732: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3717); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(2935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); case 3733: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '=') ADVANCE(1882); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (lookahead == ',') ADVANCE(2942); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5343); END_STATE(); case 3734: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if (lookahead == ',') ADVANCE(2942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); END_STATE(); case 3735: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(499); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); END_STATE(); case 3736: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(4403); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2948); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); END_STATE(); case 3737: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5476); - if (lookahead == '_') ADVANCE(5467); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5476); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + ACCEPT_TOKEN(anon_sym_register); + if (lookahead == ',') ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); END_STATE(); case 3738: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4817); - if (lookahead == '_') ADVANCE(4793); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4991); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_register); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2948); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2947); END_STATE(); case 3739: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(540); - if (lookahead == '_') ADVANCE(503); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_register); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); END_STATE(); case 3740: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(540); - if (lookahead == '_') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == '-') ADVANCE(2919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); END_STATE(); case 3741: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == '-') ADVANCE(5317); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); case 3742: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5372); - if (lookahead == '_') ADVANCE(5361); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5392); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == '-') ADVANCE(2923); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2929); END_STATE(); case 3743: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5373); - if (lookahead == '_') ADVANCE(5363); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5392); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_hide); + if (lookahead == '-') ADVANCE(2923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); case 3744: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4597); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4741); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_hide); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3745: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(1882); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if (lookahead == ',') ADVANCE(2930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); case 3746: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if (lookahead == ',') ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); END_STATE(); case 3747: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); END_STATE(); case 3748: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(3063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5444); + ACCEPT_TOKEN(anon_sym_overlay); + if (lookahead == ',') ADVANCE(2945); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5344); END_STATE(); case 3749: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3061); + ACCEPT_TOKEN(anon_sym_overlay); + if (lookahead == ',') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3750: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3062); + lookahead == '@') ADVANCE(2945); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2944); END_STATE(); case 3751: - ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3063); + ACCEPT_TOKEN(anon_sym_overlay); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); END_STATE(); case 3752: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(3066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5463); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 3753: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(2996); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5285); END_STATE(); case 3754: - ACCEPT_TOKEN(anon_sym_continue); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3066); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3065); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == ',') ADVANCE(2996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 3755: - ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3066); + ACCEPT_TOKEN(anon_sym_as); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2996); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2995); END_STATE(); case 3756: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(3033); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5420); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3757: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + ACCEPT_TOKEN(anon_sym_as); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3758: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == 'm') ADVANCE(3028); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3032); + ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); END_STATE(); case 3759: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3033); + ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3760: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 3761: - ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3082); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(3795); END_STATE(); case 3762: - ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3100); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5406); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(3795); + if (lookahead == '=') ADVANCE(1807); END_STATE(); case 3763: - ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == 'p') ADVANCE(3087); - if (lookahead == 't') ADVANCE(3083); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3089); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3100); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3099); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(3796); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3764: - ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3100); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 3765: - ACCEPT_TOKEN(anon_sym_in2); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 3766: - ACCEPT_TOKEN(anon_sym_in2); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 3767: - ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3768: - ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 3769: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(3036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5439); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3770: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(3036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3034); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 3771: - ACCEPT_TOKEN(anon_sym_loop); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3035); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3772: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 3773: - ACCEPT_TOKEN(anon_sym_make); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3774: - ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3103); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5440); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 3775: - ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3103); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3101); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3776: - ACCEPT_TOKEN(anon_sym_make); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3103); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3102); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 3777: - ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3103); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3778: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(3039); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5450); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 3779: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3037); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3780: - ACCEPT_TOKEN(anon_sym_while); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 3781: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3782: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 3783: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(3045); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5404); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(3785); END_STATE(); case 3784: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(3045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3785: - ACCEPT_TOKEN(anon_sym_do); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3045); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3044); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 3786: - ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); + ACCEPT_TOKEN(anon_sym_LT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3787: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 3788: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(3048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); + ACCEPT_TOKEN(anon_sym_GT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3789: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(3048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 3790: - ACCEPT_TOKEN(anon_sym_if); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3047); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3791: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 3792: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3793: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 3794: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(3051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5434); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 3795: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 3796: - ACCEPT_TOKEN(anon_sym_else); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3051); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3050); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3797: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3051); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 3798: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(1809); END_STATE(); case 3799: - ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(3060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5449); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3800: - ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3058); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(3807); END_STATE(); case 3801: - ACCEPT_TOKEN(anon_sym_match); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3059); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(3807); + if (lookahead == '=') ADVANCE(1808); END_STATE(); case 3802: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3060); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(3808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3803: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3804: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 3805: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_mod2); + if (lookahead == 'u') ADVANCE(2631); END_STATE(); case 3806: - ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3807: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 3808: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4493); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3809: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1975); - if (lookahead == '<') ADVANCE(3969); - if (lookahead == '=') ADVANCE(3966); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(3797); END_STATE(); case 3810: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4465); - if (lookahead == '<') ADVANCE(3969); - if (lookahead == '=') ADVANCE(3966); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(3797); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3811: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(5023); - if (lookahead == '<') ADVANCE(3969); - if (lookahead == '=') ADVANCE(3966); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(3797); + if (lookahead == '.') ADVANCE(4513); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3812: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3969); - if (lookahead == '=') ADVANCE(3966); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(3798); + if (lookahead == '.') ADVANCE(2441); + if (lookahead == '=') ADVANCE(1805); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3813: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3971); - if (lookahead == '=') ADVANCE(3968); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(3798); + if (lookahead == '=') ADVANCE(1805); END_STATE(); case 3814: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3970); - if (lookahead == '=') ADVANCE(3967); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(3799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3815: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(2441); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3816: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(5357); + if (lookahead == '_') ADVANCE(5348); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5357); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); case 3817: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(3054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5426); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(1923); + if (lookahead == '_') ADVANCE(1912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3818: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3052); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(2446); + if (lookahead == '_') ADVANCE(2068); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3819: - ACCEPT_TOKEN(anon_sym_try); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3054); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3053); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(1928); + if (lookahead == '_') ADVANCE(1913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3820: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 3821: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3822: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(3057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5445); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 3823: - ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(3057); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3824: - ACCEPT_TOKEN(anon_sym_catch); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3057); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3056); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 3825: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3057); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3826: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(3069); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5457); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 3827: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3067); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3828: - ACCEPT_TOKEN(anon_sym_return); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3068); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 3829: - ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3830: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == '-') ADVANCE(3007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 3831: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == '-') ADVANCE(5458); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1899); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3832: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(3011); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3018); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3017); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1898); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3833: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(3617); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3834: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(3018); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3835: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3010); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 3836: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3018); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(5238); + if (lookahead == '_') ADVANCE(5251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); END_STATE(); case 3837: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(3024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5464); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3838: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(3024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3022); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3839: - ACCEPT_TOKEN(anon_sym_register); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); END_STATE(); case 3840: - ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5021); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3841: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == '-') ADVANCE(2995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); END_STATE(); case 3842: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == '-') ADVANCE(5435); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); END_STATE(); case 3843: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2999); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3006); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3005); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 3844: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3845: - ACCEPT_TOKEN(anon_sym_hide); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3831); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3846: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(3006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3847: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2998); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1910); + if (lookahead == '_') ADVANCE(1924); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3848: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1910); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); END_STATE(); case 3849: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(3021); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5462); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3834); END_STATE(); case 3850: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3019); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3851: - ACCEPT_TOKEN(anon_sym_overlay); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3020); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3852: - ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3021); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3853: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(5025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 3854: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(3072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5403); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3855: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(5240); END_STATE(); case 3856: - ACCEPT_TOKEN(anon_sym_as); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3072); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3071); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(5240); + if (lookahead == '_') ADVANCE(5256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3857: - ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3832); + if (lookahead == '_') ADVANCE(1924); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3858: - ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3833); END_STATE(); case 3859: - ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3072); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(4514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); END_STATE(); case 3860: - ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(5021); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3861: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(5256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3862: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3896); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 3863: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3896); - if (lookahead == '=') ADVANCE(1883); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3864: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3865: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 3866: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3867: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3868: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 3869: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 3870: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4445); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3871: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4979); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3872: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4639); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3873: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(5081); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3874: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3882); END_STATE(); case 3875: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); END_STATE(); case 3876: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3886); END_STATE(); case 3877: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); END_STATE(); case 3878: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(2845); + if (lookahead == 'o') ADVANCE(2847); + if (lookahead == 'x') ADVANCE(2854); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3879: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(2040); + if (lookahead == 'o') ADVANCE(2041); + if (lookahead == 'x') ADVANCE(2042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3880: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3881: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3872); END_STATE(); case 3882: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3881); END_STATE(); case 3883: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3870); END_STATE(); case 3884: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3886); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); END_STATE(); case 3885: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3873); END_STATE(); case 3886: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3885); END_STATE(); case 3887: - ACCEPT_TOKEN(anon_sym_LT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3871); END_STATE(); case 3888: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3887); END_STATE(); case 3889: - ACCEPT_TOKEN(anon_sym_GT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3882); END_STATE(); case 3890: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); END_STATE(); case 3891: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3886); END_STATE(); case 3892: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); END_STATE(); case 3893: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3894: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 3895: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3895); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3896: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(3896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3897: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3897); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); END_STATE(); case 3898: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); END_STATE(); case 3899: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(1885); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3899); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); END_STATE(); case 3900: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3900); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); END_STATE(); case 3901: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3908); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3901); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); END_STATE(); case 3902: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3908); - if (lookahead == '=') ADVANCE(1884); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3903: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3903); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3904: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3904); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); END_STATE(); case 3905: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3905); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3906: - ACCEPT_TOKEN(anon_sym_mod2); - if (lookahead == 'u') ADVANCE(2707); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3906); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5098); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); END_STATE(); case 3907: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3907); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); END_STATE(); case 3908: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3908); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); END_STATE(); case 3909: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(3909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); END_STATE(); case 3910: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3898); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 3911: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3898); - if (lookahead == '.') ADVANCE(540); - if (lookahead == '_') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_null); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3048); END_STATE(); case 3912: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3898); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3913: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3899); - if (lookahead == '.') ADVANCE(2517); - if (lookahead == '=') ADVANCE(1881); - if (lookahead == '_') ADVANCE(2136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3914: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3899); - if (lookahead == '=') ADVANCE(1881); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); END_STATE(); case 3915: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3900); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3916: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2517); - if (lookahead == '_') ADVANCE(2136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3917: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(5475); - if (lookahead == '_') ADVANCE(5466); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 3918: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1999); - if (lookahead == '_') ADVANCE(1988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 3919: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2522); - if (lookahead == '_') ADVANCE(2144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_true); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3042); END_STATE(); case 3920: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2004); - if (lookahead == '_') ADVANCE(1989); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3921: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3922: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3923: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); END_STATE(); case 3924: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3925: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3926: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 3927: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_false); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3045); END_STATE(); case 3928: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 3929: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 3930: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3931: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); END_STATE(); case 3932: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1975); - if (lookahead == '<') ADVANCE(3973); - if (lookahead == '=') ADVANCE(3972); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 3933: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1974); - if (lookahead == '<') ADVANCE(3973); - if (lookahead == '=') ADVANCE(3972); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 3934: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(3712); - if (lookahead == '<') ADVANCE(3973); - if (lookahead == '=') ADVANCE(3972); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 3935: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3973); - if (lookahead == '=') ADVANCE(3972); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); case 3936: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2851); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3937: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5356); - if (lookahead == '_') ADVANCE(5369); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4445); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3938: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4979); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3939: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(5233); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3940: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4639); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3941: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(5081); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3942: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(542); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(1614); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3943: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3953); END_STATE(); case 3944: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); END_STATE(); case 3945: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); END_STATE(); case 3946: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); END_STATE(); case 3947: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3932); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); END_STATE(); case 3948: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2139); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); END_STATE(); case 3949: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1986); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); END_STATE(); case 3950: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1986); - if (lookahead == '_') ADVANCE(2005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(2845); + if (lookahead == 'o') ADVANCE(2847); + if (lookahead == 'x') ADVANCE(2854); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3951: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3935); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(2040); + if (lookahead == 'o') ADVANCE(2041); + if (lookahead == 'x') ADVANCE(2042); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3952: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3936); END_STATE(); case 3953: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3952); END_STATE(); case 3954: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(5047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3937); END_STATE(); case 3955: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); END_STATE(); case 3956: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(5143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3938); END_STATE(); case 3957: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5358); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); END_STATE(); case 3958: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5358); - if (lookahead == '_') ADVANCE(5374); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3942); END_STATE(); case 3959: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3933); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); END_STATE(); case 3960: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(502); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3939); END_STATE(); case 3961: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3934); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); END_STATE(); case 3962: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(2518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3940); END_STATE(); case 3963: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); END_STATE(); case 3964: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); END_STATE(); case 3965: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5374); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); END_STATE(); case 3966: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3953); END_STATE(); case 3967: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); END_STATE(); case 3968: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); END_STATE(); case 3969: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); END_STATE(); case 3970: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); END_STATE(); case 3971: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); END_STATE(); case 3972: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); END_STATE(); case 3973: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3974: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4555); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(3974); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3975: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5096); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3975); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5252); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); END_STATE(); case 3976: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4753); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 3977: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5198); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3977); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5192); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); END_STATE(); case 3978: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3978); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3979: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3979); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3980: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3980); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3981: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3981); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3982: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (lookahead == 'b') ADVANCE(2921); - if (lookahead == 'o') ADVANCE(2923); - if (lookahead == 'x') ADVANCE(2930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3982); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); END_STATE(); case 3983: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (lookahead == 'b') ADVANCE(2116); - if (lookahead == 'o') ADVANCE(2117); - if (lookahead == 'x') ADVANCE(2118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(3983); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3984: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5029); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 3985: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(3985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); END_STATE(); case 3986: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + ACCEPT_TOKEN(aux_sym__val_number_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); END_STATE(); case 3987: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + ACCEPT_TOKEN(aux_sym__val_number_token2); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3987); END_STATE(); case 3988: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + ACCEPT_TOKEN(aux_sym__val_number_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); END_STATE(); case 3989: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + ACCEPT_TOKEN(aux_sym__val_number_token4); END_STATE(); case 3990: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == ',') ADVANCE(3064); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); case 3991: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3057); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3064); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); END_STATE(); case 3992: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); END_STATE(); case 3993: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3986); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4433); END_STATE(); case 3994: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4968); END_STATE(); case 3995: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5224); END_STATE(); case 3996: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3984); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3992); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4627); END_STATE(); case 3997: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3997); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5070); END_STATE(); case 3998: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3998); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1598); END_STATE(); case 3999: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(aux_sym__val_number_token5); END_STATE(); case 4000: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); - if (lookahead == '_') ADVANCE(4000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == ',') ADVANCE(3074); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); case 4001: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4001); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4001); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); case 4002: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1594); END_STATE(); case 4003: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4003); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4003); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4970); END_STATE(); case 4004: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4004); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4625); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5226); END_STATE(); case 4005: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4005); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4500); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4630); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4006); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(546); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4006); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5072); END_STATE(); case 4007: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4007); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); + ACCEPT_TOKEN(aux_sym__val_number_token6); END_STATE(); case 4008: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4008); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5052); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); + ACCEPT_TOKEN(aux_sym__val_number_token6); + if (lookahead == ',') ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 4009: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4009); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5375); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); + ACCEPT_TOKEN(aux_sym__val_number_token6); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); END_STATE(); case 4010: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4010); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5215); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4010); + ACCEPT_TOKEN(aux_sym__val_number_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); END_STATE(); case 4011: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4011); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4770); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4011); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3987); END_STATE(); case 4012: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(4012); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5399); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4012); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 4013: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(4013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3507); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); case 4014: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4342); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); case 4015: - ACCEPT_TOKEN(anon_sym_null); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3125); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3124); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5158); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); case 4016: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); case 4017: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(3242); END_STATE(); case 4018: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3125); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(4593); END_STATE(); case 4019: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'i') ADVANCE(1447); END_STATE(); case 4020: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'r') ADVANCE(1960); END_STATE(); case 4021: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(sym_filesize_unit); + if (lookahead == 'r') ADVANCE(2537); END_STATE(); case 4022: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 4023: - ACCEPT_TOKEN(anon_sym_true); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3119); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3118); + ACCEPT_TOKEN(sym_duration_unit); END_STATE(); case 4024: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(3585); END_STATE(); case 4025: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ACCEPT_TOKEN(sym_duration_unit); + if (lookahead == 'e') ADVANCE(2864); END_STATE(); case 4026: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 4027: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3119); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); END_STATE(); case 4028: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); case 4029: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); - END_STATE(); - case 4030: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 4031: - ACCEPT_TOKEN(anon_sym_false); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3122); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3121); - END_STATE(); - case 4032: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); - END_STATE(); - case 4033: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4034: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); - END_STATE(); - case 4035: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3122); - END_STATE(); - case 4036: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); - END_STATE(); - case 4037: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); - END_STATE(); - case 4038: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - END_STATE(); - case 4039: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); - END_STATE(); - case 4040: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2927); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4041: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4555); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4042: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5096); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4043: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5351); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4044: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4753); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4045: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5198); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4046: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1690); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4047: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); - END_STATE(); - case 4048: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); - END_STATE(); - case 4049: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); - END_STATE(); - case 4050: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); - END_STATE(); - case 4051: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); - END_STATE(); - case 4052: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); - END_STATE(); - case 4053: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(4115); - if (lookahead == 'o') ADVANCE(4131); - if (lookahead == 'x') ADVANCE(4136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); - END_STATE(); - case 4054: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(2921); - if (lookahead == 'o') ADVANCE(2923); - if (lookahead == 'x') ADVANCE(2930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4055: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (lookahead == 'b') ADVANCE(2116); - if (lookahead == 'o') ADVANCE(2117); - if (lookahead == 'x') ADVANCE(2118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4056: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); - END_STATE(); - case 4057: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); - END_STATE(); - case 4058: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - END_STATE(); - case 4059: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); - END_STATE(); - case 4060: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - END_STATE(); - case 4061: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); - END_STATE(); - case 4062: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - END_STATE(); - case 4063: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4062); - END_STATE(); - case 4064: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); - END_STATE(); - case 4065: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4064); - END_STATE(); - case 4066: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); - END_STATE(); - case 4067: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4066); - END_STATE(); - case 4068: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); - END_STATE(); - case 4069: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4068); - END_STATE(); - case 4070: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); - END_STATE(); - case 4071: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); - END_STATE(); - case 4072: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); - END_STATE(); - case 4073: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4063); - END_STATE(); - case 4074: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4065); - END_STATE(); - case 4075: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4067); - END_STATE(); - case 4076: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4069); - END_STATE(); - case 4077: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(4077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - END_STATE(); - case 4078: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(4078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - END_STATE(); - case 4079: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4079); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - END_STATE(); - case 4080: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - END_STATE(); - case 4081: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4081); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5310); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); - END_STATE(); - case 4082: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4082); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2519); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4082); - END_STATE(); - case 4083: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4083); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4083); - END_STATE(); - case 4084: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4084); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4496); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); - END_STATE(); - case 4085: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4085); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5048); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - END_STATE(); - case 4086: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4086); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4086); - END_STATE(); - case 4087: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4087); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); - END_STATE(); - case 4088: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(4088); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - END_STATE(); - case 4089: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(4089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - END_STATE(); - case 4090: - ACCEPT_TOKEN(aux_sym__val_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); - END_STATE(); - case 4091: - ACCEPT_TOKEN(aux_sym__val_number_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4091); - END_STATE(); - case 4092: - ACCEPT_TOKEN(aux_sym__val_number_token3); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4092); - END_STATE(); - case 4093: - ACCEPT_TOKEN(aux_sym__val_number_token4); - END_STATE(); - case 4094: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == ',') ADVANCE(3140); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3130); - END_STATE(); - case 4095: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3133); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3140); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3139); - END_STATE(); - case 4096: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3140); - END_STATE(); - case 4097: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4543); - END_STATE(); - case 4098: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5085); - END_STATE(); - case 4099: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5342); - END_STATE(); - case 4100: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4740); - END_STATE(); - case 4101: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5187); - END_STATE(); - case 4102: - ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1674); - END_STATE(); - case 4103: - ACCEPT_TOKEN(aux_sym__val_number_token5); - END_STATE(); - case 4104: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == ',') ADVANCE(3150); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3142); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3145); - END_STATE(); - case 4105: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3150); - END_STATE(); - case 4106: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1670); - END_STATE(); - case 4107: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5087); - END_STATE(); - case 4108: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5344); - END_STATE(); - case 4109: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4743); - END_STATE(); - case 4110: - ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5189); - END_STATE(); - case 4111: - ACCEPT_TOKEN(aux_sym__val_number_token6); - END_STATE(); - case 4112: - ACCEPT_TOKEN(aux_sym__val_number_token6); - if (lookahead == ',') ADVANCE(3153); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3151); - END_STATE(); - case 4113: - ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3153); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3152); - END_STATE(); - case 4114: - ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3153); - END_STATE(); - case 4115: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4091); - END_STATE(); - case 4116: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(5001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); - END_STATE(); - case 4117: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3594); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); - END_STATE(); - case 4118: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4445); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4119: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(5275); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); - END_STATE(); - case 4120: - ACCEPT_TOKEN(sym_filesize_unit); - END_STATE(); - case 4121: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3318); - END_STATE(); - case 4122: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(4706); - END_STATE(); - case 4123: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1522); - END_STATE(); - case 4124: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(2036); - END_STATE(); - case 4125: - ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(2613); - END_STATE(); - case 4126: - ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); - END_STATE(); - case 4127: - ACCEPT_TOKEN(sym_duration_unit); - END_STATE(); - case 4128: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(3680); - END_STATE(); - case 4129: - ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2940); - END_STATE(); - case 4130: - ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); - END_STATE(); - case 4131: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4092); + lookahead == '_') ADVANCE(3508); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); - case 4132: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5007); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); - END_STATE(); - case 4133: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3596); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); - END_STATE(); - case 4134: + case 4030: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4447); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == '_') ADVANCE(4343); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4135: + case 4031: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == '_') ADVANCE(5161); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4136: + case 4032: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); END_STATE(); - case 4137: + case 4033: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5021); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4904); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4138: + case 4034: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3609); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3610); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3515); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); END_STATE(); - case 4139: + case 4035: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4460); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4350); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4140: + case 4036: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5292); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5175); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4141: + case 4037: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 4142: + case 4038: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4038); END_STATE(); - case 4143: + case 4039: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 4144: + case 4040: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(1685); + if (lookahead == '.') ADVANCE(1609); if (lookahead == '+' || - lookahead == '-') ADVANCE(507); + lookahead == '-') ADVANCE(439); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); + lookahead == 'z') ADVANCE(4039); END_STATE(); - case 4145: + case 4041: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4553); + if (lookahead == '.') ADVANCE(4443); if (lookahead == '+' || - lookahead == '-') ADVANCE(4482); + lookahead == '-') ADVANCE(4372); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); + lookahead == 'z') ADVANCE(4039); END_STATE(); - case 4146: + case 4042: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5099); + if (lookahead == '.') ADVANCE(4982); if (lookahead == '+' || - lookahead == '-') ADVANCE(5038); + lookahead == '-') ADVANCE(4921); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); + lookahead == 'z') ADVANCE(4039); END_STATE(); - case 4147: + case 4043: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4756); + if (lookahead == '.') ADVANCE(4642); if (lookahead == '+' || - lookahead == '-') ADVANCE(4598); + lookahead == '-') ADVANCE(4488); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); + lookahead == 'z') ADVANCE(4039); END_STATE(); - case 4148: + case 4044: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5202); + if (lookahead == '.') ADVANCE(5085); if (lookahead == '+' || - lookahead == '-') ADVANCE(5123); + lookahead == '-') ADVANCE(5006); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); + lookahead == 'z') ADVANCE(4039); END_STATE(); - case 4149: + case 4045: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4166); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1684); + if (lookahead == ':') ADVANCE(4062); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1608); END_STATE(); - case 4150: + case 4046: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4167); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4548); + if (lookahead == ':') ADVANCE(4063); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4438); END_STATE(); - case 4151: + case 4047: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4168); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5093); + if (lookahead == ':') ADVANCE(4064); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4976); END_STATE(); - case 4152: + case 4048: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4169); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4750); + if (lookahead == ':') ADVANCE(4065); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4636); END_STATE(); - case 4153: + case 4049: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4170); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5195); + if (lookahead == ':') ADVANCE(4066); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5078); END_STATE(); - case 4154: + case 4050: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2929); + if (lookahead == 'T') ADVANCE(2853); END_STATE(); - case 4155: + case 4051: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4557); + if (lookahead == 'T') ADVANCE(4447); END_STATE(); - case 4156: + case 4052: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5102); + if (lookahead == 'T') ADVANCE(4985); END_STATE(); - case 4157: + case 4053: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5353); + if (lookahead == 'T') ADVANCE(5235); END_STATE(); - case 4158: + case 4054: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4758); + if (lookahead == 'T') ADVANCE(4644); END_STATE(); - case 4159: + case 4055: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5200); + if (lookahead == 'T') ADVANCE(5083); END_STATE(); - case 4160: + case 4056: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1694); + if (lookahead == 'T') ADVANCE(1618); END_STATE(); - case 4161: + case 4057: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(507); + lookahead == '-') ADVANCE(439); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4161); + lookahead == 'z') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); END_STATE(); - case 4162: + case 4058: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4482); + lookahead == '-') ADVANCE(4372); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4162); + lookahead == 'z') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); END_STATE(); - case 4163: + case 4059: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(5038); + lookahead == '-') ADVANCE(4921); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4163); + lookahead == 'z') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); END_STATE(); - case 4164: + case 4060: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4598); + lookahead == '-') ADVANCE(4488); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4164); + lookahead == 'z') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); END_STATE(); - case 4165: + case 4061: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(5123); + lookahead == '-') ADVANCE(5006); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4165); + lookahead == 'z') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); END_STATE(); - case 4166: + case 4062: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1684); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1608); END_STATE(); - case 4167: + case 4063: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4548); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4438); END_STATE(); - case 4168: + case 4064: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5093); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4976); END_STATE(); - case 4169: + case 4065: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4750); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4636); END_STATE(); - case 4170: + case 4066: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5195); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5078); END_STATE(); - case 4171: + case 4067: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 4172: + case 4068: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54401,28 +51168,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 4173: + case 4069: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(4174); + if (lookahead == '#') ADVANCE(4070); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4173); + lookahead == ' ') ADVANCE(4069); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(4174); + lookahead != '\\') ADVANCE(4070); END_STATE(); - case 4174: + case 4070: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(4174); + lookahead != '\\') ADVANCE(4070); END_STATE(); - case 4175: + case 4071: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 4176: + case 4072: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54430,12 +51197,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 4177: + case 4073: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 4178: + case 4074: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54443,48 +51210,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 4179: + case 4075: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 4180: + case 4076: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(4181); + if (lookahead == '#') ADVANCE(4077); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4180); + lookahead == ' ') ADVANCE(4076); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(4181); + lookahead != '\\') ADVANCE(4077); END_STATE(); - case 4181: + case 4077: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(4181); + lookahead != '\\') ADVANCE(4077); END_STATE(); - case 4182: + case 4078: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(4183); + if (lookahead == '#') ADVANCE(4079); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4182); + lookahead == ' ') ADVANCE(4078); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4183); + lookahead != '(') ADVANCE(4079); END_STATE(); - case 4183: + case 4079: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4183); + lookahead != '(') ADVANCE(4079); END_STATE(); - case 4184: + case 4080: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 4185: + case 4081: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54492,20 +51259,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 4186: + case 4082: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 4187: + case 4083: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(4175); - if (lookahead != 0) ADVANCE(441); + if (lookahead == '\'') ADVANCE(4071); + if (lookahead != 0) ADVANCE(375); END_STATE(); - case 4188: + case 4084: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 4189: + case 4085: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54513,68 +51280,130 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 4190: + case 4086: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 4191: + case 4087: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 4192: + case 4088: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 4193: + case 4089: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 4194: + case 4090: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 4195: + case 4091: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4194); + if (lookahead == ',') ADVANCE(4090); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4195); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4194); + lookahead == ' ') ADVANCE(4091); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4090); END_STATE(); - case 4196: + case 4092: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4194); + if (lookahead == ',') ADVANCE(4090); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4196); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4197); + lookahead == ' ') ADVANCE(4092); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4093); END_STATE(); - case 4197: + case 4093: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(4202); + if (lookahead == ';') ADVANCE(4098); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(519); + lookahead == ' ') ADVANCE(449); END_STATE(); - case 4198: + case 4094: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4198); + lookahead == ' ') ADVANCE(4094); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4194); + lookahead == ',') ADVANCE(4090); END_STATE(); - case 4199: - ACCEPT_TOKEN(aux_sym_record_entry_token1); + case 4095: + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 4200: + case 4096: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(5590); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4201); + if (lookahead == '#') ADVANCE(5472); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4097); END_STATE(); - case 4201: + case 4097: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4201); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4097); END_STATE(); - case 4202: + case 4098: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 4203: + case 4099: + ACCEPT_TOKEN(anon_sym_DOT2); + END_STATE(); + case 4100: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(5182); + if (lookahead == '_') ADVANCE(5191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + END_STATE(); + case 4101: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + END_STATE(); + case 4102: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + END_STATE(); + case 4103: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3831); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + END_STATE(); + case 4104: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(2063); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + END_STATE(); + case 4105: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3834); + END_STATE(); + case 4106: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + END_STATE(); + case 4107: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + END_STATE(); + case 4108: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(434); + END_STATE(); + case 4109: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(3833); + END_STATE(); + case 4110: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(2442); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + END_STATE(); + case 4111: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(4175); + if (lookahead == '\'') ADVANCE(4071); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -54586,12 +51415,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(441); - if (lookahead != 0) ADVANCE(4203); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(375); + if (lookahead != 0) ADVANCE(4111); END_STATE(); - case 4204: + case 4112: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(4177); + if (lookahead == '`') ADVANCE(4073); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -54603,1708 +51432,1605 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(553); - if (lookahead != 0) ADVANCE(4204); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(481); + if (lookahead != 0) ADVANCE(4112); END_STATE(); - case 4205: + case 4113: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4205); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4113); END_STATE(); - case 4206: + case 4114: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 4207: + case 4115: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4207); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4115); END_STATE(); - case 4208: + case 4116: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 4209: + case 4117: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(700); + if (lookahead == ' ') ADVANCE(628); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4210: + case 4118: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(701); + if (lookahead == ' ') ADVANCE(629); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4211: + case 4119: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(557); + if (lookahead == ' ') ADVANCE(485); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4212: + case 4120: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(622); + if (lookahead == ' ') ADVANCE(550); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4213: + case 4121: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(558); + if (lookahead == ' ') ADVANCE(486); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4214: + case 4122: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(560); + if (lookahead == ' ') ADVANCE(488); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4215: + case 4123: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(1448); + if (lookahead == ' ') ADVANCE(1373); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4216: + case 4124: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(1005); + if (lookahead == ' ') ADVANCE(933); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4217: + case 4125: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(739); + if (lookahead == ' ') ADVANCE(667); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4218: + case 4126: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(729); - if (lookahead == 'o') ADVANCE(4277); + if (lookahead == ' ') ADVANCE(657); + if (lookahead == 'o') ADVANCE(4185); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4219: + case 4127: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4247); + if (lookahead == '-') ADVANCE(4155); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4220: + case 4128: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4264); + if (lookahead == '-') ADVANCE(4172); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4221: + case 4129: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4249); + if (lookahead == '-') ADVANCE(4157); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4222: + case 4130: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4328); + if (lookahead == '-') ADVANCE(4236); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4223: + case 4131: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4245); + if (lookahead == '-') ADVANCE(4153); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4224: + case 4132: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4311); + if (lookahead == '-') ADVANCE(4219); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4225: + case 4133: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4296); + if (lookahead == '-') ADVANCE(4204); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4226: + case 4134: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4272); + if (lookahead == '-') ADVANCE(4180); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4227: + case 4135: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4238); + if (lookahead == '-') ADVANCE(4146); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4228: + case 4136: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4323); + if (lookahead == '-') ADVANCE(4231); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4229: + case 4137: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4276); + if (lookahead == '-') ADVANCE(4184); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4230: + case 4138: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4329); + if (lookahead == '-') ADVANCE(4237); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4231: + case 4139: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4331); + if (lookahead == 'a') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4232: + case 4140: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4318); + if (lookahead == 'a') ADVANCE(4226); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4233: + case 4141: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4265); + if (lookahead == 'a') ADVANCE(4173); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4234: + case 4142: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4307); + if (lookahead == 'a') ADVANCE(4215); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4235: + case 4143: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4306); + if (lookahead == 'a') ADVANCE(4214); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4236: + case 4144: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4279); + if (lookahead == 'a') ADVANCE(4187); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4237: + case 4145: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4291); + if (lookahead == 'a') ADVANCE(4199); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4238: + case 4146: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4284); + if (lookahead == 'a') ADVANCE(4192); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4239: + case 4147: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4319); + if (lookahead == 'a') ADVANCE(4227); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4240: + case 4148: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4320); + if (lookahead == 'a') ADVANCE(4228); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4241: + case 4149: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4313); + if (lookahead == 'c') ADVANCE(4221); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4242: + case 4150: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4300); + if (lookahead == 'c') ADVANCE(4208); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4243: + case 4151: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4240); + if (lookahead == 'c') ADVANCE(4148); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4244: + case 4152: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4333); + if (lookahead == 'd') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4245: + case 4153: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4322); - if (lookahead == 'n') ADVANCE(4321); + if (lookahead == 'd') ADVANCE(4230); + if (lookahead == 'n') ADVANCE(4229); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4246: + case 4154: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4330); + if (lookahead == 'd') ADVANCE(4238); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4247: + case 4155: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4232); + if (lookahead == 'd') ADVANCE(4140); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4248: + case 4156: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4275); + if (lookahead == 'd') ADVANCE(4183); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4249: + case 4157: ACCEPT_TOKEN(aux_sym_command_token1); ADVANCE_MAP( - 'd', 4231, - 'h', 4299, - 'm', 4273, - 'n', 4237, - 'o', 4308, - 's', 4258, - 'w', 4260, - 'y', 4262, + 'd', 4139, + 'h', 4207, + 'm', 4181, + 'n', 4145, + 'o', 4216, + 's', 4166, + 'w', 4168, + 'y', 4170, ); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4250: + case 4158: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4231); + if (lookahead == 'd') ADVANCE(4139); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4251: + case 4159: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4239); + if (lookahead == 'd') ADVANCE(4147); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4252: + case 4160: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4333); + if (lookahead == 'e') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4253: + case 4161: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4241); + if (lookahead == 'e') ADVANCE(4149); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4254: + case 4162: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4288); + if (lookahead == 'e') ADVANCE(4196); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4255: + case 4163: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4310); + if (lookahead == 'e') ADVANCE(4218); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4256: + case 4164: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4278); + if (lookahead == 'e') ADVANCE(4186); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4257: + case 4165: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4330); + if (lookahead == 'e') ADVANCE(4238); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4258: + case 4166: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4242); + if (lookahead == 'e') ADVANCE(4150); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4259: + case 4167: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4316); + if (lookahead == 'e') ADVANCE(4224); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4260: + case 4168: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4256); + if (lookahead == 'e') ADVANCE(4164); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4261: + case 4169: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4229); + if (lookahead == 'e') ADVANCE(4137); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4262: + case 4170: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4235); + if (lookahead == 'e') ADVANCE(4143); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4263: + case 4171: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'f') ADVANCE(4297); + if (lookahead == 'f') ADVANCE(4205); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4264: + case 4172: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4309); + if (lookahead == 'g') ADVANCE(4217); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4265: + case 4173: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4261); + if (lookahead == 'g') ADVANCE(4169); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4266: + case 4174: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4333); + if (lookahead == 'h') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4267: + case 4175: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4257); + if (lookahead == 'h') ADVANCE(4165); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4268: + case 4176: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4226); + if (lookahead == 'h') ADVANCE(4134); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4269: + case 4177: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4243); + if (lookahead == 'i') ADVANCE(4151); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4270: + case 4178: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4315); + if (lookahead == 'i') ADVANCE(4223); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4271: + case 4179: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4287); + if (lookahead == 'i') ADVANCE(4195); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4272: + case 4180: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4246); + if (lookahead == 'i') ADVANCE(4154); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4273: + case 4181: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4293); - if (lookahead == 'o') ADVANCE(4294); + if (lookahead == 'i') ADVANCE(4201); + if (lookahead == 'o') ADVANCE(4202); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4274: + case 4182: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4314); + if (lookahead == 'i') ADVANCE(4222); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4275: + case 4183: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4295); + if (lookahead == 'i') ADVANCE(4203); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4276: + case 4184: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4290); + if (lookahead == 'i') ADVANCE(4198); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4277: + case 4185: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'j') ADVANCE(4253); + if (lookahead == 'j') ADVANCE(4161); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4278: + case 4186: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'k') ADVANCE(4250); + if (lookahead == 'k') ADVANCE(4158); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4279: + case 4187: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4333); + if (lookahead == 'l') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4280: + case 4188: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4253); - if (lookahead == 'u') ADVANCE(4285); + if (lookahead == 'l') ADVANCE(4161); + if (lookahead == 'u') ADVANCE(4193); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4281: + case 4189: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4310); + if (lookahead == 'l') ADVANCE(4218); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4282: + case 4190: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4281); + if (lookahead == 'l') ADVANCE(4189); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4283: + case 4191: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4269); + if (lookahead == 'l') ADVANCE(4177); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4284: + case 4192: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4279); + if (lookahead == 'l') ADVANCE(4187); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4285: + case 4193: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4289); + if (lookahead == 'm') ADVANCE(4197); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4286: + case 4194: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4234); + if (lookahead == 'm') ADVANCE(4142); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4287: + case 4195: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4252); + if (lookahead == 'm') ADVANCE(4160); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4288: + case 4196: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4333); + if (lookahead == 'n') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4289: + case 4197: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4310); + if (lookahead == 'n') ADVANCE(4218); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4290: + case 4198: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4263); + if (lookahead == 'n') ADVANCE(4171); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4291: + case 4199: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4298); + if (lookahead == 'n') ADVANCE(4206); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4292: + case 4200: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4244); + if (lookahead == 'n') ADVANCE(4152); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4293: + case 4201: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4327); + if (lookahead == 'n') ADVANCE(4235); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4294: + case 4202: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4314); + if (lookahead == 'n') ADVANCE(4222); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4295: + case 4203: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4236); + if (lookahead == 'n') ADVANCE(4144); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4296: + case 4204: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4326); + if (lookahead == 'n') ADVANCE(4234); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4297: + case 4205: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4333); + if (lookahead == 'o') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4298: + case 4206: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4312); + if (lookahead == 'o') ADVANCE(4220); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4299: + case 4207: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4325); + if (lookahead == 'o') ADVANCE(4233); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4300: + case 4208: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4292); + if (lookahead == 'o') ADVANCE(4200); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4301: + case 4209: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4324); + if (lookahead == 'o') ADVANCE(4232); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4302: + case 4210: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4233); + if (lookahead == 'p') ADVANCE(4141); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4303: + case 4211: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4310); + if (lookahead == 'p') ADVANCE(4218); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4304: + case 4212: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4283); + if (lookahead == 'p') ADVANCE(4191); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4305: + case 4213: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4251); + if (lookahead == 'p') ADVANCE(4159); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4306: + case 4214: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4333); + if (lookahead == 'r') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4307: + case 4215: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4331); + if (lookahead == 'r') ADVANCE(4239); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4308: + case 4216: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4248); + if (lookahead == 'r') ADVANCE(4156); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4309: + case 4217: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4301); + if (lookahead == 'r') ADVANCE(4209); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4310: + case 4218: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4333); + if (lookahead == 's') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4311: + case 4219: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4317); + if (lookahead == 's') ADVANCE(4225); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4312: + case 4220: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4258); + if (lookahead == 's') ADVANCE(4166); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4313: + case 4221: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4333); + if (lookahead == 't') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4314: + case 4222: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4266); + if (lookahead == 't') ADVANCE(4174); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4315: + case 4223: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4268); + if (lookahead == 't') ADVANCE(4176); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4316: + case 4224: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4271); + if (lookahead == 't') ADVANCE(4179); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4317: + case 4225: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4306); + if (lookahead == 't') ADVANCE(4214); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4318: + case 4226: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4259); + if (lookahead == 't') ADVANCE(4167); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4319: + case 4227: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4252); + if (lookahead == 't') ADVANCE(4160); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4320: + case 4228: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4255); + if (lookahead == 't') ADVANCE(4163); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4321: + case 4229: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4282); + if (lookahead == 'u') ADVANCE(4190); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4322: + case 4230: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4304); + if (lookahead == 'u') ADVANCE(4212); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4323: + case 4231: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4305); + if (lookahead == 'u') ADVANCE(4213); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4324: + case 4232: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4303); + if (lookahead == 'u') ADVANCE(4211); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4325: + case 4233: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4306); + if (lookahead == 'u') ADVANCE(4214); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4326: + case 4234: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4284); + if (lookahead == 'u') ADVANCE(4192); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4327: + case 4235: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4319); + if (lookahead == 'u') ADVANCE(4227); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4328: + case 4236: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4270); + if (lookahead == 'w') ADVANCE(4178); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4329: + case 4237: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4274); + if (lookahead == 'w') ADVANCE(4182); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4330: + case 4238: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'x') ADVANCE(4333); + if (lookahead == 'x') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4331: + case 4239: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'y') ADVANCE(4333); + if (lookahead == 'y') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4332: + case 4240: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'z') ADVANCE(4333); + if (lookahead == 'z') ADVANCE(4241); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4241); END_STATE(); - case 4333: + case 4241: ACCEPT_TOKEN(aux_sym_command_token1); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4333); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4241); END_STATE(); - case 4334: + case 4242: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4366); + if (lookahead == '>') ADVANCE(4274); END_STATE(); - case 4335: + case 4243: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4366); - if (lookahead == '|') ADVANCE(3652); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == '|') ADVANCE(3557); END_STATE(); - case 4336: + case 4244: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4368); - if (lookahead == '|') ADVANCE(3652); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4276); + if (lookahead == '|') ADVANCE(3557); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4337: + case 4245: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4367); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4275); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4338: + case 4246: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4369); + if (lookahead == '>') ADVANCE(4277); END_STATE(); - case 4339: + case 4247: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4369); - if (lookahead == '|') ADVANCE(3653); + if (lookahead == '>') ADVANCE(4277); + if (lookahead == '|') ADVANCE(3558); END_STATE(); - case 4340: + case 4248: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4371); - if (lookahead == '|') ADVANCE(3653); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4279); + if (lookahead == '|') ADVANCE(3558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4341: + case 4249: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4278); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4342: + case 4250: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4372); + if (lookahead == '>') ADVANCE(4280); END_STATE(); - case 4343: + case 4251: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4372); - if (lookahead == '|') ADVANCE(3654); + if (lookahead == '>') ADVANCE(4280); + if (lookahead == '|') ADVANCE(3559); END_STATE(); - case 4344: + case 4252: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4374); - if (lookahead == '|') ADVANCE(3654); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4282); + if (lookahead == '|') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4345: + case 4253: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4373); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4346: + case 4254: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4375); + if (lookahead == '>') ADVANCE(4283); END_STATE(); - case 4347: + case 4255: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4375); - if (lookahead == '|') ADVANCE(3655); + if (lookahead == '>') ADVANCE(4283); + if (lookahead == '|') ADVANCE(3560); END_STATE(); - case 4348: + case 4256: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4377); - if (lookahead == '|') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4285); + if (lookahead == '|') ADVANCE(3560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4349: + case 4257: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4376); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4284); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4350: + case 4258: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4378); + if (lookahead == '>') ADVANCE(4286); END_STATE(); - case 4351: + case 4259: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4378); - if (lookahead == '|') ADVANCE(3656); + if (lookahead == '>') ADVANCE(4286); + if (lookahead == '|') ADVANCE(3561); END_STATE(); - case 4352: + case 4260: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4380); - if (lookahead == '|') ADVANCE(3656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4288); + if (lookahead == '|') ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4353: + case 4261: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4287); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4354: + case 4262: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4381); + if (lookahead == '>') ADVANCE(4289); END_STATE(); - case 4355: + case 4263: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4381); - if (lookahead == '|') ADVANCE(3657); + if (lookahead == '>') ADVANCE(4289); + if (lookahead == '|') ADVANCE(3562); END_STATE(); - case 4356: + case 4264: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4383); - if (lookahead == '|') ADVANCE(3657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4291); + if (lookahead == '|') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4357: + case 4265: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4382); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4290); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4358: + case 4266: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4384); + if (lookahead == '>') ADVANCE(4292); END_STATE(); - case 4359: + case 4267: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4384); - if (lookahead == '|') ADVANCE(3658); + if (lookahead == '>') ADVANCE(4292); + if (lookahead == '|') ADVANCE(3563); END_STATE(); - case 4360: + case 4268: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4386); - if (lookahead == '|') ADVANCE(3658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4294); + if (lookahead == '|') ADVANCE(3563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4361: + case 4269: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4362: + case 4270: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4387); + if (lookahead == '>') ADVANCE(4295); END_STATE(); - case 4363: + case 4271: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4387); - if (lookahead == '|') ADVANCE(3659); + if (lookahead == '>') ADVANCE(4295); + if (lookahead == '|') ADVANCE(3564); END_STATE(); - case 4364: + case 4272: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4389); - if (lookahead == '|') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4297); + if (lookahead == '|') ADVANCE(3564); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4365: + case 4273: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4296); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4366: + case 4274: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 4367: + case 4275: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4368: + case 4276: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4369: + case 4277: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 4370: + case 4278: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4371: + case 4279: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4372: + case 4280: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 4373: + case 4281: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4374: + case 4282: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4375: + case 4283: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 4376: + case 4284: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4377: + case 4285: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4378: + case 4286: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 4379: + case 4287: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4380: + case 4288: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4381: + case 4289: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 4382: + case 4290: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4383: + case 4291: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4384: + case 4292: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 4385: + case 4293: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4386: + case 4294: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4387: + case 4295: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 4388: + case 4296: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 4389: + case 4297: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4390: + case 4298: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 4391: + case 4299: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4516); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'r') ADVANCE(4426); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(4406); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'r') ADVANCE(4324); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4392: + case 4300: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4509); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'u') ADVANCE(4431); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(4399); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'u') ADVANCE(4328); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4393: + case 4301: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4517); - if (lookahead == '>') ADVANCE(4335); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(4407); + if (lookahead == '>') ADVANCE(4243); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4394: + case 4302: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4510); - if (lookahead == '>') ADVANCE(4339); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(4400); + if (lookahead == '>') ADVANCE(4247); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4395: + case 4303: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1258); - if (lookahead == '>') ADVANCE(1649); - if (lookahead == 'r') ADVANCE(4427); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(1185); + if (lookahead == '>') ADVANCE(1573); + if (lookahead == 'r') ADVANCE(4325); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4396: + case 4304: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(831); - if (lookahead == '>') ADVANCE(1650); - if (lookahead == 'u') ADVANCE(4432); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(759); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'u') ADVANCE(4329); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4397: + case 4305: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1304); - if (lookahead == '>') ADVANCE(1652); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(1230); + if (lookahead == '>') ADVANCE(1576); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4398: + case 4306: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(889); - if (lookahead == '>') ADVANCE(1654); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '+') ADVANCE(817); + if (lookahead == '>') ADVANCE(1578); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4399: + case 4307: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4451); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '-') ADVANCE(4347); + if (lookahead == '_') ADVANCE(4313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4313); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4400: + case 4308: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4453); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '-') ADVANCE(4348); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4401: + case 4309: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4457); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '.') ADVANCE(468); + if (lookahead == '_') ADVANCE(4309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4313); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4402: + case 4310: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4459); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == ':') ADVANCE(4450); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4403: + case 4311: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(539); - if (lookahead == '_') ADVANCE(4403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'T') ADVANCE(4349); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4404: + case 4312: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(1687); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '_') ADVANCE(4313); + if (lookahead == 'b') ADVANCE(4014); + if (lookahead == 'o') ADVANCE(4030); + if (lookahead == 'x') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4315); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4405: + case 4313: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(4560); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '_') ADVANCE(4313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4313); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4406: + case 4314: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(4454); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '_') ADVANCE(4313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4407: + case 4315: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(4455); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '_') ADVANCE(4313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4314); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4408: + case 4316: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (lookahead == 'b') ADVANCE(4118); - if (lookahead == 'o') ADVANCE(4134); - if (lookahead == 'x') ADVANCE(4139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4412); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == '_') ADVANCE(4313); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4315); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4409: + case 4317: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (lookahead == 'b') ADVANCE(4118); - if (lookahead == 'o') ADVANCE(4134); - if (lookahead == 'x') ADVANCE(4139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4415); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'a') ADVANCE(4320); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4410: + case 4318: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4410); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'e') ADVANCE(3921); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4411: + case 4319: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4399); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'e') ADVANCE(3929); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4412: + case 4320: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4411); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'l') ADVANCE(4327); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4413: + case 4321: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4412); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'l') ADVANCE(3913); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4414: + case 4322: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4402); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'l') ADVANCE(4321); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4415: + case 4323: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4414); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'r') ADVANCE(4330); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4416: + case 4324: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4415); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'r') ADVANCE(4301); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4417: + case 4325: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(4420); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'r') ADVANCE(4305); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4418: + case 4326: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(4025); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 's') ADVANCE(3757); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4419: + case 4327: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(4033); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 's') ADVANCE(4319); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4420: + case 4328: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4429); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 't') ADVANCE(4302); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4421: + case 4329: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4017); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 't') ADVANCE(4306); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4422: + case 4330: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4421); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'u') ADVANCE(4318); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4423: + case 4331: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(3766); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'u') ADVANCE(4322); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4336); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4424: + case 4332: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(4430); - if (lookahead == 'u') ADVANCE(4422); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4439); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == 'a') ADVANCE(4336); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4425: + case 4333: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4433); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4335); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4426: + case 4334: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4393); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4339); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4427: + case 4335: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4397); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4338); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4428: + case 4336: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3858); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4351); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4429: + case 4337: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(4419); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4333); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4430: + case 4338: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4446); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4334); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4431: + case 4339: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4394); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4340); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4432: + case 4340: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4398); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4351); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4433: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4418); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4434: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4422); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4439); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4435: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4439); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4436: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4438); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4437: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4442); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4438: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4441); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4439: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4461); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4440: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4436); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4441: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4437); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4442: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4443); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4443: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4461); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4444: + case 4341: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(4461); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4444); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3419); + lookahead == '@') ADVANCE(4351); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); - case 4445: + case 4342: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4445); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == '_') ADVANCE(4342); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4446: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4447: + case 4343: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4447); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4448: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4400); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4449: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4406); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4450: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4405); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4451: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4452: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4404); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); - END_STATE(); - case 4453: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4449); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + lookahead == '_') ADVANCE(4343); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4454: + case 4344: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4450); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4455: + case 4345: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4452); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4311); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4456: + case 4346: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4407); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4310); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4457: + case 4347: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4456); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4344); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4458: + case 4348: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4401); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4459: + case 4349: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4458); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4460: + case 4350: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4460); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4350); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4461: + case 4351: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4461); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4351); END_STATE(); - case 4462: + case 4352: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(4176); + if (lookahead == '\'') ADVANCE(4072); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(441); - if (lookahead != 0) ADVANCE(4462); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(375); + if (lookahead != 0) ADVANCE(4352); END_STATE(); - case 4463: + case 4353: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(4178); + if (lookahead == '`') ADVANCE(4074); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(553); - if (lookahead != 0) ADVANCE(4463); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(481); + if (lookahead != 0) ADVANCE(4353); END_STATE(); - case 4464: + case 4354: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -56312,6891 +53038,6837 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 4465: + case 4355: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(4038); - if (lookahead == '(') ADVANCE(3931); - if (lookahead == '[') ADVANCE(4192); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '[') ADVANCE(4088); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4466: + case 4356: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4516); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'r') ADVANCE(4522); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4406); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'r') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4467: + case 4357: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4509); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'u') ADVANCE(4530); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4399); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'u') ADVANCE(4420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4468: + case 4358: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4503); - if (lookahead == '-') ADVANCE(4505); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == '_') ADVANCE(4505); - if (lookahead == 'r') ADVANCE(4522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4393); + if (lookahead == '-') ADVANCE(4395); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == '_') ADVANCE(4395); + if (lookahead == 'r') ADVANCE(4412); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4469: + case 4359: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4517); - if (lookahead == '>') ADVANCE(4335); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4407); + if (lookahead == '>') ADVANCE(4243); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4470: + case 4360: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4510); - if (lookahead == '>') ADVANCE(4339); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4400); + if (lookahead == '>') ADVANCE(4247); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4471: + case 4361: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4519); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == 'r') ADVANCE(4523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4409); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(4413); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4472: + case 4362: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4511); - if (lookahead == '>') ADVANCE(4346); - if (lookahead == 'u') ADVANCE(4532); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4401); + if (lookahead == '>') ADVANCE(4254); + if (lookahead == 'u') ADVANCE(4422); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4473: + case 4363: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4520); - if (lookahead == '>') ADVANCE(4334); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4410); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4474: + case 4364: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4512); - if (lookahead == '>') ADVANCE(4338); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '+') ADVANCE(4402); + if (lookahead == '>') ADVANCE(4246); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4475: + case 4365: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(4556); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '-') ADVANCE(4446); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4476: + case 4366: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4477: + case 4367: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4478: + case 4368: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4479: + case 4369: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3810); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '.') ADVANCE(3709); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4480: + case 4370: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4494); - if (lookahead == '_') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '.') ADVANCE(4384); + if (lookahead == '_') ADVANCE(4370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4481: + case 4371: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4498); - if (lookahead == '_') ADVANCE(4481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '.') ADVANCE(4388); + if (lookahead == '_') ADVANCE(4371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4482: + case 4372: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(4546); + if (lookahead == '2') ADVANCE(4436); if (lookahead == '0' || - lookahead == '1') ADVANCE(4554); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == '1') ADVANCE(4444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4483: + case 4373: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4558); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == ':') ADVANCE(4448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4484: + case 4374: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4560); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == ':') ADVANCE(4450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4485: + case 4375: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4363); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4486: + case 4376: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4487: + case 4377: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4351); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4488: + case 4378: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4489: + case 4379: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4362); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4490: + case 4380: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4491: + case 4381: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4350); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4492: + case 4382: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4354); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4493: + case 4383: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4493); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4494: + case 4384: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4494); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4495: + case 4385: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4495); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4084); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4385); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4496: + case 4386: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4497); + if (lookahead == '_') ADVANCE(4387); if (lookahead == '+' || - lookahead == '-') ADVANCE(4497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == '-') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4497: + case 4387: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4498: + case 4388: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4498); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4388); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4499: + case 4389: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4499); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4005); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4389); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4500: + case 4390: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4501); + if (lookahead == '_') ADVANCE(4391); if (lookahead == '+' || - lookahead == '-') ADVANCE(4501); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == '-') ADVANCE(4391); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4501: + case 4391: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4501); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4391); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4502: + case 4392: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4502); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4503: + case 4393: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4505); - if (lookahead == 'o') ADVANCE(4485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4395); + if (lookahead == 'o') ADVANCE(4375); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4504: + case 4394: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4505); + if (lookahead == '_') ADVANCE(4395); if (lookahead == '+' || - lookahead == '-') ADVANCE(4505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == '-') ADVANCE(4395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4505: + case 4395: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4505); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == '_') ADVANCE(4395); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4506: + case 4396: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(4513); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'a') ADVANCE(4403); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4507: + case 4397: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4508: + case 4398: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4509: + case 4399: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'e') ADVANCE(4376); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4510: + case 4400: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'e') ADVANCE(4414); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4511: + case 4401: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'e') ADVANCE(4380); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4512: + case 4402: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4527); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'e') ADVANCE(4417); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4513: + case 4403: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4528); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'l') ADVANCE(4418); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4514: + case 4404: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4515: + case 4405: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4514); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'l') ADVANCE(4404); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4516: + case 4406: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'o') ADVANCE(4375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4517: + case 4407: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'o') ADVANCE(4426); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4518: + case 4408: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4529); - if (lookahead == 'u') ADVANCE(4515); + if (lookahead == 'o') ADVANCE(4419); + if (lookahead == 'u') ADVANCE(4405); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4542); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'a') ADVANCE(4432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4519: + case 4409: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'o') ADVANCE(4379); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4520: + case 4410: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4537); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'o') ADVANCE(4427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4521: + case 4411: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4535); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4522: + case 4412: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4469); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4523: + case 4413: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4363); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4524: + case 4414: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4525); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4415); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4525: + case 4415: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4488); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4378); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4526: + case 4416: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4492); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4382); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4527: + case 4417: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4526); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'r') ADVANCE(4416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4528: + case 4418: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(4508); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 's') ADVANCE(4398); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4529: + case 4419: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4547); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 't') ADVANCE(4437); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4530: + case 4420: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4470); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 't') ADVANCE(4360); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4531: + case 4421: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4487); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 't') ADVANCE(4377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4532: + case 4422: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4474); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 't') ADVANCE(4364); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4533: + case 4423: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 't') ADVANCE(4381); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4534: + case 4424: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4515); + if (lookahead == 'u') ADVANCE(4405); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4542); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'a') ADVANCE(4432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4535: + case 4425: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4507); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'u') ADVANCE(4397); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4536: + case 4426: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4531); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'u') ADVANCE(4421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4537: + case 4427: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4533); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (lookahead == 'u') ADVANCE(4423); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4538: + case 4428: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4542); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'a') ADVANCE(4432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4539: + case 4429: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4097); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'f') ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4540: + case 4430: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4544); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'i') ADVANCE(4434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4541: + case 4431: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4539); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'n') ADVANCE(4429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4542: + case 4432: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4111); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4543: + case 4433: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4540); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'n') ADVANCE(4430); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4544: + case 4434: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4545); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 't') ADVANCE(4435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4545: + case 4435: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4546: + case 4436: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4547: + case 4437: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4548: + case 4438: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4549: + case 4439: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4475); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4365); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4550: + case 4440: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4374); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4551: + case 4441: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4155); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4051); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4552: + case 4442: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4145); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4553: + case 4443: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4162); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4554: + case 4444: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4555: + case 4445: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4549); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4439); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4556: + case 4446: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4551); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4557: + case 4447: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4558: + case 4448: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4552); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4442); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4559: + case 4449: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4373); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4560: + case 4450: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4449); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4561: + case 4451: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4451); END_STATE(); - case 4562: + case 4452: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 4674, - '>', 4343, - 'I', 4731, - 'i', 4731, - 'n', 4646, - 'r', 4691, - 'B', 4120, - 'b', 4120, + '+', 4564, + '>', 4251, + 'I', 4618, + 'i', 4618, + 'n', 4536, + 'r', 4579, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4563: + case 4453: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4674); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4731); - if (lookahead == 'r') ADVANCE(4691); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4618); + if (lookahead == 'r') ADVANCE(4579); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4564: + case 4454: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4674); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'n') ADVANCE(4646); - if (lookahead == 'r') ADVANCE(4691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'n') ADVANCE(4536); + if (lookahead == 'r') ADVANCE(4579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4565: + case 4455: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4674); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == 'r') ADVANCE(4691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'r') ADVANCE(4579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4566: + case 4456: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4651); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'r') ADVANCE(3871); - if (lookahead == 'u') ADVANCE(4705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4541); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(4592); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4567: + case 4457: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4651); - if (lookahead == '>') ADVANCE(4347); - if (lookahead == 'u') ADVANCE(4705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4541); + if (lookahead == '>') ADVANCE(4255); + if (lookahead == 'u') ADVANCE(4592); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4568: + case 4458: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 4631, - '-', 4634, - '>', 4343, - 'I', 4731, - '_', 4634, - 'i', 4731, - 'n', 4646, - 'r', 4691, - 'B', 4120, - 'b', 4120, + '+', 4521, + '-', 4524, + '>', 4251, + 'I', 4618, + '_', 4524, + 'i', 4618, + 'n', 4536, + 'r', 4579, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4569: + case 4459: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 4631, - '-', 4634, - '>', 4343, - 'I', 4731, - '_', 4634, - 'i', 4731, - 'r', 4691, - 'B', 4120, - 'b', 4120, + '+', 4521, + '-', 4524, + '>', 4251, + 'I', 4618, + '_', 4524, + 'i', 4618, + 'r', 4579, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4570: + case 4460: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4631); - if (lookahead == '-') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'n') ADVANCE(4646); - if (lookahead == 'r') ADVANCE(4691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4521); + if (lookahead == '-') ADVANCE(4524); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'n') ADVANCE(4536); + if (lookahead == 'r') ADVANCE(4579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4571: + case 4461: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4631); - if (lookahead == '-') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4343); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'r') ADVANCE(4691); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4521); + if (lookahead == '-') ADVANCE(4524); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'r') ADVANCE(4579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4572: + case 4462: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4675); - if (lookahead == '>') ADVANCE(4335); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4565); + if (lookahead == '>') ADVANCE(4243); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4573: + case 4463: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 4632, - '-', 4634, - '>', 4722, - 'I', 4731, - '_', 4634, - 'i', 4731, - 'n', 4646, - 'r', 4692, - 'B', 4120, - 'b', 4120, + '+', 4522, + '-', 4524, + '>', 4609, + 'I', 4618, + '_', 4524, + 'i', 4618, + 'n', 4536, + 'r', 4580, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4574: + case 4464: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 4632, - '-', 4634, - '>', 4722, - 'I', 4731, - '_', 4634, - 'i', 4731, - 'r', 4692, - 'B', 4120, - 'b', 4120, + '+', 4522, + '-', 4524, + '>', 4609, + 'I', 4618, + '_', 4524, + 'i', 4618, + 'r', 4580, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4575: + case 4465: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4632); - if (lookahead == '-') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4722); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'n') ADVANCE(4646); - if (lookahead == 'r') ADVANCE(4692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4522); + if (lookahead == '-') ADVANCE(4524); + if (lookahead == '>') ADVANCE(4609); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'n') ADVANCE(4536); + if (lookahead == 'r') ADVANCE(4580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4576: + case 4466: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4632); - if (lookahead == '-') ADVANCE(4634); - if (lookahead == '>') ADVANCE(4722); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'r') ADVANCE(4692); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4522); + if (lookahead == '-') ADVANCE(4524); + if (lookahead == '>') ADVANCE(4609); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'r') ADVANCE(4580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4577: + case 4467: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4652); - if (lookahead == '>') ADVANCE(4339); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4542); + if (lookahead == '>') ADVANCE(4247); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4578: + case 4468: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 4679, - '>', 4722, - 'I', 4731, - 'i', 4731, - 'n', 4646, - 'r', 4692, - 'B', 4120, - 'b', 4120, + '+', 4569, + '>', 4609, + 'I', 4618, + 'i', 4618, + 'n', 4536, + 'r', 4580, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4579: + case 4469: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4679); - if (lookahead == '>') ADVANCE(4722); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4731); - if (lookahead == 'r') ADVANCE(4692); + if (lookahead == '+') ADVANCE(4569); + if (lookahead == '>') ADVANCE(4609); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4618); + if (lookahead == 'r') ADVANCE(4580); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4580: + case 4470: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4679); - if (lookahead == '>') ADVANCE(4722); - if (lookahead == 'n') ADVANCE(4646); - if (lookahead == 'r') ADVANCE(4692); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4569); + if (lookahead == '>') ADVANCE(4609); + if (lookahead == 'n') ADVANCE(4536); + if (lookahead == 'r') ADVANCE(4580); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4581: + case 4471: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4679); - if (lookahead == '>') ADVANCE(4722); - if (lookahead == 'r') ADVANCE(4692); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4569); + if (lookahead == '>') ADVANCE(4609); + if (lookahead == 'r') ADVANCE(4580); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4582: + case 4472: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4653); - if (lookahead == '>') ADVANCE(4723); - if (lookahead == 'r') ADVANCE(3871); - if (lookahead == 'u') ADVANCE(4712); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4543); + if (lookahead == '>') ADVANCE(4610); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(4599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4583: + case 4473: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4653); - if (lookahead == '>') ADVANCE(4723); - if (lookahead == 'u') ADVANCE(4712); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4543); + if (lookahead == '>') ADVANCE(4610); + if (lookahead == 'u') ADVANCE(4599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4584: + case 4474: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4684); - if (lookahead == '>') ADVANCE(4725); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4572); + if (lookahead == '>') ADVANCE(4612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4585: + case 4475: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4654); - if (lookahead == '>') ADVANCE(4727); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '+') ADVANCE(4544); + if (lookahead == '>') ADVANCE(4614); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4586: + case 4476: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3715); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4597); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(4518); + if (lookahead == '_') ADVANCE(4487); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4742); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'i') ADVANCE(4629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4587: + case 4477: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '-') ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4588: + case 4478: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4719); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '-') ADVANCE(4606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4589: + case 4479: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '-') ADVANCE(4549); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4590: + case 4480: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4754); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '-') ADVANCE(4640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4591: + case 4481: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4720); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '-') ADVANCE(4607); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4592: + case 4482: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4593: + case 4483: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4594: + case 4484: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4595: + case 4485: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3935); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4596: + case 4486: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4623); - if (lookahead == '_') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '.') ADVANCE(4513); + if (lookahead == '_') ADVANCE(4486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4597: + case 4487: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4628); - if (lookahead == '_') ADVANCE(4597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '.') ADVANCE(4518); + if (lookahead == '_') ADVANCE(4487); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4598: + case 4488: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(4748); + if (lookahead == '2') ADVANCE(4635); if (lookahead == '0' || - lookahead == '1') ADVANCE(4757); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '1') ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4599: + case 4489: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4759); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == ':') ADVANCE(4645); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4600: + case 4490: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4762); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == ':') ADVANCE(4648); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4601: + case 4491: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3881); - if (lookahead == '~') ADVANCE(3892); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '=') ADVANCE(3780); + if (lookahead == '~') ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4602: + case 4492: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3879); - if (lookahead == '>') ADVANCE(3805); - if (lookahead == '~') ADVANCE(3890); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '>') ADVANCE(3704); + if (lookahead == '~') ADVANCE(3789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4603: + case 4493: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3879); - if (lookahead == '~') ADVANCE(3890); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '~') ADVANCE(3789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4604: + case 4494: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3805); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(3704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4605: + case 4495: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4363); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4271); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4606: + case 4496: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4607: + case 4497: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4351); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4608: + case 4498: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4609: + case 4499: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4724); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4610: + case 4500: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4726); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4611: + case 4501: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4728); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4615); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4612: + case 4502: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4729); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '>') ADVANCE(4616); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4613: + case 4503: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - 'I', 4731, - '_', 4634, - 'i', 4731, - 'n', 4646, - '+', 4634, - '-', 4634, - 'B', 4120, - 'b', 4120, + 'I', 4618, + '_', 4524, + 'i', 4618, + 'n', 4536, + '+', 4524, + '-', 4524, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4614: + case 4504: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'i') ADVANCE(4618); if (lookahead == '+' || - lookahead == '-') ADVANCE(4634); + lookahead == '-') ADVANCE(4524); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4615: + case 4505: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'i') ADVANCE(4641); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'i') ADVANCE(4531); if (lookahead == '+' || - lookahead == '-') ADVANCE(4634); + lookahead == '-') ADVANCE(4524); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4616: + case 4506: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4731); - if (lookahead == 'n') ADVANCE(4646); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4618); + if (lookahead == 'n') ADVANCE(4536); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4617: + case 4507: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4731); - if (lookahead == 'r') ADVANCE(4716); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4618); + if (lookahead == 'r') ADVANCE(4603); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4618: + case 4508: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4731); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4618); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4619: + case 4509: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4641); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4531); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4620: + case 4510: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4669); - if (lookahead == 'o') ADVANCE(4645); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4559); + if (lookahead == 'o') ADVANCE(4535); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4621: + case 4511: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4731); - if (lookahead == 'i') ADVANCE(4669); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'I') ADVANCE(4618); + if (lookahead == 'i') ADVANCE(4559); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4622: + case 4512: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4512); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4623: + case 4513: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4624: + case 4514: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4625: + case 4515: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4626); + if (lookahead == '_') ADVANCE(4516); if (lookahead == '+' || - lookahead == '-') ADVANCE(4626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4626: + case 4516: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4627: + case 4517: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4628: + case 4518: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4518); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4629: + case 4519: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4087); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4630: + case 4520: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'n') ADVANCE(4646); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'n') ADVANCE(4536); if (lookahead == '+' || - lookahead == '-') ADVANCE(4634); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4631: + case 4521: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'o') ADVANCE(4605); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'o') ADVANCE(4495); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4632: + case 4522: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4634); - if (lookahead == 'o') ADVANCE(4609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4524); + if (lookahead == 'o') ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4633: + case 4523: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4634); + if (lookahead == '_') ADVANCE(4524); if (lookahead == '+' || - lookahead == '-') ADVANCE(4634); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4634: + case 4524: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4634); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4524); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4635: + case 4525: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4636); + if (lookahead == '_') ADVANCE(4526); if (lookahead == '+' || - lookahead == '-') ADVANCE(4636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == '-') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4636: + case 4526: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '_') ADVANCE(4526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4637: + case 4527: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4666); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'a') ADVANCE(4556); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4638: + case 4528: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'a') ADVANCE(4608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4639: + case 4529: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4695); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'a') ADVANCE(4583); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4640: + case 4530: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4673); - if (lookahead == 'o') ADVANCE(4687); - if (lookahead == 's') ADVANCE(4658); - if (lookahead == 'x') ADVANCE(4681); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'a') ADVANCE(4563); + if (lookahead == 'o') ADVANCE(4575); + if (lookahead == 's') ADVANCE(4548); + if (lookahead == 'x') ADVANCE(4571); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4641: + case 4531: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4642: + case 4532: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4643: + case 4533: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'd') ADVANCE(3766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4644: + case 4534: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'd') ADVANCE(3824); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4645: + case 4535: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3905); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'd') ADVANCE(3804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4646: + case 4536: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(4702); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'd') ADVANCE(4590); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4647: + case 4537: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4648: + case 4538: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4649: + case 4539: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4642); - if (lookahead == 't') ADVANCE(4639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4532); + if (lookahead == 't') ADVANCE(4529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4650: + case 4540: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4642); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4532); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4651: + case 4541: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4652: + case 4542: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4693); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4581); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4653: + case 4543: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4500); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4654: + case 4544: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4696); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'e') ADVANCE(4584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4655: + case 4545: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3787); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'f') ADVANCE(3686); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4656: + case 4546: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'h') ADVANCE(3776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4657: + case 4547: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'h') ADVANCE(3774); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4658: + case 4548: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(4664); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'h') ADVANCE(4554); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4659: + case 4549: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'i') ADVANCE(4558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4660: + case 4550: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'i') ADVANCE(4593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4661: + case 4551: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4707); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'i') ADVANCE(4594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4662: + case 4552: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'i') ADVANCE(4598); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4663: + case 4553: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4664: + case 4554: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3921); - if (lookahead == 'r') ADVANCE(3923); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'l') ADVANCE(3820); + if (lookahead == 'r') ADVANCE(3822); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4665: + case 4555: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4666: + case 4556: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'l') ADVANCE(4589); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4667: + case 4557: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4665); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'l') ADVANCE(4555); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4668: + case 4558: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'n') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4669: + case 4559: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'n') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 4670: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4671: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4643); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 4672: + case 4560: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4646); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'n') ADVANCE(3661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4673: + case 4561: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4644); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'n') ADVANCE(4533); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4674: + case 4562: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4605); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'n') ADVANCE(4536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4675: + case 4563: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4717); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'n') ADVANCE(4534); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4676: + case 4564: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4645); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4677: + case 4565: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4710); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4604); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4678: + case 4566: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4535); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4679: + case 4567: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4597); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4680: + case 4568: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4686); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4681: + case 4569: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4688); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4499); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4682: + case 4570: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4704); - if (lookahead == 's') ADVANCE(4127); - if (lookahead == 'u') ADVANCE(4667); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4574); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4683: + case 4571: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4704); - if (lookahead == 'u') ADVANCE(4667); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4576); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4684: + case 4572: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'o') ADVANCE(4605); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4685: + case 4573: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(3770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4686: + case 4574: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4687: + case 4575: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3929); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4688: + case 4576: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3927); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4689: + case 4577: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4690: + case 4578: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4716); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4603); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4691: + case 4579: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4572); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4692: + case 4580: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4584); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4693: + case 4581: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4582); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4694: + case 4582: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4498); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4695: + case 4583: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4696: + case 4584: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4697: + case 4585: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'r') ADVANCE(4502); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4698: + case 4586: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4127); - if (lookahead == 'u') ADVANCE(4667); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(4557); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 4699: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'a') ADVANCE(4625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4700: + case 4587: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3853); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4701: + case 4588: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4648); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 's') ADVANCE(3752); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4702: + case 4589: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 's') ADVANCE(4538); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4703: + case 4590: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4591); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 's') ADVANCE(4478); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4704: + case 4591: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4749); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 's') ADVANCE(4481); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4705: + case 4592: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4577); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4706: + case 4593: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4587); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4477); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4707: + case 4594: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4546); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4708: + case 4595: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4709: + case 4596: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4497); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4710: + case 4597: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4589); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4479); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4711: + case 4598: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4547); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4712: + case 4599: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4585); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4713: + case 4600: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4501); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4714: + case 4601: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 't') ADVANCE(4591); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4715: + case 4602: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4667); + if (lookahead == 'u') ADVANCE(4557); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'a') ADVANCE(4625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4716: + case 4603: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4647); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'u') ADVANCE(4537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4717: + case 4604: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4709); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'u') ADVANCE(4596); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4718: + case 4605: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4713); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'u') ADVANCE(4600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4719: + case 4606: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4661); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'w') ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4720: + case 4607: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4662); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'w') ADVANCE(4552); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4721: + case 4608: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(4127); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4722: + case 4609: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3654); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4723: + case 4610: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4724: + case 4611: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3564); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4725: + case 4612: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3652); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3557); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4726: + case 4613: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4727: + case 4614: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3653); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4728: + case 4615: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4729: + case 4616: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (lookahead == '|') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4730: + case 4617: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4738); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'a') ADVANCE(4625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4731: + case 4618: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4732: + case 4619: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4735); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'f') ADVANCE(4622); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4733: + case 4620: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4109); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'f') ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4734: + case 4621: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4100); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'f') ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4735: + case 4622: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3147); + lookahead == 'i') ADVANCE(3071); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4763); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3150); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4649); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3074); END_STATE(); - case 4736: + case 4623: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'i') ADVANCE(4631); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4737: + case 4624: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4745); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'i') ADVANCE(4632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4738: + case 4625: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4111); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4739: + case 4626: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4734); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'n') ADVANCE(4621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4740: + case 4627: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4736); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'n') ADVANCE(4623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4741: + case 4628: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4733); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'n') ADVANCE(4620); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4742: + case 4629: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4732); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'n') ADVANCE(4619); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4743: + case 4630: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'n') ADVANCE(4624); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4744: + case 4631: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4746); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 't') ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4745: + case 4632: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 't') ADVANCE(4634); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4746: + case 4633: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4747: + case 4634: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4103); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); - END_STATE(); - case 4748: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4152); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4749: + case 4635: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4750: + case 4636: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4751: + case 4637: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4590); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4480); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4752: + case 4638: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4600); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4753: + case 4639: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4637); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4754: + case 4640: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4646); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4755: + case 4641: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4147); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4756: + case 4642: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4164); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4757: + case 4643: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4152); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4758: + case 4644: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4752); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4759: + case 4645: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4755); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4641); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4760: + case 4646: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4158); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4054); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4761: + case 4647: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4599); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4489); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4762: + case 4648: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4647); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4763: + case 4649: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4649); END_STATE(); - case 4764: + case 4650: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(4767); - if (lookahead == '_') ADVANCE(4768); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4653); + if (lookahead == '_') ADVANCE(4654); if (lookahead == '\t' || - lookahead == ' ') SKIP(332); + lookahead == ' ') SKIP(279); if (lookahead == '+' || - lookahead == '-') ADVANCE(4766); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + lookahead == '-') ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4765: + case 4651: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '.') ADVANCE(4767); - if (lookahead == '_') ADVANCE(4768); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '.') ADVANCE(4653); + if (lookahead == '_') ADVANCE(4654); if (lookahead == '\t' || - lookahead == ' ') SKIP(404); + lookahead == ' ') SKIP(344); if (lookahead == '+' || - lookahead == '-') ADVANCE(4766); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + lookahead == '-') ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4766: + case 4652: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4769); - if (lookahead == '_') ADVANCE(4766); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + if (lookahead == '.') ADVANCE(4655); + if (lookahead == '_') ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4767: + case 4653: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4767); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(4653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4768: + case 4654: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(4654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4769: + case 4655: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4769); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(4655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4770: + case 4656: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4771); + if (lookahead == '_') ADVANCE(4657); if (lookahead == '+' || - lookahead == '-') ADVANCE(4771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + lookahead == '-') ADVANCE(4657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4771: + case 4657: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + if (lookahead == '_') ADVANCE(4657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4772: + case 4658: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4658); END_STATE(); - case 4773: + case 4659: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4899); - if (lookahead == '>') ADVANCE(4344); - if (lookahead == 'n') ADVANCE(4841); - if (lookahead == 'r') ADVANCE(4915); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4785); + if (lookahead == '>') ADVANCE(4252); + if (lookahead == 'n') ADVANCE(4727); + if (lookahead == 'r') ADVANCE(4800); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4774: + case 4660: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4899); - if (lookahead == '>') ADVANCE(4344); - if (lookahead == 'r') ADVANCE(4915); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4785); + if (lookahead == '>') ADVANCE(4252); + if (lookahead == 'r') ADVANCE(4800); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4775: + case 4661: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4850); - if (lookahead == '>') ADVANCE(4348); - if (lookahead == 'r') ADVANCE(3872); - if (lookahead == 'u') ADVANCE(4947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4736); + if (lookahead == '>') ADVANCE(4256); + if (lookahead == 'r') ADVANCE(3771); + if (lookahead == 'u') ADVANCE(4831); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4776: + case 4662: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4850); - if (lookahead == '>') ADVANCE(4348); - if (lookahead == 'u') ADVANCE(4947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4736); + if (lookahead == '>') ADVANCE(4256); + if (lookahead == 'u') ADVANCE(4831); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4777: + case 4663: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4902); - if (lookahead == '>') ADVANCE(4336); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4788); + if (lookahead == '>') ADVANCE(4244); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4778: + case 4664: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4853); - if (lookahead == '>') ADVANCE(4340); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4739); + if (lookahead == '>') ADVANCE(4248); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4779: + case 4665: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4907); - if (lookahead == '>') ADVANCE(4972); - if (lookahead == 'n') ADVANCE(4841); - if (lookahead == 'r') ADVANCE(4925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4793); + if (lookahead == '>') ADVANCE(4856); + if (lookahead == 'n') ADVANCE(4727); + if (lookahead == 'r') ADVANCE(4810); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4780: + case 4666: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4907); - if (lookahead == '>') ADVANCE(4972); - if (lookahead == 'r') ADVANCE(4925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4793); + if (lookahead == '>') ADVANCE(4856); + if (lookahead == 'r') ADVANCE(4810); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4781: + case 4667: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4857); - if (lookahead == '>') ADVANCE(4973); - if (lookahead == 'r') ADVANCE(3872); - if (lookahead == 'u') ADVANCE(4953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4743); + if (lookahead == '>') ADVANCE(4857); + if (lookahead == 'r') ADVANCE(3771); + if (lookahead == 'u') ADVANCE(4837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4782: + case 4668: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4857); - if (lookahead == '>') ADVANCE(4973); - if (lookahead == 'u') ADVANCE(4953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4743); + if (lookahead == '>') ADVANCE(4857); + if (lookahead == 'u') ADVANCE(4837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4783: + case 4669: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4911); - if (lookahead == '>') ADVANCE(4975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4796); + if (lookahead == '>') ADVANCE(4859); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4784: + case 4670: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4859); - if (lookahead == '>') ADVANCE(4977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '+') ADVANCE(4745); + if (lookahead == '>') ADVANCE(4861); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4785: + case 4671: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3718); - if (lookahead == '.') ADVANCE(4817); - if (lookahead == '_') ADVANCE(4793); + if (lookahead == '-') ADVANCE(3623); + if (lookahead == '.') ADVANCE(4703); + if (lookahead == '_') ADVANCE(4679); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4994); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'i') ADVANCE(4878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4786: + case 4672: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(5015); - if (lookahead == '_') ADVANCE(4817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '-') ADVANCE(4898); + if (lookahead == '_') ADVANCE(4703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4787: + case 4673: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '-') ADVANCE(4721); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4788: + case 4674: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '-') ADVANCE(4853); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4789: + case 4675: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '-') ADVANCE(4757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4790: + case 4676: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4855); + if (lookahead == '-') ADVANCE(4741); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4791: + case 4677: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(5016); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '-') ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4792: + case 4678: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '-') ADVANCE(4854); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4793: + case 4679: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4817); - if (lookahead == '_') ADVANCE(4793); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '.') ADVANCE(4703); + if (lookahead == '_') ADVANCE(4679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4794: + case 4680: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3813); - if (lookahead == '_') ADVANCE(4824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '.') ADVANCE(3712); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4795: + case 4681: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4826); - if (lookahead == '_') ADVANCE(4795); + if (lookahead == '.') ADVANCE(4712); + if (lookahead == '_') ADVANCE(4681); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4796: + case 4682: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(5013); + if (lookahead == '.') ADVANCE(4896); if (lookahead == '+' || - lookahead == '-') ADVANCE(4797); + lookahead == '-') ADVANCE(4683); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'z') ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4797: + case 4683: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(5003); + if (lookahead == '2') ADVANCE(4887); if (lookahead == '0' || - lookahead == '1') ADVANCE(5014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == '1') ADVANCE(4897); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4798: + case 4684: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(5005); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == ':') ADVANCE(4888); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4799: + case 4685: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(5018); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == ':') ADVANCE(4901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4800: + case 4686: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(5020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == ':') ADVANCE(4903); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4801: + case 4687: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3882); - if (lookahead == '~') ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '=') ADVANCE(3781); + if (lookahead == '~') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4802: + case 4688: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '>') ADVANCE(3806); - if (lookahead == '~') ADVANCE(3891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '=') ADVANCE(3779); + if (lookahead == '>') ADVANCE(3705); + if (lookahead == '~') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4803: + case 4689: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3880); - if (lookahead == '~') ADVANCE(3891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '=') ADVANCE(3779); + if (lookahead == '~') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4804: + case 4690: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4364); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4272); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4805: + case 4691: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4360); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4806: + case 4692: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4807: + case 4693: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4356); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4264); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4808: + case 4694: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3806); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4809: + case 4695: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4974); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4858); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4810: + case 4696: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4976); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4860); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4811: + case 4697: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4862); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4812: + case 4698: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '>') ADVANCE(4863); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4813: + case 4699: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4984); - if (lookahead == 'f') ADVANCE(5002); - if (lookahead == 'n') ADVANCE(4984); + if (lookahead == 'N') ADVANCE(4868); + if (lookahead == 'f') ADVANCE(4886); + if (lookahead == 'n') ADVANCE(4868); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4814: + case 4700: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(5017); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'T') ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4815: + case 4701: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4817); - if (lookahead == 'b') ADVANCE(4116); - if (lookahead == 'o') ADVANCE(4132); - if (lookahead == 'x') ADVANCE(4137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4819); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '_') ADVANCE(4703); + if (lookahead == 'b') ADVANCE(4012); + if (lookahead == 'o') ADVANCE(4028); + if (lookahead == 'x') ADVANCE(4033); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4816: + case 4702: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4817); + if (lookahead == '_') ADVANCE(4703); if (lookahead == '+' || - lookahead == '-') ADVANCE(4817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == '-') ADVANCE(4703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4817: + case 4703: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '_') ADVANCE(4703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4818: + case 4704: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4786); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '_') ADVANCE(4703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4819: + case 4705: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4818); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '_') ADVANCE(4703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4820: + case 4706: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4819); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '_') ADVANCE(4703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4821: + case 4707: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4821); + if (lookahead == '_') ADVANCE(4707); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'e') ADVANCE(4702); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4822: + case 4708: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4822); + if (lookahead == '_') ADVANCE(4708); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4823); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4709); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4823: + case 4709: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4823); + if (lookahead == '_') ADVANCE(4709); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4825); + lookahead == 'e') ADVANCE(4711); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4823); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4709); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4824: + case 4710: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '_') ADVANCE(4710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4825: + case 4711: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4826); + if (lookahead == '_') ADVANCE(4712); if (lookahead == '+' || - lookahead == '-') ADVANCE(4826); + lookahead == '-') ADVANCE(4712); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4826: + case 4712: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4826); + if (lookahead == '_') ADVANCE(4712); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4827: + case 4713: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'a') ADVANCE(4765); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4828: + case 4714: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4943); - if (lookahead == 'o') ADVANCE(4894); + if (lookahead == 'a') ADVANCE(4828); + if (lookahead == 'o') ADVANCE(4780); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4829: + case 4715: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4883); - if (lookahead == 'o') ADVANCE(4920); + if (lookahead == 'a') ADVANCE(4769); + if (lookahead == 'o') ADVANCE(4805); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4830: + case 4716: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4878); - if (lookahead == 'o') ADVANCE(4842); - if (lookahead == 'u') ADVANCE(4942); + if (lookahead == 'a') ADVANCE(4764); + if (lookahead == 'o') ADVANCE(4728); + if (lookahead == 'u') ADVANCE(4827); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4831: + case 4717: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4877); + if (lookahead == 'a') ADVANCE(4763); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4832: + case 4718: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4971); + if (lookahead == 'a') ADVANCE(4855); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4833: + case 4719: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4934); + if (lookahead == 'a') ADVANCE(4819); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4834: + case 4720: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4931); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'a') ADVANCE(4816); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4835: + case 4721: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4898); - if (lookahead == 'o') ADVANCE(4918); - if (lookahead == 's') ADVANCE(4863); - if (lookahead == 'x') ADVANCE(4909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'a') ADVANCE(4784); + if (lookahead == 'o') ADVANCE(4803); + if (lookahead == 's') ADVANCE(4749); + if (lookahead == 'x') ADVANCE(4795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4836: + case 4722: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4866); + if (lookahead == 'c') ADVANCE(4752); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4837: + case 4723: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4849); + if (lookahead == 'c') ADVANCE(4735); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4838: + case 4724: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'd') ADVANCE(3767); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4839: + case 4725: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3907); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'd') ADVANCE(3806); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4840: + case 4726: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3926); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'd') ADVANCE(3825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4841: + case 4727: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4938); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'd') ADVANCE(4823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4842: + case 4728: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4963); + if (lookahead == 'd') ADVANCE(4847); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4843: + case 4729: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4849); + if (lookahead == 'd') ADVANCE(4735); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4844: + case 4730: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4029); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'e') ADVANCE(3925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4845: + case 4731: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4037); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'e') ADVANCE(3933); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4846: + case 4732: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(5002); + if (lookahead == 'e') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4847: + case 4733: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4860); - if (lookahead == 'o') ADVANCE(5002); + if (lookahead == 'e') ADVANCE(4746); + if (lookahead == 'o') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4848: + case 4734: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4862); + if (lookahead == 'e') ADVANCE(4748); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4849: + case 4735: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4790); + if (lookahead == 'e') ADVANCE(4676); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4850: + case 4736: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4805); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'e') ADVANCE(4691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4851: + case 4737: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4944); - if (lookahead == 'o') ADVANCE(4901); + if (lookahead == 'e') ADVANCE(4829); + if (lookahead == 'o') ADVANCE(4787); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4852: + case 4738: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4831); + if (lookahead == 'e') ADVANCE(4717); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4853: + case 4739: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'e') ADVANCE(4813); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4854: + case 4740: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4920); + if (lookahead == 'e') ADVANCE(4805); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4855: + case 4741: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4896); + if (lookahead == 'e') ADVANCE(4782); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4856: + case 4742: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4930); + if (lookahead == 'e') ADVANCE(4815); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4857: + case 4743: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4810); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'e') ADVANCE(4696); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4858: + case 4744: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4927); + if (lookahead == 'e') ADVANCE(4812); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4859: + case 4745: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'e') ADVANCE(4817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4860: + case 4746: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(5002); + if (lookahead == 'f') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4861: + case 4747: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3792); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'f') ADVANCE(3691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4862: + case 4748: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4872); - if (lookahead == 't') ADVANCE(4965); + if (lookahead == 'g') ADVANCE(4758); + if (lookahead == 't') ADVANCE(4849); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4863: + case 4749: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4881); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'h') ADVANCE(4767); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4864: + case 4750: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'h') ADVANCE(3777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4865: + case 4751: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'h') ADVANCE(3775); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4866: + case 4752: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(5002); + if (lookahead == 'h') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4867: + case 4753: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4874); + if (lookahead == 'h') ADVANCE(4760); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4868: + case 4754: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4843); + if (lookahead == 'i') ADVANCE(4729); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4869: + case 4755: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4833); + if (lookahead == 'i') ADVANCE(4719); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4870: + case 4756: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4897); + if (lookahead == 'i') ADVANCE(4783); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4871: + case 4757: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4892); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'i') ADVANCE(4778); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4872: + case 4758: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4940); + if (lookahead == 'i') ADVANCE(4825); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4873: + case 4759: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'i') ADVANCE(4832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4874: + case 4760: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4889); + if (lookahead == 'i') ADVANCE(4775); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4875: + case 4761: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4949); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'i') ADVANCE(4833); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4876: + case 4762: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4952); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'i') ADVANCE(4836); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4877: + case 4763: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(5002); + if (lookahead == 'k') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4878: + case 4764: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4846); - if (lookahead == 't') ADVANCE(4836); + if (lookahead == 'k') ADVANCE(4732); + if (lookahead == 't') ADVANCE(4722); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4879: + case 4765: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4936); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'l') ADVANCE(4821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4880: + case 4766: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'l') ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4881: + case 4767: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3922); - if (lookahead == 'r') ADVANCE(3924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'l') ADVANCE(3821); + if (lookahead == 'r') ADVANCE(3823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4882: + case 4768: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4939); - if (lookahead == 'r') ADVANCE(4926); - if (lookahead == 'x') ADVANCE(4913); + if (lookahead == 'l') ADVANCE(4824); + if (lookahead == 'r') ADVANCE(4811); + if (lookahead == 'x') ADVANCE(4798); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4883: + case 4769: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4939); + if (lookahead == 'l') ADVANCE(4824); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4884: + case 4770: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(5002); + if (lookahead == 'l') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4885: + case 4771: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4869); - if (lookahead == 's') ADVANCE(5002); + if (lookahead == 'l') ADVANCE(4755); + if (lookahead == 's') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4886: + case 4772: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4880); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'l') ADVANCE(4766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4887: + case 4773: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4884); + if (lookahead == 'l') ADVANCE(4770); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4888: + case 4774: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4832); + if (lookahead == 'l') ADVANCE(4718); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4889: + case 4775: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4846); + if (lookahead == 'l') ADVANCE(4732); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4890: + case 4776: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4838); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'n') ADVANCE(4724); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4891: + case 4777: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'n') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4892: + case 4778: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'n') ADVANCE(3773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4893: + case 4779: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(5002); + if (lookahead == 'n') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4894: + case 4780: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4937); + if (lookahead == 'n') ADVANCE(4822); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4895: + case 4781: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'n') ADVANCE(4727); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4896: + case 4782: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4967); + if (lookahead == 'n') ADVANCE(4851); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4897: + case 4783: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4962); + if (lookahead == 'n') ADVANCE(4846); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4898: + case 4784: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'n') ADVANCE(4726); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4899: + case 4785: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4804); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4900: + case 4786: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4964); + if (lookahead == 'o') ADVANCE(4848); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4901: + case 4787: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4912); + if (lookahead == 'o') ADVANCE(4797); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4902: + case 4788: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4843); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4903: + case 4789: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4839); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4725); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4904: + case 4790: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4920); + if (lookahead == 'o') ADVANCE(4805); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4905: + case 4791: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4802); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4906: + case 4792: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4951); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4907: + case 4793: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4809); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4695); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4908: + case 4794: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4923); + if (lookahead == 'o') ADVANCE(4808); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); - END_STATE(); - case 4909: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4919); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4910: + case 4795: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4945); - if (lookahead == 'u') ADVANCE(4886); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4911: + case 4796: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4966); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'o') ADVANCE(4850); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4912: + case 4797: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(5002); + if (lookahead == 'p') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4913: + case 4798: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4908); - if (lookahead == 't') ADVANCE(4858); + if (lookahead == 'p') ADVANCE(4794); + if (lookahead == 't') ADVANCE(4744); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4914: + case 4799: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4842); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4915: + case 4800: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4777); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4663); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4916: + case 4801: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(3771); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4917: + case 4802: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3870); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(3769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4918: + case 4803: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3930); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(3829); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4919: + case 4804: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(3827); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4920: + case 4805: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(5002); + if (lookahead == 'r') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4921: + case 4806: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4961); + if (lookahead == 'r') ADVANCE(4845); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4922: + case 4807: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4852); + if (lookahead == 'r') ADVANCE(4738); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4923: + case 4808: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4944); + if (lookahead == 'r') ADVANCE(4829); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4924: + case 4809: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4837); + if (lookahead == 'r') ADVANCE(4723); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4925: + case 4810: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4783); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4926: + case 4811: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4904); + if (lookahead == 'r') ADVANCE(4790); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4927: + case 4812: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4893); + if (lookahead == 'r') ADVANCE(4779); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4928: + case 4813: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4929); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4814); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4929: + case 4814: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4693); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4930: + case 4815: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4888); + if (lookahead == 'r') ADVANCE(4774); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4931: + case 4816: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4932: + case 4817: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4933); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4818); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4933: + case 4818: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4812); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'r') ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4934: + case 4819: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(5002); + if (lookahead == 's') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4935: + case 4820: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3860); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 's') ADVANCE(3759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4936: + case 4821: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 's') ADVANCE(4731); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4937: + case 4822: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4942); - if (lookahead == 't') ADVANCE(4870); + if (lookahead == 's') ADVANCE(4827); + if (lookahead == 't') ADVANCE(4756); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4938: + case 4823: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4788); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 's') ADVANCE(4674); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4939: + case 4824: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4846); + if (lookahead == 's') ADVANCE(4732); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4940: + case 4825: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4955); + if (lookahead == 's') ADVANCE(4839); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4941: + case 4826: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4792); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 's') ADVANCE(4678); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4942: + case 4827: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(5002); + if (lookahead == 't') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4943: + case 4828: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4836); + if (lookahead == 't') ADVANCE(4722); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4944: + case 4829: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4790); + if (lookahead == 't') ADVANCE(4676); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); - END_STATE(); - case 4945: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(5004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4946: + case 4830: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4947: + case 4831: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4778); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4664); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4948: + case 4832: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4787); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4949: + case 4833: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4864); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4750); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4950: + case 4834: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4806); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4951: + case 4835: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4952: + case 4836: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4751); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4953: + case 4837: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4784); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4954: + case 4838: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4811); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4697); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4955: + case 4839: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4854); + if (lookahead == 't') ADVANCE(4740); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4956: + case 4840: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4941); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 't') ADVANCE(4826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4957: + case 4841: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4886); + if (lookahead == 'u') ADVANCE(4772); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'a') ADVANCE(4874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4958: + case 4842: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'u') ADVANCE(4730); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4959: + case 4843: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4950); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'u') ADVANCE(4834); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4960: + case 4844: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4887); + if (lookahead == 'u') ADVANCE(4773); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4992); + lookahead == 'a') ADVANCE(4876); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4961: + case 4845: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4846); - if (lookahead == 'y') ADVANCE(5002); + if (lookahead == 'u') ADVANCE(4732); + if (lookahead == 'y') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4962: + case 4846: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4846); + if (lookahead == 'u') ADVANCE(4732); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4963: + case 4847: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4889); + if (lookahead == 'u') ADVANCE(4775); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4964: + case 4848: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4924); + if (lookahead == 'u') ADVANCE(4809); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4965: + case 4849: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4927); + if (lookahead == 'u') ADVANCE(4812); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4966: + case 4850: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4954); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'u') ADVANCE(4838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4967: + case 4851: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(5002); + if (lookahead == 'v') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4968: + case 4852: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4856); + if (lookahead == 'v') ADVANCE(4742); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4969: + case 4853: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'w') ADVANCE(4761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4970: + case 4854: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == 'w') ADVANCE(4762); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4971: + case 4855: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(5002); + if (lookahead == 'y') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4972: + case 4856: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3654); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4973: + case 4857: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4974: + case 4858: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3564); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4975: + case 4859: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3652); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3557); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4976: + case 4860: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4977: + case 4861: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3653); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4978: + case 4862: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3656); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4979: + case 4863: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (lookahead == '|') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4980: + case 4864: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '+' || - lookahead == '-') ADVANCE(4797); + lookahead == '-') ADVANCE(4683); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4980); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'z') ADVANCE(4905); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4981: + case 4865: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'a') ADVANCE(4874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4982: + case 4866: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4992); + lookahead == 'a') ADVANCE(4876); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4983: + case 4867: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'f') ADVANCE(4872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4984: + case 4868: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4989); + lookahead == 'f') ADVANCE(4873); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4985: + case 4869: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4989); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'f') ADVANCE(4873); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4986: + case 4870: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4997); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'i') ADVANCE(4881); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4987: + case 4871: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4998); + lookahead == 'i') ADVANCE(4882); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4988: + case 4872: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4995); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'i') ADVANCE(4879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4989: + case 4873: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4996); + lookahead == 'i') ADVANCE(4880); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4990: + case 4874: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'n') ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4991: + case 4875: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4983); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'n') ADVANCE(4867); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4992: + case 4876: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5002); + lookahead == 'n') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4993: + case 4877: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4984); + lookahead == 'n') ADVANCE(4868); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4994: + case 4878: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4985); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'n') ADVANCE(4869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4995: + case 4879: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4986); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'n') ADVANCE(4870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4996: + case 4880: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4987); + lookahead == 'n') ADVANCE(4871); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4997: + case 4881: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4999); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 't') ADVANCE(4883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 4998: + case 4882: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5000); + lookahead == 't') ADVANCE(4884); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 4999: + case 4883: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == 'y') ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5000: + case 4884: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5002); + lookahead == 'y') ADVANCE(4886); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 5001: + case 4885: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == '_') ADVANCE(4885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5002: + case 4886: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5002); - END_STATE(); - case 5003: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4886); END_STATE(); - case 5004: + case 4887: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5005: + case 4888: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4891); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5006: + case 4889: ACCEPT_TOKEN(aux_sym_unquoted_token4); if ((',' <= lookahead && lookahead <= '.') || lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5006); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4889); END_STATE(); - case 5007: + case 4890: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5007); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + lookahead == '_') ADVANCE(4890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5008: + case 4891: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4905); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5009: + case 4892: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4791); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4677); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5010: + case 4893: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5011: + case 4894: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4800); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4686); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5012: + case 4895: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4682); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5013: + case 4896: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4980); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5014: + case 4897: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5015: + case 4898: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5009); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5016: + case 4899: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5010); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4893); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5017: + case 4900: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5018: + case 4901: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5012); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4895); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5019: + case 4902: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4799); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5020: + case 4903: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4902); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5021: + case 4904: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5021); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4904); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5022: + case 4905: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5023: + case 4906: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(4038); - if (lookahead == '(') ADVANCE(3931); - if (lookahead == '[') ADVANCE(4192); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '[') ADVANCE(4088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5024: + case 4907: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5066); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == 'r') ADVANCE(5069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '+') ADVANCE(4949); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(4952); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5025: + case 4908: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5061); - if (lookahead == '>') ADVANCE(4346); - if (lookahead == 'u') ADVANCE(5073); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '+') ADVANCE(4944); + if (lookahead == '>') ADVANCE(4254); + if (lookahead == 'u') ADVANCE(4956); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5026: + case 4909: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5055); - if (lookahead == '-') ADVANCE(5057); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == '_') ADVANCE(5057); - if (lookahead == 'r') ADVANCE(5069); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '+') ADVANCE(4938); + if (lookahead == '-') ADVANCE(4940); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == '_') ADVANCE(4940); + if (lookahead == 'r') ADVANCE(4952); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5027: + case 4910: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5067); - if (lookahead == '>') ADVANCE(4334); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '+') ADVANCE(4950); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5028: + case 4911: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(5062); - if (lookahead == '>') ADVANCE(4338); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '+') ADVANCE(4945); + if (lookahead == '>') ADVANCE(4246); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5029: + case 4912: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(5101); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '-') ADVANCE(4984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5030: + case 4913: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5031: + case 4914: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5032: + case 4915: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(5047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5033: + case 4916: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5046); - if (lookahead == '_') ADVANCE(5034); + if (lookahead == '.') ADVANCE(4929); + if (lookahead == '_') ADVANCE(4917); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'i') ADVANCE(4969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5034: + case 4917: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5046); - if (lookahead == '_') ADVANCE(5034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '.') ADVANCE(4929); + if (lookahead == '_') ADVANCE(4917); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5035: + case 4918: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3811); - if (lookahead == '_') ADVANCE(5047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '.') ADVANCE(3710); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5036: + case 4919: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5050); - if (lookahead == '_') ADVANCE(5037); + if (lookahead == '.') ADVANCE(4933); + if (lookahead == '_') ADVANCE(4920); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'i') ADVANCE(4969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5037: + case 4920: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(5050); - if (lookahead == '_') ADVANCE(5037); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '.') ADVANCE(4933); + if (lookahead == '_') ADVANCE(4920); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5038: + case 4921: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(5092); + if (lookahead == '2') ADVANCE(4975); if (lookahead == '0' || - lookahead == '1') ADVANCE(5100); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == '1') ADVANCE(4983); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5039: + case 4922: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5103); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == ':') ADVANCE(4986); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5040: + case 4923: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(5105); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == ':') ADVANCE(4988); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5041: + case 4924: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4362); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '>') ADVANCE(4270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5042: + case 4925: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5043: + case 4926: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4350); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5044: + case 4927: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4354); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5045: + case 4928: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4928); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5046: + case 4929: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5047: + case 4930: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5047); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4085); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4930); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5048: + case 4931: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5049); + if (lookahead == '_') ADVANCE(4932); if (lookahead == '+' || - lookahead == '-') ADVANCE(5049); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == '-') ADVANCE(4932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5049: + case 4932: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5049); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5050: + case 4933: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5050); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5051: + case 4934: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4008); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5052: + case 4935: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5053); + if (lookahead == '_') ADVANCE(4936); if (lookahead == '+' || - lookahead == '-') ADVANCE(5053); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == '-') ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5053: + case 4936: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5053); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5054: + case 4937: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5054); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4937); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5055: + case 4938: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5057); - if (lookahead == 'o') ADVANCE(5041); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4940); + if (lookahead == 'o') ADVANCE(4924); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5056: + case 4939: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5057); + if (lookahead == '_') ADVANCE(4940); if (lookahead == '+' || - lookahead == '-') ADVANCE(5057); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == '-') ADVANCE(4940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5057: + case 4940: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(5057); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == '_') ADVANCE(4940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5058: + case 4941: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(5064); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'a') ADVANCE(4947); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5059: + case 4942: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5060: + case 4943: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5061: + case 4944: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(5042); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'e') ADVANCE(4925); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5062: + case 4945: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(5070); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'e') ADVANCE(4953); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5063: + case 4946: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4014); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5064: + case 4947: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(5072); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'l') ADVANCE(4955); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5065: + case 4948: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(5063); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'l') ADVANCE(4946); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5066: + case 4949: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(5041); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'o') ADVANCE(4924); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5067: + case 4950: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(5077); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'o') ADVANCE(4960); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5068: + case 4951: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5076); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'r') ADVANCE(4959); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5069: + case 4952: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5027); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'r') ADVANCE(4910); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5070: + case 4953: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5071); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'r') ADVANCE(4954); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5071: + case 4954: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(5044); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'r') ADVANCE(4927); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5072: + case 4955: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(5060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 's') ADVANCE(4943); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5073: + case 4956: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(5028); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 't') ADVANCE(4911); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5074: + case 4957: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(5043); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 't') ADVANCE(4926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5075: + case 4958: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5065); + if (lookahead == 'u') ADVANCE(4948); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5083); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'a') ADVANCE(4966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5076: + case 4959: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5059); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'u') ADVANCE(4942); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5077: + case 4960: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(5074); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (lookahead == 'u') ADVANCE(4957); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5078: + case 4961: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5083); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'a') ADVANCE(4966); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5079: + case 4962: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4098); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'f') ADVANCE(3994); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5080: + case 4963: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4107); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'f') ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5081: + case 4964: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5088); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'i') ADVANCE(4971); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5082: + case 4965: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5089); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'i') ADVANCE(4972); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5083: + case 4966: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5084: + case 4967: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5079); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'n') ADVANCE(4962); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5085: + case 4968: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5081); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'n') ADVANCE(4964); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5086: + case 4969: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'n') ADVANCE(4963); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5087: + case 4970: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5082); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'n') ADVANCE(4965); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5088: + case 4971: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5090); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 't') ADVANCE(4973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5089: + case 4972: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5091); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 't') ADVANCE(4974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5090: + case 4973: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5091: + case 4974: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4103); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5092: + case 4975: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4151); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5093: + case 4976: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5094: + case 4977: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5029); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4912); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5095: + case 4978: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5040); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4923); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5096: + case 4979: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5094); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4977); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5097: + case 4980: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4156); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5098: + case 4981: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4146); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5099: + case 4982: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4163); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5100: + case 4983: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4151); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5101: + case 4984: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5097); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4980); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5102: + case 4985: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5095); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4978); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5103: + case 4986: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5098); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5104: + case 4987: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5039); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4922); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5105: + case 4988: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5104); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4987); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5106: + case 4989: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5106); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4989); END_STATE(); - case 5107: + case 4990: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5163); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == 'i') ADVANCE(5180); - if (lookahead == 'r') ADVANCE(5167); + if (lookahead == '+') ADVANCE(5046); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == 'i') ADVANCE(5063); + if (lookahead == 'r') ADVANCE(5050); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5108: + case 4991: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5163); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == 'r') ADVANCE(5167); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '+') ADVANCE(5046); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(5050); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5109: + case 4992: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5156); - if (lookahead == '>') ADVANCE(4346); - if (lookahead == 'u') ADVANCE(5173); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '+') ADVANCE(5039); + if (lookahead == '>') ADVANCE(4254); + if (lookahead == 'u') ADVANCE(5056); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5110: + case 4993: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); ADVANCE_MAP( - '+', 5144, - '-', 5146, - '>', 4342, - 'I', 5180, - '_', 5146, - 'i', 5180, - 'r', 5167, - 'B', 4120, - 'b', 4120, + '+', 5026, + '-', 5028, + '>', 4250, + 'I', 5063, + '_', 5028, + 'i', 5063, + 'r', 5050, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5111: + case 4994: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5144); - if (lookahead == '-') ADVANCE(5146); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == '_') ADVANCE(5146); - if (lookahead == 'r') ADVANCE(5167); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '+') ADVANCE(5026); + if (lookahead == '-') ADVANCE(5028); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == '_') ADVANCE(5028); + if (lookahead == 'r') ADVANCE(5050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5112: + case 4995: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5164); - if (lookahead == '>') ADVANCE(4334); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '+') ADVANCE(5047); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5113: + case 4996: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5157); - if (lookahead == '>') ADVANCE(4338); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '+') ADVANCE(5040); + if (lookahead == '>') ADVANCE(4246); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5114: + case 4997: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(5199); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '-') ADVANCE(5082); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5115: + case 4998: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5021); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5116: + case 4999: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5117: + case 5000: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3935); - if (lookahead == '_') ADVANCE(5143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(5025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5118: + case 5001: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3935); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5119: + case 5002: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5137); - if (lookahead == '_') ADVANCE(5120); + if (lookahead == '.') ADVANCE(5020); + if (lookahead == '_') ADVANCE(5003); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5188); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'i') ADVANCE(5071); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5120: + case 5003: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5137); - if (lookahead == '_') ADVANCE(5120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '.') ADVANCE(5020); + if (lookahead == '_') ADVANCE(5003); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5121: + case 5004: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5142); - if (lookahead == '_') ADVANCE(5122); + if (lookahead == '.') ADVANCE(5024); + if (lookahead == '_') ADVANCE(5005); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5188); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'i') ADVANCE(5071); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5122: + case 5005: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5142); - if (lookahead == '_') ADVANCE(5122); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '.') ADVANCE(5024); + if (lookahead == '_') ADVANCE(5005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5123: + case 5006: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(5194); + if (lookahead == '2') ADVANCE(5077); if (lookahead == '0' || - lookahead == '1') ADVANCE(5203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == '1') ADVANCE(5086); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5124: + case 5007: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5204); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == ':') ADVANCE(5087); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5125: + case 5008: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5207); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == ':') ADVANCE(5090); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5126: + case 5009: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4362); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '>') ADVANCE(4270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5127: + case 5010: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4358); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5128: + case 5011: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4350); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5129: + case 5012: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4354); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5130: + case 5013: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == '_') ADVANCE(5146); - if (lookahead == 'i') ADVANCE(5180); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == '_') ADVANCE(5028); + if (lookahead == 'i') ADVANCE(5063); if (lookahead == '+' || - lookahead == '-') ADVANCE(5146); + lookahead == '-') ADVANCE(5028); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5131: + case 5014: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == '_') ADVANCE(5146); - if (lookahead == 'i') ADVANCE(5151); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == '_') ADVANCE(5028); + if (lookahead == 'i') ADVANCE(5034); if (lookahead == '+' || - lookahead == '-') ADVANCE(5146); + lookahead == '-') ADVANCE(5028); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5132: + case 5015: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == 'i') ADVANCE(5180); - if (lookahead == 'r') ADVANCE(5176); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == 'i') ADVANCE(5063); + if (lookahead == 'r') ADVANCE(5059); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5133: + case 5016: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == 'i') ADVANCE(5180); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == 'i') ADVANCE(5063); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5134: + case 5017: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == 'i') ADVANCE(5151); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == 'i') ADVANCE(5034); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5135: + case 5018: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5180); - if (lookahead == 'i') ADVANCE(5162); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'I') ADVANCE(5063); + if (lookahead == 'i') ADVANCE(5045); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5136: + case 5019: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5137: + case 5020: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5138: + case 5021: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4007); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5021); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5139: + case 5022: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5140); + if (lookahead == '_') ADVANCE(5023); if (lookahead == '+' || - lookahead == '-') ADVANCE(5140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); - END_STATE(); - case 5140: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == '-') ADVANCE(5023); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5141: + case 5023: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5023); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5142: + case 5024: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5024); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5143: + case 5025: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4088); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5144: + case 5026: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5146); - if (lookahead == 'o') ADVANCE(5126); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5028); + if (lookahead == 'o') ADVANCE(5009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5145: + case 5027: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5146); + if (lookahead == '_') ADVANCE(5028); if (lookahead == '+' || - lookahead == '-') ADVANCE(5146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == '-') ADVANCE(5028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5146: + case 5028: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5147: + case 5029: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5148); + if (lookahead == '_') ADVANCE(5030); if (lookahead == '+' || - lookahead == '-') ADVANCE(5148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == '-') ADVANCE(5030); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5148: + case 5030: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5030); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5149: + case 5031: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5160); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == '_') ADVANCE(5031); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5150: + case 5032: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5178); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'a') ADVANCE(5043); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5151: + case 5033: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'a') ADVANCE(5061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5152: + case 5034: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5153: + case 5035: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5154: + case 5036: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5155: + case 5037: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5152); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5156: + case 5038: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'e') ADVANCE(5035); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5157: + case 5039: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5168); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'e') ADVANCE(5010); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5158: + case 5040: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'e') ADVANCE(5051); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5159: + case 5041: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4014); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5160: + case 5042: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5172); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5161: + case 5043: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'l') ADVANCE(5055); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5162: + case 5044: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == 'l') ADVANCE(5042); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); + END_STATE(); + case 5045: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'n') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5163: + case 5046: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5126); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'o') ADVANCE(5009); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5164: + case 5047: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5177); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'o') ADVANCE(5060); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5165: + case 5048: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5166: + case 5049: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5176); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'r') ADVANCE(5059); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5167: + case 5050: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5112); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'r') ADVANCE(4995); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5168: + case 5051: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5169); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'r') ADVANCE(5052); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5169: + case 5052: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5129); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'r') ADVANCE(5012); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5170: + case 5053: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4127); - if (lookahead == 'u') ADVANCE(5161); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(5044); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5185); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'a') ADVANCE(5068); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5171: + case 5054: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5172: + case 5055: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(5154); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 's') ADVANCE(5037); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5173: + case 5056: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5113); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 't') ADVANCE(4996); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5174: + case 5057: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5128); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 't') ADVANCE(5011); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5175: + case 5058: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5161); + if (lookahead == 'u') ADVANCE(5044); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5185); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'a') ADVANCE(5068); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5176: + case 5059: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5153); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'u') ADVANCE(5036); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5177: + case 5060: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5174); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'u') ADVANCE(5057); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5178: + case 5061: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5179: + case 5062: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5185); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'a') ADVANCE(5068); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5180: + case 5063: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5181: + case 5064: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4110); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'f') ADVANCE(4006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5182: + case 5065: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4101); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'f') ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5183: + case 5066: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5190); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'i') ADVANCE(5073); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5184: + case 5067: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5191); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'i') ADVANCE(5074); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5185: + case 5068: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5186: + case 5069: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5182); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'n') ADVANCE(5065); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5187: + case 5070: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5183); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'n') ADVANCE(5066); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5188: + case 5071: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5181); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'n') ADVANCE(5064); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5189: + case 5072: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5184); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'n') ADVANCE(5067); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5190: + case 5073: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5192); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 't') ADVANCE(5075); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5191: + case 5074: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5193); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 't') ADVANCE(5076); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5192: + case 5075: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5193: + case 5076: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4103); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5194: + case 5077: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4153); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4049); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5195: + case 5078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4143); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5196: + case 5079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5114); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4997); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5197: + case 5080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5125); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5008); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5198: + case 5081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5196); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5079); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5199: + case 5082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5205); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5088); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5200: + case 5083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5197); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5080); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5201: + case 5084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4148); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5202: + case 5085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4165); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5203: + case 5086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4153); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4049); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5204: + case 5087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5201); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5084); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5205: + case 5088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5206: + case 5089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5124); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5207: + case 5090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5206); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5089); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5208: + case 5091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5208); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5091); END_STATE(); - case 5209: + case 5092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3815); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(5212); - if (lookahead == ']') ADVANCE(3687); - if (lookahead == '_') ADVANCE(5213); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3714); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5095); + if (lookahead == ']') ADVANCE(3592); + if (lookahead == '_') ADVANCE(5096); if (lookahead == '\t' || - lookahead == ' ') SKIP(330); + lookahead == ' ') SKIP(277); if (lookahead == '+' || - lookahead == '-') ADVANCE(5211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + lookahead == '-') ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5210: + case 5093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(5212); - if (lookahead == '_') ADVANCE(5213); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5095); + if (lookahead == '_') ADVANCE(5096); if (lookahead == '\t' || - lookahead == ' ') SKIP(332); + lookahead == ' ') SKIP(279); if (lookahead == '+' || - lookahead == '-') ADVANCE(5211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + lookahead == '-') ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5211: + case 5094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(5214); - if (lookahead == '_') ADVANCE(5211); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + if (lookahead == '.') ADVANCE(5097); + if (lookahead == '_') ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5212: + case 5095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5212); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4010); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + if (lookahead == '_') ADVANCE(5095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5213: + case 5096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + if (lookahead == '_') ADVANCE(5096); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5214: + case 5097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + if (lookahead == '_') ADVANCE(5097); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5215: + case 5098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5216); + if (lookahead == '_') ADVANCE(5099); if (lookahead == '+' || - lookahead == '-') ADVANCE(5216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + lookahead == '-') ADVANCE(5099); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5216: + case 5099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + if (lookahead == '_') ADVANCE(5099); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5217: + case 5100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5217); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5100); END_STATE(); - case 5218: + case 5101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5253); - if (lookahead == '>') ADVANCE(4345); - if (lookahead == 'r') ADVANCE(5256); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '+') ADVANCE(5136); + if (lookahead == '>') ADVANCE(4253); + if (lookahead == 'r') ADVANCE(5139); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5219: + case 5102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5248); - if (lookahead == '>') ADVANCE(4349); - if (lookahead == 'u') ADVANCE(5260); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '+') ADVANCE(5131); + if (lookahead == '>') ADVANCE(4257); + if (lookahead == 'u') ADVANCE(5143); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5220: + case 5103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5254); - if (lookahead == '>') ADVANCE(4337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '+') ADVANCE(5137); + if (lookahead == '>') ADVANCE(4245); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5221: + case 5104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5249); - if (lookahead == '>') ADVANCE(4341); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '+') ADVANCE(5132); + if (lookahead == '>') ADVANCE(4249); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5222: + case 5105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5286); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '-') ADVANCE(5169); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5223: + case 5106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5287); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '-') ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5224: + case 5107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5239); - if (lookahead == '_') ADVANCE(5225); + if (lookahead == '.') ADVANCE(5122); + if (lookahead == '_') ADVANCE(5108); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'i') ADVANCE(5154); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5225: + case 5108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5239); - if (lookahead == '_') ADVANCE(5225); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '.') ADVANCE(5122); + if (lookahead == '_') ADVANCE(5108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5226: + case 5109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3814); - if (lookahead == '_') ADVANCE(5244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '.') ADVANCE(3713); + if (lookahead == '_') ADVANCE(5127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5126); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5227: + case 5110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5284); + if (lookahead == '.') ADVANCE(5167); if (lookahead == '+' || - lookahead == '-') ADVANCE(5228); + lookahead == '-') ADVANCE(5111); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'z') ADVANCE(5176); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5228: + case 5111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(5276); + if (lookahead == '2') ADVANCE(5159); if (lookahead == '0' || - lookahead == '1') ADVANCE(5285); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == '1') ADVANCE(5168); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5229: + case 5112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5277); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == ':') ADVANCE(5160); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5162); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5230: + case 5113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5289); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == ':') ADVANCE(5172); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5231: + case 5114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5291); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == ':') ADVANCE(5174); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5232: + case 5115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4365); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4273); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5233: + case 5116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4361); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4269); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5234: + case 5117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4261); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5235: + case 5118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4357); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '>') ADVANCE(4265); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5236: + case 5119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(5288); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'T') ADVANCE(5171); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5237: + case 5120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5239); - if (lookahead == 'b') ADVANCE(4119); - if (lookahead == 'o') ADVANCE(4135); - if (lookahead == 'x') ADVANCE(4140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '_') ADVANCE(5122); + if (lookahead == 'b') ADVANCE(4015); + if (lookahead == 'o') ADVANCE(4031); + if (lookahead == 'x') ADVANCE(4036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5238: + case 5121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5239); + if (lookahead == '_') ADVANCE(5122); if (lookahead == '+' || - lookahead == '-') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == '-') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5239: + case 5122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5122); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5240: + case 5123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5222); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5105); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5241: + case 5124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5240); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5123); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5242: + case 5125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5243: + case 5126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5243); + if (lookahead == '_') ADVANCE(5126); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'e') ADVANCE(5121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5126); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5244: + case 5127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == '_') ADVANCE(5127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5126); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5245: + case 5128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(5250); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'a') ADVANCE(5133); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5246: + case 5129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4028); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'e') ADVANCE(3924); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5247: + case 5130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'e') ADVANCE(3932); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5248: + case 5131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5233); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'e') ADVANCE(5116); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5249: + case 5132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5257); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'e') ADVANCE(5140); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5250: + case 5133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5259); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'l') ADVANCE(5142); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5251: + case 5134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4019); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'l') ADVANCE(3915); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5252: + case 5135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5251); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'l') ADVANCE(5134); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5253: + case 5136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'o') ADVANCE(5115); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5254: + case 5137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5264); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'o') ADVANCE(5147); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5255: + case 5138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'r') ADVANCE(5146); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5256: + case 5139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'r') ADVANCE(5103); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5257: + case 5140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5258); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'r') ADVANCE(5141); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5258: + case 5141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5235); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'r') ADVANCE(5118); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5259: + case 5142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(5247); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 's') ADVANCE(5130); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5260: + case 5143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5221); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 't') ADVANCE(5104); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5261: + case 5144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5234); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 't') ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5262: + case 5145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5252); + if (lookahead == 'u') ADVANCE(5135); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5270); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'a') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5263: + case 5146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5246); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'u') ADVANCE(5129); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5264: + case 5147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5261); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (lookahead == 'u') ADVANCE(5144); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5265: + case 5148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '+' || - lookahead == '-') ADVANCE(5228); + lookahead == '-') ADVANCE(5111); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5265); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'z') ADVANCE(5176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5266: + case 5149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5270); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'a') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5267: + case 5150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'f') ADVANCE(5152); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5268: + case 5151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5273); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'i') ADVANCE(5156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5269: + case 5152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5272); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'i') ADVANCE(5155); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5270: + case 5153: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'n') ADVANCE(5176); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5271: + case 5154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5267); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'n') ADVANCE(5150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5272: + case 5155: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5268); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'n') ADVANCE(5151); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5273: + case 5156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5274); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 't') ADVANCE(5157); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5274: + case 5157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == 'y') ADVANCE(5176); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5275: + case 5158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5275); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == '_') ADVANCE(5158); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5276: + case 5159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5112); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5277: + case 5160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5162); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5278: + case 5161: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + lookahead == '_') ADVANCE(5161); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5279: + case 5162: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5293); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5176); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5280: + case 5163: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5106); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5281: + case 5164: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5236); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5119); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5282: + case 5165: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5231); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5114); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5283: + case 5166: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5227); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5110); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5284: + case 5167: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5265); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5285: + case 5168: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5229); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5112); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5286: + case 5169: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5163); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5287: + case 5170: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5164); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5288: + case 5171: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5165); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5289: + case 5172: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5283); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5166); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5290: + case 5173: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5230); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5113); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5291: + case 5174: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5290); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5173); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5292: + case 5175: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5292); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5175); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5293: + case 5176: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); - END_STATE(); - case 5294: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5322); - if (lookahead == '>') ADVANCE(4342); - if (lookahead == 'r') ADVANCE(5325); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5295: + case 5177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5317); - if (lookahead == '>') ADVANCE(4346); - if (lookahead == 'u') ADVANCE(5329); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '+') ADVANCE(5204); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(5207); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5296: + case 5178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5323); - if (lookahead == '>') ADVANCE(4334); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '+') ADVANCE(5199); + if (lookahead == '>') ADVANCE(4254); + if (lookahead == 'u') ADVANCE(5211); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5297: + case 5179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5318); - if (lookahead == '>') ADVANCE(4338); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '+') ADVANCE(5205); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5298: + case 5180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(5352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '+') ADVANCE(5200); + if (lookahead == '>') ADVANCE(4246); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5299: + case 5181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5300); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '-') ADVANCE(5234); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5300: + case 5182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5334); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '.') ADVANCE(5216); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5301: + case 5183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3812); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5302: + case 5184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5313); - if (lookahead == '_') ADVANCE(5303); + if (lookahead == '.') ADVANCE(5195); + if (lookahead == '_') ADVANCE(5185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'i') ADVANCE(5225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5303: + case 5185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5313); - if (lookahead == '_') ADVANCE(5303); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '.') ADVANCE(5195); + if (lookahead == '_') ADVANCE(5185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5304: + case 5186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(1687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5355); + if (lookahead == ':') ADVANCE(1611); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5305: + case 5187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4362); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '>') ADVANCE(4270); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5306: + case 5188: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4358); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5307: + case 5189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4350); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5308: + case 5190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4354); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5309: + case 5191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5309); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4081); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '_') ADVANCE(5191); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5310: + case 5192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5311); + if (lookahead == '_') ADVANCE(5193); if (lookahead == '+' || - lookahead == '-') ADVANCE(5311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == '-') ADVANCE(5193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5311: + case 5193: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5311); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '_') ADVANCE(5193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5312: + case 5194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5312); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4077); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '_') ADVANCE(5194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5313: + case 5195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '_') ADVANCE(5195); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5314: + case 5196: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(5320); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'a') ADVANCE(5202); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5315: + case 5197: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5316: + case 5198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4030); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5317: + case 5199: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5306); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'e') ADVANCE(5188); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5318: + case 5200: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5326); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'e') ADVANCE(5208); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5319: + case 5201: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4014); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5320: + case 5202: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5328); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'l') ADVANCE(5210); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5321: + case 5203: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5319); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'l') ADVANCE(5201); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5322: + case 5204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5305); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'o') ADVANCE(5187); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5323: + case 5205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5333); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'o') ADVANCE(5215); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5324: + case 5206: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5332); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'r') ADVANCE(5214); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5325: + case 5207: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5296); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'r') ADVANCE(5179); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5326: + case 5208: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5327); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'r') ADVANCE(5209); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5327: + case 5209: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5308); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'r') ADVANCE(5190); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5328: + case 5210: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(5316); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 's') ADVANCE(5198); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5329: + case 5211: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5297); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 't') ADVANCE(5180); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5330: + case 5212: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5307); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 't') ADVANCE(5189); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5331: + case 5213: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5321); + if (lookahead == 'u') ADVANCE(5203); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5340); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'a') ADVANCE(5222); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5332: + case 5214: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5315); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'u') ADVANCE(5197); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5333: + case 5215: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5330); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == 'u') ADVANCE(5212); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5334: + case 5216: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '{') ADVANCE(4193); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (lookahead == '{') ADVANCE(4089); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5335: + case 5217: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5340); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'a') ADVANCE(5222); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5336: + case 5218: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4108); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'f') ADVANCE(4004); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5337: + case 5219: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4099); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'f') ADVANCE(3995); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5338: + case 5220: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5345); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'i') ADVANCE(5227); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5339: + case 5221: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5346); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'i') ADVANCE(5228); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5340: + case 5222: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4111); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5341: + case 5223: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5337); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'n') ADVANCE(5219); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5342: + case 5224: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5338); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'n') ADVANCE(5220); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5343: + case 5225: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5336); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'n') ADVANCE(5218); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5344: + case 5226: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5339); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'n') ADVANCE(5221); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5345: + case 5227: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5347); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 't') ADVANCE(5229); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5346: + case 5228: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5348); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 't') ADVANCE(5230); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5347: + case 5229: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4093); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5348: + case 5230: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4103); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5349: + case 5231: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5298); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5181); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5350: + case 5232: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5304); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5186); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5351: + case 5233: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5349); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5231); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5352: + case 5234: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5354); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5236); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5353: + case 5235: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5350); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5232); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5354: + case 5236: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4157); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4053); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5355: + case 5237: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5355); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5237); END_STATE(); - case 5356: + case 5238: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5389); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(5271); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5357: + case 5239: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3935); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5358: + case 5240: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3712); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(3617); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5359: + case 5241: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5358); - if (lookahead == '_') ADVANCE(5374); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(5240); + if (lookahead == '_') ADVANCE(5256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5360: + case 5242: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5358); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(5240); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5361: + case 5243: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5372); - if (lookahead == '_') ADVANCE(5361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4078); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(5254); + if (lookahead == '_') ADVANCE(5243); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5362: + case 5244: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3934); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(3833); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5363: + case 5245: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5373); - if (lookahead == '_') ADVANCE(5363); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '.') ADVANCE(5255); + if (lookahead == '_') ADVANCE(5245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5364: + case 5246: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5390); - if (lookahead == '_') ADVANCE(5378); - if (lookahead == 'i') ADVANCE(5390); + if (lookahead == 'I') ADVANCE(5272); + if (lookahead == '_') ADVANCE(5260); + if (lookahead == 'i') ADVANCE(5272); if (lookahead == '+' || - lookahead == '-') ADVANCE(5378); + lookahead == '-') ADVANCE(5260); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5365: + case 5247: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5390); - if (lookahead == '_') ADVANCE(5378); - if (lookahead == 'i') ADVANCE(5381); + if (lookahead == 'I') ADVANCE(5272); + if (lookahead == '_') ADVANCE(5260); + if (lookahead == 'i') ADVANCE(5263); if (lookahead == '+' || - lookahead == '-') ADVANCE(5378); + lookahead == '-') ADVANCE(5260); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5366: + case 5248: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5390); - if (lookahead == 'i') ADVANCE(5390); + if (lookahead == 'I') ADVANCE(5272); + if (lookahead == 'i') ADVANCE(5272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5367: + case 5249: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5390); - if (lookahead == 'i') ADVANCE(5381); + if (lookahead == 'I') ADVANCE(5272); + if (lookahead == 'i') ADVANCE(5263); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5368: + case 5250: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5390); - if (lookahead == 'i') ADVANCE(5385); - if (lookahead == 's') ADVANCE(4127); + if (lookahead == 'I') ADVANCE(5272); + if (lookahead == 'i') ADVANCE(5267); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5369: + case 5251: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5369); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4079); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5370: + case 5252: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5371); + if (lookahead == '_') ADVANCE(5253); if (lookahead == '+' || - lookahead == '-') ADVANCE(5371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == '-') ADVANCE(5253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5371: + case 5253: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5371); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4080); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5372: + case 5254: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5372); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5254); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5373: + case 5255: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5373); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5374: + case 5256: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5374); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4009); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5375: + case 5257: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5376); + if (lookahead == '_') ADVANCE(5258); if (lookahead == '+' || - lookahead == '-') ADVANCE(5376); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == '-') ADVANCE(5258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5376: + case 5258: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5376); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5377: + case 5259: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5378); + if (lookahead == '_') ADVANCE(5260); if (lookahead == '+' || - lookahead == '-') ADVANCE(5378); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == '-') ADVANCE(5260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5378: + case 5260: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5378); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3998); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5379: + case 5261: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '_') ADVANCE(5261); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5380: + case 5262: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(5388); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'a') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5381: + case 5263: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5382: + case 5264: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5383: + case 5265: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(5382); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'e') ADVANCE(5264); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5384: + case 5266: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5385: + case 5267: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(4127); + if (lookahead == 'n') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5386: + case 5268: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5387: + case 5269: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5388: + case 5270: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(4127); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5389: + case 5271: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '{') ADVANCE(4193); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if (lookahead == '{') ADVANCE(4089); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5390: + case 5272: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4120); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5391: + case 5273: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4104); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'f') ADVANCE(4000); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5392: + case 5274: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5391); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + lookahead == 'n') ADVANCE(5273); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5393: + case 5275: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5393); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5275); END_STATE(); - case 5394: + case 5276: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(5586); - if (lookahead == '$') ADVANCE(3691); - if (lookahead == '(') ADVANCE(3895); - if (lookahead == '.') ADVANCE(5396); - if (lookahead == '_') ADVANCE(5397); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '$') ADVANCE(3596); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5278); + if (lookahead == '_') ADVANCE(5279); if (lookahead == '\t' || - lookahead == ' ') SKIP(332); + lookahead == ' ') SKIP(279); if (lookahead == '+' || - lookahead == '-') ADVANCE(5395); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5401); + lookahead == '-') ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5283); END_STATE(); - case 5395: + case 5277: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(5398); - if (lookahead == '_') ADVANCE(5395); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if (lookahead == '.') ADVANCE(5280); + if (lookahead == '_') ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5396: + case 5278: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5396); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4012); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if (lookahead == '_') ADVANCE(5278); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5397: + case 5279: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5397); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if (lookahead == '_') ADVANCE(5279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5398: + case 5280: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if (lookahead == '_') ADVANCE(5280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5399: + case 5281: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5400); + if (lookahead == '_') ADVANCE(5282); if (lookahead == '+' || - lookahead == '-') ADVANCE(5400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + lookahead == '-') ADVANCE(5282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5400: + case 5282: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4002); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if (lookahead == '_') ADVANCE(5282); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5401: + case 5283: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5401); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5283); END_STATE(); - case 5402: + case 5284: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(4039); - if (lookahead == '(') ADVANCE(3931); - if (lookahead == '{') ADVANCE(4193); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5577); + if (lookahead == '$') ADVANCE(3935); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '{') ADVANCE(4089); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5459); END_STATE(); - case 5403: + case 5285: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5403); + if (lookahead == ',') ADVANCE(2996); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5285); END_STATE(); - case 5404: + case 5286: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3045); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5404); + if (lookahead == ',') ADVANCE(2969); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5286); END_STATE(); - case 5405: + case 5287: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5405); + if (lookahead == ',') ADVANCE(2972); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); END_STATE(); - case 5406: + case 5288: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5408); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + lookahead == 'i') ADVANCE(5290); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5407: + case 5289: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5409); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + lookahead == 'i') ADVANCE(5291); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5408: + case 5290: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5407); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + lookahead == 'n') ADVANCE(5289); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5409: + case 5291: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5410); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + lookahead == 't') ADVANCE(5292); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5410: + case 5292: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); + if (lookahead == ',') ADVANCE(3024); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5411); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + lookahead == 'y') ADVANCE(5293); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5411: + case 5293: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3100); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5411); + if (lookahead == ',') ADVANCE(3024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); END_STATE(); - case 5412: + case 5294: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5414); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); + lookahead == 'i') ADVANCE(5296); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5299); END_STATE(); - case 5413: + case 5295: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5415); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); + lookahead == 'i') ADVANCE(5297); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5299); END_STATE(); - case 5414: + case 5296: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5413); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); + lookahead == 'n') ADVANCE(5295); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5299); END_STATE(); - case 5415: + case 5297: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5416); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); + lookahead == 't') ADVANCE(5298); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5299); END_STATE(); - case 5416: + case 5298: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3140); + if (lookahead == ',') ADVANCE(3064); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5417); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); + lookahead == 'y') ADVANCE(5299); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5299); END_STATE(); - case 5417: + case 5299: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3140); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5417); + if (lookahead == ',') ADVANCE(3064); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5299); END_STATE(); - case 5418: + case 5300: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3153); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5418); + if (lookahead == ',') ADVANCE(3077); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); END_STATE(); - case 5419: + case 5301: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5419); + if (lookahead == ',') ADVANCE(2886); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); - case 5420: + case 5302: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3033); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5420); + if (lookahead == ',') ADVANCE(2957); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5302); END_STATE(); - case 5421: + case 5303: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == 'e') ADVANCE(5422); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == 'e') ADVANCE(5304); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5306); END_STATE(); - case 5422: + case 5304: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == 'n') ADVANCE(5423); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == 'n') ADVANCE(5305); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5306); END_STATE(); - case 5423: + case 5305: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2988); - if (lookahead == 'v') ADVANCE(1869); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); + if (lookahead == ',') ADVANCE(2912); + if (lookahead == 'v') ADVANCE(1793); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5306); END_STATE(); - case 5424: + case 5306: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5424); + if (lookahead == ',') ADVANCE(2912); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5306); END_STATE(); - case 5425: + case 5307: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5425); + if (lookahead == ',') ADVANCE(2915); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5307); END_STATE(); - case 5426: + case 5308: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5426); + if (lookahead == ',') ADVANCE(2978); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5308); END_STATE(); - case 5427: + case 5309: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2968); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5427); + if (lookahead == ',') ADVANCE(2892); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); END_STATE(); - case 5428: + case 5310: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5430); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); + lookahead == 'i') ADVANCE(5312); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); - case 5429: + case 5311: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5431); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); + lookahead == 'i') ADVANCE(5313); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); - case 5430: + case 5312: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5429); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); + lookahead == 'n') ADVANCE(5311); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); - case 5431: + case 5313: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'T' || - lookahead == 't') ADVANCE(5432); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); + lookahead == 't') ADVANCE(5314); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); - case 5432: + case 5314: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3150); + if (lookahead == ',') ADVANCE(3074); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5433); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); + lookahead == 'y') ADVANCE(5315); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); - case 5433: + case 5315: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3150); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5433); + if (lookahead == ',') ADVANCE(3074); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); - case 5434: + case 5316: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5434); + if (lookahead == ',') ADVANCE(2975); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5316); END_STATE(); - case 5435: + case 5317: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == 'e') ADVANCE(5436); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == 'e') ADVANCE(5318); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); - case 5436: + case 5318: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == 'n') ADVANCE(5437); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == 'n') ADVANCE(5319); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); - case 5437: + case 5319: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3006); - if (lookahead == 'v') ADVANCE(3846); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); + if (lookahead == ',') ADVANCE(2930); + if (lookahead == 'v') ADVANCE(3745); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); - case 5438: + case 5320: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5438); + if (lookahead == ',') ADVANCE(2930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); - case 5439: + case 5321: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5439); + if (lookahead == ',') ADVANCE(2960); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5321); END_STATE(); - case 5440: + case 5322: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3103); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5440); + if (lookahead == ',') ADVANCE(3027); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); END_STATE(); - case 5441: + case 5323: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3125); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5441); + if (lookahead == ',') ADVANCE(3049); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5323); END_STATE(); - case 5442: + case 5324: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3119); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5442); + if (lookahead == ',') ADVANCE(3043); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5324); END_STATE(); - case 5443: + case 5325: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2965); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5443); + if (lookahead == ',') ADVANCE(2889); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5325); END_STATE(); - case 5444: + case 5326: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5444); + if (lookahead == ',') ADVANCE(2987); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5326); END_STATE(); - case 5445: + case 5327: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5445); + if (lookahead == ',') ADVANCE(2981); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5327); END_STATE(); - case 5446: + case 5328: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5446); + if (lookahead == ',') ADVANCE(2918); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5328); END_STATE(); - case 5447: + case 5329: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5447); + if (lookahead == ',') ADVANCE(2966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5329); END_STATE(); - case 5448: + case 5330: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3122); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5448); + if (lookahead == ',') ADVANCE(3046); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5330); END_STATE(); - case 5449: + case 5331: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5449); + if (lookahead == ',') ADVANCE(2984); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); - case 5450: + case 5332: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3039); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5450); + if (lookahead == ',') ADVANCE(2963); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5332); END_STATE(); - case 5451: + case 5333: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == 'e') ADVANCE(5452); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == 'e') ADVANCE(5334); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); END_STATE(); - case 5452: + case 5334: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == 'n') ADVANCE(5453); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == 'n') ADVANCE(5335); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); END_STATE(); - case 5453: + case 5335: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3115); - if (lookahead == 'v') ADVANCE(3665); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); + if (lookahead == ',') ADVANCE(3039); + if (lookahead == 'v') ADVANCE(3570); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); END_STATE(); - case 5454: + case 5336: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3115); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); + if (lookahead == ',') ADVANCE(3039); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5336); END_STATE(); - case 5455: + case 5337: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2973); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2897); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); END_STATE(); - case 5456: + case 5338: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2976); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); + if (lookahead == ',') ADVANCE(2900); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); - case 5457: + case 5339: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3069); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5457); + if (lookahead == ',') ADVANCE(2993); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); END_STATE(); - case 5458: + case 5340: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == 'e') ADVANCE(5459); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == 'e') ADVANCE(5341); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5343); END_STATE(); - case 5459: + case 5341: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == 'n') ADVANCE(5460); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == 'n') ADVANCE(5342); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5343); END_STATE(); - case 5460: + case 5342: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3018); - if (lookahead == 'v') ADVANCE(3834); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); + if (lookahead == ',') ADVANCE(2942); + if (lookahead == 'v') ADVANCE(3733); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5343); END_STATE(); - case 5461: + case 5343: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3018); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); + if (lookahead == ',') ADVANCE(2942); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5343); END_STATE(); - case 5462: + case 5344: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3021); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5462); + if (lookahead == ',') ADVANCE(2945); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5344); END_STATE(); - case 5463: + case 5345: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5463); + if (lookahead == ',') ADVANCE(2990); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5345); END_STATE(); - case 5464: + case 5346: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5464); + if (lookahead == ',') ADVANCE(2948); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5346); END_STATE(); - case 5465: + case 5347: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2970); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5465); + if (lookahead == ',') ADVANCE(2894); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5347); END_STATE(); - case 5466: + case 5348: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5475); - if (lookahead == '_') ADVANCE(5466); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == '.') ADVANCE(5357); + if (lookahead == '_') ADVANCE(5348); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5357); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5467: + case 5349: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5476); - if (lookahead == '_') ADVANCE(5467); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5476); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if (lookahead == '.') ADVANCE(5358); + if (lookahead == '_') ADVANCE(5349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5468: + case 5350: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5469); - if (lookahead == '_') ADVANCE(5478); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5477); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == '.') ADVANCE(5351); + if (lookahead == '_') ADVANCE(5360); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5359); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5469: + case 5351: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5402); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == '.') ADVANCE(5284); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5470: + case 5352: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3713); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if (lookahead == '.') ADVANCE(3618); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5471: + case 5353: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5470); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if (lookahead == '.') ADVANCE(5352); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5472: + case 5354: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(5569); - if (lookahead == 'f') ADVANCE(3788); - if (lookahead == 'n') ADVANCE(3762); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'N') ADVANCE(5451); + if (lookahead == 'f') ADVANCE(3687); + if (lookahead == 'n') ADVANCE(3663); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5473: + case 5355: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5475); - if (lookahead == 'b') ADVANCE(5574); - if (lookahead == 'o') ADVANCE(5575); - if (lookahead == 'x') ADVANCE(5576); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == '_') ADVANCE(5357); + if (lookahead == 'b') ADVANCE(5456); + if (lookahead == 'o') ADVANCE(5457); + if (lookahead == 'x') ADVANCE(5458); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5357); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5474: + case 5356: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5475); + if (lookahead == '_') ADVANCE(5357); if (lookahead == '+' || - lookahead == '-') ADVANCE(5475); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == '-') ADVANCE(5357); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5357); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5475: + case 5357: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5475); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5475); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == '_') ADVANCE(5357); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5357); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5476: + case 5358: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5476); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if (lookahead == '_') ADVANCE(5358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5477: + case 5359: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5477); + if (lookahead == '_') ADVANCE(5359); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5474); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5477); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == 'e') ADVANCE(5356); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5359); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5478: + case 5360: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5478); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5477); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == '_') ADVANCE(5360); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5359); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5479: + case 5361: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5554); - if (lookahead == 'o') ADVANCE(5527); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'a') ADVANCE(5436); + if (lookahead == 'o') ADVANCE(5409); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5480: + case 5362: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5526); - if (lookahead == 'o') ADVANCE(5538); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'a') ADVANCE(5408); + if (lookahead == 'o') ADVANCE(5420); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5481: + case 5363: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5518); - if (lookahead == 'o') ADVANCE(5488); - if (lookahead == 'u') ADVANCE(5556); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'a') ADVANCE(5400); + if (lookahead == 'o') ADVANCE(5370); + if (lookahead == 'u') ADVANCE(5438); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5482: + case 5364: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5517); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'a') ADVANCE(5399); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5483: + case 5365: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5567); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'a') ADVANCE(5449); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5484: + case 5366: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5548); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'a') ADVANCE(5430); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5485: + case 5367: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5509); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'c') ADVANCE(5391); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5486: + case 5368: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5510); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'c') ADVANCE(5392); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5487: + case 5369: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5498); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'c') ADVANCE(5380); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5488: + case 5370: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5565); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'd') ADVANCE(5447); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5489: + case 5371: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5494); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'd') ADVANCE(5376); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5490: + case 5372: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5507); - if (lookahead == 'o') ADVANCE(3783); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5389); + if (lookahead == 'o') ADVANCE(3682); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5491: + case 5373: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5508); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5390); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5492: + case 5374: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3679); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3584); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5493: + case 5375: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3794); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3693); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5494: + case 5376: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3842); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3741); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5495: + case 5377: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3774); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5496: + case 5378: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3778); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5497: + case 5379: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3674); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3579); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5498: + case 5380: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3831); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3730); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5499: + case 5381: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(3653); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5500: + case 5382: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5555); - if (lookahead == 'o') ADVANCE(5532); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5437); + if (lookahead == 'o') ADVANCE(5414); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5501: + case 5383: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5482); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5364); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5502: + case 5384: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5547); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5429); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5503: + case 5385: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5544); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5426); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5504: + case 5386: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5540); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5422); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5505: + case 5387: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5442); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5324); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5506: + case 5388: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5448); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'e') ADVANCE(5330); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5507: + case 5389: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(3661); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'f') ADVANCE(3566); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5508: + case 5390: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(5515); - if (lookahead == 't') ADVANCE(5563); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'g') ADVANCE(5397); + if (lookahead == 't') ADVANCE(5445); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5509: + case 5391: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3822); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'h') ADVANCE(3721); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5510: + case 5392: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3799); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'h') ADVANCE(3698); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5511: + case 5393: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(5516); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'h') ADVANCE(5398); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5512: + case 5394: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5489); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'i') ADVANCE(5371); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5513: + case 5395: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5484); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'i') ADVANCE(5366); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5514: + case 5396: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5530); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'i') ADVANCE(5412); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5515: + case 5397: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5552); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'i') ADVANCE(5434); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5516: + case 5398: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5522); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'i') ADVANCE(5404); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5517: + case 5399: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3748); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'k') ADVANCE(3649); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5518: + case 5400: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(5495); - if (lookahead == 't') ADVANCE(5486); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'k') ADVANCE(5377); + if (lookahead == 't') ADVANCE(5368); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5519: + case 5401: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5513); - if (lookahead == 's') ADVANCE(3854); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5395); + if (lookahead == 's') ADVANCE(3753); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5520: + case 5402: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5524); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5406); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5521: + case 5403: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5483); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5365); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5522: + case 5404: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5496); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5378); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5523: + case 5405: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5497); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5379); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5524: + case 5406: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5441); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5323); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5525: + case 5407: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5551); - if (lookahead == 'r') ADVANCE(5543); - if (lookahead == 'x') ADVANCE(5536); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5433); + if (lookahead == 'r') ADVANCE(5425); + if (lookahead == 'x') ADVANCE(5418); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5526: + case 5408: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5553); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'l') ADVANCE(5435); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5527: + case 5409: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5550); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'n') ADVANCE(5432); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5528: + case 5410: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3669); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'n') ADVANCE(3574); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5529: + case 5411: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3826); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'n') ADVANCE(3725); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5530: + case 5412: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5564); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'n') ADVANCE(5446); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5531: + case 5413: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5561); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'o') ADVANCE(5443); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5532: + case 5414: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5535); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'o') ADVANCE(5417); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5533: + case 5415: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5539); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'o') ADVANCE(5421); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5534: + case 5416: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5546); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'o') ADVANCE(5428); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5535: + case 5417: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3769); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'p') ADVANCE(3668); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5536: + case 5418: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(5534); - if (lookahead == 't') ADVANCE(5503); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'p') ADVANCE(5416); + if (lookahead == 't') ADVANCE(5385); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5537: + case 5419: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5562); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5444); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5538: + case 5420: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3756); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(3657); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5539: + case 5421: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3699); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(3604); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5540: + case 5422: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3837); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(3736); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5541: + case 5423: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5501); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5383); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5542: + case 5424: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5487); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5369); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5543: + case 5425: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5533); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5415); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5544: + case 5426: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5528); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5410); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5545: + case 5427: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5529); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5411); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5546: + case 5428: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5558); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5440); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5547: + case 5429: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5521); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'r') ADVANCE(5403); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5548: + case 5430: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1858); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 's') ADVANCE(1782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5549: + case 5431: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5492); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 's') ADVANCE(5374); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5550: + case 5432: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5557); - if (lookahead == 't') ADVANCE(5514); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 's') ADVANCE(5439); + if (lookahead == 't') ADVANCE(5396); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5551: + case 5433: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5493); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 's') ADVANCE(5375); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5552: + case 5434: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5559); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 's') ADVANCE(5441); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5553: + case 5435: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5506); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 's') ADVANCE(5388); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5554: + case 5436: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5485); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 't') ADVANCE(5367); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5555: + case 5437: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1866); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 't') ADVANCE(1790); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5556: + case 5438: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1872); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 't') ADVANCE(1796); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5557: + case 5439: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1877); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 't') ADVANCE(1801); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5558: + case 5440: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1854); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 't') ADVANCE(1778); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5559: + case 5441: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5504); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 't') ADVANCE(5386); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5560: + case 5442: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5520); + if (lookahead == 'u') ADVANCE(5402); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5573); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == 'a') ADVANCE(5455); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5561: + case 5443: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5542); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'u') ADVANCE(5424); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5562: + case 5444: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5505); - if (lookahead == 'y') ADVANCE(3817); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'u') ADVANCE(5387); + if (lookahead == 'y') ADVANCE(3716); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5563: + case 5445: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5545); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'u') ADVANCE(5427); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5564: + case 5446: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5499); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'u') ADVANCE(5381); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5565: + case 5447: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5523); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'u') ADVANCE(5405); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5566: + case 5448: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(5502); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'v') ADVANCE(5384); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5567: + case 5449: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3849); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (lookahead == 'y') ADVANCE(3748); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5568: + case 5450: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5573); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == 'a') ADVANCE(5455); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5569: + case 5451: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5412); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == 'f') ADVANCE(5294); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5570: + case 5452: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5428); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + lookahead == 'f') ADVANCE(5310); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5571: + case 5453: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5569); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == 'n') ADVANCE(5451); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5572: + case 5454: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5570); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + lookahead == 'n') ADVANCE(5452); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5573: + case 5455: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5418); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == 'n') ADVANCE(5300); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5574: + case 5456: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5574); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == '_') ADVANCE(5456); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5575: + case 5457: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5575); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + lookahead == '_') ADVANCE(5457); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5576: + case 5458: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5576); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5458); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5577: + case 5459: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5577); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5459); END_STATE(); - case 5578: + case 5460: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '-' || lookahead == '.' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(5579); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5578); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(5461); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5460); END_STATE(); - case 5579: + case 5461: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5580: + case 5462: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(5596); + if (lookahead == '#') ADVANCE(5478); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5581); + lookahead != '|') ADVANCE(5463); END_STATE(); - case 5581: + case 5463: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -63204,20 +59876,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5581); + lookahead != '|') ADVANCE(5463); END_STATE(); - case 5582: + case 5464: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(5594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5583); + if (lookahead == '#') ADVANCE(5476); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5465); END_STATE(); - case 5583: + case 5465: 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(5583); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5465); END_STATE(); - case 5584: + case 5466: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(5593); + if (lookahead == '#') ADVANCE(5475); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -63226,9 +59898,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5585); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5467); END_STATE(); - case 5585: + case 5467: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -63238,38 +59910,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5585); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5467); END_STATE(); - case 5586: + case 5468: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 5587: + case 5469: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1850); - if (lookahead == '\r') ADVANCE(1852); - if (lookahead != 0) ADVANCE(1852); + if (lookahead == '\n') ADVANCE(1774); + if (lookahead == '\r') ADVANCE(1776); + if (lookahead != 0) ADVANCE(1776); END_STATE(); - case 5588: + case 5470: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1849); + if (lookahead == '!') ADVANCE(1773); END_STATE(); - case 5589: + case 5471: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5461); END_STATE(); - case 5590: + case 5472: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4201); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4097); END_STATE(); - case 5591: + case 5473: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5176); END_STATE(); - case 5592: + case 5474: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(5022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4905); END_STATE(); - case 5593: + case 5475: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -63279,13 +59951,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5585); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5467); END_STATE(); - case 5594: + case 5476: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5583); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5465); END_STATE(); - case 5595: + case 5477: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -63293,9 +59965,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4464); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4354); END_STATE(); - case 5596: + case 5478: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -63303,26 +59975,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5581); + lookahead != '|') ADVANCE(5463); END_STATE(); - case 5597: + case 5479: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5599); + lookahead != '\n') ADVANCE(5481); END_STATE(); - case 5598: + case 5480: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(5597); + if (lookahead == '#') ADVANCE(5479); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(5598); + lookahead == ' ') ADVANCE(5480); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(5599); + lookahead != '\n') ADVANCE(5481); END_STATE(); - case 5599: + case 5481: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5599); + lookahead != '\n') ADVANCE(5481); END_STATE(); default: return false; @@ -63851,8687 +60523,7774 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 1749, .external_lex_state = 2}, - [2] = {.lex_state = 1771, .external_lex_state = 2}, - [3] = {.lex_state = 1771, .external_lex_state = 2}, - [4] = {.lex_state = 1771, .external_lex_state = 2}, - [5] = {.lex_state = 1771, .external_lex_state = 2}, - [6] = {.lex_state = 1771, .external_lex_state = 2}, - [7] = {.lex_state = 1771, .external_lex_state = 2}, - [8] = {.lex_state = 1771, .external_lex_state = 2}, - [9] = {.lex_state = 1771, .external_lex_state = 2}, - [10] = {.lex_state = 1771, .external_lex_state = 2}, - [11] = {.lex_state = 1771, .external_lex_state = 2}, - [12] = {.lex_state = 1771, .external_lex_state = 2}, - [13] = {.lex_state = 1771, .external_lex_state = 2}, - [14] = {.lex_state = 1771, .external_lex_state = 2}, - [15] = {.lex_state = 1771, .external_lex_state = 2}, - [16] = {.lex_state = 1771, .external_lex_state = 2}, - [17] = {.lex_state = 1771, .external_lex_state = 2}, - [18] = {.lex_state = 1771, .external_lex_state = 2}, - [19] = {.lex_state = 1771, .external_lex_state = 2}, - [20] = {.lex_state = 1771, .external_lex_state = 2}, - [21] = {.lex_state = 1771, .external_lex_state = 2}, - [22] = {.lex_state = 1771, .external_lex_state = 2}, - [23] = {.lex_state = 1771, .external_lex_state = 2}, - [24] = {.lex_state = 1771, .external_lex_state = 2}, - [25] = {.lex_state = 1771, .external_lex_state = 2}, - [26] = {.lex_state = 1771, .external_lex_state = 2}, - [27] = {.lex_state = 1771, .external_lex_state = 2}, - [28] = {.lex_state = 1771, .external_lex_state = 2}, - [29] = {.lex_state = 1771, .external_lex_state = 2}, - [30] = {.lex_state = 1771, .external_lex_state = 2}, - [31] = {.lex_state = 1771, .external_lex_state = 2}, - [32] = {.lex_state = 1771, .external_lex_state = 2}, - [33] = {.lex_state = 1771, .external_lex_state = 2}, - [34] = {.lex_state = 1771, .external_lex_state = 2}, - [35] = {.lex_state = 1771, .external_lex_state = 2}, - [36] = {.lex_state = 1771, .external_lex_state = 2}, - [37] = {.lex_state = 1767, .external_lex_state = 2}, - [38] = {.lex_state = 1767, .external_lex_state = 2}, - [39] = {.lex_state = 1767, .external_lex_state = 2}, - [40] = {.lex_state = 1767, .external_lex_state = 2}, - [41] = {.lex_state = 1767, .external_lex_state = 2}, - [42] = {.lex_state = 1767, .external_lex_state = 2}, - [43] = {.lex_state = 1767, .external_lex_state = 2}, - [44] = {.lex_state = 1767, .external_lex_state = 2}, - [45] = {.lex_state = 1767, .external_lex_state = 2}, - [46] = {.lex_state = 1767, .external_lex_state = 2}, - [47] = {.lex_state = 1767, .external_lex_state = 2}, - [48] = {.lex_state = 1767, .external_lex_state = 2}, - [49] = {.lex_state = 1767, .external_lex_state = 2}, - [50] = {.lex_state = 1767, .external_lex_state = 2}, - [51] = {.lex_state = 1767, .external_lex_state = 2}, - [52] = {.lex_state = 1767, .external_lex_state = 2}, - [53] = {.lex_state = 1767, .external_lex_state = 2}, - [54] = {.lex_state = 1767, .external_lex_state = 2}, - [55] = {.lex_state = 1767, .external_lex_state = 2}, - [56] = {.lex_state = 1767, .external_lex_state = 2}, - [57] = {.lex_state = 1767, .external_lex_state = 2}, - [58] = {.lex_state = 1767, .external_lex_state = 2}, - [59] = {.lex_state = 1767, .external_lex_state = 2}, - [60] = {.lex_state = 1767, .external_lex_state = 2}, - [61] = {.lex_state = 1767, .external_lex_state = 2}, - [62] = {.lex_state = 1767, .external_lex_state = 2}, - [63] = {.lex_state = 1767, .external_lex_state = 2}, - [64] = {.lex_state = 47, .external_lex_state = 2}, - [65] = {.lex_state = 47, .external_lex_state = 2}, - [66] = {.lex_state = 1767, .external_lex_state = 2}, - [67] = {.lex_state = 47, .external_lex_state = 2}, - [68] = {.lex_state = 47, .external_lex_state = 2}, - [69] = {.lex_state = 47, .external_lex_state = 2}, - [70] = {.lex_state = 1767, .external_lex_state = 2}, - [71] = {.lex_state = 47, .external_lex_state = 2}, - [72] = {.lex_state = 47, .external_lex_state = 2}, - [73] = {.lex_state = 47, .external_lex_state = 2}, - [74] = {.lex_state = 47, .external_lex_state = 2}, - [75] = {.lex_state = 47, .external_lex_state = 2}, - [76] = {.lex_state = 47, .external_lex_state = 2}, - [77] = {.lex_state = 47, .external_lex_state = 2}, - [78] = {.lex_state = 47, .external_lex_state = 2}, - [79] = {.lex_state = 47, .external_lex_state = 2}, - [80] = {.lex_state = 47, .external_lex_state = 2}, - [81] = {.lex_state = 47, .external_lex_state = 2}, - [82] = {.lex_state = 47, .external_lex_state = 2}, - [83] = {.lex_state = 47, .external_lex_state = 2}, - [84] = {.lex_state = 47, .external_lex_state = 2}, - [85] = {.lex_state = 47, .external_lex_state = 2}, - [86] = {.lex_state = 47, .external_lex_state = 2}, - [87] = {.lex_state = 47, .external_lex_state = 2}, - [88] = {.lex_state = 47, .external_lex_state = 2}, - [89] = {.lex_state = 47, .external_lex_state = 2}, - [90] = {.lex_state = 47, .external_lex_state = 2}, - [91] = {.lex_state = 47, .external_lex_state = 2}, - [92] = {.lex_state = 47, .external_lex_state = 2}, - [93] = {.lex_state = 47, .external_lex_state = 2}, - [94] = {.lex_state = 47, .external_lex_state = 2}, - [95] = {.lex_state = 47, .external_lex_state = 2}, - [96] = {.lex_state = 47, .external_lex_state = 2}, - [97] = {.lex_state = 47, .external_lex_state = 2}, - [98] = {.lex_state = 47, .external_lex_state = 2}, - [99] = {.lex_state = 47, .external_lex_state = 2}, - [100] = {.lex_state = 47, .external_lex_state = 2}, - [101] = {.lex_state = 1767, .external_lex_state = 2}, - [102] = {.lex_state = 47, .external_lex_state = 2}, - [103] = {.lex_state = 1767, .external_lex_state = 2}, - [104] = {.lex_state = 1767, .external_lex_state = 2}, - [105] = {.lex_state = 1767, .external_lex_state = 2}, - [106] = {.lex_state = 1767, .external_lex_state = 2}, - [107] = {.lex_state = 1767, .external_lex_state = 2}, - [108] = {.lex_state = 47, .external_lex_state = 2}, - [109] = {.lex_state = 1767, .external_lex_state = 2}, - [110] = {.lex_state = 1767, .external_lex_state = 2}, - [111] = {.lex_state = 1767, .external_lex_state = 2}, - [112] = {.lex_state = 1767, .external_lex_state = 2}, - [113] = {.lex_state = 1767, .external_lex_state = 2}, - [114] = {.lex_state = 1767, .external_lex_state = 2}, - [115] = {.lex_state = 47, .external_lex_state = 2}, - [116] = {.lex_state = 1767, .external_lex_state = 2}, - [117] = {.lex_state = 1767, .external_lex_state = 2}, - [118] = {.lex_state = 1767, .external_lex_state = 2}, - [119] = {.lex_state = 1767, .external_lex_state = 2}, - [120] = {.lex_state = 1767, .external_lex_state = 2}, - [121] = {.lex_state = 1767, .external_lex_state = 2}, - [122] = {.lex_state = 1767, .external_lex_state = 2}, - [123] = {.lex_state = 1767, .external_lex_state = 2}, - [124] = {.lex_state = 1767, .external_lex_state = 2}, - [125] = {.lex_state = 1767, .external_lex_state = 2}, - [126] = {.lex_state = 1767, .external_lex_state = 2}, - [127] = {.lex_state = 1767, .external_lex_state = 2}, - [128] = {.lex_state = 1767, .external_lex_state = 2}, - [129] = {.lex_state = 1767, .external_lex_state = 2}, - [130] = {.lex_state = 1767, .external_lex_state = 2}, - [131] = {.lex_state = 1767, .external_lex_state = 2}, - [132] = {.lex_state = 1767, .external_lex_state = 2}, - [133] = {.lex_state = 1767, .external_lex_state = 2}, - [134] = {.lex_state = 1767, .external_lex_state = 2}, - [135] = {.lex_state = 1767, .external_lex_state = 2}, - [136] = {.lex_state = 1767, .external_lex_state = 2}, - [137] = {.lex_state = 1767, .external_lex_state = 2}, - [138] = {.lex_state = 1767, .external_lex_state = 2}, - [139] = {.lex_state = 1767, .external_lex_state = 2}, - [140] = {.lex_state = 1767, .external_lex_state = 2}, - [141] = {.lex_state = 1767, .external_lex_state = 2}, - [142] = {.lex_state = 1767, .external_lex_state = 2}, - [143] = {.lex_state = 1767, .external_lex_state = 2}, - [144] = {.lex_state = 1767, .external_lex_state = 2}, - [145] = {.lex_state = 1767, .external_lex_state = 2}, - [146] = {.lex_state = 1767, .external_lex_state = 2}, - [147] = {.lex_state = 1767, .external_lex_state = 2}, - [148] = {.lex_state = 1767, .external_lex_state = 2}, - [149] = {.lex_state = 1767, .external_lex_state = 2}, - [150] = {.lex_state = 2, .external_lex_state = 2}, - [151] = {.lex_state = 2, .external_lex_state = 2}, - [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 1, .external_lex_state = 2}, - [154] = {.lex_state = 1, .external_lex_state = 2}, - [155] = {.lex_state = 1, .external_lex_state = 2}, - [156] = {.lex_state = 1, .external_lex_state = 2}, - [157] = {.lex_state = 1, .external_lex_state = 2}, - [158] = {.lex_state = 1, .external_lex_state = 2}, - [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 2, .external_lex_state = 2}, - [161] = {.lex_state = 2, .external_lex_state = 2}, - [162] = {.lex_state = 6, .external_lex_state = 2}, - [163] = {.lex_state = 6, .external_lex_state = 2}, - [164] = {.lex_state = 255, .external_lex_state = 2}, - [165] = {.lex_state = 255, .external_lex_state = 2}, - [166] = {.lex_state = 255, .external_lex_state = 2}, - [167] = {.lex_state = 255, .external_lex_state = 2}, - [168] = {.lex_state = 255, .external_lex_state = 2}, - [169] = {.lex_state = 255, .external_lex_state = 2}, - [170] = {.lex_state = 255, .external_lex_state = 2}, - [171] = {.lex_state = 255, .external_lex_state = 2}, - [172] = {.lex_state = 255, .external_lex_state = 2}, - [173] = {.lex_state = 255, .external_lex_state = 2}, - [174] = {.lex_state = 255, .external_lex_state = 2}, - [175] = {.lex_state = 255, .external_lex_state = 2}, - [176] = {.lex_state = 255, .external_lex_state = 2}, - [177] = {.lex_state = 255, .external_lex_state = 2}, - [178] = {.lex_state = 255, .external_lex_state = 2}, - [179] = {.lex_state = 255, .external_lex_state = 2}, - [180] = {.lex_state = 255, .external_lex_state = 2}, - [181] = {.lex_state = 255, .external_lex_state = 2}, - [182] = {.lex_state = 255, .external_lex_state = 2}, - [183] = {.lex_state = 255, .external_lex_state = 2}, - [184] = {.lex_state = 255, .external_lex_state = 2}, - [185] = {.lex_state = 255, .external_lex_state = 2}, - [186] = {.lex_state = 255, .external_lex_state = 2}, - [187] = {.lex_state = 255, .external_lex_state = 2}, - [188] = {.lex_state = 255, .external_lex_state = 2}, - [189] = {.lex_state = 255, .external_lex_state = 2}, - [190] = {.lex_state = 255, .external_lex_state = 2}, - [191] = {.lex_state = 255, .external_lex_state = 2}, - [192] = {.lex_state = 255, .external_lex_state = 2}, - [193] = {.lex_state = 255, .external_lex_state = 2}, - [194] = {.lex_state = 255, .external_lex_state = 2}, - [195] = {.lex_state = 255, .external_lex_state = 2}, - [196] = {.lex_state = 255, .external_lex_state = 2}, - [197] = {.lex_state = 255, .external_lex_state = 2}, - [198] = {.lex_state = 255, .external_lex_state = 2}, - [199] = {.lex_state = 255, .external_lex_state = 2}, - [200] = {.lex_state = 255, .external_lex_state = 2}, - [201] = {.lex_state = 255, .external_lex_state = 2}, - [202] = {.lex_state = 1771, .external_lex_state = 2}, - [203] = {.lex_state = 1771, .external_lex_state = 2}, - [204] = {.lex_state = 1771, .external_lex_state = 2}, - [205] = {.lex_state = 46, .external_lex_state = 2}, - [206] = {.lex_state = 46, .external_lex_state = 2}, - [207] = {.lex_state = 46, .external_lex_state = 2}, - [208] = {.lex_state = 46, .external_lex_state = 2}, - [209] = {.lex_state = 46, .external_lex_state = 2}, - [210] = {.lex_state = 46, .external_lex_state = 2}, - [211] = {.lex_state = 46, .external_lex_state = 2}, - [212] = {.lex_state = 46, .external_lex_state = 2}, - [213] = {.lex_state = 46, .external_lex_state = 2}, - [214] = {.lex_state = 46, .external_lex_state = 2}, - [215] = {.lex_state = 46, .external_lex_state = 2}, - [216] = {.lex_state = 46, .external_lex_state = 2}, - [217] = {.lex_state = 47, .external_lex_state = 2}, - [218] = {.lex_state = 46, .external_lex_state = 2}, - [219] = {.lex_state = 47, .external_lex_state = 2}, - [220] = {.lex_state = 46, .external_lex_state = 2}, - [221] = {.lex_state = 47, .external_lex_state = 2}, - [222] = {.lex_state = 47, .external_lex_state = 2}, - [223] = {.lex_state = 50, .external_lex_state = 2}, - [224] = {.lex_state = 1767, .external_lex_state = 2}, - [225] = {.lex_state = 1767, .external_lex_state = 2}, - [226] = {.lex_state = 1767, .external_lex_state = 2}, - [227] = {.lex_state = 1767, .external_lex_state = 2}, - [228] = {.lex_state = 1767, .external_lex_state = 2}, - [229] = {.lex_state = 50, .external_lex_state = 2}, - [230] = {.lex_state = 1749, .external_lex_state = 2}, - [231] = {.lex_state = 50, .external_lex_state = 2}, - [232] = {.lex_state = 50, .external_lex_state = 2}, - [233] = {.lex_state = 50, .external_lex_state = 2}, - [234] = {.lex_state = 50, .external_lex_state = 2}, - [235] = {.lex_state = 50, .external_lex_state = 2}, - [236] = {.lex_state = 50, .external_lex_state = 2}, - [237] = {.lex_state = 50, .external_lex_state = 2}, - [238] = {.lex_state = 50, .external_lex_state = 2}, - [239] = {.lex_state = 50, .external_lex_state = 2}, - [240] = {.lex_state = 50, .external_lex_state = 2}, - [241] = {.lex_state = 50, .external_lex_state = 2}, - [242] = {.lex_state = 50, .external_lex_state = 2}, - [243] = {.lex_state = 50, .external_lex_state = 2}, - [244] = {.lex_state = 50, .external_lex_state = 2}, - [245] = {.lex_state = 50, .external_lex_state = 2}, - [246] = {.lex_state = 50, .external_lex_state = 2}, - [247] = {.lex_state = 50, .external_lex_state = 2}, - [248] = {.lex_state = 50, .external_lex_state = 2}, - [249] = {.lex_state = 50, .external_lex_state = 2}, - [250] = {.lex_state = 50, .external_lex_state = 2}, - [251] = {.lex_state = 50, .external_lex_state = 2}, - [252] = {.lex_state = 50, .external_lex_state = 2}, - [253] = {.lex_state = 50, .external_lex_state = 2}, - [254] = {.lex_state = 50, .external_lex_state = 2}, - [255] = {.lex_state = 50, .external_lex_state = 2}, - [256] = {.lex_state = 50, .external_lex_state = 2}, - [257] = {.lex_state = 50, .external_lex_state = 2}, - [258] = {.lex_state = 50, .external_lex_state = 2}, - [259] = {.lex_state = 50, .external_lex_state = 2}, - [260] = {.lex_state = 50, .external_lex_state = 2}, - [261] = {.lex_state = 50, .external_lex_state = 2}, - [262] = {.lex_state = 50, .external_lex_state = 2}, - [263] = {.lex_state = 50, .external_lex_state = 2}, - [264] = {.lex_state = 50, .external_lex_state = 2}, - [265] = {.lex_state = 50, .external_lex_state = 2}, - [266] = {.lex_state = 50, .external_lex_state = 2}, - [267] = {.lex_state = 50, .external_lex_state = 2}, - [268] = {.lex_state = 50, .external_lex_state = 2}, - [269] = {.lex_state = 50, .external_lex_state = 2}, - [270] = {.lex_state = 50, .external_lex_state = 2}, - [271] = {.lex_state = 50, .external_lex_state = 2}, - [272] = {.lex_state = 50, .external_lex_state = 2}, - [273] = {.lex_state = 50, .external_lex_state = 2}, - [274] = {.lex_state = 50, .external_lex_state = 2}, - [275] = {.lex_state = 50, .external_lex_state = 2}, - [276] = {.lex_state = 50, .external_lex_state = 2}, - [277] = {.lex_state = 50, .external_lex_state = 2}, - [278] = {.lex_state = 50, .external_lex_state = 2}, - [279] = {.lex_state = 50, .external_lex_state = 2}, - [280] = {.lex_state = 50, .external_lex_state = 2}, - [281] = {.lex_state = 50, .external_lex_state = 2}, - [282] = {.lex_state = 50, .external_lex_state = 2}, - [283] = {.lex_state = 50, .external_lex_state = 2}, - [284] = {.lex_state = 50, .external_lex_state = 2}, - [285] = {.lex_state = 50, .external_lex_state = 2}, - [286] = {.lex_state = 50, .external_lex_state = 2}, - [287] = {.lex_state = 50, .external_lex_state = 2}, - [288] = {.lex_state = 1767, .external_lex_state = 2}, - [289] = {.lex_state = 50, .external_lex_state = 2}, - [290] = {.lex_state = 50, .external_lex_state = 2}, - [291] = {.lex_state = 50, .external_lex_state = 2}, - [292] = {.lex_state = 50, .external_lex_state = 2}, - [293] = {.lex_state = 50, .external_lex_state = 2}, - [294] = {.lex_state = 50, .external_lex_state = 2}, - [295] = {.lex_state = 50, .external_lex_state = 2}, - [296] = {.lex_state = 50, .external_lex_state = 2}, - [297] = {.lex_state = 50, .external_lex_state = 2}, - [298] = {.lex_state = 50, .external_lex_state = 2}, - [299] = {.lex_state = 50, .external_lex_state = 2}, - [300] = {.lex_state = 50, .external_lex_state = 2}, - [301] = {.lex_state = 47, .external_lex_state = 2}, - [302] = {.lex_state = 1767, .external_lex_state = 2}, - [303] = {.lex_state = 1767, .external_lex_state = 2}, - [304] = {.lex_state = 50, .external_lex_state = 2}, - [305] = {.lex_state = 1767, .external_lex_state = 2}, - [306] = {.lex_state = 1767, .external_lex_state = 2}, - [307] = {.lex_state = 1767, .external_lex_state = 2}, - [308] = {.lex_state = 1767, .external_lex_state = 2}, - [309] = {.lex_state = 1767, .external_lex_state = 2}, - [310] = {.lex_state = 47, .external_lex_state = 2}, - [311] = {.lex_state = 1767, .external_lex_state = 2}, - [312] = {.lex_state = 50, .external_lex_state = 2}, - [313] = {.lex_state = 1767, .external_lex_state = 2}, - [314] = {.lex_state = 162, .external_lex_state = 2}, - [315] = {.lex_state = 256, .external_lex_state = 2}, - [316] = {.lex_state = 1767, .external_lex_state = 2}, - [317] = {.lex_state = 256, .external_lex_state = 2}, - [318] = {.lex_state = 1767, .external_lex_state = 2}, - [319] = {.lex_state = 1767, .external_lex_state = 2}, - [320] = {.lex_state = 256, .external_lex_state = 2}, - [321] = {.lex_state = 50, .external_lex_state = 2}, - [322] = {.lex_state = 256, .external_lex_state = 2}, - [323] = {.lex_state = 50, .external_lex_state = 2}, - [324] = {.lex_state = 256, .external_lex_state = 2}, - [325] = {.lex_state = 50, .external_lex_state = 2}, - [326] = {.lex_state = 256, .external_lex_state = 2}, - [327] = {.lex_state = 256, .external_lex_state = 2}, - [328] = {.lex_state = 256, .external_lex_state = 2}, - [329] = {.lex_state = 1767, .external_lex_state = 2}, - [330] = {.lex_state = 50, .external_lex_state = 2}, - [331] = {.lex_state = 160, .external_lex_state = 2}, - [332] = {.lex_state = 162, .external_lex_state = 2}, - [333] = {.lex_state = 163, .external_lex_state = 2}, - [334] = {.lex_state = 163, .external_lex_state = 2}, - [335] = {.lex_state = 153, .external_lex_state = 2}, + [1] = {.lex_state = 1674, .external_lex_state = 2}, + [2] = {.lex_state = 1696, .external_lex_state = 2}, + [3] = {.lex_state = 1696, .external_lex_state = 2}, + [4] = {.lex_state = 1696, .external_lex_state = 2}, + [5] = {.lex_state = 1696, .external_lex_state = 2}, + [6] = {.lex_state = 1696, .external_lex_state = 2}, + [7] = {.lex_state = 1696, .external_lex_state = 2}, + [8] = {.lex_state = 1696, .external_lex_state = 2}, + [9] = {.lex_state = 1696, .external_lex_state = 2}, + [10] = {.lex_state = 1696, .external_lex_state = 2}, + [11] = {.lex_state = 1696, .external_lex_state = 2}, + [12] = {.lex_state = 1696, .external_lex_state = 2}, + [13] = {.lex_state = 1696, .external_lex_state = 2}, + [14] = {.lex_state = 1696, .external_lex_state = 2}, + [15] = {.lex_state = 1696, .external_lex_state = 2}, + [16] = {.lex_state = 1696, .external_lex_state = 2}, + [17] = {.lex_state = 1696, .external_lex_state = 2}, + [18] = {.lex_state = 1696, .external_lex_state = 2}, + [19] = {.lex_state = 1696, .external_lex_state = 2}, + [20] = {.lex_state = 1696, .external_lex_state = 2}, + [21] = {.lex_state = 1696, .external_lex_state = 2}, + [22] = {.lex_state = 1696, .external_lex_state = 2}, + [23] = {.lex_state = 1696, .external_lex_state = 2}, + [24] = {.lex_state = 1696, .external_lex_state = 2}, + [25] = {.lex_state = 1696, .external_lex_state = 2}, + [26] = {.lex_state = 1696, .external_lex_state = 2}, + [27] = {.lex_state = 1696, .external_lex_state = 2}, + [28] = {.lex_state = 1696, .external_lex_state = 2}, + [29] = {.lex_state = 1696, .external_lex_state = 2}, + [30] = {.lex_state = 1696, .external_lex_state = 2}, + [31] = {.lex_state = 1696, .external_lex_state = 2}, + [32] = {.lex_state = 1696, .external_lex_state = 2}, + [33] = {.lex_state = 1696, .external_lex_state = 2}, + [34] = {.lex_state = 1692, .external_lex_state = 2}, + [35] = {.lex_state = 1692, .external_lex_state = 2}, + [36] = {.lex_state = 1692, .external_lex_state = 2}, + [37] = {.lex_state = 1692, .external_lex_state = 2}, + [38] = {.lex_state = 1692, .external_lex_state = 2}, + [39] = {.lex_state = 1692, .external_lex_state = 2}, + [40] = {.lex_state = 1692, .external_lex_state = 2}, + [41] = {.lex_state = 1692, .external_lex_state = 2}, + [42] = {.lex_state = 1692, .external_lex_state = 2}, + [43] = {.lex_state = 1692, .external_lex_state = 2}, + [44] = {.lex_state = 1692, .external_lex_state = 2}, + [45] = {.lex_state = 1692, .external_lex_state = 2}, + [46] = {.lex_state = 1692, .external_lex_state = 2}, + [47] = {.lex_state = 1692, .external_lex_state = 2}, + [48] = {.lex_state = 1692, .external_lex_state = 2}, + [49] = {.lex_state = 1692, .external_lex_state = 2}, + [50] = {.lex_state = 1692, .external_lex_state = 2}, + [51] = {.lex_state = 1692, .external_lex_state = 2}, + [52] = {.lex_state = 1692, .external_lex_state = 2}, + [53] = {.lex_state = 1692, .external_lex_state = 2}, + [54] = {.lex_state = 1692, .external_lex_state = 2}, + [55] = {.lex_state = 1692, .external_lex_state = 2}, + [56] = {.lex_state = 1692, .external_lex_state = 2}, + [57] = {.lex_state = 36, .external_lex_state = 2}, + [58] = {.lex_state = 1692, .external_lex_state = 2}, + [59] = {.lex_state = 36, .external_lex_state = 2}, + [60] = {.lex_state = 36, .external_lex_state = 2}, + [61] = {.lex_state = 36, .external_lex_state = 2}, + [62] = {.lex_state = 1692, .external_lex_state = 2}, + [63] = {.lex_state = 36, .external_lex_state = 2}, + [64] = {.lex_state = 36, .external_lex_state = 2}, + [65] = {.lex_state = 36, .external_lex_state = 2}, + [66] = {.lex_state = 36, .external_lex_state = 2}, + [67] = {.lex_state = 36, .external_lex_state = 2}, + [68] = {.lex_state = 36, .external_lex_state = 2}, + [69] = {.lex_state = 36, .external_lex_state = 2}, + [70] = {.lex_state = 36, .external_lex_state = 2}, + [71] = {.lex_state = 36, .external_lex_state = 2}, + [72] = {.lex_state = 36, .external_lex_state = 2}, + [73] = {.lex_state = 36, .external_lex_state = 2}, + [74] = {.lex_state = 36, .external_lex_state = 2}, + [75] = {.lex_state = 36, .external_lex_state = 2}, + [76] = {.lex_state = 36, .external_lex_state = 2}, + [77] = {.lex_state = 36, .external_lex_state = 2}, + [78] = {.lex_state = 36, .external_lex_state = 2}, + [79] = {.lex_state = 36, .external_lex_state = 2}, + [80] = {.lex_state = 36, .external_lex_state = 2}, + [81] = {.lex_state = 36, .external_lex_state = 2}, + [82] = {.lex_state = 36, .external_lex_state = 2}, + [83] = {.lex_state = 36, .external_lex_state = 2}, + [84] = {.lex_state = 36, .external_lex_state = 2}, + [85] = {.lex_state = 36, .external_lex_state = 2}, + [86] = {.lex_state = 36, .external_lex_state = 2}, + [87] = {.lex_state = 36, .external_lex_state = 2}, + [88] = {.lex_state = 36, .external_lex_state = 2}, + [89] = {.lex_state = 36, .external_lex_state = 2}, + [90] = {.lex_state = 1692, .external_lex_state = 2}, + [91] = {.lex_state = 36, .external_lex_state = 2}, + [92] = {.lex_state = 36, .external_lex_state = 2}, + [93] = {.lex_state = 1692, .external_lex_state = 2}, + [94] = {.lex_state = 1692, .external_lex_state = 2}, + [95] = {.lex_state = 1692, .external_lex_state = 2}, + [96] = {.lex_state = 36, .external_lex_state = 2}, + [97] = {.lex_state = 1692, .external_lex_state = 2}, + [98] = {.lex_state = 1692, .external_lex_state = 2}, + [99] = {.lex_state = 1692, .external_lex_state = 2}, + [100] = {.lex_state = 1692, .external_lex_state = 2}, + [101] = {.lex_state = 1692, .external_lex_state = 2}, + [102] = {.lex_state = 1692, .external_lex_state = 2}, + [103] = {.lex_state = 1692, .external_lex_state = 2}, + [104] = {.lex_state = 1692, .external_lex_state = 2}, + [105] = {.lex_state = 1692, .external_lex_state = 2}, + [106] = {.lex_state = 1692, .external_lex_state = 2}, + [107] = {.lex_state = 1692, .external_lex_state = 2}, + [108] = {.lex_state = 1692, .external_lex_state = 2}, + [109] = {.lex_state = 1692, .external_lex_state = 2}, + [110] = {.lex_state = 36, .external_lex_state = 2}, + [111] = {.lex_state = 1692, .external_lex_state = 2}, + [112] = {.lex_state = 1692, .external_lex_state = 2}, + [113] = {.lex_state = 1692, .external_lex_state = 2}, + [114] = {.lex_state = 1692, .external_lex_state = 2}, + [115] = {.lex_state = 1692, .external_lex_state = 2}, + [116] = {.lex_state = 1692, .external_lex_state = 2}, + [117] = {.lex_state = 1692, .external_lex_state = 2}, + [118] = {.lex_state = 1692, .external_lex_state = 2}, + [119] = {.lex_state = 1692, .external_lex_state = 2}, + [120] = {.lex_state = 1692, .external_lex_state = 2}, + [121] = {.lex_state = 1692, .external_lex_state = 2}, + [122] = {.lex_state = 1692, .external_lex_state = 2}, + [123] = {.lex_state = 1692, .external_lex_state = 2}, + [124] = {.lex_state = 1692, .external_lex_state = 2}, + [125] = {.lex_state = 1692, .external_lex_state = 2}, + [126] = {.lex_state = 1692, .external_lex_state = 2}, + [127] = {.lex_state = 1692, .external_lex_state = 2}, + [128] = {.lex_state = 1692, .external_lex_state = 2}, + [129] = {.lex_state = 1692, .external_lex_state = 2}, + [130] = {.lex_state = 1692, .external_lex_state = 2}, + [131] = {.lex_state = 1692, .external_lex_state = 2}, + [132] = {.lex_state = 1692, .external_lex_state = 2}, + [133] = {.lex_state = 1692, .external_lex_state = 2}, + [134] = {.lex_state = 1692, .external_lex_state = 2}, + [135] = {.lex_state = 1692, .external_lex_state = 2}, + [136] = {.lex_state = 1692, .external_lex_state = 2}, + [137] = {.lex_state = 1627, .external_lex_state = 2}, + [138] = {.lex_state = 1627, .external_lex_state = 2}, + [139] = {.lex_state = 1627, .external_lex_state = 2}, + [140] = {.lex_state = 2, .external_lex_state = 2}, + [141] = {.lex_state = 2, .external_lex_state = 2}, + [142] = {.lex_state = 2, .external_lex_state = 2}, + [143] = {.lex_state = 2, .external_lex_state = 2}, + [144] = {.lex_state = 2, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, + [146] = {.lex_state = 1627, .external_lex_state = 2}, + [147] = {.lex_state = 1627, .external_lex_state = 2}, + [148] = {.lex_state = 1627, .external_lex_state = 2}, + [149] = {.lex_state = 4, .external_lex_state = 2}, + [150] = {.lex_state = 4, .external_lex_state = 2}, + [151] = {.lex_state = 219, .external_lex_state = 2}, + [152] = {.lex_state = 219, .external_lex_state = 2}, + [153] = {.lex_state = 219, .external_lex_state = 2}, + [154] = {.lex_state = 219, .external_lex_state = 2}, + [155] = {.lex_state = 219, .external_lex_state = 2}, + [156] = {.lex_state = 219, .external_lex_state = 2}, + [157] = {.lex_state = 219, .external_lex_state = 2}, + [158] = {.lex_state = 219, .external_lex_state = 2}, + [159] = {.lex_state = 219, .external_lex_state = 2}, + [160] = {.lex_state = 219, .external_lex_state = 2}, + [161] = {.lex_state = 219, .external_lex_state = 2}, + [162] = {.lex_state = 219, .external_lex_state = 2}, + [163] = {.lex_state = 219, .external_lex_state = 2}, + [164] = {.lex_state = 219, .external_lex_state = 2}, + [165] = {.lex_state = 219, .external_lex_state = 2}, + [166] = {.lex_state = 219, .external_lex_state = 2}, + [167] = {.lex_state = 219, .external_lex_state = 2}, + [168] = {.lex_state = 219, .external_lex_state = 2}, + [169] = {.lex_state = 219, .external_lex_state = 2}, + [170] = {.lex_state = 219, .external_lex_state = 2}, + [171] = {.lex_state = 219, .external_lex_state = 2}, + [172] = {.lex_state = 219, .external_lex_state = 2}, + [173] = {.lex_state = 219, .external_lex_state = 2}, + [174] = {.lex_state = 219, .external_lex_state = 2}, + [175] = {.lex_state = 219, .external_lex_state = 2}, + [176] = {.lex_state = 219, .external_lex_state = 2}, + [177] = {.lex_state = 219, .external_lex_state = 2}, + [178] = {.lex_state = 219, .external_lex_state = 2}, + [179] = {.lex_state = 219, .external_lex_state = 2}, + [180] = {.lex_state = 219, .external_lex_state = 2}, + [181] = {.lex_state = 219, .external_lex_state = 2}, + [182] = {.lex_state = 219, .external_lex_state = 2}, + [183] = {.lex_state = 219, .external_lex_state = 2}, + [184] = {.lex_state = 219, .external_lex_state = 2}, + [185] = {.lex_state = 219, .external_lex_state = 2}, + [186] = {.lex_state = 219, .external_lex_state = 2}, + [187] = {.lex_state = 219, .external_lex_state = 2}, + [188] = {.lex_state = 219, .external_lex_state = 2}, + [189] = {.lex_state = 1696, .external_lex_state = 2}, + [190] = {.lex_state = 1696, .external_lex_state = 2}, + [191] = {.lex_state = 1696, .external_lex_state = 2}, + [192] = {.lex_state = 35, .external_lex_state = 2}, + [193] = {.lex_state = 35, .external_lex_state = 2}, + [194] = {.lex_state = 35, .external_lex_state = 2}, + [195] = {.lex_state = 35, .external_lex_state = 2}, + [196] = {.lex_state = 35, .external_lex_state = 2}, + [197] = {.lex_state = 35, .external_lex_state = 2}, + [198] = {.lex_state = 35, .external_lex_state = 2}, + [199] = {.lex_state = 35, .external_lex_state = 2}, + [200] = {.lex_state = 35, .external_lex_state = 2}, + [201] = {.lex_state = 35, .external_lex_state = 2}, + [202] = {.lex_state = 35, .external_lex_state = 2}, + [203] = {.lex_state = 36, .external_lex_state = 2}, + [204] = {.lex_state = 35, .external_lex_state = 2}, + [205] = {.lex_state = 36, .external_lex_state = 2}, + [206] = {.lex_state = 36, .external_lex_state = 2}, + [207] = {.lex_state = 35, .external_lex_state = 2}, + [208] = {.lex_state = 36, .external_lex_state = 2}, + [209] = {.lex_state = 35, .external_lex_state = 2}, + [210] = {.lex_state = 1692, .external_lex_state = 2}, + [211] = {.lex_state = 40, .external_lex_state = 2}, + [212] = {.lex_state = 1692, .external_lex_state = 2}, + [213] = {.lex_state = 40, .external_lex_state = 2}, + [214] = {.lex_state = 40, .external_lex_state = 2}, + [215] = {.lex_state = 40, .external_lex_state = 2}, + [216] = {.lex_state = 40, .external_lex_state = 2}, + [217] = {.lex_state = 40, .external_lex_state = 2}, + [218] = {.lex_state = 40, .external_lex_state = 2}, + [219] = {.lex_state = 40, .external_lex_state = 2}, + [220] = {.lex_state = 40, .external_lex_state = 2}, + [221] = {.lex_state = 40, .external_lex_state = 2}, + [222] = {.lex_state = 40, .external_lex_state = 2}, + [223] = {.lex_state = 40, .external_lex_state = 2}, + [224] = {.lex_state = 1692, .external_lex_state = 2}, + [225] = {.lex_state = 40, .external_lex_state = 2}, + [226] = {.lex_state = 40, .external_lex_state = 2}, + [227] = {.lex_state = 40, .external_lex_state = 2}, + [228] = {.lex_state = 40, .external_lex_state = 2}, + [229] = {.lex_state = 40, .external_lex_state = 2}, + [230] = {.lex_state = 40, .external_lex_state = 2}, + [231] = {.lex_state = 40, .external_lex_state = 2}, + [232] = {.lex_state = 40, .external_lex_state = 2}, + [233] = {.lex_state = 40, .external_lex_state = 2}, + [234] = {.lex_state = 40, .external_lex_state = 2}, + [235] = {.lex_state = 40, .external_lex_state = 2}, + [236] = {.lex_state = 40, .external_lex_state = 2}, + [237] = {.lex_state = 40, .external_lex_state = 2}, + [238] = {.lex_state = 1692, .external_lex_state = 2}, + [239] = {.lex_state = 36, .external_lex_state = 2}, + [240] = {.lex_state = 40, .external_lex_state = 2}, + [241] = {.lex_state = 40, .external_lex_state = 2}, + [242] = {.lex_state = 40, .external_lex_state = 2}, + [243] = {.lex_state = 40, .external_lex_state = 2}, + [244] = {.lex_state = 40, .external_lex_state = 2}, + [245] = {.lex_state = 40, .external_lex_state = 2}, + [246] = {.lex_state = 40, .external_lex_state = 2}, + [247] = {.lex_state = 40, .external_lex_state = 2}, + [248] = {.lex_state = 40, .external_lex_state = 2}, + [249] = {.lex_state = 40, .external_lex_state = 2}, + [250] = {.lex_state = 40, .external_lex_state = 2}, + [251] = {.lex_state = 40, .external_lex_state = 2}, + [252] = {.lex_state = 40, .external_lex_state = 2}, + [253] = {.lex_state = 40, .external_lex_state = 2}, + [254] = {.lex_state = 40, .external_lex_state = 2}, + [255] = {.lex_state = 40, .external_lex_state = 2}, + [256] = {.lex_state = 40, .external_lex_state = 2}, + [257] = {.lex_state = 40, .external_lex_state = 2}, + [258] = {.lex_state = 40, .external_lex_state = 2}, + [259] = {.lex_state = 40, .external_lex_state = 2}, + [260] = {.lex_state = 40, .external_lex_state = 2}, + [261] = {.lex_state = 40, .external_lex_state = 2}, + [262] = {.lex_state = 1674, .external_lex_state = 2}, + [263] = {.lex_state = 1692, .external_lex_state = 2}, + [264] = {.lex_state = 1692, .external_lex_state = 2}, + [265] = {.lex_state = 40, .external_lex_state = 2}, + [266] = {.lex_state = 40, .external_lex_state = 2}, + [267] = {.lex_state = 40, .external_lex_state = 2}, + [268] = {.lex_state = 40, .external_lex_state = 2}, + [269] = {.lex_state = 40, .external_lex_state = 2}, + [270] = {.lex_state = 40, .external_lex_state = 2}, + [271] = {.lex_state = 40, .external_lex_state = 2}, + [272] = {.lex_state = 40, .external_lex_state = 2}, + [273] = {.lex_state = 40, .external_lex_state = 2}, + [274] = {.lex_state = 40, .external_lex_state = 2}, + [275] = {.lex_state = 40, .external_lex_state = 2}, + [276] = {.lex_state = 40, .external_lex_state = 2}, + [277] = {.lex_state = 40, .external_lex_state = 2}, + [278] = {.lex_state = 40, .external_lex_state = 2}, + [279] = {.lex_state = 40, .external_lex_state = 2}, + [280] = {.lex_state = 40, .external_lex_state = 2}, + [281] = {.lex_state = 40, .external_lex_state = 2}, + [282] = {.lex_state = 40, .external_lex_state = 2}, + [283] = {.lex_state = 40, .external_lex_state = 2}, + [284] = {.lex_state = 40, .external_lex_state = 2}, + [285] = {.lex_state = 40, .external_lex_state = 2}, + [286] = {.lex_state = 40, .external_lex_state = 2}, + [287] = {.lex_state = 40, .external_lex_state = 2}, + [288] = {.lex_state = 40, .external_lex_state = 2}, + [289] = {.lex_state = 1692, .external_lex_state = 2}, + [290] = {.lex_state = 1692, .external_lex_state = 2}, + [291] = {.lex_state = 40, .external_lex_state = 2}, + [292] = {.lex_state = 1692, .external_lex_state = 2}, + [293] = {.lex_state = 1692, .external_lex_state = 2}, + [294] = {.lex_state = 36, .external_lex_state = 2}, + [295] = {.lex_state = 1692, .external_lex_state = 2}, + [296] = {.lex_state = 1692, .external_lex_state = 2}, + [297] = {.lex_state = 1692, .external_lex_state = 2}, + [298] = {.lex_state = 1692, .external_lex_state = 2}, + [299] = {.lex_state = 220, .external_lex_state = 2}, + [300] = {.lex_state = 1692, .external_lex_state = 2}, + [301] = {.lex_state = 220, .external_lex_state = 2}, + [302] = {.lex_state = 220, .external_lex_state = 2}, + [303] = {.lex_state = 220, .external_lex_state = 2}, + [304] = {.lex_state = 1692, .external_lex_state = 2}, + [305] = {.lex_state = 1692, .external_lex_state = 2}, + [306] = {.lex_state = 40, .external_lex_state = 2}, + [307] = {.lex_state = 40, .external_lex_state = 2}, + [308] = {.lex_state = 220, .external_lex_state = 2}, + [309] = {.lex_state = 220, .external_lex_state = 2}, + [310] = {.lex_state = 40, .external_lex_state = 2}, + [311] = {.lex_state = 40, .external_lex_state = 2}, + [312] = {.lex_state = 1692, .external_lex_state = 2}, + [313] = {.lex_state = 220, .external_lex_state = 2}, + [314] = {.lex_state = 40, .external_lex_state = 2}, + [315] = {.lex_state = 1692, .external_lex_state = 2}, + [316] = {.lex_state = 220, .external_lex_state = 2}, + [317] = {.lex_state = 142, .external_lex_state = 2}, + [318] = {.lex_state = 142, .external_lex_state = 2}, + [319] = {.lex_state = 119, .external_lex_state = 2}, + [320] = {.lex_state = 143, .external_lex_state = 2}, + [321] = {.lex_state = 143, .external_lex_state = 2}, + [322] = {.lex_state = 122, .external_lex_state = 2}, + [323] = {.lex_state = 140, .external_lex_state = 2}, + [324] = {.lex_state = 107, .external_lex_state = 2}, + [325] = {.lex_state = 110, .external_lex_state = 2}, + [326] = {.lex_state = 125, .external_lex_state = 2}, + [327] = {.lex_state = 124, .external_lex_state = 2}, + [328] = {.lex_state = 140, .external_lex_state = 2}, + [329] = {.lex_state = 143, .external_lex_state = 2}, + [330] = {.lex_state = 143, .external_lex_state = 2}, + [331] = {.lex_state = 143, .external_lex_state = 2}, + [332] = {.lex_state = 143, .external_lex_state = 2}, + [333] = {.lex_state = 141, .external_lex_state = 2}, + [334] = {.lex_state = 141, .external_lex_state = 2}, + [335] = {.lex_state = 124, .external_lex_state = 2}, [336] = {.lex_state = 151, .external_lex_state = 2}, - [337] = {.lex_state = 163, .external_lex_state = 2}, - [338] = {.lex_state = 156, .external_lex_state = 2}, - [339] = {.lex_state = 139, .external_lex_state = 2}, - [340] = {.lex_state = 141, .external_lex_state = 2}, - [341] = {.lex_state = 155, .external_lex_state = 2}, - [342] = {.lex_state = 155, .external_lex_state = 2}, - [343] = {.lex_state = 161, .external_lex_state = 2}, - [344] = {.lex_state = 161, .external_lex_state = 2}, - [345] = {.lex_state = 160, .external_lex_state = 2}, - [346] = {.lex_state = 163, .external_lex_state = 2}, - [347] = {.lex_state = 163, .external_lex_state = 2}, - [348] = {.lex_state = 163, .external_lex_state = 2}, - [349] = {.lex_state = 161, .external_lex_state = 2}, - [350] = {.lex_state = 143, .external_lex_state = 2}, - [351] = {.lex_state = 143, .external_lex_state = 2}, - [352] = {.lex_state = 184, .external_lex_state = 2}, - [353] = {.lex_state = 156, .external_lex_state = 2}, - [354] = {.lex_state = 184, .external_lex_state = 2}, - [355] = {.lex_state = 156, .external_lex_state = 2}, - [356] = {.lex_state = 156, .external_lex_state = 2}, - [357] = {.lex_state = 156, .external_lex_state = 2}, - [358] = {.lex_state = 154, .external_lex_state = 2}, - [359] = {.lex_state = 184, .external_lex_state = 2}, - [360] = {.lex_state = 152, .external_lex_state = 2}, - [361] = {.lex_state = 161, .external_lex_state = 2}, - [362] = {.lex_state = 161, .external_lex_state = 2}, - [363] = {.lex_state = 161, .external_lex_state = 2}, - [364] = {.lex_state = 144, .external_lex_state = 2}, - [365] = {.lex_state = 197, .external_lex_state = 2}, - [366] = {.lex_state = 197, .external_lex_state = 2}, - [367] = {.lex_state = 144, .external_lex_state = 2}, - [368] = {.lex_state = 157, .external_lex_state = 2}, - [369] = {.lex_state = 157, .external_lex_state = 2}, - [370] = {.lex_state = 144, .external_lex_state = 2}, - [371] = {.lex_state = 140, .external_lex_state = 2}, - [372] = {.lex_state = 184, .external_lex_state = 2}, - [373] = {.lex_state = 197, .external_lex_state = 2}, - [374] = {.lex_state = 144, .external_lex_state = 2}, - [375] = {.lex_state = 184, .external_lex_state = 2}, - [376] = {.lex_state = 144, .external_lex_state = 2}, - [377] = {.lex_state = 142, .external_lex_state = 2}, - [378] = {.lex_state = 158, .external_lex_state = 2}, - [379] = {.lex_state = 158, .external_lex_state = 2}, - [380] = {.lex_state = 185, .external_lex_state = 2}, - [381] = {.lex_state = 158, .external_lex_state = 2}, - [382] = {.lex_state = 158, .external_lex_state = 2}, - [383] = {.lex_state = 145, .external_lex_state = 2}, - [384] = {.lex_state = 185, .external_lex_state = 2}, - [385] = {.lex_state = 194, .external_lex_state = 2}, - [386] = {.lex_state = 185, .external_lex_state = 2}, - [387] = {.lex_state = 185, .external_lex_state = 2}, - [388] = {.lex_state = 185, .external_lex_state = 2}, - [389] = {.lex_state = 158, .external_lex_state = 2}, - [390] = {.lex_state = 158, .external_lex_state = 2}, - [391] = {.lex_state = 197, .external_lex_state = 2}, - [392] = {.lex_state = 185, .external_lex_state = 2}, - [393] = {.lex_state = 183, .external_lex_state = 2}, - [394] = {.lex_state = 186, .external_lex_state = 2}, - [395] = {.lex_state = 145, .external_lex_state = 2}, - [396] = {.lex_state = 197, .external_lex_state = 2}, - [397] = {.lex_state = 191, .external_lex_state = 2}, - [398] = {.lex_state = 146, .external_lex_state = 2}, - [399] = {.lex_state = 146, .external_lex_state = 2}, - [400] = {.lex_state = 207, .external_lex_state = 2}, - [401] = {.lex_state = 191, .external_lex_state = 2}, - [402] = {.lex_state = 191, .external_lex_state = 2}, - [403] = {.lex_state = 191, .external_lex_state = 2}, - [404] = {.lex_state = 191, .external_lex_state = 2}, - [405] = {.lex_state = 191, .external_lex_state = 2}, - [406] = {.lex_state = 191, .external_lex_state = 2}, - [407] = {.lex_state = 191, .external_lex_state = 2}, - [408] = {.lex_state = 148, .external_lex_state = 2}, - [409] = {.lex_state = 192, .external_lex_state = 2}, - [410] = {.lex_state = 191, .external_lex_state = 2}, - [411] = {.lex_state = 192, .external_lex_state = 2}, - [412] = {.lex_state = 191, .external_lex_state = 2}, - [413] = {.lex_state = 196, .external_lex_state = 2}, - [414] = {.lex_state = 191, .external_lex_state = 2}, - [415] = {.lex_state = 159, .external_lex_state = 2}, - [416] = {.lex_state = 191, .external_lex_state = 2}, - [417] = {.lex_state = 191, .external_lex_state = 2}, - [418] = {.lex_state = 191, .external_lex_state = 2}, - [419] = {.lex_state = 191, .external_lex_state = 2}, - [420] = {.lex_state = 183, .external_lex_state = 2}, - [421] = {.lex_state = 191, .external_lex_state = 2}, - [422] = {.lex_state = 191, .external_lex_state = 2}, - [423] = {.lex_state = 191, .external_lex_state = 2}, - [424] = {.lex_state = 191, .external_lex_state = 2}, - [425] = {.lex_state = 191, .external_lex_state = 2}, - [426] = {.lex_state = 191, .external_lex_state = 2}, - [427] = {.lex_state = 195, .external_lex_state = 2}, - [428] = {.lex_state = 195, .external_lex_state = 2}, - [429] = {.lex_state = 184, .external_lex_state = 2}, - [430] = {.lex_state = 184, .external_lex_state = 2}, - [431] = {.lex_state = 184, .external_lex_state = 2}, - [432] = {.lex_state = 195, .external_lex_state = 2}, - [433] = {.lex_state = 195, .external_lex_state = 2}, - [434] = {.lex_state = 195, .external_lex_state = 2}, - [435] = {.lex_state = 195, .external_lex_state = 2}, - [436] = {.lex_state = 146, .external_lex_state = 2}, - [437] = {.lex_state = 1772, .external_lex_state = 2}, - [438] = {.lex_state = 146, .external_lex_state = 2}, - [439] = {.lex_state = 191, .external_lex_state = 2}, - [440] = {.lex_state = 191, .external_lex_state = 2}, - [441] = {.lex_state = 191, .external_lex_state = 2}, - [442] = {.lex_state = 146, .external_lex_state = 2}, - [443] = {.lex_state = 191, .external_lex_state = 2}, - [444] = {.lex_state = 191, .external_lex_state = 2}, - [445] = {.lex_state = 191, .external_lex_state = 2}, - [446] = {.lex_state = 146, .external_lex_state = 2}, - [447] = {.lex_state = 191, .external_lex_state = 2}, - [448] = {.lex_state = 183, .external_lex_state = 2}, - [449] = {.lex_state = 193, .external_lex_state = 2}, - [450] = {.lex_state = 193, .external_lex_state = 2}, - [451] = {.lex_state = 204, .external_lex_state = 2}, - [452] = {.lex_state = 193, .external_lex_state = 2}, - [453] = {.lex_state = 193, .external_lex_state = 2}, - [454] = {.lex_state = 193, .external_lex_state = 2}, - [455] = {.lex_state = 193, .external_lex_state = 2}, - [456] = {.lex_state = 193, .external_lex_state = 2}, - [457] = {.lex_state = 204, .external_lex_state = 2}, - [458] = {.lex_state = 182, .external_lex_state = 2}, - [459] = {.lex_state = 182, .external_lex_state = 2}, - [460] = {.lex_state = 149, .external_lex_state = 2}, - [461] = {.lex_state = 193, .external_lex_state = 2}, - [462] = {.lex_state = 182, .external_lex_state = 2}, - [463] = {.lex_state = 182, .external_lex_state = 2}, - [464] = {.lex_state = 182, .external_lex_state = 2}, - [465] = {.lex_state = 182, .external_lex_state = 2}, - [466] = {.lex_state = 204, .external_lex_state = 2}, - [467] = {.lex_state = 1772, .external_lex_state = 2}, - [468] = {.lex_state = 204, .external_lex_state = 2}, - [469] = {.lex_state = 193, .external_lex_state = 2}, - [470] = {.lex_state = 191, .external_lex_state = 2}, - [471] = {.lex_state = 191, .external_lex_state = 2}, - [472] = {.lex_state = 197, .external_lex_state = 2}, - [473] = {.lex_state = 136, .external_lex_state = 2}, - [474] = {.lex_state = 193, .external_lex_state = 2}, - [475] = {.lex_state = 193, .external_lex_state = 2}, - [476] = {.lex_state = 204, .external_lex_state = 2}, - [477] = {.lex_state = 197, .external_lex_state = 2}, - [478] = {.lex_state = 197, .external_lex_state = 2}, - [479] = {.lex_state = 193, .external_lex_state = 2}, - [480] = {.lex_state = 193, .external_lex_state = 2}, - [481] = {.lex_state = 204, .external_lex_state = 2}, - [482] = {.lex_state = 204, .external_lex_state = 2}, - [483] = {.lex_state = 193, .external_lex_state = 2}, - [484] = {.lex_state = 147, .external_lex_state = 2}, - [485] = {.lex_state = 205, .external_lex_state = 2}, - [486] = {.lex_state = 204, .external_lex_state = 2}, - [487] = {.lex_state = 204, .external_lex_state = 2}, - [488] = {.lex_state = 204, .external_lex_state = 2}, - [489] = {.lex_state = 204, .external_lex_state = 2}, - [490] = {.lex_state = 204, .external_lex_state = 2}, - [491] = {.lex_state = 204, .external_lex_state = 2}, - [492] = {.lex_state = 204, .external_lex_state = 2}, - [493] = {.lex_state = 204, .external_lex_state = 2}, - [494] = {.lex_state = 204, .external_lex_state = 2}, - [495] = {.lex_state = 204, .external_lex_state = 2}, - [496] = {.lex_state = 204, .external_lex_state = 2}, - [497] = {.lex_state = 204, .external_lex_state = 2}, - [498] = {.lex_state = 204, .external_lex_state = 2}, - [499] = {.lex_state = 204, .external_lex_state = 2}, - [500] = {.lex_state = 193, .external_lex_state = 2}, - [501] = {.lex_state = 205, .external_lex_state = 2}, - [502] = {.lex_state = 1772, .external_lex_state = 2}, - [503] = {.lex_state = 204, .external_lex_state = 2}, - [504] = {.lex_state = 204, .external_lex_state = 2}, - [505] = {.lex_state = 149, .external_lex_state = 2}, - [506] = {.lex_state = 193, .external_lex_state = 2}, - [507] = {.lex_state = 204, .external_lex_state = 2}, - [508] = {.lex_state = 204, .external_lex_state = 2}, - [509] = {.lex_state = 204, .external_lex_state = 2}, - [510] = {.lex_state = 204, .external_lex_state = 2}, - [511] = {.lex_state = 204, .external_lex_state = 2}, - [512] = {.lex_state = 206, .external_lex_state = 2}, - [513] = {.lex_state = 188, .external_lex_state = 2}, - [514] = {.lex_state = 206, .external_lex_state = 2}, - [515] = {.lex_state = 183, .external_lex_state = 2}, - [516] = {.lex_state = 206, .external_lex_state = 2}, - [517] = {.lex_state = 137, .external_lex_state = 2}, - [518] = {.lex_state = 150, .external_lex_state = 2}, - [519] = {.lex_state = 206, .external_lex_state = 2}, - [520] = {.lex_state = 183, .external_lex_state = 2}, - [521] = {.lex_state = 204, .external_lex_state = 2}, - [522] = {.lex_state = 189, .external_lex_state = 2}, - [523] = {.lex_state = 189, .external_lex_state = 2}, - [524] = {.lex_state = 206, .external_lex_state = 2}, - [525] = {.lex_state = 206, .external_lex_state = 2}, - [526] = {.lex_state = 204, .external_lex_state = 2}, - [527] = {.lex_state = 287, .external_lex_state = 2}, - [528] = {.lex_state = 206, .external_lex_state = 2}, - [529] = {.lex_state = 183, .external_lex_state = 2}, - [530] = {.lex_state = 137, .external_lex_state = 2}, - [531] = {.lex_state = 150, .external_lex_state = 2}, - [532] = {.lex_state = 206, .external_lex_state = 2}, - [533] = {.lex_state = 150, .external_lex_state = 2}, - [534] = {.lex_state = 150, .external_lex_state = 2}, - [535] = {.lex_state = 150, .external_lex_state = 2}, - [536] = {.lex_state = 287, .external_lex_state = 2}, - [537] = {.lex_state = 287, .external_lex_state = 2}, - [538] = {.lex_state = 189, .external_lex_state = 2}, - [539] = {.lex_state = 150, .external_lex_state = 2}, - [540] = {.lex_state = 206, .external_lex_state = 2}, - [541] = {.lex_state = 206, .external_lex_state = 2}, - [542] = {.lex_state = 189, .external_lex_state = 2}, - [543] = {.lex_state = 206, .external_lex_state = 2}, - [544] = {.lex_state = 189, .external_lex_state = 2}, - [545] = {.lex_state = 206, .external_lex_state = 2}, - [546] = {.lex_state = 206, .external_lex_state = 2}, - [547] = {.lex_state = 150, .external_lex_state = 2}, - [548] = {.lex_state = 150, .external_lex_state = 2}, - [549] = {.lex_state = 287, .external_lex_state = 2}, - [550] = {.lex_state = 150, .external_lex_state = 2}, - [551] = {.lex_state = 206, .external_lex_state = 2}, - [552] = {.lex_state = 189, .external_lex_state = 2}, - [553] = {.lex_state = 206, .external_lex_state = 2}, - [554] = {.lex_state = 150, .external_lex_state = 2}, - [555] = {.lex_state = 287, .external_lex_state = 2}, - [556] = {.lex_state = 206, .external_lex_state = 2}, - [557] = {.lex_state = 150, .external_lex_state = 2}, - [558] = {.lex_state = 150, .external_lex_state = 2}, - [559] = {.lex_state = 150, .external_lex_state = 2}, - [560] = {.lex_state = 150, .external_lex_state = 2}, - [561] = {.lex_state = 150, .external_lex_state = 2}, - [562] = {.lex_state = 190, .external_lex_state = 2}, - [563] = {.lex_state = 150, .external_lex_state = 2}, - [564] = {.lex_state = 238, .external_lex_state = 2}, - [565] = {.lex_state = 138, .external_lex_state = 2}, - [566] = {.lex_state = 138, .external_lex_state = 2}, - [567] = {.lex_state = 138, .external_lex_state = 2}, - [568] = {.lex_state = 138, .external_lex_state = 2}, - [569] = {.lex_state = 201, .external_lex_state = 2}, - [570] = {.lex_state = 138, .external_lex_state = 2}, - [571] = {.lex_state = 187, .external_lex_state = 2}, - [572] = {.lex_state = 187, .external_lex_state = 2}, - [573] = {.lex_state = 138, .external_lex_state = 2}, - [574] = {.lex_state = 138, .external_lex_state = 2}, - [575] = {.lex_state = 203, .external_lex_state = 2}, - [576] = {.lex_state = 138, .external_lex_state = 2}, - [577] = {.lex_state = 138, .external_lex_state = 2}, - [578] = {.lex_state = 238, .external_lex_state = 2}, - [579] = {.lex_state = 238, .external_lex_state = 2}, - [580] = {.lex_state = 181, .external_lex_state = 2}, - [581] = {.lex_state = 181, .external_lex_state = 2}, - [582] = {.lex_state = 238, .external_lex_state = 2}, - [583] = {.lex_state = 150, .external_lex_state = 2}, - [584] = {.lex_state = 202, .external_lex_state = 2}, - [585] = {.lex_state = 202, .external_lex_state = 2}, - [586] = {.lex_state = 286, .external_lex_state = 2}, - [587] = {.lex_state = 286, .external_lex_state = 2}, - [588] = {.lex_state = 286, .external_lex_state = 2}, - [589] = {.lex_state = 202, .external_lex_state = 2}, - [590] = {.lex_state = 202, .external_lex_state = 2}, - [591] = {.lex_state = 238, .external_lex_state = 2}, - [592] = {.lex_state = 202, .external_lex_state = 2}, - [593] = {.lex_state = 202, .external_lex_state = 2}, - [594] = {.lex_state = 286, .external_lex_state = 2}, - [595] = {.lex_state = 191, .external_lex_state = 2}, - [596] = {.lex_state = 238, .external_lex_state = 2}, - [597] = {.lex_state = 238, .external_lex_state = 2}, - [598] = {.lex_state = 138, .external_lex_state = 2}, - [599] = {.lex_state = 191, .external_lex_state = 2}, - [600] = {.lex_state = 191, .external_lex_state = 2}, - [601] = {.lex_state = 138, .external_lex_state = 2}, - [602] = {.lex_state = 138, .external_lex_state = 2}, - [603] = {.lex_state = 138, .external_lex_state = 2}, - [604] = {.lex_state = 138, .external_lex_state = 2}, - [605] = {.lex_state = 138, .external_lex_state = 2}, - [606] = {.lex_state = 238, .external_lex_state = 2}, - [607] = {.lex_state = 286, .external_lex_state = 2}, - [608] = {.lex_state = 238, .external_lex_state = 2}, - [609] = {.lex_state = 199, .external_lex_state = 2}, - [610] = {.lex_state = 199, .external_lex_state = 2}, - [611] = {.lex_state = 238, .external_lex_state = 2}, - [612] = {.lex_state = 238, .external_lex_state = 2}, - [613] = {.lex_state = 238, .external_lex_state = 2}, - [614] = {.lex_state = 238, .external_lex_state = 2}, - [615] = {.lex_state = 238, .external_lex_state = 2}, - [616] = {.lex_state = 238, .external_lex_state = 2}, - [617] = {.lex_state = 238, .external_lex_state = 2}, - [618] = {.lex_state = 238, .external_lex_state = 2}, - [619] = {.lex_state = 238, .external_lex_state = 2}, - [620] = {.lex_state = 238, .external_lex_state = 2}, - [621] = {.lex_state = 238, .external_lex_state = 2}, - [622] = {.lex_state = 238, .external_lex_state = 2}, - [623] = {.lex_state = 238, .external_lex_state = 2}, - [624] = {.lex_state = 238, .external_lex_state = 2}, - [625] = {.lex_state = 238, .external_lex_state = 2}, - [626] = {.lex_state = 238, .external_lex_state = 2}, - [627] = {.lex_state = 238, .external_lex_state = 2}, - [628] = {.lex_state = 238, .external_lex_state = 2}, - [629] = {.lex_state = 238, .external_lex_state = 2}, - [630] = {.lex_state = 238, .external_lex_state = 2}, - [631] = {.lex_state = 238, .external_lex_state = 2}, - [632] = {.lex_state = 238, .external_lex_state = 2}, - [633] = {.lex_state = 238, .external_lex_state = 2}, - [634] = {.lex_state = 238, .external_lex_state = 2}, - [635] = {.lex_state = 238, .external_lex_state = 2}, - [636] = {.lex_state = 238, .external_lex_state = 2}, - [637] = {.lex_state = 238, .external_lex_state = 2}, - [638] = {.lex_state = 238, .external_lex_state = 2}, - [639] = {.lex_state = 238, .external_lex_state = 2}, - [640] = {.lex_state = 238, .external_lex_state = 2}, - [641] = {.lex_state = 238, .external_lex_state = 2}, - [642] = {.lex_state = 238, .external_lex_state = 2}, - [643] = {.lex_state = 238, .external_lex_state = 2}, - [644] = {.lex_state = 238, .external_lex_state = 2}, - [645] = {.lex_state = 238, .external_lex_state = 2}, - [646] = {.lex_state = 238, .external_lex_state = 2}, - [647] = {.lex_state = 238, .external_lex_state = 2}, - [648] = {.lex_state = 238, .external_lex_state = 2}, - [649] = {.lex_state = 238, .external_lex_state = 2}, - [650] = {.lex_state = 46, .external_lex_state = 2}, - [651] = {.lex_state = 238, .external_lex_state = 2}, - [652] = {.lex_state = 238, .external_lex_state = 2}, - [653] = {.lex_state = 238, .external_lex_state = 2}, - [654] = {.lex_state = 238, .external_lex_state = 2}, - [655] = {.lex_state = 238, .external_lex_state = 2}, - [656] = {.lex_state = 238, .external_lex_state = 2}, - [657] = {.lex_state = 238, .external_lex_state = 2}, - [658] = {.lex_state = 238, .external_lex_state = 2}, - [659] = {.lex_state = 204, .external_lex_state = 2}, - [660] = {.lex_state = 238, .external_lex_state = 2}, - [661] = {.lex_state = 238, .external_lex_state = 2}, - [662] = {.lex_state = 204, .external_lex_state = 2}, - [663] = {.lex_state = 204, .external_lex_state = 2}, - [664] = {.lex_state = 238, .external_lex_state = 2}, - [665] = {.lex_state = 238, .external_lex_state = 2}, - [666] = {.lex_state = 238, .external_lex_state = 2}, - [667] = {.lex_state = 46, .external_lex_state = 2}, - [668] = {.lex_state = 238, .external_lex_state = 2}, - [669] = {.lex_state = 238, .external_lex_state = 2}, - [670] = {.lex_state = 238, .external_lex_state = 2}, - [671] = {.lex_state = 238, .external_lex_state = 2}, - [672] = {.lex_state = 238, .external_lex_state = 2}, - [673] = {.lex_state = 238, .external_lex_state = 2}, - [674] = {.lex_state = 238, .external_lex_state = 2}, - [675] = {.lex_state = 238, .external_lex_state = 2}, - [676] = {.lex_state = 238, .external_lex_state = 2}, - [677] = {.lex_state = 238, .external_lex_state = 2}, - [678] = {.lex_state = 238, .external_lex_state = 2}, - [679] = {.lex_state = 238, .external_lex_state = 2}, - [680] = {.lex_state = 238, .external_lex_state = 2}, - [681] = {.lex_state = 238, .external_lex_state = 2}, - [682] = {.lex_state = 46, .external_lex_state = 2}, - [683] = {.lex_state = 138, .external_lex_state = 2}, - [684] = {.lex_state = 238, .external_lex_state = 2}, - [685] = {.lex_state = 238, .external_lex_state = 2}, - [686] = {.lex_state = 238, .external_lex_state = 2}, - [687] = {.lex_state = 238, .external_lex_state = 2}, - [688] = {.lex_state = 138, .external_lex_state = 2}, - [689] = {.lex_state = 238, .external_lex_state = 2}, - [690] = {.lex_state = 238, .external_lex_state = 2}, - [691] = {.lex_state = 238, .external_lex_state = 2}, - [692] = {.lex_state = 238, .external_lex_state = 2}, - [693] = {.lex_state = 46, .external_lex_state = 2}, - [694] = {.lex_state = 46, .external_lex_state = 2}, - [695] = {.lex_state = 46, .external_lex_state = 2}, - [696] = {.lex_state = 46, .external_lex_state = 2}, - [697] = {.lex_state = 46, .external_lex_state = 2}, - [698] = {.lex_state = 46, .external_lex_state = 2}, - [699] = {.lex_state = 46, .external_lex_state = 2}, - [700] = {.lex_state = 46, .external_lex_state = 2}, - [701] = {.lex_state = 46, .external_lex_state = 2}, - [702] = {.lex_state = 46, .external_lex_state = 2}, - [703] = {.lex_state = 46, .external_lex_state = 2}, - [704] = {.lex_state = 46, .external_lex_state = 2}, - [705] = {.lex_state = 46, .external_lex_state = 2}, - [706] = {.lex_state = 46, .external_lex_state = 2}, - [707] = {.lex_state = 46, .external_lex_state = 2}, - [708] = {.lex_state = 46, .external_lex_state = 2}, - [709] = {.lex_state = 46, .external_lex_state = 2}, - [710] = {.lex_state = 46, .external_lex_state = 2}, - [711] = {.lex_state = 46, .external_lex_state = 2}, - [712] = {.lex_state = 46, .external_lex_state = 2}, - [713] = {.lex_state = 46, .external_lex_state = 2}, - [714] = {.lex_state = 46, .external_lex_state = 2}, - [715] = {.lex_state = 46, .external_lex_state = 2}, - [716] = {.lex_state = 46, .external_lex_state = 2}, - [717] = {.lex_state = 1769, .external_lex_state = 2}, - [718] = {.lex_state = 46, .external_lex_state = 2}, - [719] = {.lex_state = 46, .external_lex_state = 2}, - [720] = {.lex_state = 46, .external_lex_state = 2}, - [721] = {.lex_state = 46, .external_lex_state = 2}, - [722] = {.lex_state = 46, .external_lex_state = 2}, - [723] = {.lex_state = 46, .external_lex_state = 2}, - [724] = {.lex_state = 46, .external_lex_state = 2}, - [725] = {.lex_state = 46, .external_lex_state = 2}, - [726] = {.lex_state = 46, .external_lex_state = 2}, - [727] = {.lex_state = 46, .external_lex_state = 2}, - [728] = {.lex_state = 46, .external_lex_state = 2}, - [729] = {.lex_state = 1769, .external_lex_state = 2}, - [730] = {.lex_state = 46, .external_lex_state = 2}, - [731] = {.lex_state = 46, .external_lex_state = 2}, - [732] = {.lex_state = 46, .external_lex_state = 2}, - [733] = {.lex_state = 46, .external_lex_state = 2}, - [734] = {.lex_state = 46, .external_lex_state = 2}, - [735] = {.lex_state = 46, .external_lex_state = 2}, - [736] = {.lex_state = 46, .external_lex_state = 2}, - [737] = {.lex_state = 46, .external_lex_state = 2}, - [738] = {.lex_state = 46, .external_lex_state = 2}, - [739] = {.lex_state = 46, .external_lex_state = 2}, - [740] = {.lex_state = 46, .external_lex_state = 2}, - [741] = {.lex_state = 46, .external_lex_state = 2}, - [742] = {.lex_state = 46, .external_lex_state = 2}, - [743] = {.lex_state = 1769, .external_lex_state = 2}, - [744] = {.lex_state = 46, .external_lex_state = 2}, - [745] = {.lex_state = 46, .external_lex_state = 2}, - [746] = {.lex_state = 46, .external_lex_state = 2}, - [747] = {.lex_state = 46, .external_lex_state = 2}, - [748] = {.lex_state = 46, .external_lex_state = 2}, - [749] = {.lex_state = 46, .external_lex_state = 2}, - [750] = {.lex_state = 46, .external_lex_state = 2}, - [751] = {.lex_state = 46, .external_lex_state = 2}, - [752] = {.lex_state = 46, .external_lex_state = 2}, - [753] = {.lex_state = 46, .external_lex_state = 2}, - [754] = {.lex_state = 46, .external_lex_state = 2}, - [755] = {.lex_state = 46, .external_lex_state = 2}, - [756] = {.lex_state = 46, .external_lex_state = 2}, - [757] = {.lex_state = 46, .external_lex_state = 2}, - [758] = {.lex_state = 46, .external_lex_state = 2}, - [759] = {.lex_state = 46, .external_lex_state = 2}, - [760] = {.lex_state = 46, .external_lex_state = 2}, - [761] = {.lex_state = 46, .external_lex_state = 2}, - [762] = {.lex_state = 46, .external_lex_state = 2}, - [763] = {.lex_state = 46, .external_lex_state = 2}, - [764] = {.lex_state = 46, .external_lex_state = 2}, - [765] = {.lex_state = 46, .external_lex_state = 2}, - [766] = {.lex_state = 46, .external_lex_state = 2}, - [767] = {.lex_state = 46, .external_lex_state = 2}, + [337] = {.lex_state = 151, .external_lex_state = 2}, + [338] = {.lex_state = 112, .external_lex_state = 2}, + [339] = {.lex_state = 112, .external_lex_state = 2}, + [340] = {.lex_state = 125, .external_lex_state = 2}, + [341] = {.lex_state = 125, .external_lex_state = 2}, + [342] = {.lex_state = 125, .external_lex_state = 2}, + [343] = {.lex_state = 125, .external_lex_state = 2}, + [344] = {.lex_state = 123, .external_lex_state = 2}, + [345] = {.lex_state = 120, .external_lex_state = 2}, + [346] = {.lex_state = 113, .external_lex_state = 2}, + [347] = {.lex_state = 141, .external_lex_state = 2}, + [348] = {.lex_state = 141, .external_lex_state = 2}, + [349] = {.lex_state = 141, .external_lex_state = 2}, + [350] = {.lex_state = 141, .external_lex_state = 2}, + [351] = {.lex_state = 151, .external_lex_state = 2}, + [352] = {.lex_state = 126, .external_lex_state = 2}, + [353] = {.lex_state = 163, .external_lex_state = 2}, + [354] = {.lex_state = 111, .external_lex_state = 2}, + [355] = {.lex_state = 126, .external_lex_state = 2}, + [356] = {.lex_state = 108, .external_lex_state = 2}, + [357] = {.lex_state = 113, .external_lex_state = 2}, + [358] = {.lex_state = 113, .external_lex_state = 2}, + [359] = {.lex_state = 113, .external_lex_state = 2}, + [360] = {.lex_state = 163, .external_lex_state = 2}, + [361] = {.lex_state = 151, .external_lex_state = 2}, + [362] = {.lex_state = 113, .external_lex_state = 2}, + [363] = {.lex_state = 151, .external_lex_state = 2}, + [364] = {.lex_state = 163, .external_lex_state = 2}, + [365] = {.lex_state = 114, .external_lex_state = 2}, + [366] = {.lex_state = 127, .external_lex_state = 2}, + [367] = {.lex_state = 127, .external_lex_state = 2}, + [368] = {.lex_state = 127, .external_lex_state = 2}, + [369] = {.lex_state = 127, .external_lex_state = 2}, + [370] = {.lex_state = 158, .external_lex_state = 2}, + [371] = {.lex_state = 127, .external_lex_state = 2}, + [372] = {.lex_state = 152, .external_lex_state = 2}, + [373] = {.lex_state = 155, .external_lex_state = 2}, + [374] = {.lex_state = 163, .external_lex_state = 2}, + [375] = {.lex_state = 163, .external_lex_state = 2}, + [376] = {.lex_state = 152, .external_lex_state = 2}, + [377] = {.lex_state = 152, .external_lex_state = 2}, + [378] = {.lex_state = 152, .external_lex_state = 2}, + [379] = {.lex_state = 152, .external_lex_state = 2}, + [380] = {.lex_state = 152, .external_lex_state = 2}, + [381] = {.lex_state = 114, .external_lex_state = 2}, + [382] = {.lex_state = 149, .external_lex_state = 2}, + [383] = {.lex_state = 127, .external_lex_state = 2}, + [384] = {.lex_state = 154, .external_lex_state = 2}, + [385] = {.lex_state = 116, .external_lex_state = 2}, + [386] = {.lex_state = 156, .external_lex_state = 2}, + [387] = {.lex_state = 1697, .external_lex_state = 2}, + [388] = {.lex_state = 156, .external_lex_state = 2}, + [389] = {.lex_state = 166, .external_lex_state = 2}, + [390] = {.lex_state = 115, .external_lex_state = 2}, + [391] = {.lex_state = 121, .external_lex_state = 2}, + [392] = {.lex_state = 162, .external_lex_state = 2}, + [393] = {.lex_state = 162, .external_lex_state = 2}, + [394] = {.lex_state = 162, .external_lex_state = 2}, + [395] = {.lex_state = 43, .external_lex_state = 2}, + [396] = {.lex_state = 154, .external_lex_state = 2}, + [397] = {.lex_state = 149, .external_lex_state = 2}, + [398] = {.lex_state = 154, .external_lex_state = 2}, + [399] = {.lex_state = 149, .external_lex_state = 2}, + [400] = {.lex_state = 151, .external_lex_state = 2}, + [401] = {.lex_state = 115, .external_lex_state = 2}, + [402] = {.lex_state = 154, .external_lex_state = 2}, + [403] = {.lex_state = 154, .external_lex_state = 2}, + [404] = {.lex_state = 154, .external_lex_state = 2}, + [405] = {.lex_state = 115, .external_lex_state = 2}, + [406] = {.lex_state = 115, .external_lex_state = 2}, + [407] = {.lex_state = 151, .external_lex_state = 2}, + [408] = {.lex_state = 169, .external_lex_state = 2}, + [409] = {.lex_state = 151, .external_lex_state = 2}, + [410] = {.lex_state = 154, .external_lex_state = 2}, + [411] = {.lex_state = 162, .external_lex_state = 2}, + [412] = {.lex_state = 154, .external_lex_state = 2}, + [413] = {.lex_state = 154, .external_lex_state = 2}, + [414] = {.lex_state = 115, .external_lex_state = 2}, + [415] = {.lex_state = 154, .external_lex_state = 2}, + [416] = {.lex_state = 115, .external_lex_state = 2}, + [417] = {.lex_state = 154, .external_lex_state = 2}, + [418] = {.lex_state = 154, .external_lex_state = 2}, + [419] = {.lex_state = 154, .external_lex_state = 2}, + [420] = {.lex_state = 154, .external_lex_state = 2}, + [421] = {.lex_state = 154, .external_lex_state = 2}, + [422] = {.lex_state = 154, .external_lex_state = 2}, + [423] = {.lex_state = 154, .external_lex_state = 2}, + [424] = {.lex_state = 154, .external_lex_state = 2}, + [425] = {.lex_state = 154, .external_lex_state = 2}, + [426] = {.lex_state = 154, .external_lex_state = 2}, + [427] = {.lex_state = 154, .external_lex_state = 2}, + [428] = {.lex_state = 154, .external_lex_state = 2}, + [429] = {.lex_state = 154, .external_lex_state = 2}, + [430] = {.lex_state = 154, .external_lex_state = 2}, + [431] = {.lex_state = 154, .external_lex_state = 2}, + [432] = {.lex_state = 154, .external_lex_state = 2}, + [433] = {.lex_state = 154, .external_lex_state = 2}, + [434] = {.lex_state = 162, .external_lex_state = 2}, + [435] = {.lex_state = 162, .external_lex_state = 2}, + [436] = {.lex_state = 154, .external_lex_state = 2}, + [437] = {.lex_state = 165, .external_lex_state = 2}, + [438] = {.lex_state = 117, .external_lex_state = 2}, + [439] = {.lex_state = 165, .external_lex_state = 2}, + [440] = {.lex_state = 167, .external_lex_state = 2}, + [441] = {.lex_state = 165, .external_lex_state = 2}, + [442] = {.lex_state = 148, .external_lex_state = 2}, + [443] = {.lex_state = 163, .external_lex_state = 2}, + [444] = {.lex_state = 117, .external_lex_state = 2}, + [445] = {.lex_state = 157, .external_lex_state = 2}, + [446] = {.lex_state = 157, .external_lex_state = 2}, + [447] = {.lex_state = 157, .external_lex_state = 2}, + [448] = {.lex_state = 157, .external_lex_state = 2}, + [449] = {.lex_state = 165, .external_lex_state = 2}, + [450] = {.lex_state = 1697, .external_lex_state = 2}, + [451] = {.lex_state = 165, .external_lex_state = 2}, + [452] = {.lex_state = 154, .external_lex_state = 2}, + [453] = {.lex_state = 165, .external_lex_state = 2}, + [454] = {.lex_state = 165, .external_lex_state = 2}, + [455] = {.lex_state = 165, .external_lex_state = 2}, + [456] = {.lex_state = 165, .external_lex_state = 2}, + [457] = {.lex_state = 165, .external_lex_state = 2}, + [458] = {.lex_state = 165, .external_lex_state = 2}, + [459] = {.lex_state = 165, .external_lex_state = 2}, + [460] = {.lex_state = 165, .external_lex_state = 2}, + [461] = {.lex_state = 165, .external_lex_state = 2}, + [462] = {.lex_state = 165, .external_lex_state = 2}, + [463] = {.lex_state = 165, .external_lex_state = 2}, + [464] = {.lex_state = 165, .external_lex_state = 2}, + [465] = {.lex_state = 163, .external_lex_state = 2}, + [466] = {.lex_state = 165, .external_lex_state = 2}, + [467] = {.lex_state = 165, .external_lex_state = 2}, + [468] = {.lex_state = 165, .external_lex_state = 2}, + [469] = {.lex_state = 165, .external_lex_state = 2}, + [470] = {.lex_state = 165, .external_lex_state = 2}, + [471] = {.lex_state = 163, .external_lex_state = 2}, + [472] = {.lex_state = 157, .external_lex_state = 2}, + [473] = {.lex_state = 148, .external_lex_state = 2}, + [474] = {.lex_state = 148, .external_lex_state = 2}, + [475] = {.lex_state = 165, .external_lex_state = 2}, + [476] = {.lex_state = 157, .external_lex_state = 2}, + [477] = {.lex_state = 157, .external_lex_state = 2}, + [478] = {.lex_state = 148, .external_lex_state = 2}, + [479] = {.lex_state = 165, .external_lex_state = 2}, + [480] = {.lex_state = 157, .external_lex_state = 2}, + [481] = {.lex_state = 165, .external_lex_state = 2}, + [482] = {.lex_state = 154, .external_lex_state = 2}, + [483] = {.lex_state = 1697, .external_lex_state = 2}, + [484] = {.lex_state = 148, .external_lex_state = 2}, + [485] = {.lex_state = 148, .external_lex_state = 2}, + [486] = {.lex_state = 109, .external_lex_state = 2}, + [487] = {.lex_state = 157, .external_lex_state = 2}, + [488] = {.lex_state = 157, .external_lex_state = 2}, + [489] = {.lex_state = 157, .external_lex_state = 2}, + [490] = {.lex_state = 165, .external_lex_state = 2}, + [491] = {.lex_state = 157, .external_lex_state = 2}, + [492] = {.lex_state = 157, .external_lex_state = 2}, + [493] = {.lex_state = 157, .external_lex_state = 2}, + [494] = {.lex_state = 104, .external_lex_state = 2}, + [495] = {.lex_state = 167, .external_lex_state = 2}, + [496] = {.lex_state = 157, .external_lex_state = 2}, + [497] = {.lex_state = 165, .external_lex_state = 2}, + [498] = {.lex_state = 157, .external_lex_state = 2}, + [499] = {.lex_state = 157, .external_lex_state = 2}, + [500] = {.lex_state = 165, .external_lex_state = 2}, + [501] = {.lex_state = 149, .external_lex_state = 2}, + [502] = {.lex_state = 118, .external_lex_state = 2}, + [503] = {.lex_state = 118, .external_lex_state = 2}, + [504] = {.lex_state = 118, .external_lex_state = 2}, + [505] = {.lex_state = 118, .external_lex_state = 2}, + [506] = {.lex_state = 168, .external_lex_state = 2}, + [507] = {.lex_state = 168, .external_lex_state = 2}, + [508] = {.lex_state = 168, .external_lex_state = 2}, + [509] = {.lex_state = 168, .external_lex_state = 2}, + [510] = {.lex_state = 168, .external_lex_state = 2}, + [511] = {.lex_state = 168, .external_lex_state = 2}, + [512] = {.lex_state = 168, .external_lex_state = 2}, + [513] = {.lex_state = 149, .external_lex_state = 2}, + [514] = {.lex_state = 118, .external_lex_state = 2}, + [515] = {.lex_state = 168, .external_lex_state = 2}, + [516] = {.lex_state = 118, .external_lex_state = 2}, + [517] = {.lex_state = 118, .external_lex_state = 2}, + [518] = {.lex_state = 168, .external_lex_state = 2}, + [519] = {.lex_state = 149, .external_lex_state = 2}, + [520] = {.lex_state = 118, .external_lex_state = 2}, + [521] = {.lex_state = 118, .external_lex_state = 2}, + [522] = {.lex_state = 165, .external_lex_state = 2}, + [523] = {.lex_state = 165, .external_lex_state = 2}, + [524] = {.lex_state = 168, .external_lex_state = 2}, + [525] = {.lex_state = 118, .external_lex_state = 2}, + [526] = {.lex_state = 153, .external_lex_state = 2}, + [527] = {.lex_state = 239, .external_lex_state = 2}, + [528] = {.lex_state = 239, .external_lex_state = 2}, + [529] = {.lex_state = 239, .external_lex_state = 2}, + [530] = {.lex_state = 239, .external_lex_state = 2}, + [531] = {.lex_state = 239, .external_lex_state = 2}, + [532] = {.lex_state = 153, .external_lex_state = 2}, + [533] = {.lex_state = 153, .external_lex_state = 2}, + [534] = {.lex_state = 153, .external_lex_state = 2}, + [535] = {.lex_state = 153, .external_lex_state = 2}, + [536] = {.lex_state = 105, .external_lex_state = 2}, + [537] = {.lex_state = 105, .external_lex_state = 2}, + [538] = {.lex_state = 168, .external_lex_state = 2}, + [539] = {.lex_state = 168, .external_lex_state = 2}, + [540] = {.lex_state = 168, .external_lex_state = 2}, + [541] = {.lex_state = 168, .external_lex_state = 2}, + [542] = {.lex_state = 118, .external_lex_state = 2}, + [543] = {.lex_state = 118, .external_lex_state = 2}, + [544] = {.lex_state = 118, .external_lex_state = 2}, + [545] = {.lex_state = 118, .external_lex_state = 2}, + [546] = {.lex_state = 160, .external_lex_state = 2}, + [547] = {.lex_state = 161, .external_lex_state = 2}, + [548] = {.lex_state = 168, .external_lex_state = 2}, + [549] = {.lex_state = 168, .external_lex_state = 2}, + [550] = {.lex_state = 168, .external_lex_state = 2}, + [551] = {.lex_state = 118, .external_lex_state = 2}, + [552] = {.lex_state = 118, .external_lex_state = 2}, + [553] = {.lex_state = 153, .external_lex_state = 2}, + [554] = {.lex_state = 106, .external_lex_state = 2}, + [555] = {.lex_state = 106, .external_lex_state = 2}, + [556] = {.lex_state = 106, .external_lex_state = 2}, + [557] = {.lex_state = 106, .external_lex_state = 2}, + [558] = {.lex_state = 238, .external_lex_state = 2}, + [559] = {.lex_state = 106, .external_lex_state = 2}, + [560] = {.lex_state = 164, .external_lex_state = 2}, + [561] = {.lex_state = 164, .external_lex_state = 2}, + [562] = {.lex_state = 203, .external_lex_state = 2}, + [563] = {.lex_state = 106, .external_lex_state = 2}, + [564] = {.lex_state = 150, .external_lex_state = 2}, + [565] = {.lex_state = 203, .external_lex_state = 2}, + [566] = {.lex_state = 106, .external_lex_state = 2}, + [567] = {.lex_state = 150, .external_lex_state = 2}, + [568] = {.lex_state = 106, .external_lex_state = 2}, + [569] = {.lex_state = 203, .external_lex_state = 2}, + [570] = {.lex_state = 106, .external_lex_state = 2}, + [571] = {.lex_state = 106, .external_lex_state = 2}, + [572] = {.lex_state = 203, .external_lex_state = 2}, + [573] = {.lex_state = 118, .external_lex_state = 2}, + [574] = {.lex_state = 203, .external_lex_state = 2}, + [575] = {.lex_state = 154, .external_lex_state = 2}, + [576] = {.lex_state = 172, .external_lex_state = 2}, + [577] = {.lex_state = 203, .external_lex_state = 2}, + [578] = {.lex_state = 118, .external_lex_state = 2}, + [579] = {.lex_state = 203, .external_lex_state = 2}, + [580] = {.lex_state = 154, .external_lex_state = 2}, + [581] = {.lex_state = 154, .external_lex_state = 2}, + [582] = {.lex_state = 159, .external_lex_state = 2}, + [583] = {.lex_state = 106, .external_lex_state = 2}, + [584] = {.lex_state = 159, .external_lex_state = 2}, + [585] = {.lex_state = 173, .external_lex_state = 2}, + [586] = {.lex_state = 238, .external_lex_state = 2}, + [587] = {.lex_state = 203, .external_lex_state = 2}, + [588] = {.lex_state = 238, .external_lex_state = 2}, + [589] = {.lex_state = 106, .external_lex_state = 2}, + [590] = {.lex_state = 238, .external_lex_state = 2}, + [591] = {.lex_state = 106, .external_lex_state = 2}, + [592] = {.lex_state = 164, .external_lex_state = 2}, + [593] = {.lex_state = 106, .external_lex_state = 2}, + [594] = {.lex_state = 164, .external_lex_state = 2}, + [595] = {.lex_state = 164, .external_lex_state = 2}, + [596] = {.lex_state = 164, .external_lex_state = 2}, + [597] = {.lex_state = 106, .external_lex_state = 2}, + [598] = {.lex_state = 106, .external_lex_state = 2}, + [599] = {.lex_state = 238, .external_lex_state = 2}, + [600] = {.lex_state = 165, .external_lex_state = 2}, + [601] = {.lex_state = 203, .external_lex_state = 2}, + [602] = {.lex_state = 203, .external_lex_state = 2}, + [603] = {.lex_state = 203, .external_lex_state = 2}, + [604] = {.lex_state = 203, .external_lex_state = 2}, + [605] = {.lex_state = 203, .external_lex_state = 2}, + [606] = {.lex_state = 203, .external_lex_state = 2}, + [607] = {.lex_state = 203, .external_lex_state = 2}, + [608] = {.lex_state = 203, .external_lex_state = 2}, + [609] = {.lex_state = 203, .external_lex_state = 2}, + [610] = {.lex_state = 203, .external_lex_state = 2}, + [611] = {.lex_state = 203, .external_lex_state = 2}, + [612] = {.lex_state = 203, .external_lex_state = 2}, + [613] = {.lex_state = 203, .external_lex_state = 2}, + [614] = {.lex_state = 203, .external_lex_state = 2}, + [615] = {.lex_state = 203, .external_lex_state = 2}, + [616] = {.lex_state = 203, .external_lex_state = 2}, + [617] = {.lex_state = 203, .external_lex_state = 2}, + [618] = {.lex_state = 203, .external_lex_state = 2}, + [619] = {.lex_state = 203, .external_lex_state = 2}, + [620] = {.lex_state = 203, .external_lex_state = 2}, + [621] = {.lex_state = 203, .external_lex_state = 2}, + [622] = {.lex_state = 203, .external_lex_state = 2}, + [623] = {.lex_state = 203, .external_lex_state = 2}, + [624] = {.lex_state = 203, .external_lex_state = 2}, + [625] = {.lex_state = 203, .external_lex_state = 2}, + [626] = {.lex_state = 203, .external_lex_state = 2}, + [627] = {.lex_state = 203, .external_lex_state = 2}, + [628] = {.lex_state = 203, .external_lex_state = 2}, + [629] = {.lex_state = 203, .external_lex_state = 2}, + [630] = {.lex_state = 35, .external_lex_state = 2}, + [631] = {.lex_state = 165, .external_lex_state = 2}, + [632] = {.lex_state = 165, .external_lex_state = 2}, + [633] = {.lex_state = 203, .external_lex_state = 2}, + [634] = {.lex_state = 203, .external_lex_state = 2}, + [635] = {.lex_state = 203, .external_lex_state = 2}, + [636] = {.lex_state = 203, .external_lex_state = 2}, + [637] = {.lex_state = 203, .external_lex_state = 2}, + [638] = {.lex_state = 203, .external_lex_state = 2}, + [639] = {.lex_state = 203, .external_lex_state = 2}, + [640] = {.lex_state = 203, .external_lex_state = 2}, + [641] = {.lex_state = 203, .external_lex_state = 2}, + [642] = {.lex_state = 203, .external_lex_state = 2}, + [643] = {.lex_state = 203, .external_lex_state = 2}, + [644] = {.lex_state = 203, .external_lex_state = 2}, + [645] = {.lex_state = 203, .external_lex_state = 2}, + [646] = {.lex_state = 203, .external_lex_state = 2}, + [647] = {.lex_state = 203, .external_lex_state = 2}, + [648] = {.lex_state = 203, .external_lex_state = 2}, + [649] = {.lex_state = 203, .external_lex_state = 2}, + [650] = {.lex_state = 203, .external_lex_state = 2}, + [651] = {.lex_state = 203, .external_lex_state = 2}, + [652] = {.lex_state = 203, .external_lex_state = 2}, + [653] = {.lex_state = 203, .external_lex_state = 2}, + [654] = {.lex_state = 203, .external_lex_state = 2}, + [655] = {.lex_state = 203, .external_lex_state = 2}, + [656] = {.lex_state = 203, .external_lex_state = 2}, + [657] = {.lex_state = 203, .external_lex_state = 2}, + [658] = {.lex_state = 203, .external_lex_state = 2}, + [659] = {.lex_state = 203, .external_lex_state = 2}, + [660] = {.lex_state = 203, .external_lex_state = 2}, + [661] = {.lex_state = 170, .external_lex_state = 2}, + [662] = {.lex_state = 203, .external_lex_state = 2}, + [663] = {.lex_state = 170, .external_lex_state = 2}, + [664] = {.lex_state = 203, .external_lex_state = 2}, + [665] = {.lex_state = 203, .external_lex_state = 2}, + [666] = {.lex_state = 35, .external_lex_state = 2}, + [667] = {.lex_state = 203, .external_lex_state = 2}, + [668] = {.lex_state = 203, .external_lex_state = 2}, + [669] = {.lex_state = 203, .external_lex_state = 2}, + [670] = {.lex_state = 203, .external_lex_state = 2}, + [671] = {.lex_state = 203, .external_lex_state = 2}, + [672] = {.lex_state = 203, .external_lex_state = 2}, + [673] = {.lex_state = 203, .external_lex_state = 2}, + [674] = {.lex_state = 203, .external_lex_state = 2}, + [675] = {.lex_state = 203, .external_lex_state = 2}, + [676] = {.lex_state = 203, .external_lex_state = 2}, + [677] = {.lex_state = 203, .external_lex_state = 2}, + [678] = {.lex_state = 35, .external_lex_state = 2}, + [679] = {.lex_state = 106, .external_lex_state = 2}, + [680] = {.lex_state = 203, .external_lex_state = 2}, + [681] = {.lex_state = 203, .external_lex_state = 2}, + [682] = {.lex_state = 203, .external_lex_state = 2}, + [683] = {.lex_state = 106, .external_lex_state = 2}, + [684] = {.lex_state = 203, .external_lex_state = 2}, + [685] = {.lex_state = 203, .external_lex_state = 2}, + [686] = {.lex_state = 35, .external_lex_state = 2}, + [687] = {.lex_state = 35, .external_lex_state = 2}, + [688] = {.lex_state = 35, .external_lex_state = 2}, + [689] = {.lex_state = 35, .external_lex_state = 2}, + [690] = {.lex_state = 35, .external_lex_state = 2}, + [691] = {.lex_state = 35, .external_lex_state = 2}, + [692] = {.lex_state = 35, .external_lex_state = 2}, + [693] = {.lex_state = 35, .external_lex_state = 2}, + [694] = {.lex_state = 35, .external_lex_state = 2}, + [695] = {.lex_state = 35, .external_lex_state = 2}, + [696] = {.lex_state = 35, .external_lex_state = 2}, + [697] = {.lex_state = 35, .external_lex_state = 2}, + [698] = {.lex_state = 35, .external_lex_state = 2}, + [699] = {.lex_state = 35, .external_lex_state = 2}, + [700] = {.lex_state = 39, .external_lex_state = 2}, + [701] = {.lex_state = 35, .external_lex_state = 2}, + [702] = {.lex_state = 35, .external_lex_state = 2}, + [703] = {.lex_state = 35, .external_lex_state = 2}, + [704] = {.lex_state = 35, .external_lex_state = 2}, + [705] = {.lex_state = 35, .external_lex_state = 2}, + [706] = {.lex_state = 35, .external_lex_state = 2}, + [707] = {.lex_state = 35, .external_lex_state = 2}, + [708] = {.lex_state = 35, .external_lex_state = 2}, + [709] = {.lex_state = 35, .external_lex_state = 2}, + [710] = {.lex_state = 35, .external_lex_state = 2}, + [711] = {.lex_state = 35, .external_lex_state = 2}, + [712] = {.lex_state = 35, .external_lex_state = 2}, + [713] = {.lex_state = 35, .external_lex_state = 2}, + [714] = {.lex_state = 35, .external_lex_state = 2}, + [715] = {.lex_state = 35, .external_lex_state = 2}, + [716] = {.lex_state = 35, .external_lex_state = 2}, + [717] = {.lex_state = 35, .external_lex_state = 2}, + [718] = {.lex_state = 35, .external_lex_state = 2}, + [719] = {.lex_state = 35, .external_lex_state = 2}, + [720] = {.lex_state = 35, .external_lex_state = 2}, + [721] = {.lex_state = 39, .external_lex_state = 2}, + [722] = {.lex_state = 35, .external_lex_state = 2}, + [723] = {.lex_state = 35, .external_lex_state = 2}, + [724] = {.lex_state = 35, .external_lex_state = 2}, + [725] = {.lex_state = 35, .external_lex_state = 2}, + [726] = {.lex_state = 35, .external_lex_state = 2}, + [727] = {.lex_state = 35, .external_lex_state = 2}, + [728] = {.lex_state = 35, .external_lex_state = 2}, + [729] = {.lex_state = 35, .external_lex_state = 2}, + [730] = {.lex_state = 35, .external_lex_state = 2}, + [731] = {.lex_state = 35, .external_lex_state = 2}, + [732] = {.lex_state = 35, .external_lex_state = 2}, + [733] = {.lex_state = 35, .external_lex_state = 2}, + [734] = {.lex_state = 35, .external_lex_state = 2}, + [735] = {.lex_state = 35, .external_lex_state = 2}, + [736] = {.lex_state = 35, .external_lex_state = 2}, + [737] = {.lex_state = 39, .external_lex_state = 2}, + [738] = {.lex_state = 35, .external_lex_state = 2}, + [739] = {.lex_state = 35, .external_lex_state = 2}, + [740] = {.lex_state = 35, .external_lex_state = 2}, + [741] = {.lex_state = 35, .external_lex_state = 2}, + [742] = {.lex_state = 35, .external_lex_state = 2}, + [743] = {.lex_state = 35, .external_lex_state = 2}, + [744] = {.lex_state = 35, .external_lex_state = 2}, + [745] = {.lex_state = 35, .external_lex_state = 2}, + [746] = {.lex_state = 35, .external_lex_state = 2}, + [747] = {.lex_state = 35, .external_lex_state = 2}, + [748] = {.lex_state = 35, .external_lex_state = 2}, + [749] = {.lex_state = 35, .external_lex_state = 2}, + [750] = {.lex_state = 35, .external_lex_state = 2}, + [751] = {.lex_state = 35, .external_lex_state = 2}, + [752] = {.lex_state = 35, .external_lex_state = 2}, + [753] = {.lex_state = 35, .external_lex_state = 2}, + [754] = {.lex_state = 35, .external_lex_state = 2}, + [755] = {.lex_state = 35, .external_lex_state = 2}, + [756] = {.lex_state = 35, .external_lex_state = 2}, + [757] = {.lex_state = 35, .external_lex_state = 2}, + [758] = {.lex_state = 35, .external_lex_state = 2}, + [759] = {.lex_state = 35, .external_lex_state = 2}, + [760] = {.lex_state = 35, .external_lex_state = 2}, + [761] = {.lex_state = 35, .external_lex_state = 2}, + [762] = {.lex_state = 35, .external_lex_state = 2}, + [763] = {.lex_state = 35, .external_lex_state = 2}, + [764] = {.lex_state = 35, .external_lex_state = 2}, + [765] = {.lex_state = 35, .external_lex_state = 2}, + [766] = {.lex_state = 39, .external_lex_state = 2}, + [767] = {.lex_state = 39, .external_lex_state = 2}, [768] = {.lex_state = 46, .external_lex_state = 2}, [769] = {.lex_state = 46, .external_lex_state = 2}, - [770] = {.lex_state = 46, .external_lex_state = 2}, - [771] = {.lex_state = 46, .external_lex_state = 2}, - [772] = {.lex_state = 1769, .external_lex_state = 2}, - [773] = {.lex_state = 55, .external_lex_state = 2}, - [774] = {.lex_state = 1769, .external_lex_state = 2}, - [775] = {.lex_state = 55, .external_lex_state = 2}, - [776] = {.lex_state = 1769, .external_lex_state = 2}, - [777] = {.lex_state = 1769, .external_lex_state = 2}, - [778] = {.lex_state = 3185}, - [779] = {.lex_state = 3186}, - [780] = {.lex_state = 1769, .external_lex_state = 2}, - [781] = {.lex_state = 1769, .external_lex_state = 2}, - [782] = {.lex_state = 1778, .external_lex_state = 2}, - [783] = {.lex_state = 3191}, - [784] = {.lex_state = 1778, .external_lex_state = 2}, - [785] = {.lex_state = 1778, .external_lex_state = 2}, - [786] = {.lex_state = 1778, .external_lex_state = 2}, - [787] = {.lex_state = 1778, .external_lex_state = 2}, - [788] = {.lex_state = 3199}, - [789] = {.lex_state = 3187}, - [790] = {.lex_state = 1778, .external_lex_state = 2}, - [791] = {.lex_state = 3203}, - [792] = {.lex_state = 3337}, - [793] = {.lex_state = 1778, .external_lex_state = 2}, - [794] = {.lex_state = 3187}, - [795] = {.lex_state = 3335}, - [796] = {.lex_state = 1778, .external_lex_state = 2}, - [797] = {.lex_state = 1778, .external_lex_state = 2}, - [798] = {.lex_state = 1778, .external_lex_state = 2}, - [799] = {.lex_state = 3189}, - [800] = {.lex_state = 1778, .external_lex_state = 2}, - [801] = {.lex_state = 3205}, - [802] = {.lex_state = 3188}, - [803] = {.lex_state = 3188}, - [804] = {.lex_state = 1778, .external_lex_state = 2}, - [805] = {.lex_state = 1778, .external_lex_state = 2}, - [806] = {.lex_state = 3205}, - [807] = {.lex_state = 3193}, - [808] = {.lex_state = 3335}, - [809] = {.lex_state = 3339}, - [810] = {.lex_state = 1778, .external_lex_state = 2}, - [811] = {.lex_state = 1778, .external_lex_state = 2}, - [812] = {.lex_state = 3188}, - [813] = {.lex_state = 3188}, - [814] = {.lex_state = 3339}, - [815] = {.lex_state = 3193}, - [816] = {.lex_state = 3188}, - [817] = {.lex_state = 3337}, - [818] = {.lex_state = 3201}, - [819] = {.lex_state = 3207}, - [820] = {.lex_state = 3339}, - [821] = {.lex_state = 3341}, - [822] = {.lex_state = 3341}, - [823] = {.lex_state = 3195}, - [824] = {.lex_state = 3341}, - [825] = {.lex_state = 3195}, - [826] = {.lex_state = 3209}, - [827] = {.lex_state = 3339}, - [828] = {.lex_state = 3195}, - [829] = {.lex_state = 3207}, - [830] = {.lex_state = 3341}, - [831] = {.lex_state = 3207}, - [832] = {.lex_state = 3207}, - [833] = {.lex_state = 3341}, - [834] = {.lex_state = 3195}, - [835] = {.lex_state = 3207}, - [836] = {.lex_state = 3195}, - [837] = {.lex_state = 3341}, - [838] = {.lex_state = 3341}, - [839] = {.lex_state = 3341}, - [840] = {.lex_state = 3211}, - [841] = {.lex_state = 3211}, - [842] = {.lex_state = 3341}, - [843] = {.lex_state = 3341}, - [844] = {.lex_state = 55, .external_lex_state = 2}, - [845] = {.lex_state = 55, .external_lex_state = 2}, - [846] = {.lex_state = 55, .external_lex_state = 2}, - [847] = {.lex_state = 55, .external_lex_state = 2}, - [848] = {.lex_state = 3213}, - [849] = {.lex_state = 55, .external_lex_state = 2}, - [850] = {.lex_state = 55, .external_lex_state = 2}, - [851] = {.lex_state = 55, .external_lex_state = 2}, - [852] = {.lex_state = 55, .external_lex_state = 2}, - [853] = {.lex_state = 55, .external_lex_state = 2}, - [854] = {.lex_state = 55, .external_lex_state = 2}, - [855] = {.lex_state = 55, .external_lex_state = 2}, - [856] = {.lex_state = 55, .external_lex_state = 2}, - [857] = {.lex_state = 3213}, - [858] = {.lex_state = 55, .external_lex_state = 2}, - [859] = {.lex_state = 55, .external_lex_state = 2}, - [860] = {.lex_state = 55, .external_lex_state = 2}, - [861] = {.lex_state = 3213}, - [862] = {.lex_state = 55, .external_lex_state = 2}, - [863] = {.lex_state = 55, .external_lex_state = 2}, - [864] = {.lex_state = 55, .external_lex_state = 2}, - [865] = {.lex_state = 55, .external_lex_state = 2}, - [866] = {.lex_state = 55, .external_lex_state = 2}, - [867] = {.lex_state = 3213}, - [868] = {.lex_state = 55, .external_lex_state = 2}, - [869] = {.lex_state = 3213}, - [870] = {.lex_state = 55, .external_lex_state = 2}, - [871] = {.lex_state = 55, .external_lex_state = 2}, - [872] = {.lex_state = 3215}, - [873] = {.lex_state = 3197}, - [874] = {.lex_state = 3197}, - [875] = {.lex_state = 3215}, - [876] = {.lex_state = 3215}, - [877] = {.lex_state = 3343}, - [878] = {.lex_state = 3343}, - [879] = {.lex_state = 3215}, - [880] = {.lex_state = 55, .external_lex_state = 2}, - [881] = {.lex_state = 55, .external_lex_state = 2}, - [882] = {.lex_state = 55, .external_lex_state = 2}, - [883] = {.lex_state = 55, .external_lex_state = 2}, - [884] = {.lex_state = 3343}, - [885] = {.lex_state = 3343}, - [886] = {.lex_state = 55, .external_lex_state = 2}, - [887] = {.lex_state = 55, .external_lex_state = 2}, - [888] = {.lex_state = 55, .external_lex_state = 2}, - [889] = {.lex_state = 55, .external_lex_state = 2}, - [890] = {.lex_state = 55, .external_lex_state = 2}, - [891] = {.lex_state = 55, .external_lex_state = 2}, - [892] = {.lex_state = 55, .external_lex_state = 2}, - [893] = {.lex_state = 55, .external_lex_state = 2}, - [894] = {.lex_state = 55, .external_lex_state = 2}, - [895] = {.lex_state = 55, .external_lex_state = 2}, - [896] = {.lex_state = 55, .external_lex_state = 2}, - [897] = {.lex_state = 55, .external_lex_state = 2}, - [898] = {.lex_state = 55, .external_lex_state = 2}, - [899] = {.lex_state = 55, .external_lex_state = 2}, - [900] = {.lex_state = 55, .external_lex_state = 2}, - [901] = {.lex_state = 55, .external_lex_state = 2}, - [902] = {.lex_state = 3217}, - [903] = {.lex_state = 3217}, - [904] = {.lex_state = 54, .external_lex_state = 2}, - [905] = {.lex_state = 54, .external_lex_state = 2}, - [906] = {.lex_state = 54, .external_lex_state = 2}, - [907] = {.lex_state = 54, .external_lex_state = 2}, - [908] = {.lex_state = 54, .external_lex_state = 2}, - [909] = {.lex_state = 54, .external_lex_state = 2}, - [910] = {.lex_state = 54, .external_lex_state = 2}, - [911] = {.lex_state = 54, .external_lex_state = 2}, - [912] = {.lex_state = 54, .external_lex_state = 2}, - [913] = {.lex_state = 54, .external_lex_state = 2}, - [914] = {.lex_state = 54, .external_lex_state = 2}, - [915] = {.lex_state = 54, .external_lex_state = 2}, - [916] = {.lex_state = 54, .external_lex_state = 2}, - [917] = {.lex_state = 54, .external_lex_state = 2}, - [918] = {.lex_state = 54, .external_lex_state = 2}, - [919] = {.lex_state = 54, .external_lex_state = 2}, - [920] = {.lex_state = 54, .external_lex_state = 2}, - [921] = {.lex_state = 54, .external_lex_state = 2}, - [922] = {.lex_state = 54, .external_lex_state = 2}, - [923] = {.lex_state = 54, .external_lex_state = 2}, - [924] = {.lex_state = 54, .external_lex_state = 2}, - [925] = {.lex_state = 54, .external_lex_state = 2}, - [926] = {.lex_state = 54, .external_lex_state = 2}, - [927] = {.lex_state = 54, .external_lex_state = 2}, - [928] = {.lex_state = 54, .external_lex_state = 2}, - [929] = {.lex_state = 54, .external_lex_state = 2}, - [930] = {.lex_state = 54, .external_lex_state = 2}, - [931] = {.lex_state = 54, .external_lex_state = 2}, - [932] = {.lex_state = 54, .external_lex_state = 2}, - [933] = {.lex_state = 54, .external_lex_state = 2}, - [934] = {.lex_state = 54, .external_lex_state = 2}, - [935] = {.lex_state = 54, .external_lex_state = 2}, - [936] = {.lex_state = 54, .external_lex_state = 2}, - [937] = {.lex_state = 54, .external_lex_state = 2}, - [938] = {.lex_state = 54, .external_lex_state = 2}, - [939] = {.lex_state = 54, .external_lex_state = 2}, - [940] = {.lex_state = 54, .external_lex_state = 2}, - [941] = {.lex_state = 54, .external_lex_state = 2}, - [942] = {.lex_state = 54, .external_lex_state = 2}, - [943] = {.lex_state = 54, .external_lex_state = 2}, - [944] = {.lex_state = 54, .external_lex_state = 2}, - [945] = {.lex_state = 54, .external_lex_state = 2}, - [946] = {.lex_state = 54, .external_lex_state = 2}, - [947] = {.lex_state = 54, .external_lex_state = 2}, - [948] = {.lex_state = 54, .external_lex_state = 2}, - [949] = {.lex_state = 54, .external_lex_state = 2}, - [950] = {.lex_state = 54, .external_lex_state = 2}, - [951] = {.lex_state = 54, .external_lex_state = 2}, - [952] = {.lex_state = 54, .external_lex_state = 2}, - [953] = {.lex_state = 54, .external_lex_state = 2}, - [954] = {.lex_state = 54, .external_lex_state = 2}, - [955] = {.lex_state = 54, .external_lex_state = 2}, - [956] = {.lex_state = 54, .external_lex_state = 2}, - [957] = {.lex_state = 54, .external_lex_state = 2}, - [958] = {.lex_state = 54, .external_lex_state = 2}, - [959] = {.lex_state = 54, .external_lex_state = 2}, - [960] = {.lex_state = 54, .external_lex_state = 2}, - [961] = {.lex_state = 54, .external_lex_state = 2}, - [962] = {.lex_state = 54, .external_lex_state = 2}, - [963] = {.lex_state = 54, .external_lex_state = 2}, - [964] = {.lex_state = 54, .external_lex_state = 2}, - [965] = {.lex_state = 54, .external_lex_state = 2}, - [966] = {.lex_state = 54, .external_lex_state = 2}, - [967] = {.lex_state = 54, .external_lex_state = 2}, - [968] = {.lex_state = 54, .external_lex_state = 2}, - [969] = {.lex_state = 54, .external_lex_state = 2}, - [970] = {.lex_state = 54, .external_lex_state = 2}, - [971] = {.lex_state = 54, .external_lex_state = 2}, - [972] = {.lex_state = 54, .external_lex_state = 2}, - [973] = {.lex_state = 54, .external_lex_state = 2}, - [974] = {.lex_state = 54, .external_lex_state = 2}, - [975] = {.lex_state = 54, .external_lex_state = 2}, - [976] = {.lex_state = 54, .external_lex_state = 2}, - [977] = {.lex_state = 54, .external_lex_state = 2}, - [978] = {.lex_state = 54, .external_lex_state = 2}, - [979] = {.lex_state = 54, .external_lex_state = 2}, - [980] = {.lex_state = 54, .external_lex_state = 2}, - [981] = {.lex_state = 54, .external_lex_state = 2}, - [982] = {.lex_state = 54, .external_lex_state = 2}, - [983] = {.lex_state = 54, .external_lex_state = 2}, - [984] = {.lex_state = 54, .external_lex_state = 2}, - [985] = {.lex_state = 54, .external_lex_state = 2}, - [986] = {.lex_state = 54, .external_lex_state = 2}, - [987] = {.lex_state = 54, .external_lex_state = 2}, - [988] = {.lex_state = 54, .external_lex_state = 2}, - [989] = {.lex_state = 55, .external_lex_state = 2}, - [990] = {.lex_state = 54, .external_lex_state = 2}, - [991] = {.lex_state = 54, .external_lex_state = 2}, - [992] = {.lex_state = 54, .external_lex_state = 2}, - [993] = {.lex_state = 54, .external_lex_state = 2}, - [994] = {.lex_state = 54, .external_lex_state = 2}, - [995] = {.lex_state = 54, .external_lex_state = 2}, - [996] = {.lex_state = 54, .external_lex_state = 2}, - [997] = {.lex_state = 54, .external_lex_state = 2}, - [998] = {.lex_state = 54, .external_lex_state = 2}, - [999] = {.lex_state = 54, .external_lex_state = 2}, - [1000] = {.lex_state = 54, .external_lex_state = 2}, - [1001] = {.lex_state = 54, .external_lex_state = 2}, - [1002] = {.lex_state = 54, .external_lex_state = 2}, - [1003] = {.lex_state = 54, .external_lex_state = 2}, - [1004] = {.lex_state = 54, .external_lex_state = 2}, - [1005] = {.lex_state = 54, .external_lex_state = 2}, - [1006] = {.lex_state = 54, .external_lex_state = 2}, - [1007] = {.lex_state = 54, .external_lex_state = 2}, - [1008] = {.lex_state = 54, .external_lex_state = 2}, - [1009] = {.lex_state = 54, .external_lex_state = 2}, - [1010] = {.lex_state = 54, .external_lex_state = 2}, - [1011] = {.lex_state = 54, .external_lex_state = 2}, - [1012] = {.lex_state = 54, .external_lex_state = 2}, - [1013] = {.lex_state = 54, .external_lex_state = 2}, - [1014] = {.lex_state = 54, .external_lex_state = 2}, - [1015] = {.lex_state = 54, .external_lex_state = 2}, - [1016] = {.lex_state = 54, .external_lex_state = 2}, - [1017] = {.lex_state = 54, .external_lex_state = 2}, - [1018] = {.lex_state = 54, .external_lex_state = 2}, - [1019] = {.lex_state = 54, .external_lex_state = 2}, - [1020] = {.lex_state = 54, .external_lex_state = 2}, - [1021] = {.lex_state = 54, .external_lex_state = 2}, - [1022] = {.lex_state = 54, .external_lex_state = 2}, - [1023] = {.lex_state = 54, .external_lex_state = 2}, - [1024] = {.lex_state = 54, .external_lex_state = 2}, - [1025] = {.lex_state = 54, .external_lex_state = 2}, - [1026] = {.lex_state = 54, .external_lex_state = 2}, - [1027] = {.lex_state = 54, .external_lex_state = 2}, - [1028] = {.lex_state = 54, .external_lex_state = 2}, - [1029] = {.lex_state = 54, .external_lex_state = 2}, - [1030] = {.lex_state = 54, .external_lex_state = 2}, - [1031] = {.lex_state = 54, .external_lex_state = 2}, - [1032] = {.lex_state = 54, .external_lex_state = 2}, - [1033] = {.lex_state = 54, .external_lex_state = 2}, - [1034] = {.lex_state = 54, .external_lex_state = 2}, - [1035] = {.lex_state = 54, .external_lex_state = 2}, - [1036] = {.lex_state = 54, .external_lex_state = 2}, - [1037] = {.lex_state = 54, .external_lex_state = 2}, - [1038] = {.lex_state = 54, .external_lex_state = 2}, - [1039] = {.lex_state = 54, .external_lex_state = 2}, - [1040] = {.lex_state = 54, .external_lex_state = 2}, - [1041] = {.lex_state = 55, .external_lex_state = 2}, - [1042] = {.lex_state = 55, .external_lex_state = 2}, - [1043] = {.lex_state = 54, .external_lex_state = 2}, - [1044] = {.lex_state = 54, .external_lex_state = 2}, - [1045] = {.lex_state = 54, .external_lex_state = 2}, - [1046] = {.lex_state = 54, .external_lex_state = 2}, - [1047] = {.lex_state = 54, .external_lex_state = 2}, - [1048] = {.lex_state = 54, .external_lex_state = 2}, - [1049] = {.lex_state = 54, .external_lex_state = 2}, - [1050] = {.lex_state = 54, .external_lex_state = 2}, - [1051] = {.lex_state = 54, .external_lex_state = 2}, - [1052] = {.lex_state = 54, .external_lex_state = 2}, - [1053] = {.lex_state = 54, .external_lex_state = 2}, - [1054] = {.lex_state = 54, .external_lex_state = 2}, - [1055] = {.lex_state = 54, .external_lex_state = 2}, - [1056] = {.lex_state = 54, .external_lex_state = 2}, - [1057] = {.lex_state = 54, .external_lex_state = 2}, - [1058] = {.lex_state = 54, .external_lex_state = 2}, - [1059] = {.lex_state = 54, .external_lex_state = 2}, - [1060] = {.lex_state = 54, .external_lex_state = 2}, - [1061] = {.lex_state = 54, .external_lex_state = 2}, - [1062] = {.lex_state = 54, .external_lex_state = 2}, - [1063] = {.lex_state = 54, .external_lex_state = 2}, - [1064] = {.lex_state = 54, .external_lex_state = 2}, - [1065] = {.lex_state = 54, .external_lex_state = 2}, - [1066] = {.lex_state = 54, .external_lex_state = 2}, - [1067] = {.lex_state = 54, .external_lex_state = 2}, - [1068] = {.lex_state = 54, .external_lex_state = 2}, - [1069] = {.lex_state = 54, .external_lex_state = 2}, - [1070] = {.lex_state = 54, .external_lex_state = 2}, - [1071] = {.lex_state = 54, .external_lex_state = 2}, - [1072] = {.lex_state = 54, .external_lex_state = 2}, - [1073] = {.lex_state = 54, .external_lex_state = 2}, - [1074] = {.lex_state = 54, .external_lex_state = 2}, - [1075] = {.lex_state = 54, .external_lex_state = 2}, - [1076] = {.lex_state = 53, .external_lex_state = 2}, - [1077] = {.lex_state = 54, .external_lex_state = 2}, - [1078] = {.lex_state = 54, .external_lex_state = 2}, - [1079] = {.lex_state = 54, .external_lex_state = 2}, - [1080] = {.lex_state = 54, .external_lex_state = 2}, - [1081] = {.lex_state = 54, .external_lex_state = 2}, - [1082] = {.lex_state = 54, .external_lex_state = 2}, - [1083] = {.lex_state = 54, .external_lex_state = 2}, - [1084] = {.lex_state = 54, .external_lex_state = 2}, - [1085] = {.lex_state = 54, .external_lex_state = 2}, - [1086] = {.lex_state = 54, .external_lex_state = 2}, - [1087] = {.lex_state = 54, .external_lex_state = 2}, - [1088] = {.lex_state = 54, .external_lex_state = 2}, - [1089] = {.lex_state = 54, .external_lex_state = 2}, - [1090] = {.lex_state = 54, .external_lex_state = 2}, - [1091] = {.lex_state = 54, .external_lex_state = 2}, - [1092] = {.lex_state = 54, .external_lex_state = 2}, - [1093] = {.lex_state = 54, .external_lex_state = 2}, - [1094] = {.lex_state = 54, .external_lex_state = 2}, - [1095] = {.lex_state = 54, .external_lex_state = 2}, - [1096] = {.lex_state = 54, .external_lex_state = 2}, - [1097] = {.lex_state = 54, .external_lex_state = 2}, - [1098] = {.lex_state = 54, .external_lex_state = 2}, - [1099] = {.lex_state = 54, .external_lex_state = 2}, - [1100] = {.lex_state = 54, .external_lex_state = 2}, - [1101] = {.lex_state = 54, .external_lex_state = 2}, - [1102] = {.lex_state = 54, .external_lex_state = 2}, - [1103] = {.lex_state = 54, .external_lex_state = 2}, - [1104] = {.lex_state = 54, .external_lex_state = 2}, - [1105] = {.lex_state = 54, .external_lex_state = 2}, - [1106] = {.lex_state = 54, .external_lex_state = 2}, - [1107] = {.lex_state = 54, .external_lex_state = 2}, - [1108] = {.lex_state = 54, .external_lex_state = 2}, - [1109] = {.lex_state = 54, .external_lex_state = 2}, - [1110] = {.lex_state = 54, .external_lex_state = 2}, - [1111] = {.lex_state = 54, .external_lex_state = 2}, - [1112] = {.lex_state = 54, .external_lex_state = 2}, - [1113] = {.lex_state = 54, .external_lex_state = 2}, - [1114] = {.lex_state = 54, .external_lex_state = 2}, - [1115] = {.lex_state = 54, .external_lex_state = 2}, - [1116] = {.lex_state = 54, .external_lex_state = 2}, - [1117] = {.lex_state = 54, .external_lex_state = 2}, - [1118] = {.lex_state = 54, .external_lex_state = 2}, - [1119] = {.lex_state = 54, .external_lex_state = 2}, - [1120] = {.lex_state = 54, .external_lex_state = 2}, - [1121] = {.lex_state = 54, .external_lex_state = 2}, - [1122] = {.lex_state = 54, .external_lex_state = 2}, - [1123] = {.lex_state = 54, .external_lex_state = 2}, - [1124] = {.lex_state = 54, .external_lex_state = 2}, - [1125] = {.lex_state = 54, .external_lex_state = 2}, - [1126] = {.lex_state = 54, .external_lex_state = 2}, - [1127] = {.lex_state = 54, .external_lex_state = 2}, - [1128] = {.lex_state = 54, .external_lex_state = 2}, - [1129] = {.lex_state = 54, .external_lex_state = 2}, - [1130] = {.lex_state = 54, .external_lex_state = 2}, - [1131] = {.lex_state = 54, .external_lex_state = 2}, - [1132] = {.lex_state = 54, .external_lex_state = 2}, - [1133] = {.lex_state = 54, .external_lex_state = 2}, - [1134] = {.lex_state = 54, .external_lex_state = 2}, - [1135] = {.lex_state = 54, .external_lex_state = 2}, - [1136] = {.lex_state = 54, .external_lex_state = 2}, - [1137] = {.lex_state = 54, .external_lex_state = 2}, - [1138] = {.lex_state = 54, .external_lex_state = 2}, - [1139] = {.lex_state = 14, .external_lex_state = 2}, - [1140] = {.lex_state = 54, .external_lex_state = 2}, - [1141] = {.lex_state = 54, .external_lex_state = 2}, - [1142] = {.lex_state = 54, .external_lex_state = 2}, - [1143] = {.lex_state = 54, .external_lex_state = 2}, - [1144] = {.lex_state = 54, .external_lex_state = 2}, - [1145] = {.lex_state = 54, .external_lex_state = 2}, - [1146] = {.lex_state = 54, .external_lex_state = 2}, - [1147] = {.lex_state = 14, .external_lex_state = 2}, - [1148] = {.lex_state = 54, .external_lex_state = 2}, - [1149] = {.lex_state = 54, .external_lex_state = 2}, - [1150] = {.lex_state = 54, .external_lex_state = 2}, - [1151] = {.lex_state = 54, .external_lex_state = 2}, - [1152] = {.lex_state = 54, .external_lex_state = 2}, - [1153] = {.lex_state = 54, .external_lex_state = 2}, - [1154] = {.lex_state = 54, .external_lex_state = 2}, - [1155] = {.lex_state = 54, .external_lex_state = 2}, - [1156] = {.lex_state = 54, .external_lex_state = 2}, - [1157] = {.lex_state = 1770, .external_lex_state = 2}, - [1158] = {.lex_state = 1770, .external_lex_state = 2}, - [1159] = {.lex_state = 1770, .external_lex_state = 2}, - [1160] = {.lex_state = 54, .external_lex_state = 2}, - [1161] = {.lex_state = 54, .external_lex_state = 2}, - [1162] = {.lex_state = 54, .external_lex_state = 2}, - [1163] = {.lex_state = 54, .external_lex_state = 2}, - [1164] = {.lex_state = 54, .external_lex_state = 2}, - [1165] = {.lex_state = 49, .external_lex_state = 2}, - [1166] = {.lex_state = 54, .external_lex_state = 2}, - [1167] = {.lex_state = 1770, .external_lex_state = 2}, - [1168] = {.lex_state = 49, .external_lex_state = 2}, - [1169] = {.lex_state = 49, .external_lex_state = 2}, - [1170] = {.lex_state = 50, .external_lex_state = 2}, - [1171] = {.lex_state = 49, .external_lex_state = 2}, - [1172] = {.lex_state = 256, .external_lex_state = 2}, - [1173] = {.lex_state = 49, .external_lex_state = 2}, - [1174] = {.lex_state = 256, .external_lex_state = 2}, - [1175] = {.lex_state = 1770, .external_lex_state = 2}, - [1176] = {.lex_state = 3190}, - [1177] = {.lex_state = 3200}, - [1178] = {.lex_state = 3204}, - [1179] = {.lex_state = 56, .external_lex_state = 2}, - [1180] = {.lex_state = 3336}, - [1181] = {.lex_state = 3338}, - [1182] = {.lex_state = 50, .external_lex_state = 2}, - [1183] = {.lex_state = 49, .external_lex_state = 2}, - [1184] = {.lex_state = 44, .external_lex_state = 2}, - [1185] = {.lex_state = 3192}, - [1186] = {.lex_state = 56, .external_lex_state = 2}, - [1187] = {.lex_state = 56, .external_lex_state = 2}, - [1188] = {.lex_state = 44, .external_lex_state = 2}, - [1189] = {.lex_state = 44, .external_lex_state = 2}, - [1190] = {.lex_state = 44, .external_lex_state = 2}, - [1191] = {.lex_state = 56, .external_lex_state = 2}, - [1192] = {.lex_state = 3340}, - [1193] = {.lex_state = 44, .external_lex_state = 2}, - [1194] = {.lex_state = 44, .external_lex_state = 2}, - [1195] = {.lex_state = 3206}, - [1196] = {.lex_state = 3206}, - [1197] = {.lex_state = 3194}, - [1198] = {.lex_state = 3336}, - [1199] = {.lex_state = 44, .external_lex_state = 2}, - [1200] = {.lex_state = 44, .external_lex_state = 2}, - [1201] = {.lex_state = 3194}, - [1202] = {.lex_state = 3340}, - [1203] = {.lex_state = 3338}, - [1204] = {.lex_state = 56, .external_lex_state = 2}, - [1205] = {.lex_state = 56, .external_lex_state = 2}, - [1206] = {.lex_state = 3208}, - [1207] = {.lex_state = 3208}, - [1208] = {.lex_state = 3342}, - [1209] = {.lex_state = 3342}, - [1210] = {.lex_state = 3202}, - [1211] = {.lex_state = 3342}, - [1212] = {.lex_state = 3342}, - [1213] = {.lex_state = 56, .external_lex_state = 2}, - [1214] = {.lex_state = 56, .external_lex_state = 2}, - [1215] = {.lex_state = 3342}, - [1216] = {.lex_state = 3210}, - [1217] = {.lex_state = 3196}, - [1218] = {.lex_state = 3208}, - [1219] = {.lex_state = 56, .external_lex_state = 2}, - [1220] = {.lex_state = 3340}, - [1221] = {.lex_state = 3340}, - [1222] = {.lex_state = 3208}, - [1223] = {.lex_state = 3196}, - [1224] = {.lex_state = 3196}, - [1225] = {.lex_state = 3208}, - [1226] = {.lex_state = 3196}, - [1227] = {.lex_state = 3196}, - [1228] = {.lex_state = 56, .external_lex_state = 2}, - [1229] = {.lex_state = 3342}, - [1230] = {.lex_state = 3342}, - [1231] = {.lex_state = 262, .external_lex_state = 2}, - [1232] = {.lex_state = 44, .external_lex_state = 2}, - [1233] = {.lex_state = 44, .external_lex_state = 2}, - [1234] = {.lex_state = 45, .external_lex_state = 2}, + [770] = {.lex_state = 3119}, + [771] = {.lex_state = 3124}, + [772] = {.lex_state = 39, .external_lex_state = 2}, + [773] = {.lex_state = 39, .external_lex_state = 2}, + [774] = {.lex_state = 39, .external_lex_state = 2}, + [775] = {.lex_state = 39, .external_lex_state = 2}, + [776] = {.lex_state = 3125}, + [777] = {.lex_state = 1702, .external_lex_state = 2}, + [778] = {.lex_state = 1702, .external_lex_state = 2}, + [779] = {.lex_state = 1702, .external_lex_state = 2}, + [780] = {.lex_state = 1702, .external_lex_state = 2}, + [781] = {.lex_state = 3125}, + [782] = {.lex_state = 3259}, + [783] = {.lex_state = 1702, .external_lex_state = 2}, + [784] = {.lex_state = 3127}, + [785] = {.lex_state = 1702, .external_lex_state = 2}, + [786] = {.lex_state = 3120}, + [787] = {.lex_state = 1702, .external_lex_state = 2}, + [788] = {.lex_state = 3261}, + [789] = {.lex_state = 3111}, + [790] = {.lex_state = 1702, .external_lex_state = 2}, + [791] = {.lex_state = 1702, .external_lex_state = 2}, + [792] = {.lex_state = 1702, .external_lex_state = 2}, + [793] = {.lex_state = 3109}, + [794] = {.lex_state = 1702, .external_lex_state = 2}, + [795] = {.lex_state = 3259}, + [796] = {.lex_state = 1702, .external_lex_state = 2}, + [797] = {.lex_state = 1702, .external_lex_state = 2}, + [798] = {.lex_state = 3126}, + [799] = {.lex_state = 3113}, + [800] = {.lex_state = 3126}, + [801] = {.lex_state = 3261}, + [802] = {.lex_state = 1702, .external_lex_state = 2}, + [803] = {.lex_state = 3126}, + [804] = {.lex_state = 3263}, + [805] = {.lex_state = 3126}, + [806] = {.lex_state = 3129}, + [807] = {.lex_state = 3263}, + [808] = {.lex_state = 3113}, + [809] = {.lex_state = 3129}, + [810] = {.lex_state = 3126}, + [811] = {.lex_state = 1702, .external_lex_state = 2}, + [812] = {.lex_state = 3131}, + [813] = {.lex_state = 3115}, + [814] = {.lex_state = 3115}, + [815] = {.lex_state = 3263}, + [816] = {.lex_state = 3122}, + [817] = {.lex_state = 3115}, + [818] = {.lex_state = 3265}, + [819] = {.lex_state = 3265}, + [820] = {.lex_state = 3265}, + [821] = {.lex_state = 3131}, + [822] = {.lex_state = 3263}, + [823] = {.lex_state = 3265}, + [824] = {.lex_state = 3265}, + [825] = {.lex_state = 3131}, + [826] = {.lex_state = 3133}, + [827] = {.lex_state = 3131}, + [828] = {.lex_state = 3131}, + [829] = {.lex_state = 3115}, + [830] = {.lex_state = 3115}, + [831] = {.lex_state = 3135}, + [832] = {.lex_state = 3265}, + [833] = {.lex_state = 3265}, + [834] = {.lex_state = 3265}, + [835] = {.lex_state = 3265}, + [836] = {.lex_state = 3265}, + [837] = {.lex_state = 3135}, + [838] = {.lex_state = 46, .external_lex_state = 2}, + [839] = {.lex_state = 46, .external_lex_state = 2}, + [840] = {.lex_state = 46, .external_lex_state = 2}, + [841] = {.lex_state = 46, .external_lex_state = 2}, + [842] = {.lex_state = 3137}, + [843] = {.lex_state = 46, .external_lex_state = 2}, + [844] = {.lex_state = 3137}, + [845] = {.lex_state = 3137}, + [846] = {.lex_state = 46, .external_lex_state = 2}, + [847] = {.lex_state = 46, .external_lex_state = 2}, + [848] = {.lex_state = 46, .external_lex_state = 2}, + [849] = {.lex_state = 46, .external_lex_state = 2}, + [850] = {.lex_state = 46, .external_lex_state = 2}, + [851] = {.lex_state = 46, .external_lex_state = 2}, + [852] = {.lex_state = 46, .external_lex_state = 2}, + [853] = {.lex_state = 46, .external_lex_state = 2}, + [854] = {.lex_state = 46, .external_lex_state = 2}, + [855] = {.lex_state = 46, .external_lex_state = 2}, + [856] = {.lex_state = 46, .external_lex_state = 2}, + [857] = {.lex_state = 46, .external_lex_state = 2}, + [858] = {.lex_state = 46, .external_lex_state = 2}, + [859] = {.lex_state = 46, .external_lex_state = 2}, + [860] = {.lex_state = 46, .external_lex_state = 2}, + [861] = {.lex_state = 3137}, + [862] = {.lex_state = 3137}, + [863] = {.lex_state = 46, .external_lex_state = 2}, + [864] = {.lex_state = 3117}, + [865] = {.lex_state = 3139}, + [866] = {.lex_state = 3117}, + [867] = {.lex_state = 3139}, + [868] = {.lex_state = 3139}, + [869] = {.lex_state = 3139}, + [870] = {.lex_state = 3267}, + [871] = {.lex_state = 3267}, + [872] = {.lex_state = 46, .external_lex_state = 2}, + [873] = {.lex_state = 46, .external_lex_state = 2}, + [874] = {.lex_state = 3267}, + [875] = {.lex_state = 46, .external_lex_state = 2}, + [876] = {.lex_state = 3267}, + [877] = {.lex_state = 46, .external_lex_state = 2}, + [878] = {.lex_state = 46, .external_lex_state = 2}, + [879] = {.lex_state = 46, .external_lex_state = 2}, + [880] = {.lex_state = 46, .external_lex_state = 2}, + [881] = {.lex_state = 46, .external_lex_state = 2}, + [882] = {.lex_state = 46, .external_lex_state = 2}, + [883] = {.lex_state = 46, .external_lex_state = 2}, + [884] = {.lex_state = 46, .external_lex_state = 2}, + [885] = {.lex_state = 46, .external_lex_state = 2}, + [886] = {.lex_state = 46, .external_lex_state = 2}, + [887] = {.lex_state = 46, .external_lex_state = 2}, + [888] = {.lex_state = 46, .external_lex_state = 2}, + [889] = {.lex_state = 46, .external_lex_state = 2}, + [890] = {.lex_state = 46, .external_lex_state = 2}, + [891] = {.lex_state = 46, .external_lex_state = 2}, + [892] = {.lex_state = 3141}, + [893] = {.lex_state = 3141}, + [894] = {.lex_state = 45, .external_lex_state = 2}, + [895] = {.lex_state = 45, .external_lex_state = 2}, + [896] = {.lex_state = 45, .external_lex_state = 2}, + [897] = {.lex_state = 45, .external_lex_state = 2}, + [898] = {.lex_state = 45, .external_lex_state = 2}, + [899] = {.lex_state = 45, .external_lex_state = 2}, + [900] = {.lex_state = 45, .external_lex_state = 2}, + [901] = {.lex_state = 45, .external_lex_state = 2}, + [902] = {.lex_state = 45, .external_lex_state = 2}, + [903] = {.lex_state = 45, .external_lex_state = 2}, + [904] = {.lex_state = 45, .external_lex_state = 2}, + [905] = {.lex_state = 45, .external_lex_state = 2}, + [906] = {.lex_state = 46, .external_lex_state = 2}, + [907] = {.lex_state = 45, .external_lex_state = 2}, + [908] = {.lex_state = 45, .external_lex_state = 2}, + [909] = {.lex_state = 45, .external_lex_state = 2}, + [910] = {.lex_state = 45, .external_lex_state = 2}, + [911] = {.lex_state = 45, .external_lex_state = 2}, + [912] = {.lex_state = 45, .external_lex_state = 2}, + [913] = {.lex_state = 45, .external_lex_state = 2}, + [914] = {.lex_state = 45, .external_lex_state = 2}, + [915] = {.lex_state = 45, .external_lex_state = 2}, + [916] = {.lex_state = 45, .external_lex_state = 2}, + [917] = {.lex_state = 45, .external_lex_state = 2}, + [918] = {.lex_state = 45, .external_lex_state = 2}, + [919] = {.lex_state = 45, .external_lex_state = 2}, + [920] = {.lex_state = 45, .external_lex_state = 2}, + [921] = {.lex_state = 45, .external_lex_state = 2}, + [922] = {.lex_state = 45, .external_lex_state = 2}, + [923] = {.lex_state = 45, .external_lex_state = 2}, + [924] = {.lex_state = 45, .external_lex_state = 2}, + [925] = {.lex_state = 45, .external_lex_state = 2}, + [926] = {.lex_state = 45, .external_lex_state = 2}, + [927] = {.lex_state = 45, .external_lex_state = 2}, + [928] = {.lex_state = 45, .external_lex_state = 2}, + [929] = {.lex_state = 45, .external_lex_state = 2}, + [930] = {.lex_state = 45, .external_lex_state = 2}, + [931] = {.lex_state = 45, .external_lex_state = 2}, + [932] = {.lex_state = 45, .external_lex_state = 2}, + [933] = {.lex_state = 45, .external_lex_state = 2}, + [934] = {.lex_state = 45, .external_lex_state = 2}, + [935] = {.lex_state = 45, .external_lex_state = 2}, + [936] = {.lex_state = 45, .external_lex_state = 2}, + [937] = {.lex_state = 45, .external_lex_state = 2}, + [938] = {.lex_state = 45, .external_lex_state = 2}, + [939] = {.lex_state = 45, .external_lex_state = 2}, + [940] = {.lex_state = 45, .external_lex_state = 2}, + [941] = {.lex_state = 45, .external_lex_state = 2}, + [942] = {.lex_state = 45, .external_lex_state = 2}, + [943] = {.lex_state = 45, .external_lex_state = 2}, + [944] = {.lex_state = 45, .external_lex_state = 2}, + [945] = {.lex_state = 45, .external_lex_state = 2}, + [946] = {.lex_state = 45, .external_lex_state = 2}, + [947] = {.lex_state = 45, .external_lex_state = 2}, + [948] = {.lex_state = 45, .external_lex_state = 2}, + [949] = {.lex_state = 45, .external_lex_state = 2}, + [950] = {.lex_state = 45, .external_lex_state = 2}, + [951] = {.lex_state = 45, .external_lex_state = 2}, + [952] = {.lex_state = 45, .external_lex_state = 2}, + [953] = {.lex_state = 45, .external_lex_state = 2}, + [954] = {.lex_state = 45, .external_lex_state = 2}, + [955] = {.lex_state = 45, .external_lex_state = 2}, + [956] = {.lex_state = 45, .external_lex_state = 2}, + [957] = {.lex_state = 45, .external_lex_state = 2}, + [958] = {.lex_state = 46, .external_lex_state = 2}, + [959] = {.lex_state = 45, .external_lex_state = 2}, + [960] = {.lex_state = 45, .external_lex_state = 2}, + [961] = {.lex_state = 45, .external_lex_state = 2}, + [962] = {.lex_state = 45, .external_lex_state = 2}, + [963] = {.lex_state = 45, .external_lex_state = 2}, + [964] = {.lex_state = 45, .external_lex_state = 2}, + [965] = {.lex_state = 45, .external_lex_state = 2}, + [966] = {.lex_state = 45, .external_lex_state = 2}, + [967] = {.lex_state = 45, .external_lex_state = 2}, + [968] = {.lex_state = 45, .external_lex_state = 2}, + [969] = {.lex_state = 45, .external_lex_state = 2}, + [970] = {.lex_state = 45, .external_lex_state = 2}, + [971] = {.lex_state = 45, .external_lex_state = 2}, + [972] = {.lex_state = 45, .external_lex_state = 2}, + [973] = {.lex_state = 45, .external_lex_state = 2}, + [974] = {.lex_state = 45, .external_lex_state = 2}, + [975] = {.lex_state = 45, .external_lex_state = 2}, + [976] = {.lex_state = 45, .external_lex_state = 2}, + [977] = {.lex_state = 45, .external_lex_state = 2}, + [978] = {.lex_state = 45, .external_lex_state = 2}, + [979] = {.lex_state = 45, .external_lex_state = 2}, + [980] = {.lex_state = 45, .external_lex_state = 2}, + [981] = {.lex_state = 45, .external_lex_state = 2}, + [982] = {.lex_state = 45, .external_lex_state = 2}, + [983] = {.lex_state = 45, .external_lex_state = 2}, + [984] = {.lex_state = 45, .external_lex_state = 2}, + [985] = {.lex_state = 45, .external_lex_state = 2}, + [986] = {.lex_state = 45, .external_lex_state = 2}, + [987] = {.lex_state = 45, .external_lex_state = 2}, + [988] = {.lex_state = 45, .external_lex_state = 2}, + [989] = {.lex_state = 45, .external_lex_state = 2}, + [990] = {.lex_state = 45, .external_lex_state = 2}, + [991] = {.lex_state = 45, .external_lex_state = 2}, + [992] = {.lex_state = 45, .external_lex_state = 2}, + [993] = {.lex_state = 45, .external_lex_state = 2}, + [994] = {.lex_state = 45, .external_lex_state = 2}, + [995] = {.lex_state = 45, .external_lex_state = 2}, + [996] = {.lex_state = 45, .external_lex_state = 2}, + [997] = {.lex_state = 45, .external_lex_state = 2}, + [998] = {.lex_state = 45, .external_lex_state = 2}, + [999] = {.lex_state = 45, .external_lex_state = 2}, + [1000] = {.lex_state = 45, .external_lex_state = 2}, + [1001] = {.lex_state = 45, .external_lex_state = 2}, + [1002] = {.lex_state = 45, .external_lex_state = 2}, + [1003] = {.lex_state = 45, .external_lex_state = 2}, + [1004] = {.lex_state = 45, .external_lex_state = 2}, + [1005] = {.lex_state = 45, .external_lex_state = 2}, + [1006] = {.lex_state = 45, .external_lex_state = 2}, + [1007] = {.lex_state = 45, .external_lex_state = 2}, + [1008] = {.lex_state = 45, .external_lex_state = 2}, + [1009] = {.lex_state = 45, .external_lex_state = 2}, + [1010] = {.lex_state = 45, .external_lex_state = 2}, + [1011] = {.lex_state = 45, .external_lex_state = 2}, + [1012] = {.lex_state = 45, .external_lex_state = 2}, + [1013] = {.lex_state = 45, .external_lex_state = 2}, + [1014] = {.lex_state = 45, .external_lex_state = 2}, + [1015] = {.lex_state = 45, .external_lex_state = 2}, + [1016] = {.lex_state = 45, .external_lex_state = 2}, + [1017] = {.lex_state = 45, .external_lex_state = 2}, + [1018] = {.lex_state = 45, .external_lex_state = 2}, + [1019] = {.lex_state = 45, .external_lex_state = 2}, + [1020] = {.lex_state = 46, .external_lex_state = 2}, + [1021] = {.lex_state = 45, .external_lex_state = 2}, + [1022] = {.lex_state = 45, .external_lex_state = 2}, + [1023] = {.lex_state = 45, .external_lex_state = 2}, + [1024] = {.lex_state = 45, .external_lex_state = 2}, + [1025] = {.lex_state = 45, .external_lex_state = 2}, + [1026] = {.lex_state = 45, .external_lex_state = 2}, + [1027] = {.lex_state = 45, .external_lex_state = 2}, + [1028] = {.lex_state = 45, .external_lex_state = 2}, + [1029] = {.lex_state = 45, .external_lex_state = 2}, + [1030] = {.lex_state = 45, .external_lex_state = 2}, + [1031] = {.lex_state = 45, .external_lex_state = 2}, + [1032] = {.lex_state = 45, .external_lex_state = 2}, + [1033] = {.lex_state = 45, .external_lex_state = 2}, + [1034] = {.lex_state = 45, .external_lex_state = 2}, + [1035] = {.lex_state = 45, .external_lex_state = 2}, + [1036] = {.lex_state = 45, .external_lex_state = 2}, + [1037] = {.lex_state = 45, .external_lex_state = 2}, + [1038] = {.lex_state = 45, .external_lex_state = 2}, + [1039] = {.lex_state = 45, .external_lex_state = 2}, + [1040] = {.lex_state = 45, .external_lex_state = 2}, + [1041] = {.lex_state = 45, .external_lex_state = 2}, + [1042] = {.lex_state = 45, .external_lex_state = 2}, + [1043] = {.lex_state = 45, .external_lex_state = 2}, + [1044] = {.lex_state = 45, .external_lex_state = 2}, + [1045] = {.lex_state = 45, .external_lex_state = 2}, + [1046] = {.lex_state = 45, .external_lex_state = 2}, + [1047] = {.lex_state = 45, .external_lex_state = 2}, + [1048] = {.lex_state = 45, .external_lex_state = 2}, + [1049] = {.lex_state = 45, .external_lex_state = 2}, + [1050] = {.lex_state = 45, .external_lex_state = 2}, + [1051] = {.lex_state = 45, .external_lex_state = 2}, + [1052] = {.lex_state = 45, .external_lex_state = 2}, + [1053] = {.lex_state = 45, .external_lex_state = 2}, + [1054] = {.lex_state = 45, .external_lex_state = 2}, + [1055] = {.lex_state = 45, .external_lex_state = 2}, + [1056] = {.lex_state = 45, .external_lex_state = 2}, + [1057] = {.lex_state = 45, .external_lex_state = 2}, + [1058] = {.lex_state = 45, .external_lex_state = 2}, + [1059] = {.lex_state = 45, .external_lex_state = 2}, + [1060] = {.lex_state = 45, .external_lex_state = 2}, + [1061] = {.lex_state = 45, .external_lex_state = 2}, + [1062] = {.lex_state = 45, .external_lex_state = 2}, + [1063] = {.lex_state = 45, .external_lex_state = 2}, + [1064] = {.lex_state = 45, .external_lex_state = 2}, + [1065] = {.lex_state = 45, .external_lex_state = 2}, + [1066] = {.lex_state = 45, .external_lex_state = 2}, + [1067] = {.lex_state = 45, .external_lex_state = 2}, + [1068] = {.lex_state = 45, .external_lex_state = 2}, + [1069] = {.lex_state = 45, .external_lex_state = 2}, + [1070] = {.lex_state = 45, .external_lex_state = 2}, + [1071] = {.lex_state = 45, .external_lex_state = 2}, + [1072] = {.lex_state = 45, .external_lex_state = 2}, + [1073] = {.lex_state = 45, .external_lex_state = 2}, + [1074] = {.lex_state = 45, .external_lex_state = 2}, + [1075] = {.lex_state = 45, .external_lex_state = 2}, + [1076] = {.lex_state = 45, .external_lex_state = 2}, + [1077] = {.lex_state = 45, .external_lex_state = 2}, + [1078] = {.lex_state = 45, .external_lex_state = 2}, + [1079] = {.lex_state = 45, .external_lex_state = 2}, + [1080] = {.lex_state = 45, .external_lex_state = 2}, + [1081] = {.lex_state = 45, .external_lex_state = 2}, + [1082] = {.lex_state = 45, .external_lex_state = 2}, + [1083] = {.lex_state = 45, .external_lex_state = 2}, + [1084] = {.lex_state = 45, .external_lex_state = 2}, + [1085] = {.lex_state = 45, .external_lex_state = 2}, + [1086] = {.lex_state = 45, .external_lex_state = 2}, + [1087] = {.lex_state = 45, .external_lex_state = 2}, + [1088] = {.lex_state = 45, .external_lex_state = 2}, + [1089] = {.lex_state = 45, .external_lex_state = 2}, + [1090] = {.lex_state = 45, .external_lex_state = 2}, + [1091] = {.lex_state = 45, .external_lex_state = 2}, + [1092] = {.lex_state = 45, .external_lex_state = 2}, + [1093] = {.lex_state = 45, .external_lex_state = 2}, + [1094] = {.lex_state = 45, .external_lex_state = 2}, + [1095] = {.lex_state = 45, .external_lex_state = 2}, + [1096] = {.lex_state = 45, .external_lex_state = 2}, + [1097] = {.lex_state = 45, .external_lex_state = 2}, + [1098] = {.lex_state = 45, .external_lex_state = 2}, + [1099] = {.lex_state = 45, .external_lex_state = 2}, + [1100] = {.lex_state = 1694, .external_lex_state = 2}, + [1101] = {.lex_state = 45, .external_lex_state = 2}, + [1102] = {.lex_state = 45, .external_lex_state = 2}, + [1103] = {.lex_state = 45, .external_lex_state = 2}, + [1104] = {.lex_state = 45, .external_lex_state = 2}, + [1105] = {.lex_state = 45, .external_lex_state = 2}, + [1106] = {.lex_state = 1694, .external_lex_state = 2}, + [1107] = {.lex_state = 44, .external_lex_state = 2}, + [1108] = {.lex_state = 45, .external_lex_state = 2}, + [1109] = {.lex_state = 45, .external_lex_state = 2}, + [1110] = {.lex_state = 45, .external_lex_state = 2}, + [1111] = {.lex_state = 45, .external_lex_state = 2}, + [1112] = {.lex_state = 45, .external_lex_state = 2}, + [1113] = {.lex_state = 45, .external_lex_state = 2}, + [1114] = {.lex_state = 45, .external_lex_state = 2}, + [1115] = {.lex_state = 45, .external_lex_state = 2}, + [1116] = {.lex_state = 45, .external_lex_state = 2}, + [1117] = {.lex_state = 45, .external_lex_state = 2}, + [1118] = {.lex_state = 45, .external_lex_state = 2}, + [1119] = {.lex_state = 45, .external_lex_state = 2}, + [1120] = {.lex_state = 45, .external_lex_state = 2}, + [1121] = {.lex_state = 45, .external_lex_state = 2}, + [1122] = {.lex_state = 45, .external_lex_state = 2}, + [1123] = {.lex_state = 45, .external_lex_state = 2}, + [1124] = {.lex_state = 45, .external_lex_state = 2}, + [1125] = {.lex_state = 45, .external_lex_state = 2}, + [1126] = {.lex_state = 45, .external_lex_state = 2}, + [1127] = {.lex_state = 45, .external_lex_state = 2}, + [1128] = {.lex_state = 45, .external_lex_state = 2}, + [1129] = {.lex_state = 45, .external_lex_state = 2}, + [1130] = {.lex_state = 45, .external_lex_state = 2}, + [1131] = {.lex_state = 45, .external_lex_state = 2}, + [1132] = {.lex_state = 45, .external_lex_state = 2}, + [1133] = {.lex_state = 45, .external_lex_state = 2}, + [1134] = {.lex_state = 1694, .external_lex_state = 2}, + [1135] = {.lex_state = 1694, .external_lex_state = 2}, + [1136] = {.lex_state = 1694, .external_lex_state = 2}, + [1137] = {.lex_state = 45, .external_lex_state = 2}, + [1138] = {.lex_state = 45, .external_lex_state = 2}, + [1139] = {.lex_state = 45, .external_lex_state = 2}, + [1140] = {.lex_state = 38, .external_lex_state = 2}, + [1141] = {.lex_state = 45, .external_lex_state = 2}, + [1142] = {.lex_state = 45, .external_lex_state = 2}, + [1143] = {.lex_state = 45, .external_lex_state = 2}, + [1144] = {.lex_state = 38, .external_lex_state = 2}, + [1145] = {.lex_state = 1694, .external_lex_state = 2}, + [1146] = {.lex_state = 1694, .external_lex_state = 2}, + [1147] = {.lex_state = 40, .external_lex_state = 2}, + [1148] = {.lex_state = 38, .external_lex_state = 2}, + [1149] = {.lex_state = 220, .external_lex_state = 2}, + [1150] = {.lex_state = 38, .external_lex_state = 2}, + [1151] = {.lex_state = 38, .external_lex_state = 2}, + [1152] = {.lex_state = 220, .external_lex_state = 2}, + [1153] = {.lex_state = 3121}, + [1154] = {.lex_state = 47, .external_lex_state = 2}, + [1155] = {.lex_state = 3260}, + [1156] = {.lex_state = 40, .external_lex_state = 2}, + [1157] = {.lex_state = 3112}, + [1158] = {.lex_state = 3128}, + [1159] = {.lex_state = 3110}, + [1160] = {.lex_state = 47, .external_lex_state = 2}, + [1161] = {.lex_state = 33, .external_lex_state = 2}, + [1162] = {.lex_state = 47, .external_lex_state = 2}, + [1163] = {.lex_state = 38, .external_lex_state = 2}, + [1164] = {.lex_state = 33, .external_lex_state = 2}, + [1165] = {.lex_state = 33, .external_lex_state = 2}, + [1166] = {.lex_state = 47, .external_lex_state = 2}, + [1167] = {.lex_state = 33, .external_lex_state = 2}, + [1168] = {.lex_state = 3262}, + [1169] = {.lex_state = 3130}, + [1170] = {.lex_state = 3264}, + [1171] = {.lex_state = 3114}, + [1172] = {.lex_state = 3130}, + [1173] = {.lex_state = 3114}, + [1174] = {.lex_state = 3262}, + [1175] = {.lex_state = 3260}, + [1176] = {.lex_state = 33, .external_lex_state = 2}, + [1177] = {.lex_state = 33, .external_lex_state = 2}, + [1178] = {.lex_state = 3264}, + [1179] = {.lex_state = 33, .external_lex_state = 2}, + [1180] = {.lex_state = 33, .external_lex_state = 2}, + [1181] = {.lex_state = 47, .external_lex_state = 2}, + [1182] = {.lex_state = 3132}, + [1183] = {.lex_state = 3116}, + [1184] = {.lex_state = 47, .external_lex_state = 2}, + [1185] = {.lex_state = 3116}, + [1186] = {.lex_state = 3116}, + [1187] = {.lex_state = 3116}, + [1188] = {.lex_state = 3132}, + [1189] = {.lex_state = 3132}, + [1190] = {.lex_state = 3132}, + [1191] = {.lex_state = 3132}, + [1192] = {.lex_state = 3134}, + [1193] = {.lex_state = 3123}, + [1194] = {.lex_state = 3116}, + [1195] = {.lex_state = 3264}, + [1196] = {.lex_state = 3266}, + [1197] = {.lex_state = 47, .external_lex_state = 2}, + [1198] = {.lex_state = 47, .external_lex_state = 2}, + [1199] = {.lex_state = 47, .external_lex_state = 2}, + [1200] = {.lex_state = 47, .external_lex_state = 2}, + [1201] = {.lex_state = 47, .external_lex_state = 2}, + [1202] = {.lex_state = 47, .external_lex_state = 2}, + [1203] = {.lex_state = 47, .external_lex_state = 2}, + [1204] = {.lex_state = 3266}, + [1205] = {.lex_state = 3266}, + [1206] = {.lex_state = 3266}, + [1207] = {.lex_state = 3266}, + [1208] = {.lex_state = 3264}, + [1209] = {.lex_state = 3266}, + [1210] = {.lex_state = 3266}, + [1211] = {.lex_state = 3266}, + [1212] = {.lex_state = 3266}, + [1213] = {.lex_state = 3266}, + [1214] = {.lex_state = 33, .external_lex_state = 2}, + [1215] = {.lex_state = 33, .external_lex_state = 2}, + [1216] = {.lex_state = 33, .external_lex_state = 2}, + [1217] = {.lex_state = 34, .external_lex_state = 2}, + [1218] = {.lex_state = 34, .external_lex_state = 2}, + [1219] = {.lex_state = 3136}, + [1220] = {.lex_state = 33, .external_lex_state = 2}, + [1221] = {.lex_state = 3136}, + [1222] = {.lex_state = 221, .external_lex_state = 2}, + [1223] = {.lex_state = 33, .external_lex_state = 2}, + [1224] = {.lex_state = 33, .external_lex_state = 2}, + [1225] = {.lex_state = 33, .external_lex_state = 2}, + [1226] = {.lex_state = 33, .external_lex_state = 2}, + [1227] = {.lex_state = 33, .external_lex_state = 2}, + [1228] = {.lex_state = 221, .external_lex_state = 2}, + [1229] = {.lex_state = 1677, .external_lex_state = 2}, + [1230] = {.lex_state = 3138}, + [1231] = {.lex_state = 3138}, + [1232] = {.lex_state = 3138}, + [1233] = {.lex_state = 3138}, + [1234] = {.lex_state = 3138}, [1235] = {.lex_state = 44, .external_lex_state = 2}, [1236] = {.lex_state = 44, .external_lex_state = 2}, - [1237] = {.lex_state = 44, .external_lex_state = 2}, - [1238] = {.lex_state = 3342}, - [1239] = {.lex_state = 3212}, - [1240] = {.lex_state = 3342}, - [1241] = {.lex_state = 3342}, - [1242] = {.lex_state = 44, .external_lex_state = 2}, - [1243] = {.lex_state = 262, .external_lex_state = 2}, + [1237] = {.lex_state = 1676, .external_lex_state = 2}, + [1238] = {.lex_state = 1687, .external_lex_state = 2}, + [1239] = {.lex_state = 1677, .external_lex_state = 2}, + [1240] = {.lex_state = 1676, .external_lex_state = 2}, + [1241] = {.lex_state = 1665}, + [1242] = {.lex_state = 1678, .external_lex_state = 2}, + [1243] = {.lex_state = 1691, .external_lex_state = 2}, [1244] = {.lex_state = 44, .external_lex_state = 2}, - [1245] = {.lex_state = 44, .external_lex_state = 2}, - [1246] = {.lex_state = 44, .external_lex_state = 2}, - [1247] = {.lex_state = 45, .external_lex_state = 2}, - [1248] = {.lex_state = 3212}, - [1249] = {.lex_state = 3214}, - [1250] = {.lex_state = 53, .external_lex_state = 2}, - [1251] = {.lex_state = 3214}, - [1252] = {.lex_state = 1752, .external_lex_state = 2}, - [1253] = {.lex_state = 3214}, - [1254] = {.lex_state = 3214}, - [1255] = {.lex_state = 53, .external_lex_state = 2}, - [1256] = {.lex_state = 3214}, - [1257] = {.lex_state = 1762, .external_lex_state = 2}, - [1258] = {.lex_state = 1753, .external_lex_state = 2}, - [1259] = {.lex_state = 1752, .external_lex_state = 2}, - [1260] = {.lex_state = 1751, .external_lex_state = 2}, - [1261] = {.lex_state = 1751, .external_lex_state = 2}, - [1262] = {.lex_state = 1766, .external_lex_state = 2}, - [1263] = {.lex_state = 53, .external_lex_state = 2}, - [1264] = {.lex_state = 45, .external_lex_state = 2}, - [1265] = {.lex_state = 1794, .external_lex_state = 2}, - [1266] = {.lex_state = 1790, .external_lex_state = 2}, - [1267] = {.lex_state = 1756, .external_lex_state = 2}, - [1268] = {.lex_state = 10}, - [1269] = {.lex_state = 53, .external_lex_state = 2}, - [1270] = {.lex_state = 1765, .external_lex_state = 2}, - [1271] = {.lex_state = 53, .external_lex_state = 2}, - [1272] = {.lex_state = 1765, .external_lex_state = 2}, - [1273] = {.lex_state = 1765, .external_lex_state = 2}, - [1274] = {.lex_state = 1765, .external_lex_state = 2}, - [1275] = {.lex_state = 53, .external_lex_state = 2}, - [1276] = {.lex_state = 53, .external_lex_state = 2}, - [1277] = {.lex_state = 1762, .external_lex_state = 2}, - [1278] = {.lex_state = 45, .external_lex_state = 2}, - [1279] = {.lex_state = 1753, .external_lex_state = 2}, - [1280] = {.lex_state = 53, .external_lex_state = 2}, - [1281] = {.lex_state = 1751, .external_lex_state = 2}, - [1282] = {.lex_state = 53, .external_lex_state = 2}, - [1283] = {.lex_state = 53, .external_lex_state = 2}, - [1284] = {.lex_state = 53, .external_lex_state = 2}, - [1285] = {.lex_state = 53, .external_lex_state = 2}, - [1286] = {.lex_state = 53, .external_lex_state = 2}, - [1287] = {.lex_state = 53, .external_lex_state = 2}, - [1288] = {.lex_state = 1738}, - [1289] = {.lex_state = 1766, .external_lex_state = 2}, - [1290] = {.lex_state = 53, .external_lex_state = 2}, - [1291] = {.lex_state = 53, .external_lex_state = 2}, - [1292] = {.lex_state = 53, .external_lex_state = 2}, - [1293] = {.lex_state = 53, .external_lex_state = 2}, - [1294] = {.lex_state = 53, .external_lex_state = 2}, - [1295] = {.lex_state = 53, .external_lex_state = 2}, - [1296] = {.lex_state = 53, .external_lex_state = 2}, - [1297] = {.lex_state = 53, .external_lex_state = 2}, - [1298] = {.lex_state = 53, .external_lex_state = 2}, - [1299] = {.lex_state = 53, .external_lex_state = 2}, - [1300] = {.lex_state = 53, .external_lex_state = 2}, - [1301] = {.lex_state = 53, .external_lex_state = 2}, - [1302] = {.lex_state = 53, .external_lex_state = 2}, - [1303] = {.lex_state = 53, .external_lex_state = 2}, - [1304] = {.lex_state = 53, .external_lex_state = 2}, - [1305] = {.lex_state = 53, .external_lex_state = 2}, - [1306] = {.lex_state = 53, .external_lex_state = 2}, - [1307] = {.lex_state = 53, .external_lex_state = 2}, - [1308] = {.lex_state = 53, .external_lex_state = 2}, - [1309] = {.lex_state = 53, .external_lex_state = 2}, - [1310] = {.lex_state = 53, .external_lex_state = 2}, - [1311] = {.lex_state = 53, .external_lex_state = 2}, - [1312] = {.lex_state = 53, .external_lex_state = 2}, - [1313] = {.lex_state = 53, .external_lex_state = 2}, - [1314] = {.lex_state = 1755, .external_lex_state = 2}, - [1315] = {.lex_state = 53, .external_lex_state = 2}, - [1316] = {.lex_state = 53, .external_lex_state = 2}, - [1317] = {.lex_state = 53, .external_lex_state = 2}, - [1318] = {.lex_state = 53, .external_lex_state = 2}, - [1319] = {.lex_state = 53, .external_lex_state = 2}, - [1320] = {.lex_state = 53, .external_lex_state = 2}, - [1321] = {.lex_state = 53, .external_lex_state = 2}, - [1322] = {.lex_state = 53, .external_lex_state = 2}, - [1323] = {.lex_state = 53, .external_lex_state = 2}, - [1324] = {.lex_state = 53, .external_lex_state = 2}, - [1325] = {.lex_state = 53, .external_lex_state = 2}, - [1326] = {.lex_state = 53, .external_lex_state = 2}, - [1327] = {.lex_state = 53, .external_lex_state = 2}, - [1328] = {.lex_state = 1751, .external_lex_state = 2}, - [1329] = {.lex_state = 53, .external_lex_state = 2}, - [1330] = {.lex_state = 53, .external_lex_state = 2}, - [1331] = {.lex_state = 53, .external_lex_state = 2}, - [1332] = {.lex_state = 53, .external_lex_state = 2}, - [1333] = {.lex_state = 53, .external_lex_state = 2}, - [1334] = {.lex_state = 53, .external_lex_state = 2}, - [1335] = {.lex_state = 1755, .external_lex_state = 2}, - [1336] = {.lex_state = 53, .external_lex_state = 2}, - [1337] = {.lex_state = 53, .external_lex_state = 2}, - [1338] = {.lex_state = 53, .external_lex_state = 2}, - [1339] = {.lex_state = 1785, .external_lex_state = 2}, - [1340] = {.lex_state = 1790, .external_lex_state = 2}, - [1341] = {.lex_state = 1791, .external_lex_state = 2}, - [1342] = {.lex_state = 1763, .external_lex_state = 2}, - [1343] = {.lex_state = 45, .external_lex_state = 2}, - [1344] = {.lex_state = 1791, .external_lex_state = 2}, - [1345] = {.lex_state = 1755, .external_lex_state = 2}, - [1346] = {.lex_state = 1738}, - [1347] = {.lex_state = 1755, .external_lex_state = 2}, - [1348] = {.lex_state = 1785, .external_lex_state = 2}, - [1349] = {.lex_state = 1738}, - [1350] = {.lex_state = 1756, .external_lex_state = 2}, - [1351] = {.lex_state = 3198}, - [1352] = {.lex_state = 3198}, - [1353] = {.lex_state = 1765, .external_lex_state = 2}, - [1354] = {.lex_state = 10}, - [1355] = {.lex_state = 10}, - [1356] = {.lex_state = 3216}, - [1357] = {.lex_state = 3216}, - [1358] = {.lex_state = 3344}, - [1359] = {.lex_state = 3344}, - [1360] = {.lex_state = 1765, .external_lex_state = 2}, - [1361] = {.lex_state = 1756, .external_lex_state = 2}, - [1362] = {.lex_state = 1756, .external_lex_state = 2}, - [1363] = {.lex_state = 1785, .external_lex_state = 2}, - [1364] = {.lex_state = 1756, .external_lex_state = 2}, - [1365] = {.lex_state = 1756, .external_lex_state = 2}, - [1366] = {.lex_state = 1754, .external_lex_state = 2}, - [1367] = {.lex_state = 1738}, - [1368] = {.lex_state = 1765, .external_lex_state = 2}, - [1369] = {.lex_state = 1794, .external_lex_state = 2}, - [1370] = {.lex_state = 1765, .external_lex_state = 2}, - [1371] = {.lex_state = 10}, - [1372] = {.lex_state = 1703}, - [1373] = {.lex_state = 1738}, - [1374] = {.lex_state = 1785, .external_lex_state = 2}, - [1375] = {.lex_state = 1756, .external_lex_state = 2}, - [1376] = {.lex_state = 1738}, - [1377] = {.lex_state = 1754, .external_lex_state = 2}, - [1378] = {.lex_state = 1792, .external_lex_state = 2}, - [1379] = {.lex_state = 1738}, - [1380] = {.lex_state = 1792, .external_lex_state = 2}, - [1381] = {.lex_state = 10}, - [1382] = {.lex_state = 10}, - [1383] = {.lex_state = 1792, .external_lex_state = 2}, - [1384] = {.lex_state = 53, .external_lex_state = 2}, - [1385] = {.lex_state = 1756, .external_lex_state = 2}, - [1386] = {.lex_state = 10}, - [1387] = {.lex_state = 1792, .external_lex_state = 2}, - [1388] = {.lex_state = 1785, .external_lex_state = 2}, - [1389] = {.lex_state = 10}, - [1390] = {.lex_state = 1792, .external_lex_state = 2}, - [1391] = {.lex_state = 1791, .external_lex_state = 2}, - [1392] = {.lex_state = 1763, .external_lex_state = 2}, - [1393] = {.lex_state = 1738}, - [1394] = {.lex_state = 1756, .external_lex_state = 2}, - [1395] = {.lex_state = 1738}, - [1396] = {.lex_state = 1738}, - [1397] = {.lex_state = 3344}, - [1398] = {.lex_state = 1757, .external_lex_state = 2}, - [1399] = {.lex_state = 1785, .external_lex_state = 2}, - [1400] = {.lex_state = 1703}, - [1401] = {.lex_state = 1785, .external_lex_state = 2}, - [1402] = {.lex_state = 1757, .external_lex_state = 2}, - [1403] = {.lex_state = 1738}, - [1404] = {.lex_state = 1703}, - [1405] = {.lex_state = 1738}, - [1406] = {.lex_state = 3344}, - [1407] = {.lex_state = 1756, .external_lex_state = 2}, - [1408] = {.lex_state = 1791, .external_lex_state = 2}, - [1409] = {.lex_state = 1785, .external_lex_state = 2}, - [1410] = {.lex_state = 10}, - [1411] = {.lex_state = 1703}, - [1412] = {.lex_state = 1783, .external_lex_state = 2}, - [1413] = {.lex_state = 1738}, - [1414] = {.lex_state = 1705}, - [1415] = {.lex_state = 1792, .external_lex_state = 2}, - [1416] = {.lex_state = 1738}, - [1417] = {.lex_state = 1738}, - [1418] = {.lex_state = 1738}, - [1419] = {.lex_state = 1783, .external_lex_state = 2}, - [1420] = {.lex_state = 1783, .external_lex_state = 2}, - [1421] = {.lex_state = 1738}, - [1422] = {.lex_state = 1782, .external_lex_state = 2}, - [1423] = {.lex_state = 1738}, - [1424] = {.lex_state = 1738}, - [1425] = {.lex_state = 10}, - [1426] = {.lex_state = 1783, .external_lex_state = 2}, - [1427] = {.lex_state = 10}, - [1428] = {.lex_state = 10}, - [1429] = {.lex_state = 1738}, - [1430] = {.lex_state = 1738}, - [1431] = {.lex_state = 1792, .external_lex_state = 2}, - [1432] = {.lex_state = 1705}, - [1433] = {.lex_state = 1757, .external_lex_state = 2}, - [1434] = {.lex_state = 1785, .external_lex_state = 2}, - [1435] = {.lex_state = 1785, .external_lex_state = 2}, - [1436] = {.lex_state = 1792, .external_lex_state = 2}, - [1437] = {.lex_state = 1757, .external_lex_state = 2}, - [1438] = {.lex_state = 1703}, - [1439] = {.lex_state = 1784, .external_lex_state = 2}, - [1440] = {.lex_state = 1703}, - [1441] = {.lex_state = 1703}, - [1442] = {.lex_state = 1703}, - [1443] = {.lex_state = 3218}, - [1444] = {.lex_state = 3218}, - [1445] = {.lex_state = 1758, .external_lex_state = 2}, - [1446] = {.lex_state = 1703}, - [1447] = {.lex_state = 1758, .external_lex_state = 2}, - [1448] = {.lex_state = 1707}, - [1449] = {.lex_state = 1792, .external_lex_state = 2}, - [1450] = {.lex_state = 1758, .external_lex_state = 2}, - [1451] = {.lex_state = 1758, .external_lex_state = 2}, - [1452] = {.lex_state = 1783, .external_lex_state = 2}, - [1453] = {.lex_state = 1783, .external_lex_state = 2}, - [1454] = {.lex_state = 1711}, - [1455] = {.lex_state = 1758, .external_lex_state = 2}, - [1456] = {.lex_state = 1758, .external_lex_state = 2}, - [1457] = {.lex_state = 1792, .external_lex_state = 2}, - [1458] = {.lex_state = 1703}, - [1459] = {.lex_state = 1785, .external_lex_state = 2}, - [1460] = {.lex_state = 1758, .external_lex_state = 2}, - [1461] = {.lex_state = 1788, .external_lex_state = 2}, - [1462] = {.lex_state = 1764, .external_lex_state = 2}, - [1463] = {.lex_state = 1780, .external_lex_state = 2}, - [1464] = {.lex_state = 1782, .external_lex_state = 2}, - [1465] = {.lex_state = 1783, .external_lex_state = 2}, - [1466] = {.lex_state = 1783, .external_lex_state = 2}, - [1467] = {.lex_state = 1788, .external_lex_state = 2}, - [1468] = {.lex_state = 1758, .external_lex_state = 2}, - [1469] = {.lex_state = 1788, .external_lex_state = 2}, - [1470] = {.lex_state = 1788, .external_lex_state = 2}, - [1471] = {.lex_state = 1758, .external_lex_state = 2}, - [1472] = {.lex_state = 1758, .external_lex_state = 2}, - [1473] = {.lex_state = 1788, .external_lex_state = 2}, - [1474] = {.lex_state = 1788, .external_lex_state = 2}, - [1475] = {.lex_state = 10}, - [1476] = {.lex_state = 1788, .external_lex_state = 2}, - [1477] = {.lex_state = 1788, .external_lex_state = 2}, - [1478] = {.lex_state = 1738}, - [1479] = {.lex_state = 1788, .external_lex_state = 2}, - [1480] = {.lex_state = 1788, .external_lex_state = 2}, - [1481] = {.lex_state = 10}, - [1482] = {.lex_state = 1738}, - [1483] = {.lex_state = 1783, .external_lex_state = 2}, - [1484] = {.lex_state = 1784, .external_lex_state = 2}, - [1485] = {.lex_state = 1780, .external_lex_state = 2}, - [1486] = {.lex_state = 1738}, - [1487] = {.lex_state = 1788, .external_lex_state = 2}, - [1488] = {.lex_state = 1758, .external_lex_state = 2}, - [1489] = {.lex_state = 1788, .external_lex_state = 2}, - [1490] = {.lex_state = 1713}, - [1491] = {.lex_state = 1703}, - [1492] = {.lex_state = 1783, .external_lex_state = 2}, - [1493] = {.lex_state = 1783, .external_lex_state = 2}, - [1494] = {.lex_state = 1713}, - [1495] = {.lex_state = 1738}, - [1496] = {.lex_state = 1783, .external_lex_state = 2}, - [1497] = {.lex_state = 1788, .external_lex_state = 2}, - [1498] = {.lex_state = 1788, .external_lex_state = 2}, - [1499] = {.lex_state = 1785, .external_lex_state = 2}, - [1500] = {.lex_state = 1703}, - [1501] = {.lex_state = 1788, .external_lex_state = 2}, - [1502] = {.lex_state = 1788, .external_lex_state = 2}, - [1503] = {.lex_state = 1788, .external_lex_state = 2}, - [1504] = {.lex_state = 1758, .external_lex_state = 2}, - [1505] = {.lex_state = 1705}, - [1506] = {.lex_state = 1788, .external_lex_state = 2}, - [1507] = {.lex_state = 1785, .external_lex_state = 2}, - [1508] = {.lex_state = 1738}, - [1509] = {.lex_state = 1788, .external_lex_state = 2}, - [1510] = {.lex_state = 1705}, - [1511] = {.lex_state = 1759, .external_lex_state = 2}, - [1512] = {.lex_state = 1788, .external_lex_state = 2}, - [1513] = {.lex_state = 1788, .external_lex_state = 2}, - [1514] = {.lex_state = 1788, .external_lex_state = 2}, - [1515] = {.lex_state = 1788, .external_lex_state = 2}, - [1516] = {.lex_state = 1703}, - [1517] = {.lex_state = 1715}, - [1518] = {.lex_state = 1788, .external_lex_state = 2}, - [1519] = {.lex_state = 1703}, - [1520] = {.lex_state = 1703}, - [1521] = {.lex_state = 1788, .external_lex_state = 2}, - [1522] = {.lex_state = 1703}, - [1523] = {.lex_state = 1703}, - [1524] = {.lex_state = 1738}, - [1525] = {.lex_state = 1788, .external_lex_state = 2}, - [1526] = {.lex_state = 1788, .external_lex_state = 2}, - [1527] = {.lex_state = 1709}, - [1528] = {.lex_state = 1781, .external_lex_state = 2}, - [1529] = {.lex_state = 1788, .external_lex_state = 2}, - [1530] = {.lex_state = 1781, .external_lex_state = 2}, - [1531] = {.lex_state = 1788, .external_lex_state = 2}, - [1532] = {.lex_state = 1780, .external_lex_state = 2}, - [1533] = {.lex_state = 1785, .external_lex_state = 2}, - [1534] = {.lex_state = 1781, .external_lex_state = 2}, - [1535] = {.lex_state = 1781, .external_lex_state = 2}, - [1536] = {.lex_state = 1788, .external_lex_state = 2}, - [1537] = {.lex_state = 1788, .external_lex_state = 2}, - [1538] = {.lex_state = 1738}, - [1539] = {.lex_state = 1788, .external_lex_state = 2}, - [1540] = {.lex_state = 1781, .external_lex_state = 2}, - [1541] = {.lex_state = 1780, .external_lex_state = 2}, - [1542] = {.lex_state = 1785, .external_lex_state = 2}, - [1543] = {.lex_state = 1788, .external_lex_state = 2}, - [1544] = {.lex_state = 1788, .external_lex_state = 2}, - [1545] = {.lex_state = 1707}, - [1546] = {.lex_state = 1785, .external_lex_state = 2}, - [1547] = {.lex_state = 1788, .external_lex_state = 2}, - [1548] = {.lex_state = 1781, .external_lex_state = 2}, - [1549] = {.lex_state = 1788, .external_lex_state = 2}, - [1550] = {.lex_state = 1717}, - [1551] = {.lex_state = 1788, .external_lex_state = 2}, - [1552] = {.lex_state = 1711}, - [1553] = {.lex_state = 1788, .external_lex_state = 2}, - [1554] = {.lex_state = 1788, .external_lex_state = 2}, - [1555] = {.lex_state = 1759, .external_lex_state = 2}, - [1556] = {.lex_state = 7}, - [1557] = {.lex_state = 1781, .external_lex_state = 2}, - [1558] = {.lex_state = 1781, .external_lex_state = 2}, - [1559] = {.lex_state = 1781, .external_lex_state = 2}, - [1560] = {.lex_state = 1715}, - [1561] = {.lex_state = 1788, .external_lex_state = 2}, - [1562] = {.lex_state = 1788, .external_lex_state = 2}, - [1563] = {.lex_state = 1788, .external_lex_state = 2}, - [1564] = {.lex_state = 1788, .external_lex_state = 2}, - [1565] = {.lex_state = 1781, .external_lex_state = 2}, - [1566] = {.lex_state = 1788, .external_lex_state = 2}, - [1567] = {.lex_state = 1788, .external_lex_state = 2}, - [1568] = {.lex_state = 1781, .external_lex_state = 2}, - [1569] = {.lex_state = 1715}, - [1570] = {.lex_state = 1781, .external_lex_state = 2}, - [1571] = {.lex_state = 7}, - [1572] = {.lex_state = 1781, .external_lex_state = 2}, - [1573] = {.lex_state = 1764, .external_lex_state = 2}, - [1574] = {.lex_state = 1703}, - [1575] = {.lex_state = 1788, .external_lex_state = 2}, - [1576] = {.lex_state = 1781, .external_lex_state = 2}, - [1577] = {.lex_state = 1788, .external_lex_state = 2}, - [1578] = {.lex_state = 1715}, - [1579] = {.lex_state = 1707}, - [1580] = {.lex_state = 1738}, - [1581] = {.lex_state = 1707}, - [1582] = {.lex_state = 1715}, - [1583] = {.lex_state = 1736}, - [1584] = {.lex_state = 7}, - [1585] = {.lex_state = 1736}, - [1586] = {.lex_state = 1707}, - [1587] = {.lex_state = 1738}, - [1588] = {.lex_state = 1760, .external_lex_state = 2}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 1760, .external_lex_state = 2}, - [1591] = {.lex_state = 1788, .external_lex_state = 2}, - [1592] = {.lex_state = 1781, .external_lex_state = 2}, - [1593] = {.lex_state = 1739}, - [1594] = {.lex_state = 1781, .external_lex_state = 2}, - [1595] = {.lex_state = 1750, .external_lex_state = 2}, - [1596] = {.lex_state = 1713}, - [1597] = {.lex_state = 1739}, - [1598] = {.lex_state = 1800, .external_lex_state = 2}, - [1599] = {.lex_state = 1739}, - [1600] = {.lex_state = 7}, - [1601] = {.lex_state = 1750, .external_lex_state = 2}, - [1602] = {.lex_state = 1761, .external_lex_state = 2}, - [1603] = {.lex_state = 1781, .external_lex_state = 2}, - [1604] = {.lex_state = 1800, .external_lex_state = 2}, - [1605] = {.lex_state = 1781, .external_lex_state = 2}, - [1606] = {.lex_state = 1761, .external_lex_state = 2}, - [1607] = {.lex_state = 1800, .external_lex_state = 2}, - [1608] = {.lex_state = 1761, .external_lex_state = 2}, - [1609] = {.lex_state = 1781, .external_lex_state = 2}, - [1610] = {.lex_state = 1781, .external_lex_state = 2}, - [1611] = {.lex_state = 1739}, - [1612] = {.lex_state = 1786, .external_lex_state = 2}, - [1613] = {.lex_state = 1786, .external_lex_state = 2}, - [1614] = {.lex_state = 1739}, - [1615] = {.lex_state = 1781, .external_lex_state = 2}, - [1616] = {.lex_state = 1761, .external_lex_state = 2}, - [1617] = {.lex_state = 1750, .external_lex_state = 2}, - [1618] = {.lex_state = 1773, .external_lex_state = 2}, - [1619] = {.lex_state = 1739}, - [1620] = {.lex_state = 1739}, - [1621] = {.lex_state = 1788, .external_lex_state = 2}, - [1622] = {.lex_state = 1787, .external_lex_state = 2}, - [1623] = {.lex_state = 1760, .external_lex_state = 2}, - [1624] = {.lex_state = 1788, .external_lex_state = 2}, - [1625] = {.lex_state = 1750, .external_lex_state = 2}, - [1626] = {.lex_state = 1761, .external_lex_state = 2}, - [1627] = {.lex_state = 1739}, - [1628] = {.lex_state = 1739}, - [1629] = {.lex_state = 1789, .external_lex_state = 2}, - [1630] = {.lex_state = 1739}, - [1631] = {.lex_state = 1738}, - [1632] = {.lex_state = 1739}, - [1633] = {.lex_state = 1739}, - [1634] = {.lex_state = 1800, .external_lex_state = 2}, - [1635] = {.lex_state = 1719}, - [1636] = {.lex_state = 1739}, - [1637] = {.lex_state = 1719}, - [1638] = {.lex_state = 1781, .external_lex_state = 2}, - [1639] = {.lex_state = 1781, .external_lex_state = 2}, - [1640] = {.lex_state = 1800, .external_lex_state = 2}, - [1641] = {.lex_state = 1713}, - [1642] = {.lex_state = 1738}, - [1643] = {.lex_state = 1736}, - [1644] = {.lex_state = 1707}, - [1645] = {.lex_state = 1715}, - [1646] = {.lex_state = 1739}, - [1647] = {.lex_state = 1736}, - [1648] = {.lex_state = 1739}, - [1649] = {.lex_state = 7}, - [1650] = {.lex_state = 1781, .external_lex_state = 2}, - [1651] = {.lex_state = 1750, .external_lex_state = 2}, - [1652] = {.lex_state = 1739}, - [1653] = {.lex_state = 1781, .external_lex_state = 2}, - [1654] = {.lex_state = 1781, .external_lex_state = 2}, - [1655] = {.lex_state = 1786, .external_lex_state = 2}, - [1656] = {.lex_state = 1761, .external_lex_state = 2}, - [1657] = {.lex_state = 1760, .external_lex_state = 2}, - [1658] = {.lex_state = 1786, .external_lex_state = 2}, - [1659] = {.lex_state = 1786, .external_lex_state = 2}, - [1660] = {.lex_state = 1739}, - [1661] = {.lex_state = 1761, .external_lex_state = 2}, - [1662] = {.lex_state = 1786, .external_lex_state = 2}, - [1663] = {.lex_state = 1739}, - [1664] = {.lex_state = 1761, .external_lex_state = 2}, - [1665] = {.lex_state = 1761, .external_lex_state = 2}, - [1666] = {.lex_state = 1781, .external_lex_state = 2}, - [1667] = {.lex_state = 1739}, - [1668] = {.lex_state = 1781, .external_lex_state = 2}, - [1669] = {.lex_state = 1707}, - [1670] = {.lex_state = 1781, .external_lex_state = 2}, - [1671] = {.lex_state = 1781, .external_lex_state = 2}, - [1672] = {.lex_state = 1781, .external_lex_state = 2}, - [1673] = {.lex_state = 1736}, - [1674] = {.lex_state = 1781, .external_lex_state = 2}, - [1675] = {.lex_state = 1779, .external_lex_state = 2}, - [1676] = {.lex_state = 1788, .external_lex_state = 2}, - [1677] = {.lex_state = 1750, .external_lex_state = 2}, - [1678] = {.lex_state = 1786, .external_lex_state = 2}, - [1679] = {.lex_state = 1786, .external_lex_state = 2}, - [1680] = {.lex_state = 1786, .external_lex_state = 2}, - [1681] = {.lex_state = 1717}, - [1682] = {.lex_state = 1786, .external_lex_state = 2}, - [1683] = {.lex_state = 1761, .external_lex_state = 2}, - [1684] = {.lex_state = 1779, .external_lex_state = 2}, - [1685] = {.lex_state = 1788, .external_lex_state = 2}, - [1686] = {.lex_state = 1788, .external_lex_state = 2}, - [1687] = {.lex_state = 1761, .external_lex_state = 2}, - [1688] = {.lex_state = 1773, .external_lex_state = 2}, - [1689] = {.lex_state = 1789, .external_lex_state = 2}, - [1690] = {.lex_state = 1721}, - [1691] = {.lex_state = 1750, .external_lex_state = 2}, - [1692] = {.lex_state = 1793, .external_lex_state = 2}, - [1693] = {.lex_state = 1787, .external_lex_state = 2}, - [1694] = {.lex_state = 1736}, - [1695] = {.lex_state = 1721}, - [1696] = {.lex_state = 1739}, - [1697] = {.lex_state = 1801, .external_lex_state = 2}, - [1698] = {.lex_state = 1800, .external_lex_state = 2}, - [1699] = {.lex_state = 1721}, - [1700] = {.lex_state = 1800, .external_lex_state = 2}, - [1701] = {.lex_state = 1721}, - [1702] = {.lex_state = 1801, .external_lex_state = 2}, - [1703] = {.lex_state = 1801, .external_lex_state = 2}, - [1704] = {.lex_state = 1801, .external_lex_state = 2}, - [1705] = {.lex_state = 1774, .external_lex_state = 2}, - [1706] = {.lex_state = 1801, .external_lex_state = 2}, - [1707] = {.lex_state = 1750, .external_lex_state = 2}, - [1708] = {.lex_state = 1750, .external_lex_state = 2}, - [1709] = {.lex_state = 1800, .external_lex_state = 2}, - [1710] = {.lex_state = 1715}, - [1711] = {.lex_state = 1800, .external_lex_state = 2}, - [1712] = {.lex_state = 1739}, - [1713] = {.lex_state = 1761, .external_lex_state = 2}, - [1714] = {.lex_state = 1715}, - [1715] = {.lex_state = 1739}, - [1716] = {.lex_state = 1761, .external_lex_state = 2}, - [1717] = {.lex_state = 1715}, - [1718] = {.lex_state = 1750, .external_lex_state = 2}, - [1719] = {.lex_state = 1776, .external_lex_state = 2}, - [1720] = {.lex_state = 1761, .external_lex_state = 2}, - [1721] = {.lex_state = 1776, .external_lex_state = 2}, - [1722] = {.lex_state = 1715}, - [1723] = {.lex_state = 1761, .external_lex_state = 2}, - [1724] = {.lex_state = 1736}, - [1725] = {.lex_state = 1736}, - [1726] = {.lex_state = 1736}, - [1727] = {.lex_state = 1750, .external_lex_state = 2}, - [1728] = {.lex_state = 1707}, - [1729] = {.lex_state = 1736}, - [1730] = {.lex_state = 1750, .external_lex_state = 2}, - [1731] = {.lex_state = 1774, .external_lex_state = 2}, - [1732] = {.lex_state = 1750, .external_lex_state = 2}, - [1733] = {.lex_state = 1739}, - [1734] = {.lex_state = 1777, .external_lex_state = 2}, - [1735] = {.lex_state = 1750, .external_lex_state = 2}, - [1736] = {.lex_state = 1739}, - [1737] = {.lex_state = 1739}, - [1738] = {.lex_state = 1736}, - [1739] = {.lex_state = 1739}, - [1740] = {.lex_state = 1736}, - [1741] = {.lex_state = 1739}, - [1742] = {.lex_state = 1736}, - [1743] = {.lex_state = 1707}, - [1744] = {.lex_state = 1736}, - [1745] = {.lex_state = 1793, .external_lex_state = 2}, - [1746] = {.lex_state = 1786, .external_lex_state = 2}, - [1747] = {.lex_state = 1786, .external_lex_state = 2}, - [1748] = {.lex_state = 1797, .external_lex_state = 2}, - [1749] = {.lex_state = 1709}, - [1750] = {.lex_state = 7}, - [1751] = {.lex_state = 1797, .external_lex_state = 2}, - [1752] = {.lex_state = 7}, - [1753] = {.lex_state = 1797, .external_lex_state = 2}, - [1754] = {.lex_state = 1800, .external_lex_state = 2}, - [1755] = {.lex_state = 1761, .external_lex_state = 2}, - [1756] = {.lex_state = 1707}, - [1757] = {.lex_state = 1761, .external_lex_state = 2}, - [1758] = {.lex_state = 1761, .external_lex_state = 2}, - [1759] = {.lex_state = 1778, .external_lex_state = 2}, - [1760] = {.lex_state = 1778, .external_lex_state = 2}, - [1761] = {.lex_state = 1778, .external_lex_state = 2}, - [1762] = {.lex_state = 1721}, - [1763] = {.lex_state = 1739}, - [1764] = {.lex_state = 1778, .external_lex_state = 2}, - [1765] = {.lex_state = 1778, .external_lex_state = 2}, - [1766] = {.lex_state = 1778, .external_lex_state = 2}, - [1767] = {.lex_state = 1778, .external_lex_state = 2}, - [1768] = {.lex_state = 257, .external_lex_state = 2}, - [1769] = {.lex_state = 257, .external_lex_state = 2}, - [1770] = {.lex_state = 1797, .external_lex_state = 2}, - [1771] = {.lex_state = 1778, .external_lex_state = 2}, - [1772] = {.lex_state = 1778, .external_lex_state = 2}, - [1773] = {.lex_state = 1774, .external_lex_state = 2}, - [1774] = {.lex_state = 1801, .external_lex_state = 2}, - [1775] = {.lex_state = 1778, .external_lex_state = 2}, - [1776] = {.lex_state = 1778, .external_lex_state = 2}, - [1777] = {.lex_state = 1778, .external_lex_state = 2}, - [1778] = {.lex_state = 1778, .external_lex_state = 2}, - [1779] = {.lex_state = 1778, .external_lex_state = 2}, - [1780] = {.lex_state = 1778, .external_lex_state = 2}, - [1781] = {.lex_state = 1778, .external_lex_state = 2}, - [1782] = {.lex_state = 1778, .external_lex_state = 2}, - [1783] = {.lex_state = 1776, .external_lex_state = 2}, - [1784] = {.lex_state = 1778, .external_lex_state = 2}, - [1785] = {.lex_state = 1778, .external_lex_state = 2}, - [1786] = {.lex_state = 1778, .external_lex_state = 2}, - [1787] = {.lex_state = 1778, .external_lex_state = 2}, - [1788] = {.lex_state = 1778, .external_lex_state = 2}, - [1789] = {.lex_state = 1778, .external_lex_state = 2}, - [1790] = {.lex_state = 1778, .external_lex_state = 2}, - [1791] = {.lex_state = 1778, .external_lex_state = 2}, - [1792] = {.lex_state = 1778, .external_lex_state = 2}, - [1793] = {.lex_state = 1778, .external_lex_state = 2}, - [1794] = {.lex_state = 1778, .external_lex_state = 2}, - [1795] = {.lex_state = 1778, .external_lex_state = 2}, - [1796] = {.lex_state = 1778, .external_lex_state = 2}, - [1797] = {.lex_state = 1778, .external_lex_state = 2}, - [1798] = {.lex_state = 1777, .external_lex_state = 2}, - [1799] = {.lex_state = 1776, .external_lex_state = 2}, - [1800] = {.lex_state = 1736}, - [1801] = {.lex_state = 1778, .external_lex_state = 2}, - [1802] = {.lex_state = 1801, .external_lex_state = 2}, - [1803] = {.lex_state = 1778, .external_lex_state = 2}, - [1804] = {.lex_state = 1778, .external_lex_state = 2}, - [1805] = {.lex_state = 1739}, - [1806] = {.lex_state = 1801, .external_lex_state = 2}, - [1807] = {.lex_state = 1801, .external_lex_state = 2}, - [1808] = {.lex_state = 1778, .external_lex_state = 2}, - [1809] = {.lex_state = 1778, .external_lex_state = 2}, - [1810] = {.lex_state = 1778, .external_lex_state = 2}, - [1811] = {.lex_state = 1778, .external_lex_state = 2}, - [1812] = {.lex_state = 1778, .external_lex_state = 2}, - [1813] = {.lex_state = 1778, .external_lex_state = 2}, - [1814] = {.lex_state = 1778, .external_lex_state = 2}, - [1815] = {.lex_state = 1778, .external_lex_state = 2}, - [1816] = {.lex_state = 1778, .external_lex_state = 2}, - [1817] = {.lex_state = 1778, .external_lex_state = 2}, - [1818] = {.lex_state = 1739}, - [1819] = {.lex_state = 1739}, - [1820] = {.lex_state = 1778, .external_lex_state = 2}, - [1821] = {.lex_state = 1793, .external_lex_state = 2}, - [1822] = {.lex_state = 1778, .external_lex_state = 2}, - [1823] = {.lex_state = 1778, .external_lex_state = 2}, - [1824] = {.lex_state = 1778, .external_lex_state = 2}, - [1825] = {.lex_state = 1778, .external_lex_state = 2}, - [1826] = {.lex_state = 1778, .external_lex_state = 2}, - [1827] = {.lex_state = 1778, .external_lex_state = 2}, - [1828] = {.lex_state = 1778, .external_lex_state = 2}, - [1829] = {.lex_state = 1778, .external_lex_state = 2}, - [1830] = {.lex_state = 1778, .external_lex_state = 2}, - [1831] = {.lex_state = 1721}, - [1832] = {.lex_state = 1778, .external_lex_state = 2}, - [1833] = {.lex_state = 1778, .external_lex_state = 2}, - [1834] = {.lex_state = 1778, .external_lex_state = 2}, - [1835] = {.lex_state = 1778, .external_lex_state = 2}, - [1836] = {.lex_state = 1778, .external_lex_state = 2}, - [1837] = {.lex_state = 1778, .external_lex_state = 2}, - [1838] = {.lex_state = 1778, .external_lex_state = 2}, - [1839] = {.lex_state = 1778, .external_lex_state = 2}, - [1840] = {.lex_state = 1778, .external_lex_state = 2}, - [1841] = {.lex_state = 1778, .external_lex_state = 2}, - [1842] = {.lex_state = 1778, .external_lex_state = 2}, - [1843] = {.lex_state = 1788, .external_lex_state = 2}, - [1844] = {.lex_state = 1797, .external_lex_state = 2}, - [1845] = {.lex_state = 51, .external_lex_state = 2}, - [1846] = {.lex_state = 1778, .external_lex_state = 2}, - [1847] = {.lex_state = 1778, .external_lex_state = 2}, - [1848] = {.lex_state = 51, .external_lex_state = 2}, - [1849] = {.lex_state = 1801, .external_lex_state = 2}, - [1850] = {.lex_state = 1778, .external_lex_state = 2}, - [1851] = {.lex_state = 1788, .external_lex_state = 2}, - [1852] = {.lex_state = 1788, .external_lex_state = 2}, - [1853] = {.lex_state = 1719}, - [1854] = {.lex_state = 1778, .external_lex_state = 2}, - [1855] = {.lex_state = 1793, .external_lex_state = 2}, - [1856] = {.lex_state = 51, .external_lex_state = 2}, - [1857] = {.lex_state = 1778, .external_lex_state = 2}, - [1858] = {.lex_state = 7}, - [1859] = {.lex_state = 7}, - [1860] = {.lex_state = 1739}, - [1861] = {.lex_state = 1778, .external_lex_state = 2}, - [1862] = {.lex_state = 1778, .external_lex_state = 2}, - [1863] = {.lex_state = 1778, .external_lex_state = 2}, - [1864] = {.lex_state = 1778, .external_lex_state = 2}, - [1865] = {.lex_state = 1707}, - [1866] = {.lex_state = 1778, .external_lex_state = 2}, - [1867] = {.lex_state = 1778, .external_lex_state = 2}, - [1868] = {.lex_state = 1739}, - [1869] = {.lex_state = 1778, .external_lex_state = 2}, - [1870] = {.lex_state = 1778, .external_lex_state = 2}, - [1871] = {.lex_state = 1750, .external_lex_state = 2}, - [1872] = {.lex_state = 257, .external_lex_state = 2}, - [1873] = {.lex_state = 257, .external_lex_state = 2}, - [1874] = {.lex_state = 257, .external_lex_state = 2}, - [1875] = {.lex_state = 257, .external_lex_state = 2}, - [1876] = {.lex_state = 257, .external_lex_state = 2}, - [1877] = {.lex_state = 257, .external_lex_state = 2}, - [1878] = {.lex_state = 1719}, - [1879] = {.lex_state = 1707}, - [1880] = {.lex_state = 1739}, - [1881] = {.lex_state = 1778, .external_lex_state = 2}, - [1882] = {.lex_state = 257, .external_lex_state = 2}, - [1883] = {.lex_state = 1739}, - [1884] = {.lex_state = 1774, .external_lex_state = 2}, - [1885] = {.lex_state = 1750, .external_lex_state = 2}, - [1886] = {.lex_state = 257, .external_lex_state = 2}, - [1887] = {.lex_state = 257, .external_lex_state = 2}, - [1888] = {.lex_state = 257, .external_lex_state = 2}, - [1889] = {.lex_state = 1797, .external_lex_state = 2}, - [1890] = {.lex_state = 1778, .external_lex_state = 2}, - [1891] = {.lex_state = 1736}, - [1892] = {.lex_state = 1778, .external_lex_state = 2}, - [1893] = {.lex_state = 1778, .external_lex_state = 2}, - [1894] = {.lex_state = 1778, .external_lex_state = 2}, - [1895] = {.lex_state = 1736}, - [1896] = {.lex_state = 1778, .external_lex_state = 2}, - [1897] = {.lex_state = 1778, .external_lex_state = 2}, - [1898] = {.lex_state = 1739}, - [1899] = {.lex_state = 1778, .external_lex_state = 2}, - [1900] = {.lex_state = 1721}, - [1901] = {.lex_state = 1778, .external_lex_state = 2}, - [1902] = {.lex_state = 1778, .external_lex_state = 2}, - [1903] = {.lex_state = 1778, .external_lex_state = 2}, - [1904] = {.lex_state = 1778, .external_lex_state = 2}, - [1905] = {.lex_state = 1778, .external_lex_state = 2}, - [1906] = {.lex_state = 1778, .external_lex_state = 2}, - [1907] = {.lex_state = 1778, .external_lex_state = 2}, - [1908] = {.lex_state = 1778, .external_lex_state = 2}, - [1909] = {.lex_state = 1721}, - [1910] = {.lex_state = 1778, .external_lex_state = 2}, - [1911] = {.lex_state = 1778, .external_lex_state = 2}, - [1912] = {.lex_state = 1778, .external_lex_state = 2}, - [1913] = {.lex_state = 1736}, - [1914] = {.lex_state = 1707}, - [1915] = {.lex_state = 1707}, - [1916] = {.lex_state = 1736}, - [1917] = {.lex_state = 1778, .external_lex_state = 2}, - [1918] = {.lex_state = 1778, .external_lex_state = 2}, - [1919] = {.lex_state = 1778, .external_lex_state = 2}, - [1920] = {.lex_state = 1778, .external_lex_state = 2}, - [1921] = {.lex_state = 1778, .external_lex_state = 2}, - [1922] = {.lex_state = 1778, .external_lex_state = 2}, - [1923] = {.lex_state = 1778, .external_lex_state = 2}, - [1924] = {.lex_state = 1739}, - [1925] = {.lex_state = 1778, .external_lex_state = 2}, - [1926] = {.lex_state = 1721}, - [1927] = {.lex_state = 54, .external_lex_state = 2}, - [1928] = {.lex_state = 1778, .external_lex_state = 2}, - [1929] = {.lex_state = 1721}, - [1930] = {.lex_state = 1778, .external_lex_state = 2}, - [1931] = {.lex_state = 1778, .external_lex_state = 2}, - [1932] = {.lex_state = 1778, .external_lex_state = 2}, - [1933] = {.lex_state = 1778, .external_lex_state = 2}, - [1934] = {.lex_state = 1778, .external_lex_state = 2}, - [1935] = {.lex_state = 1778, .external_lex_state = 2}, - [1936] = {.lex_state = 1778, .external_lex_state = 2}, - [1937] = {.lex_state = 1778, .external_lex_state = 2}, - [1938] = {.lex_state = 1778, .external_lex_state = 2}, - [1939] = {.lex_state = 1778, .external_lex_state = 2}, - [1940] = {.lex_state = 1778, .external_lex_state = 2}, - [1941] = {.lex_state = 1778, .external_lex_state = 2}, - [1942] = {.lex_state = 1739}, - [1943] = {.lex_state = 1739}, - [1944] = {.lex_state = 1778, .external_lex_state = 2}, - [1945] = {.lex_state = 1736}, - [1946] = {.lex_state = 1778, .external_lex_state = 2}, - [1947] = {.lex_state = 1778, .external_lex_state = 2}, - [1948] = {.lex_state = 1778, .external_lex_state = 2}, - [1949] = {.lex_state = 1778, .external_lex_state = 2}, - [1950] = {.lex_state = 1778, .external_lex_state = 2}, - [1951] = {.lex_state = 1736}, - [1952] = {.lex_state = 1778, .external_lex_state = 2}, - [1953] = {.lex_state = 1778, .external_lex_state = 2}, - [1954] = {.lex_state = 1778, .external_lex_state = 2}, - [1955] = {.lex_state = 1778, .external_lex_state = 2}, - [1956] = {.lex_state = 1778, .external_lex_state = 2}, - [1957] = {.lex_state = 1778, .external_lex_state = 2}, - [1958] = {.lex_state = 1778, .external_lex_state = 2}, - [1959] = {.lex_state = 1778, .external_lex_state = 2}, - [1960] = {.lex_state = 54, .external_lex_state = 2}, - [1961] = {.lex_state = 1778, .external_lex_state = 2}, - [1962] = {.lex_state = 1778, .external_lex_state = 2}, - [1963] = {.lex_state = 1778, .external_lex_state = 2}, - [1964] = {.lex_state = 1778, .external_lex_state = 2}, - [1965] = {.lex_state = 1778, .external_lex_state = 2}, - [1966] = {.lex_state = 1778, .external_lex_state = 2}, - [1967] = {.lex_state = 54, .external_lex_state = 2}, - [1968] = {.lex_state = 1736}, - [1969] = {.lex_state = 1721}, - [1970] = {.lex_state = 1778, .external_lex_state = 2}, - [1971] = {.lex_state = 7}, - [1972] = {.lex_state = 1778, .external_lex_state = 2}, - [1973] = {.lex_state = 1707}, - [1974] = {.lex_state = 1778, .external_lex_state = 2}, - [1975] = {.lex_state = 1778, .external_lex_state = 2}, - [1976] = {.lex_state = 1778, .external_lex_state = 2}, - [1977] = {.lex_state = 1736}, - [1978] = {.lex_state = 1778, .external_lex_state = 2}, - [1979] = {.lex_state = 1778, .external_lex_state = 2}, - [1980] = {.lex_state = 7}, - [1981] = {.lex_state = 7}, - [1982] = {.lex_state = 1778, .external_lex_state = 2}, - [1983] = {.lex_state = 1778, .external_lex_state = 2}, - [1984] = {.lex_state = 1778, .external_lex_state = 2}, - [1985] = {.lex_state = 1736}, - [1986] = {.lex_state = 1778, .external_lex_state = 2}, - [1987] = {.lex_state = 1778, .external_lex_state = 2}, - [1988] = {.lex_state = 1736}, - [1989] = {.lex_state = 1736}, - [1990] = {.lex_state = 1778, .external_lex_state = 2}, - [1991] = {.lex_state = 1778, .external_lex_state = 2}, - [1992] = {.lex_state = 1736}, - [1993] = {.lex_state = 1778, .external_lex_state = 2}, - [1994] = {.lex_state = 1778, .external_lex_state = 2}, - [1995] = {.lex_state = 1725}, - [1996] = {.lex_state = 1778, .external_lex_state = 2}, - [1997] = {.lex_state = 1778, .external_lex_state = 2}, - [1998] = {.lex_state = 1723}, - [1999] = {.lex_state = 1736}, - [2000] = {.lex_state = 1736}, - [2001] = {.lex_state = 1778, .external_lex_state = 2}, - [2002] = {.lex_state = 1736}, - [2003] = {.lex_state = 1736}, - [2004] = {.lex_state = 1736}, - [2005] = {.lex_state = 1721}, - [2006] = {.lex_state = 1707}, - [2007] = {.lex_state = 1778, .external_lex_state = 2}, - [2008] = {.lex_state = 1736}, - [2009] = {.lex_state = 1736}, - [2010] = {.lex_state = 1736}, - [2011] = {.lex_state = 1736}, - [2012] = {.lex_state = 1736}, - [2013] = {.lex_state = 1736}, - [2014] = {.lex_state = 1736}, - [2015] = {.lex_state = 1707}, - [2016] = {.lex_state = 1736}, - [2017] = {.lex_state = 1736}, - [2018] = {.lex_state = 1778, .external_lex_state = 2}, - [2019] = {.lex_state = 1707}, - [2020] = {.lex_state = 1778, .external_lex_state = 2}, - [2021] = {.lex_state = 1778, .external_lex_state = 2}, - [2022] = {.lex_state = 1778, .external_lex_state = 2}, - [2023] = {.lex_state = 1778, .external_lex_state = 2}, - [2024] = {.lex_state = 1778, .external_lex_state = 2}, - [2025] = {.lex_state = 54, .external_lex_state = 2}, - [2026] = {.lex_state = 54, .external_lex_state = 2}, - [2027] = {.lex_state = 1707}, - [2028] = {.lex_state = 54, .external_lex_state = 2}, - [2029] = {.lex_state = 1707}, - [2030] = {.lex_state = 1707}, - [2031] = {.lex_state = 1707}, - [2032] = {.lex_state = 1739}, - [2033] = {.lex_state = 1736}, - [2034] = {.lex_state = 1739}, - [2035] = {.lex_state = 1736}, - [2036] = {.lex_state = 14, .external_lex_state = 2}, - [2037] = {.lex_state = 1739}, - [2038] = {.lex_state = 1707}, - [2039] = {.lex_state = 14, .external_lex_state = 2}, - [2040] = {.lex_state = 1707}, - [2041] = {.lex_state = 1707}, - [2042] = {.lex_state = 1739}, - [2043] = {.lex_state = 1707}, - [2044] = {.lex_state = 1739}, - [2045] = {.lex_state = 1707}, - [2046] = {.lex_state = 1707}, - [2047] = {.lex_state = 1707}, - [2048] = {.lex_state = 1736}, - [2049] = {.lex_state = 1707}, - [2050] = {.lex_state = 1707}, - [2051] = {.lex_state = 1736}, - [2052] = {.lex_state = 1739}, - [2053] = {.lex_state = 1707}, - [2054] = {.lex_state = 1707}, - [2055] = {.lex_state = 1707}, - [2056] = {.lex_state = 1707}, - [2057] = {.lex_state = 1707}, - [2058] = {.lex_state = 1736}, - [2059] = {.lex_state = 1739}, - [2060] = {.lex_state = 1736}, - [2061] = {.lex_state = 1739}, - [2062] = {.lex_state = 1736}, - [2063] = {.lex_state = 1707}, - [2064] = {.lex_state = 1739}, - [2065] = {.lex_state = 1736}, - [2066] = {.lex_state = 1707}, - [2067] = {.lex_state = 1736}, - [2068] = {.lex_state = 1707}, - [2069] = {.lex_state = 1739}, - [2070] = {.lex_state = 1707}, - [2071] = {.lex_state = 1736}, - [2072] = {.lex_state = 1707}, - [2073] = {.lex_state = 1707}, - [2074] = {.lex_state = 1707}, - [2075] = {.lex_state = 1739}, - [2076] = {.lex_state = 1707}, - [2077] = {.lex_state = 1707}, - [2078] = {.lex_state = 1707}, - [2079] = {.lex_state = 1727}, - [2080] = {.lex_state = 1736}, - [2081] = {.lex_state = 1736}, - [2082] = {.lex_state = 1707}, - [2083] = {.lex_state = 1707}, - [2084] = {.lex_state = 1736}, - [2085] = {.lex_state = 1736}, - [2086] = {.lex_state = 1736}, - [2087] = {.lex_state = 1725}, - [2088] = {.lex_state = 1707}, - [2089] = {.lex_state = 1707}, - [2090] = {.lex_state = 1736}, - [2091] = {.lex_state = 1736}, - [2092] = {.lex_state = 1736}, - [2093] = {.lex_state = 1736}, - [2094] = {.lex_state = 1707}, - [2095] = {.lex_state = 1739}, - [2096] = {.lex_state = 1736}, - [2097] = {.lex_state = 1736}, - [2098] = {.lex_state = 1707}, - [2099] = {.lex_state = 1707}, - [2100] = {.lex_state = 1707}, - [2101] = {.lex_state = 1707}, - [2102] = {.lex_state = 1736}, - [2103] = {.lex_state = 1727}, - [2104] = {.lex_state = 7}, - [2105] = {.lex_state = 1707}, - [2106] = {.lex_state = 1739}, - [2107] = {.lex_state = 1739}, - [2108] = {.lex_state = 1707}, - [2109] = {.lex_state = 14, .external_lex_state = 2}, - [2110] = {.lex_state = 14, .external_lex_state = 2}, - [2111] = {.lex_state = 1739}, - [2112] = {.lex_state = 7}, - [2113] = {.lex_state = 1736}, - [2114] = {.lex_state = 1739}, - [2115] = {.lex_state = 1739}, - [2116] = {.lex_state = 1707}, - [2117] = {.lex_state = 1736}, - [2118] = {.lex_state = 1707}, - [2119] = {.lex_state = 1707}, - [2120] = {.lex_state = 1739}, - [2121] = {.lex_state = 1707}, - [2122] = {.lex_state = 1739}, - [2123] = {.lex_state = 1736}, - [2124] = {.lex_state = 1739}, - [2125] = {.lex_state = 1736}, - [2126] = {.lex_state = 1736}, - [2127] = {.lex_state = 1707}, - [2128] = {.lex_state = 1707}, - [2129] = {.lex_state = 1739}, - [2130] = {.lex_state = 1707}, - [2131] = {.lex_state = 1739}, - [2132] = {.lex_state = 1707}, - [2133] = {.lex_state = 1736}, - [2134] = {.lex_state = 1739}, - [2135] = {.lex_state = 1739}, - [2136] = {.lex_state = 1707}, - [2137] = {.lex_state = 1707}, - [2138] = {.lex_state = 1736}, - [2139] = {.lex_state = 1736}, - [2140] = {.lex_state = 1736}, - [2141] = {.lex_state = 1736}, - [2142] = {.lex_state = 1723}, - [2143] = {.lex_state = 1707}, - [2144] = {.lex_state = 1736}, - [2145] = {.lex_state = 1739}, - [2146] = {.lex_state = 1707}, - [2147] = {.lex_state = 1707}, - [2148] = {.lex_state = 1739}, - [2149] = {.lex_state = 1707}, - [2150] = {.lex_state = 1736}, - [2151] = {.lex_state = 1707}, - [2152] = {.lex_state = 1707}, - [2153] = {.lex_state = 1707}, - [2154] = {.lex_state = 1739}, - [2155] = {.lex_state = 1707}, - [2156] = {.lex_state = 7}, - [2157] = {.lex_state = 1707}, - [2158] = {.lex_state = 1736}, - [2159] = {.lex_state = 1707}, - [2160] = {.lex_state = 7}, - [2161] = {.lex_state = 1707}, - [2162] = {.lex_state = 1739}, - [2163] = {.lex_state = 1736}, - [2164] = {.lex_state = 1736}, - [2165] = {.lex_state = 54, .external_lex_state = 2}, - [2166] = {.lex_state = 54, .external_lex_state = 2}, - [2167] = {.lex_state = 54, .external_lex_state = 2}, - [2168] = {.lex_state = 54, .external_lex_state = 2}, - [2169] = {.lex_state = 54, .external_lex_state = 2}, - [2170] = {.lex_state = 1736}, - [2171] = {.lex_state = 1707}, - [2172] = {.lex_state = 1736}, - [2173] = {.lex_state = 1736}, - [2174] = {.lex_state = 1736}, - [2175] = {.lex_state = 1729}, - [2176] = {.lex_state = 1707}, - [2177] = {.lex_state = 1729}, - [2178] = {.lex_state = 1731}, - [2179] = {.lex_state = 1707}, - [2180] = {.lex_state = 1736}, - [2181] = {.lex_state = 1729}, - [2182] = {.lex_state = 1707}, - [2183] = {.lex_state = 1729}, - [2184] = {.lex_state = 1707}, - [2185] = {.lex_state = 1707}, - [2186] = {.lex_state = 1736}, - [2187] = {.lex_state = 1736}, - [2188] = {.lex_state = 1707}, - [2189] = {.lex_state = 1736}, - [2190] = {.lex_state = 1739}, - [2191] = {.lex_state = 1707}, - [2192] = {.lex_state = 1736}, - [2193] = {.lex_state = 1739}, - [2194] = {.lex_state = 54, .external_lex_state = 2}, - [2195] = {.lex_state = 1727}, - [2196] = {.lex_state = 54, .external_lex_state = 2}, - [2197] = {.lex_state = 54, .external_lex_state = 2}, - [2198] = {.lex_state = 54, .external_lex_state = 2}, - [2199] = {.lex_state = 54, .external_lex_state = 2}, - [2200] = {.lex_state = 54, .external_lex_state = 2}, - [2201] = {.lex_state = 1727}, - [2202] = {.lex_state = 1736}, - [2203] = {.lex_state = 1736}, - [2204] = {.lex_state = 54, .external_lex_state = 2}, - [2205] = {.lex_state = 1707}, - [2206] = {.lex_state = 1731}, - [2207] = {.lex_state = 1731}, - [2208] = {.lex_state = 1739}, - [2209] = {.lex_state = 1736}, - [2210] = {.lex_state = 1739}, - [2211] = {.lex_state = 1739}, - [2212] = {.lex_state = 1736}, - [2213] = {.lex_state = 1736}, - [2214] = {.lex_state = 1707}, - [2215] = {.lex_state = 1736}, - [2216] = {.lex_state = 1731}, - [2217] = {.lex_state = 1731}, - [2218] = {.lex_state = 1707}, - [2219] = {.lex_state = 1707}, - [2220] = {.lex_state = 1729}, - [2221] = {.lex_state = 1736}, - [2222] = {.lex_state = 1736}, - [2223] = {.lex_state = 1736}, - [2224] = {.lex_state = 1729}, - [2225] = {.lex_state = 1736}, - [2226] = {.lex_state = 1729}, - [2227] = {.lex_state = 1729}, - [2228] = {.lex_state = 1736}, - [2229] = {.lex_state = 1736}, - [2230] = {.lex_state = 54, .external_lex_state = 2}, - [2231] = {.lex_state = 54, .external_lex_state = 2}, - [2232] = {.lex_state = 1736}, - [2233] = {.lex_state = 1736}, - [2234] = {.lex_state = 1736}, - [2235] = {.lex_state = 1739}, - [2236] = {.lex_state = 1736}, - [2237] = {.lex_state = 54, .external_lex_state = 2}, - [2238] = {.lex_state = 54, .external_lex_state = 2}, - [2239] = {.lex_state = 1729}, - [2240] = {.lex_state = 54, .external_lex_state = 2}, - [2241] = {.lex_state = 54, .external_lex_state = 2}, - [2242] = {.lex_state = 54, .external_lex_state = 2}, - [2243] = {.lex_state = 54, .external_lex_state = 2}, - [2244] = {.lex_state = 54, .external_lex_state = 2}, - [2245] = {.lex_state = 54, .external_lex_state = 2}, - [2246] = {.lex_state = 54, .external_lex_state = 2}, - [2247] = {.lex_state = 54, .external_lex_state = 2}, - [2248] = {.lex_state = 54, .external_lex_state = 2}, - [2249] = {.lex_state = 54, .external_lex_state = 2}, - [2250] = {.lex_state = 1736}, - [2251] = {.lex_state = 54, .external_lex_state = 2}, - [2252] = {.lex_state = 1736}, - [2253] = {.lex_state = 1736}, - [2254] = {.lex_state = 1736}, - [2255] = {.lex_state = 54, .external_lex_state = 2}, - [2256] = {.lex_state = 1736}, - [2257] = {.lex_state = 1736}, - [2258] = {.lex_state = 54, .external_lex_state = 2}, - [2259] = {.lex_state = 1736}, - [2260] = {.lex_state = 1736}, - [2261] = {.lex_state = 1736}, - [2262] = {.lex_state = 1736}, - [2263] = {.lex_state = 1736}, - [2264] = {.lex_state = 1736}, - [2265] = {.lex_state = 1736}, - [2266] = {.lex_state = 1736}, - [2267] = {.lex_state = 1707}, - [2268] = {.lex_state = 1707}, - [2269] = {.lex_state = 54, .external_lex_state = 2}, - [2270] = {.lex_state = 54, .external_lex_state = 2}, - [2271] = {.lex_state = 54, .external_lex_state = 2}, - [2272] = {.lex_state = 1736}, - [2273] = {.lex_state = 1707}, - [2274] = {.lex_state = 1729}, - [2275] = {.lex_state = 1729}, - [2276] = {.lex_state = 1739}, - [2277] = {.lex_state = 1707}, - [2278] = {.lex_state = 1707}, - [2279] = {.lex_state = 1729}, - [2280] = {.lex_state = 1729}, - [2281] = {.lex_state = 1707}, - [2282] = {.lex_state = 1729}, - [2283] = {.lex_state = 1739}, - [2284] = {.lex_state = 1707}, - [2285] = {.lex_state = 1707}, - [2286] = {.lex_state = 1707}, - [2287] = {.lex_state = 1729}, - [2288] = {.lex_state = 1707}, - [2289] = {.lex_state = 1799, .external_lex_state = 2}, - [2290] = {.lex_state = 1707}, - [2291] = {.lex_state = 1707}, - [2292] = {.lex_state = 51, .external_lex_state = 2}, - [2293] = {.lex_state = 1739}, - [2294] = {.lex_state = 1707}, - [2295] = {.lex_state = 1707}, - [2296] = {.lex_state = 1707}, - [2297] = {.lex_state = 1707}, - [2298] = {.lex_state = 1707}, - [2299] = {.lex_state = 1707}, - [2300] = {.lex_state = 1707}, - [2301] = {.lex_state = 1707}, - [2302] = {.lex_state = 1707}, - [2303] = {.lex_state = 1707}, - [2304] = {.lex_state = 1707}, - [2305] = {.lex_state = 1707}, - [2306] = {.lex_state = 1707}, - [2307] = {.lex_state = 1707}, - [2308] = {.lex_state = 1707}, - [2309] = {.lex_state = 1799, .external_lex_state = 2}, - [2310] = {.lex_state = 1739}, - [2311] = {.lex_state = 1707}, - [2312] = {.lex_state = 1707}, - [2313] = {.lex_state = 1707}, - [2314] = {.lex_state = 1731}, - [2315] = {.lex_state = 1707}, - [2316] = {.lex_state = 1707}, - [2317] = {.lex_state = 1707}, - [2318] = {.lex_state = 1707}, - [2319] = {.lex_state = 1707}, - [2320] = {.lex_state = 1707}, - [2321] = {.lex_state = 1707}, - [2322] = {.lex_state = 1707}, - [2323] = {.lex_state = 1707}, - [2324] = {.lex_state = 1707}, - [2325] = {.lex_state = 1707}, - [2326] = {.lex_state = 1707}, - [2327] = {.lex_state = 1707}, - [2328] = {.lex_state = 1707}, - [2329] = {.lex_state = 1707}, - [2330] = {.lex_state = 1799, .external_lex_state = 2}, - [2331] = {.lex_state = 1707}, - [2332] = {.lex_state = 1707}, - [2333] = {.lex_state = 1707}, - [2334] = {.lex_state = 1707}, - [2335] = {.lex_state = 1707}, - [2336] = {.lex_state = 1707}, - [2337] = {.lex_state = 1707}, - [2338] = {.lex_state = 1707}, - [2339] = {.lex_state = 1707}, - [2340] = {.lex_state = 1707}, - [2341] = {.lex_state = 1707}, - [2342] = {.lex_state = 1707}, - [2343] = {.lex_state = 1707}, - [2344] = {.lex_state = 1707}, - [2345] = {.lex_state = 1707}, - [2346] = {.lex_state = 1707}, - [2347] = {.lex_state = 1707}, - [2348] = {.lex_state = 1707}, - [2349] = {.lex_state = 1707}, - [2350] = {.lex_state = 1707}, - [2351] = {.lex_state = 1707}, - [2352] = {.lex_state = 1707}, - [2353] = {.lex_state = 1707}, - [2354] = {.lex_state = 1729}, - [2355] = {.lex_state = 1707}, - [2356] = {.lex_state = 1707}, - [2357] = {.lex_state = 1707}, - [2358] = {.lex_state = 1707}, - [2359] = {.lex_state = 1707}, - [2360] = {.lex_state = 272, .external_lex_state = 2}, - [2361] = {.lex_state = 1707}, - [2362] = {.lex_state = 1731}, - [2363] = {.lex_state = 1707}, - [2364] = {.lex_state = 1707}, - [2365] = {.lex_state = 1707}, - [2366] = {.lex_state = 1707}, - [2367] = {.lex_state = 1707}, - [2368] = {.lex_state = 1707}, - [2369] = {.lex_state = 1707}, - [2370] = {.lex_state = 1707}, - [2371] = {.lex_state = 1731}, - [2372] = {.lex_state = 1707}, - [2373] = {.lex_state = 1707}, - [2374] = {.lex_state = 1707}, - [2375] = {.lex_state = 1707}, - [2376] = {.lex_state = 1707}, - [2377] = {.lex_state = 1707}, - [2378] = {.lex_state = 1707}, - [2379] = {.lex_state = 1707}, - [2380] = {.lex_state = 1707}, - [2381] = {.lex_state = 1707}, - [2382] = {.lex_state = 1729}, - [2383] = {.lex_state = 1707}, - [2384] = {.lex_state = 1729}, - [2385] = {.lex_state = 1707}, - [2386] = {.lex_state = 1707}, - [2387] = {.lex_state = 1707}, - [2388] = {.lex_state = 1707}, - [2389] = {.lex_state = 1707}, - [2390] = {.lex_state = 1707}, - [2391] = {.lex_state = 1707}, - [2392] = {.lex_state = 1707}, - [2393] = {.lex_state = 1707}, - [2394] = {.lex_state = 1707}, - [2395] = {.lex_state = 1707}, - [2396] = {.lex_state = 135, .external_lex_state = 2}, - [2397] = {.lex_state = 1707}, - [2398] = {.lex_state = 1707}, - [2399] = {.lex_state = 1707}, - [2400] = {.lex_state = 272, .external_lex_state = 2}, - [2401] = {.lex_state = 1707}, - [2402] = {.lex_state = 1707}, - [2403] = {.lex_state = 1707}, - [2404] = {.lex_state = 51, .external_lex_state = 2}, - [2405] = {.lex_state = 1707}, - [2406] = {.lex_state = 1707}, - [2407] = {.lex_state = 1707}, - [2408] = {.lex_state = 1707}, - [2409] = {.lex_state = 1707}, - [2410] = {.lex_state = 1707}, - [2411] = {.lex_state = 1729}, - [2412] = {.lex_state = 1707}, - [2413] = {.lex_state = 1707}, - [2414] = {.lex_state = 1707}, - [2415] = {.lex_state = 1707}, - [2416] = {.lex_state = 1707}, - [2417] = {.lex_state = 1707}, - [2418] = {.lex_state = 1707}, - [2419] = {.lex_state = 1707}, - [2420] = {.lex_state = 1707}, - [2421] = {.lex_state = 1707}, - [2422] = {.lex_state = 1707}, - [2423] = {.lex_state = 1707}, - [2424] = {.lex_state = 1731}, - [2425] = {.lex_state = 1731}, - [2426] = {.lex_state = 1707}, - [2427] = {.lex_state = 1707}, - [2428] = {.lex_state = 1707}, - [2429] = {.lex_state = 1707}, - [2430] = {.lex_state = 1707}, - [2431] = {.lex_state = 7}, - [2432] = {.lex_state = 1707}, - [2433] = {.lex_state = 1707}, - [2434] = {.lex_state = 1707}, - [2435] = {.lex_state = 51, .external_lex_state = 2}, - [2436] = {.lex_state = 1707}, - [2437] = {.lex_state = 1707}, - [2438] = {.lex_state = 1707}, - [2439] = {.lex_state = 1707}, - [2440] = {.lex_state = 1707}, - [2441] = {.lex_state = 1707}, - [2442] = {.lex_state = 1707}, - [2443] = {.lex_state = 51, .external_lex_state = 2}, - [2444] = {.lex_state = 1799, .external_lex_state = 2}, - [2445] = {.lex_state = 1707}, - [2446] = {.lex_state = 1707}, - [2447] = {.lex_state = 7}, - [2448] = {.lex_state = 1707}, - [2449] = {.lex_state = 133, .external_lex_state = 2}, - [2450] = {.lex_state = 1707}, - [2451] = {.lex_state = 1707}, - [2452] = {.lex_state = 1707}, - [2453] = {.lex_state = 1707}, - [2454] = {.lex_state = 1707}, - [2455] = {.lex_state = 282, .external_lex_state = 2}, - [2456] = {.lex_state = 1707}, - [2457] = {.lex_state = 1707}, - [2458] = {.lex_state = 1707}, - [2459] = {.lex_state = 1707}, - [2460] = {.lex_state = 1707}, - [2461] = {.lex_state = 1707}, - [2462] = {.lex_state = 1707}, - [2463] = {.lex_state = 1707}, - [2464] = {.lex_state = 1707}, - [2465] = {.lex_state = 1707}, - [2466] = {.lex_state = 1707}, - [2467] = {.lex_state = 1707}, - [2468] = {.lex_state = 1707}, - [2469] = {.lex_state = 1707}, - [2470] = {.lex_state = 1707}, - [2471] = {.lex_state = 1707}, - [2472] = {.lex_state = 1707}, - [2473] = {.lex_state = 1799, .external_lex_state = 2}, - [2474] = {.lex_state = 7}, - [2475] = {.lex_state = 1707}, - [2476] = {.lex_state = 1707}, - [2477] = {.lex_state = 1707}, - [2478] = {.lex_state = 1707}, - [2479] = {.lex_state = 1799, .external_lex_state = 2}, - [2480] = {.lex_state = 1707}, - [2481] = {.lex_state = 1729}, - [2482] = {.lex_state = 1707}, - [2483] = {.lex_state = 1707}, - [2484] = {.lex_state = 1707}, - [2485] = {.lex_state = 1707}, - [2486] = {.lex_state = 1707}, - [2487] = {.lex_state = 1707}, - [2488] = {.lex_state = 1707}, - [2489] = {.lex_state = 1707}, - [2490] = {.lex_state = 1707}, - [2491] = {.lex_state = 1707}, - [2492] = {.lex_state = 1707}, - [2493] = {.lex_state = 1707}, - [2494] = {.lex_state = 1707}, - [2495] = {.lex_state = 1707}, - [2496] = {.lex_state = 1707}, - [2497] = {.lex_state = 1707}, - [2498] = {.lex_state = 1707}, - [2499] = {.lex_state = 1707}, - [2500] = {.lex_state = 1707}, - [2501] = {.lex_state = 1707}, - [2502] = {.lex_state = 1707}, - [2503] = {.lex_state = 1707}, - [2504] = {.lex_state = 1707}, - [2505] = {.lex_state = 1707}, - [2506] = {.lex_state = 1707}, - [2507] = {.lex_state = 1707}, - [2508] = {.lex_state = 1799, .external_lex_state = 2}, - [2509] = {.lex_state = 1707}, - [2510] = {.lex_state = 1707}, - [2511] = {.lex_state = 1707}, - [2512] = {.lex_state = 1707}, - [2513] = {.lex_state = 1707}, - [2514] = {.lex_state = 1707}, - [2515] = {.lex_state = 1707}, - [2516] = {.lex_state = 1707}, - [2517] = {.lex_state = 1707}, - [2518] = {.lex_state = 1707}, - [2519] = {.lex_state = 1707}, - [2520] = {.lex_state = 134, .external_lex_state = 2}, - [2521] = {.lex_state = 1707}, - [2522] = {.lex_state = 1707}, - [2523] = {.lex_state = 1707}, - [2524] = {.lex_state = 1707}, - [2525] = {.lex_state = 1707}, - [2526] = {.lex_state = 7}, - [2527] = {.lex_state = 1707}, - [2528] = {.lex_state = 1707}, - [2529] = {.lex_state = 1707}, - [2530] = {.lex_state = 51, .external_lex_state = 2}, - [2531] = {.lex_state = 1707}, - [2532] = {.lex_state = 1707}, - [2533] = {.lex_state = 51, .external_lex_state = 2}, - [2534] = {.lex_state = 1707}, - [2535] = {.lex_state = 1707}, - [2536] = {.lex_state = 1707}, - [2537] = {.lex_state = 1707}, - [2538] = {.lex_state = 1707}, - [2539] = {.lex_state = 1707}, - [2540] = {.lex_state = 1707}, - [2541] = {.lex_state = 280, .external_lex_state = 2}, - [2542] = {.lex_state = 1707}, - [2543] = {.lex_state = 1799, .external_lex_state = 2}, - [2544] = {.lex_state = 1707}, - [2545] = {.lex_state = 1707}, - [2546] = {.lex_state = 173, .external_lex_state = 2}, - [2547] = {.lex_state = 51, .external_lex_state = 2}, - [2548] = {.lex_state = 1707}, - [2549] = {.lex_state = 1707}, - [2550] = {.lex_state = 1707}, - [2551] = {.lex_state = 164, .external_lex_state = 2}, - [2552] = {.lex_state = 1707}, - [2553] = {.lex_state = 1707}, - [2554] = {.lex_state = 179, .external_lex_state = 2}, - [2555] = {.lex_state = 51, .external_lex_state = 2}, - [2556] = {.lex_state = 1707}, - [2557] = {.lex_state = 51, .external_lex_state = 2}, - [2558] = {.lex_state = 51, .external_lex_state = 2}, - [2559] = {.lex_state = 51, .external_lex_state = 2}, - [2560] = {.lex_state = 1707}, - [2561] = {.lex_state = 1707}, - [2562] = {.lex_state = 1707}, - [2563] = {.lex_state = 1707}, - [2564] = {.lex_state = 1707}, - [2565] = {.lex_state = 134, .external_lex_state = 2}, - [2566] = {.lex_state = 1707}, - [2567] = {.lex_state = 1707}, - [2568] = {.lex_state = 51, .external_lex_state = 2}, - [2569] = {.lex_state = 1707}, - [2570] = {.lex_state = 1707}, - [2571] = {.lex_state = 1707}, - [2572] = {.lex_state = 1707}, - [2573] = {.lex_state = 1707}, - [2574] = {.lex_state = 178, .external_lex_state = 2}, - [2575] = {.lex_state = 1707}, - [2576] = {.lex_state = 1707}, - [2577] = {.lex_state = 1707}, - [2578] = {.lex_state = 178, .external_lex_state = 2}, - [2579] = {.lex_state = 132, .external_lex_state = 2}, - [2580] = {.lex_state = 1707}, - [2581] = {.lex_state = 1707}, - [2582] = {.lex_state = 1707}, - [2583] = {.lex_state = 279, .external_lex_state = 2}, - [2584] = {.lex_state = 1707}, - [2585] = {.lex_state = 1707}, - [2586] = {.lex_state = 1707}, - [2587] = {.lex_state = 1707}, - [2588] = {.lex_state = 1707}, - [2589] = {.lex_state = 1707}, - [2590] = {.lex_state = 1707}, - [2591] = {.lex_state = 1707}, - [2592] = {.lex_state = 1707}, - [2593] = {.lex_state = 1707}, - [2594] = {.lex_state = 1707}, - [2595] = {.lex_state = 1707}, - [2596] = {.lex_state = 167, .external_lex_state = 2}, - [2597] = {.lex_state = 1707}, - [2598] = {.lex_state = 1707}, - [2599] = {.lex_state = 1707}, - [2600] = {.lex_state = 1707}, - [2601] = {.lex_state = 178, .external_lex_state = 2}, - [2602] = {.lex_state = 1799, .external_lex_state = 2}, - [2603] = {.lex_state = 1707}, - [2604] = {.lex_state = 1707}, - [2605] = {.lex_state = 1707}, - [2606] = {.lex_state = 1798, .external_lex_state = 2}, - [2607] = {.lex_state = 1707}, - [2608] = {.lex_state = 1707}, - [2609] = {.lex_state = 1707}, - [2610] = {.lex_state = 1707}, - [2611] = {.lex_state = 1707}, - [2612] = {.lex_state = 279, .external_lex_state = 2}, - [2613] = {.lex_state = 1707}, - [2614] = {.lex_state = 1707}, - [2615] = {.lex_state = 1798, .external_lex_state = 2}, - [2616] = {.lex_state = 1707}, - [2617] = {.lex_state = 1707}, - [2618] = {.lex_state = 1707}, - [2619] = {.lex_state = 1707}, - [2620] = {.lex_state = 1707}, - [2621] = {.lex_state = 1707}, - [2622] = {.lex_state = 1798, .external_lex_state = 2}, - [2623] = {.lex_state = 1707}, - [2624] = {.lex_state = 1707}, - [2625] = {.lex_state = 1707}, - [2626] = {.lex_state = 1798, .external_lex_state = 2}, - [2627] = {.lex_state = 1798, .external_lex_state = 2}, - [2628] = {.lex_state = 1707}, - [2629] = {.lex_state = 1707}, - [2630] = {.lex_state = 1707}, - [2631] = {.lex_state = 1707}, - [2632] = {.lex_state = 1707}, - [2633] = {.lex_state = 1707}, - [2634] = {.lex_state = 1707}, - [2635] = {.lex_state = 1707}, - [2636] = {.lex_state = 1707}, - [2637] = {.lex_state = 1707}, - [2638] = {.lex_state = 1707}, - [2639] = {.lex_state = 1707}, - [2640] = {.lex_state = 1707}, - [2641] = {.lex_state = 1707}, - [2642] = {.lex_state = 1707}, - [2643] = {.lex_state = 1707}, - [2644] = {.lex_state = 166, .external_lex_state = 2}, - [2645] = {.lex_state = 1798, .external_lex_state = 2}, - [2646] = {.lex_state = 132, .external_lex_state = 2}, - [2647] = {.lex_state = 1707}, - [2648] = {.lex_state = 1707}, - [2649] = {.lex_state = 1707}, - [2650] = {.lex_state = 1707}, - [2651] = {.lex_state = 1707}, - [2652] = {.lex_state = 1799, .external_lex_state = 2}, - [2653] = {.lex_state = 178, .external_lex_state = 2}, - [2654] = {.lex_state = 1707}, - [2655] = {.lex_state = 1707}, - [2656] = {.lex_state = 1707}, - [2657] = {.lex_state = 1707}, - [2658] = {.lex_state = 1707}, - [2659] = {.lex_state = 166, .external_lex_state = 2}, - [2660] = {.lex_state = 1707}, - [2661] = {.lex_state = 1707}, - [2662] = {.lex_state = 1707}, - [2663] = {.lex_state = 1707}, - [2664] = {.lex_state = 1707}, - [2665] = {.lex_state = 1707}, - [2666] = {.lex_state = 1707}, - [2667] = {.lex_state = 1707}, - [2668] = {.lex_state = 1707}, - [2669] = {.lex_state = 1707}, - [2670] = {.lex_state = 1707}, - [2671] = {.lex_state = 1707}, - [2672] = {.lex_state = 1707}, - [2673] = {.lex_state = 1707}, - [2674] = {.lex_state = 1707}, - [2675] = {.lex_state = 1707}, - [2676] = {.lex_state = 177, .external_lex_state = 2}, - [2677] = {.lex_state = 1707}, - [2678] = {.lex_state = 1707}, - [2679] = {.lex_state = 1707}, - [2680] = {.lex_state = 1707}, - [2681] = {.lex_state = 1799, .external_lex_state = 2}, - [2682] = {.lex_state = 165, .external_lex_state = 2}, - [2683] = {.lex_state = 1799, .external_lex_state = 2}, - [2684] = {.lex_state = 1798, .external_lex_state = 2}, - [2685] = {.lex_state = 233, .external_lex_state = 2}, - [2686] = {.lex_state = 272, .external_lex_state = 2}, - [2687] = {.lex_state = 51, .external_lex_state = 2}, - [2688] = {.lex_state = 272, .external_lex_state = 2}, - [2689] = {.lex_state = 272, .external_lex_state = 2}, - [2690] = {.lex_state = 239, .external_lex_state = 2}, - [2691] = {.lex_state = 1798, .external_lex_state = 2}, - [2692] = {.lex_state = 1798, .external_lex_state = 2}, - [2693] = {.lex_state = 272, .external_lex_state = 2}, - [2694] = {.lex_state = 176, .external_lex_state = 2}, - [2695] = {.lex_state = 281, .external_lex_state = 2}, - [2696] = {.lex_state = 51, .external_lex_state = 2}, - [2697] = {.lex_state = 1798, .external_lex_state = 2}, - [2698] = {.lex_state = 272, .external_lex_state = 2}, - [2699] = {.lex_state = 167, .external_lex_state = 2}, - [2700] = {.lex_state = 281, .external_lex_state = 2}, - [2701] = {.lex_state = 233, .external_lex_state = 2}, - [2702] = {.lex_state = 248, .external_lex_state = 2}, - [2703] = {.lex_state = 281, .external_lex_state = 2}, - [2704] = {.lex_state = 281, .external_lex_state = 2}, - [2705] = {.lex_state = 51, .external_lex_state = 2}, - [2706] = {.lex_state = 176, .external_lex_state = 2}, - [2707] = {.lex_state = 1799, .external_lex_state = 2}, - [2708] = {.lex_state = 174, .external_lex_state = 2}, - [2709] = {.lex_state = 167, .external_lex_state = 2}, - [2710] = {.lex_state = 1798, .external_lex_state = 2}, - [2711] = {.lex_state = 176, .external_lex_state = 2}, - [2712] = {.lex_state = 167, .external_lex_state = 2}, - [2713] = {.lex_state = 176, .external_lex_state = 2}, - [2714] = {.lex_state = 272, .external_lex_state = 2}, - [2715] = {.lex_state = 51, .external_lex_state = 2}, - [2716] = {.lex_state = 233, .external_lex_state = 2}, - [2717] = {.lex_state = 272, .external_lex_state = 2}, - [2718] = {.lex_state = 281, .external_lex_state = 2}, - [2719] = {.lex_state = 272, .external_lex_state = 2}, - [2720] = {.lex_state = 51, .external_lex_state = 2}, - [2721] = {.lex_state = 167, .external_lex_state = 2}, - [2722] = {.lex_state = 1798, .external_lex_state = 2}, - [2723] = {.lex_state = 51, .external_lex_state = 2}, - [2724] = {.lex_state = 51, .external_lex_state = 2}, - [2725] = {.lex_state = 51, .external_lex_state = 2}, - [2726] = {.lex_state = 51, .external_lex_state = 2}, - [2727] = {.lex_state = 1797, .external_lex_state = 2}, - [2728] = {.lex_state = 1797, .external_lex_state = 2}, - [2729] = {.lex_state = 1797, .external_lex_state = 2}, - [2730] = {.lex_state = 1797, .external_lex_state = 2}, - [2731] = {.lex_state = 51, .external_lex_state = 2}, - [2732] = {.lex_state = 51, .external_lex_state = 2}, - [2733] = {.lex_state = 51, .external_lex_state = 2}, - [2734] = {.lex_state = 51, .external_lex_state = 2}, - [2735] = {.lex_state = 51, .external_lex_state = 2}, - [2736] = {.lex_state = 1797, .external_lex_state = 2}, - [2737] = {.lex_state = 1797, .external_lex_state = 2}, - [2738] = {.lex_state = 1797, .external_lex_state = 2}, - [2739] = {.lex_state = 1797, .external_lex_state = 2}, - [2740] = {.lex_state = 1799, .external_lex_state = 2}, - [2741] = {.lex_state = 1797, .external_lex_state = 2}, - [2742] = {.lex_state = 1797, .external_lex_state = 2}, - [2743] = {.lex_state = 1799, .external_lex_state = 2}, - [2744] = {.lex_state = 1799, .external_lex_state = 2}, - [2745] = {.lex_state = 1797, .external_lex_state = 2}, - [2746] = {.lex_state = 1797, .external_lex_state = 2}, - [2747] = {.lex_state = 1797, .external_lex_state = 2}, - [2748] = {.lex_state = 1797, .external_lex_state = 2}, - [2749] = {.lex_state = 1797, .external_lex_state = 2}, - [2750] = {.lex_state = 1797, .external_lex_state = 2}, - [2751] = {.lex_state = 1797, .external_lex_state = 2}, - [2752] = {.lex_state = 51, .external_lex_state = 2}, - [2753] = {.lex_state = 51, .external_lex_state = 2}, - [2754] = {.lex_state = 1797, .external_lex_state = 2}, - [2755] = {.lex_state = 1797, .external_lex_state = 2}, - [2756] = {.lex_state = 1797, .external_lex_state = 2}, - [2757] = {.lex_state = 1797, .external_lex_state = 2}, - [2758] = {.lex_state = 51, .external_lex_state = 2}, - [2759] = {.lex_state = 220, .external_lex_state = 2}, - [2760] = {.lex_state = 220, .external_lex_state = 2}, - [2761] = {.lex_state = 51, .external_lex_state = 2}, - [2762] = {.lex_state = 220, .external_lex_state = 2}, - [2763] = {.lex_state = 51, .external_lex_state = 2}, - [2764] = {.lex_state = 241, .external_lex_state = 2}, - [2765] = {.lex_state = 241, .external_lex_state = 2}, - [2766] = {.lex_state = 233, .external_lex_state = 2}, - [2767] = {.lex_state = 233, .external_lex_state = 2}, - [2768] = {.lex_state = 51, .external_lex_state = 2}, - [2769] = {.lex_state = 168, .external_lex_state = 2}, - [2770] = {.lex_state = 168, .external_lex_state = 2}, - [2771] = {.lex_state = 51, .external_lex_state = 2}, - [2772] = {.lex_state = 51, .external_lex_state = 2}, - [2773] = {.lex_state = 51, .external_lex_state = 2}, - [2774] = {.lex_state = 51, .external_lex_state = 2}, - [2775] = {.lex_state = 51, .external_lex_state = 2}, - [2776] = {.lex_state = 51, .external_lex_state = 2}, - [2777] = {.lex_state = 51, .external_lex_state = 2}, - [2778] = {.lex_state = 51, .external_lex_state = 2}, - [2779] = {.lex_state = 51, .external_lex_state = 2}, - [2780] = {.lex_state = 51, .external_lex_state = 2}, - [2781] = {.lex_state = 51, .external_lex_state = 2}, - [2782] = {.lex_state = 51, .external_lex_state = 2}, - [2783] = {.lex_state = 51, .external_lex_state = 2}, - [2784] = {.lex_state = 51, .external_lex_state = 2}, - [2785] = {.lex_state = 51, .external_lex_state = 2}, - [2786] = {.lex_state = 51, .external_lex_state = 2}, - [2787] = {.lex_state = 51, .external_lex_state = 2}, - [2788] = {.lex_state = 51, .external_lex_state = 2}, - [2789] = {.lex_state = 51, .external_lex_state = 2}, - [2790] = {.lex_state = 51, .external_lex_state = 2}, - [2791] = {.lex_state = 51, .external_lex_state = 2}, - [2792] = {.lex_state = 51, .external_lex_state = 2}, - [2793] = {.lex_state = 1797, .external_lex_state = 2}, - [2794] = {.lex_state = 1797, .external_lex_state = 2}, - [2795] = {.lex_state = 1797, .external_lex_state = 2}, - [2796] = {.lex_state = 1797, .external_lex_state = 2}, - [2797] = {.lex_state = 169, .external_lex_state = 2}, - [2798] = {.lex_state = 169, .external_lex_state = 2}, - [2799] = {.lex_state = 277, .external_lex_state = 2}, - [2800] = {.lex_state = 1797, .external_lex_state = 2}, - [2801] = {.lex_state = 277, .external_lex_state = 2}, - [2802] = {.lex_state = 265, .external_lex_state = 2}, - [2803] = {.lex_state = 265, .external_lex_state = 2}, - [2804] = {.lex_state = 265, .external_lex_state = 2}, - [2805] = {.lex_state = 265, .external_lex_state = 2}, - [2806] = {.lex_state = 277, .external_lex_state = 2}, - [2807] = {.lex_state = 220, .external_lex_state = 2}, - [2808] = {.lex_state = 220, .external_lex_state = 2}, - [2809] = {.lex_state = 1797, .external_lex_state = 2}, - [2810] = {.lex_state = 242, .external_lex_state = 2}, - [2811] = {.lex_state = 1797, .external_lex_state = 2}, - [2812] = {.lex_state = 242, .external_lex_state = 2}, - [2813] = {.lex_state = 277, .external_lex_state = 2}, - [2814] = {.lex_state = 242, .external_lex_state = 2}, - [2815] = {.lex_state = 242, .external_lex_state = 2}, - [2816] = {.lex_state = 1797, .external_lex_state = 2}, - [2817] = {.lex_state = 231, .external_lex_state = 2}, - [2818] = {.lex_state = 231, .external_lex_state = 2}, - [2819] = {.lex_state = 1797, .external_lex_state = 2}, - [2820] = {.lex_state = 231, .external_lex_state = 2}, - [2821] = {.lex_state = 231, .external_lex_state = 2}, - [2822] = {.lex_state = 231, .external_lex_state = 2}, - [2823] = {.lex_state = 240, .external_lex_state = 2}, - [2824] = {.lex_state = 231, .external_lex_state = 2}, - [2825] = {.lex_state = 1797, .external_lex_state = 2}, - [2826] = {.lex_state = 1797, .external_lex_state = 2}, - [2827] = {.lex_state = 277, .external_lex_state = 2}, - [2828] = {.lex_state = 249, .external_lex_state = 2}, - [2829] = {.lex_state = 169, .external_lex_state = 2}, - [2830] = {.lex_state = 277, .external_lex_state = 2}, - [2831] = {.lex_state = 169, .external_lex_state = 2}, - [2832] = {.lex_state = 242, .external_lex_state = 2}, - [2833] = {.lex_state = 169, .external_lex_state = 2}, - [2834] = {.lex_state = 169, .external_lex_state = 2}, - [2835] = {.lex_state = 277, .external_lex_state = 2}, - [2836] = {.lex_state = 277, .external_lex_state = 2}, - [2837] = {.lex_state = 1797, .external_lex_state = 2}, - [2838] = {.lex_state = 263, .external_lex_state = 2}, - [2839] = {.lex_state = 1797, .external_lex_state = 2}, - [2840] = {.lex_state = 277, .external_lex_state = 2}, - [2841] = {.lex_state = 1797, .external_lex_state = 2}, - [2842] = {.lex_state = 277, .external_lex_state = 2}, - [2843] = {.lex_state = 277, .external_lex_state = 2}, - [2844] = {.lex_state = 232, .external_lex_state = 2}, - [2845] = {.lex_state = 277, .external_lex_state = 2}, - [2846] = {.lex_state = 277, .external_lex_state = 2}, - [2847] = {.lex_state = 1797, .external_lex_state = 2}, - [2848] = {.lex_state = 277, .external_lex_state = 2}, - [2849] = {.lex_state = 1797, .external_lex_state = 2}, - [2850] = {.lex_state = 1797, .external_lex_state = 2}, - [2851] = {.lex_state = 1797, .external_lex_state = 2}, - [2852] = {.lex_state = 277, .external_lex_state = 2}, - [2853] = {.lex_state = 55, .external_lex_state = 2}, - [2854] = {.lex_state = 1797, .external_lex_state = 2}, - [2855] = {.lex_state = 277, .external_lex_state = 2}, - [2856] = {.lex_state = 277, .external_lex_state = 2}, - [2857] = {.lex_state = 277, .external_lex_state = 2}, - [2858] = {.lex_state = 277, .external_lex_state = 2}, - [2859] = {.lex_state = 234, .external_lex_state = 2}, - [2860] = {.lex_state = 277, .external_lex_state = 2}, - [2861] = {.lex_state = 277, .external_lex_state = 2}, - [2862] = {.lex_state = 1797, .external_lex_state = 2}, - [2863] = {.lex_state = 1797, .external_lex_state = 2}, - [2864] = {.lex_state = 277, .external_lex_state = 2}, - [2865] = {.lex_state = 263, .external_lex_state = 2}, - [2866] = {.lex_state = 263, .external_lex_state = 2}, - [2867] = {.lex_state = 265, .external_lex_state = 2}, - [2868] = {.lex_state = 1778, .external_lex_state = 2}, - [2869] = {.lex_state = 277, .external_lex_state = 2}, - [2870] = {.lex_state = 1778, .external_lex_state = 2}, - [2871] = {.lex_state = 1797, .external_lex_state = 2}, - [2872] = {.lex_state = 263, .external_lex_state = 2}, - [2873] = {.lex_state = 1797, .external_lex_state = 2}, - [2874] = {.lex_state = 230, .external_lex_state = 2}, - [2875] = {.lex_state = 219, .external_lex_state = 2}, - [2876] = {.lex_state = 1704}, - [2877] = {.lex_state = 221, .external_lex_state = 2}, - [2878] = {.lex_state = 237, .external_lex_state = 2}, - [2879] = {.lex_state = 237, .external_lex_state = 2}, - [2880] = {.lex_state = 237, .external_lex_state = 2}, - [2881] = {.lex_state = 237, .external_lex_state = 2}, - [2882] = {.lex_state = 237, .external_lex_state = 2}, - [2883] = {.lex_state = 237, .external_lex_state = 2}, - [2884] = {.lex_state = 237, .external_lex_state = 2}, - [2885] = {.lex_state = 237, .external_lex_state = 2}, - [2886] = {.lex_state = 237, .external_lex_state = 2}, - [2887] = {.lex_state = 237, .external_lex_state = 2}, - [2888] = {.lex_state = 237, .external_lex_state = 2}, - [2889] = {.lex_state = 237, .external_lex_state = 2}, - [2890] = {.lex_state = 237, .external_lex_state = 2}, - [2891] = {.lex_state = 237, .external_lex_state = 2}, - [2892] = {.lex_state = 237, .external_lex_state = 2}, - [2893] = {.lex_state = 237, .external_lex_state = 2}, - [2894] = {.lex_state = 237, .external_lex_state = 2}, - [2895] = {.lex_state = 237, .external_lex_state = 2}, - [2896] = {.lex_state = 237, .external_lex_state = 2}, - [2897] = {.lex_state = 277, .external_lex_state = 2}, - [2898] = {.lex_state = 277, .external_lex_state = 2}, - [2899] = {.lex_state = 265, .external_lex_state = 2}, - [2900] = {.lex_state = 218, .external_lex_state = 2}, - [2901] = {.lex_state = 218, .external_lex_state = 2}, - [2902] = {.lex_state = 264, .external_lex_state = 2}, - [2903] = {.lex_state = 218, .external_lex_state = 2}, - [2904] = {.lex_state = 218, .external_lex_state = 2}, - [2905] = {.lex_state = 218, .external_lex_state = 2}, - [2906] = {.lex_state = 237, .external_lex_state = 2}, - [2907] = {.lex_state = 233, .external_lex_state = 2}, - [2908] = {.lex_state = 233, .external_lex_state = 2}, - [2909] = {.lex_state = 233, .external_lex_state = 2}, - [2910] = {.lex_state = 243, .external_lex_state = 2}, - [2911] = {.lex_state = 243, .external_lex_state = 2}, - [2912] = {.lex_state = 170, .external_lex_state = 2}, - [2913] = {.lex_state = 217, .external_lex_state = 2}, - [2914] = {.lex_state = 228, .external_lex_state = 2}, - [2915] = {.lex_state = 228, .external_lex_state = 2}, - [2916] = {.lex_state = 264, .external_lex_state = 2}, - [2917] = {.lex_state = 175, .external_lex_state = 2}, - [2918] = {.lex_state = 55, .external_lex_state = 2}, - [2919] = {.lex_state = 264, .external_lex_state = 2}, - [2920] = {.lex_state = 265, .external_lex_state = 2}, - [2921] = {.lex_state = 264, .external_lex_state = 2}, - [2922] = {.lex_state = 264, .external_lex_state = 2}, - [2923] = {.lex_state = 264, .external_lex_state = 2}, - [2924] = {.lex_state = 218, .external_lex_state = 2}, - [2925] = {.lex_state = 229, .external_lex_state = 2}, - [2926] = {.lex_state = 221, .external_lex_state = 2}, - [2927] = {.lex_state = 221, .external_lex_state = 2}, - [2928] = {.lex_state = 221, .external_lex_state = 2}, - [2929] = {.lex_state = 221, .external_lex_state = 2}, - [2930] = {.lex_state = 221, .external_lex_state = 2}, - [2931] = {.lex_state = 221, .external_lex_state = 2}, - [2932] = {.lex_state = 221, .external_lex_state = 2}, - [2933] = {.lex_state = 221, .external_lex_state = 2}, - [2934] = {.lex_state = 221, .external_lex_state = 2}, - [2935] = {.lex_state = 221, .external_lex_state = 2}, - [2936] = {.lex_state = 221, .external_lex_state = 2}, - [2937] = {.lex_state = 221, .external_lex_state = 2}, - [2938] = {.lex_state = 221, .external_lex_state = 2}, - [2939] = {.lex_state = 229, .external_lex_state = 2}, - [2940] = {.lex_state = 229, .external_lex_state = 2}, - [2941] = {.lex_state = 221, .external_lex_state = 2}, - [2942] = {.lex_state = 229, .external_lex_state = 2}, - [2943] = {.lex_state = 276, .external_lex_state = 2}, - [2944] = {.lex_state = 276, .external_lex_state = 2}, - [2945] = {.lex_state = 221, .external_lex_state = 2}, - [2946] = {.lex_state = 220, .external_lex_state = 2}, - [2947] = {.lex_state = 221, .external_lex_state = 2}, - [2948] = {.lex_state = 221, .external_lex_state = 2}, - [2949] = {.lex_state = 220, .external_lex_state = 2}, - [2950] = {.lex_state = 220, .external_lex_state = 2}, - [2951] = {.lex_state = 276, .external_lex_state = 2}, - [2952] = {.lex_state = 276, .external_lex_state = 2}, - [2953] = {.lex_state = 276, .external_lex_state = 2}, - [2954] = {.lex_state = 276, .external_lex_state = 2}, - [2955] = {.lex_state = 221, .external_lex_state = 2}, - [2956] = {.lex_state = 229, .external_lex_state = 2}, - [2957] = {.lex_state = 1704}, - [2958] = {.lex_state = 1706}, - [2959] = {.lex_state = 1706}, - [2960] = {.lex_state = 54, .external_lex_state = 2}, - [2961] = {.lex_state = 237, .external_lex_state = 2}, - [2962] = {.lex_state = 237, .external_lex_state = 2}, - [2963] = {.lex_state = 244, .external_lex_state = 2}, - [2964] = {.lex_state = 229, .external_lex_state = 2}, - [2965] = {.lex_state = 221, .external_lex_state = 2}, - [2966] = {.lex_state = 229, .external_lex_state = 2}, - [2967] = {.lex_state = 244, .external_lex_state = 2}, - [2968] = {.lex_state = 244, .external_lex_state = 2}, - [2969] = {.lex_state = 271, .external_lex_state = 2}, - [2970] = {.lex_state = 171, .external_lex_state = 2}, - [2971] = {.lex_state = 171, .external_lex_state = 2}, - [2972] = {.lex_state = 215, .external_lex_state = 2}, - [2973] = {.lex_state = 53, .external_lex_state = 2}, - [2974] = {.lex_state = 215, .external_lex_state = 2}, - [2975] = {.lex_state = 244, .external_lex_state = 2}, - [2976] = {.lex_state = 229, .external_lex_state = 2}, - [2977] = {.lex_state = 229, .external_lex_state = 2}, - [2978] = {.lex_state = 51, .external_lex_state = 2}, - [2979] = {.lex_state = 229, .external_lex_state = 2}, - [2980] = {.lex_state = 229, .external_lex_state = 2}, - [2981] = {.lex_state = 229, .external_lex_state = 2}, - [2982] = {.lex_state = 229, .external_lex_state = 2}, - [2983] = {.lex_state = 271, .external_lex_state = 2}, - [2984] = {.lex_state = 273, .external_lex_state = 2}, - [2985] = {.lex_state = 229, .external_lex_state = 2}, - [2986] = {.lex_state = 271, .external_lex_state = 2}, - [2987] = {.lex_state = 229, .external_lex_state = 2}, - [2988] = {.lex_state = 271, .external_lex_state = 2}, - [2989] = {.lex_state = 244, .external_lex_state = 2}, - [2990] = {.lex_state = 271, .external_lex_state = 2}, - [2991] = {.lex_state = 271, .external_lex_state = 2}, - [2992] = {.lex_state = 271, .external_lex_state = 2}, - [2993] = {.lex_state = 221, .external_lex_state = 2}, - [2994] = {.lex_state = 221, .external_lex_state = 2}, - [2995] = {.lex_state = 271, .external_lex_state = 2}, - [2996] = {.lex_state = 271, .external_lex_state = 2}, - [2997] = {.lex_state = 55, .external_lex_state = 2}, - [2998] = {.lex_state = 244, .external_lex_state = 2}, - [2999] = {.lex_state = 235, .external_lex_state = 2}, - [3000] = {.lex_state = 289, .external_lex_state = 2}, - [3001] = {.lex_state = 250, .external_lex_state = 2}, - [3002] = {.lex_state = 172, .external_lex_state = 2}, - [3003] = {.lex_state = 290, .external_lex_state = 2}, - [3004] = {.lex_state = 131, .external_lex_state = 2}, - [3005] = {.lex_state = 172, .external_lex_state = 2}, - [3006] = {.lex_state = 277, .external_lex_state = 2}, - [3007] = {.lex_state = 172, .external_lex_state = 2}, - [3008] = {.lex_state = 172, .external_lex_state = 2}, - [3009] = {.lex_state = 216, .external_lex_state = 2}, - [3010] = {.lex_state = 172, .external_lex_state = 2}, - [3011] = {.lex_state = 172, .external_lex_state = 2}, - [3012] = {.lex_state = 216, .external_lex_state = 2}, - [3013] = {.lex_state = 216, .external_lex_state = 2}, - [3014] = {.lex_state = 216, .external_lex_state = 2}, - [3015] = {.lex_state = 216, .external_lex_state = 2}, - [3016] = {.lex_state = 216, .external_lex_state = 2}, - [3017] = {.lex_state = 271, .external_lex_state = 2}, - [3018] = {.lex_state = 172, .external_lex_state = 2}, - [3019] = {.lex_state = 53, .external_lex_state = 2}, - [3020] = {.lex_state = 221, .external_lex_state = 2}, - [3021] = {.lex_state = 1706}, - [3022] = {.lex_state = 216, .external_lex_state = 2}, - [3023] = {.lex_state = 290, .external_lex_state = 2}, - [3024] = {.lex_state = 221, .external_lex_state = 2}, - [3025] = {.lex_state = 1708}, - [3026] = {.lex_state = 1712}, - [3027] = {.lex_state = 289, .external_lex_state = 2}, - [3028] = {.lex_state = 289, .external_lex_state = 2}, - [3029] = {.lex_state = 1706}, - [3030] = {.lex_state = 235, .external_lex_state = 2}, - [3031] = {.lex_state = 289, .external_lex_state = 2}, - [3032] = {.lex_state = 216, .external_lex_state = 2}, - [3033] = {.lex_state = 235, .external_lex_state = 2}, - [3034] = {.lex_state = 271, .external_lex_state = 2}, - [3035] = {.lex_state = 236, .external_lex_state = 2}, - [3036] = {.lex_state = 54, .external_lex_state = 2}, - [3037] = {.lex_state = 51, .external_lex_state = 2}, - [3038] = {.lex_state = 172, .external_lex_state = 2}, - [3039] = {.lex_state = 290, .external_lex_state = 2}, - [3040] = {.lex_state = 172, .external_lex_state = 2}, - [3041] = {.lex_state = 277, .external_lex_state = 2}, - [3042] = {.lex_state = 216, .external_lex_state = 2}, - [3043] = {.lex_state = 289, .external_lex_state = 2}, - [3044] = {.lex_state = 51, .external_lex_state = 2}, - [3045] = {.lex_state = 290, .external_lex_state = 2}, - [3046] = {.lex_state = 290, .external_lex_state = 2}, - [3047] = {.lex_state = 277, .external_lex_state = 2}, - [3048] = {.lex_state = 245, .external_lex_state = 2}, - [3049] = {.lex_state = 216, .external_lex_state = 2}, - [3050] = {.lex_state = 216, .external_lex_state = 2}, - [3051] = {.lex_state = 51, .external_lex_state = 2}, - [3052] = {.lex_state = 235, .external_lex_state = 2}, - [3053] = {.lex_state = 278, .external_lex_state = 2}, - [3054] = {.lex_state = 235, .external_lex_state = 2}, - [3055] = {.lex_state = 235, .external_lex_state = 2}, - [3056] = {.lex_state = 216, .external_lex_state = 2}, - [3057] = {.lex_state = 216, .external_lex_state = 2}, - [3058] = {.lex_state = 216, .external_lex_state = 2}, - [3059] = {.lex_state = 216, .external_lex_state = 2}, - [3060] = {.lex_state = 227, .external_lex_state = 2}, - [3061] = {.lex_state = 51, .external_lex_state = 2}, - [3062] = {.lex_state = 51, .external_lex_state = 2}, - [3063] = {.lex_state = 51, .external_lex_state = 2}, - [3064] = {.lex_state = 51, .external_lex_state = 2}, - [3065] = {.lex_state = 51, .external_lex_state = 2}, - [3066] = {.lex_state = 51, .external_lex_state = 2}, - [3067] = {.lex_state = 51, .external_lex_state = 2}, - [3068] = {.lex_state = 222, .external_lex_state = 2}, - [3069] = {.lex_state = 222, .external_lex_state = 2}, - [3070] = {.lex_state = 225, .external_lex_state = 2}, - [3071] = {.lex_state = 51, .external_lex_state = 2}, - [3072] = {.lex_state = 51, .external_lex_state = 2}, - [3073] = {.lex_state = 51, .external_lex_state = 2}, - [3074] = {.lex_state = 51, .external_lex_state = 2}, - [3075] = {.lex_state = 51, .external_lex_state = 2}, - [3076] = {.lex_state = 51, .external_lex_state = 2}, - [3077] = {.lex_state = 222, .external_lex_state = 2}, - [3078] = {.lex_state = 222, .external_lex_state = 2}, - [3079] = {.lex_state = 222, .external_lex_state = 2}, - [3080] = {.lex_state = 222, .external_lex_state = 2}, - [3081] = {.lex_state = 208, .external_lex_state = 2}, - [3082] = {.lex_state = 51, .external_lex_state = 2}, - [3083] = {.lex_state = 208, .external_lex_state = 2}, - [3084] = {.lex_state = 237, .external_lex_state = 2}, - [3085] = {.lex_state = 237, .external_lex_state = 2}, - [3086] = {.lex_state = 237, .external_lex_state = 2}, - [3087] = {.lex_state = 51, .external_lex_state = 2}, - [3088] = {.lex_state = 208, .external_lex_state = 2}, - [3089] = {.lex_state = 51, .external_lex_state = 2}, - [3090] = {.lex_state = 51, .external_lex_state = 2}, - [3091] = {.lex_state = 246, .external_lex_state = 2}, - [3092] = {.lex_state = 246, .external_lex_state = 2}, - [3093] = {.lex_state = 51, .external_lex_state = 2}, - [3094] = {.lex_state = 51, .external_lex_state = 2}, - [3095] = {.lex_state = 51, .external_lex_state = 2}, - [3096] = {.lex_state = 51, .external_lex_state = 2}, - [3097] = {.lex_state = 208, .external_lex_state = 2}, - [3098] = {.lex_state = 51, .external_lex_state = 2}, - [3099] = {.lex_state = 51, .external_lex_state = 2}, - [3100] = {.lex_state = 131, .external_lex_state = 2}, - [3101] = {.lex_state = 51, .external_lex_state = 2}, - [3102] = {.lex_state = 214, .external_lex_state = 2}, - [3103] = {.lex_state = 1716}, - [3104] = {.lex_state = 208, .external_lex_state = 2}, - [3105] = {.lex_state = 1714}, - [3106] = {.lex_state = 224, .external_lex_state = 2}, - [3107] = {.lex_state = 51, .external_lex_state = 2}, - [3108] = {.lex_state = 1714}, - [3109] = {.lex_state = 51, .external_lex_state = 2}, - [3110] = {.lex_state = 1708}, - [3111] = {.lex_state = 1712}, - [3112] = {.lex_state = 51, .external_lex_state = 2}, - [3113] = {.lex_state = 56, .external_lex_state = 2}, - [3114] = {.lex_state = 51, .external_lex_state = 2}, - [3115] = {.lex_state = 51, .external_lex_state = 2}, - [3116] = {.lex_state = 51, .external_lex_state = 2}, - [3117] = {.lex_state = 223, .external_lex_state = 2}, - [3118] = {.lex_state = 51, .external_lex_state = 2}, - [3119] = {.lex_state = 51, .external_lex_state = 2}, - [3120] = {.lex_state = 51, .external_lex_state = 2}, - [3121] = {.lex_state = 51, .external_lex_state = 2}, - [3122] = {.lex_state = 51, .external_lex_state = 2}, - [3123] = {.lex_state = 51, .external_lex_state = 2}, - [3124] = {.lex_state = 51, .external_lex_state = 2}, - [3125] = {.lex_state = 208, .external_lex_state = 2}, - [3126] = {.lex_state = 208, .external_lex_state = 2}, - [3127] = {.lex_state = 208, .external_lex_state = 2}, - [3128] = {.lex_state = 208, .external_lex_state = 2}, - [3129] = {.lex_state = 51, .external_lex_state = 2}, - [3130] = {.lex_state = 208, .external_lex_state = 2}, - [3131] = {.lex_state = 208, .external_lex_state = 2}, - [3132] = {.lex_state = 51, .external_lex_state = 2}, - [3133] = {.lex_state = 208, .external_lex_state = 2}, - [3134] = {.lex_state = 208, .external_lex_state = 2}, - [3135] = {.lex_state = 51, .external_lex_state = 2}, - [3136] = {.lex_state = 51, .external_lex_state = 2}, - [3137] = {.lex_state = 51, .external_lex_state = 2}, - [3138] = {.lex_state = 51, .external_lex_state = 2}, - [3139] = {.lex_state = 51, .external_lex_state = 2}, - [3140] = {.lex_state = 51, .external_lex_state = 2}, - [3141] = {.lex_state = 51, .external_lex_state = 2}, - [3142] = {.lex_state = 51, .external_lex_state = 2}, - [3143] = {.lex_state = 51, .external_lex_state = 2}, - [3144] = {.lex_state = 51, .external_lex_state = 2}, - [3145] = {.lex_state = 51, .external_lex_state = 2}, - [3146] = {.lex_state = 51, .external_lex_state = 2}, - [3147] = {.lex_state = 251, .external_lex_state = 2}, - [3148] = {.lex_state = 131, .external_lex_state = 2}, - [3149] = {.lex_state = 224, .external_lex_state = 2}, - [3150] = {.lex_state = 226, .external_lex_state = 2}, - [3151] = {.lex_state = 226, .external_lex_state = 2}, - [3152] = {.lex_state = 226, .external_lex_state = 2}, - [3153] = {.lex_state = 221, .external_lex_state = 2}, - [3154] = {.lex_state = 56, .external_lex_state = 2}, - [3155] = {.lex_state = 291, .external_lex_state = 2}, - [3156] = {.lex_state = 226, .external_lex_state = 2}, - [3157] = {.lex_state = 226, .external_lex_state = 2}, - [3158] = {.lex_state = 226, .external_lex_state = 2}, - [3159] = {.lex_state = 291, .external_lex_state = 2}, - [3160] = {.lex_state = 226, .external_lex_state = 2}, - [3161] = {.lex_state = 226, .external_lex_state = 2}, - [3162] = {.lex_state = 226, .external_lex_state = 2}, - [3163] = {.lex_state = 226, .external_lex_state = 2}, - [3164] = {.lex_state = 226, .external_lex_state = 2}, - [3165] = {.lex_state = 211, .external_lex_state = 2}, - [3166] = {.lex_state = 226, .external_lex_state = 2}, - [3167] = {.lex_state = 247, .external_lex_state = 2}, - [3168] = {.lex_state = 211, .external_lex_state = 2}, - [3169] = {.lex_state = 226, .external_lex_state = 2}, - [3170] = {.lex_state = 226, .external_lex_state = 2}, - [3171] = {.lex_state = 212, .external_lex_state = 2}, - [3172] = {.lex_state = 1716}, - [3173] = {.lex_state = 226, .external_lex_state = 2}, - [3174] = {.lex_state = 226, .external_lex_state = 2}, - [3175] = {.lex_state = 221, .external_lex_state = 2}, - [3176] = {.lex_state = 1716}, - [3177] = {.lex_state = 226, .external_lex_state = 2}, - [3178] = {.lex_state = 226, .external_lex_state = 2}, - [3179] = {.lex_state = 208, .external_lex_state = 2}, - [3180] = {.lex_state = 1716}, - [3181] = {.lex_state = 221, .external_lex_state = 2}, - [3182] = {.lex_state = 226, .external_lex_state = 2}, - [3183] = {.lex_state = 1716}, - [3184] = {.lex_state = 226, .external_lex_state = 2}, - [3185] = {.lex_state = 226, .external_lex_state = 2}, - [3186] = {.lex_state = 1714}, - [3187] = {.lex_state = 226, .external_lex_state = 2}, - [3188] = {.lex_state = 226, .external_lex_state = 2}, - [3189] = {.lex_state = 1714}, - [3190] = {.lex_state = 226, .external_lex_state = 2}, - [3191] = {.lex_state = 226, .external_lex_state = 2}, - [3192] = {.lex_state = 226, .external_lex_state = 2}, - [3193] = {.lex_state = 226, .external_lex_state = 2}, - [3194] = {.lex_state = 226, .external_lex_state = 2}, - [3195] = {.lex_state = 226, .external_lex_state = 2}, - [3196] = {.lex_state = 44, .external_lex_state = 2}, - [3197] = {.lex_state = 226, .external_lex_state = 2}, - [3198] = {.lex_state = 226, .external_lex_state = 2}, - [3199] = {.lex_state = 226, .external_lex_state = 2}, - [3200] = {.lex_state = 226, .external_lex_state = 2}, - [3201] = {.lex_state = 247, .external_lex_state = 2}, - [3202] = {.lex_state = 226, .external_lex_state = 2}, - [3203] = {.lex_state = 226, .external_lex_state = 2}, - [3204] = {.lex_state = 226, .external_lex_state = 2}, - [3205] = {.lex_state = 208, .external_lex_state = 2}, - [3206] = {.lex_state = 226, .external_lex_state = 2}, - [3207] = {.lex_state = 226, .external_lex_state = 2}, - [3208] = {.lex_state = 226, .external_lex_state = 2}, - [3209] = {.lex_state = 226, .external_lex_state = 2}, - [3210] = {.lex_state = 247, .external_lex_state = 2}, - [3211] = {.lex_state = 291, .external_lex_state = 2}, - [3212] = {.lex_state = 226, .external_lex_state = 2}, - [3213] = {.lex_state = 247, .external_lex_state = 2}, - [3214] = {.lex_state = 226, .external_lex_state = 2}, - [3215] = {.lex_state = 247, .external_lex_state = 2}, - [3216] = {.lex_state = 291, .external_lex_state = 2}, - [3217] = {.lex_state = 226, .external_lex_state = 2}, - [3218] = {.lex_state = 226, .external_lex_state = 2}, - [3219] = {.lex_state = 247, .external_lex_state = 2}, - [3220] = {.lex_state = 247, .external_lex_state = 2}, - [3221] = {.lex_state = 247, .external_lex_state = 2}, - [3222] = {.lex_state = 1716}, - [3223] = {.lex_state = 226, .external_lex_state = 2}, - [3224] = {.lex_state = 1710}, - [3225] = {.lex_state = 226, .external_lex_state = 2}, - [3226] = {.lex_state = 226, .external_lex_state = 2}, - [3227] = {.lex_state = 226, .external_lex_state = 2}, - [3228] = {.lex_state = 226, .external_lex_state = 2}, - [3229] = {.lex_state = 226, .external_lex_state = 2}, - [3230] = {.lex_state = 247, .external_lex_state = 2}, - [3231] = {.lex_state = 247, .external_lex_state = 2}, - [3232] = {.lex_state = 1718}, - [3233] = {.lex_state = 226, .external_lex_state = 2}, - [3234] = {.lex_state = 291, .external_lex_state = 2}, - [3235] = {.lex_state = 226, .external_lex_state = 2}, - [3236] = {.lex_state = 45, .external_lex_state = 2}, - [3237] = {.lex_state = 45, .external_lex_state = 2}, - [3238] = {.lex_state = 45, .external_lex_state = 2}, - [3239] = {.lex_state = 45, .external_lex_state = 2}, - [3240] = {.lex_state = 45, .external_lex_state = 2}, - [3241] = {.lex_state = 45, .external_lex_state = 2}, - [3242] = {.lex_state = 45, .external_lex_state = 2}, - [3243] = {.lex_state = 45, .external_lex_state = 2}, - [3244] = {.lex_state = 45, .external_lex_state = 2}, - [3245] = {.lex_state = 45, .external_lex_state = 2}, - [3246] = {.lex_state = 45, .external_lex_state = 2}, - [3247] = {.lex_state = 45, .external_lex_state = 2}, - [3248] = {.lex_state = 44, .external_lex_state = 2}, - [3249] = {.lex_state = 45, .external_lex_state = 2}, - [3250] = {.lex_state = 45, .external_lex_state = 2}, - [3251] = {.lex_state = 45, .external_lex_state = 2}, - [3252] = {.lex_state = 45, .external_lex_state = 2}, - [3253] = {.lex_state = 45, .external_lex_state = 2}, - [3254] = {.lex_state = 45, .external_lex_state = 2}, - [3255] = {.lex_state = 45, .external_lex_state = 2}, - [3256] = {.lex_state = 45, .external_lex_state = 2}, - [3257] = {.lex_state = 45, .external_lex_state = 2}, - [3258] = {.lex_state = 45, .external_lex_state = 2}, - [3259] = {.lex_state = 45, .external_lex_state = 2}, - [3260] = {.lex_state = 45, .external_lex_state = 2}, - [3261] = {.lex_state = 45, .external_lex_state = 2}, - [3262] = {.lex_state = 1720}, - [3263] = {.lex_state = 45, .external_lex_state = 2}, - [3264] = {.lex_state = 45, .external_lex_state = 2}, - [3265] = {.lex_state = 45, .external_lex_state = 2}, - [3266] = {.lex_state = 45, .external_lex_state = 2}, - [3267] = {.lex_state = 45, .external_lex_state = 2}, - [3268] = {.lex_state = 45, .external_lex_state = 2}, - [3269] = {.lex_state = 45, .external_lex_state = 2}, - [3270] = {.lex_state = 45, .external_lex_state = 2}, - [3271] = {.lex_state = 45, .external_lex_state = 2}, - [3272] = {.lex_state = 45, .external_lex_state = 2}, - [3273] = {.lex_state = 45, .external_lex_state = 2}, - [3274] = {.lex_state = 45, .external_lex_state = 2}, - [3275] = {.lex_state = 1710}, - [3276] = {.lex_state = 1720}, - [3277] = {.lex_state = 45, .external_lex_state = 2}, - [3278] = {.lex_state = 45, .external_lex_state = 2}, - [3279] = {.lex_state = 45, .external_lex_state = 2}, - [3280] = {.lex_state = 45, .external_lex_state = 2}, - [3281] = {.lex_state = 1716}, - [3282] = {.lex_state = 1718}, - [3283] = {.lex_state = 45, .external_lex_state = 2}, - [3284] = {.lex_state = 45, .external_lex_state = 2}, - [3285] = {.lex_state = 45, .external_lex_state = 2}, - [3286] = {.lex_state = 45, .external_lex_state = 2}, - [3287] = {.lex_state = 45, .external_lex_state = 2}, - [3288] = {.lex_state = 45, .external_lex_state = 2}, - [3289] = {.lex_state = 45, .external_lex_state = 2}, - [3290] = {.lex_state = 45, .external_lex_state = 2}, - [3291] = {.lex_state = 45, .external_lex_state = 2}, - [3292] = {.lex_state = 45, .external_lex_state = 2}, - [3293] = {.lex_state = 1716}, - [3294] = {.lex_state = 45, .external_lex_state = 2}, - [3295] = {.lex_state = 45, .external_lex_state = 2}, - [3296] = {.lex_state = 45, .external_lex_state = 2}, - [3297] = {.lex_state = 45, .external_lex_state = 2}, - [3298] = {.lex_state = 1716}, - [3299] = {.lex_state = 45, .external_lex_state = 2}, - [3300] = {.lex_state = 1716}, - [3301] = {.lex_state = 45, .external_lex_state = 2}, - [3302] = {.lex_state = 45, .external_lex_state = 2}, - [3303] = {.lex_state = 45, .external_lex_state = 2}, - [3304] = {.lex_state = 45, .external_lex_state = 2}, - [3305] = {.lex_state = 45, .external_lex_state = 2}, - [3306] = {.lex_state = 45, .external_lex_state = 2}, - [3307] = {.lex_state = 1707}, - [3308] = {.lex_state = 45, .external_lex_state = 2}, - [3309] = {.lex_state = 1720}, - [3310] = {.lex_state = 1720}, - [3311] = {.lex_state = 1722}, - [3312] = {.lex_state = 1722}, - [3313] = {.lex_state = 1722}, - [3314] = {.lex_state = 1722}, - [3315] = {.lex_state = 1722}, - [3316] = {.lex_state = 1722}, - [3317] = {.lex_state = 45, .external_lex_state = 2}, - [3318] = {.lex_state = 1722}, - [3319] = {.lex_state = 80}, - [3320] = {.lex_state = 1726}, - [3321] = {.lex_state = 80}, - [3322] = {.lex_state = 80}, - [3323] = {.lex_state = 1724}, - [3324] = {.lex_state = 1722}, - [3325] = {.lex_state = 80}, - [3326] = {.lex_state = 1707}, - [3327] = {.lex_state = 80}, - [3328] = {.lex_state = 1722}, - [3329] = {.lex_state = 80}, - [3330] = {.lex_state = 80}, - [3331] = {.lex_state = 80}, - [3332] = {.lex_state = 80}, - [3333] = {.lex_state = 80}, - [3334] = {.lex_state = 80}, - [3335] = {.lex_state = 80}, - [3336] = {.lex_state = 80}, - [3337] = {.lex_state = 80}, - [3338] = {.lex_state = 1722}, - [3339] = {.lex_state = 1739}, - [3340] = {.lex_state = 1722}, - [3341] = {.lex_state = 80}, - [3342] = {.lex_state = 1722}, - [3343] = {.lex_state = 80}, - [3344] = {.lex_state = 1728}, - [3345] = {.lex_state = 1724}, - [3346] = {.lex_state = 1728}, - [3347] = {.lex_state = 1739}, - [3348] = {.lex_state = 1726}, - [3349] = {.lex_state = 1730}, - [3350] = {.lex_state = 1730}, - [3351] = {.lex_state = 1730}, - [3352] = {.lex_state = 1730}, - [3353] = {.lex_state = 1736}, - [3354] = {.lex_state = 1730}, - [3355] = {.lex_state = 1732}, - [3356] = {.lex_state = 1730}, - [3357] = {.lex_state = 1732}, - [3358] = {.lex_state = 1730}, - [3359] = {.lex_state = 1730}, - [3360] = {.lex_state = 1736}, - [3361] = {.lex_state = 1732}, - [3362] = {.lex_state = 1732}, - [3363] = {.lex_state = 1730}, - [3364] = {.lex_state = 1732}, - [3365] = {.lex_state = 1728}, - [3366] = {.lex_state = 1728}, - [3367] = {.lex_state = 80}, - [3368] = {.lex_state = 1732}, - [3369] = {.lex_state = 1730}, - [3370] = {.lex_state = 80}, - [3371] = {.lex_state = 1732}, - [3372] = {.lex_state = 1730}, - [3373] = {.lex_state = 1732}, - [3374] = {.lex_state = 1730}, - [3375] = {.lex_state = 1730}, - [3376] = {.lex_state = 1730}, - [3377] = {.lex_state = 1732}, - [3378] = {.lex_state = 1730}, - [3379] = {.lex_state = 1732}, - [3380] = {.lex_state = 1730}, - [3381] = {.lex_state = 1730}, - [3382] = {.lex_state = 1730}, - [3383] = {.lex_state = 1730}, - [3384] = {.lex_state = 1707}, - [3385] = {.lex_state = 97}, - [3386] = {.lex_state = 1707}, - [3387] = {.lex_state = 80}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 80}, - [3390] = {.lex_state = 1730}, - [3391] = {.lex_state = 1707}, - [3392] = {.lex_state = 1707}, - [3393] = {.lex_state = 1707}, - [3394] = {.lex_state = 1707}, - [3395] = {.lex_state = 1707}, - [3396] = {.lex_state = 1707}, - [3397] = {.lex_state = 1707}, - [3398] = {.lex_state = 1707}, - [3399] = {.lex_state = 1707}, - [3400] = {.lex_state = 1707}, - [3401] = {.lex_state = 1707}, - [3402] = {.lex_state = 1707}, - [3403] = {.lex_state = 80}, - [3404] = {.lex_state = 1707}, - [3405] = {.lex_state = 1707}, - [3406] = {.lex_state = 1707}, - [3407] = {.lex_state = 1707}, - [3408] = {.lex_state = 80}, - [3409] = {.lex_state = 1707}, - [3410] = {.lex_state = 1707}, - [3411] = {.lex_state = 1707}, - [3412] = {.lex_state = 1707}, - [3413] = {.lex_state = 1707}, - [3414] = {.lex_state = 1707}, - [3415] = {.lex_state = 1707}, - [3416] = {.lex_state = 1707}, - [3417] = {.lex_state = 1707}, - [3418] = {.lex_state = 1707}, - [3419] = {.lex_state = 1707}, - [3420] = {.lex_state = 1707}, - [3421] = {.lex_state = 1707}, - [3422] = {.lex_state = 1707}, - [3423] = {.lex_state = 1707}, - [3424] = {.lex_state = 1707}, - [3425] = {.lex_state = 1707}, - [3426] = {.lex_state = 1707}, - [3427] = {.lex_state = 1707}, - [3428] = {.lex_state = 1707}, - [3429] = {.lex_state = 1707}, - [3430] = {.lex_state = 1707}, - [3431] = {.lex_state = 1707}, - [3432] = {.lex_state = 1707}, - [3433] = {.lex_state = 1707}, - [3434] = {.lex_state = 1707}, - [3435] = {.lex_state = 1707}, - [3436] = {.lex_state = 1707}, - [3437] = {.lex_state = 1707}, - [3438] = {.lex_state = 1707}, - [3439] = {.lex_state = 1707}, - [3440] = {.lex_state = 1707}, - [3441] = {.lex_state = 1707}, - [3442] = {.lex_state = 1707}, - [3443] = {.lex_state = 1707}, - [3444] = {.lex_state = 1707}, - [3445] = {.lex_state = 1707}, - [3446] = {.lex_state = 1707}, - [3447] = {.lex_state = 1707}, - [3448] = {.lex_state = 80}, - [3449] = {.lex_state = 1707}, - [3450] = {.lex_state = 1707}, - [3451] = {.lex_state = 1707}, - [3452] = {.lex_state = 1707}, - [3453] = {.lex_state = 1707}, - [3454] = {.lex_state = 1707}, - [3455] = {.lex_state = 1707}, - [3456] = {.lex_state = 1707}, - [3457] = {.lex_state = 1707}, - [3458] = {.lex_state = 1707}, - [3459] = {.lex_state = 1707}, - [3460] = {.lex_state = 1707}, - [3461] = {.lex_state = 1707}, - [3462] = {.lex_state = 1707}, - [3463] = {.lex_state = 1707}, - [3464] = {.lex_state = 1707}, - [3465] = {.lex_state = 1707}, - [3466] = {.lex_state = 1707}, - [3467] = {.lex_state = 1707}, - [3468] = {.lex_state = 1707}, - [3469] = {.lex_state = 1707}, - [3470] = {.lex_state = 1707}, - [3471] = {.lex_state = 1707}, - [3472] = {.lex_state = 1707}, - [3473] = {.lex_state = 1707}, - [3474] = {.lex_state = 1707}, - [3475] = {.lex_state = 1707}, - [3476] = {.lex_state = 1707}, - [3477] = {.lex_state = 1707}, - [3478] = {.lex_state = 1707}, - [3479] = {.lex_state = 1707}, - [3480] = {.lex_state = 1707}, - [3481] = {.lex_state = 1707}, - [3482] = {.lex_state = 1707}, - [3483] = {.lex_state = 1707}, - [3484] = {.lex_state = 1707}, - [3485] = {.lex_state = 1707}, - [3486] = {.lex_state = 1707}, - [3487] = {.lex_state = 1707}, - [3488] = {.lex_state = 1707}, - [3489] = {.lex_state = 1707}, - [3490] = {.lex_state = 1707}, - [3491] = {.lex_state = 1707}, - [3492] = {.lex_state = 1707}, - [3493] = {.lex_state = 1707}, - [3494] = {.lex_state = 1707}, - [3495] = {.lex_state = 1707}, - [3496] = {.lex_state = 1707}, - [3497] = {.lex_state = 1707}, - [3498] = {.lex_state = 1707}, - [3499] = {.lex_state = 1707}, - [3500] = {.lex_state = 80}, - [3501] = {.lex_state = 80}, - [3502] = {.lex_state = 80}, - [3503] = {.lex_state = 80}, - [3504] = {.lex_state = 18}, - [3505] = {.lex_state = 1707}, - [3506] = {.lex_state = 266, .external_lex_state = 2}, - [3507] = {.lex_state = 19}, - [3508] = {.lex_state = 1737}, - [3509] = {.lex_state = 98}, - [3510] = {.lex_state = 80}, - [3511] = {.lex_state = 80}, - [3512] = {.lex_state = 1737}, - [3513] = {.lex_state = 80}, - [3514] = {.lex_state = 80}, - [3515] = {.lex_state = 80}, - [3516] = {.lex_state = 80}, - [3517] = {.lex_state = 19}, - [3518] = {.lex_state = 97}, - [3519] = {.lex_state = 98}, - [3520] = {.lex_state = 18}, - [3521] = {.lex_state = 1707}, - [3522] = {.lex_state = 1707}, - [3523] = {.lex_state = 80}, - [3524] = {.lex_state = 80}, - [3525] = {.lex_state = 1707}, - [3526] = {.lex_state = 1707}, - [3527] = {.lex_state = 80}, - [3528] = {.lex_state = 1707}, - [3529] = {.lex_state = 1707}, - [3530] = {.lex_state = 1707}, - [3531] = {.lex_state = 1707}, - [3532] = {.lex_state = 1707}, - [3533] = {.lex_state = 1707}, - [3534] = {.lex_state = 1707}, - [3535] = {.lex_state = 1707}, - [3536] = {.lex_state = 80}, - [3537] = {.lex_state = 1737}, - [3538] = {.lex_state = 270, .external_lex_state = 2}, - [3539] = {.lex_state = 1707}, - [3540] = {.lex_state = 95}, - [3541] = {.lex_state = 1707}, - [3542] = {.lex_state = 1707}, - [3543] = {.lex_state = 97}, - [3544] = {.lex_state = 80}, - [3545] = {.lex_state = 1737}, - [3546] = {.lex_state = 22}, - [3547] = {.lex_state = 95}, - [3548] = {.lex_state = 97}, - [3549] = {.lex_state = 97}, - [3550] = {.lex_state = 96}, - [3551] = {.lex_state = 97}, - [3552] = {.lex_state = 267, .external_lex_state = 2}, - [3553] = {.lex_state = 95}, - [3554] = {.lex_state = 97}, - [3555] = {.lex_state = 263}, - [3556] = {.lex_state = 7}, - [3557] = {.lex_state = 263}, - [3558] = {.lex_state = 267, .external_lex_state = 2}, - [3559] = {.lex_state = 7}, - [3560] = {.lex_state = 7}, - [3561] = {.lex_state = 111}, - [3562] = {.lex_state = 97}, - [3563] = {.lex_state = 96}, - [3564] = {.lex_state = 97}, - [3565] = {.lex_state = 1703}, - [3566] = {.lex_state = 1703}, - [3567] = {.lex_state = 113}, - [3568] = {.lex_state = 20}, - [3569] = {.lex_state = 80}, - [3570] = {.lex_state = 23}, - [3571] = {.lex_state = 23}, - [3572] = {.lex_state = 99}, - [3573] = {.lex_state = 101}, - [3574] = {.lex_state = 268, .external_lex_state = 2}, - [3575] = {.lex_state = 80}, - [3576] = {.lex_state = 268, .external_lex_state = 2}, - [3577] = {.lex_state = 80}, - [3578] = {.lex_state = 80}, - [3579] = {.lex_state = 268, .external_lex_state = 2}, - [3580] = {.lex_state = 80}, - [3581] = {.lex_state = 268, .external_lex_state = 2}, - [3582] = {.lex_state = 114}, - [3583] = {.lex_state = 115}, - [3584] = {.lex_state = 264}, - [3585] = {.lex_state = 268, .external_lex_state = 2}, - [3586] = {.lex_state = 114}, - [3587] = {.lex_state = 264}, - [3588] = {.lex_state = 80}, - [3589] = {.lex_state = 80}, - [3590] = {.lex_state = 80}, - [3591] = {.lex_state = 370}, - [3592] = {.lex_state = 95}, - [3593] = {.lex_state = 80}, - [3594] = {.lex_state = 95}, - [3595] = {.lex_state = 95}, - [3596] = {.lex_state = 80}, - [3597] = {.lex_state = 24}, - [3598] = {.lex_state = 80}, - [3599] = {.lex_state = 95}, - [3600] = {.lex_state = 80}, - [3601] = {.lex_state = 80}, - [3602] = {.lex_state = 80}, - [3603] = {.lex_state = 80}, - [3604] = {.lex_state = 80}, - [3605] = {.lex_state = 80}, - [3606] = {.lex_state = 95}, - [3607] = {.lex_state = 7}, - [3608] = {.lex_state = 7}, - [3609] = {.lex_state = 80}, - [3610] = {.lex_state = 80}, - [3611] = {.lex_state = 80}, - [3612] = {.lex_state = 80}, - [3613] = {.lex_state = 80}, - [3614] = {.lex_state = 80}, - [3615] = {.lex_state = 80}, - [3616] = {.lex_state = 80}, - [3617] = {.lex_state = 80}, - [3618] = {.lex_state = 80}, - [3619] = {.lex_state = 80}, + [1245] = {.lex_state = 1690, .external_lex_state = 2}, + [1246] = {.lex_state = 1678, .external_lex_state = 2}, + [1247] = {.lex_state = 1714, .external_lex_state = 2}, + [1248] = {.lex_state = 44, .external_lex_state = 2}, + [1249] = {.lex_state = 44, .external_lex_state = 2}, + [1250] = {.lex_state = 1718, .external_lex_state = 2}, + [1251] = {.lex_state = 1665}, + [1252] = {.lex_state = 44, .external_lex_state = 2}, + [1253] = {.lex_state = 44, .external_lex_state = 2}, + [1254] = {.lex_state = 1680, .external_lex_state = 2}, + [1255] = {.lex_state = 1665}, + [1256] = {.lex_state = 34, .external_lex_state = 2}, + [1257] = {.lex_state = 1681, .external_lex_state = 2}, + [1258] = {.lex_state = 44, .external_lex_state = 2}, + [1259] = {.lex_state = 1690, .external_lex_state = 2}, + [1260] = {.lex_state = 1691, .external_lex_state = 2}, + [1261] = {.lex_state = 1676, .external_lex_state = 2}, + [1262] = {.lex_state = 1690, .external_lex_state = 2}, + [1263] = {.lex_state = 44, .external_lex_state = 2}, + [1264] = {.lex_state = 44, .external_lex_state = 2}, + [1265] = {.lex_state = 44, .external_lex_state = 2}, + [1266] = {.lex_state = 34, .external_lex_state = 2}, + [1267] = {.lex_state = 44, .external_lex_state = 2}, + [1268] = {.lex_state = 44, .external_lex_state = 2}, + [1269] = {.lex_state = 44, .external_lex_state = 2}, + [1270] = {.lex_state = 44, .external_lex_state = 2}, + [1271] = {.lex_state = 44, .external_lex_state = 2}, + [1272] = {.lex_state = 44, .external_lex_state = 2}, + [1273] = {.lex_state = 44, .external_lex_state = 2}, + [1274] = {.lex_state = 44, .external_lex_state = 2}, + [1275] = {.lex_state = 44, .external_lex_state = 2}, + [1276] = {.lex_state = 44, .external_lex_state = 2}, + [1277] = {.lex_state = 44, .external_lex_state = 2}, + [1278] = {.lex_state = 44, .external_lex_state = 2}, + [1279] = {.lex_state = 44, .external_lex_state = 2}, + [1280] = {.lex_state = 44, .external_lex_state = 2}, + [1281] = {.lex_state = 44, .external_lex_state = 2}, + [1282] = {.lex_state = 44, .external_lex_state = 2}, + [1283] = {.lex_state = 44, .external_lex_state = 2}, + [1284] = {.lex_state = 1676, .external_lex_state = 2}, + [1285] = {.lex_state = 44, .external_lex_state = 2}, + [1286] = {.lex_state = 44, .external_lex_state = 2}, + [1287] = {.lex_state = 44, .external_lex_state = 2}, + [1288] = {.lex_state = 44, .external_lex_state = 2}, + [1289] = {.lex_state = 44, .external_lex_state = 2}, + [1290] = {.lex_state = 44, .external_lex_state = 2}, + [1291] = {.lex_state = 44, .external_lex_state = 2}, + [1292] = {.lex_state = 44, .external_lex_state = 2}, + [1293] = {.lex_state = 44, .external_lex_state = 2}, + [1294] = {.lex_state = 44, .external_lex_state = 2}, + [1295] = {.lex_state = 44, .external_lex_state = 2}, + [1296] = {.lex_state = 44, .external_lex_state = 2}, + [1297] = {.lex_state = 44, .external_lex_state = 2}, + [1298] = {.lex_state = 44, .external_lex_state = 2}, + [1299] = {.lex_state = 44, .external_lex_state = 2}, + [1300] = {.lex_state = 44, .external_lex_state = 2}, + [1301] = {.lex_state = 44, .external_lex_state = 2}, + [1302] = {.lex_state = 44, .external_lex_state = 2}, + [1303] = {.lex_state = 44, .external_lex_state = 2}, + [1304] = {.lex_state = 1690, .external_lex_state = 2}, + [1305] = {.lex_state = 44, .external_lex_state = 2}, + [1306] = {.lex_state = 1680, .external_lex_state = 2}, + [1307] = {.lex_state = 1687, .external_lex_state = 2}, + [1308] = {.lex_state = 1690, .external_lex_state = 2}, + [1309] = {.lex_state = 1715, .external_lex_state = 2}, + [1310] = {.lex_state = 3140}, + [1311] = {.lex_state = 1665}, + [1312] = {.lex_state = 1681, .external_lex_state = 2}, + [1313] = {.lex_state = 1705, .external_lex_state = 2}, + [1314] = {.lex_state = 1680, .external_lex_state = 2}, + [1315] = {.lex_state = 1665}, + [1316] = {.lex_state = 1681, .external_lex_state = 2}, + [1317] = {.lex_state = 1665}, + [1318] = {.lex_state = 1681, .external_lex_state = 2}, + [1319] = {.lex_state = 1688, .external_lex_state = 2}, + [1320] = {.lex_state = 1690, .external_lex_state = 2}, + [1321] = {.lex_state = 1665}, + [1322] = {.lex_state = 1665}, + [1323] = {.lex_state = 1665}, + [1324] = {.lex_state = 3268}, + [1325] = {.lex_state = 1690, .external_lex_state = 2}, + [1326] = {.lex_state = 1715, .external_lex_state = 2}, + [1327] = {.lex_state = 1681, .external_lex_state = 2}, + [1328] = {.lex_state = 34, .external_lex_state = 2}, + [1329] = {.lex_state = 3140}, + [1330] = {.lex_state = 1679, .external_lex_state = 2}, + [1331] = {.lex_state = 1714, .external_lex_state = 2}, + [1332] = {.lex_state = 1681, .external_lex_state = 2}, + [1333] = {.lex_state = 1718, .external_lex_state = 2}, + [1334] = {.lex_state = 3118}, + [1335] = {.lex_state = 1680, .external_lex_state = 2}, + [1336] = {.lex_state = 1665}, + [1337] = {.lex_state = 3118}, + [1338] = {.lex_state = 1705, .external_lex_state = 2}, + [1339] = {.lex_state = 3268}, + [1340] = {.lex_state = 1705, .external_lex_state = 2}, + [1341] = {.lex_state = 1690, .external_lex_state = 2}, + [1342] = {.lex_state = 1705, .external_lex_state = 2}, + [1343] = {.lex_state = 1716, .external_lex_state = 2}, + [1344] = {.lex_state = 1681, .external_lex_state = 2}, + [1345] = {.lex_state = 1716, .external_lex_state = 2}, + [1346] = {.lex_state = 1681, .external_lex_state = 2}, + [1347] = {.lex_state = 1716, .external_lex_state = 2}, + [1348] = {.lex_state = 1716, .external_lex_state = 2}, + [1349] = {.lex_state = 1716, .external_lex_state = 2}, + [1350] = {.lex_state = 1705, .external_lex_state = 2}, + [1351] = {.lex_state = 1629}, + [1352] = {.lex_state = 1664}, + [1353] = {.lex_state = 1665}, + [1354] = {.lex_state = 44, .external_lex_state = 2}, + [1355] = {.lex_state = 1682, .external_lex_state = 2}, + [1356] = {.lex_state = 1705, .external_lex_state = 2}, + [1357] = {.lex_state = 1665}, + [1358] = {.lex_state = 1665}, + [1359] = {.lex_state = 1665}, + [1360] = {.lex_state = 1665}, + [1361] = {.lex_state = 1629}, + [1362] = {.lex_state = 1682, .external_lex_state = 2}, + [1363] = {.lex_state = 1715, .external_lex_state = 2}, + [1364] = {.lex_state = 1664}, + [1365] = {.lex_state = 1629}, + [1366] = {.lex_state = 1681, .external_lex_state = 2}, + [1367] = {.lex_state = 1705, .external_lex_state = 2}, + [1368] = {.lex_state = 1688, .external_lex_state = 2}, + [1369] = {.lex_state = 1715, .external_lex_state = 2}, + [1370] = {.lex_state = 1681, .external_lex_state = 2}, + [1371] = {.lex_state = 3268}, + [1372] = {.lex_state = 3268}, + [1373] = {.lex_state = 1679, .external_lex_state = 2}, + [1374] = {.lex_state = 1705, .external_lex_state = 2}, + [1375] = {.lex_state = 1629}, + [1376] = {.lex_state = 1683, .external_lex_state = 2}, + [1377] = {.lex_state = 1665}, + [1378] = {.lex_state = 1665}, + [1379] = {.lex_state = 1704, .external_lex_state = 2}, + [1380] = {.lex_state = 1629}, + [1381] = {.lex_state = 1664}, + [1382] = {.lex_state = 1665}, + [1383] = {.lex_state = 1629}, + [1384] = {.lex_state = 1665}, + [1385] = {.lex_state = 1631}, + [1386] = {.lex_state = 3142}, + [1387] = {.lex_state = 3142}, + [1388] = {.lex_state = 1631}, + [1389] = {.lex_state = 1704, .external_lex_state = 2}, + [1390] = {.lex_state = 1683, .external_lex_state = 2}, + [1391] = {.lex_state = 1683, .external_lex_state = 2}, + [1392] = {.lex_state = 1629}, + [1393] = {.lex_state = 1711, .external_lex_state = 2}, + [1394] = {.lex_state = 1683, .external_lex_state = 2}, + [1395] = {.lex_state = 1683, .external_lex_state = 2}, + [1396] = {.lex_state = 1704, .external_lex_state = 2}, + [1397] = {.lex_state = 1716, .external_lex_state = 2}, + [1398] = {.lex_state = 1665}, + [1399] = {.lex_state = 1665}, + [1400] = {.lex_state = 1704, .external_lex_state = 2}, + [1401] = {.lex_state = 1629}, + [1402] = {.lex_state = 1664}, + [1403] = {.lex_state = 1704, .external_lex_state = 2}, + [1404] = {.lex_state = 1716, .external_lex_state = 2}, + [1405] = {.lex_state = 1664}, + [1406] = {.lex_state = 1682, .external_lex_state = 2}, + [1407] = {.lex_state = 1683, .external_lex_state = 2}, + [1408] = {.lex_state = 1710, .external_lex_state = 2}, + [1409] = {.lex_state = 1665}, + [1410] = {.lex_state = 1629}, + [1411] = {.lex_state = 1629}, + [1412] = {.lex_state = 1682, .external_lex_state = 2}, + [1413] = {.lex_state = 1705, .external_lex_state = 2}, + [1414] = {.lex_state = 1716, .external_lex_state = 2}, + [1415] = {.lex_state = 1716, .external_lex_state = 2}, + [1416] = {.lex_state = 1705, .external_lex_state = 2}, + [1417] = {.lex_state = 1716, .external_lex_state = 2}, + [1418] = {.lex_state = 1704, .external_lex_state = 2}, + [1419] = {.lex_state = 1683, .external_lex_state = 2}, + [1420] = {.lex_state = 1683, .external_lex_state = 2}, + [1421] = {.lex_state = 1704, .external_lex_state = 2}, + [1422] = {.lex_state = 1704, .external_lex_state = 2}, + [1423] = {.lex_state = 1704, .external_lex_state = 2}, + [1424] = {.lex_state = 1704, .external_lex_state = 2}, + [1425] = {.lex_state = 1683, .external_lex_state = 2}, + [1426] = {.lex_state = 1707, .external_lex_state = 2}, + [1427] = {.lex_state = 1664}, + [1428] = {.lex_state = 1665}, + [1429] = {.lex_state = 1631}, + [1430] = {.lex_state = 1689, .external_lex_state = 2}, + [1431] = {.lex_state = 1683, .external_lex_state = 2}, + [1432] = {.lex_state = 1664}, + [1433] = {.lex_state = 1707, .external_lex_state = 2}, + [1434] = {.lex_state = 1707, .external_lex_state = 2}, + [1435] = {.lex_state = 1707, .external_lex_state = 2}, + [1436] = {.lex_state = 1637}, + [1437] = {.lex_state = 1711, .external_lex_state = 2}, + [1438] = {.lex_state = 1665}, + [1439] = {.lex_state = 1665}, + [1440] = {.lex_state = 1629}, + [1441] = {.lex_state = 1705, .external_lex_state = 2}, + [1442] = {.lex_state = 1707, .external_lex_state = 2}, + [1443] = {.lex_state = 1664}, + [1444] = {.lex_state = 1707, .external_lex_state = 2}, + [1445] = {.lex_state = 1707, .external_lex_state = 2}, + [1446] = {.lex_state = 1631}, + [1447] = {.lex_state = 1707, .external_lex_state = 2}, + [1448] = {.lex_state = 1707, .external_lex_state = 2}, + [1449] = {.lex_state = 1629}, + [1450] = {.lex_state = 1707, .external_lex_state = 2}, + [1451] = {.lex_state = 1707, .external_lex_state = 2}, + [1452] = {.lex_state = 1704, .external_lex_state = 2}, + [1453] = {.lex_state = 1707, .external_lex_state = 2}, + [1454] = {.lex_state = 1707, .external_lex_state = 2}, + [1455] = {.lex_state = 1707, .external_lex_state = 2}, + [1456] = {.lex_state = 1705, .external_lex_state = 2}, + [1457] = {.lex_state = 1707, .external_lex_state = 2}, + [1458] = {.lex_state = 1707, .external_lex_state = 2}, + [1459] = {.lex_state = 1705, .external_lex_state = 2}, + [1460] = {.lex_state = 1707, .external_lex_state = 2}, + [1461] = {.lex_state = 1633}, + [1462] = {.lex_state = 1708, .external_lex_state = 2}, + [1463] = {.lex_state = 1707, .external_lex_state = 2}, + [1464] = {.lex_state = 1707, .external_lex_state = 2}, + [1465] = {.lex_state = 1683, .external_lex_state = 2}, + [1466] = {.lex_state = 1704, .external_lex_state = 2}, + [1467] = {.lex_state = 1707, .external_lex_state = 2}, + [1468] = {.lex_state = 1684, .external_lex_state = 2}, + [1469] = {.lex_state = 1664}, + [1470] = {.lex_state = 1664}, + [1471] = {.lex_state = 1665}, + [1472] = {.lex_state = 1708, .external_lex_state = 2}, + [1473] = {.lex_state = 1664}, + [1474] = {.lex_state = 1707, .external_lex_state = 2}, + [1475] = {.lex_state = 1665}, + [1476] = {.lex_state = 1683, .external_lex_state = 2}, + [1477] = {.lex_state = 1707, .external_lex_state = 2}, + [1478] = {.lex_state = 1710, .external_lex_state = 2}, + [1479] = {.lex_state = 1707, .external_lex_state = 2}, + [1480] = {.lex_state = 1709, .external_lex_state = 2}, + [1481] = {.lex_state = 1707, .external_lex_state = 2}, + [1482] = {.lex_state = 1705, .external_lex_state = 2}, + [1483] = {.lex_state = 1629}, + [1484] = {.lex_state = 1709, .external_lex_state = 2}, + [1485] = {.lex_state = 1707, .external_lex_state = 2}, + [1486] = {.lex_state = 1707, .external_lex_state = 2}, + [1487] = {.lex_state = 1629}, + [1488] = {.lex_state = 1707, .external_lex_state = 2}, + [1489] = {.lex_state = 1709, .external_lex_state = 2}, + [1490] = {.lex_state = 1707, .external_lex_state = 2}, + [1491] = {.lex_state = 1689, .external_lex_state = 2}, + [1492] = {.lex_state = 1707, .external_lex_state = 2}, + [1493] = {.lex_state = 1707, .external_lex_state = 2}, + [1494] = {.lex_state = 1643}, + [1495] = {.lex_state = 1709, .external_lex_state = 2}, + [1496] = {.lex_state = 1707, .external_lex_state = 2}, + [1497] = {.lex_state = 1629}, + [1498] = {.lex_state = 1707, .external_lex_state = 2}, + [1499] = {.lex_state = 1665}, + [1500] = {.lex_state = 1665}, + [1501] = {.lex_state = 1709, .external_lex_state = 2}, + [1502] = {.lex_state = 1707, .external_lex_state = 2}, + [1503] = {.lex_state = 1685, .external_lex_state = 2}, + [1504] = {.lex_state = 1707, .external_lex_state = 2}, + [1505] = {.lex_state = 1709, .external_lex_state = 2}, + [1506] = {.lex_state = 1709, .external_lex_state = 2}, + [1507] = {.lex_state = 1685, .external_lex_state = 2}, + [1508] = {.lex_state = 1709, .external_lex_state = 2}, + [1509] = {.lex_state = 1707, .external_lex_state = 2}, + [1510] = {.lex_state = 1664}, + [1511] = {.lex_state = 1635}, + [1512] = {.lex_state = 1709, .external_lex_state = 2}, + [1513] = {.lex_state = 1707, .external_lex_state = 2}, + [1514] = {.lex_state = 1707, .external_lex_state = 2}, + [1515] = {.lex_state = 1707, .external_lex_state = 2}, + [1516] = {.lex_state = 1707, .external_lex_state = 2}, + [1517] = {.lex_state = 1707, .external_lex_state = 2}, + [1518] = {.lex_state = 1641}, + [1519] = {.lex_state = 1639}, + [1520] = {.lex_state = 1707, .external_lex_state = 2}, + [1521] = {.lex_state = 1665}, + [1522] = {.lex_state = 1707, .external_lex_state = 2}, + [1523] = {.lex_state = 1707, .external_lex_state = 2}, + [1524] = {.lex_state = 1705, .external_lex_state = 2}, + [1525] = {.lex_state = 1707, .external_lex_state = 2}, + [1526] = {.lex_state = 1709, .external_lex_state = 2}, + [1527] = {.lex_state = 1708, .external_lex_state = 2}, + [1528] = {.lex_state = 1639}, + [1529] = {.lex_state = 1665}, + [1530] = {.lex_state = 1709, .external_lex_state = 2}, + [1531] = {.lex_state = 1684, .external_lex_state = 2}, + [1532] = {.lex_state = 1707, .external_lex_state = 2}, + [1533] = {.lex_state = 1664}, + [1534] = {.lex_state = 1664}, + [1535] = {.lex_state = 1633}, + [1536] = {.lex_state = 1629}, + [1537] = {.lex_state = 1707, .external_lex_state = 2}, + [1538] = {.lex_state = 1707, .external_lex_state = 2}, + [1539] = {.lex_state = 1707, .external_lex_state = 2}, + [1540] = {.lex_state = 1709, .external_lex_state = 2}, + [1541] = {.lex_state = 1629}, + [1542] = {.lex_state = 1629}, + [1543] = {.lex_state = 1705, .external_lex_state = 2}, + [1544] = {.lex_state = 1709, .external_lex_state = 2}, + [1545] = {.lex_state = 1709, .external_lex_state = 2}, + [1546] = {.lex_state = 1709, .external_lex_state = 2}, + [1547] = {.lex_state = 1708, .external_lex_state = 2}, + [1548] = {.lex_state = 1637}, + [1549] = {.lex_state = 1665}, + [1550] = {.lex_state = 1664}, + [1551] = {.lex_state = 1664}, + [1552] = {.lex_state = 1723, .external_lex_state = 2}, + [1553] = {.lex_state = 1686, .external_lex_state = 2}, + [1554] = {.lex_state = 1707, .external_lex_state = 2}, + [1555] = {.lex_state = 1686, .external_lex_state = 2}, + [1556] = {.lex_state = 1664}, + [1557] = {.lex_state = 1709, .external_lex_state = 2}, + [1558] = {.lex_state = 1709, .external_lex_state = 2}, + [1559] = {.lex_state = 1686, .external_lex_state = 2}, + [1560] = {.lex_state = 1685, .external_lex_state = 2}, + [1561] = {.lex_state = 1685, .external_lex_state = 2}, + [1562] = {.lex_state = 1664}, + [1563] = {.lex_state = 1709, .external_lex_state = 2}, + [1564] = {.lex_state = 1709, .external_lex_state = 2}, + [1565] = {.lex_state = 1686, .external_lex_state = 2}, + [1566] = {.lex_state = 1709, .external_lex_state = 2}, + [1567] = {.lex_state = 1709, .external_lex_state = 2}, + [1568] = {.lex_state = 1686, .external_lex_state = 2}, + [1569] = {.lex_state = 1709, .external_lex_state = 2}, + [1570] = {.lex_state = 1686, .external_lex_state = 2}, + [1571] = {.lex_state = 1664}, + [1572] = {.lex_state = 1664}, + [1573] = {.lex_state = 1723, .external_lex_state = 2}, + [1574] = {.lex_state = 1709, .external_lex_state = 2}, + [1575] = {.lex_state = 1675, .external_lex_state = 2}, + [1576] = {.lex_state = 1703, .external_lex_state = 2}, + [1577] = {.lex_state = 1723, .external_lex_state = 2}, + [1578] = {.lex_state = 1723, .external_lex_state = 2}, + [1579] = {.lex_state = 1709, .external_lex_state = 2}, + [1580] = {.lex_state = 1706, .external_lex_state = 2}, + [1581] = {.lex_state = 1706, .external_lex_state = 2}, + [1582] = {.lex_state = 1709, .external_lex_state = 2}, + [1583] = {.lex_state = 1709, .external_lex_state = 2}, + [1584] = {.lex_state = 1686, .external_lex_state = 2}, + [1585] = {.lex_state = 1641}, + [1586] = {.lex_state = 1641}, + [1587] = {.lex_state = 1641}, + [1588] = {.lex_state = 1641}, + [1589] = {.lex_state = 1712, .external_lex_state = 2}, + [1590] = {.lex_state = 1698, .external_lex_state = 2}, + [1591] = {.lex_state = 1686, .external_lex_state = 2}, + [1592] = {.lex_state = 1709, .external_lex_state = 2}, + [1593] = {.lex_state = 1706, .external_lex_state = 2}, + [1594] = {.lex_state = 1645}, + [1595] = {.lex_state = 1675, .external_lex_state = 2}, + [1596] = {.lex_state = 1675, .external_lex_state = 2}, + [1597] = {.lex_state = 1675, .external_lex_state = 2}, + [1598] = {.lex_state = 1723, .external_lex_state = 2}, + [1599] = {.lex_state = 1675, .external_lex_state = 2}, + [1600] = {.lex_state = 1706, .external_lex_state = 2}, + [1601] = {.lex_state = 1664}, + [1602] = {.lex_state = 1706, .external_lex_state = 2}, + [1603] = {.lex_state = 1709, .external_lex_state = 2}, + [1604] = {.lex_state = 1707, .external_lex_state = 2}, + [1605] = {.lex_state = 1706, .external_lex_state = 2}, + [1606] = {.lex_state = 1664}, + [1607] = {.lex_state = 1664}, + [1608] = {.lex_state = 1709, .external_lex_state = 2}, + [1609] = {.lex_state = 1686, .external_lex_state = 2}, + [1610] = {.lex_state = 1664}, + [1611] = {.lex_state = 1639}, + [1612] = {.lex_state = 1709, .external_lex_state = 2}, + [1613] = {.lex_state = 1709, .external_lex_state = 2}, + [1614] = {.lex_state = 1641}, + [1615] = {.lex_state = 1665}, + [1616] = {.lex_state = 1639}, + [1617] = {.lex_state = 1664}, + [1618] = {.lex_state = 1664}, + [1619] = {.lex_state = 1664}, + [1620] = {.lex_state = 1664}, + [1621] = {.lex_state = 1664}, + [1622] = {.lex_state = 1713, .external_lex_state = 2}, + [1623] = {.lex_state = 1664}, + [1624] = {.lex_state = 1664}, + [1625] = {.lex_state = 1664}, + [1626] = {.lex_state = 1664}, + [1627] = {.lex_state = 1664}, + [1628] = {.lex_state = 1709, .external_lex_state = 2}, + [1629] = {.lex_state = 1645}, + [1630] = {.lex_state = 1686, .external_lex_state = 2}, + [1631] = {.lex_state = 1698, .external_lex_state = 2}, + [1632] = {.lex_state = 1647}, + [1633] = {.lex_state = 1724, .external_lex_state = 2}, + [1634] = {.lex_state = 1707, .external_lex_state = 2}, + [1635] = {.lex_state = 1706, .external_lex_state = 2}, + [1636] = {.lex_state = 1647}, + [1637] = {.lex_state = 1686, .external_lex_state = 2}, + [1638] = {.lex_state = 1717, .external_lex_state = 2}, + [1639] = {.lex_state = 1713, .external_lex_state = 2}, + [1640] = {.lex_state = 1641}, + [1641] = {.lex_state = 1700, .external_lex_state = 2}, + [1642] = {.lex_state = 1724, .external_lex_state = 2}, + [1643] = {.lex_state = 1664}, + [1644] = {.lex_state = 1724, .external_lex_state = 2}, + [1645] = {.lex_state = 1641}, + [1646] = {.lex_state = 1641}, + [1647] = {.lex_state = 1686, .external_lex_state = 2}, + [1648] = {.lex_state = 1724, .external_lex_state = 2}, + [1649] = {.lex_state = 1686, .external_lex_state = 2}, + [1650] = {.lex_state = 1707, .external_lex_state = 2}, + [1651] = {.lex_state = 1664}, + [1652] = {.lex_state = 1707, .external_lex_state = 2}, + [1653] = {.lex_state = 1722, .external_lex_state = 2}, + [1654] = {.lex_state = 1686, .external_lex_state = 2}, + [1655] = {.lex_state = 1664}, + [1656] = {.lex_state = 1675, .external_lex_state = 2}, + [1657] = {.lex_state = 1703, .external_lex_state = 2}, + [1658] = {.lex_state = 1706, .external_lex_state = 2}, + [1659] = {.lex_state = 1712, .external_lex_state = 2}, + [1660] = {.lex_state = 1664}, + [1661] = {.lex_state = 1664}, + [1662] = {.lex_state = 1723, .external_lex_state = 2}, + [1663] = {.lex_state = 1723, .external_lex_state = 2}, + [1664] = {.lex_state = 1686, .external_lex_state = 2}, + [1665] = {.lex_state = 1664}, + [1666] = {.lex_state = 1664}, + [1667] = {.lex_state = 1675, .external_lex_state = 2}, + [1668] = {.lex_state = 1675, .external_lex_state = 2}, + [1669] = {.lex_state = 1699, .external_lex_state = 2}, + [1670] = {.lex_state = 1647}, + [1671] = {.lex_state = 1722, .external_lex_state = 2}, + [1672] = {.lex_state = 1723, .external_lex_state = 2}, + [1673] = {.lex_state = 1723, .external_lex_state = 2}, + [1674] = {.lex_state = 1664}, + [1675] = {.lex_state = 1724, .external_lex_state = 2}, + [1676] = {.lex_state = 1664}, + [1677] = {.lex_state = 1723, .external_lex_state = 2}, + [1678] = {.lex_state = 1664}, + [1679] = {.lex_state = 1635}, + [1680] = {.lex_state = 1701, .external_lex_state = 2}, + [1681] = {.lex_state = 1686, .external_lex_state = 2}, + [1682] = {.lex_state = 1675, .external_lex_state = 2}, + [1683] = {.lex_state = 1664}, + [1684] = {.lex_state = 1706, .external_lex_state = 2}, + [1685] = {.lex_state = 1717, .external_lex_state = 2}, + [1686] = {.lex_state = 1664}, + [1687] = {.lex_state = 1675, .external_lex_state = 2}, + [1688] = {.lex_state = 1686, .external_lex_state = 2}, + [1689] = {.lex_state = 1675, .external_lex_state = 2}, + [1690] = {.lex_state = 1706, .external_lex_state = 2}, + [1691] = {.lex_state = 1643}, + [1692] = {.lex_state = 1706, .external_lex_state = 2}, + [1693] = {.lex_state = 1675, .external_lex_state = 2}, + [1694] = {.lex_state = 1647}, + [1695] = {.lex_state = 1700, .external_lex_state = 2}, + [1696] = {.lex_state = 1675, .external_lex_state = 2}, + [1697] = {.lex_state = 1664}, + [1698] = {.lex_state = 1699, .external_lex_state = 2}, + [1699] = {.lex_state = 1641}, + [1700] = {.lex_state = 1686, .external_lex_state = 2}, + [1701] = {.lex_state = 1675, .external_lex_state = 2}, + [1702] = {.lex_state = 1706, .external_lex_state = 2}, + [1703] = {.lex_state = 1664}, + [1704] = {.lex_state = 1722, .external_lex_state = 2}, + [1705] = {.lex_state = 1702, .external_lex_state = 2}, + [1706] = {.lex_state = 1702, .external_lex_state = 2}, + [1707] = {.lex_state = 1702, .external_lex_state = 2}, + [1708] = {.lex_state = 1702, .external_lex_state = 2}, + [1709] = {.lex_state = 1702, .external_lex_state = 2}, + [1710] = {.lex_state = 1702, .external_lex_state = 2}, + [1711] = {.lex_state = 1664}, + [1712] = {.lex_state = 1702, .external_lex_state = 2}, + [1713] = {.lex_state = 1702, .external_lex_state = 2}, + [1714] = {.lex_state = 1722, .external_lex_state = 2}, + [1715] = {.lex_state = 1701, .external_lex_state = 2}, + [1716] = {.lex_state = 1702, .external_lex_state = 2}, + [1717] = {.lex_state = 1702, .external_lex_state = 2}, + [1718] = {.lex_state = 1702, .external_lex_state = 2}, + [1719] = {.lex_state = 1702, .external_lex_state = 2}, + [1720] = {.lex_state = 1702, .external_lex_state = 2}, + [1721] = {.lex_state = 1647}, + [1722] = {.lex_state = 1702, .external_lex_state = 2}, + [1723] = {.lex_state = 1702, .external_lex_state = 2}, + [1724] = {.lex_state = 1702, .external_lex_state = 2}, + [1725] = {.lex_state = 1707, .external_lex_state = 2}, + [1726] = {.lex_state = 1702, .external_lex_state = 2}, + [1727] = {.lex_state = 1645}, + [1728] = {.lex_state = 1724, .external_lex_state = 2}, + [1729] = {.lex_state = 1702, .external_lex_state = 2}, + [1730] = {.lex_state = 1702, .external_lex_state = 2}, + [1731] = {.lex_state = 1724, .external_lex_state = 2}, + [1732] = {.lex_state = 1702, .external_lex_state = 2}, + [1733] = {.lex_state = 1717, .external_lex_state = 2}, + [1734] = {.lex_state = 1702, .external_lex_state = 2}, + [1735] = {.lex_state = 1702, .external_lex_state = 2}, + [1736] = {.lex_state = 1647}, + [1737] = {.lex_state = 1675, .external_lex_state = 2}, + [1738] = {.lex_state = 1702, .external_lex_state = 2}, + [1739] = {.lex_state = 1702, .external_lex_state = 2}, + [1740] = {.lex_state = 1702, .external_lex_state = 2}, + [1741] = {.lex_state = 1702, .external_lex_state = 2}, + [1742] = {.lex_state = 1702, .external_lex_state = 2}, + [1743] = {.lex_state = 1645}, + [1744] = {.lex_state = 1722, .external_lex_state = 2}, + [1745] = {.lex_state = 1702, .external_lex_state = 2}, + [1746] = {.lex_state = 1702, .external_lex_state = 2}, + [1747] = {.lex_state = 1702, .external_lex_state = 2}, + [1748] = {.lex_state = 1702, .external_lex_state = 2}, + [1749] = {.lex_state = 1702, .external_lex_state = 2}, + [1750] = {.lex_state = 41, .external_lex_state = 2}, + [1751] = {.lex_state = 1724, .external_lex_state = 2}, + [1752] = {.lex_state = 1702, .external_lex_state = 2}, + [1753] = {.lex_state = 1702, .external_lex_state = 2}, + [1754] = {.lex_state = 1664}, + [1755] = {.lex_state = 1702, .external_lex_state = 2}, + [1756] = {.lex_state = 1702, .external_lex_state = 2}, + [1757] = {.lex_state = 1722, .external_lex_state = 2}, + [1758] = {.lex_state = 1702, .external_lex_state = 2}, + [1759] = {.lex_state = 41, .external_lex_state = 2}, + [1760] = {.lex_state = 1675, .external_lex_state = 2}, + [1761] = {.lex_state = 1702, .external_lex_state = 2}, + [1762] = {.lex_state = 1702, .external_lex_state = 2}, + [1763] = {.lex_state = 1702, .external_lex_state = 2}, + [1764] = {.lex_state = 1724, .external_lex_state = 2}, + [1765] = {.lex_state = 1702, .external_lex_state = 2}, + [1766] = {.lex_state = 1699, .external_lex_state = 2}, + [1767] = {.lex_state = 1702, .external_lex_state = 2}, + [1768] = {.lex_state = 1702, .external_lex_state = 2}, + [1769] = {.lex_state = 1664}, + [1770] = {.lex_state = 1702, .external_lex_state = 2}, + [1771] = {.lex_state = 41, .external_lex_state = 2}, + [1772] = {.lex_state = 1724, .external_lex_state = 2}, + [1773] = {.lex_state = 1702, .external_lex_state = 2}, + [1774] = {.lex_state = 1664}, + [1775] = {.lex_state = 1702, .external_lex_state = 2}, + [1776] = {.lex_state = 1702, .external_lex_state = 2}, + [1777] = {.lex_state = 1702, .external_lex_state = 2}, + [1778] = {.lex_state = 1664}, + [1779] = {.lex_state = 1702, .external_lex_state = 2}, + [1780] = {.lex_state = 1702, .external_lex_state = 2}, + [1781] = {.lex_state = 1702, .external_lex_state = 2}, + [1782] = {.lex_state = 1660}, + [1783] = {.lex_state = 1699, .external_lex_state = 2}, + [1784] = {.lex_state = 1707, .external_lex_state = 2}, + [1785] = {.lex_state = 1702, .external_lex_state = 2}, + [1786] = {.lex_state = 1702, .external_lex_state = 2}, + [1787] = {.lex_state = 1700, .external_lex_state = 2}, + [1788] = {.lex_state = 1702, .external_lex_state = 2}, + [1789] = {.lex_state = 1702, .external_lex_state = 2}, + [1790] = {.lex_state = 1702, .external_lex_state = 2}, + [1791] = {.lex_state = 1702, .external_lex_state = 2}, + [1792] = {.lex_state = 1707, .external_lex_state = 2}, + [1793] = {.lex_state = 1702, .external_lex_state = 2}, + [1794] = {.lex_state = 1702, .external_lex_state = 2}, + [1795] = {.lex_state = 1702, .external_lex_state = 2}, + [1796] = {.lex_state = 1702, .external_lex_state = 2}, + [1797] = {.lex_state = 1702, .external_lex_state = 2}, + [1798] = {.lex_state = 1702, .external_lex_state = 2}, + [1799] = {.lex_state = 1702, .external_lex_state = 2}, + [1800] = {.lex_state = 1702, .external_lex_state = 2}, + [1801] = {.lex_state = 1702, .external_lex_state = 2}, + [1802] = {.lex_state = 1702, .external_lex_state = 2}, + [1803] = {.lex_state = 1702, .external_lex_state = 2}, + [1804] = {.lex_state = 1702, .external_lex_state = 2}, + [1805] = {.lex_state = 1702, .external_lex_state = 2}, + [1806] = {.lex_state = 1702, .external_lex_state = 2}, + [1807] = {.lex_state = 1700, .external_lex_state = 2}, + [1808] = {.lex_state = 1702, .external_lex_state = 2}, + [1809] = {.lex_state = 1702, .external_lex_state = 2}, + [1810] = {.lex_state = 1702, .external_lex_state = 2}, + [1811] = {.lex_state = 1717, .external_lex_state = 2}, + [1812] = {.lex_state = 1664}, + [1813] = {.lex_state = 1702, .external_lex_state = 2}, + [1814] = {.lex_state = 1702, .external_lex_state = 2}, + [1815] = {.lex_state = 1702, .external_lex_state = 2}, + [1816] = {.lex_state = 1702, .external_lex_state = 2}, + [1817] = {.lex_state = 1702, .external_lex_state = 2}, + [1818] = {.lex_state = 1702, .external_lex_state = 2}, + [1819] = {.lex_state = 1664}, + [1820] = {.lex_state = 1664}, + [1821] = {.lex_state = 1651}, + [1822] = {.lex_state = 1702, .external_lex_state = 2}, + [1823] = {.lex_state = 1664}, + [1824] = {.lex_state = 45, .external_lex_state = 2}, + [1825] = {.lex_state = 1702, .external_lex_state = 2}, + [1826] = {.lex_state = 1664}, + [1827] = {.lex_state = 1702, .external_lex_state = 2}, + [1828] = {.lex_state = 1702, .external_lex_state = 2}, + [1829] = {.lex_state = 1664}, + [1830] = {.lex_state = 1702, .external_lex_state = 2}, + [1831] = {.lex_state = 1647}, + [1832] = {.lex_state = 1702, .external_lex_state = 2}, + [1833] = {.lex_state = 1702, .external_lex_state = 2}, + [1834] = {.lex_state = 1702, .external_lex_state = 2}, + [1835] = {.lex_state = 1702, .external_lex_state = 2}, + [1836] = {.lex_state = 1702, .external_lex_state = 2}, + [1837] = {.lex_state = 1664}, + [1838] = {.lex_state = 1702, .external_lex_state = 2}, + [1839] = {.lex_state = 1664}, + [1840] = {.lex_state = 1664}, + [1841] = {.lex_state = 1664}, + [1842] = {.lex_state = 1664}, + [1843] = {.lex_state = 1702, .external_lex_state = 2}, + [1844] = {.lex_state = 1660}, + [1845] = {.lex_state = 1664}, + [1846] = {.lex_state = 1702, .external_lex_state = 2}, + [1847] = {.lex_state = 1702, .external_lex_state = 2}, + [1848] = {.lex_state = 1702, .external_lex_state = 2}, + [1849] = {.lex_state = 1702, .external_lex_state = 2}, + [1850] = {.lex_state = 1702, .external_lex_state = 2}, + [1851] = {.lex_state = 1649}, + [1852] = {.lex_state = 1702, .external_lex_state = 2}, + [1853] = {.lex_state = 1664}, + [1854] = {.lex_state = 1702, .external_lex_state = 2}, + [1855] = {.lex_state = 1647}, + [1856] = {.lex_state = 1702, .external_lex_state = 2}, + [1857] = {.lex_state = 1664}, + [1858] = {.lex_state = 1664}, + [1859] = {.lex_state = 45, .external_lex_state = 2}, + [1860] = {.lex_state = 1664}, + [1861] = {.lex_state = 1664}, + [1862] = {.lex_state = 1702, .external_lex_state = 2}, + [1863] = {.lex_state = 1664}, + [1864] = {.lex_state = 1702, .external_lex_state = 2}, + [1865] = {.lex_state = 1702, .external_lex_state = 2}, + [1866] = {.lex_state = 1664}, + [1867] = {.lex_state = 1702, .external_lex_state = 2}, + [1868] = {.lex_state = 1664}, + [1869] = {.lex_state = 1702, .external_lex_state = 2}, + [1870] = {.lex_state = 1664}, + [1871] = {.lex_state = 1664}, + [1872] = {.lex_state = 1702, .external_lex_state = 2}, + [1873] = {.lex_state = 1664}, + [1874] = {.lex_state = 1702, .external_lex_state = 2}, + [1875] = {.lex_state = 1702, .external_lex_state = 2}, + [1876] = {.lex_state = 1664}, + [1877] = {.lex_state = 1702, .external_lex_state = 2}, + [1878] = {.lex_state = 1664}, + [1879] = {.lex_state = 1664}, + [1880] = {.lex_state = 1664}, + [1881] = {.lex_state = 1702, .external_lex_state = 2}, + [1882] = {.lex_state = 1702, .external_lex_state = 2}, + [1883] = {.lex_state = 1664}, + [1884] = {.lex_state = 1664}, + [1885] = {.lex_state = 1702, .external_lex_state = 2}, + [1886] = {.lex_state = 1702, .external_lex_state = 2}, + [1887] = {.lex_state = 1702, .external_lex_state = 2}, + [1888] = {.lex_state = 1702, .external_lex_state = 2}, + [1889] = {.lex_state = 1702, .external_lex_state = 2}, + [1890] = {.lex_state = 1702, .external_lex_state = 2}, + [1891] = {.lex_state = 1702, .external_lex_state = 2}, + [1892] = {.lex_state = 1647}, + [1893] = {.lex_state = 1702, .external_lex_state = 2}, + [1894] = {.lex_state = 1702, .external_lex_state = 2}, + [1895] = {.lex_state = 1702, .external_lex_state = 2}, + [1896] = {.lex_state = 1664}, + [1897] = {.lex_state = 1702, .external_lex_state = 2}, + [1898] = {.lex_state = 1702, .external_lex_state = 2}, + [1899] = {.lex_state = 1702, .external_lex_state = 2}, + [1900] = {.lex_state = 1702, .external_lex_state = 2}, + [1901] = {.lex_state = 1702, .external_lex_state = 2}, + [1902] = {.lex_state = 1702, .external_lex_state = 2}, + [1903] = {.lex_state = 1702, .external_lex_state = 2}, + [1904] = {.lex_state = 1702, .external_lex_state = 2}, + [1905] = {.lex_state = 45, .external_lex_state = 2}, + [1906] = {.lex_state = 1702, .external_lex_state = 2}, + [1907] = {.lex_state = 1702, .external_lex_state = 2}, + [1908] = {.lex_state = 1702, .external_lex_state = 2}, + [1909] = {.lex_state = 1702, .external_lex_state = 2}, + [1910] = {.lex_state = 1702, .external_lex_state = 2}, + [1911] = {.lex_state = 1702, .external_lex_state = 2}, + [1912] = {.lex_state = 1702, .external_lex_state = 2}, + [1913] = {.lex_state = 1702, .external_lex_state = 2}, + [1914] = {.lex_state = 1647}, + [1915] = {.lex_state = 1702, .external_lex_state = 2}, + [1916] = {.lex_state = 1702, .external_lex_state = 2}, + [1917] = {.lex_state = 1702, .external_lex_state = 2}, + [1918] = {.lex_state = 1702, .external_lex_state = 2}, + [1919] = {.lex_state = 1664}, + [1920] = {.lex_state = 1664}, + [1921] = {.lex_state = 1702, .external_lex_state = 2}, + [1922] = {.lex_state = 1702, .external_lex_state = 2}, + [1923] = {.lex_state = 1702, .external_lex_state = 2}, + [1924] = {.lex_state = 1702, .external_lex_state = 2}, + [1925] = {.lex_state = 1702, .external_lex_state = 2}, + [1926] = {.lex_state = 1702, .external_lex_state = 2}, + [1927] = {.lex_state = 1702, .external_lex_state = 2}, + [1928] = {.lex_state = 1702, .external_lex_state = 2}, + [1929] = {.lex_state = 1702, .external_lex_state = 2}, + [1930] = {.lex_state = 1647}, + [1931] = {.lex_state = 1702, .external_lex_state = 2}, + [1932] = {.lex_state = 1702, .external_lex_state = 2}, + [1933] = {.lex_state = 1702, .external_lex_state = 2}, + [1934] = {.lex_state = 1664}, + [1935] = {.lex_state = 1702, .external_lex_state = 2}, + [1936] = {.lex_state = 1702, .external_lex_state = 2}, + [1937] = {.lex_state = 1647}, + [1938] = {.lex_state = 1702, .external_lex_state = 2}, + [1939] = {.lex_state = 1702, .external_lex_state = 2}, + [1940] = {.lex_state = 1702, .external_lex_state = 2}, + [1941] = {.lex_state = 1702, .external_lex_state = 2}, + [1942] = {.lex_state = 1702, .external_lex_state = 2}, + [1943] = {.lex_state = 1702, .external_lex_state = 2}, + [1944] = {.lex_state = 1702, .external_lex_state = 2}, + [1945] = {.lex_state = 1702, .external_lex_state = 2}, + [1946] = {.lex_state = 45, .external_lex_state = 2}, + [1947] = {.lex_state = 45, .external_lex_state = 2}, + [1948] = {.lex_state = 45, .external_lex_state = 2}, + [1949] = {.lex_state = 1702, .external_lex_state = 2}, + [1950] = {.lex_state = 1664}, + [1951] = {.lex_state = 1664}, + [1952] = {.lex_state = 1664}, + [1953] = {.lex_state = 1664}, + [1954] = {.lex_state = 1664}, + [1955] = {.lex_state = 1664}, + [1956] = {.lex_state = 1664}, + [1957] = {.lex_state = 1664}, + [1958] = {.lex_state = 1664}, + [1959] = {.lex_state = 1664}, + [1960] = {.lex_state = 1664}, + [1961] = {.lex_state = 1664}, + [1962] = {.lex_state = 1664}, + [1963] = {.lex_state = 1664}, + [1964] = {.lex_state = 1664}, + [1965] = {.lex_state = 1664}, + [1966] = {.lex_state = 1664}, + [1967] = {.lex_state = 1664}, + [1968] = {.lex_state = 1664}, + [1969] = {.lex_state = 1664}, + [1970] = {.lex_state = 1664}, + [1971] = {.lex_state = 1664}, + [1972] = {.lex_state = 1664}, + [1973] = {.lex_state = 1660}, + [1974] = {.lex_state = 1664}, + [1975] = {.lex_state = 1664}, + [1976] = {.lex_state = 1664}, + [1977] = {.lex_state = 1664}, + [1978] = {.lex_state = 1664}, + [1979] = {.lex_state = 1664}, + [1980] = {.lex_state = 1664}, + [1981] = {.lex_state = 1664}, + [1982] = {.lex_state = 1664}, + [1983] = {.lex_state = 1664}, + [1984] = {.lex_state = 1651}, + [1985] = {.lex_state = 1664}, + [1986] = {.lex_state = 1664}, + [1987] = {.lex_state = 1664}, + [1988] = {.lex_state = 1664}, + [1989] = {.lex_state = 1664}, + [1990] = {.lex_state = 1664}, + [1991] = {.lex_state = 1664}, + [1992] = {.lex_state = 1664}, + [1993] = {.lex_state = 1664}, + [1994] = {.lex_state = 1664}, + [1995] = {.lex_state = 1664}, + [1996] = {.lex_state = 1664}, + [1997] = {.lex_state = 1664}, + [1998] = {.lex_state = 1664}, + [1999] = {.lex_state = 1664}, + [2000] = {.lex_state = 1653}, + [2001] = {.lex_state = 1653}, + [2002] = {.lex_state = 1664}, + [2003] = {.lex_state = 1664}, + [2004] = {.lex_state = 1664}, + [2005] = {.lex_state = 1664}, + [2006] = {.lex_state = 1649}, + [2007] = {.lex_state = 1664}, + [2008] = {.lex_state = 1664}, + [2009] = {.lex_state = 1664}, + [2010] = {.lex_state = 1664}, + [2011] = {.lex_state = 1664}, + [2012] = {.lex_state = 1664}, + [2013] = {.lex_state = 1664}, + [2014] = {.lex_state = 1664}, + [2015] = {.lex_state = 1664}, + [2016] = {.lex_state = 1664}, + [2017] = {.lex_state = 1664}, + [2018] = {.lex_state = 1664}, + [2019] = {.lex_state = 1664}, + [2020] = {.lex_state = 1664}, + [2021] = {.lex_state = 1664}, + [2022] = {.lex_state = 1664}, + [2023] = {.lex_state = 1664}, + [2024] = {.lex_state = 1664}, + [2025] = {.lex_state = 1664}, + [2026] = {.lex_state = 1664}, + [2027] = {.lex_state = 1664}, + [2028] = {.lex_state = 1664}, + [2029] = {.lex_state = 1664}, + [2030] = {.lex_state = 1664}, + [2031] = {.lex_state = 1664}, + [2032] = {.lex_state = 1664}, + [2033] = {.lex_state = 1664}, + [2034] = {.lex_state = 1664}, + [2035] = {.lex_state = 1664}, + [2036] = {.lex_state = 1664}, + [2037] = {.lex_state = 1664}, + [2038] = {.lex_state = 1664}, + [2039] = {.lex_state = 1664}, + [2040] = {.lex_state = 1664}, + [2041] = {.lex_state = 1664}, + [2042] = {.lex_state = 1664}, + [2043] = {.lex_state = 1664}, + [2044] = {.lex_state = 1664}, + [2045] = {.lex_state = 1664}, + [2046] = {.lex_state = 1664}, + [2047] = {.lex_state = 1664}, + [2048] = {.lex_state = 1664}, + [2049] = {.lex_state = 1694, .external_lex_state = 2}, + [2050] = {.lex_state = 1664}, + [2051] = {.lex_state = 1664}, + [2052] = {.lex_state = 1694, .external_lex_state = 2}, + [2053] = {.lex_state = 1664}, + [2054] = {.lex_state = 1664}, + [2055] = {.lex_state = 1664}, + [2056] = {.lex_state = 1664}, + [2057] = {.lex_state = 1664}, + [2058] = {.lex_state = 1664}, + [2059] = {.lex_state = 1664}, + [2060] = {.lex_state = 1664}, + [2061] = {.lex_state = 1664}, + [2062] = {.lex_state = 1664}, + [2063] = {.lex_state = 1664}, + [2064] = {.lex_state = 1664}, + [2065] = {.lex_state = 1664}, + [2066] = {.lex_state = 1664}, + [2067] = {.lex_state = 1694, .external_lex_state = 2}, + [2068] = {.lex_state = 1694, .external_lex_state = 2}, + [2069] = {.lex_state = 1664}, + [2070] = {.lex_state = 1664}, + [2071] = {.lex_state = 1664}, + [2072] = {.lex_state = 1664}, + [2073] = {.lex_state = 1664}, + [2074] = {.lex_state = 45, .external_lex_state = 2}, + [2075] = {.lex_state = 1655}, + [2076] = {.lex_state = 1655}, + [2077] = {.lex_state = 45, .external_lex_state = 2}, + [2078] = {.lex_state = 1655}, + [2079] = {.lex_state = 1655}, + [2080] = {.lex_state = 1655}, + [2081] = {.lex_state = 1664}, + [2082] = {.lex_state = 1664}, + [2083] = {.lex_state = 1664}, + [2084] = {.lex_state = 1664}, + [2085] = {.lex_state = 1664}, + [2086] = {.lex_state = 1664}, + [2087] = {.lex_state = 1664}, + [2088] = {.lex_state = 1664}, + [2089] = {.lex_state = 1664}, + [2090] = {.lex_state = 1664}, + [2091] = {.lex_state = 1664}, + [2092] = {.lex_state = 1664}, + [2093] = {.lex_state = 1664}, + [2094] = {.lex_state = 1664}, + [2095] = {.lex_state = 1664}, + [2096] = {.lex_state = 1664}, + [2097] = {.lex_state = 1664}, + [2098] = {.lex_state = 1664}, + [2099] = {.lex_state = 1664}, + [2100] = {.lex_state = 1664}, + [2101] = {.lex_state = 1664}, + [2102] = {.lex_state = 1664}, + [2103] = {.lex_state = 1664}, + [2104] = {.lex_state = 1664}, + [2105] = {.lex_state = 1664}, + [2106] = {.lex_state = 1664}, + [2107] = {.lex_state = 1664}, + [2108] = {.lex_state = 1664}, + [2109] = {.lex_state = 1664}, + [2110] = {.lex_state = 1664}, + [2111] = {.lex_state = 1664}, + [2112] = {.lex_state = 1664}, + [2113] = {.lex_state = 1657}, + [2114] = {.lex_state = 1657}, + [2115] = {.lex_state = 1664}, + [2116] = {.lex_state = 45, .external_lex_state = 2}, + [2117] = {.lex_state = 1653}, + [2118] = {.lex_state = 1664}, + [2119] = {.lex_state = 1657}, + [2120] = {.lex_state = 1657}, + [2121] = {.lex_state = 1664}, + [2122] = {.lex_state = 1655}, + [2123] = {.lex_state = 1655}, + [2124] = {.lex_state = 45, .external_lex_state = 2}, + [2125] = {.lex_state = 1664}, + [2126] = {.lex_state = 1664}, + [2127] = {.lex_state = 1664}, + [2128] = {.lex_state = 1664}, + [2129] = {.lex_state = 1664}, + [2130] = {.lex_state = 1657}, + [2131] = {.lex_state = 1664}, + [2132] = {.lex_state = 1664}, + [2133] = {.lex_state = 1655}, + [2134] = {.lex_state = 1664}, + [2135] = {.lex_state = 1653}, + [2136] = {.lex_state = 1655}, + [2137] = {.lex_state = 1664}, + [2138] = {.lex_state = 1664}, + [2139] = {.lex_state = 1664}, + [2140] = {.lex_state = 1664}, + [2141] = {.lex_state = 1664}, + [2142] = {.lex_state = 1664}, + [2143] = {.lex_state = 1664}, + [2144] = {.lex_state = 1664}, + [2145] = {.lex_state = 1664}, + [2146] = {.lex_state = 1664}, + [2147] = {.lex_state = 45, .external_lex_state = 2}, + [2148] = {.lex_state = 45, .external_lex_state = 2}, + [2149] = {.lex_state = 45, .external_lex_state = 2}, + [2150] = {.lex_state = 45, .external_lex_state = 2}, + [2151] = {.lex_state = 45, .external_lex_state = 2}, + [2152] = {.lex_state = 45, .external_lex_state = 2}, + [2153] = {.lex_state = 1664}, + [2154] = {.lex_state = 1664}, + [2155] = {.lex_state = 1664}, + [2156] = {.lex_state = 1664}, + [2157] = {.lex_state = 1664}, + [2158] = {.lex_state = 1664}, + [2159] = {.lex_state = 1664}, + [2160] = {.lex_state = 1664}, + [2161] = {.lex_state = 1664}, + [2162] = {.lex_state = 1664}, + [2163] = {.lex_state = 1664}, + [2164] = {.lex_state = 1664}, + [2165] = {.lex_state = 1664}, + [2166] = {.lex_state = 1721, .external_lex_state = 2}, + [2167] = {.lex_state = 1664}, + [2168] = {.lex_state = 1664}, + [2169] = {.lex_state = 1664}, + [2170] = {.lex_state = 1664}, + [2171] = {.lex_state = 1664}, + [2172] = {.lex_state = 1664}, + [2173] = {.lex_state = 1664}, + [2174] = {.lex_state = 1664}, + [2175] = {.lex_state = 1664}, + [2176] = {.lex_state = 1664}, + [2177] = {.lex_state = 1664}, + [2178] = {.lex_state = 1664}, + [2179] = {.lex_state = 1664}, + [2180] = {.lex_state = 1664}, + [2181] = {.lex_state = 1664}, + [2182] = {.lex_state = 1664}, + [2183] = {.lex_state = 1664}, + [2184] = {.lex_state = 1664}, + [2185] = {.lex_state = 1664}, + [2186] = {.lex_state = 1664}, + [2187] = {.lex_state = 1664}, + [2188] = {.lex_state = 1664}, + [2189] = {.lex_state = 1664}, + [2190] = {.lex_state = 1664}, + [2191] = {.lex_state = 1664}, + [2192] = {.lex_state = 1664}, + [2193] = {.lex_state = 1664}, + [2194] = {.lex_state = 1664}, + [2195] = {.lex_state = 1664}, + [2196] = {.lex_state = 1664}, + [2197] = {.lex_state = 1664}, + [2198] = {.lex_state = 1664}, + [2199] = {.lex_state = 1664}, + [2200] = {.lex_state = 1664}, + [2201] = {.lex_state = 1664}, + [2202] = {.lex_state = 1655}, + [2203] = {.lex_state = 1664}, + [2204] = {.lex_state = 1664}, + [2205] = {.lex_state = 1664}, + [2206] = {.lex_state = 1664}, + [2207] = {.lex_state = 1664}, + [2208] = {.lex_state = 41, .external_lex_state = 2}, + [2209] = {.lex_state = 1664}, + [2210] = {.lex_state = 1664}, + [2211] = {.lex_state = 1664}, + [2212] = {.lex_state = 1664}, + [2213] = {.lex_state = 41, .external_lex_state = 2}, + [2214] = {.lex_state = 1664}, + [2215] = {.lex_state = 1664}, + [2216] = {.lex_state = 1664}, + [2217] = {.lex_state = 1664}, + [2218] = {.lex_state = 1664}, + [2219] = {.lex_state = 1664}, + [2220] = {.lex_state = 1664}, + [2221] = {.lex_state = 1664}, + [2222] = {.lex_state = 103, .external_lex_state = 2}, + [2223] = {.lex_state = 1664}, + [2224] = {.lex_state = 1664}, + [2225] = {.lex_state = 1664}, + [2226] = {.lex_state = 1664}, + [2227] = {.lex_state = 1664}, + [2228] = {.lex_state = 1664}, + [2229] = {.lex_state = 1664}, + [2230] = {.lex_state = 1664}, + [2231] = {.lex_state = 41, .external_lex_state = 2}, + [2232] = {.lex_state = 1664}, + [2233] = {.lex_state = 1664}, + [2234] = {.lex_state = 1721, .external_lex_state = 2}, + [2235] = {.lex_state = 1664}, + [2236] = {.lex_state = 1664}, + [2237] = {.lex_state = 1721, .external_lex_state = 2}, + [2238] = {.lex_state = 1655}, + [2239] = {.lex_state = 1664}, + [2240] = {.lex_state = 1664}, + [2241] = {.lex_state = 1664}, + [2242] = {.lex_state = 1664}, + [2243] = {.lex_state = 1664}, + [2244] = {.lex_state = 1664}, + [2245] = {.lex_state = 1664}, + [2246] = {.lex_state = 1664}, + [2247] = {.lex_state = 1664}, + [2248] = {.lex_state = 1664}, + [2249] = {.lex_state = 1664}, + [2250] = {.lex_state = 1664}, + [2251] = {.lex_state = 1664}, + [2252] = {.lex_state = 1664}, + [2253] = {.lex_state = 1664}, + [2254] = {.lex_state = 1664}, + [2255] = {.lex_state = 1664}, + [2256] = {.lex_state = 1655}, + [2257] = {.lex_state = 1664}, + [2258] = {.lex_state = 1664}, + [2259] = {.lex_state = 1664}, + [2260] = {.lex_state = 1664}, + [2261] = {.lex_state = 1664}, + [2262] = {.lex_state = 1664}, + [2263] = {.lex_state = 1664}, + [2264] = {.lex_state = 1664}, + [2265] = {.lex_state = 1655}, + [2266] = {.lex_state = 1664}, + [2267] = {.lex_state = 1660}, + [2268] = {.lex_state = 1664}, + [2269] = {.lex_state = 1664}, + [2270] = {.lex_state = 1664}, + [2271] = {.lex_state = 1664}, + [2272] = {.lex_state = 1664}, + [2273] = {.lex_state = 1655}, + [2274] = {.lex_state = 1664}, + [2275] = {.lex_state = 1664}, + [2276] = {.lex_state = 1655}, + [2277] = {.lex_state = 1655}, + [2278] = {.lex_state = 1657}, + [2279] = {.lex_state = 1655}, + [2280] = {.lex_state = 1655}, + [2281] = {.lex_state = 1664}, + [2282] = {.lex_state = 1664}, + [2283] = {.lex_state = 1664}, + [2284] = {.lex_state = 1664}, + [2285] = {.lex_state = 1657}, + [2286] = {.lex_state = 1657}, + [2287] = {.lex_state = 1664}, + [2288] = {.lex_state = 1664}, + [2289] = {.lex_state = 41, .external_lex_state = 2}, + [2290] = {.lex_state = 1664}, + [2291] = {.lex_state = 1664}, + [2292] = {.lex_state = 1664}, + [2293] = {.lex_state = 1664}, + [2294] = {.lex_state = 1657}, + [2295] = {.lex_state = 1657}, + [2296] = {.lex_state = 1664}, + [2297] = {.lex_state = 1655}, + [2298] = {.lex_state = 1664}, + [2299] = {.lex_state = 1664}, + [2300] = {.lex_state = 1664}, + [2301] = {.lex_state = 1664}, + [2302] = {.lex_state = 1664}, + [2303] = {.lex_state = 1664}, + [2304] = {.lex_state = 1664}, + [2305] = {.lex_state = 1664}, + [2306] = {.lex_state = 1664}, + [2307] = {.lex_state = 1664}, + [2308] = {.lex_state = 1664}, + [2309] = {.lex_state = 1664}, + [2310] = {.lex_state = 1664}, + [2311] = {.lex_state = 1664}, + [2312] = {.lex_state = 1664}, + [2313] = {.lex_state = 1664}, + [2314] = {.lex_state = 1664}, + [2315] = {.lex_state = 1721, .external_lex_state = 2}, + [2316] = {.lex_state = 1664}, + [2317] = {.lex_state = 1721, .external_lex_state = 2}, + [2318] = {.lex_state = 1664}, + [2319] = {.lex_state = 1664}, + [2320] = {.lex_state = 1664}, + [2321] = {.lex_state = 1664}, + [2322] = {.lex_state = 1664}, + [2323] = {.lex_state = 1664}, + [2324] = {.lex_state = 41, .external_lex_state = 2}, + [2325] = {.lex_state = 1664}, + [2326] = {.lex_state = 1664}, + [2327] = {.lex_state = 1664}, + [2328] = {.lex_state = 1664}, + [2329] = {.lex_state = 128, .external_lex_state = 2}, + [2330] = {.lex_state = 137, .external_lex_state = 2}, + [2331] = {.lex_state = 1664}, + [2332] = {.lex_state = 1664}, + [2333] = {.lex_state = 1664}, + [2334] = {.lex_state = 1664}, + [2335] = {.lex_state = 1664}, + [2336] = {.lex_state = 1664}, + [2337] = {.lex_state = 1664}, + [2338] = {.lex_state = 1664}, + [2339] = {.lex_state = 1664}, + [2340] = {.lex_state = 1664}, + [2341] = {.lex_state = 1664}, + [2342] = {.lex_state = 1664}, + [2343] = {.lex_state = 1664}, + [2344] = {.lex_state = 1664}, + [2345] = {.lex_state = 1721, .external_lex_state = 2}, + [2346] = {.lex_state = 1664}, + [2347] = {.lex_state = 1664}, + [2348] = {.lex_state = 1664}, + [2349] = {.lex_state = 41, .external_lex_state = 2}, + [2350] = {.lex_state = 1664}, + [2351] = {.lex_state = 1664}, + [2352] = {.lex_state = 1664}, + [2353] = {.lex_state = 1664}, + [2354] = {.lex_state = 1664}, + [2355] = {.lex_state = 1664}, + [2356] = {.lex_state = 1664}, + [2357] = {.lex_state = 1664}, + [2358] = {.lex_state = 1664}, + [2359] = {.lex_state = 1664}, + [2360] = {.lex_state = 1664}, + [2361] = {.lex_state = 1664}, + [2362] = {.lex_state = 101, .external_lex_state = 2}, + [2363] = {.lex_state = 1664}, + [2364] = {.lex_state = 1664}, + [2365] = {.lex_state = 1664}, + [2366] = {.lex_state = 1664}, + [2367] = {.lex_state = 1664}, + [2368] = {.lex_state = 1664}, + [2369] = {.lex_state = 1664}, + [2370] = {.lex_state = 1664}, + [2371] = {.lex_state = 1664}, + [2372] = {.lex_state = 1664}, + [2373] = {.lex_state = 1664}, + [2374] = {.lex_state = 1664}, + [2375] = {.lex_state = 1664}, + [2376] = {.lex_state = 1664}, + [2377] = {.lex_state = 1664}, + [2378] = {.lex_state = 1664}, + [2379] = {.lex_state = 1664}, + [2380] = {.lex_state = 1664}, + [2381] = {.lex_state = 1664}, + [2382] = {.lex_state = 1664}, + [2383] = {.lex_state = 1664}, + [2384] = {.lex_state = 1664}, + [2385] = {.lex_state = 1664}, + [2386] = {.lex_state = 1664}, + [2387] = {.lex_state = 1664}, + [2388] = {.lex_state = 1664}, + [2389] = {.lex_state = 1664}, + [2390] = {.lex_state = 1664}, + [2391] = {.lex_state = 1664}, + [2392] = {.lex_state = 1664}, + [2393] = {.lex_state = 1664}, + [2394] = {.lex_state = 1664}, + [2395] = {.lex_state = 1664}, + [2396] = {.lex_state = 1664}, + [2397] = {.lex_state = 1664}, + [2398] = {.lex_state = 1664}, + [2399] = {.lex_state = 1664}, + [2400] = {.lex_state = 1664}, + [2401] = {.lex_state = 41, .external_lex_state = 2}, + [2402] = {.lex_state = 1664}, + [2403] = {.lex_state = 1664}, + [2404] = {.lex_state = 1664}, + [2405] = {.lex_state = 1664}, + [2406] = {.lex_state = 1664}, + [2407] = {.lex_state = 1664}, + [2408] = {.lex_state = 1664}, + [2409] = {.lex_state = 1664}, + [2410] = {.lex_state = 1664}, + [2411] = {.lex_state = 1664}, + [2412] = {.lex_state = 1664}, + [2413] = {.lex_state = 1664}, + [2414] = {.lex_state = 1664}, + [2415] = {.lex_state = 41, .external_lex_state = 2}, + [2416] = {.lex_state = 232, .external_lex_state = 2}, + [2417] = {.lex_state = 1664}, + [2418] = {.lex_state = 102, .external_lex_state = 2}, + [2419] = {.lex_state = 1655}, + [2420] = {.lex_state = 102, .external_lex_state = 2}, + [2421] = {.lex_state = 1664}, + [2422] = {.lex_state = 234, .external_lex_state = 2}, + [2423] = {.lex_state = 1664}, + [2424] = {.lex_state = 41, .external_lex_state = 2}, + [2425] = {.lex_state = 1664}, + [2426] = {.lex_state = 1664}, + [2427] = {.lex_state = 1664}, + [2428] = {.lex_state = 1664}, + [2429] = {.lex_state = 1664}, + [2430] = {.lex_state = 1721, .external_lex_state = 2}, + [2431] = {.lex_state = 41, .external_lex_state = 2}, + [2432] = {.lex_state = 147, .external_lex_state = 2}, + [2433] = {.lex_state = 1664}, + [2434] = {.lex_state = 1664}, + [2435] = {.lex_state = 41, .external_lex_state = 2}, + [2436] = {.lex_state = 1664}, + [2437] = {.lex_state = 41, .external_lex_state = 2}, + [2438] = {.lex_state = 41, .external_lex_state = 2}, + [2439] = {.lex_state = 41, .external_lex_state = 2}, + [2440] = {.lex_state = 1664}, + [2441] = {.lex_state = 1664}, + [2442] = {.lex_state = 1664}, + [2443] = {.lex_state = 1664}, + [2444] = {.lex_state = 1664}, + [2445] = {.lex_state = 1721, .external_lex_state = 2}, + [2446] = {.lex_state = 1664}, + [2447] = {.lex_state = 1664}, + [2448] = {.lex_state = 1664}, + [2449] = {.lex_state = 1664}, + [2450] = {.lex_state = 1664}, + [2451] = {.lex_state = 1664}, + [2452] = {.lex_state = 1664}, + [2453] = {.lex_state = 130, .external_lex_state = 2}, + [2454] = {.lex_state = 1664}, + [2455] = {.lex_state = 130, .external_lex_state = 2}, + [2456] = {.lex_state = 1664}, + [2457] = {.lex_state = 1664}, + [2458] = {.lex_state = 1664}, + [2459] = {.lex_state = 1720, .external_lex_state = 2}, + [2460] = {.lex_state = 1664}, + [2461] = {.lex_state = 100, .external_lex_state = 2}, + [2462] = {.lex_state = 1664}, + [2463] = {.lex_state = 1664}, + [2464] = {.lex_state = 1664}, + [2465] = {.lex_state = 1664}, + [2466] = {.lex_state = 1720, .external_lex_state = 2}, + [2467] = {.lex_state = 1720, .external_lex_state = 2}, + [2468] = {.lex_state = 1664}, + [2469] = {.lex_state = 1664}, + [2470] = {.lex_state = 1664}, + [2471] = {.lex_state = 1664}, + [2472] = {.lex_state = 1664}, + [2473] = {.lex_state = 1664}, + [2474] = {.lex_state = 1664}, + [2475] = {.lex_state = 1664}, + [2476] = {.lex_state = 1664}, + [2477] = {.lex_state = 1664}, + [2478] = {.lex_state = 1664}, + [2479] = {.lex_state = 1664}, + [2480] = {.lex_state = 1664}, + [2481] = {.lex_state = 1664}, + [2482] = {.lex_state = 1664}, + [2483] = {.lex_state = 1664}, + [2484] = {.lex_state = 1664}, + [2485] = {.lex_state = 1664}, + [2486] = {.lex_state = 1664}, + [2487] = {.lex_state = 1664}, + [2488] = {.lex_state = 1664}, + [2489] = {.lex_state = 1664}, + [2490] = {.lex_state = 1664}, + [2491] = {.lex_state = 1664}, + [2492] = {.lex_state = 1664}, + [2493] = {.lex_state = 1664}, + [2494] = {.lex_state = 1664}, + [2495] = {.lex_state = 1664}, + [2496] = {.lex_state = 1664}, + [2497] = {.lex_state = 231, .external_lex_state = 2}, + [2498] = {.lex_state = 1664}, + [2499] = {.lex_state = 1664}, + [2500] = {.lex_state = 1664}, + [2501] = {.lex_state = 1664}, + [2502] = {.lex_state = 1664}, + [2503] = {.lex_state = 1664}, + [2504] = {.lex_state = 1664}, + [2505] = {.lex_state = 231, .external_lex_state = 2}, + [2506] = {.lex_state = 1664}, + [2507] = {.lex_state = 1664}, + [2508] = {.lex_state = 1664}, + [2509] = {.lex_state = 1664}, + [2510] = {.lex_state = 1664}, + [2511] = {.lex_state = 1664}, + [2512] = {.lex_state = 1664}, + [2513] = {.lex_state = 1664}, + [2514] = {.lex_state = 1664}, + [2515] = {.lex_state = 1664}, + [2516] = {.lex_state = 1664}, + [2517] = {.lex_state = 1664}, + [2518] = {.lex_state = 1664}, + [2519] = {.lex_state = 145, .external_lex_state = 2}, + [2520] = {.lex_state = 1664}, + [2521] = {.lex_state = 1664}, + [2522] = {.lex_state = 1664}, + [2523] = {.lex_state = 100, .external_lex_state = 2}, + [2524] = {.lex_state = 1664}, + [2525] = {.lex_state = 1664}, + [2526] = {.lex_state = 1664}, + [2527] = {.lex_state = 1664}, + [2528] = {.lex_state = 1721, .external_lex_state = 2}, + [2529] = {.lex_state = 1664}, + [2530] = {.lex_state = 1664}, + [2531] = {.lex_state = 1664}, + [2532] = {.lex_state = 1664}, + [2533] = {.lex_state = 146, .external_lex_state = 2}, + [2534] = {.lex_state = 1664}, + [2535] = {.lex_state = 131, .external_lex_state = 2}, + [2536] = {.lex_state = 1664}, + [2537] = {.lex_state = 1664}, + [2538] = {.lex_state = 1664}, + [2539] = {.lex_state = 1664}, + [2540] = {.lex_state = 1664}, + [2541] = {.lex_state = 1721, .external_lex_state = 2}, + [2542] = {.lex_state = 146, .external_lex_state = 2}, + [2543] = {.lex_state = 146, .external_lex_state = 2}, + [2544] = {.lex_state = 1664}, + [2545] = {.lex_state = 1664}, + [2546] = {.lex_state = 1664}, + [2547] = {.lex_state = 1664}, + [2548] = {.lex_state = 146, .external_lex_state = 2}, + [2549] = {.lex_state = 1664}, + [2550] = {.lex_state = 1664}, + [2551] = {.lex_state = 1664}, + [2552] = {.lex_state = 1664}, + [2553] = {.lex_state = 1720, .external_lex_state = 2}, + [2554] = {.lex_state = 1720, .external_lex_state = 2}, + [2555] = {.lex_state = 1720, .external_lex_state = 2}, + [2556] = {.lex_state = 1664}, + [2557] = {.lex_state = 1720, .external_lex_state = 2}, + [2558] = {.lex_state = 1720, .external_lex_state = 2}, + [2559] = {.lex_state = 41, .external_lex_state = 2}, + [2560] = {.lex_state = 41, .external_lex_state = 2}, + [2561] = {.lex_state = 194, .external_lex_state = 2}, + [2562] = {.lex_state = 131, .external_lex_state = 2}, + [2563] = {.lex_state = 41, .external_lex_state = 2}, + [2564] = {.lex_state = 233, .external_lex_state = 2}, + [2565] = {.lex_state = 131, .external_lex_state = 2}, + [2566] = {.lex_state = 138, .external_lex_state = 2}, + [2567] = {.lex_state = 1720, .external_lex_state = 2}, + [2568] = {.lex_state = 233, .external_lex_state = 2}, + [2569] = {.lex_state = 41, .external_lex_state = 2}, + [2570] = {.lex_state = 41, .external_lex_state = 2}, + [2571] = {.lex_state = 41, .external_lex_state = 2}, + [2572] = {.lex_state = 144, .external_lex_state = 2}, + [2573] = {.lex_state = 41, .external_lex_state = 2}, + [2574] = {.lex_state = 1721, .external_lex_state = 2}, + [2575] = {.lex_state = 1720, .external_lex_state = 2}, + [2576] = {.lex_state = 144, .external_lex_state = 2}, + [2577] = {.lex_state = 41, .external_lex_state = 2}, + [2578] = {.lex_state = 233, .external_lex_state = 2}, + [2579] = {.lex_state = 41, .external_lex_state = 2}, + [2580] = {.lex_state = 213, .external_lex_state = 2}, + [2581] = {.lex_state = 41, .external_lex_state = 2}, + [2582] = {.lex_state = 41, .external_lex_state = 2}, + [2583] = {.lex_state = 1721, .external_lex_state = 2}, + [2584] = {.lex_state = 41, .external_lex_state = 2}, + [2585] = {.lex_state = 1720, .external_lex_state = 2}, + [2586] = {.lex_state = 41, .external_lex_state = 2}, + [2587] = {.lex_state = 144, .external_lex_state = 2}, + [2588] = {.lex_state = 204, .external_lex_state = 2}, + [2589] = {.lex_state = 144, .external_lex_state = 2}, + [2590] = {.lex_state = 131, .external_lex_state = 2}, + [2591] = {.lex_state = 1721, .external_lex_state = 2}, + [2592] = {.lex_state = 194, .external_lex_state = 2}, + [2593] = {.lex_state = 233, .external_lex_state = 2}, + [2594] = {.lex_state = 194, .external_lex_state = 2}, + [2595] = {.lex_state = 233, .external_lex_state = 2}, + [2596] = {.lex_state = 131, .external_lex_state = 2}, + [2597] = {.lex_state = 1720, .external_lex_state = 2}, + [2598] = {.lex_state = 129, .external_lex_state = 2}, + [2599] = {.lex_state = 41, .external_lex_state = 2}, + [2600] = {.lex_state = 1722, .external_lex_state = 2}, + [2601] = {.lex_state = 1722, .external_lex_state = 2}, + [2602] = {.lex_state = 1722, .external_lex_state = 2}, + [2603] = {.lex_state = 1722, .external_lex_state = 2}, + [2604] = {.lex_state = 1722, .external_lex_state = 2}, + [2605] = {.lex_state = 1722, .external_lex_state = 2}, + [2606] = {.lex_state = 41, .external_lex_state = 2}, + [2607] = {.lex_state = 1722, .external_lex_state = 2}, + [2608] = {.lex_state = 180, .external_lex_state = 2}, + [2609] = {.lex_state = 41, .external_lex_state = 2}, + [2610] = {.lex_state = 41, .external_lex_state = 2}, + [2611] = {.lex_state = 1722, .external_lex_state = 2}, + [2612] = {.lex_state = 1722, .external_lex_state = 2}, + [2613] = {.lex_state = 1722, .external_lex_state = 2}, + [2614] = {.lex_state = 194, .external_lex_state = 2}, + [2615] = {.lex_state = 194, .external_lex_state = 2}, + [2616] = {.lex_state = 41, .external_lex_state = 2}, + [2617] = {.lex_state = 206, .external_lex_state = 2}, + [2618] = {.lex_state = 206, .external_lex_state = 2}, + [2619] = {.lex_state = 180, .external_lex_state = 2}, + [2620] = {.lex_state = 1722, .external_lex_state = 2}, + [2621] = {.lex_state = 41, .external_lex_state = 2}, + [2622] = {.lex_state = 132, .external_lex_state = 2}, + [2623] = {.lex_state = 132, .external_lex_state = 2}, + [2624] = {.lex_state = 41, .external_lex_state = 2}, + [2625] = {.lex_state = 41, .external_lex_state = 2}, + [2626] = {.lex_state = 41, .external_lex_state = 2}, + [2627] = {.lex_state = 180, .external_lex_state = 2}, + [2628] = {.lex_state = 41, .external_lex_state = 2}, + [2629] = {.lex_state = 41, .external_lex_state = 2}, + [2630] = {.lex_state = 1722, .external_lex_state = 2}, + [2631] = {.lex_state = 41, .external_lex_state = 2}, + [2632] = {.lex_state = 1722, .external_lex_state = 2}, + [2633] = {.lex_state = 41, .external_lex_state = 2}, + [2634] = {.lex_state = 41, .external_lex_state = 2}, + [2635] = {.lex_state = 41, .external_lex_state = 2}, + [2636] = {.lex_state = 41, .external_lex_state = 2}, + [2637] = {.lex_state = 41, .external_lex_state = 2}, + [2638] = {.lex_state = 41, .external_lex_state = 2}, + [2639] = {.lex_state = 1722, .external_lex_state = 2}, + [2640] = {.lex_state = 1722, .external_lex_state = 2}, + [2641] = {.lex_state = 1722, .external_lex_state = 2}, + [2642] = {.lex_state = 41, .external_lex_state = 2}, + [2643] = {.lex_state = 1722, .external_lex_state = 2}, + [2644] = {.lex_state = 41, .external_lex_state = 2}, + [2645] = {.lex_state = 41, .external_lex_state = 2}, + [2646] = {.lex_state = 41, .external_lex_state = 2}, + [2647] = {.lex_state = 41, .external_lex_state = 2}, + [2648] = {.lex_state = 41, .external_lex_state = 2}, + [2649] = {.lex_state = 1721, .external_lex_state = 2}, + [2650] = {.lex_state = 41, .external_lex_state = 2}, + [2651] = {.lex_state = 41, .external_lex_state = 2}, + [2652] = {.lex_state = 41, .external_lex_state = 2}, + [2653] = {.lex_state = 41, .external_lex_state = 2}, + [2654] = {.lex_state = 41, .external_lex_state = 2}, + [2655] = {.lex_state = 1722, .external_lex_state = 2}, + [2656] = {.lex_state = 41, .external_lex_state = 2}, + [2657] = {.lex_state = 1722, .external_lex_state = 2}, + [2658] = {.lex_state = 41, .external_lex_state = 2}, + [2659] = {.lex_state = 41, .external_lex_state = 2}, + [2660] = {.lex_state = 41, .external_lex_state = 2}, + [2661] = {.lex_state = 41, .external_lex_state = 2}, + [2662] = {.lex_state = 1722, .external_lex_state = 2}, + [2663] = {.lex_state = 1722, .external_lex_state = 2}, + [2664] = {.lex_state = 1722, .external_lex_state = 2}, + [2665] = {.lex_state = 41, .external_lex_state = 2}, + [2666] = {.lex_state = 41, .external_lex_state = 2}, + [2667] = {.lex_state = 1721, .external_lex_state = 2}, + [2668] = {.lex_state = 1721, .external_lex_state = 2}, + [2669] = {.lex_state = 41, .external_lex_state = 2}, + [2670] = {.lex_state = 133, .external_lex_state = 2}, + [2671] = {.lex_state = 205, .external_lex_state = 2}, + [2672] = {.lex_state = 227, .external_lex_state = 2}, + [2673] = {.lex_state = 227, .external_lex_state = 2}, + [2674] = {.lex_state = 227, .external_lex_state = 2}, + [2675] = {.lex_state = 214, .external_lex_state = 2}, + [2676] = {.lex_state = 133, .external_lex_state = 2}, + [2677] = {.lex_state = 133, .external_lex_state = 2}, + [2678] = {.lex_state = 133, .external_lex_state = 2}, + [2679] = {.lex_state = 133, .external_lex_state = 2}, + [2680] = {.lex_state = 227, .external_lex_state = 2}, + [2681] = {.lex_state = 227, .external_lex_state = 2}, + [2682] = {.lex_state = 227, .external_lex_state = 2}, + [2683] = {.lex_state = 180, .external_lex_state = 2}, + [2684] = {.lex_state = 180, .external_lex_state = 2}, + [2685] = {.lex_state = 227, .external_lex_state = 2}, + [2686] = {.lex_state = 198, .external_lex_state = 2}, + [2687] = {.lex_state = 197, .external_lex_state = 2}, + [2688] = {.lex_state = 227, .external_lex_state = 2}, + [2689] = {.lex_state = 227, .external_lex_state = 2}, + [2690] = {.lex_state = 227, .external_lex_state = 2}, + [2691] = {.lex_state = 1722, .external_lex_state = 2}, + [2692] = {.lex_state = 227, .external_lex_state = 2}, + [2693] = {.lex_state = 1722, .external_lex_state = 2}, + [2694] = {.lex_state = 1722, .external_lex_state = 2}, + [2695] = {.lex_state = 227, .external_lex_state = 2}, + [2696] = {.lex_state = 227, .external_lex_state = 2}, + [2697] = {.lex_state = 227, .external_lex_state = 2}, + [2698] = {.lex_state = 227, .external_lex_state = 2}, + [2699] = {.lex_state = 1722, .external_lex_state = 2}, + [2700] = {.lex_state = 227, .external_lex_state = 2}, + [2701] = {.lex_state = 201, .external_lex_state = 2}, + [2702] = {.lex_state = 1722, .external_lex_state = 2}, + [2703] = {.lex_state = 1722, .external_lex_state = 2}, + [2704] = {.lex_state = 1722, .external_lex_state = 2}, + [2705] = {.lex_state = 1722, .external_lex_state = 2}, + [2706] = {.lex_state = 207, .external_lex_state = 2}, + [2707] = {.lex_state = 1722, .external_lex_state = 2}, + [2708] = {.lex_state = 1702, .external_lex_state = 2}, + [2709] = {.lex_state = 1702, .external_lex_state = 2}, + [2710] = {.lex_state = 227, .external_lex_state = 2}, + [2711] = {.lex_state = 1722, .external_lex_state = 2}, + [2712] = {.lex_state = 1722, .external_lex_state = 2}, + [2713] = {.lex_state = 1722, .external_lex_state = 2}, + [2714] = {.lex_state = 222, .external_lex_state = 2}, + [2715] = {.lex_state = 1722, .external_lex_state = 2}, + [2716] = {.lex_state = 227, .external_lex_state = 2}, + [2717] = {.lex_state = 224, .external_lex_state = 2}, + [2718] = {.lex_state = 193, .external_lex_state = 2}, + [2719] = {.lex_state = 193, .external_lex_state = 2}, + [2720] = {.lex_state = 227, .external_lex_state = 2}, + [2721] = {.lex_state = 1722, .external_lex_state = 2}, + [2722] = {.lex_state = 222, .external_lex_state = 2}, + [2723] = {.lex_state = 1722, .external_lex_state = 2}, + [2724] = {.lex_state = 1722, .external_lex_state = 2}, + [2725] = {.lex_state = 227, .external_lex_state = 2}, + [2726] = {.lex_state = 207, .external_lex_state = 2}, + [2727] = {.lex_state = 224, .external_lex_state = 2}, + [2728] = {.lex_state = 207, .external_lex_state = 2}, + [2729] = {.lex_state = 227, .external_lex_state = 2}, + [2730] = {.lex_state = 207, .external_lex_state = 2}, + [2731] = {.lex_state = 222, .external_lex_state = 2}, + [2732] = {.lex_state = 222, .external_lex_state = 2}, + [2733] = {.lex_state = 207, .external_lex_state = 2}, + [2734] = {.lex_state = 227, .external_lex_state = 2}, + [2735] = {.lex_state = 224, .external_lex_state = 2}, + [2736] = {.lex_state = 224, .external_lex_state = 2}, + [2737] = {.lex_state = 224, .external_lex_state = 2}, + [2738] = {.lex_state = 193, .external_lex_state = 2}, + [2739] = {.lex_state = 1722, .external_lex_state = 2}, + [2740] = {.lex_state = 193, .external_lex_state = 2}, + [2741] = {.lex_state = 1722, .external_lex_state = 2}, + [2742] = {.lex_state = 193, .external_lex_state = 2}, + [2743] = {.lex_state = 1722, .external_lex_state = 2}, + [2744] = {.lex_state = 1722, .external_lex_state = 2}, + [2745] = {.lex_state = 193, .external_lex_state = 2}, + [2746] = {.lex_state = 46, .external_lex_state = 2}, + [2747] = {.lex_state = 1722, .external_lex_state = 2}, + [2748] = {.lex_state = 1722, .external_lex_state = 2}, + [2749] = {.lex_state = 227, .external_lex_state = 2}, + [2750] = {.lex_state = 133, .external_lex_state = 2}, + [2751] = {.lex_state = 179, .external_lex_state = 2}, + [2752] = {.lex_state = 200, .external_lex_state = 2}, + [2753] = {.lex_state = 179, .external_lex_state = 2}, + [2754] = {.lex_state = 200, .external_lex_state = 2}, + [2755] = {.lex_state = 200, .external_lex_state = 2}, + [2756] = {.lex_state = 200, .external_lex_state = 2}, + [2757] = {.lex_state = 200, .external_lex_state = 2}, + [2758] = {.lex_state = 200, .external_lex_state = 2}, + [2759] = {.lex_state = 200, .external_lex_state = 2}, + [2760] = {.lex_state = 200, .external_lex_state = 2}, + [2761] = {.lex_state = 200, .external_lex_state = 2}, + [2762] = {.lex_state = 200, .external_lex_state = 2}, + [2763] = {.lex_state = 200, .external_lex_state = 2}, + [2764] = {.lex_state = 200, .external_lex_state = 2}, + [2765] = {.lex_state = 200, .external_lex_state = 2}, + [2766] = {.lex_state = 227, .external_lex_state = 2}, + [2767] = {.lex_state = 139, .external_lex_state = 2}, + [2768] = {.lex_state = 227, .external_lex_state = 2}, + [2769] = {.lex_state = 187, .external_lex_state = 2}, + [2770] = {.lex_state = 208, .external_lex_state = 2}, + [2771] = {.lex_state = 224, .external_lex_state = 2}, + [2772] = {.lex_state = 179, .external_lex_state = 2}, + [2773] = {.lex_state = 223, .external_lex_state = 2}, + [2774] = {.lex_state = 200, .external_lex_state = 2}, + [2775] = {.lex_state = 200, .external_lex_state = 2}, + [2776] = {.lex_state = 179, .external_lex_state = 2}, + [2777] = {.lex_state = 179, .external_lex_state = 2}, + [2778] = {.lex_state = 183, .external_lex_state = 2}, + [2779] = {.lex_state = 1630}, + [2780] = {.lex_state = 224, .external_lex_state = 2}, + [2781] = {.lex_state = 134, .external_lex_state = 2}, + [2782] = {.lex_state = 179, .external_lex_state = 2}, + [2783] = {.lex_state = 200, .external_lex_state = 2}, + [2784] = {.lex_state = 223, .external_lex_state = 2}, + [2785] = {.lex_state = 46, .external_lex_state = 2}, + [2786] = {.lex_state = 194, .external_lex_state = 2}, + [2787] = {.lex_state = 184, .external_lex_state = 2}, + [2788] = {.lex_state = 200, .external_lex_state = 2}, + [2789] = {.lex_state = 223, .external_lex_state = 2}, + [2790] = {.lex_state = 195, .external_lex_state = 2}, + [2791] = {.lex_state = 200, .external_lex_state = 2}, + [2792] = {.lex_state = 200, .external_lex_state = 2}, + [2793] = {.lex_state = 194, .external_lex_state = 2}, + [2794] = {.lex_state = 194, .external_lex_state = 2}, + [2795] = {.lex_state = 223, .external_lex_state = 2}, + [2796] = {.lex_state = 208, .external_lex_state = 2}, + [2797] = {.lex_state = 223, .external_lex_state = 2}, + [2798] = {.lex_state = 1664}, + [2799] = {.lex_state = 200, .external_lex_state = 2}, + [2800] = {.lex_state = 195, .external_lex_state = 2}, + [2801] = {.lex_state = 223, .external_lex_state = 2}, + [2802] = {.lex_state = 184, .external_lex_state = 2}, + [2803] = {.lex_state = 209, .external_lex_state = 2}, + [2804] = {.lex_state = 209, .external_lex_state = 2}, + [2805] = {.lex_state = 209, .external_lex_state = 2}, + [2806] = {.lex_state = 209, .external_lex_state = 2}, + [2807] = {.lex_state = 196, .external_lex_state = 2}, + [2808] = {.lex_state = 196, .external_lex_state = 2}, + [2809] = {.lex_state = 184, .external_lex_state = 2}, + [2810] = {.lex_state = 135, .external_lex_state = 2}, + [2811] = {.lex_state = 135, .external_lex_state = 2}, + [2812] = {.lex_state = 196, .external_lex_state = 2}, + [2813] = {.lex_state = 181, .external_lex_state = 2}, + [2814] = {.lex_state = 184, .external_lex_state = 2}, + [2815] = {.lex_state = 181, .external_lex_state = 2}, + [2816] = {.lex_state = 196, .external_lex_state = 2}, + [2817] = {.lex_state = 226, .external_lex_state = 2}, + [2818] = {.lex_state = 196, .external_lex_state = 2}, + [2819] = {.lex_state = 196, .external_lex_state = 2}, + [2820] = {.lex_state = 196, .external_lex_state = 2}, + [2821] = {.lex_state = 184, .external_lex_state = 2}, + [2822] = {.lex_state = 184, .external_lex_state = 2}, + [2823] = {.lex_state = 46, .external_lex_state = 2}, + [2824] = {.lex_state = 228, .external_lex_state = 2}, + [2825] = {.lex_state = 184, .external_lex_state = 2}, + [2826] = {.lex_state = 184, .external_lex_state = 2}, + [2827] = {.lex_state = 184, .external_lex_state = 2}, + [2828] = {.lex_state = 209, .external_lex_state = 2}, + [2829] = {.lex_state = 184, .external_lex_state = 2}, + [2830] = {.lex_state = 184, .external_lex_state = 2}, + [2831] = {.lex_state = 226, .external_lex_state = 2}, + [2832] = {.lex_state = 225, .external_lex_state = 2}, + [2833] = {.lex_state = 209, .external_lex_state = 2}, + [2834] = {.lex_state = 41, .external_lex_state = 2}, + [2835] = {.lex_state = 225, .external_lex_state = 2}, + [2836] = {.lex_state = 184, .external_lex_state = 2}, + [2837] = {.lex_state = 225, .external_lex_state = 2}, + [2838] = {.lex_state = 225, .external_lex_state = 2}, + [2839] = {.lex_state = 184, .external_lex_state = 2}, + [2840] = {.lex_state = 225, .external_lex_state = 2}, + [2841] = {.lex_state = 1632}, + [2842] = {.lex_state = 196, .external_lex_state = 2}, + [2843] = {.lex_state = 180, .external_lex_state = 2}, + [2844] = {.lex_state = 184, .external_lex_state = 2}, + [2845] = {.lex_state = 196, .external_lex_state = 2}, + [2846] = {.lex_state = 196, .external_lex_state = 2}, + [2847] = {.lex_state = 196, .external_lex_state = 2}, + [2848] = {.lex_state = 196, .external_lex_state = 2}, + [2849] = {.lex_state = 1632}, + [2850] = {.lex_state = 200, .external_lex_state = 2}, + [2851] = {.lex_state = 200, .external_lex_state = 2}, + [2852] = {.lex_state = 226, .external_lex_state = 2}, + [2853] = {.lex_state = 226, .external_lex_state = 2}, + [2854] = {.lex_state = 225, .external_lex_state = 2}, + [2855] = {.lex_state = 226, .external_lex_state = 2}, + [2856] = {.lex_state = 226, .external_lex_state = 2}, + [2857] = {.lex_state = 184, .external_lex_state = 2}, + [2858] = {.lex_state = 184, .external_lex_state = 2}, + [2859] = {.lex_state = 184, .external_lex_state = 2}, + [2860] = {.lex_state = 184, .external_lex_state = 2}, + [2861] = {.lex_state = 184, .external_lex_state = 2}, + [2862] = {.lex_state = 184, .external_lex_state = 2}, + [2863] = {.lex_state = 196, .external_lex_state = 2}, + [2864] = {.lex_state = 180, .external_lex_state = 2}, + [2865] = {.lex_state = 180, .external_lex_state = 2}, + [2866] = {.lex_state = 184, .external_lex_state = 2}, + [2867] = {.lex_state = 225, .external_lex_state = 2}, + [2868] = {.lex_state = 1664}, + [2869] = {.lex_state = 1630}, + [2870] = {.lex_state = 45, .external_lex_state = 2}, + [2871] = {.lex_state = 184, .external_lex_state = 2}, + [2872] = {.lex_state = 196, .external_lex_state = 2}, + [2873] = {.lex_state = 225, .external_lex_state = 2}, + [2874] = {.lex_state = 225, .external_lex_state = 2}, + [2875] = {.lex_state = 1664}, + [2876] = {.lex_state = 44, .external_lex_state = 2}, + [2877] = {.lex_state = 196, .external_lex_state = 2}, + [2878] = {.lex_state = 241, .external_lex_state = 2}, + [2879] = {.lex_state = 136, .external_lex_state = 2}, + [2880] = {.lex_state = 199, .external_lex_state = 2}, + [2881] = {.lex_state = 240, .external_lex_state = 2}, + [2882] = {.lex_state = 199, .external_lex_state = 2}, + [2883] = {.lex_state = 182, .external_lex_state = 2}, + [2884] = {.lex_state = 199, .external_lex_state = 2}, + [2885] = {.lex_state = 41, .external_lex_state = 2}, + [2886] = {.lex_state = 1632}, + [2887] = {.lex_state = 184, .external_lex_state = 2}, + [2888] = {.lex_state = 210, .external_lex_state = 2}, + [2889] = {.lex_state = 99, .external_lex_state = 2}, + [2890] = {.lex_state = 240, .external_lex_state = 2}, + [2891] = {.lex_state = 240, .external_lex_state = 2}, + [2892] = {.lex_state = 136, .external_lex_state = 2}, + [2893] = {.lex_state = 202, .external_lex_state = 2}, + [2894] = {.lex_state = 241, .external_lex_state = 2}, + [2895] = {.lex_state = 227, .external_lex_state = 2}, + [2896] = {.lex_state = 136, .external_lex_state = 2}, + [2897] = {.lex_state = 225, .external_lex_state = 2}, + [2898] = {.lex_state = 225, .external_lex_state = 2}, + [2899] = {.lex_state = 182, .external_lex_state = 2}, + [2900] = {.lex_state = 45, .external_lex_state = 2}, + [2901] = {.lex_state = 241, .external_lex_state = 2}, + [2902] = {.lex_state = 241, .external_lex_state = 2}, + [2903] = {.lex_state = 182, .external_lex_state = 2}, + [2904] = {.lex_state = 199, .external_lex_state = 2}, + [2905] = {.lex_state = 136, .external_lex_state = 2}, + [2906] = {.lex_state = 227, .external_lex_state = 2}, + [2907] = {.lex_state = 41, .external_lex_state = 2}, + [2908] = {.lex_state = 182, .external_lex_state = 2}, + [2909] = {.lex_state = 241, .external_lex_state = 2}, + [2910] = {.lex_state = 199, .external_lex_state = 2}, + [2911] = {.lex_state = 136, .external_lex_state = 2}, + [2912] = {.lex_state = 182, .external_lex_state = 2}, + [2913] = {.lex_state = 182, .external_lex_state = 2}, + [2914] = {.lex_state = 199, .external_lex_state = 2}, + [2915] = {.lex_state = 1638}, + [2916] = {.lex_state = 182, .external_lex_state = 2}, + [2917] = {.lex_state = 182, .external_lex_state = 2}, + [2918] = {.lex_state = 1664}, + [2919] = {.lex_state = 1634}, + [2920] = {.lex_state = 1664}, + [2921] = {.lex_state = 1664}, + [2922] = {.lex_state = 182, .external_lex_state = 2}, + [2923] = {.lex_state = 1632}, + [2924] = {.lex_state = 230, .external_lex_state = 2}, + [2925] = {.lex_state = 215, .external_lex_state = 2}, + [2926] = {.lex_state = 184, .external_lex_state = 2}, + [2927] = {.lex_state = 136, .external_lex_state = 2}, + [2928] = {.lex_state = 182, .external_lex_state = 2}, + [2929] = {.lex_state = 44, .external_lex_state = 2}, + [2930] = {.lex_state = 182, .external_lex_state = 2}, + [2931] = {.lex_state = 182, .external_lex_state = 2}, + [2932] = {.lex_state = 182, .external_lex_state = 2}, + [2933] = {.lex_state = 182, .external_lex_state = 2}, + [2934] = {.lex_state = 182, .external_lex_state = 2}, + [2935] = {.lex_state = 136, .external_lex_state = 2}, + [2936] = {.lex_state = 240, .external_lex_state = 2}, + [2937] = {.lex_state = 240, .external_lex_state = 2}, + [2938] = {.lex_state = 136, .external_lex_state = 2}, + [2939] = {.lex_state = 1664}, + [2940] = {.lex_state = 136, .external_lex_state = 2}, + [2941] = {.lex_state = 227, .external_lex_state = 2}, + [2942] = {.lex_state = 192, .external_lex_state = 2}, + [2943] = {.lex_state = 41, .external_lex_state = 2}, + [2944] = {.lex_state = 185, .external_lex_state = 2}, + [2945] = {.lex_state = 41, .external_lex_state = 2}, + [2946] = {.lex_state = 41, .external_lex_state = 2}, + [2947] = {.lex_state = 174, .external_lex_state = 2}, + [2948] = {.lex_state = 41, .external_lex_state = 2}, + [2949] = {.lex_state = 41, .external_lex_state = 2}, + [2950] = {.lex_state = 174, .external_lex_state = 2}, + [2951] = {.lex_state = 1640}, + [2952] = {.lex_state = 1640}, + [2953] = {.lex_state = 41, .external_lex_state = 2}, + [2954] = {.lex_state = 41, .external_lex_state = 2}, + [2955] = {.lex_state = 41, .external_lex_state = 2}, + [2956] = {.lex_state = 174, .external_lex_state = 2}, + [2957] = {.lex_state = 174, .external_lex_state = 2}, + [2958] = {.lex_state = 211, .external_lex_state = 2}, + [2959] = {.lex_state = 1638}, + [2960] = {.lex_state = 200, .external_lex_state = 2}, + [2961] = {.lex_state = 174, .external_lex_state = 2}, + [2962] = {.lex_state = 174, .external_lex_state = 2}, + [2963] = {.lex_state = 174, .external_lex_state = 2}, + [2964] = {.lex_state = 41, .external_lex_state = 2}, + [2965] = {.lex_state = 41, .external_lex_state = 2}, + [2966] = {.lex_state = 174, .external_lex_state = 2}, + [2967] = {.lex_state = 174, .external_lex_state = 2}, + [2968] = {.lex_state = 1634}, + [2969] = {.lex_state = 41, .external_lex_state = 2}, + [2970] = {.lex_state = 189, .external_lex_state = 2}, + [2971] = {.lex_state = 211, .external_lex_state = 2}, + [2972] = {.lex_state = 189, .external_lex_state = 2}, + [2973] = {.lex_state = 200, .external_lex_state = 2}, + [2974] = {.lex_state = 174, .external_lex_state = 2}, + [2975] = {.lex_state = 174, .external_lex_state = 2}, + [2976] = {.lex_state = 200, .external_lex_state = 2}, + [2977] = {.lex_state = 41, .external_lex_state = 2}, + [2978] = {.lex_state = 188, .external_lex_state = 2}, + [2979] = {.lex_state = 41, .external_lex_state = 2}, + [2980] = {.lex_state = 41, .external_lex_state = 2}, + [2981] = {.lex_state = 216, .external_lex_state = 2}, + [2982] = {.lex_state = 41, .external_lex_state = 2}, + [2983] = {.lex_state = 99, .external_lex_state = 2}, + [2984] = {.lex_state = 185, .external_lex_state = 2}, + [2985] = {.lex_state = 41, .external_lex_state = 2}, + [2986] = {.lex_state = 41, .external_lex_state = 2}, + [2987] = {.lex_state = 41, .external_lex_state = 2}, + [2988] = {.lex_state = 185, .external_lex_state = 2}, + [2989] = {.lex_state = 41, .external_lex_state = 2}, + [2990] = {.lex_state = 41, .external_lex_state = 2}, + [2991] = {.lex_state = 41, .external_lex_state = 2}, + [2992] = {.lex_state = 41, .external_lex_state = 2}, + [2993] = {.lex_state = 41, .external_lex_state = 2}, + [2994] = {.lex_state = 41, .external_lex_state = 2}, + [2995] = {.lex_state = 41, .external_lex_state = 2}, + [2996] = {.lex_state = 47, .external_lex_state = 2}, + [2997] = {.lex_state = 41, .external_lex_state = 2}, + [2998] = {.lex_state = 41, .external_lex_state = 2}, + [2999] = {.lex_state = 41, .external_lex_state = 2}, + [3000] = {.lex_state = 41, .external_lex_state = 2}, + [3001] = {.lex_state = 174, .external_lex_state = 2}, + [3002] = {.lex_state = 41, .external_lex_state = 2}, + [3003] = {.lex_state = 41, .external_lex_state = 2}, + [3004] = {.lex_state = 41, .external_lex_state = 2}, + [3005] = {.lex_state = 185, .external_lex_state = 2}, + [3006] = {.lex_state = 185, .external_lex_state = 2}, + [3007] = {.lex_state = 99, .external_lex_state = 2}, + [3008] = {.lex_state = 185, .external_lex_state = 2}, + [3009] = {.lex_state = 190, .external_lex_state = 2}, + [3010] = {.lex_state = 41, .external_lex_state = 2}, + [3011] = {.lex_state = 41, .external_lex_state = 2}, + [3012] = {.lex_state = 41, .external_lex_state = 2}, + [3013] = {.lex_state = 41, .external_lex_state = 2}, + [3014] = {.lex_state = 41, .external_lex_state = 2}, + [3015] = {.lex_state = 1642}, + [3016] = {.lex_state = 41, .external_lex_state = 2}, + [3017] = {.lex_state = 41, .external_lex_state = 2}, + [3018] = {.lex_state = 41, .external_lex_state = 2}, + [3019] = {.lex_state = 41, .external_lex_state = 2}, + [3020] = {.lex_state = 41, .external_lex_state = 2}, + [3021] = {.lex_state = 174, .external_lex_state = 2}, + [3022] = {.lex_state = 178, .external_lex_state = 2}, + [3023] = {.lex_state = 41, .external_lex_state = 2}, + [3024] = {.lex_state = 41, .external_lex_state = 2}, + [3025] = {.lex_state = 1633}, + [3026] = {.lex_state = 41, .external_lex_state = 2}, + [3027] = {.lex_state = 41, .external_lex_state = 2}, + [3028] = {.lex_state = 41, .external_lex_state = 2}, + [3029] = {.lex_state = 41, .external_lex_state = 2}, + [3030] = {.lex_state = 41, .external_lex_state = 2}, + [3031] = {.lex_state = 41, .external_lex_state = 2}, + [3032] = {.lex_state = 41, .external_lex_state = 2}, + [3033] = {.lex_state = 41, .external_lex_state = 2}, + [3034] = {.lex_state = 191, .external_lex_state = 2}, + [3035] = {.lex_state = 242, .external_lex_state = 2}, + [3036] = {.lex_state = 242, .external_lex_state = 2}, + [3037] = {.lex_state = 191, .external_lex_state = 2}, + [3038] = {.lex_state = 191, .external_lex_state = 2}, + [3039] = {.lex_state = 191, .external_lex_state = 2}, + [3040] = {.lex_state = 1642}, + [3041] = {.lex_state = 191, .external_lex_state = 2}, + [3042] = {.lex_state = 1642}, + [3043] = {.lex_state = 191, .external_lex_state = 2}, + [3044] = {.lex_state = 242, .external_lex_state = 2}, + [3045] = {.lex_state = 191, .external_lex_state = 2}, + [3046] = {.lex_state = 191, .external_lex_state = 2}, + [3047] = {.lex_state = 191, .external_lex_state = 2}, + [3048] = {.lex_state = 212, .external_lex_state = 2}, + [3049] = {.lex_state = 1640}, + [3050] = {.lex_state = 212, .external_lex_state = 2}, + [3051] = {.lex_state = 191, .external_lex_state = 2}, + [3052] = {.lex_state = 176, .external_lex_state = 2}, + [3053] = {.lex_state = 1642}, + [3054] = {.lex_state = 1642}, + [3055] = {.lex_state = 191, .external_lex_state = 2}, + [3056] = {.lex_state = 191, .external_lex_state = 2}, + [3057] = {.lex_state = 191, .external_lex_state = 2}, + [3058] = {.lex_state = 191, .external_lex_state = 2}, + [3059] = {.lex_state = 212, .external_lex_state = 2}, + [3060] = {.lex_state = 242, .external_lex_state = 2}, + [3061] = {.lex_state = 1636}, + [3062] = {.lex_state = 212, .external_lex_state = 2}, + [3063] = {.lex_state = 191, .external_lex_state = 2}, + [3064] = {.lex_state = 191, .external_lex_state = 2}, + [3065] = {.lex_state = 1642}, + [3066] = {.lex_state = 1640}, + [3067] = {.lex_state = 212, .external_lex_state = 2}, + [3068] = {.lex_state = 191, .external_lex_state = 2}, + [3069] = {.lex_state = 191, .external_lex_state = 2}, + [3070] = {.lex_state = 174, .external_lex_state = 2}, + [3071] = {.lex_state = 212, .external_lex_state = 2}, + [3072] = {.lex_state = 191, .external_lex_state = 2}, + [3073] = {.lex_state = 191, .external_lex_state = 2}, + [3074] = {.lex_state = 191, .external_lex_state = 2}, + [3075] = {.lex_state = 191, .external_lex_state = 2}, + [3076] = {.lex_state = 191, .external_lex_state = 2}, + [3077] = {.lex_state = 191, .external_lex_state = 2}, + [3078] = {.lex_state = 191, .external_lex_state = 2}, + [3079] = {.lex_state = 33, .external_lex_state = 2}, + [3080] = {.lex_state = 191, .external_lex_state = 2}, + [3081] = {.lex_state = 184, .external_lex_state = 2}, + [3082] = {.lex_state = 191, .external_lex_state = 2}, + [3083] = {.lex_state = 191, .external_lex_state = 2}, + [3084] = {.lex_state = 184, .external_lex_state = 2}, + [3085] = {.lex_state = 175, .external_lex_state = 2}, + [3086] = {.lex_state = 191, .external_lex_state = 2}, + [3087] = {.lex_state = 191, .external_lex_state = 2}, + [3088] = {.lex_state = 174, .external_lex_state = 2}, + [3089] = {.lex_state = 191, .external_lex_state = 2}, + [3090] = {.lex_state = 191, .external_lex_state = 2}, + [3091] = {.lex_state = 212, .external_lex_state = 2}, + [3092] = {.lex_state = 191, .external_lex_state = 2}, + [3093] = {.lex_state = 1644}, + [3094] = {.lex_state = 191, .external_lex_state = 2}, + [3095] = {.lex_state = 191, .external_lex_state = 2}, + [3096] = {.lex_state = 191, .external_lex_state = 2}, + [3097] = {.lex_state = 191, .external_lex_state = 2}, + [3098] = {.lex_state = 191, .external_lex_state = 2}, + [3099] = {.lex_state = 191, .external_lex_state = 2}, + [3100] = {.lex_state = 212, .external_lex_state = 2}, + [3101] = {.lex_state = 191, .external_lex_state = 2}, + [3102] = {.lex_state = 191, .external_lex_state = 2}, + [3103] = {.lex_state = 191, .external_lex_state = 2}, + [3104] = {.lex_state = 191, .external_lex_state = 2}, + [3105] = {.lex_state = 191, .external_lex_state = 2}, + [3106] = {.lex_state = 191, .external_lex_state = 2}, + [3107] = {.lex_state = 191, .external_lex_state = 2}, + [3108] = {.lex_state = 191, .external_lex_state = 2}, + [3109] = {.lex_state = 212, .external_lex_state = 2}, + [3110] = {.lex_state = 191, .external_lex_state = 2}, + [3111] = {.lex_state = 191, .external_lex_state = 2}, + [3112] = {.lex_state = 47, .external_lex_state = 2}, + [3113] = {.lex_state = 191, .external_lex_state = 2}, + [3114] = {.lex_state = 175, .external_lex_state = 2}, + [3115] = {.lex_state = 242, .external_lex_state = 2}, + [3116] = {.lex_state = 191, .external_lex_state = 2}, + [3117] = {.lex_state = 191, .external_lex_state = 2}, + [3118] = {.lex_state = 212, .external_lex_state = 2}, + [3119] = {.lex_state = 184, .external_lex_state = 2}, + [3120] = {.lex_state = 34, .external_lex_state = 2}, + [3121] = {.lex_state = 34, .external_lex_state = 2}, + [3122] = {.lex_state = 1644}, + [3123] = {.lex_state = 34, .external_lex_state = 2}, + [3124] = {.lex_state = 34, .external_lex_state = 2}, + [3125] = {.lex_state = 34, .external_lex_state = 2}, + [3126] = {.lex_state = 34, .external_lex_state = 2}, + [3127] = {.lex_state = 34, .external_lex_state = 2}, + [3128] = {.lex_state = 34, .external_lex_state = 2}, + [3129] = {.lex_state = 34, .external_lex_state = 2}, + [3130] = {.lex_state = 34, .external_lex_state = 2}, + [3131] = {.lex_state = 34, .external_lex_state = 2}, + [3132] = {.lex_state = 34, .external_lex_state = 2}, + [3133] = {.lex_state = 34, .external_lex_state = 2}, + [3134] = {.lex_state = 34, .external_lex_state = 2}, + [3135] = {.lex_state = 34, .external_lex_state = 2}, + [3136] = {.lex_state = 34, .external_lex_state = 2}, + [3137] = {.lex_state = 1636}, + [3138] = {.lex_state = 1646}, + [3139] = {.lex_state = 34, .external_lex_state = 2}, + [3140] = {.lex_state = 1646}, + [3141] = {.lex_state = 34, .external_lex_state = 2}, + [3142] = {.lex_state = 34, .external_lex_state = 2}, + [3143] = {.lex_state = 34, .external_lex_state = 2}, + [3144] = {.lex_state = 34, .external_lex_state = 2}, + [3145] = {.lex_state = 34, .external_lex_state = 2}, + [3146] = {.lex_state = 34, .external_lex_state = 2}, + [3147] = {.lex_state = 34, .external_lex_state = 2}, + [3148] = {.lex_state = 34, .external_lex_state = 2}, + [3149] = {.lex_state = 34, .external_lex_state = 2}, + [3150] = {.lex_state = 34, .external_lex_state = 2}, + [3151] = {.lex_state = 34, .external_lex_state = 2}, + [3152] = {.lex_state = 34, .external_lex_state = 2}, + [3153] = {.lex_state = 34, .external_lex_state = 2}, + [3154] = {.lex_state = 34, .external_lex_state = 2}, + [3155] = {.lex_state = 34, .external_lex_state = 2}, + [3156] = {.lex_state = 34, .external_lex_state = 2}, + [3157] = {.lex_state = 34, .external_lex_state = 2}, + [3158] = {.lex_state = 34, .external_lex_state = 2}, + [3159] = {.lex_state = 34, .external_lex_state = 2}, + [3160] = {.lex_state = 34, .external_lex_state = 2}, + [3161] = {.lex_state = 34, .external_lex_state = 2}, + [3162] = {.lex_state = 34, .external_lex_state = 2}, + [3163] = {.lex_state = 34, .external_lex_state = 2}, + [3164] = {.lex_state = 34, .external_lex_state = 2}, + [3165] = {.lex_state = 34, .external_lex_state = 2}, + [3166] = {.lex_state = 34, .external_lex_state = 2}, + [3167] = {.lex_state = 34, .external_lex_state = 2}, + [3168] = {.lex_state = 1664}, + [3169] = {.lex_state = 34, .external_lex_state = 2}, + [3170] = {.lex_state = 34, .external_lex_state = 2}, + [3171] = {.lex_state = 34, .external_lex_state = 2}, + [3172] = {.lex_state = 34, .external_lex_state = 2}, + [3173] = {.lex_state = 34, .external_lex_state = 2}, + [3174] = {.lex_state = 34, .external_lex_state = 2}, + [3175] = {.lex_state = 34, .external_lex_state = 2}, + [3176] = {.lex_state = 34, .external_lex_state = 2}, + [3177] = {.lex_state = 33, .external_lex_state = 2}, + [3178] = {.lex_state = 34, .external_lex_state = 2}, + [3179] = {.lex_state = 34, .external_lex_state = 2}, + [3180] = {.lex_state = 34, .external_lex_state = 2}, + [3181] = {.lex_state = 34, .external_lex_state = 2}, + [3182] = {.lex_state = 34, .external_lex_state = 2}, + [3183] = {.lex_state = 34, .external_lex_state = 2}, + [3184] = {.lex_state = 34, .external_lex_state = 2}, + [3185] = {.lex_state = 1642}, + [3186] = {.lex_state = 34, .external_lex_state = 2}, + [3187] = {.lex_state = 1642}, + [3188] = {.lex_state = 34, .external_lex_state = 2}, + [3189] = {.lex_state = 1642}, + [3190] = {.lex_state = 34, .external_lex_state = 2}, + [3191] = {.lex_state = 1642}, + [3192] = {.lex_state = 34, .external_lex_state = 2}, + [3193] = {.lex_state = 1648}, + [3194] = {.lex_state = 1648}, + [3195] = {.lex_state = 1648}, + [3196] = {.lex_state = 1648}, + [3197] = {.lex_state = 1648}, + [3198] = {.lex_state = 34, .external_lex_state = 2}, + [3199] = {.lex_state = 1646}, + [3200] = {.lex_state = 1646}, + [3201] = {.lex_state = 1648}, + [3202] = {.lex_state = 1648}, + [3203] = {.lex_state = 1648}, + [3204] = {.lex_state = 69}, + [3205] = {.lex_state = 69}, + [3206] = {.lex_state = 69}, + [3207] = {.lex_state = 1650}, + [3208] = {.lex_state = 1652}, + [3209] = {.lex_state = 69}, + [3210] = {.lex_state = 1648}, + [3211] = {.lex_state = 1664}, + [3212] = {.lex_state = 1648}, + [3213] = {.lex_state = 69}, + [3214] = {.lex_state = 69}, + [3215] = {.lex_state = 69}, + [3216] = {.lex_state = 69}, + [3217] = {.lex_state = 69}, + [3218] = {.lex_state = 1664}, + [3219] = {.lex_state = 69}, + [3220] = {.lex_state = 69}, + [3221] = {.lex_state = 69}, + [3222] = {.lex_state = 69}, + [3223] = {.lex_state = 1648}, + [3224] = {.lex_state = 1648}, + [3225] = {.lex_state = 69}, + [3226] = {.lex_state = 69}, + [3227] = {.lex_state = 69}, + [3228] = {.lex_state = 1664}, + [3229] = {.lex_state = 1652}, + [3230] = {.lex_state = 1650}, + [3231] = {.lex_state = 1654}, + [3232] = {.lex_state = 1654}, + [3233] = {.lex_state = 1664}, + [3234] = {.lex_state = 1656}, + [3235] = {.lex_state = 1658}, + [3236] = {.lex_state = 1656}, + [3237] = {.lex_state = 1656}, + [3238] = {.lex_state = 1656}, + [3239] = {.lex_state = 1658}, + [3240] = {.lex_state = 1654}, + [3241] = {.lex_state = 1656}, + [3242] = {.lex_state = 1656}, + [3243] = {.lex_state = 1664}, + [3244] = {.lex_state = 1658}, + [3245] = {.lex_state = 69}, + [3246] = {.lex_state = 1658}, + [3247] = {.lex_state = 1656}, + [3248] = {.lex_state = 1658}, + [3249] = {.lex_state = 1656}, + [3250] = {.lex_state = 1654}, + [3251] = {.lex_state = 1656}, + [3252] = {.lex_state = 69}, + [3253] = {.lex_state = 1658}, + [3254] = {.lex_state = 1656}, + [3255] = {.lex_state = 1656}, + [3256] = {.lex_state = 1656}, + [3257] = {.lex_state = 1656}, + [3258] = {.lex_state = 1656}, + [3259] = {.lex_state = 1658}, + [3260] = {.lex_state = 1656}, + [3261] = {.lex_state = 1656}, + [3262] = {.lex_state = 1656}, + [3263] = {.lex_state = 1656}, + [3264] = {.lex_state = 1658}, + [3265] = {.lex_state = 1658}, + [3266] = {.lex_state = 1656}, + [3267] = {.lex_state = 1658}, + [3268] = {.lex_state = 1664}, + [3269] = {.lex_state = 1664}, + [3270] = {.lex_state = 1664}, + [3271] = {.lex_state = 1664}, + [3272] = {.lex_state = 1664}, + [3273] = {.lex_state = 1664}, + [3274] = {.lex_state = 1664}, + [3275] = {.lex_state = 1664}, + [3276] = {.lex_state = 1664}, + [3277] = {.lex_state = 1664}, + [3278] = {.lex_state = 1664}, + [3279] = {.lex_state = 1664}, + [3280] = {.lex_state = 1664}, + [3281] = {.lex_state = 1664}, + [3282] = {.lex_state = 1664}, + [3283] = {.lex_state = 1664}, + [3284] = {.lex_state = 1664}, + [3285] = {.lex_state = 1664}, + [3286] = {.lex_state = 1664}, + [3287] = {.lex_state = 1664}, + [3288] = {.lex_state = 1664}, + [3289] = {.lex_state = 1664}, + [3290] = {.lex_state = 1664}, + [3291] = {.lex_state = 1664}, + [3292] = {.lex_state = 1664}, + [3293] = {.lex_state = 1664}, + [3294] = {.lex_state = 1664}, + [3295] = {.lex_state = 1664}, + [3296] = {.lex_state = 1664}, + [3297] = {.lex_state = 1664}, + [3298] = {.lex_state = 1664}, + [3299] = {.lex_state = 1664}, + [3300] = {.lex_state = 1664}, + [3301] = {.lex_state = 1664}, + [3302] = {.lex_state = 1664}, + [3303] = {.lex_state = 1664}, + [3304] = {.lex_state = 1664}, + [3305] = {.lex_state = 1664}, + [3306] = {.lex_state = 1664}, + [3307] = {.lex_state = 1664}, + [3308] = {.lex_state = 1664}, + [3309] = {.lex_state = 1664}, + [3310] = {.lex_state = 1664}, + [3311] = {.lex_state = 1664}, + [3312] = {.lex_state = 1664}, + [3313] = {.lex_state = 1664}, + [3314] = {.lex_state = 1664}, + [3315] = {.lex_state = 1664}, + [3316] = {.lex_state = 1664}, + [3317] = {.lex_state = 1664}, + [3318] = {.lex_state = 1664}, + [3319] = {.lex_state = 1664}, + [3320] = {.lex_state = 1664}, + [3321] = {.lex_state = 1664}, + [3322] = {.lex_state = 1664}, + [3323] = {.lex_state = 1664}, + [3324] = {.lex_state = 1664}, + [3325] = {.lex_state = 1664}, + [3326] = {.lex_state = 1664}, + [3327] = {.lex_state = 1664}, + [3328] = {.lex_state = 1664}, + [3329] = {.lex_state = 1664}, + [3330] = {.lex_state = 1664}, + [3331] = {.lex_state = 1664}, + [3332] = {.lex_state = 1664}, + [3333] = {.lex_state = 1664}, + [3334] = {.lex_state = 1664}, + [3335] = {.lex_state = 1664}, + [3336] = {.lex_state = 1664}, + [3337] = {.lex_state = 1664}, + [3338] = {.lex_state = 1664}, + [3339] = {.lex_state = 1664}, + [3340] = {.lex_state = 1664}, + [3341] = {.lex_state = 1664}, + [3342] = {.lex_state = 1664}, + [3343] = {.lex_state = 1664}, + [3344] = {.lex_state = 1664}, + [3345] = {.lex_state = 1664}, + [3346] = {.lex_state = 1664}, + [3347] = {.lex_state = 1664}, + [3348] = {.lex_state = 1664}, + [3349] = {.lex_state = 1664}, + [3350] = {.lex_state = 1664}, + [3351] = {.lex_state = 1664}, + [3352] = {.lex_state = 1664}, + [3353] = {.lex_state = 1664}, + [3354] = {.lex_state = 1664}, + [3355] = {.lex_state = 1664}, + [3356] = {.lex_state = 1664}, + [3357] = {.lex_state = 1664}, + [3358] = {.lex_state = 1664}, + [3359] = {.lex_state = 1664}, + [3360] = {.lex_state = 1664}, + [3361] = {.lex_state = 1664}, + [3362] = {.lex_state = 1664}, + [3363] = {.lex_state = 1664}, + [3364] = {.lex_state = 1664}, + [3365] = {.lex_state = 1664}, + [3366] = {.lex_state = 1664}, + [3367] = {.lex_state = 1664}, + [3368] = {.lex_state = 1664}, + [3369] = {.lex_state = 1664}, + [3370] = {.lex_state = 1664}, + [3371] = {.lex_state = 69}, + [3372] = {.lex_state = 1664}, + [3373] = {.lex_state = 69}, + [3374] = {.lex_state = 69}, + [3375] = {.lex_state = 69}, + [3376] = {.lex_state = 1664}, + [3377] = {.lex_state = 69}, + [3378] = {.lex_state = 6}, + [3379] = {.lex_state = 69}, + [3380] = {.lex_state = 1664}, + [3381] = {.lex_state = 69}, + [3382] = {.lex_state = 69}, + [3383] = {.lex_state = 69}, + [3384] = {.lex_state = 1656}, + [3385] = {.lex_state = 69}, + [3386] = {.lex_state = 1664}, + [3387] = {.lex_state = 1664}, + [3388] = {.lex_state = 1664}, + [3389] = {.lex_state = 1664}, + [3390] = {.lex_state = 69}, + [3391] = {.lex_state = 7}, + [3392] = {.lex_state = 69}, + [3393] = {.lex_state = 69}, + [3394] = {.lex_state = 7}, + [3395] = {.lex_state = 69}, + [3396] = {.lex_state = 1664}, + [3397] = {.lex_state = 69}, + [3398] = {.lex_state = 1664}, + [3399] = {.lex_state = 1664}, + [3400] = {.lex_state = 82}, + [3401] = {.lex_state = 1664}, + [3402] = {.lex_state = 1664}, + [3403] = {.lex_state = 69}, + [3404] = {.lex_state = 69}, + [3405] = {.lex_state = 1664}, + [3406] = {.lex_state = 1664}, + [3407] = {.lex_state = 1664}, + [3408] = {.lex_state = 1664}, + [3409] = {.lex_state = 69}, + [3410] = {.lex_state = 1664}, + [3411] = {.lex_state = 1664}, + [3412] = {.lex_state = 1664}, + [3413] = {.lex_state = 1664}, + [3414] = {.lex_state = 69}, + [3415] = {.lex_state = 69}, + [3416] = {.lex_state = 1664}, + [3417] = {.lex_state = 69}, + [3418] = {.lex_state = 83}, + [3419] = {.lex_state = 222}, + [3420] = {.lex_state = 8}, + [3421] = {.lex_state = 10}, + [3422] = {.lex_state = 222}, + [3423] = {.lex_state = 82}, + [3424] = {.lex_state = 83}, + [3425] = {.lex_state = 82}, + [3426] = {.lex_state = 69}, + [3427] = {.lex_state = 69}, + [3428] = {.lex_state = 69}, + [3429] = {.lex_state = 69}, + [3430] = {.lex_state = 82}, + [3431] = {.lex_state = 69}, + [3432] = {.lex_state = 69}, + [3433] = {.lex_state = 69}, + [3434] = {.lex_state = 223}, + [3435] = {.lex_state = 223}, + [3436] = {.lex_state = 69}, + [3437] = {.lex_state = 69}, + [3438] = {.lex_state = 320}, + [3439] = {.lex_state = 82}, + [3440] = {.lex_state = 82}, + [3441] = {.lex_state = 82}, + [3442] = {.lex_state = 82}, + [3443] = {.lex_state = 69}, + [3444] = {.lex_state = 69}, + [3445] = {.lex_state = 12}, + [3446] = {.lex_state = 82}, + [3447] = {.lex_state = 11}, + [3448] = {.lex_state = 84}, + [3449] = {.lex_state = 69}, + [3450] = {.lex_state = 69}, + [3451] = {.lex_state = 69}, + [3452] = {.lex_state = 69}, + [3453] = {.lex_state = 69}, + [3454] = {.lex_state = 69}, + [3455] = {.lex_state = 69}, + [3456] = {.lex_state = 69}, + [3457] = {.lex_state = 69}, + [3458] = {.lex_state = 69}, + [3459] = {.lex_state = 69}, + [3460] = {.lex_state = 69}, + [3461] = {.lex_state = 69}, + [3462] = {.lex_state = 69}, + [3463] = {.lex_state = 69}, + [3464] = {.lex_state = 86}, + [3465] = {.lex_state = 69}, + [3466] = {.lex_state = 69}, + [3467] = {.lex_state = 11}, + [3468] = {.lex_state = 87}, + [3469] = {.lex_state = 9}, + [3470] = {.lex_state = 88}, + [3471] = {.lex_state = 12}, + [3472] = {.lex_state = 320}, + [3473] = {.lex_state = 12}, + [3474] = {.lex_state = 12}, + [3475] = {.lex_state = 320}, + [3476] = {.lex_state = 12}, + [3477] = {.lex_state = 320}, + [3478] = {.lex_state = 320}, + [3479] = {.lex_state = 13}, + [3480] = {.lex_state = 87}, + [3481] = {.lex_state = 320}, + [3482] = {.lex_state = 14}, + [3483] = {.lex_state = 88}, + [3484] = {.lex_state = 69}, + [3485] = {.lex_state = 85}, + [3486] = {.lex_state = 88}, + [3487] = {.lex_state = 84}, + [3488] = {.lex_state = 88}, + [3489] = {.lex_state = 88}, + [3490] = {.lex_state = 320}, + [3491] = {.lex_state = 89}, + [3492] = {.lex_state = 14}, + [3493] = {.lex_state = 69}, + [3494] = {.lex_state = 15}, + [3495] = {.lex_state = 15}, + [3496] = {.lex_state = 15}, + [3497] = {.lex_state = 90}, + [3498] = {.lex_state = 90}, + [3499] = {.lex_state = 15}, + [3500] = {.lex_state = 15}, + [3501] = {.lex_state = 15}, + [3502] = {.lex_state = 91}, + [3503] = {.lex_state = 1664}, + [3504] = {.lex_state = 3145}, + [3505] = {.lex_state = 91}, + [3506] = {.lex_state = 91}, + [3507] = {.lex_state = 3143}, + [3508] = {.lex_state = 91}, + [3509] = {.lex_state = 91}, + [3510] = {.lex_state = 17}, + [3511] = {.lex_state = 16}, + [3512] = {.lex_state = 91}, + [3513] = {.lex_state = 92}, + [3514] = {.lex_state = 18}, + [3515] = {.lex_state = 93}, + [3516] = {.lex_state = 3146}, + [3517] = {.lex_state = 3146}, + [3518] = {.lex_state = 3148}, + [3519] = {.lex_state = 18}, + [3520] = {.lex_state = 3144}, + [3521] = {.lex_state = 20}, + [3522] = {.lex_state = 1664}, + [3523] = {.lex_state = 3149}, + [3524] = {.lex_state = 94}, + [3525] = {.lex_state = 19}, + [3526] = {.lex_state = 20}, + [3527] = {.lex_state = 3147}, + [3528] = {.lex_state = 64}, + [3529] = {.lex_state = 19}, + [3530] = {.lex_state = 20}, + [3531] = {.lex_state = 19}, + [3532] = {.lex_state = 1664}, + [3533] = {.lex_state = 1664}, + [3534] = {.lex_state = 1664}, + [3535] = {.lex_state = 1664}, + [3536] = {.lex_state = 20}, + [3537] = {.lex_state = 1664}, + [3538] = {.lex_state = 19}, + [3539] = {.lex_state = 19}, + [3540] = {.lex_state = 19}, + [3541] = {.lex_state = 19}, + [3542] = {.lex_state = 3147}, + [3543] = {.lex_state = 3147}, + [3544] = {.lex_state = 19}, + [3545] = {.lex_state = 19}, + [3546] = {.lex_state = 64}, + [3547] = {.lex_state = 20}, + [3548] = {.lex_state = 94}, + [3549] = {.lex_state = 3149}, + [3550] = {.lex_state = 3147}, + [3551] = {.lex_state = 1664}, + [3552] = {.lex_state = 1664}, + [3553] = {.lex_state = 1664}, + [3554] = {.lex_state = 3147}, + [3555] = {.lex_state = 3150}, + [3556] = {.lex_state = 96}, + [3557] = {.lex_state = 1664}, + [3558] = {.lex_state = 1664}, + [3559] = {.lex_state = 1664}, + [3560] = {.lex_state = 1664}, + [3561] = {.lex_state = 1664}, + [3562] = {.lex_state = 1664}, + [3563] = {.lex_state = 1664}, + [3564] = {.lex_state = 1664}, + [3565] = {.lex_state = 1664}, + [3566] = {.lex_state = 1664}, + [3567] = {.lex_state = 1664}, + [3568] = {.lex_state = 1664}, + [3569] = {.lex_state = 1664}, + [3570] = {.lex_state = 1664}, + [3571] = {.lex_state = 1664}, + [3572] = {.lex_state = 1664}, + [3573] = {.lex_state = 1664}, + [3574] = {.lex_state = 1664}, + [3575] = {.lex_state = 1664}, + [3576] = {.lex_state = 1664}, + [3577] = {.lex_state = 1664}, + [3578] = {.lex_state = 1664}, + [3579] = {.lex_state = 1664}, + [3580] = {.lex_state = 1664}, + [3581] = {.lex_state = 1664}, + [3582] = {.lex_state = 1664}, + [3583] = {.lex_state = 1664}, + [3584] = {.lex_state = 1664}, + [3585] = {.lex_state = 1664}, + [3586] = {.lex_state = 3150}, + [3587] = {.lex_state = 1664}, + [3588] = {.lex_state = 1664}, + [3589] = {.lex_state = 3150}, + [3590] = {.lex_state = 1664}, + [3591] = {.lex_state = 1664}, + [3592] = {.lex_state = 1664}, + [3593] = {.lex_state = 95}, + [3594] = {.lex_state = 1664}, + [3595] = {.lex_state = 1664}, + [3596] = {.lex_state = 1664}, + [3597] = {.lex_state = 3150}, + [3598] = {.lex_state = 1664}, + [3599] = {.lex_state = 1664}, + [3600] = {.lex_state = 1664}, + [3601] = {.lex_state = 95}, + [3602] = {.lex_state = 1664}, + [3603] = {.lex_state = 1664}, + [3604] = {.lex_state = 3150}, + [3605] = {.lex_state = 1664}, + [3606] = {.lex_state = 1664}, + [3607] = {.lex_state = 3150}, + [3608] = {.lex_state = 3150}, + [3609] = {.lex_state = 3150}, + [3610] = {.lex_state = 95}, + [3611] = {.lex_state = 96}, + [3612] = {.lex_state = 96}, + [3613] = {.lex_state = 1664}, + [3614] = {.lex_state = 1664}, + [3615] = {.lex_state = 1664}, + [3616] = {.lex_state = 3150}, + [3617] = {.lex_state = 1664}, + [3618] = {.lex_state = 95}, + [3619] = {.lex_state = 1664}, [3620] = {.lex_state = 95}, - [3621] = {.lex_state = 370}, - [3622] = {.lex_state = 21}, - [3623] = {.lex_state = 24}, - [3624] = {.lex_state = 116}, - [3625] = {.lex_state = 370}, - [3626] = {.lex_state = 24}, - [3627] = {.lex_state = 1737}, - [3628] = {.lex_state = 24}, - [3629] = {.lex_state = 24}, - [3630] = {.lex_state = 103}, - [3631] = {.lex_state = 102}, - [3632] = {.lex_state = 1737}, - [3633] = {.lex_state = 25}, - [3634] = {.lex_state = 370}, - [3635] = {.lex_state = 115}, - [3636] = {.lex_state = 24}, - [3637] = {.lex_state = 112}, - [3638] = {.lex_state = 115}, - [3639] = {.lex_state = 370}, - [3640] = {.lex_state = 102}, - [3641] = {.lex_state = 115}, - [3642] = {.lex_state = 115}, - [3643] = {.lex_state = 370}, - [3644] = {.lex_state = 1737}, - [3645] = {.lex_state = 14, .external_lex_state = 2}, - [3646] = {.lex_state = 14, .external_lex_state = 2}, - [3647] = {.lex_state = 1737}, - [3648] = {.lex_state = 14, .external_lex_state = 2}, - [3649] = {.lex_state = 14, .external_lex_state = 2}, - [3650] = {.lex_state = 14, .external_lex_state = 2}, - [3651] = {.lex_state = 14, .external_lex_state = 2}, - [3652] = {.lex_state = 1737}, - [3653] = {.lex_state = 14, .external_lex_state = 2}, - [3654] = {.lex_state = 1737}, - [3655] = {.lex_state = 14, .external_lex_state = 2}, - [3656] = {.lex_state = 103}, - [3657] = {.lex_state = 117}, - [3658] = {.lex_state = 26}, - [3659] = {.lex_state = 26}, - [3660] = {.lex_state = 14, .external_lex_state = 2}, - [3661] = {.lex_state = 14, .external_lex_state = 2}, - [3662] = {.lex_state = 80}, - [3663] = {.lex_state = 103}, - [3664] = {.lex_state = 14, .external_lex_state = 2}, - [3665] = {.lex_state = 14, .external_lex_state = 2}, - [3666] = {.lex_state = 14, .external_lex_state = 2}, - [3667] = {.lex_state = 14, .external_lex_state = 2}, - [3668] = {.lex_state = 103}, - [3669] = {.lex_state = 100}, - [3670] = {.lex_state = 104}, - [3671] = {.lex_state = 14, .external_lex_state = 2}, - [3672] = {.lex_state = 14, .external_lex_state = 2}, - [3673] = {.lex_state = 14, .external_lex_state = 2}, - [3674] = {.lex_state = 117}, - [3675] = {.lex_state = 14, .external_lex_state = 2}, - [3676] = {.lex_state = 103}, - [3677] = {.lex_state = 14, .external_lex_state = 2}, - [3678] = {.lex_state = 1737}, - [3679] = {.lex_state = 1737}, - [3680] = {.lex_state = 14, .external_lex_state = 2}, - [3681] = {.lex_state = 14, .external_lex_state = 2}, - [3682] = {.lex_state = 14, .external_lex_state = 2}, - [3683] = {.lex_state = 14, .external_lex_state = 2}, - [3684] = {.lex_state = 370}, - [3685] = {.lex_state = 1737}, - [3686] = {.lex_state = 1737}, - [3687] = {.lex_state = 1737}, - [3688] = {.lex_state = 1737}, - [3689] = {.lex_state = 1737}, - [3690] = {.lex_state = 80}, - [3691] = {.lex_state = 1737}, - [3692] = {.lex_state = 1737}, - [3693] = {.lex_state = 1737}, - [3694] = {.lex_state = 14, .external_lex_state = 2}, - [3695] = {.lex_state = 1737}, - [3696] = {.lex_state = 1737}, - [3697] = {.lex_state = 1737}, - [3698] = {.lex_state = 1737}, - [3699] = {.lex_state = 254, .external_lex_state = 2}, - [3700] = {.lex_state = 1737}, - [3701] = {.lex_state = 1737}, - [3702] = {.lex_state = 1737}, - [3703] = {.lex_state = 1737}, - [3704] = {.lex_state = 118}, - [3705] = {.lex_state = 27}, - [3706] = {.lex_state = 125}, - [3707] = {.lex_state = 125}, - [3708] = {.lex_state = 1737}, - [3709] = {.lex_state = 27}, - [3710] = {.lex_state = 1737}, - [3711] = {.lex_state = 118}, - [3712] = {.lex_state = 1737}, - [3713] = {.lex_state = 1737}, - [3714] = {.lex_state = 1737}, - [3715] = {.lex_state = 27}, - [3716] = {.lex_state = 1737}, - [3717] = {.lex_state = 1737}, - [3718] = {.lex_state = 27}, - [3719] = {.lex_state = 1737}, - [3720] = {.lex_state = 14, .external_lex_state = 2}, - [3721] = {.lex_state = 118}, - [3722] = {.lex_state = 118}, - [3723] = {.lex_state = 1737}, - [3724] = {.lex_state = 1737}, - [3725] = {.lex_state = 1737}, - [3726] = {.lex_state = 1737}, - [3727] = {.lex_state = 118}, - [3728] = {.lex_state = 1737}, - [3729] = {.lex_state = 1737}, - [3730] = {.lex_state = 1737}, - [3731] = {.lex_state = 118}, - [3732] = {.lex_state = 1737}, - [3733] = {.lex_state = 27}, - [3734] = {.lex_state = 105}, - [3735] = {.lex_state = 1737}, - [3736] = {.lex_state = 1737}, - [3737] = {.lex_state = 1737}, - [3738] = {.lex_state = 1737}, - [3739] = {.lex_state = 27}, - [3740] = {.lex_state = 1737}, - [3741] = {.lex_state = 1737}, - [3742] = {.lex_state = 105}, - [3743] = {.lex_state = 1737}, - [3744] = {.lex_state = 1737}, - [3745] = {.lex_state = 1737}, - [3746] = {.lex_state = 14, .external_lex_state = 2}, - [3747] = {.lex_state = 1737}, - [3748] = {.lex_state = 3219}, - [3749] = {.lex_state = 14, .external_lex_state = 2}, - [3750] = {.lex_state = 3221}, - [3751] = {.lex_state = 125}, - [3752] = {.lex_state = 125}, - [3753] = {.lex_state = 125}, - [3754] = {.lex_state = 120}, - [3755] = {.lex_state = 125}, - [3756] = {.lex_state = 125}, - [3757] = {.lex_state = 125}, - [3758] = {.lex_state = 1707}, - [3759] = {.lex_state = 119}, - [3760] = {.lex_state = 125}, - [3761] = {.lex_state = 125}, - [3762] = {.lex_state = 106}, - [3763] = {.lex_state = 106}, - [3764] = {.lex_state = 106}, - [3765] = {.lex_state = 106}, - [3766] = {.lex_state = 125}, - [3767] = {.lex_state = 125}, - [3768] = {.lex_state = 125}, - [3769] = {.lex_state = 125}, - [3770] = {.lex_state = 125}, - [3771] = {.lex_state = 125}, - [3772] = {.lex_state = 125}, - [3773] = {.lex_state = 125}, - [3774] = {.lex_state = 125}, - [3775] = {.lex_state = 125}, - [3776] = {.lex_state = 125}, - [3777] = {.lex_state = 125}, - [3778] = {.lex_state = 125}, - [3779] = {.lex_state = 125}, - [3780] = {.lex_state = 125}, - [3781] = {.lex_state = 125}, - [3782] = {.lex_state = 125}, - [3783] = {.lex_state = 125}, - [3784] = {.lex_state = 125}, - [3785] = {.lex_state = 125}, - [3786] = {.lex_state = 261, .external_lex_state = 2}, - [3787] = {.lex_state = 125}, - [3788] = {.lex_state = 125}, - [3789] = {.lex_state = 29}, - [3790] = {.lex_state = 106}, - [3791] = {.lex_state = 106}, - [3792] = {.lex_state = 14, .external_lex_state = 2}, - [3793] = {.lex_state = 28}, - [3794] = {.lex_state = 14, .external_lex_state = 2}, - [3795] = {.lex_state = 14, .external_lex_state = 2}, - [3796] = {.lex_state = 14, .external_lex_state = 2}, - [3797] = {.lex_state = 7}, - [3798] = {.lex_state = 1737}, + [3621] = {.lex_state = 95}, + [3622] = {.lex_state = 1664}, + [3623] = {.lex_state = 1664}, + [3624] = {.lex_state = 1664}, + [3625] = {.lex_state = 1664}, + [3626] = {.lex_state = 1664}, + [3627] = {.lex_state = 1664}, + [3628] = {.lex_state = 1664}, + [3629] = {.lex_state = 1664}, + [3630] = {.lex_state = 1664}, + [3631] = {.lex_state = 1664}, + [3632] = {.lex_state = 1664}, + [3633] = {.lex_state = 1664}, + [3634] = {.lex_state = 1664}, + [3635] = {.lex_state = 1664}, + [3636] = {.lex_state = 1664}, + [3637] = {.lex_state = 1664}, + [3638] = {.lex_state = 1664}, + [3639] = {.lex_state = 1664}, + [3640] = {.lex_state = 1664}, + [3641] = {.lex_state = 1664}, + [3642] = {.lex_state = 1664}, + [3643] = {.lex_state = 1664}, + [3644] = {.lex_state = 1664}, + [3645] = {.lex_state = 95}, + [3646] = {.lex_state = 1664}, + [3647] = {.lex_state = 1664}, + [3648] = {.lex_state = 1664}, + [3649] = {.lex_state = 1664}, + [3650] = {.lex_state = 1664}, + [3651] = {.lex_state = 1664}, + [3652] = {.lex_state = 1664}, + [3653] = {.lex_state = 1664}, + [3654] = {.lex_state = 1664}, + [3655] = {.lex_state = 1664}, + [3656] = {.lex_state = 1664}, + [3657] = {.lex_state = 1664}, + [3658] = {.lex_state = 1664}, + [3659] = {.lex_state = 1664}, + [3660] = {.lex_state = 1664}, + [3661] = {.lex_state = 1664}, + [3662] = {.lex_state = 1664}, + [3663] = {.lex_state = 1664}, + [3664] = {.lex_state = 1664}, + [3665] = {.lex_state = 3150}, + [3666] = {.lex_state = 95}, + [3667] = {.lex_state = 95}, + [3668] = {.lex_state = 1664}, + [3669] = {.lex_state = 96}, + [3670] = {.lex_state = 1664}, + [3671] = {.lex_state = 3150}, + [3672] = {.lex_state = 1664}, + [3673] = {.lex_state = 96}, + [3674] = {.lex_state = 1664}, + [3675] = {.lex_state = 1660}, + [3676] = {.lex_state = 19}, + [3677] = {.lex_state = 1664}, + [3678] = {.lex_state = 64}, + [3679] = {.lex_state = 1627}, + [3680] = {.lex_state = 64}, + [3681] = {.lex_state = 95}, + [3682] = {.lex_state = 1664}, + [3683] = {.lex_state = 64}, + [3684] = {.lex_state = 64}, + [3685] = {.lex_state = 64}, + [3686] = {.lex_state = 1627}, + [3687] = {.lex_state = 64}, + [3688] = {.lex_state = 1664}, + [3689] = {.lex_state = 1664}, + [3690] = {.lex_state = 64}, + [3691] = {.lex_state = 64}, + [3692] = {.lex_state = 1664}, + [3693] = {.lex_state = 1664}, + [3694] = {.lex_state = 1664}, + [3695] = {.lex_state = 64}, + [3696] = {.lex_state = 64}, + [3697] = {.lex_state = 64}, + [3698] = {.lex_state = 64}, + [3699] = {.lex_state = 64}, + [3700] = {.lex_state = 64}, + [3701] = {.lex_state = 64}, + [3702] = {.lex_state = 64}, + [3703] = {.lex_state = 64}, + [3704] = {.lex_state = 64}, + [3705] = {.lex_state = 64}, + [3706] = {.lex_state = 64}, + [3707] = {.lex_state = 64}, + [3708] = {.lex_state = 64}, + [3709] = {.lex_state = 64}, + [3710] = {.lex_state = 64}, + [3711] = {.lex_state = 64}, + [3712] = {.lex_state = 64}, + [3713] = {.lex_state = 1664}, + [3714] = {.lex_state = 1627}, + [3715] = {.lex_state = 1664}, + [3716] = {.lex_state = 1664}, + [3717] = {.lex_state = 1664}, + [3718] = {.lex_state = 3151}, + [3719] = {.lex_state = 1664}, + [3720] = {.lex_state = 1664}, + [3721] = {.lex_state = 1664}, + [3722] = {.lex_state = 3151}, + [3723] = {.lex_state = 3151}, + [3724] = {.lex_state = 1664}, + [3725] = {.lex_state = 1664}, + [3726] = {.lex_state = 1664}, + [3727] = {.lex_state = 1664}, + [3728] = {.lex_state = 1664}, + [3729] = {.lex_state = 3151}, + [3730] = {.lex_state = 1627}, + [3731] = {.lex_state = 1664}, + [3732] = {.lex_state = 1627}, + [3733] = {.lex_state = 1664}, + [3734] = {.lex_state = 1664}, + [3735] = {.lex_state = 3151}, + [3736] = {.lex_state = 1627}, + [3737] = {.lex_state = 1664}, + [3738] = {.lex_state = 1664}, + [3739] = {.lex_state = 1664}, + [3740] = {.lex_state = 3151}, + [3741] = {.lex_state = 1664}, + [3742] = {.lex_state = 1664}, + [3743] = {.lex_state = 1664}, + [3744] = {.lex_state = 1664}, + [3745] = {.lex_state = 1664}, + [3746] = {.lex_state = 1664}, + [3747] = {.lex_state = 3151}, + [3748] = {.lex_state = 3151}, + [3749] = {.lex_state = 64}, + [3750] = {.lex_state = 64}, + [3751] = {.lex_state = 1664}, + [3752] = {.lex_state = 1664}, + [3753] = {.lex_state = 64}, + [3754] = {.lex_state = 64}, + [3755] = {.lex_state = 64}, + [3756] = {.lex_state = 64}, + [3757] = {.lex_state = 1664}, + [3758] = {.lex_state = 1664}, + [3759] = {.lex_state = 1665}, + [3760] = {.lex_state = 64}, + [3761] = {.lex_state = 64}, + [3762] = {.lex_state = 1664}, + [3763] = {.lex_state = 1664}, + [3764] = {.lex_state = 64}, + [3765] = {.lex_state = 64}, + [3766] = {.lex_state = 64}, + [3767] = {.lex_state = 64}, + [3768] = {.lex_state = 1729}, + [3769] = {.lex_state = 1665}, + [3770] = {.lex_state = 1726}, + [3771] = {.lex_state = 1727}, + [3772] = {.lex_state = 1629}, + [3773] = {.lex_state = 1726}, + [3774] = {.lex_state = 1727}, + [3775] = {.lex_state = 1727}, + [3776] = {.lex_state = 1727}, + [3777] = {.lex_state = 1735}, + [3778] = {.lex_state = 1629}, + [3779] = {.lex_state = 1739}, + [3780] = {.lex_state = 1725}, + [3781] = {.lex_state = 1629}, + [3782] = {.lex_state = 1629}, + [3783] = {.lex_state = 1629}, + [3784] = {.lex_state = 1629}, + [3785] = {.lex_state = 1725}, + [3786] = {.lex_state = 1629}, + [3787] = {.lex_state = 1743}, + [3788] = {.lex_state = 1629}, + [3789] = {.lex_state = 1629}, + [3790] = {.lex_state = 1629}, + [3791] = {.lex_state = 1739}, + [3792] = {.lex_state = 1735}, + [3793] = {.lex_state = 1741}, + [3794] = {.lex_state = 1741}, + [3795] = {.lex_state = 1665}, + [3796] = {.lex_state = 1728}, + [3797] = {.lex_state = 1725}, + [3798] = {.lex_state = 1728}, [3799] = {.lex_state = 1737}, - [3800] = {.lex_state = 125}, - [3801] = {.lex_state = 1737}, - [3802] = {.lex_state = 259, .external_lex_state = 2}, - [3803] = {.lex_state = 108}, - [3804] = {.lex_state = 107}, - [3805] = {.lex_state = 121}, - [3806] = {.lex_state = 1737}, - [3807] = {.lex_state = 14, .external_lex_state = 2}, - [3808] = {.lex_state = 121}, - [3809] = {.lex_state = 1737}, - [3810] = {.lex_state = 30}, - [3811] = {.lex_state = 14, .external_lex_state = 2}, - [3812] = {.lex_state = 3222}, - [3813] = {.lex_state = 1737}, - [3814] = {.lex_state = 30}, - [3815] = {.lex_state = 1737}, - [3816] = {.lex_state = 288, .external_lex_state = 2}, - [3817] = {.lex_state = 125}, - [3818] = {.lex_state = 1737}, - [3819] = {.lex_state = 3224}, - [3820] = {.lex_state = 1737}, - [3821] = {.lex_state = 269, .external_lex_state = 2}, - [3822] = {.lex_state = 1737}, - [3823] = {.lex_state = 3220}, - [3824] = {.lex_state = 1737}, - [3825] = {.lex_state = 125}, - [3826] = {.lex_state = 14, .external_lex_state = 2}, - [3827] = {.lex_state = 14, .external_lex_state = 2}, - [3828] = {.lex_state = 288, .external_lex_state = 2}, - [3829] = {.lex_state = 3222}, - [3830] = {.lex_state = 14, .external_lex_state = 2}, - [3831] = {.lex_state = 125}, - [3832] = {.lex_state = 1737}, - [3833] = {.lex_state = 1737}, - [3834] = {.lex_state = 288, .external_lex_state = 2}, - [3835] = {.lex_state = 1737}, - [3836] = {.lex_state = 1737}, - [3837] = {.lex_state = 288, .external_lex_state = 2}, - [3838] = {.lex_state = 288, .external_lex_state = 2}, - [3839] = {.lex_state = 1737}, - [3840] = {.lex_state = 1737}, - [3841] = {.lex_state = 1737}, - [3842] = {.lex_state = 54, .external_lex_state = 2}, - [3843] = {.lex_state = 54, .external_lex_state = 2}, - [3844] = {.lex_state = 1737}, - [3845] = {.lex_state = 1737}, - [3846] = {.lex_state = 3223}, - [3847] = {.lex_state = 124}, - [3848] = {.lex_state = 54, .external_lex_state = 2}, - [3849] = {.lex_state = 3223}, - [3850] = {.lex_state = 54, .external_lex_state = 2}, - [3851] = {.lex_state = 54, .external_lex_state = 2}, - [3852] = {.lex_state = 54, .external_lex_state = 2}, - [3853] = {.lex_state = 54, .external_lex_state = 2}, - [3854] = {.lex_state = 54, .external_lex_state = 2}, - [3855] = {.lex_state = 1737}, - [3856] = {.lex_state = 31}, - [3857] = {.lex_state = 54, .external_lex_state = 2}, - [3858] = {.lex_state = 31}, - [3859] = {.lex_state = 1737}, - [3860] = {.lex_state = 3223}, - [3861] = {.lex_state = 109}, - [3862] = {.lex_state = 54, .external_lex_state = 2}, - [3863] = {.lex_state = 109}, - [3864] = {.lex_state = 1737}, - [3865] = {.lex_state = 54, .external_lex_state = 2}, - [3866] = {.lex_state = 54, .external_lex_state = 2}, - [3867] = {.lex_state = 54, .external_lex_state = 2}, - [3868] = {.lex_state = 54, .external_lex_state = 2}, - [3869] = {.lex_state = 73}, - [3870] = {.lex_state = 3225}, - [3871] = {.lex_state = 3223}, - [3872] = {.lex_state = 54, .external_lex_state = 2}, - [3873] = {.lex_state = 1707}, - [3874] = {.lex_state = 1737}, - [3875] = {.lex_state = 1737}, - [3876] = {.lex_state = 54, .external_lex_state = 2}, - [3877] = {.lex_state = 3223}, - [3878] = {.lex_state = 122}, - [3879] = {.lex_state = 54, .external_lex_state = 2}, - [3880] = {.lex_state = 1737}, - [3881] = {.lex_state = 54, .external_lex_state = 2}, - [3882] = {.lex_state = 54, .external_lex_state = 2}, - [3883] = {.lex_state = 122}, - [3884] = {.lex_state = 54, .external_lex_state = 2}, - [3885] = {.lex_state = 54, .external_lex_state = 2}, - [3886] = {.lex_state = 54, .external_lex_state = 2}, - [3887] = {.lex_state = 122}, - [3888] = {.lex_state = 54, .external_lex_state = 2}, - [3889] = {.lex_state = 54, .external_lex_state = 2}, - [3890] = {.lex_state = 122}, - [3891] = {.lex_state = 54, .external_lex_state = 2}, - [3892] = {.lex_state = 122}, - [3893] = {.lex_state = 54, .external_lex_state = 2}, - [3894] = {.lex_state = 54, .external_lex_state = 2}, - [3895] = {.lex_state = 54, .external_lex_state = 2}, - [3896] = {.lex_state = 54, .external_lex_state = 2}, - [3897] = {.lex_state = 32}, - [3898] = {.lex_state = 32}, - [3899] = {.lex_state = 54, .external_lex_state = 2}, - [3900] = {.lex_state = 1737}, - [3901] = {.lex_state = 31}, - [3902] = {.lex_state = 54, .external_lex_state = 2}, - [3903] = {.lex_state = 1737}, - [3904] = {.lex_state = 32}, - [3905] = {.lex_state = 32}, - [3906] = {.lex_state = 54, .external_lex_state = 2}, - [3907] = {.lex_state = 54, .external_lex_state = 2}, - [3908] = {.lex_state = 31}, - [3909] = {.lex_state = 54, .external_lex_state = 2}, - [3910] = {.lex_state = 31}, - [3911] = {.lex_state = 54, .external_lex_state = 2}, - [3912] = {.lex_state = 31}, - [3913] = {.lex_state = 1737}, - [3914] = {.lex_state = 54, .external_lex_state = 2}, - [3915] = {.lex_state = 3225}, - [3916] = {.lex_state = 1707}, - [3917] = {.lex_state = 1737}, - [3918] = {.lex_state = 1737}, - [3919] = {.lex_state = 54, .external_lex_state = 2}, - [3920] = {.lex_state = 32}, - [3921] = {.lex_state = 54, .external_lex_state = 2}, - [3922] = {.lex_state = 125}, - [3923] = {.lex_state = 54, .external_lex_state = 2}, - [3924] = {.lex_state = 54, .external_lex_state = 2}, - [3925] = {.lex_state = 54, .external_lex_state = 2}, - [3926] = {.lex_state = 31}, - [3927] = {.lex_state = 54, .external_lex_state = 2}, - [3928] = {.lex_state = 54, .external_lex_state = 2}, - [3929] = {.lex_state = 31}, - [3930] = {.lex_state = 124}, - [3931] = {.lex_state = 54, .external_lex_state = 2}, - [3932] = {.lex_state = 1737}, - [3933] = {.lex_state = 124}, - [3934] = {.lex_state = 54, .external_lex_state = 2}, - [3935] = {.lex_state = 122}, - [3936] = {.lex_state = 7}, - [3937] = {.lex_state = 7}, - [3938] = {.lex_state = 7}, - [3939] = {.lex_state = 7}, - [3940] = {.lex_state = 7}, - [3941] = {.lex_state = 1737}, - [3942] = {.lex_state = 1707}, - [3943] = {.lex_state = 31}, - [3944] = {.lex_state = 124}, - [3945] = {.lex_state = 122}, - [3946] = {.lex_state = 73}, - [3947] = {.lex_state = 7}, - [3948] = {.lex_state = 7}, - [3949] = {.lex_state = 7}, - [3950] = {.lex_state = 7}, - [3951] = {.lex_state = 122}, - [3952] = {.lex_state = 122}, - [3953] = {.lex_state = 54, .external_lex_state = 2}, - [3954] = {.lex_state = 54, .external_lex_state = 2}, - [3955] = {.lex_state = 54, .external_lex_state = 2}, - [3956] = {.lex_state = 54, .external_lex_state = 2}, - [3957] = {.lex_state = 124}, - [3958] = {.lex_state = 1707}, - [3959] = {.lex_state = 1707}, - [3960] = {.lex_state = 1707}, - [3961] = {.lex_state = 1707}, - [3962] = {.lex_state = 1707}, - [3963] = {.lex_state = 1707}, - [3964] = {.lex_state = 1707}, - [3965] = {.lex_state = 1707}, - [3966] = {.lex_state = 1707}, - [3967] = {.lex_state = 1707}, - [3968] = {.lex_state = 1707}, - [3969] = {.lex_state = 1707}, - [3970] = {.lex_state = 1707}, - [3971] = {.lex_state = 1707}, - [3972] = {.lex_state = 1707}, - [3973] = {.lex_state = 1707}, - [3974] = {.lex_state = 1707}, - [3975] = {.lex_state = 123}, - [3976] = {.lex_state = 110}, - [3977] = {.lex_state = 1739}, - [3978] = {.lex_state = 1707}, - [3979] = {.lex_state = 1707}, - [3980] = {.lex_state = 1707}, - [3981] = {.lex_state = 1707}, - [3982] = {.lex_state = 1707}, - [3983] = {.lex_state = 1707}, - [3984] = {.lex_state = 1707}, - [3985] = {.lex_state = 1707}, - [3986] = {.lex_state = 1707}, - [3987] = {.lex_state = 1707}, - [3988] = {.lex_state = 1707}, - [3989] = {.lex_state = 1707}, - [3990] = {.lex_state = 110}, - [3991] = {.lex_state = 1707}, - [3992] = {.lex_state = 1707}, - [3993] = {.lex_state = 1707}, - [3994] = {.lex_state = 1707}, - [3995] = {.lex_state = 110}, - [3996] = {.lex_state = 3226}, - [3997] = {.lex_state = 1707}, - [3998] = {.lex_state = 3226}, - [3999] = {.lex_state = 1707}, - [4000] = {.lex_state = 1707}, - [4001] = {.lex_state = 1707}, - [4002] = {.lex_state = 3226}, - [4003] = {.lex_state = 110}, - [4004] = {.lex_state = 1707}, - [4005] = {.lex_state = 1707}, - [4006] = {.lex_state = 1707}, - [4007] = {.lex_state = 1707}, - [4008] = {.lex_state = 3226}, - [4009] = {.lex_state = 31}, - [4010] = {.lex_state = 1707}, - [4011] = {.lex_state = 1707}, - [4012] = {.lex_state = 1707}, - [4013] = {.lex_state = 1707}, - [4014] = {.lex_state = 1707}, - [4015] = {.lex_state = 1707}, - [4016] = {.lex_state = 1707}, - [4017] = {.lex_state = 1707}, - [4018] = {.lex_state = 1707}, - [4019] = {.lex_state = 1707}, - [4020] = {.lex_state = 123}, - [4021] = {.lex_state = 1707}, - [4022] = {.lex_state = 1707}, - [4023] = {.lex_state = 1707}, - [4024] = {.lex_state = 1707}, - [4025] = {.lex_state = 1707}, - [4026] = {.lex_state = 3226}, - [4027] = {.lex_state = 110}, - [4028] = {.lex_state = 1707}, - [4029] = {.lex_state = 110}, - [4030] = {.lex_state = 1707}, - [4031] = {.lex_state = 110}, - [4032] = {.lex_state = 1707}, - [4033] = {.lex_state = 110}, - [4034] = {.lex_state = 110}, - [4035] = {.lex_state = 1707}, - [4036] = {.lex_state = 1707}, - [4037] = {.lex_state = 3226}, - [4038] = {.lex_state = 1707}, - [4039] = {.lex_state = 1707}, - [4040] = {.lex_state = 1707}, - [4041] = {.lex_state = 1707}, - [4042] = {.lex_state = 1707}, - [4043] = {.lex_state = 1707}, - [4044] = {.lex_state = 3226}, - [4045] = {.lex_state = 3226}, - [4046] = {.lex_state = 3226}, - [4047] = {.lex_state = 3226}, - [4048] = {.lex_state = 1707}, - [4049] = {.lex_state = 1707}, - [4050] = {.lex_state = 1707}, - [4051] = {.lex_state = 1707}, - [4052] = {.lex_state = 122}, - [4053] = {.lex_state = 1707}, - [4054] = {.lex_state = 1707}, - [4055] = {.lex_state = 1707}, - [4056] = {.lex_state = 1707}, - [4057] = {.lex_state = 123}, - [4058] = {.lex_state = 1707}, - [4059] = {.lex_state = 1707}, - [4060] = {.lex_state = 3226}, - [4061] = {.lex_state = 123}, - [4062] = {.lex_state = 123}, - [4063] = {.lex_state = 1707}, - [4064] = {.lex_state = 1707}, - [4065] = {.lex_state = 1707}, - [4066] = {.lex_state = 1707}, - [4067] = {.lex_state = 1707}, - [4068] = {.lex_state = 1707}, - [4069] = {.lex_state = 1707}, - [4070] = {.lex_state = 1707}, - [4071] = {.lex_state = 1707}, - [4072] = {.lex_state = 1707}, - [4073] = {.lex_state = 1707}, - [4074] = {.lex_state = 1707}, - [4075] = {.lex_state = 1707}, - [4076] = {.lex_state = 1707}, - [4077] = {.lex_state = 1707}, - [4078] = {.lex_state = 1707}, - [4079] = {.lex_state = 1707}, - [4080] = {.lex_state = 1707}, - [4081] = {.lex_state = 1707}, - [4082] = {.lex_state = 1737}, - [4083] = {.lex_state = 1737}, - [4084] = {.lex_state = 1737}, - [4085] = {.lex_state = 1737}, - [4086] = {.lex_state = 1737}, - [4087] = {.lex_state = 1778}, - [4088] = {.lex_state = 1707}, - [4089] = {.lex_state = 73}, - [4090] = {.lex_state = 1737}, - [4091] = {.lex_state = 1737}, - [4092] = {.lex_state = 1737}, - [4093] = {.lex_state = 1737}, - [4094] = {.lex_state = 1737}, - [4095] = {.lex_state = 1737}, - [4096] = {.lex_state = 1737}, - [4097] = {.lex_state = 1737}, - [4098] = {.lex_state = 1707}, - [4099] = {.lex_state = 73}, - [4100] = {.lex_state = 1737}, - [4101] = {.lex_state = 1737}, - [4102] = {.lex_state = 1737}, - [4103] = {.lex_state = 1737}, - [4104] = {.lex_state = 1737}, - [4105] = {.lex_state = 73}, - [4106] = {.lex_state = 73}, - [4107] = {.lex_state = 1737}, - [4108] = {.lex_state = 1737}, - [4109] = {.lex_state = 1737}, - [4110] = {.lex_state = 73}, - [4111] = {.lex_state = 1778}, - [4112] = {.lex_state = 73}, - [4113] = {.lex_state = 1737}, - [4114] = {.lex_state = 73}, - [4115] = {.lex_state = 73}, - [4116] = {.lex_state = 1737}, - [4117] = {.lex_state = 1737}, - [4118] = {.lex_state = 1737}, - [4119] = {.lex_state = 1737}, - [4120] = {.lex_state = 73}, - [4121] = {.lex_state = 1737}, - [4122] = {.lex_state = 73}, - [4123] = {.lex_state = 1737}, - [4124] = {.lex_state = 73}, - [4125] = {.lex_state = 1737}, - [4126] = {.lex_state = 1737}, - [4127] = {.lex_state = 1737}, - [4128] = {.lex_state = 1737}, - [4129] = {.lex_state = 1737}, - [4130] = {.lex_state = 1737}, - [4131] = {.lex_state = 1737}, - [4132] = {.lex_state = 73}, - [4133] = {.lex_state = 73}, - [4134] = {.lex_state = 1737}, - [4135] = {.lex_state = 1737}, - [4136] = {.lex_state = 1737}, - [4137] = {.lex_state = 1737}, - [4138] = {.lex_state = 1737}, - [4139] = {.lex_state = 1737}, - [4140] = {.lex_state = 1737}, - [4141] = {.lex_state = 73}, - [4142] = {.lex_state = 73}, - [4143] = {.lex_state = 73}, - [4144] = {.lex_state = 110}, - [4145] = {.lex_state = 1737}, - [4146] = {.lex_state = 1737}, - [4147] = {.lex_state = 1737}, - [4148] = {.lex_state = 73}, - [4149] = {.lex_state = 73}, - [4150] = {.lex_state = 1737}, - [4151] = {.lex_state = 73}, - [4152] = {.lex_state = 73}, - [4153] = {.lex_state = 73}, - [4154] = {.lex_state = 73}, - [4155] = {.lex_state = 73}, - [4156] = {.lex_state = 1737}, - [4157] = {.lex_state = 73}, - [4158] = {.lex_state = 1707}, - [4159] = {.lex_state = 1707}, - [4160] = {.lex_state = 1737}, - [4161] = {.lex_state = 1737}, - [4162] = {.lex_state = 1737}, - [4163] = {.lex_state = 1737}, - [4164] = {.lex_state = 1707}, - [4165] = {.lex_state = 1707}, - [4166] = {.lex_state = 1737}, - [4167] = {.lex_state = 1737}, - [4168] = {.lex_state = 1737}, - [4169] = {.lex_state = 73}, - [4170] = {.lex_state = 1737}, - [4171] = {.lex_state = 73}, - [4172] = {.lex_state = 7}, - [4173] = {.lex_state = 1707}, - [4174] = {.lex_state = 1778}, - [4175] = {.lex_state = 1707}, - [4176] = {.lex_state = 1707}, - [4177] = {.lex_state = 1778}, - [4178] = {.lex_state = 1707}, - [4179] = {.lex_state = 1707}, - [4180] = {.lex_state = 1707}, - [4181] = {.lex_state = 1707}, - [4182] = {.lex_state = 1707}, - [4183] = {.lex_state = 3227}, - [4184] = {.lex_state = 7}, - [4185] = {.lex_state = 7}, - [4186] = {.lex_state = 7}, - [4187] = {.lex_state = 7}, - [4188] = {.lex_state = 7}, - [4189] = {.lex_state = 7}, - [4190] = {.lex_state = 7}, - [4191] = {.lex_state = 1707}, - [4192] = {.lex_state = 7}, - [4193] = {.lex_state = 7}, - [4194] = {.lex_state = 7}, - [4195] = {.lex_state = 3227}, - [4196] = {.lex_state = 3227}, - [4197] = {.lex_state = 3227}, - [4198] = {.lex_state = 3227}, - [4199] = {.lex_state = 1707}, - [4200] = {.lex_state = 3227}, - [4201] = {.lex_state = 1707}, - [4202] = {.lex_state = 3227}, - [4203] = {.lex_state = 3227}, - [4204] = {.lex_state = 1707}, - [4205] = {.lex_state = 1778}, - [4206] = {.lex_state = 1778}, - [4207] = {.lex_state = 7}, - [4208] = {.lex_state = 73}, - [4209] = {.lex_state = 1707}, - [4210] = {.lex_state = 73}, - [4211] = {.lex_state = 1707}, - [4212] = {.lex_state = 1707}, - [4213] = {.lex_state = 1707}, - [4214] = {.lex_state = 73}, - [4215] = {.lex_state = 73}, - [4216] = {.lex_state = 1707}, - [4217] = {.lex_state = 73}, - [4218] = {.lex_state = 1707}, - [4219] = {.lex_state = 73}, - [4220] = {.lex_state = 73}, - [4221] = {.lex_state = 73}, - [4222] = {.lex_state = 1707}, - [4223] = {.lex_state = 73}, - [4224] = {.lex_state = 73}, - [4225] = {.lex_state = 1738}, - [4226] = {.lex_state = 73}, - [4227] = {.lex_state = 73}, - [4228] = {.lex_state = 1738}, - [4229] = {.lex_state = 1803}, - [4230] = {.lex_state = 81}, - [4231] = {.lex_state = 1804}, - [4232] = {.lex_state = 1803}, - [4233] = {.lex_state = 1703}, - [4234] = {.lex_state = 1804}, - [4235] = {.lex_state = 1703}, - [4236] = {.lex_state = 1802}, - [4237] = {.lex_state = 1703}, - [4238] = {.lex_state = 1703}, - [4239] = {.lex_state = 1703}, - [4240] = {.lex_state = 1703}, - [4241] = {.lex_state = 1814}, - [4242] = {.lex_state = 1804}, - [4243] = {.lex_state = 1810}, - [4244] = {.lex_state = 1804}, - [4245] = {.lex_state = 1703}, - [4246] = {.lex_state = 1814}, - [4247] = {.lex_state = 1816}, - [4248] = {.lex_state = 1802}, - [4249] = {.lex_state = 1802}, - [4250] = {.lex_state = 1816}, - [4251] = {.lex_state = 1818}, - [4252] = {.lex_state = 1703}, - [4253] = {.lex_state = 1703}, - [4254] = {.lex_state = 1703}, - [4255] = {.lex_state = 1805}, - [4256] = {.lex_state = 1810}, - [4257] = {.lex_state = 1805}, - [4258] = {.lex_state = 1818}, - [4259] = {.lex_state = 1820}, - [4260] = {.lex_state = 1815}, - [4261] = {.lex_state = 1802}, - [4262] = {.lex_state = 1802}, - [4263] = {.lex_state = 1802}, - [4264] = {.lex_state = 1805}, - [4265] = {.lex_state = 1818}, - [4266] = {.lex_state = 1802}, - [4267] = {.lex_state = 1805}, - [4268] = {.lex_state = 1818}, - [4269] = {.lex_state = 1811}, - [4270] = {.lex_state = 1802}, - [4271] = {.lex_state = 1738}, - [4272] = {.lex_state = 1818}, - [4273] = {.lex_state = 1816}, - [4274] = {.lex_state = 1818}, - [4275] = {.lex_state = 1738}, - [4276] = {.lex_state = 1738}, - [4277] = {.lex_state = 1812}, - [4278] = {.lex_state = 1816}, - [4279] = {.lex_state = 1818}, - [4280] = {.lex_state = 1815}, - [4281] = {.lex_state = 1822}, - [4282] = {.lex_state = 1738}, - [4283] = {.lex_state = 1819}, - [4284] = {.lex_state = 1738}, - [4285] = {.lex_state = 1802}, - [4286] = {.lex_state = 1817}, - [4287] = {.lex_state = 1812}, - [4288] = {.lex_state = 1802}, - [4289] = {.lex_state = 1811}, - [4290] = {.lex_state = 1802}, - [4291] = {.lex_state = 1820}, - [4292] = {.lex_state = 1802}, - [4293] = {.lex_state = 1818}, - [4294] = {.lex_state = 1818}, - [4295] = {.lex_state = 1822}, - [4296] = {.lex_state = 73}, - [4297] = {.lex_state = 1738}, - [4298] = {.lex_state = 1738}, - [4299] = {.lex_state = 1738}, - [4300] = {.lex_state = 1817}, - [4301] = {.lex_state = 1818}, - [4302] = {.lex_state = 58}, - [4303] = {.lex_state = 1824}, - [4304] = {.lex_state = 1819}, - [4305] = {.lex_state = 1821}, - [4306] = {.lex_state = 1811}, - [4307] = {.lex_state = 1819}, - [4308] = {.lex_state = 1817}, - [4309] = {.lex_state = 1739}, - [4310] = {.lex_state = 1813}, - [4311] = {.lex_state = 1824}, - [4312] = {.lex_state = 59}, - [4313] = {.lex_state = 1819}, - [4314] = {.lex_state = 1811}, - [4315] = {.lex_state = 1819}, - [4316] = {.lex_state = 1824}, - [4317] = {.lex_state = 1824}, - [4318] = {.lex_state = 61}, - [4319] = {.lex_state = 57}, - [4320] = {.lex_state = 73}, - [4321] = {.lex_state = 57}, - [4322] = {.lex_state = 1811}, - [4323] = {.lex_state = 1824}, - [4324] = {.lex_state = 1738}, - [4325] = {.lex_state = 1738}, - [4326] = {.lex_state = 1819}, - [4327] = {.lex_state = 1822}, - [4328] = {.lex_state = 1824}, - [4329] = {.lex_state = 1817}, - [4330] = {.lex_state = 1822}, - [4331] = {.lex_state = 58}, - [4332] = {.lex_state = 58}, - [4333] = {.lex_state = 1811}, - [4334] = {.lex_state = 58}, - [4335] = {.lex_state = 1819}, - [4336] = {.lex_state = 1811}, - [4337] = {.lex_state = 1826}, - [4338] = {.lex_state = 58}, - [4339] = {.lex_state = 1823}, - [4340] = {.lex_state = 1813}, - [4341] = {.lex_state = 1824}, - [4342] = {.lex_state = 1819}, - [4343] = {.lex_state = 1824}, - [4344] = {.lex_state = 1824}, - [4345] = {.lex_state = 62}, - [4346] = {.lex_state = 1823}, - [4347] = {.lex_state = 1811}, - [4348] = {.lex_state = 1811}, - [4349] = {.lex_state = 1819}, - [4350] = {.lex_state = 1819}, - [4351] = {.lex_state = 58}, - [4352] = {.lex_state = 1828}, - [4353] = {.lex_state = 1824}, - [4354] = {.lex_state = 1811}, - [4355] = {.lex_state = 1819}, - [4356] = {.lex_state = 1824}, - [4357] = {.lex_state = 63}, - [4358] = {.lex_state = 62}, - [4359] = {.lex_state = 1821}, - [4360] = {.lex_state = 1824}, - [4361] = {.lex_state = 1739}, - [4362] = {.lex_state = 1738}, - [4363] = {.lex_state = 1825}, - [4364] = {.lex_state = 63}, - [4365] = {.lex_state = 1830}, - [4366] = {.lex_state = 1738}, - [4367] = {.lex_state = 1806}, - [4368] = {.lex_state = 1806}, - [4369] = {.lex_state = 1806}, - [4370] = {.lex_state = 1825}, - [4371] = {.lex_state = 1806}, - [4372] = {.lex_state = 1823}, - [4373] = {.lex_state = 63}, - [4374] = {.lex_state = 41}, - [4375] = {.lex_state = 1738}, - [4376] = {.lex_state = 1828}, - [4377] = {.lex_state = 60}, - [4378] = {.lex_state = 1825}, - [4379] = {.lex_state = 65}, - [4380] = {.lex_state = 41}, - [4381] = {.lex_state = 1738}, - [4382] = {.lex_state = 63}, - [4383] = {.lex_state = 41}, - [4384] = {.lex_state = 41}, - [4385] = {.lex_state = 1811}, - [4386] = {.lex_state = 1811}, - [4387] = {.lex_state = 1830}, - [4388] = {.lex_state = 1819}, - [4389] = {.lex_state = 1738}, - [4390] = {.lex_state = 1825}, - [4391] = {.lex_state = 1738}, - [4392] = {.lex_state = 1738}, - [4393] = {.lex_state = 1738}, - [4394] = {.lex_state = 1826}, - [4395] = {.lex_state = 1806}, - [4396] = {.lex_state = 63}, - [4397] = {.lex_state = 1825}, - [4398] = {.lex_state = 1823}, - [4399] = {.lex_state = 1825}, - [4400] = {.lex_state = 1806}, - [4401] = {.lex_state = 1738}, - [4402] = {.lex_state = 41}, - [4403] = {.lex_state = 1832}, - [4404] = {.lex_state = 41}, - [4405] = {.lex_state = 41}, - [4406] = {.lex_state = 1827}, - [4407] = {.lex_state = 1827}, - [4408] = {.lex_state = 1827}, - [4409] = {.lex_state = 1832}, - [4410] = {.lex_state = 1827}, - [4411] = {.lex_state = 1827}, - [4412] = {.lex_state = 1827}, - [4413] = {.lex_state = 41}, - [4414] = {.lex_state = 1832}, - [4415] = {.lex_state = 1738}, - [4416] = {.lex_state = 41}, - [4417] = {.lex_state = 1825}, - [4418] = {.lex_state = 1827}, - [4419] = {.lex_state = 1827}, - [4420] = {.lex_state = 1806}, - [4421] = {.lex_state = 1806}, - [4422] = {.lex_state = 1845}, - [4423] = {.lex_state = 1827}, - [4424] = {.lex_state = 1738}, - [4425] = {.lex_state = 1827}, - [4426] = {.lex_state = 1825}, - [4427] = {.lex_state = 1827}, - [4428] = {.lex_state = 1827}, - [4429] = {.lex_state = 1827}, - [4430] = {.lex_state = 1829}, - [4431] = {.lex_state = 1827}, - [4432] = {.lex_state = 1827}, - [4433] = {.lex_state = 41}, - [4434] = {.lex_state = 1832}, - [4435] = {.lex_state = 1827}, - [4436] = {.lex_state = 1827}, - [4437] = {.lex_state = 41}, - [4438] = {.lex_state = 1827}, - [4439] = {.lex_state = 1806}, - [4440] = {.lex_state = 1738}, - [4441] = {.lex_state = 1827}, - [4442] = {.lex_state = 1827}, - [4443] = {.lex_state = 1806}, - [4444] = {.lex_state = 1827}, - [4445] = {.lex_state = 1738}, - [4446] = {.lex_state = 1825}, - [4447] = {.lex_state = 1806}, - [4448] = {.lex_state = 1811}, - [4449] = {.lex_state = 1832}, - [4450] = {.lex_state = 1827}, - [4451] = {.lex_state = 41}, - [4452] = {.lex_state = 1830}, - [4453] = {.lex_state = 1845}, - [4454] = {.lex_state = 1827}, - [4455] = {.lex_state = 1806}, - [4456] = {.lex_state = 1811}, - [4457] = {.lex_state = 1811}, - [4458] = {.lex_state = 1827}, - [4459] = {.lex_state = 1832}, - [4460] = {.lex_state = 1830}, - [4461] = {.lex_state = 1825}, - [4462] = {.lex_state = 66}, - [4463] = {.lex_state = 1827}, - [4464] = {.lex_state = 1738}, - [4465] = {.lex_state = 1738}, - [4466] = {.lex_state = 1825}, - [4467] = {.lex_state = 1827}, - [4468] = {.lex_state = 1832}, - [4469] = {.lex_state = 1827}, - [4470] = {.lex_state = 1738}, - [4471] = {.lex_state = 1845}, - [4472] = {.lex_state = 1738}, - [4473] = {.lex_state = 41}, - [4474] = {.lex_state = 1832}, - [4475] = {.lex_state = 1738}, - [4476] = {.lex_state = 1832}, - [4477] = {.lex_state = 1738}, - [4478] = {.lex_state = 1827}, - [4479] = {.lex_state = 1827}, - [4480] = {.lex_state = 1827}, - [4481] = {.lex_state = 1845}, - [4482] = {.lex_state = 1845}, - [4483] = {.lex_state = 66}, - [4484] = {.lex_state = 1825}, - [4485] = {.lex_state = 1827}, - [4486] = {.lex_state = 41}, - [4487] = {.lex_state = 1815}, - [4488] = {.lex_state = 1827}, - [4489] = {.lex_state = 41}, - [4490] = {.lex_state = 1832}, - [4491] = {.lex_state = 41}, - [4492] = {.lex_state = 1827}, - [4493] = {.lex_state = 1738}, - [4494] = {.lex_state = 1827}, - [4495] = {.lex_state = 1827}, - [4496] = {.lex_state = 1827}, - [4497] = {.lex_state = 41}, - [4498] = {.lex_state = 41}, - [4499] = {.lex_state = 1827}, - [4500] = {.lex_state = 1832}, - [4501] = {.lex_state = 1738}, - [4502] = {.lex_state = 1845}, - [4503] = {.lex_state = 1832}, - [4504] = {.lex_state = 1827}, - [4505] = {.lex_state = 1827}, - [4506] = {.lex_state = 1832}, - [4507] = {.lex_state = 1739}, - [4508] = {.lex_state = 293, .external_lex_state = 2}, - [4509] = {.lex_state = 1827}, - [4510] = {.lex_state = 1845}, - [4511] = {.lex_state = 1832}, - [4512] = {.lex_state = 1827}, - [4513] = {.lex_state = 1827}, - [4514] = {.lex_state = 1832}, - [4515] = {.lex_state = 1832}, - [4516] = {.lex_state = 1815}, - [4517] = {.lex_state = 1827}, - [4518] = {.lex_state = 41}, - [4519] = {.lex_state = 1827}, - [4520] = {.lex_state = 1815}, - [4521] = {.lex_state = 64}, - [4522] = {.lex_state = 1827}, - [4523] = {.lex_state = 1832}, - [4524] = {.lex_state = 41}, - [4525] = {.lex_state = 41}, - [4526] = {.lex_state = 64}, - [4527] = {.lex_state = 1815}, - [4528] = {.lex_state = 1815}, - [4529] = {.lex_state = 1827}, - [4530] = {.lex_state = 41}, - [4531] = {.lex_state = 1827}, - [4532] = {.lex_state = 1815}, - [4533] = {.lex_state = 1827}, - [4534] = {.lex_state = 1815}, - [4535] = {.lex_state = 1827}, - [4536] = {.lex_state = 1827}, - [4537] = {.lex_state = 1815}, - [4538] = {.lex_state = 293, .external_lex_state = 2}, - [4539] = {.lex_state = 1827}, - [4540] = {.lex_state = 41}, - [4541] = {.lex_state = 1831}, - [4542] = {.lex_state = 1827}, - [4543] = {.lex_state = 41}, - [4544] = {.lex_state = 1827}, - [4545] = {.lex_state = 1827}, - [4546] = {.lex_state = 64}, - [4547] = {.lex_state = 1829}, - [4548] = {.lex_state = 1845}, - [4549] = {.lex_state = 1827}, - [4550] = {.lex_state = 1832}, - [4551] = {.lex_state = 1845}, - [4552] = {.lex_state = 1827}, - [4553] = {.lex_state = 1827}, - [4554] = {.lex_state = 1827}, - [4555] = {.lex_state = 1815}, - [4556] = {.lex_state = 1811}, - [4557] = {.lex_state = 1827}, - [4558] = {.lex_state = 293, .external_lex_state = 2}, - [4559] = {.lex_state = 1827}, - [4560] = {.lex_state = 1738}, - [4561] = {.lex_state = 1815}, - [4562] = {.lex_state = 1827}, - [4563] = {.lex_state = 293, .external_lex_state = 2}, - [4564] = {.lex_state = 1832}, - [4565] = {.lex_state = 1827}, - [4566] = {.lex_state = 64}, - [4567] = {.lex_state = 1811}, - [4568] = {.lex_state = 1831}, - [4569] = {.lex_state = 1811}, - [4570] = {.lex_state = 1815}, - [4571] = {.lex_state = 64}, - [4572] = {.lex_state = 64}, - [4573] = {.lex_state = 1739}, - [4574] = {.lex_state = 1845}, - [4575] = {.lex_state = 1827}, - [4576] = {.lex_state = 1827}, - [4577] = {.lex_state = 1770}, - [4578] = {.lex_state = 75}, - [4579] = {.lex_state = 41}, - [4580] = {.lex_state = 41}, - [4581] = {.lex_state = 41}, - [4582] = {.lex_state = 1846}, - [4583] = {.lex_state = 1846}, - [4584] = {.lex_state = 1770}, - [4585] = {.lex_state = 1770}, - [4586] = {.lex_state = 1770}, - [4587] = {.lex_state = 1770}, - [4588] = {.lex_state = 1846}, - [4589] = {.lex_state = 1846}, - [4590] = {.lex_state = 1770}, - [4591] = {.lex_state = 1770}, - [4592] = {.lex_state = 41}, - [4593] = {.lex_state = 75}, - [4594] = {.lex_state = 1770}, - [4595] = {.lex_state = 1770}, - [4596] = {.lex_state = 1770}, - [4597] = {.lex_state = 1770}, - [4598] = {.lex_state = 75}, - [4599] = {.lex_state = 1770}, - [4600] = {.lex_state = 1770}, - [4601] = {.lex_state = 1770}, - [4602] = {.lex_state = 1770}, - [4603] = {.lex_state = 75}, - [4604] = {.lex_state = 75}, - [4605] = {.lex_state = 75}, - [4606] = {.lex_state = 67}, - [4607] = {.lex_state = 75}, - [4608] = {.lex_state = 71}, - [4609] = {.lex_state = 75}, - [4610] = {.lex_state = 75}, - [4611] = {.lex_state = 1770}, - [4612] = {.lex_state = 75}, - [4613] = {.lex_state = 1802}, - [4614] = {.lex_state = 75}, - [4615] = {.lex_state = 75}, - [4616] = {.lex_state = 1802}, - [4617] = {.lex_state = 1770}, - [4618] = {.lex_state = 1770}, - [4619] = {.lex_state = 1770}, - [4620] = {.lex_state = 75}, - [4621] = {.lex_state = 75}, - [4622] = {.lex_state = 75}, - [4623] = {.lex_state = 75}, - [4624] = {.lex_state = 75}, - [4625] = {.lex_state = 1802}, - [4626] = {.lex_state = 1802}, - [4627] = {.lex_state = 1827}, - [4628] = {.lex_state = 75}, - [4629] = {.lex_state = 75}, - [4630] = {.lex_state = 1770}, - [4631] = {.lex_state = 75}, - [4632] = {.lex_state = 1770}, - [4633] = {.lex_state = 75}, - [4634] = {.lex_state = 1833}, - [4635] = {.lex_state = 1815}, - [4636] = {.lex_state = 1770}, - [4637] = {.lex_state = 1770}, - [4638] = {.lex_state = 1770}, - [4639] = {.lex_state = 70}, - [4640] = {.lex_state = 1833}, - [4641] = {.lex_state = 71}, - [4642] = {.lex_state = 1739}, - [4643] = {.lex_state = 1833}, - [4644] = {.lex_state = 1833}, - [4645] = {.lex_state = 1815}, - [4646] = {.lex_state = 1833}, - [4647] = {.lex_state = 1815}, - [4648] = {.lex_state = 1815}, - [4649] = {.lex_state = 1815}, - [4650] = {.lex_state = 1815}, - [4651] = {.lex_state = 71}, - [4652] = {.lex_state = 1833}, - [4653] = {.lex_state = 1833}, - [4654] = {.lex_state = 1846}, - [4655] = {.lex_state = 1842}, - [4656] = {.lex_state = 1806}, - [4657] = {.lex_state = 1843}, - [4658] = {.lex_state = 1832}, - [4659] = {.lex_state = 1739}, - [4660] = {.lex_state = 1827}, - [4661] = {.lex_state = 1842}, - [4662] = {.lex_state = 71}, - [4663] = {.lex_state = 1842}, - [4664] = {.lex_state = 1833}, - [4665] = {.lex_state = 1739}, - [4666] = {.lex_state = 1802}, - [4667] = {.lex_state = 1827}, - [4668] = {.lex_state = 1770}, - [4669] = {.lex_state = 1770}, - [4670] = {.lex_state = 1770}, - [4671] = {.lex_state = 1770}, - [4672] = {.lex_state = 1770}, - [4673] = {.lex_state = 1770}, - [4674] = {.lex_state = 1770}, - [4675] = {.lex_state = 1770}, - [4676] = {.lex_state = 1770}, - [4677] = {.lex_state = 1770}, - [4678] = {.lex_state = 1770}, - [4679] = {.lex_state = 1770}, - [4680] = {.lex_state = 1770}, - [4681] = {.lex_state = 1770}, - [4682] = {.lex_state = 1770}, - [4683] = {.lex_state = 1770}, - [4684] = {.lex_state = 1770}, - [4685] = {.lex_state = 1770}, - [4686] = {.lex_state = 1770}, - [4687] = {.lex_state = 1770}, - [4688] = {.lex_state = 1770}, - [4689] = {.lex_state = 1770}, - [4690] = {.lex_state = 1770}, - [4691] = {.lex_state = 1770}, - [4692] = {.lex_state = 1842}, - [4693] = {.lex_state = 1770}, - [4694] = {.lex_state = 1770}, - [4695] = {.lex_state = 1770}, - [4696] = {.lex_state = 1770}, - [4697] = {.lex_state = 1770}, - [4698] = {.lex_state = 1770}, - [4699] = {.lex_state = 1770}, - [4700] = {.lex_state = 1770}, - [4701] = {.lex_state = 1770}, - [4702] = {.lex_state = 1833}, - [4703] = {.lex_state = 1770}, - [4704] = {.lex_state = 1770}, - [4705] = {.lex_state = 1842}, - [4706] = {.lex_state = 1842}, - [4707] = {.lex_state = 1815}, - [4708] = {.lex_state = 1770}, - [4709] = {.lex_state = 1770}, - [4710] = {.lex_state = 1770}, - [4711] = {.lex_state = 1770}, - [4712] = {.lex_state = 1770}, - [4713] = {.lex_state = 1815}, - [4714] = {.lex_state = 1770}, - [4715] = {.lex_state = 1770}, - [4716] = {.lex_state = 1770}, - [4717] = {.lex_state = 1770}, - [4718] = {.lex_state = 1770}, - [4719] = {.lex_state = 1770}, - [4720] = {.lex_state = 1770}, - [4721] = {.lex_state = 1770}, - [4722] = {.lex_state = 1831}, - [4723] = {.lex_state = 1770}, - [4724] = {.lex_state = 1770}, - [4725] = {.lex_state = 1770}, - [4726] = {.lex_state = 1770}, - [4727] = {.lex_state = 1770}, - [4728] = {.lex_state = 1770}, - [4729] = {.lex_state = 1770}, - [4730] = {.lex_state = 1770}, - [4731] = {.lex_state = 1770}, - [4732] = {.lex_state = 1770}, - [4733] = {.lex_state = 1770}, - [4734] = {.lex_state = 1770}, - [4735] = {.lex_state = 1770}, - [4736] = {.lex_state = 1770}, - [4737] = {.lex_state = 1770}, - [4738] = {.lex_state = 1770}, - [4739] = {.lex_state = 1770}, - [4740] = {.lex_state = 1770}, - [4741] = {.lex_state = 1770}, - [4742] = {.lex_state = 1770}, - [4743] = {.lex_state = 1770}, - [4744] = {.lex_state = 1770}, - [4745] = {.lex_state = 1770}, - [4746] = {.lex_state = 1770}, - [4747] = {.lex_state = 1770}, - [4748] = {.lex_state = 1770}, - [4749] = {.lex_state = 1770}, - [4750] = {.lex_state = 1770}, - [4751] = {.lex_state = 1770}, - [4752] = {.lex_state = 1770}, - [4753] = {.lex_state = 1770}, - [4754] = {.lex_state = 1770}, - [4755] = {.lex_state = 1770}, - [4756] = {.lex_state = 1770}, - [4757] = {.lex_state = 1770}, - [4758] = {.lex_state = 1770}, - [4759] = {.lex_state = 1815}, - [4760] = {.lex_state = 1770}, - [4761] = {.lex_state = 1770}, - [4762] = {.lex_state = 1770}, - [4763] = {.lex_state = 1770}, - [4764] = {.lex_state = 1770}, - [4765] = {.lex_state = 1770}, - [4766] = {.lex_state = 1770}, - [4767] = {.lex_state = 1770}, - [4768] = {.lex_state = 1770}, - [4769] = {.lex_state = 1770}, - [4770] = {.lex_state = 1770}, - [4771] = {.lex_state = 1770}, - [4772] = {.lex_state = 1815}, - [4773] = {.lex_state = 1831}, - [4774] = {.lex_state = 1770}, - [4775] = {.lex_state = 1770}, - [4776] = {.lex_state = 1770}, - [4777] = {.lex_state = 1770}, - [4778] = {.lex_state = 1815}, - [4779] = {.lex_state = 1739}, - [4780] = {.lex_state = 75}, - [4781] = {.lex_state = 75}, - [4782] = {.lex_state = 1770}, - [4783] = {.lex_state = 41}, - [4784] = {.lex_state = 1827}, - [4785] = {.lex_state = 1827}, - [4786] = {.lex_state = 41}, - [4787] = {.lex_state = 1833}, - [4788] = {.lex_state = 1770}, - [4789] = {.lex_state = 1833}, - [4790] = {.lex_state = 1842}, - [4791] = {.lex_state = 1770}, - [4792] = {.lex_state = 1739}, - [4793] = {.lex_state = 1739}, - [4794] = {.lex_state = 41}, - [4795] = {.lex_state = 41}, - [4796] = {.lex_state = 1770}, - [4797] = {.lex_state = 1770}, - [4798] = {.lex_state = 41}, - [4799] = {.lex_state = 41}, - [4800] = {.lex_state = 41}, - [4801] = {.lex_state = 1842}, - [4802] = {.lex_state = 41}, - [4803] = {.lex_state = 41}, - [4804] = {.lex_state = 1833}, - [4805] = {.lex_state = 1806}, - [4806] = {.lex_state = 1770}, - [4807] = {.lex_state = 41}, - [4808] = {.lex_state = 1770}, - [4809] = {.lex_state = 1770}, - [4810] = {.lex_state = 1827}, - [4811] = {.lex_state = 1770}, - [4812] = {.lex_state = 15}, - [4813] = {.lex_state = 1772}, - [4814] = {.lex_state = 1843}, - [4815] = {.lex_state = 1772}, - [4816] = {.lex_state = 1842}, - [4817] = {.lex_state = 1842}, - [4818] = {.lex_state = 1770}, - [4819] = {.lex_state = 1739}, - [4820] = {.lex_state = 1842}, - [4821] = {.lex_state = 1770}, - [4822] = {.lex_state = 1770}, - [4823] = {.lex_state = 1834}, - [4824] = {.lex_state = 1835}, - [4825] = {.lex_state = 1770}, - [4826] = {.lex_state = 1770}, - [4827] = {.lex_state = 1833}, - [4828] = {.lex_state = 75}, - [4829] = {.lex_state = 1770}, - [4830] = {.lex_state = 1770}, - [4831] = {.lex_state = 41}, - [4832] = {.lex_state = 1842}, - [4833] = {.lex_state = 41}, - [4834] = {.lex_state = 75}, - [4835] = {.lex_state = 1833}, - [4836] = {.lex_state = 1770}, - [4837] = {.lex_state = 1770}, - [4838] = {.lex_state = 1802}, - [4839] = {.lex_state = 1770}, - [4840] = {.lex_state = 68}, - [4841] = {.lex_state = 41}, - [4842] = {.lex_state = 1770}, - [4843] = {.lex_state = 41}, - [4844] = {.lex_state = 1802}, - [4845] = {.lex_state = 1846}, - [4846] = {.lex_state = 1772}, - [4847] = {.lex_state = 1833}, - [4848] = {.lex_state = 1846}, - [4849] = {.lex_state = 1833}, - [4850] = {.lex_state = 1769}, - [4851] = {.lex_state = 1772}, - [4852] = {.lex_state = 1802}, - [4853] = {.lex_state = 1802}, - [4854] = {.lex_state = 41}, - [4855] = {.lex_state = 41}, - [4856] = {.lex_state = 41}, - [4857] = {.lex_state = 41}, - [4858] = {.lex_state = 1833}, - [4859] = {.lex_state = 1770}, - [4860] = {.lex_state = 1772}, - [4861] = {.lex_state = 1846}, - [4862] = {.lex_state = 1846}, - [4863] = {.lex_state = 1770}, - [4864] = {.lex_state = 41}, - [4865] = {.lex_state = 1802}, - [4866] = {.lex_state = 1802}, - [4867] = {.lex_state = 1833}, - [4868] = {.lex_state = 1769}, - [4869] = {.lex_state = 41}, - [4870] = {.lex_state = 41}, - [4871] = {.lex_state = 41}, - [4872] = {.lex_state = 1833}, - [4873] = {.lex_state = 15}, - [4874] = {.lex_state = 1827}, - [4875] = {.lex_state = 1802}, - [4876] = {.lex_state = 41}, - [4877] = {.lex_state = 1806}, - [4878] = {.lex_state = 1806}, - [4879] = {.lex_state = 1770}, - [4880] = {.lex_state = 1846}, - [4881] = {.lex_state = 41}, - [4882] = {.lex_state = 1770}, - [4883] = {.lex_state = 1802}, - [4884] = {.lex_state = 68}, - [4885] = {.lex_state = 1772}, - [4886] = {.lex_state = 1772}, - [4887] = {.lex_state = 1772}, - [4888] = {.lex_state = 15}, - [4889] = {.lex_state = 1772}, - [4890] = {.lex_state = 1772}, - [4891] = {.lex_state = 1772}, - [4892] = {.lex_state = 1772}, - [4893] = {.lex_state = 1772}, - [4894] = {.lex_state = 1770}, - [4895] = {.lex_state = 1772}, - [4896] = {.lex_state = 1772}, - [4897] = {.lex_state = 1772}, - [4898] = {.lex_state = 1770}, - [4899] = {.lex_state = 1772}, - [4900] = {.lex_state = 1770}, - [4901] = {.lex_state = 1772}, - [4902] = {.lex_state = 1772}, - [4903] = {.lex_state = 1739}, - [4904] = {.lex_state = 1770}, - [4905] = {.lex_state = 1770}, - [4906] = {.lex_state = 1770}, - [4907] = {.lex_state = 1772}, - [4908] = {.lex_state = 1772}, - [4909] = {.lex_state = 1770}, - [4910] = {.lex_state = 1834}, - [4911] = {.lex_state = 1770}, - [4912] = {.lex_state = 1772}, - [4913] = {.lex_state = 1770}, - [4914] = {.lex_state = 1802}, - [4915] = {.lex_state = 15}, - [4916] = {.lex_state = 1772}, - [4917] = {.lex_state = 1770}, - [4918] = {.lex_state = 1772}, - [4919] = {.lex_state = 64}, - [4920] = {.lex_state = 1772}, - [4921] = {.lex_state = 15}, - [4922] = {.lex_state = 1772}, - [4923] = {.lex_state = 1770}, - [4924] = {.lex_state = 64}, - [4925] = {.lex_state = 1806}, - [4926] = {.lex_state = 1802}, - [4927] = {.lex_state = 1772}, - [4928] = {.lex_state = 1770}, - [4929] = {.lex_state = 69}, - [4930] = {.lex_state = 1835}, - [4931] = {.lex_state = 69}, - [4932] = {.lex_state = 70}, - [4933] = {.lex_state = 69}, - [4934] = {.lex_state = 69}, - [4935] = {.lex_state = 1772}, - [4936] = {.lex_state = 1772}, - [4937] = {.lex_state = 1772}, - [4938] = {.lex_state = 69}, - [4939] = {.lex_state = 69}, - [4940] = {.lex_state = 1772}, - [4941] = {.lex_state = 1772}, - [4942] = {.lex_state = 1772}, - [4943] = {.lex_state = 1739}, - [4944] = {.lex_state = 1806}, - [4945] = {.lex_state = 1836}, - [4946] = {.lex_state = 1772}, - [4947] = {.lex_state = 1772}, - [4948] = {.lex_state = 295}, - [4949] = {.lex_state = 1772}, - [4950] = {.lex_state = 1772}, - [4951] = {.lex_state = 1769}, - [4952] = {.lex_state = 69}, - [4953] = {.lex_state = 1772}, - [4954] = {.lex_state = 1836}, - [4955] = {.lex_state = 1772}, - [4956] = {.lex_state = 1772}, - [4957] = {.lex_state = 64}, - [4958] = {.lex_state = 75}, - [4959] = {.lex_state = 15}, - [4960] = {.lex_state = 1770}, - [4961] = {.lex_state = 91}, - [4962] = {.lex_state = 15}, - [4963] = {.lex_state = 1802}, - [4964] = {.lex_state = 1827}, - [4965] = {.lex_state = 1772}, - [4966] = {.lex_state = 1739}, - [4967] = {.lex_state = 1772}, - [4968] = {.lex_state = 75}, - [4969] = {.lex_state = 75}, - [4970] = {.lex_state = 1772}, - [4971] = {.lex_state = 75}, - [4972] = {.lex_state = 69}, - [4973] = {.lex_state = 1770}, - [4974] = {.lex_state = 1772}, - [4975] = {.lex_state = 1772}, - [4976] = {.lex_state = 1772}, - [4977] = {.lex_state = 41}, - [4978] = {.lex_state = 1772}, - [4979] = {.lex_state = 1772}, - [4980] = {.lex_state = 1772}, - [4981] = {.lex_state = 1772}, - [4982] = {.lex_state = 1772}, - [4983] = {.lex_state = 1772}, - [4984] = {.lex_state = 1772}, - [4985] = {.lex_state = 69}, - [4986] = {.lex_state = 1770}, - [4987] = {.lex_state = 1769}, - [4988] = {.lex_state = 1772}, - [4989] = {.lex_state = 1772}, - [4990] = {.lex_state = 1772}, - [4991] = {.lex_state = 91}, - [4992] = {.lex_state = 1772}, - [4993] = {.lex_state = 41}, - [4994] = {.lex_state = 41}, - [4995] = {.lex_state = 1772}, - [4996] = {.lex_state = 1772}, - [4997] = {.lex_state = 91}, - [4998] = {.lex_state = 91}, - [4999] = {.lex_state = 1770}, - [5000] = {.lex_state = 1772}, - [5001] = {.lex_state = 1827}, - [5002] = {.lex_state = 1827}, - [5003] = {.lex_state = 1772}, - [5004] = {.lex_state = 1739}, - [5005] = {.lex_state = 1770}, - [5006] = {.lex_state = 1772}, - [5007] = {.lex_state = 1772}, - [5008] = {.lex_state = 1772}, - [5009] = {.lex_state = 1772}, - [5010] = {.lex_state = 75}, - [5011] = {.lex_state = 1772}, - [5012] = {.lex_state = 1772}, - [5013] = {.lex_state = 1772}, - [5014] = {.lex_state = 1772}, - [5015] = {.lex_state = 1772}, - [5016] = {.lex_state = 75}, - [5017] = {.lex_state = 91}, - [5018] = {.lex_state = 64}, - [5019] = {.lex_state = 64}, - [5020] = {.lex_state = 64}, - [5021] = {.lex_state = 64}, - [5022] = {.lex_state = 1772}, - [5023] = {.lex_state = 1772}, - [5024] = {.lex_state = 1772}, - [5025] = {.lex_state = 1772}, - [5026] = {.lex_state = 1772}, - [5027] = {.lex_state = 1770}, - [5028] = {.lex_state = 1772}, - [5029] = {.lex_state = 41}, - [5030] = {.lex_state = 1772}, - [5031] = {.lex_state = 1772}, - [5032] = {.lex_state = 41}, - [5033] = {.lex_state = 1772}, - [5034] = {.lex_state = 1772}, - [5035] = {.lex_state = 1772}, - [5036] = {.lex_state = 64}, - [5037] = {.lex_state = 1770}, - [5038] = {.lex_state = 1772}, - [5039] = {.lex_state = 1772}, - [5040] = {.lex_state = 1772}, - [5041] = {.lex_state = 1770}, - [5042] = {.lex_state = 1772}, - [5043] = {.lex_state = 1772}, - [5044] = {.lex_state = 1772}, - [5045] = {.lex_state = 1769}, - [5046] = {.lex_state = 1833}, - [5047] = {.lex_state = 1772}, - [5048] = {.lex_state = 1772}, - [5049] = {.lex_state = 1772}, - [5050] = {.lex_state = 1772}, - [5051] = {.lex_state = 1772}, - [5052] = {.lex_state = 1770}, - [5053] = {.lex_state = 1772}, - [5054] = {.lex_state = 1772}, - [5055] = {.lex_state = 1769}, - [5056] = {.lex_state = 41}, - [5057] = {.lex_state = 1772}, - [5058] = {.lex_state = 1772}, - [5059] = {.lex_state = 1769}, - [5060] = {.lex_state = 1769}, - [5061] = {.lex_state = 1772}, - [5062] = {.lex_state = 1772}, - [5063] = {.lex_state = 75}, - [5064] = {.lex_state = 1772}, - [5065] = {.lex_state = 41}, - [5066] = {.lex_state = 1772}, - [5067] = {.lex_state = 75}, - [5068] = {.lex_state = 1772}, - [5069] = {.lex_state = 1769}, - [5070] = {.lex_state = 1837}, - [5071] = {.lex_state = 1769}, - [5072] = {.lex_state = 1772}, - [5073] = {.lex_state = 41}, - [5074] = {.lex_state = 41}, - [5075] = {.lex_state = 1769}, - [5076] = {.lex_state = 1772}, - [5077] = {.lex_state = 41}, - [5078] = {.lex_state = 1772}, - [5079] = {.lex_state = 1772}, - [5080] = {.lex_state = 1772}, - [5081] = {.lex_state = 41}, - [5082] = {.lex_state = 1769}, - [5083] = {.lex_state = 41}, - [5084] = {.lex_state = 296}, - [5085] = {.lex_state = 41}, - [5086] = {.lex_state = 1769}, - [5087] = {.lex_state = 1769}, - [5088] = {.lex_state = 41}, - [5089] = {.lex_state = 1769}, - [5090] = {.lex_state = 41}, - [5091] = {.lex_state = 1772}, - [5092] = {.lex_state = 1772}, - [5093] = {.lex_state = 1772}, - [5094] = {.lex_state = 1772}, - [5095] = {.lex_state = 1772}, - [5096] = {.lex_state = 1772}, - [5097] = {.lex_state = 1772}, - [5098] = {.lex_state = 1772}, - [5099] = {.lex_state = 1772}, - [5100] = {.lex_state = 1772}, - [5101] = {.lex_state = 1772}, - [5102] = {.lex_state = 1770}, - [5103] = {.lex_state = 1772}, - [5104] = {.lex_state = 76}, - [5105] = {.lex_state = 1772}, - [5106] = {.lex_state = 1772}, - [5107] = {.lex_state = 41}, - [5108] = {.lex_state = 41}, - [5109] = {.lex_state = 1772}, - [5110] = {.lex_state = 301}, - [5111] = {.lex_state = 1772}, - [5112] = {.lex_state = 41}, - [5113] = {.lex_state = 1772}, - [5114] = {.lex_state = 1772}, - [5115] = {.lex_state = 41}, - [5116] = {.lex_state = 1772}, - [5117] = {.lex_state = 1772}, - [5118] = {.lex_state = 41}, - [5119] = {.lex_state = 1772}, - [5120] = {.lex_state = 1772}, - [5121] = {.lex_state = 41}, - [5122] = {.lex_state = 1769}, - [5123] = {.lex_state = 41}, - [5124] = {.lex_state = 1772}, - [5125] = {.lex_state = 1772}, - [5126] = {.lex_state = 1772}, - [5127] = {.lex_state = 1772}, - [5128] = {.lex_state = 41}, - [5129] = {.lex_state = 1772}, - [5130] = {.lex_state = 1772}, - [5131] = {.lex_state = 1772}, - [5132] = {.lex_state = 41}, - [5133] = {.lex_state = 1769}, - [5134] = {.lex_state = 295}, - [5135] = {.lex_state = 1772}, - [5136] = {.lex_state = 1772}, - [5137] = {.lex_state = 1772}, - [5138] = {.lex_state = 41}, - [5139] = {.lex_state = 41}, - [5140] = {.lex_state = 41}, - [5141] = {.lex_state = 1772}, - [5142] = {.lex_state = 1769}, - [5143] = {.lex_state = 41}, - [5144] = {.lex_state = 41}, - [5145] = {.lex_state = 41}, - [5146] = {.lex_state = 1769}, - [5147] = {.lex_state = 69}, - [5148] = {.lex_state = 41}, - [5149] = {.lex_state = 64}, - [5150] = {.lex_state = 41}, - [5151] = {.lex_state = 41}, - [5152] = {.lex_state = 41}, - [5153] = {.lex_state = 41}, - [5154] = {.lex_state = 1772}, - [5155] = {.lex_state = 41}, - [5156] = {.lex_state = 41}, - [5157] = {.lex_state = 1769}, - [5158] = {.lex_state = 1772}, - [5159] = {.lex_state = 41}, - [5160] = {.lex_state = 41}, - [5161] = {.lex_state = 41}, - [5162] = {.lex_state = 41}, - [5163] = {.lex_state = 41}, - [5164] = {.lex_state = 1772}, - [5165] = {.lex_state = 41}, - [5166] = {.lex_state = 1772}, - [5167] = {.lex_state = 1769}, - [5168] = {.lex_state = 41}, - [5169] = {.lex_state = 41}, - [5170] = {.lex_state = 41}, - [5171] = {.lex_state = 41}, - [5172] = {.lex_state = 41}, - [5173] = {.lex_state = 1772}, - [5174] = {.lex_state = 41}, - [5175] = {.lex_state = 1772}, - [5176] = {.lex_state = 1772}, - [5177] = {.lex_state = 41}, - [5178] = {.lex_state = 1769}, - [5179] = {.lex_state = 1772}, - [5180] = {.lex_state = 1806}, - [5181] = {.lex_state = 41}, - [5182] = {.lex_state = 1772}, - [5183] = {.lex_state = 1772}, - [5184] = {.lex_state = 301}, - [5185] = {.lex_state = 41}, - [5186] = {.lex_state = 1836}, - [5187] = {.lex_state = 41}, - [5188] = {.lex_state = 1772}, - [5189] = {.lex_state = 41}, - [5190] = {.lex_state = 41}, - [5191] = {.lex_state = 41}, - [5192] = {.lex_state = 1772}, - [5193] = {.lex_state = 41}, - [5194] = {.lex_state = 41}, - [5195] = {.lex_state = 41}, - [5196] = {.lex_state = 1772}, - [5197] = {.lex_state = 41}, - [5198] = {.lex_state = 303}, - [5199] = {.lex_state = 41}, - [5200] = {.lex_state = 41}, - [5201] = {.lex_state = 1769}, - [5202] = {.lex_state = 41}, - [5203] = {.lex_state = 41}, - [5204] = {.lex_state = 41}, - [5205] = {.lex_state = 41}, - [5206] = {.lex_state = 41}, - [5207] = {.lex_state = 1772}, - [5208] = {.lex_state = 41}, - [5209] = {.lex_state = 1772}, - [5210] = {.lex_state = 1772}, - [5211] = {.lex_state = 41}, - [5212] = {.lex_state = 41}, - [5213] = {.lex_state = 41}, - [5214] = {.lex_state = 41}, - [5215] = {.lex_state = 41}, - [5216] = {.lex_state = 1836}, - [5217] = {.lex_state = 41}, - [5218] = {.lex_state = 41}, - [5219] = {.lex_state = 41}, - [5220] = {.lex_state = 41}, - [5221] = {.lex_state = 41}, - [5222] = {.lex_state = 41}, - [5223] = {.lex_state = 1769}, - [5224] = {.lex_state = 1769}, - [5225] = {.lex_state = 1772}, - [5226] = {.lex_state = 1769}, - [5227] = {.lex_state = 298}, - [5228] = {.lex_state = 1769}, - [5229] = {.lex_state = 64}, - [5230] = {.lex_state = 41}, - [5231] = {.lex_state = 41}, - [5232] = {.lex_state = 41}, - [5233] = {.lex_state = 1772}, - [5234] = {.lex_state = 41}, - [5235] = {.lex_state = 41}, - [5236] = {.lex_state = 41}, - [5237] = {.lex_state = 1772}, - [5238] = {.lex_state = 1769}, - [5239] = {.lex_state = 1772}, - [5240] = {.lex_state = 1770}, - [5241] = {.lex_state = 41}, - [5242] = {.lex_state = 1769}, - [5243] = {.lex_state = 1769}, - [5244] = {.lex_state = 1837}, - [5245] = {.lex_state = 41}, - [5246] = {.lex_state = 1769}, - [5247] = {.lex_state = 1769}, - [5248] = {.lex_state = 1772}, - [5249] = {.lex_state = 298}, - [5250] = {.lex_state = 41}, - [5251] = {.lex_state = 1772}, - [5252] = {.lex_state = 41}, - [5253] = {.lex_state = 1772}, - [5254] = {.lex_state = 2}, - [5255] = {.lex_state = 2}, - [5256] = {.lex_state = 41}, - [5257] = {.lex_state = 1769}, - [5258] = {.lex_state = 1769}, - [5259] = {.lex_state = 1837}, - [5260] = {.lex_state = 1772}, - [5261] = {.lex_state = 1772}, - [5262] = {.lex_state = 1772}, - [5263] = {.lex_state = 1772}, - [5264] = {.lex_state = 1772}, - [5265] = {.lex_state = 1772}, - [5266] = {.lex_state = 1772}, - [5267] = {.lex_state = 1770}, - [5268] = {.lex_state = 1772}, - [5269] = {.lex_state = 41}, - [5270] = {.lex_state = 41}, - [5271] = {.lex_state = 41}, - [5272] = {.lex_state = 41}, - [5273] = {.lex_state = 1772}, - [5274] = {.lex_state = 41}, - [5275] = {.lex_state = 2}, - [5276] = {.lex_state = 2}, - [5277] = {.lex_state = 41}, - [5278] = {.lex_state = 1837}, - [5279] = {.lex_state = 1772}, - [5280] = {.lex_state = 41}, - [5281] = {.lex_state = 1770}, - [5282] = {.lex_state = 1770}, - [5283] = {.lex_state = 1770}, - [5284] = {.lex_state = 1770}, - [5285] = {.lex_state = 1770}, - [5286] = {.lex_state = 1770}, - [5287] = {.lex_state = 1770}, - [5288] = {.lex_state = 1770}, - [5289] = {.lex_state = 41}, - [5290] = {.lex_state = 1770}, - [5291] = {.lex_state = 1770}, - [5292] = {.lex_state = 1770}, - [5293] = {.lex_state = 41}, - [5294] = {.lex_state = 1770}, - [5295] = {.lex_state = 41}, - [5296] = {.lex_state = 1772}, - [5297] = {.lex_state = 41}, - [5298] = {.lex_state = 41}, - [5299] = {.lex_state = 41}, - [5300] = {.lex_state = 41}, - [5301] = {.lex_state = 41}, - [5302] = {.lex_state = 41}, - [5303] = {.lex_state = 1772}, - [5304] = {.lex_state = 1806}, - [5305] = {.lex_state = 41}, - [5306] = {.lex_state = 1772}, - [5307] = {.lex_state = 1770}, - [5308] = {.lex_state = 1837}, - [5309] = {.lex_state = 41}, - [5310] = {.lex_state = 41}, - [5311] = {.lex_state = 1769}, - [5312] = {.lex_state = 75}, - [5313] = {.lex_state = 1769}, - [5314] = {.lex_state = 5209}, - [5315] = {.lex_state = 1769}, - [5316] = {.lex_state = 41}, - [5317] = {.lex_state = 1769}, - [5318] = {.lex_state = 342}, - [5319] = {.lex_state = 1769}, - [5320] = {.lex_state = 1769}, - [5321] = {.lex_state = 1769}, - [5322] = {.lex_state = 41}, - [5323] = {.lex_state = 302}, - [5324] = {.lex_state = 304}, - [5325] = {.lex_state = 41, .external_lex_state = 2}, - [5326] = {.lex_state = 1769}, - [5327] = {.lex_state = 1769}, - [5328] = {.lex_state = 1769}, - [5329] = {.lex_state = 41}, - [5330] = {.lex_state = 299}, - [5331] = {.lex_state = 1769}, - [5332] = {.lex_state = 297}, - [5333] = {.lex_state = 1769}, - [5334] = {.lex_state = 301}, - [5335] = {.lex_state = 1769}, - [5336] = {.lex_state = 1769}, - [5337] = {.lex_state = 1769}, - [5338] = {.lex_state = 1769}, - [5339] = {.lex_state = 1837}, - [5340] = {.lex_state = 1769}, - [5341] = {.lex_state = 1769}, - [5342] = {.lex_state = 1769}, - [5343] = {.lex_state = 41}, - [5344] = {.lex_state = 1769}, - [5345] = {.lex_state = 1769}, - [5346] = {.lex_state = 1769}, - [5347] = {.lex_state = 305}, - [5348] = {.lex_state = 1769}, - [5349] = {.lex_state = 1769}, - [5350] = {.lex_state = 41}, - [5351] = {.lex_state = 1769}, - [5352] = {.lex_state = 1769}, - [5353] = {.lex_state = 307}, - [5354] = {.lex_state = 5209}, - [5355] = {.lex_state = 1769}, - [5356] = {.lex_state = 10}, - [5357] = {.lex_state = 41}, - [5358] = {.lex_state = 1769}, - [5359] = {.lex_state = 41}, - [5360] = {.lex_state = 41}, - [5361] = {.lex_state = 1769}, - [5362] = {.lex_state = 304}, - [5363] = {.lex_state = 5209}, - [5364] = {.lex_state = 41}, - [5365] = {.lex_state = 1837}, - [5366] = {.lex_state = 1769}, - [5367] = {.lex_state = 1769}, - [5368] = {.lex_state = 1837}, - [5369] = {.lex_state = 41}, - [5370] = {.lex_state = 301}, - [5371] = {.lex_state = 301}, - [5372] = {.lex_state = 301}, - [5373] = {.lex_state = 1769}, - [5374] = {.lex_state = 1769}, - [5375] = {.lex_state = 41}, - [5376] = {.lex_state = 41}, - [5377] = {.lex_state = 10}, - [5378] = {.lex_state = 1769}, - [5379] = {.lex_state = 1837}, - [5380] = {.lex_state = 1769}, - [5381] = {.lex_state = 1769}, - [5382] = {.lex_state = 41}, - [5383] = {.lex_state = 41}, - [5384] = {.lex_state = 41}, - [5385] = {.lex_state = 1769}, - [5386] = {.lex_state = 41}, - [5387] = {.lex_state = 10}, - [5388] = {.lex_state = 1769}, - [5389] = {.lex_state = 295}, - [5390] = {.lex_state = 1769}, - [5391] = {.lex_state = 5209}, - [5392] = {.lex_state = 306}, - [5393] = {.lex_state = 295}, - [5394] = {.lex_state = 311}, - [5395] = {.lex_state = 295}, - [5396] = {.lex_state = 295}, - [5397] = {.lex_state = 1769}, - [5398] = {.lex_state = 1837}, - [5399] = {.lex_state = 1769}, - [5400] = {.lex_state = 1769}, - [5401] = {.lex_state = 1769}, - [5402] = {.lex_state = 41}, - [5403] = {.lex_state = 41}, - [5404] = {.lex_state = 1769}, - [5405] = {.lex_state = 1769}, - [5406] = {.lex_state = 125}, - [5407] = {.lex_state = 302}, - [5408] = {.lex_state = 41}, - [5409] = {.lex_state = 41}, - [5410] = {.lex_state = 41}, - [5411] = {.lex_state = 41}, - [5412] = {.lex_state = 1770}, - [5413] = {.lex_state = 41}, - [5414] = {.lex_state = 41}, - [5415] = {.lex_state = 41}, - [5416] = {.lex_state = 1770}, - [5417] = {.lex_state = 1770}, - [5418] = {.lex_state = 1770}, - [5419] = {.lex_state = 1770}, - [5420] = {.lex_state = 1770}, - [5421] = {.lex_state = 1770}, - [5422] = {.lex_state = 1770}, - [5423] = {.lex_state = 10}, - [5424] = {.lex_state = 1770}, - [5425] = {.lex_state = 1770}, - [5426] = {.lex_state = 1770}, - [5427] = {.lex_state = 1769}, - [5428] = {.lex_state = 1770}, - [5429] = {.lex_state = 1769}, - [5430] = {.lex_state = 1769}, - [5431] = {.lex_state = 1769}, - [5432] = {.lex_state = 41}, - [5433] = {.lex_state = 1769}, - [5434] = {.lex_state = 41}, - [5435] = {.lex_state = 1769}, - [5436] = {.lex_state = 41}, - [5437] = {.lex_state = 1769}, - [5438] = {.lex_state = 1769}, - [5439] = {.lex_state = 1769}, - [5440] = {.lex_state = 5209}, - [5441] = {.lex_state = 1769}, - [5442] = {.lex_state = 41}, - [5443] = {.lex_state = 1769}, - [5444] = {.lex_state = 301}, - [5445] = {.lex_state = 1769}, - [5446] = {.lex_state = 125}, - [5447] = {.lex_state = 1769}, - [5448] = {.lex_state = 41}, - [5449] = {.lex_state = 1769}, - [5450] = {.lex_state = 299}, - [5451] = {.lex_state = 1769}, - [5452] = {.lex_state = 10}, - [5453] = {.lex_state = 1770}, - [5454] = {.lex_state = 41}, - [5455] = {.lex_state = 1769}, - [5456] = {.lex_state = 1769}, - [5457] = {.lex_state = 1769}, - [5458] = {.lex_state = 1769}, - [5459] = {.lex_state = 1769}, - [5460] = {.lex_state = 1769}, - [5461] = {.lex_state = 1769}, - [5462] = {.lex_state = 1769}, - [5463] = {.lex_state = 1769}, - [5464] = {.lex_state = 1769}, - [5465] = {.lex_state = 41, .external_lex_state = 2}, - [5466] = {.lex_state = 1769}, - [5467] = {.lex_state = 1769}, - [5468] = {.lex_state = 1769}, - [5469] = {.lex_state = 41, .external_lex_state = 2}, - [5470] = {.lex_state = 336}, - [5471] = {.lex_state = 41}, - [5472] = {.lex_state = 41}, - [5473] = {.lex_state = 41}, - [5474] = {.lex_state = 1769}, - [5475] = {.lex_state = 1769}, - [5476] = {.lex_state = 1769}, - [5477] = {.lex_state = 1769}, - [5478] = {.lex_state = 10}, - [5479] = {.lex_state = 41}, - [5480] = {.lex_state = 1770}, - [5481] = {.lex_state = 1807}, - [5482] = {.lex_state = 362}, - [5483] = {.lex_state = 1807}, - [5484] = {.lex_state = 1807}, - [5485] = {.lex_state = 371}, - [5486] = {.lex_state = 312}, - [5487] = {.lex_state = 71}, - [5488] = {.lex_state = 1807}, - [5489] = {.lex_state = 1807}, - [5490] = {.lex_state = 1807}, - [5491] = {.lex_state = 1807}, - [5492] = {.lex_state = 1769}, - [5493] = {.lex_state = 1807}, - [5494] = {.lex_state = 1807}, - [5495] = {.lex_state = 1807}, - [5496] = {.lex_state = 1807}, - [5497] = {.lex_state = 1807}, - [5498] = {.lex_state = 7}, - [5499] = {.lex_state = 1807}, - [5500] = {.lex_state = 1807}, - [5501] = {.lex_state = 1807}, - [5502] = {.lex_state = 1807}, - [5503] = {.lex_state = 1807}, - [5504] = {.lex_state = 1807}, - [5505] = {.lex_state = 364}, - [5506] = {.lex_state = 300}, - [5507] = {.lex_state = 41}, - [5508] = {.lex_state = 312}, - [5509] = {.lex_state = 379}, - [5510] = {.lex_state = 301}, - [5511] = {.lex_state = 1807}, - [5512] = {.lex_state = 308}, - [5513] = {.lex_state = 1807}, - [5514] = {.lex_state = 41, .external_lex_state = 2}, - [5515] = {.lex_state = 41}, - [5516] = {.lex_state = 1807}, - [5517] = {.lex_state = 80}, - [5518] = {.lex_state = 80}, - [5519] = {.lex_state = 7}, - [5520] = {.lex_state = 41}, - [5521] = {.lex_state = 7}, - [5522] = {.lex_state = 80}, - [5523] = {.lex_state = 80}, - [5524] = {.lex_state = 337}, - [5525] = {.lex_state = 41}, - [5526] = {.lex_state = 71}, - [5527] = {.lex_state = 7}, - [5528] = {.lex_state = 301}, - [5529] = {.lex_state = 348}, - [5530] = {.lex_state = 41}, - [5531] = {.lex_state = 41, .external_lex_state = 2}, - [5532] = {.lex_state = 7}, - [5533] = {.lex_state = 41, .external_lex_state = 2}, - [5534] = {.lex_state = 41}, - [5535] = {.lex_state = 300}, - [5536] = {.lex_state = 343}, - [5537] = {.lex_state = 343}, - [5538] = {.lex_state = 1807}, - [5539] = {.lex_state = 41}, - [5540] = {.lex_state = 1703}, - [5541] = {.lex_state = 80}, - [5542] = {.lex_state = 308}, - [5543] = {.lex_state = 1807}, - [5544] = {.lex_state = 4764}, - [5545] = {.lex_state = 4764}, - [5546] = {.lex_state = 1703}, - [5547] = {.lex_state = 370}, - [5548] = {.lex_state = 4764}, - [5549] = {.lex_state = 365}, - [5550] = {.lex_state = 4764}, - [5551] = {.lex_state = 309}, - [5552] = {.lex_state = 4764}, - [5553] = {.lex_state = 41}, - [5554] = {.lex_state = 4764}, - [5555] = {.lex_state = 309}, - [5556] = {.lex_state = 5394}, - [5557] = {.lex_state = 380}, - [5558] = {.lex_state = 84}, - [5559] = {.lex_state = 4764}, - [5560] = {.lex_state = 4764}, - [5561] = {.lex_state = 344}, - [5562] = {.lex_state = 4764}, - [5563] = {.lex_state = 381}, - [5564] = {.lex_state = 4764}, - [5565] = {.lex_state = 4764}, - [5566] = {.lex_state = 1807}, - [5567] = {.lex_state = 365}, - [5568] = {.lex_state = 1807}, - [5569] = {.lex_state = 1807}, - [5570] = {.lex_state = 1807}, - [5571] = {.lex_state = 1807}, - [5572] = {.lex_state = 4764}, - [5573] = {.lex_state = 4764}, - [5574] = {.lex_state = 41}, - [5575] = {.lex_state = 1807}, - [5576] = {.lex_state = 5210}, - [5577] = {.lex_state = 1703}, - [5578] = {.lex_state = 1807}, - [5579] = {.lex_state = 1807}, - [5580] = {.lex_state = 1737}, - [5581] = {.lex_state = 4764}, - [5582] = {.lex_state = 4764}, - [5583] = {.lex_state = 4764}, - [5584] = {.lex_state = 4764}, - [5585] = {.lex_state = 1703}, - [5586] = {.lex_state = 5394}, - [5587] = {.lex_state = 4764}, - [5588] = {.lex_state = 1807}, - [5589] = {.lex_state = 349}, - [5590] = {.lex_state = 5210}, - [5591] = {.lex_state = 4764}, - [5592] = {.lex_state = 1807}, - [5593] = {.lex_state = 370}, - [5594] = {.lex_state = 1807}, - [5595] = {.lex_state = 309}, - [5596] = {.lex_state = 1807}, - [5597] = {.lex_state = 4764}, - [5598] = {.lex_state = 4764}, - [5599] = {.lex_state = 4764}, - [5600] = {.lex_state = 5210}, - [5601] = {.lex_state = 71}, - [5602] = {.lex_state = 1807}, - [5603] = {.lex_state = 381}, - [5604] = {.lex_state = 1737}, - [5605] = {.lex_state = 4764}, - [5606] = {.lex_state = 370}, - [5607] = {.lex_state = 1807}, - [5608] = {.lex_state = 313}, - [5609] = {.lex_state = 344}, - [5610] = {.lex_state = 4764}, - [5611] = {.lex_state = 5210}, - [5612] = {.lex_state = 324}, - [5613] = {.lex_state = 344}, - [5614] = {.lex_state = 1807}, - [5615] = {.lex_state = 4764}, - [5616] = {.lex_state = 349}, - [5617] = {.lex_state = 338}, - [5618] = {.lex_state = 85}, - [5619] = {.lex_state = 1807}, - [5620] = {.lex_state = 309}, - [5621] = {.lex_state = 372}, - [5622] = {.lex_state = 326}, - [5623] = {.lex_state = 310}, - [5624] = {.lex_state = 5394}, - [5625] = {.lex_state = 4764}, - [5626] = {.lex_state = 1737}, - [5627] = {.lex_state = 1737}, - [5628] = {.lex_state = 5394}, - [5629] = {.lex_state = 1807}, - [5630] = {.lex_state = 5210}, - [5631] = {.lex_state = 1807}, - [5632] = {.lex_state = 370}, - [5633] = {.lex_state = 5394}, - [5634] = {.lex_state = 4764}, - [5635] = {.lex_state = 4764}, - [5636] = {.lex_state = 310}, - [5637] = {.lex_state = 1807}, - [5638] = {.lex_state = 5394}, - [5639] = {.lex_state = 5394}, - [5640] = {.lex_state = 5394}, - [5641] = {.lex_state = 1807}, - [5642] = {.lex_state = 310}, - [5643] = {.lex_state = 310}, - [5644] = {.lex_state = 1807}, - [5645] = {.lex_state = 71}, - [5646] = {.lex_state = 1807}, - [5647] = {.lex_state = 344}, - [5648] = {.lex_state = 1737}, - [5649] = {.lex_state = 1807}, - [5650] = {.lex_state = 4764}, - [5651] = {.lex_state = 4764}, - [5652] = {.lex_state = 4764}, - [5653] = {.lex_state = 350}, - [5654] = {.lex_state = 4764}, - [5655] = {.lex_state = 344}, - [5656] = {.lex_state = 1807}, - [5657] = {.lex_state = 370}, - [5658] = {.lex_state = 4764}, - [5659] = {.lex_state = 309}, - [5660] = {.lex_state = 370}, - [5661] = {.lex_state = 1807}, - [5662] = {.lex_state = 370}, - [5663] = {.lex_state = 1703}, - [5664] = {.lex_state = 310}, - [5665] = {.lex_state = 313}, - [5666] = {.lex_state = 345}, - [5667] = {.lex_state = 382}, - [5668] = {.lex_state = 1807}, - [5669] = {.lex_state = 1807}, - [5670] = {.lex_state = 41, .external_lex_state = 2}, - [5671] = {.lex_state = 41, .external_lex_state = 2}, - [5672] = {.lex_state = 1703}, - [5673] = {.lex_state = 1703}, - [5674] = {.lex_state = 382}, - [5675] = {.lex_state = 1737}, - [5676] = {.lex_state = 1703}, - [5677] = {.lex_state = 1807}, - [5678] = {.lex_state = 1807}, - [5679] = {.lex_state = 1703}, - [5680] = {.lex_state = 71}, - [5681] = {.lex_state = 71}, - [5682] = {.lex_state = 383}, - [5683] = {.lex_state = 1739}, - [5684] = {.lex_state = 1737}, - [5685] = {.lex_state = 41}, - [5686] = {.lex_state = 1807}, - [5687] = {.lex_state = 1807}, - [5688] = {.lex_state = 1807}, - [5689] = {.lex_state = 1807}, - [5690] = {.lex_state = 1737}, - [5691] = {.lex_state = 1737}, - [5692] = {.lex_state = 313}, - [5693] = {.lex_state = 1703}, - [5694] = {.lex_state = 81}, - [5695] = {.lex_state = 81}, - [5696] = {.lex_state = 1703}, - [5697] = {.lex_state = 41}, - [5698] = {.lex_state = 1703}, - [5699] = {.lex_state = 41}, - [5700] = {.lex_state = 1737}, - [5701] = {.lex_state = 1703}, - [5702] = {.lex_state = 1703}, - [5703] = {.lex_state = 41, .external_lex_state = 2}, - [5704] = {.lex_state = 1703}, - [5705] = {.lex_state = 370}, - [5706] = {.lex_state = 346}, - [5707] = {.lex_state = 1703}, - [5708] = {.lex_state = 327}, - [5709] = {.lex_state = 41}, - [5710] = {.lex_state = 327}, - [5711] = {.lex_state = 363}, - [5712] = {.lex_state = 370}, - [5713] = {.lex_state = 41}, - [5714] = {.lex_state = 385}, - [5715] = {.lex_state = 1841}, - [5716] = {.lex_state = 1703}, - [5717] = {.lex_state = 383}, - [5718] = {.lex_state = 1703}, - [5719] = {.lex_state = 1703}, - [5720] = {.lex_state = 383}, - [5721] = {.lex_state = 71}, - [5722] = {.lex_state = 71}, - [5723] = {.lex_state = 71}, - [5724] = {.lex_state = 71}, - [5725] = {.lex_state = 71}, - [5726] = {.lex_state = 71}, - [5727] = {.lex_state = 71}, - [5728] = {.lex_state = 71}, - [5729] = {.lex_state = 71}, - [5730] = {.lex_state = 71}, - [5731] = {.lex_state = 71}, - [5732] = {.lex_state = 71}, - [5733] = {.lex_state = 71}, - [5734] = {.lex_state = 71}, - [5735] = {.lex_state = 71}, - [5736] = {.lex_state = 71}, - [5737] = {.lex_state = 71}, - [5738] = {.lex_state = 71}, - [5739] = {.lex_state = 71}, - [5740] = {.lex_state = 71}, - [5741] = {.lex_state = 71}, - [5742] = {.lex_state = 71}, - [5743] = {.lex_state = 383}, - [5744] = {.lex_state = 383}, - [5745] = {.lex_state = 350}, - [5746] = {.lex_state = 1703}, - [5747] = {.lex_state = 86}, - [5748] = {.lex_state = 1703}, - [5749] = {.lex_state = 350}, - [5750] = {.lex_state = 1703}, - [5751] = {.lex_state = 351}, - [5752] = {.lex_state = 350}, - [5753] = {.lex_state = 350}, - [5754] = {.lex_state = 1703}, - [5755] = {.lex_state = 373}, - [5756] = {.lex_state = 1739}, - [5757] = {.lex_state = 1703}, - [5758] = {.lex_state = 1703}, - [5759] = {.lex_state = 375}, - [5760] = {.lex_state = 1703}, - [5761] = {.lex_state = 1703}, - [5762] = {.lex_state = 339}, - [5763] = {.lex_state = 391}, - [5764] = {.lex_state = 1838}, - [5765] = {.lex_state = 1703}, - [5766] = {.lex_state = 1703}, - [5767] = {.lex_state = 1703}, - [5768] = {.lex_state = 1703}, - [5769] = {.lex_state = 1703}, - [5770] = {.lex_state = 1703}, - [5771] = {.lex_state = 1703}, - [5772] = {.lex_state = 1703}, - [5773] = {.lex_state = 1703}, - [5774] = {.lex_state = 1703}, - [5775] = {.lex_state = 1703}, - [5776] = {.lex_state = 1703}, - [5777] = {.lex_state = 392}, - [5778] = {.lex_state = 1703}, - [5779] = {.lex_state = 1703}, - [5780] = {.lex_state = 1703}, - [5781] = {.lex_state = 1703}, - [5782] = {.lex_state = 1703}, - [5783] = {.lex_state = 1703}, - [5784] = {.lex_state = 1703}, - [5785] = {.lex_state = 1703}, - [5786] = {.lex_state = 1703}, - [5787] = {.lex_state = 1703}, - [5788] = {.lex_state = 1703}, - [5789] = {.lex_state = 1703}, - [5790] = {.lex_state = 1703}, - [5791] = {.lex_state = 1703}, - [5792] = {.lex_state = 1703}, - [5793] = {.lex_state = 1703}, - [5794] = {.lex_state = 1703}, - [5795] = {.lex_state = 1703}, - [5796] = {.lex_state = 1703}, - [5797] = {.lex_state = 313}, - [5798] = {.lex_state = 1703}, - [5799] = {.lex_state = 41, .external_lex_state = 2}, - [5800] = {.lex_state = 41, .external_lex_state = 2}, - [5801] = {.lex_state = 1703}, - [5802] = {.lex_state = 41, .external_lex_state = 2}, - [5803] = {.lex_state = 41, .external_lex_state = 2}, - [5804] = {.lex_state = 363}, - [5805] = {.lex_state = 363}, - [5806] = {.lex_state = 71}, - [5807] = {.lex_state = 363}, - [5808] = {.lex_state = 1739}, - [5809] = {.lex_state = 376}, - [5810] = {.lex_state = 346}, - [5811] = {.lex_state = 363}, - [5812] = {.lex_state = 86}, - [5813] = {.lex_state = 1703}, - [5814] = {.lex_state = 1703}, - [5815] = {.lex_state = 1807}, - [5816] = {.lex_state = 285, .external_lex_state = 2}, - [5817] = {.lex_state = 283, .external_lex_state = 2}, - [5818] = {.lex_state = 283, .external_lex_state = 2}, - [5819] = {.lex_state = 10}, - [5820] = {.lex_state = 1739}, - [5821] = {.lex_state = 1739}, - [5822] = {.lex_state = 347}, - [5823] = {.lex_state = 325}, - [5824] = {.lex_state = 1807}, - [5825] = {.lex_state = 1737}, - [5826] = {.lex_state = 283, .external_lex_state = 2}, - [5827] = {.lex_state = 384}, - [5828] = {.lex_state = 325}, - [5829] = {.lex_state = 1737}, - [5830] = {.lex_state = 1737}, - [5831] = {.lex_state = 352}, - [5832] = {.lex_state = 283, .external_lex_state = 2}, - [5833] = {.lex_state = 1737}, - [5834] = {.lex_state = 325}, - [5835] = {.lex_state = 386}, - [5836] = {.lex_state = 352}, - [5837] = {.lex_state = 370}, - [5838] = {.lex_state = 370}, - [5839] = {.lex_state = 283, .external_lex_state = 2}, - [5840] = {.lex_state = 283, .external_lex_state = 2}, - [5841] = {.lex_state = 283, .external_lex_state = 2}, - [5842] = {.lex_state = 1737}, - [5843] = {.lex_state = 41}, - [5844] = {.lex_state = 283, .external_lex_state = 2}, - [5845] = {.lex_state = 87}, - [5846] = {.lex_state = 283, .external_lex_state = 2}, - [5847] = {.lex_state = 283, .external_lex_state = 2}, - [5848] = {.lex_state = 283, .external_lex_state = 2}, - [5849] = {.lex_state = 1739}, - [5850] = {.lex_state = 1737}, - [5851] = {.lex_state = 87}, - [5852] = {.lex_state = 1839}, - [5853] = {.lex_state = 283, .external_lex_state = 2}, - [5854] = {.lex_state = 283, .external_lex_state = 2}, - [5855] = {.lex_state = 283, .external_lex_state = 2}, - [5856] = {.lex_state = 283, .external_lex_state = 2}, - [5857] = {.lex_state = 1807}, - [5858] = {.lex_state = 1807}, - [5859] = {.lex_state = 283, .external_lex_state = 2}, - [5860] = {.lex_state = 283, .external_lex_state = 2}, - [5861] = {.lex_state = 283, .external_lex_state = 2}, - [5862] = {.lex_state = 283, .external_lex_state = 2}, - [5863] = {.lex_state = 283, .external_lex_state = 2}, - [5864] = {.lex_state = 283, .external_lex_state = 2}, - [5865] = {.lex_state = 283, .external_lex_state = 2}, - [5866] = {.lex_state = 283, .external_lex_state = 2}, - [5867] = {.lex_state = 283, .external_lex_state = 2}, - [5868] = {.lex_state = 283, .external_lex_state = 2}, - [5869] = {.lex_state = 283, .external_lex_state = 2}, - [5870] = {.lex_state = 283, .external_lex_state = 2}, - [5871] = {.lex_state = 283, .external_lex_state = 2}, - [5872] = {.lex_state = 283, .external_lex_state = 2}, - [5873] = {.lex_state = 283, .external_lex_state = 2}, - [5874] = {.lex_state = 283, .external_lex_state = 2}, - [5875] = {.lex_state = 283, .external_lex_state = 2}, - [5876] = {.lex_state = 283, .external_lex_state = 2}, - [5877] = {.lex_state = 384}, - [5878] = {.lex_state = 285, .external_lex_state = 2}, - [5879] = {.lex_state = 387}, - [5880] = {.lex_state = 283, .external_lex_state = 2}, - [5881] = {.lex_state = 1807}, - [5882] = {.lex_state = 283, .external_lex_state = 2}, - [5883] = {.lex_state = 1737}, - [5884] = {.lex_state = 393}, - [5885] = {.lex_state = 1847}, - [5886] = {.lex_state = 1737}, - [5887] = {.lex_state = 41}, - [5888] = {.lex_state = 1838}, - [5889] = {.lex_state = 283, .external_lex_state = 2}, - [5890] = {.lex_state = 71}, - [5891] = {.lex_state = 283, .external_lex_state = 2}, - [5892] = {.lex_state = 283, .external_lex_state = 2}, - [5893] = {.lex_state = 283, .external_lex_state = 2}, - [5894] = {.lex_state = 393}, - [5895] = {.lex_state = 285, .external_lex_state = 2}, - [5896] = {.lex_state = 283, .external_lex_state = 2}, - [5897] = {.lex_state = 283, .external_lex_state = 2}, - [5898] = {.lex_state = 1739}, - [5899] = {.lex_state = 283, .external_lex_state = 2}, - [5900] = {.lex_state = 283, .external_lex_state = 2}, - [5901] = {.lex_state = 283, .external_lex_state = 2}, - [5902] = {.lex_state = 285, .external_lex_state = 2}, - [5903] = {.lex_state = 387}, - [5904] = {.lex_state = 283, .external_lex_state = 2}, - [5905] = {.lex_state = 285, .external_lex_state = 2}, - [5906] = {.lex_state = 283, .external_lex_state = 2}, - [5907] = {.lex_state = 283, .external_lex_state = 2}, - [5908] = {.lex_state = 285, .external_lex_state = 2}, - [5909] = {.lex_state = 283, .external_lex_state = 2}, - [5910] = {.lex_state = 283, .external_lex_state = 2}, - [5911] = {.lex_state = 283, .external_lex_state = 2}, - [5912] = {.lex_state = 285, .external_lex_state = 2}, - [5913] = {.lex_state = 283, .external_lex_state = 2}, - [5914] = {.lex_state = 283, .external_lex_state = 2}, - [5915] = {.lex_state = 283, .external_lex_state = 2}, - [5916] = {.lex_state = 283, .external_lex_state = 2}, - [5917] = {.lex_state = 285, .external_lex_state = 2}, - [5918] = {.lex_state = 283, .external_lex_state = 2}, - [5919] = {.lex_state = 283, .external_lex_state = 2}, - [5920] = {.lex_state = 285, .external_lex_state = 2}, - [5921] = {.lex_state = 283, .external_lex_state = 2}, - [5922] = {.lex_state = 283, .external_lex_state = 2}, - [5923] = {.lex_state = 285, .external_lex_state = 2}, - [5924] = {.lex_state = 283, .external_lex_state = 2}, - [5925] = {.lex_state = 283, .external_lex_state = 2}, - [5926] = {.lex_state = 285, .external_lex_state = 2}, - [5927] = {.lex_state = 384}, - [5928] = {.lex_state = 283, .external_lex_state = 2}, - [5929] = {.lex_state = 285, .external_lex_state = 2}, - [5930] = {.lex_state = 285, .external_lex_state = 2}, - [5931] = {.lex_state = 285, .external_lex_state = 2}, - [5932] = {.lex_state = 384}, - [5933] = {.lex_state = 285, .external_lex_state = 2}, - [5934] = {.lex_state = 384}, - [5935] = {.lex_state = 1847}, - [5936] = {.lex_state = 285, .external_lex_state = 2}, - [5937] = {.lex_state = 283, .external_lex_state = 2}, - [5938] = {.lex_state = 325}, - [5939] = {.lex_state = 285, .external_lex_state = 2}, - [5940] = {.lex_state = 1841}, - [5941] = {.lex_state = 285, .external_lex_state = 2}, - [5942] = {.lex_state = 285, .external_lex_state = 2}, - [5943] = {.lex_state = 285, .external_lex_state = 2}, - [5944] = {.lex_state = 374}, - [5945] = {.lex_state = 285, .external_lex_state = 2}, - [5946] = {.lex_state = 285, .external_lex_state = 2}, - [5947] = {.lex_state = 285, .external_lex_state = 2}, - [5948] = {.lex_state = 285, .external_lex_state = 2}, - [5949] = {.lex_state = 285, .external_lex_state = 2}, - [5950] = {.lex_state = 285, .external_lex_state = 2}, - [5951] = {.lex_state = 285, .external_lex_state = 2}, - [5952] = {.lex_state = 285, .external_lex_state = 2}, - [5953] = {.lex_state = 285, .external_lex_state = 2}, - [5954] = {.lex_state = 285, .external_lex_state = 2}, - [5955] = {.lex_state = 285, .external_lex_state = 2}, - [5956] = {.lex_state = 285, .external_lex_state = 2}, - [5957] = {.lex_state = 285, .external_lex_state = 2}, - [5958] = {.lex_state = 285, .external_lex_state = 2}, - [5959] = {.lex_state = 285, .external_lex_state = 2}, - [5960] = {.lex_state = 285, .external_lex_state = 2}, - [5961] = {.lex_state = 285, .external_lex_state = 2}, - [5962] = {.lex_state = 285, .external_lex_state = 2}, - [5963] = {.lex_state = 285, .external_lex_state = 2}, - [5964] = {.lex_state = 285, .external_lex_state = 2}, - [5965] = {.lex_state = 285, .external_lex_state = 2}, - [5966] = {.lex_state = 285, .external_lex_state = 2}, - [5967] = {.lex_state = 285, .external_lex_state = 2}, - [5968] = {.lex_state = 283, .external_lex_state = 2}, - [5969] = {.lex_state = 283, .external_lex_state = 2}, - [5970] = {.lex_state = 285, .external_lex_state = 2}, - [5971] = {.lex_state = 1807}, - [5972] = {.lex_state = 394}, - [5973] = {.lex_state = 1807}, - [5974] = {.lex_state = 1847}, - [5975] = {.lex_state = 283, .external_lex_state = 2}, - [5976] = {.lex_state = 1807}, - [5977] = {.lex_state = 1847}, - [5978] = {.lex_state = 1847}, - [5979] = {.lex_state = 283, .external_lex_state = 2}, - [5980] = {.lex_state = 283, .external_lex_state = 2}, - [5981] = {.lex_state = 1807}, - [5982] = {.lex_state = 1807}, - [5983] = {.lex_state = 283, .external_lex_state = 2}, - [5984] = {.lex_state = 283, .external_lex_state = 2}, - [5985] = {.lex_state = 87}, - [5986] = {.lex_state = 283, .external_lex_state = 2}, - [5987] = {.lex_state = 283, .external_lex_state = 2}, - [5988] = {.lex_state = 394}, - [5989] = {.lex_state = 347}, - [5990] = {.lex_state = 283, .external_lex_state = 2}, - [5991] = {.lex_state = 347}, - [5992] = {.lex_state = 87}, - [5993] = {.lex_state = 347}, - [5994] = {.lex_state = 325}, - [5995] = {.lex_state = 87}, - [5996] = {.lex_state = 41}, - [5997] = {.lex_state = 1807}, - [5998] = {.lex_state = 283, .external_lex_state = 2}, - [5999] = {.lex_state = 1739}, - [6000] = {.lex_state = 361}, - [6001] = {.lex_state = 283}, - [6002] = {.lex_state = 353}, - [6003] = {.lex_state = 395}, - [6004] = {.lex_state = 388}, - [6005] = {.lex_state = 353}, - [6006] = {.lex_state = 388}, - [6007] = {.lex_state = 353}, - [6008] = {.lex_state = 353}, - [6009] = {.lex_state = 283}, - [6010] = {.lex_state = 1839}, - [6011] = {.lex_state = 397}, - [6012] = {.lex_state = 361}, - [6013] = {.lex_state = 41}, - [6014] = {.lex_state = 1847}, - [6015] = {.lex_state = 396}, - [6016] = {.lex_state = 347}, - [6017] = {.lex_state = 370}, - [6018] = {.lex_state = 353}, - [6019] = {.lex_state = 1807}, - [6020] = {.lex_state = 378}, - [6021] = {.lex_state = 283}, - [6022] = {.lex_state = 1807}, - [6023] = {.lex_state = 347}, - [6024] = {.lex_state = 1807}, - [6025] = {.lex_state = 283}, - [6026] = {.lex_state = 283}, - [6027] = {.lex_state = 395}, - [6028] = {.lex_state = 283, .external_lex_state = 2}, - [6029] = {.lex_state = 283, .external_lex_state = 2}, - [6030] = {.lex_state = 80}, - [6031] = {.lex_state = 395}, - [6032] = {.lex_state = 283, .external_lex_state = 2}, - [6033] = {.lex_state = 283, .external_lex_state = 2}, - [6034] = {.lex_state = 353}, - [6035] = {.lex_state = 395}, - [6036] = {.lex_state = 283}, - [6037] = {.lex_state = 395}, - [6038] = {.lex_state = 1806}, - [6039] = {.lex_state = 283}, - [6040] = {.lex_state = 283}, - [6041] = {.lex_state = 283}, - [6042] = {.lex_state = 283}, - [6043] = {.lex_state = 370}, - [6044] = {.lex_state = 370}, - [6045] = {.lex_state = 283, .external_lex_state = 2}, - [6046] = {.lex_state = 283}, - [6047] = {.lex_state = 1737}, - [6048] = {.lex_state = 388}, - [6049] = {.lex_state = 283}, - [6050] = {.lex_state = 283}, - [6051] = {.lex_state = 283}, - [6052] = {.lex_state = 283}, - [6053] = {.lex_state = 283}, - [6054] = {.lex_state = 388}, - [6055] = {.lex_state = 1807}, - [6056] = {.lex_state = 396}, - [6057] = {.lex_state = 1847}, - [6058] = {.lex_state = 283}, - [6059] = {.lex_state = 389}, - [6060] = {.lex_state = 1806}, - [6061] = {.lex_state = 389}, - [6062] = {.lex_state = 388}, - [6063] = {.lex_state = 125}, - [6064] = {.lex_state = 14}, - [6065] = {.lex_state = 283}, - [6066] = {.lex_state = 283}, - [6067] = {.lex_state = 283}, - [6068] = {.lex_state = 283}, - [6069] = {.lex_state = 1847}, - [6070] = {.lex_state = 388}, - [6071] = {.lex_state = 283}, - [6072] = {.lex_state = 1847}, - [6073] = {.lex_state = 377}, - [6074] = {.lex_state = 1847}, - [6075] = {.lex_state = 283}, - [6076] = {.lex_state = 396}, - [6077] = {.lex_state = 1739}, - [6078] = {.lex_state = 14}, - [6079] = {.lex_state = 283, .external_lex_state = 2}, - [6080] = {.lex_state = 283, .external_lex_state = 2}, - [6081] = {.lex_state = 396}, - [6082] = {.lex_state = 396}, - [6083] = {.lex_state = 342}, - [6084] = {.lex_state = 41, .external_lex_state = 2}, - [6085] = {.lex_state = 396}, - [6086] = {.lex_state = 283}, - [6087] = {.lex_state = 283}, - [6088] = {.lex_state = 1737}, - [6089] = {.lex_state = 1807}, - [6090] = {.lex_state = 283}, - [6091] = {.lex_state = 1771}, - [6092] = {.lex_state = 361}, - [6093] = {.lex_state = 80}, - [6094] = {.lex_state = 1737}, - [6095] = {.lex_state = 1737}, - [6096] = {.lex_state = 1737}, - [6097] = {.lex_state = 80}, - [6098] = {.lex_state = 1737}, - [6099] = {.lex_state = 1737}, - [6100] = {.lex_state = 80}, - [6101] = {.lex_state = 1771}, - [6102] = {.lex_state = 1771}, - [6103] = {.lex_state = 1737}, - [6104] = {.lex_state = 41}, - [6105] = {.lex_state = 313}, - [6106] = {.lex_state = 283}, - [6107] = {.lex_state = 411}, - [6108] = {.lex_state = 1771}, - [6109] = {.lex_state = 1737}, - [6110] = {.lex_state = 294}, - [6111] = {.lex_state = 1737}, - [6112] = {.lex_state = 283}, - [6113] = {.lex_state = 1771}, - [6114] = {.lex_state = 370}, - [6115] = {.lex_state = 1737}, - [6116] = {.lex_state = 322}, - [6117] = {.lex_state = 41, .external_lex_state = 2}, - [6118] = {.lex_state = 294}, - [6119] = {.lex_state = 396}, - [6120] = {.lex_state = 4765}, - [6121] = {.lex_state = 4765}, - [6122] = {.lex_state = 396}, - [6123] = {.lex_state = 1737}, - [6124] = {.lex_state = 294}, - [6125] = {.lex_state = 1806}, - [6126] = {.lex_state = 1771}, - [6127] = {.lex_state = 7}, - [6128] = {.lex_state = 431}, - [6129] = {.lex_state = 1737}, - [6130] = {.lex_state = 1771}, - [6131] = {.lex_state = 1737}, - [6132] = {.lex_state = 368}, - [6133] = {.lex_state = 80}, - [6134] = {.lex_state = 7}, - [6135] = {.lex_state = 431}, - [6136] = {.lex_state = 403}, - [6137] = {.lex_state = 1737}, - [6138] = {.lex_state = 1737}, - [6139] = {.lex_state = 1737}, - [6140] = {.lex_state = 390}, - [6141] = {.lex_state = 368}, - [6142] = {.lex_state = 80}, - [6143] = {.lex_state = 80}, - [6144] = {.lex_state = 294}, - [6145] = {.lex_state = 370}, - [6146] = {.lex_state = 340}, - [6147] = {.lex_state = 4765}, - [6148] = {.lex_state = 4765}, - [6149] = {.lex_state = 294}, - [6150] = {.lex_state = 1771}, - [6151] = {.lex_state = 80}, - [6152] = {.lex_state = 1771}, - [6153] = {.lex_state = 80}, - [6154] = {.lex_state = 80}, - [6155] = {.lex_state = 294}, + [3800] = {.lex_state = 1741}, + [3801] = {.lex_state = 1741}, + [3802] = {.lex_state = 1728}, + [3803] = {.lex_state = 1743}, + [3804] = {.lex_state = 1725}, + [3805] = {.lex_state = 1743}, + [3806] = {.lex_state = 1725}, + [3807] = {.lex_state = 1743}, + [3808] = {.lex_state = 1743}, + [3809] = {.lex_state = 1728}, + [3810] = {.lex_state = 1725}, + [3811] = {.lex_state = 1745}, + [3812] = {.lex_state = 1725}, + [3813] = {.lex_state = 1743}, + [3814] = {.lex_state = 1665}, + [3815] = {.lex_state = 1740}, + [3816] = {.lex_state = 1725}, + [3817] = {.lex_state = 1736}, + [3818] = {.lex_state = 1743}, + [3819] = {.lex_state = 1745}, + [3820] = {.lex_state = 1725}, + [3821] = {.lex_state = 1742}, + [3822] = {.lex_state = 1744}, + [3823] = {.lex_state = 1737}, + [3824] = {.lex_state = 1747}, + [3825] = {.lex_state = 1743}, + [3826] = {.lex_state = 1725}, + [3827] = {.lex_state = 1747}, + [3828] = {.lex_state = 64}, + [3829] = {.lex_state = 1725}, + [3830] = {.lex_state = 1725}, + [3831] = {.lex_state = 1743}, + [3832] = {.lex_state = 1742}, + [3833] = {.lex_state = 1743}, + [3834] = {.lex_state = 1740}, + [3835] = {.lex_state = 1736}, + [3836] = {.lex_state = 49}, + [3837] = {.lex_state = 1730}, + [3838] = {.lex_state = 48}, + [3839] = {.lex_state = 1744}, + [3840] = {.lex_state = 1730}, + [3841] = {.lex_state = 1747}, + [3842] = {.lex_state = 52}, + [3843] = {.lex_state = 1738}, + [3844] = {.lex_state = 1747}, + [3845] = {.lex_state = 50}, + [3846] = {.lex_state = 1749}, + [3847] = {.lex_state = 1749}, + [3848] = {.lex_state = 1749}, + [3849] = {.lex_state = 1742}, + [3850] = {.lex_state = 1749}, + [3851] = {.lex_state = 1749}, + [3852] = {.lex_state = 1749}, + [3853] = {.lex_state = 64}, + [3854] = {.lex_state = 49}, + [3855] = {.lex_state = 1744}, + [3856] = {.lex_state = 1744}, + [3857] = {.lex_state = 1746}, + [3858] = {.lex_state = 48}, + [3859] = {.lex_state = 1744}, + [3860] = {.lex_state = 1730}, + [3861] = {.lex_state = 1742}, + [3862] = {.lex_state = 1744}, + [3863] = {.lex_state = 1749}, + [3864] = {.lex_state = 1744}, + [3865] = {.lex_state = 1749}, + [3866] = {.lex_state = 1744}, + [3867] = {.lex_state = 1748}, + [3868] = {.lex_state = 1730}, + [3869] = {.lex_state = 1748}, + [3870] = {.lex_state = 1746}, + [3871] = {.lex_state = 1744}, + [3872] = {.lex_state = 1749}, + [3873] = {.lex_state = 1753}, + [3874] = {.lex_state = 54}, + [3875] = {.lex_state = 53}, + [3876] = {.lex_state = 49}, + [3877] = {.lex_state = 49}, + [3878] = {.lex_state = 1749}, + [3879] = {.lex_state = 1749}, + [3880] = {.lex_state = 1730}, + [3881] = {.lex_state = 53}, + [3882] = {.lex_state = 1751}, + [3883] = {.lex_state = 1730}, + [3884] = {.lex_state = 1744}, + [3885] = {.lex_state = 49}, + [3886] = {.lex_state = 49}, + [3887] = {.lex_state = 1744}, + [3888] = {.lex_state = 1730}, + [3889] = {.lex_state = 1738}, + [3890] = {.lex_state = 1730}, + [3891] = {.lex_state = 1749}, + [3892] = {.lex_state = 1665}, + [3893] = {.lex_state = 51}, + [3894] = {.lex_state = 30}, + [3895] = {.lex_state = 54}, + [3896] = {.lex_state = 1730}, + [3897] = {.lex_state = 1750}, + [3898] = {.lex_state = 1744}, + [3899] = {.lex_state = 1730}, + [3900] = {.lex_state = 1751}, + [3901] = {.lex_state = 1755}, + [3902] = {.lex_state = 1748}, + [3903] = {.lex_state = 1755}, + [3904] = {.lex_state = 54}, + [3905] = {.lex_state = 62}, + [3906] = {.lex_state = 1730}, + [3907] = {.lex_state = 1730}, + [3908] = {.lex_state = 1665}, + [3909] = {.lex_state = 56}, + [3910] = {.lex_state = 1750}, + [3911] = {.lex_state = 1665}, + [3912] = {.lex_state = 1750}, + [3913] = {.lex_state = 30}, + [3914] = {.lex_state = 1750}, + [3915] = {.lex_state = 1730}, + [3916] = {.lex_state = 54}, + [3917] = {.lex_state = 62}, + [3918] = {.lex_state = 62}, + [3919] = {.lex_state = 30}, + [3920] = {.lex_state = 1753}, + [3921] = {.lex_state = 62}, + [3922] = {.lex_state = 1748}, + [3923] = {.lex_state = 1730}, + [3924] = {.lex_state = 1730}, + [3925] = {.lex_state = 1750}, + [3926] = {.lex_state = 1750}, + [3927] = {.lex_state = 1730}, + [3928] = {.lex_state = 30}, + [3929] = {.lex_state = 1665}, + [3930] = {.lex_state = 1665}, + [3931] = {.lex_state = 1665}, + [3932] = {.lex_state = 1665}, + [3933] = {.lex_state = 1665}, + [3934] = {.lex_state = 54}, + [3935] = {.lex_state = 1665}, + [3936] = {.lex_state = 1769}, + [3937] = {.lex_state = 30}, + [3938] = {.lex_state = 1730}, + [3939] = {.lex_state = 1730}, + [3940] = {.lex_state = 1755}, + [3941] = {.lex_state = 1730}, + [3942] = {.lex_state = 1755}, + [3943] = {.lex_state = 1730}, + [3944] = {.lex_state = 1757}, + [3945] = {.lex_state = 1750}, + [3946] = {.lex_state = 1750}, + [3947] = {.lex_state = 1665}, + [3948] = {.lex_state = 1754}, + [3949] = {.lex_state = 1730}, + [3950] = {.lex_state = 1665}, + [3951] = {.lex_state = 1665}, + [3952] = {.lex_state = 30}, + [3953] = {.lex_state = 30}, + [3954] = {.lex_state = 30}, + [3955] = {.lex_state = 1757}, + [3956] = {.lex_state = 1730}, + [3957] = {.lex_state = 1757}, + [3958] = {.lex_state = 1730}, + [3959] = {.lex_state = 1730}, + [3960] = {.lex_state = 1730}, + [3961] = {.lex_state = 1730}, + [3962] = {.lex_state = 30}, + [3963] = {.lex_state = 1757}, + [3964] = {.lex_state = 1730}, + [3965] = {.lex_state = 1730}, + [3966] = {.lex_state = 1730}, + [3967] = {.lex_state = 1730}, + [3968] = {.lex_state = 1757}, + [3969] = {.lex_state = 1730}, + [3970] = {.lex_state = 1757}, + [3971] = {.lex_state = 1730}, + [3972] = {.lex_state = 1730}, + [3973] = {.lex_state = 1757}, + [3974] = {.lex_state = 1730}, + [3975] = {.lex_state = 1757}, + [3976] = {.lex_state = 1757}, + [3977] = {.lex_state = 1730}, + [3978] = {.lex_state = 30}, + [3979] = {.lex_state = 1769}, + [3980] = {.lex_state = 1730}, + [3981] = {.lex_state = 1665}, + [3982] = {.lex_state = 1750}, + [3983] = {.lex_state = 1730}, + [3984] = {.lex_state = 57}, + [3985] = {.lex_state = 1665}, + [3986] = {.lex_state = 1750}, + [3987] = {.lex_state = 30}, + [3988] = {.lex_state = 57}, + [3989] = {.lex_state = 30}, + [3990] = {.lex_state = 1730}, + [3991] = {.lex_state = 1730}, + [3992] = {.lex_state = 1665}, + [3993] = {.lex_state = 1730}, + [3994] = {.lex_state = 1665}, + [3995] = {.lex_state = 1665}, + [3996] = {.lex_state = 1665}, + [3997] = {.lex_state = 1750}, + [3998] = {.lex_state = 1730}, + [3999] = {.lex_state = 1665}, + [4000] = {.lex_state = 1730}, + [4001] = {.lex_state = 1730}, + [4002] = {.lex_state = 1750}, + [4003] = {.lex_state = 1769}, + [4004] = {.lex_state = 1769}, + [4005] = {.lex_state = 1730}, + [4006] = {.lex_state = 30}, + [4007] = {.lex_state = 1752}, + [4008] = {.lex_state = 1730}, + [4009] = {.lex_state = 1730}, + [4010] = {.lex_state = 1730}, + [4011] = {.lex_state = 1730}, + [4012] = {.lex_state = 30}, + [4013] = {.lex_state = 1730}, + [4014] = {.lex_state = 1730}, + [4015] = {.lex_state = 30}, + [4016] = {.lex_state = 1730}, + [4017] = {.lex_state = 1730}, + [4018] = {.lex_state = 1769}, + [4019] = {.lex_state = 1730}, + [4020] = {.lex_state = 1740}, + [4021] = {.lex_state = 244, .external_lex_state = 2}, + [4022] = {.lex_state = 1730}, + [4023] = {.lex_state = 1730}, + [4024] = {.lex_state = 1730}, + [4025] = {.lex_state = 1756}, + [4026] = {.lex_state = 1730}, + [4027] = {.lex_state = 1730}, + [4028] = {.lex_state = 1730}, + [4029] = {.lex_state = 30}, + [4030] = {.lex_state = 1757}, + [4031] = {.lex_state = 30}, + [4032] = {.lex_state = 30}, + [4033] = {.lex_state = 1757}, + [4034] = {.lex_state = 1740}, + [4035] = {.lex_state = 1730}, + [4036] = {.lex_state = 1730}, + [4037] = {.lex_state = 1740}, + [4038] = {.lex_state = 1730}, + [4039] = {.lex_state = 1730}, + [4040] = {.lex_state = 1665}, + [4041] = {.lex_state = 1769}, + [4042] = {.lex_state = 1769}, + [4043] = {.lex_state = 1769}, + [4044] = {.lex_state = 244, .external_lex_state = 2}, + [4045] = {.lex_state = 1757}, + [4046] = {.lex_state = 1740}, + [4047] = {.lex_state = 1730}, + [4048] = {.lex_state = 1730}, + [4049] = {.lex_state = 1756}, + [4050] = {.lex_state = 1730}, + [4051] = {.lex_state = 1769}, + [4052] = {.lex_state = 1730}, + [4053] = {.lex_state = 1730}, + [4054] = {.lex_state = 30}, + [4055] = {.lex_state = 1730}, + [4056] = {.lex_state = 55}, + [4057] = {.lex_state = 1730}, + [4058] = {.lex_state = 1730}, + [4059] = {.lex_state = 1757}, + [4060] = {.lex_state = 55}, + [4061] = {.lex_state = 1730}, + [4062] = {.lex_state = 1730}, + [4063] = {.lex_state = 55}, + [4064] = {.lex_state = 55}, + [4065] = {.lex_state = 1740}, + [4066] = {.lex_state = 1730}, + [4067] = {.lex_state = 1730}, + [4068] = {.lex_state = 1740}, + [4069] = {.lex_state = 1730}, + [4070] = {.lex_state = 1665}, + [4071] = {.lex_state = 1757}, + [4072] = {.lex_state = 1730}, + [4073] = {.lex_state = 30}, + [4074] = {.lex_state = 1757}, + [4075] = {.lex_state = 1757}, + [4076] = {.lex_state = 1757}, + [4077] = {.lex_state = 1757}, + [4078] = {.lex_state = 1769}, + [4079] = {.lex_state = 30}, + [4080] = {.lex_state = 244, .external_lex_state = 2}, + [4081] = {.lex_state = 1740}, + [4082] = {.lex_state = 1752}, + [4083] = {.lex_state = 30}, + [4084] = {.lex_state = 1730}, + [4085] = {.lex_state = 30}, + [4086] = {.lex_state = 30}, + [4087] = {.lex_state = 1740}, + [4088] = {.lex_state = 30}, + [4089] = {.lex_state = 30}, + [4090] = {.lex_state = 1665}, + [4091] = {.lex_state = 244, .external_lex_state = 2}, + [4092] = {.lex_state = 55}, + [4093] = {.lex_state = 1730}, + [4094] = {.lex_state = 1740}, + [4095] = {.lex_state = 1740}, + [4096] = {.lex_state = 1740}, + [4097] = {.lex_state = 1757}, + [4098] = {.lex_state = 1665}, + [4099] = {.lex_state = 1730}, + [4100] = {.lex_state = 1730}, + [4101] = {.lex_state = 1665}, + [4102] = {.lex_state = 30}, + [4103] = {.lex_state = 1754}, + [4104] = {.lex_state = 1730}, + [4105] = {.lex_state = 55}, + [4106] = {.lex_state = 1627}, + [4107] = {.lex_state = 30}, + [4108] = {.lex_state = 1770}, + [4109] = {.lex_state = 30}, + [4110] = {.lex_state = 30}, + [4111] = {.lex_state = 30}, + [4112] = {.lex_state = 30}, + [4113] = {.lex_state = 1758}, + [4114] = {.lex_state = 30}, + [4115] = {.lex_state = 58}, + [4116] = {.lex_state = 1740}, + [4117] = {.lex_state = 1740}, + [4118] = {.lex_state = 1740}, + [4119] = {.lex_state = 1627}, + [4120] = {.lex_state = 30}, + [4121] = {.lex_state = 1627}, + [4122] = {.lex_state = 1770}, + [4123] = {.lex_state = 1767}, + [4124] = {.lex_state = 1770}, + [4125] = {.lex_state = 30}, + [4126] = {.lex_state = 1665}, + [4127] = {.lex_state = 1627}, + [4128] = {.lex_state = 1627}, + [4129] = {.lex_state = 1627}, + [4130] = {.lex_state = 1627}, + [4131] = {.lex_state = 1627}, + [4132] = {.lex_state = 1627}, + [4133] = {.lex_state = 1627}, + [4134] = {.lex_state = 1627}, + [4135] = {.lex_state = 1627}, + [4136] = {.lex_state = 1627}, + [4137] = {.lex_state = 1627}, + [4138] = {.lex_state = 1725}, + [4139] = {.lex_state = 1665}, + [4140] = {.lex_state = 1740}, + [4141] = {.lex_state = 1627}, + [4142] = {.lex_state = 1627}, + [4143] = {.lex_state = 1627}, + [4144] = {.lex_state = 1627}, + [4145] = {.lex_state = 1627}, + [4146] = {.lex_state = 1627}, + [4147] = {.lex_state = 1627}, + [4148] = {.lex_state = 1627}, + [4149] = {.lex_state = 1627}, + [4150] = {.lex_state = 1627}, + [4151] = {.lex_state = 1627}, + [4152] = {.lex_state = 1627}, + [4153] = {.lex_state = 1627}, + [4154] = {.lex_state = 1627}, + [4155] = {.lex_state = 1627}, + [4156] = {.lex_state = 1627}, + [4157] = {.lex_state = 1627}, + [4158] = {.lex_state = 1627}, + [4159] = {.lex_state = 1627}, + [4160] = {.lex_state = 1627}, + [4161] = {.lex_state = 1627}, + [4162] = {.lex_state = 1627}, + [4163] = {.lex_state = 1627}, + [4164] = {.lex_state = 1627}, + [4165] = {.lex_state = 1627}, + [4166] = {.lex_state = 1627}, + [4167] = {.lex_state = 1627}, + [4168] = {.lex_state = 1627}, + [4169] = {.lex_state = 1627}, + [4170] = {.lex_state = 1627}, + [4171] = {.lex_state = 1627}, + [4172] = {.lex_state = 1627}, + [4173] = {.lex_state = 1758}, + [4174] = {.lex_state = 1627}, + [4175] = {.lex_state = 1627}, + [4176] = {.lex_state = 1627}, + [4177] = {.lex_state = 1665}, + [4178] = {.lex_state = 1627}, + [4179] = {.lex_state = 1627}, + [4180] = {.lex_state = 1627}, + [4181] = {.lex_state = 1627}, + [4182] = {.lex_state = 1627}, + [4183] = {.lex_state = 1627}, + [4184] = {.lex_state = 1627}, + [4185] = {.lex_state = 1627}, + [4186] = {.lex_state = 1627}, + [4187] = {.lex_state = 1758}, + [4188] = {.lex_state = 1627}, + [4189] = {.lex_state = 1627}, + [4190] = {.lex_state = 1627}, + [4191] = {.lex_state = 1740}, + [4192] = {.lex_state = 1627}, + [4193] = {.lex_state = 1627}, + [4194] = {.lex_state = 1627}, + [4195] = {.lex_state = 1627}, + [4196] = {.lex_state = 1627}, + [4197] = {.lex_state = 1627}, + [4198] = {.lex_state = 1627}, + [4199] = {.lex_state = 1627}, + [4200] = {.lex_state = 1758}, + [4201] = {.lex_state = 1627}, + [4202] = {.lex_state = 1627}, + [4203] = {.lex_state = 30}, + [4204] = {.lex_state = 1627}, + [4205] = {.lex_state = 1627}, + [4206] = {.lex_state = 1627}, + [4207] = {.lex_state = 1627}, + [4208] = {.lex_state = 43}, + [4209] = {.lex_state = 1627}, + [4210] = {.lex_state = 1770}, + [4211] = {.lex_state = 1660}, + [4212] = {.lex_state = 1627}, + [4213] = {.lex_state = 1627}, + [4214] = {.lex_state = 1758}, + [4215] = {.lex_state = 1627}, + [4216] = {.lex_state = 1627}, + [4217] = {.lex_state = 1627}, + [4218] = {.lex_state = 1627}, + [4219] = {.lex_state = 1627}, + [4220] = {.lex_state = 1725}, + [4221] = {.lex_state = 1725}, + [4222] = {.lex_state = 1627}, + [4223] = {.lex_state = 1730}, + [4224] = {.lex_state = 1627}, + [4225] = {.lex_state = 1627}, + [4226] = {.lex_state = 1627}, + [4227] = {.lex_state = 1627}, + [4228] = {.lex_state = 1627}, + [4229] = {.lex_state = 1627}, + [4230] = {.lex_state = 1725}, + [4231] = {.lex_state = 1725}, + [4232] = {.lex_state = 30}, + [4233] = {.lex_state = 1756}, + [4234] = {.lex_state = 1627}, + [4235] = {.lex_state = 1627}, + [4236] = {.lex_state = 1627}, + [4237] = {.lex_state = 1627}, + [4238] = {.lex_state = 1740}, + [4239] = {.lex_state = 1627}, + [4240] = {.lex_state = 1627}, + [4241] = {.lex_state = 1627}, + [4242] = {.lex_state = 1627}, + [4243] = {.lex_state = 1627}, + [4244] = {.lex_state = 1757}, + [4245] = {.lex_state = 1627}, + [4246] = {.lex_state = 1627}, + [4247] = {.lex_state = 1627}, + [4248] = {.lex_state = 1627}, + [4249] = {.lex_state = 1770}, + [4250] = {.lex_state = 1627}, + [4251] = {.lex_state = 1756}, + [4252] = {.lex_state = 1758}, + [4253] = {.lex_state = 30}, + [4254] = {.lex_state = 43}, + [4255] = {.lex_state = 1627}, + [4256] = {.lex_state = 1627}, + [4257] = {.lex_state = 59}, + [4258] = {.lex_state = 30}, + [4259] = {.lex_state = 1740}, + [4260] = {.lex_state = 1627}, + [4261] = {.lex_state = 1627}, + [4262] = {.lex_state = 1627}, + [4263] = {.lex_state = 1627}, + [4264] = {.lex_state = 1627}, + [4265] = {.lex_state = 1627}, + [4266] = {.lex_state = 1627}, + [4267] = {.lex_state = 1627}, + [4268] = {.lex_state = 1627}, + [4269] = {.lex_state = 1627}, + [4270] = {.lex_state = 1627}, + [4271] = {.lex_state = 1627}, + [4272] = {.lex_state = 1627}, + [4273] = {.lex_state = 1627}, + [4274] = {.lex_state = 1627}, + [4275] = {.lex_state = 1627}, + [4276] = {.lex_state = 1752}, + [4277] = {.lex_state = 30}, + [4278] = {.lex_state = 30}, + [4279] = {.lex_state = 30}, + [4280] = {.lex_state = 1740}, + [4281] = {.lex_state = 1740}, + [4282] = {.lex_state = 1740}, + [4283] = {.lex_state = 1627}, + [4284] = {.lex_state = 1627}, + [4285] = {.lex_state = 1758}, + [4286] = {.lex_state = 30}, + [4287] = {.lex_state = 1758}, + [4288] = {.lex_state = 1740}, + [4289] = {.lex_state = 30}, + [4290] = {.lex_state = 30}, + [4291] = {.lex_state = 30}, + [4292] = {.lex_state = 30}, + [4293] = {.lex_state = 30}, + [4294] = {.lex_state = 30}, + [4295] = {.lex_state = 30}, + [4296] = {.lex_state = 1758}, + [4297] = {.lex_state = 1627}, + [4298] = {.lex_state = 30}, + [4299] = {.lex_state = 30}, + [4300] = {.lex_state = 1627}, + [4301] = {.lex_state = 1627}, + [4302] = {.lex_state = 30}, + [4303] = {.lex_state = 1627}, + [4304] = {.lex_state = 1627}, + [4305] = {.lex_state = 1627}, + [4306] = {.lex_state = 1767}, + [4307] = {.lex_state = 1627}, + [4308] = {.lex_state = 1627}, + [4309] = {.lex_state = 1758}, + [4310] = {.lex_state = 30}, + [4311] = {.lex_state = 1627}, + [4312] = {.lex_state = 1758}, + [4313] = {.lex_state = 1627}, + [4314] = {.lex_state = 1627}, + [4315] = {.lex_state = 1758}, + [4316] = {.lex_state = 30}, + [4317] = {.lex_state = 1725}, + [4318] = {.lex_state = 30}, + [4319] = {.lex_state = 1725}, + [4320] = {.lex_state = 1627}, + [4321] = {.lex_state = 1770}, + [4322] = {.lex_state = 1697}, + [4323] = {.lex_state = 1770}, + [4324] = {.lex_state = 1627}, + [4325] = {.lex_state = 60}, + [4326] = {.lex_state = 1627}, + [4327] = {.lex_state = 30}, + [4328] = {.lex_state = 1760}, + [4329] = {.lex_state = 1697}, + [4330] = {.lex_state = 30}, + [4331] = {.lex_state = 30}, + [4332] = {.lex_state = 1770}, + [4333] = {.lex_state = 1627}, + [4334] = {.lex_state = 1694}, + [4335] = {.lex_state = 60}, + [4336] = {.lex_state = 30}, + [4337] = {.lex_state = 1759}, + [4338] = {.lex_state = 1627}, + [4339] = {.lex_state = 1627}, + [4340] = {.lex_state = 1627}, + [4341] = {.lex_state = 30}, + [4342] = {.lex_state = 30}, + [4343] = {.lex_state = 30}, + [4344] = {.lex_state = 1697}, + [4345] = {.lex_state = 1730}, + [4346] = {.lex_state = 1730}, + [4347] = {.lex_state = 1758}, + [4348] = {.lex_state = 30}, + [4349] = {.lex_state = 30}, + [4350] = {.lex_state = 1758}, + [4351] = {.lex_state = 1627}, + [4352] = {.lex_state = 1730}, + [4353] = {.lex_state = 1627}, + [4354] = {.lex_state = 1694}, + [4355] = {.lex_state = 1725}, + [4356] = {.lex_state = 1697}, + [4357] = {.lex_state = 30}, + [4358] = {.lex_state = 30}, + [4359] = {.lex_state = 1758}, + [4360] = {.lex_state = 30}, + [4361] = {.lex_state = 1697}, + [4362] = {.lex_state = 1627}, + [4363] = {.lex_state = 1770}, + [4364] = {.lex_state = 1725}, + [4365] = {.lex_state = 1725}, + [4366] = {.lex_state = 1725}, + [4367] = {.lex_state = 30}, + [4368] = {.lex_state = 1758}, + [4369] = {.lex_state = 30}, + [4370] = {.lex_state = 30}, + [4371] = {.lex_state = 30}, + [4372] = {.lex_state = 1752}, + [4373] = {.lex_state = 30}, + [4374] = {.lex_state = 1725}, + [4375] = {.lex_state = 1770}, + [4376] = {.lex_state = 30}, + [4377] = {.lex_state = 1627}, + [4378] = {.lex_state = 1627}, + [4379] = {.lex_state = 1758}, + [4380] = {.lex_state = 1758}, + [4381] = {.lex_state = 1627}, + [4382] = {.lex_state = 1725}, + [4383] = {.lex_state = 1758}, + [4384] = {.lex_state = 55}, + [4385] = {.lex_state = 1697}, + [4386] = {.lex_state = 61}, + [4387] = {.lex_state = 1697}, + [4388] = {.lex_state = 1697}, + [4389] = {.lex_state = 1627}, + [4390] = {.lex_state = 1694}, + [4391] = {.lex_state = 55}, + [4392] = {.lex_state = 55}, + [4393] = {.lex_state = 1697}, + [4394] = {.lex_state = 1697}, + [4395] = {.lex_state = 1697}, + [4396] = {.lex_state = 1627}, + [4397] = {.lex_state = 1697}, + [4398] = {.lex_state = 1697}, + [4399] = {.lex_state = 1697}, + [4400] = {.lex_state = 55}, + [4401] = {.lex_state = 55}, + [4402] = {.lex_state = 1697}, + [4403] = {.lex_state = 1697}, + [4404] = {.lex_state = 1697}, + [4405] = {.lex_state = 1697}, + [4406] = {.lex_state = 61}, + [4407] = {.lex_state = 1697}, + [4408] = {.lex_state = 1697}, + [4409] = {.lex_state = 1627}, + [4410] = {.lex_state = 1697}, + [4411] = {.lex_state = 1694}, + [4412] = {.lex_state = 1697}, + [4413] = {.lex_state = 1697}, + [4414] = {.lex_state = 1697}, + [4415] = {.lex_state = 1697}, + [4416] = {.lex_state = 55}, + [4417] = {.lex_state = 1697}, + [4418] = {.lex_state = 1697}, + [4419] = {.lex_state = 1697}, + [4420] = {.lex_state = 1697}, + [4421] = {.lex_state = 1697}, + [4422] = {.lex_state = 1694}, + [4423] = {.lex_state = 1697}, + [4424] = {.lex_state = 1697}, + [4425] = {.lex_state = 1627}, + [4426] = {.lex_state = 1697}, + [4427] = {.lex_state = 1627}, + [4428] = {.lex_state = 78}, + [4429] = {.lex_state = 1697}, + [4430] = {.lex_state = 1697}, + [4431] = {.lex_state = 1697}, + [4432] = {.lex_state = 78}, + [4433] = {.lex_state = 1697}, + [4434] = {.lex_state = 1697}, + [4435] = {.lex_state = 1697}, + [4436] = {.lex_state = 1697}, + [4437] = {.lex_state = 1694}, + [4438] = {.lex_state = 1697}, + [4439] = {.lex_state = 1697}, + [4440] = {.lex_state = 78}, + [4441] = {.lex_state = 1697}, + [4442] = {.lex_state = 1697}, + [4443] = {.lex_state = 1697}, + [4444] = {.lex_state = 1697}, + [4445] = {.lex_state = 1697}, + [4446] = {.lex_state = 1725}, + [4447] = {.lex_state = 1697}, + [4448] = {.lex_state = 61}, + [4449] = {.lex_state = 1697}, + [4450] = {.lex_state = 1697}, + [4451] = {.lex_state = 1697}, + [4452] = {.lex_state = 1697}, + [4453] = {.lex_state = 1697}, + [4454] = {.lex_state = 1627}, + [4455] = {.lex_state = 43}, + [4456] = {.lex_state = 1697}, + [4457] = {.lex_state = 1694}, + [4458] = {.lex_state = 1694}, + [4459] = {.lex_state = 1725}, + [4460] = {.lex_state = 1694}, + [4461] = {.lex_state = 1627}, + [4462] = {.lex_state = 1627}, + [4463] = {.lex_state = 78}, + [4464] = {.lex_state = 55}, + [4465] = {.lex_state = 30}, + [4466] = {.lex_state = 55}, + [4467] = {.lex_state = 43}, + [4468] = {.lex_state = 1694}, + [4469] = {.lex_state = 1697}, + [4470] = {.lex_state = 1730}, + [4471] = {.lex_state = 30}, + [4472] = {.lex_state = 1697}, + [4473] = {.lex_state = 1697}, + [4474] = {.lex_state = 1697}, + [4475] = {.lex_state = 1760}, + [4476] = {.lex_state = 1697}, + [4477] = {.lex_state = 1697}, + [4478] = {.lex_state = 1759}, + [4479] = {.lex_state = 1761}, + [4480] = {.lex_state = 61}, + [4481] = {.lex_state = 1697}, + [4482] = {.lex_state = 1697}, + [4483] = {.lex_state = 1694}, + [4484] = {.lex_state = 1697}, + [4485] = {.lex_state = 30}, + [4486] = {.lex_state = 30}, + [4487] = {.lex_state = 61}, + [4488] = {.lex_state = 30}, + [4489] = {.lex_state = 1761}, + [4490] = {.lex_state = 1694}, + [4491] = {.lex_state = 1627}, + [4492] = {.lex_state = 61}, + [4493] = {.lex_state = 61}, + [4494] = {.lex_state = 1725}, + [4495] = {.lex_state = 1694}, + [4496] = {.lex_state = 1627}, + [4497] = {.lex_state = 1697}, + [4498] = {.lex_state = 30}, + [4499] = {.lex_state = 1697}, + [4500] = {.lex_state = 1758}, + [4501] = {.lex_state = 1697}, + [4502] = {.lex_state = 1697}, + [4503] = {.lex_state = 1730}, + [4504] = {.lex_state = 78}, + [4505] = {.lex_state = 1694}, + [4506] = {.lex_state = 1697}, + [4507] = {.lex_state = 58}, + [4508] = {.lex_state = 1697}, + [4509] = {.lex_state = 1697}, + [4510] = {.lex_state = 1697}, + [4511] = {.lex_state = 1697}, + [4512] = {.lex_state = 1627}, + [4513] = {.lex_state = 1697}, + [4514] = {.lex_state = 1697}, + [4515] = {.lex_state = 1697}, + [4516] = {.lex_state = 1697}, + [4517] = {.lex_state = 1697}, + [4518] = {.lex_state = 43}, + [4519] = {.lex_state = 43}, + [4520] = {.lex_state = 1697}, + [4521] = {.lex_state = 1697}, + [4522] = {.lex_state = 1697}, + [4523] = {.lex_state = 1697}, + [4524] = {.lex_state = 61}, + [4525] = {.lex_state = 1697}, + [4526] = {.lex_state = 1697}, + [4527] = {.lex_state = 1697}, + [4528] = {.lex_state = 1697}, + [4529] = {.lex_state = 61}, + [4530] = {.lex_state = 1697}, + [4531] = {.lex_state = 1697}, + [4532] = {.lex_state = 246}, + [4533] = {.lex_state = 1697}, + [4534] = {.lex_state = 1697}, + [4535] = {.lex_state = 1697}, + [4536] = {.lex_state = 43}, + [4537] = {.lex_state = 1697}, + [4538] = {.lex_state = 1697}, + [4539] = {.lex_state = 1697}, + [4540] = {.lex_state = 1694}, + [4541] = {.lex_state = 1697}, + [4542] = {.lex_state = 1697}, + [4543] = {.lex_state = 1694}, + [4544] = {.lex_state = 30}, + [4545] = {.lex_state = 30}, + [4546] = {.lex_state = 30}, + [4547] = {.lex_state = 30}, + [4548] = {.lex_state = 30}, + [4549] = {.lex_state = 30}, + [4550] = {.lex_state = 30}, + [4551] = {.lex_state = 30}, + [4552] = {.lex_state = 30}, + [4553] = {.lex_state = 30}, + [4554] = {.lex_state = 1697}, + [4555] = {.lex_state = 30}, + [4556] = {.lex_state = 30}, + [4557] = {.lex_state = 1697}, + [4558] = {.lex_state = 30}, + [4559] = {.lex_state = 247}, + [4560] = {.lex_state = 1627}, + [4561] = {.lex_state = 61}, + [4562] = {.lex_state = 55}, + [4563] = {.lex_state = 30}, + [4564] = {.lex_state = 30}, + [4565] = {.lex_state = 249}, + [4566] = {.lex_state = 30}, + [4567] = {.lex_state = 30}, + [4568] = {.lex_state = 30}, + [4569] = {.lex_state = 30}, + [4570] = {.lex_state = 1627}, + [4571] = {.lex_state = 30}, + [4572] = {.lex_state = 1697}, + [4573] = {.lex_state = 1697}, + [4574] = {.lex_state = 30}, + [4575] = {.lex_state = 30}, + [4576] = {.lex_state = 30}, + [4577] = {.lex_state = 1627}, + [4578] = {.lex_state = 1697}, + [4579] = {.lex_state = 30}, + [4580] = {.lex_state = 1627}, + [4581] = {.lex_state = 30}, + [4582] = {.lex_state = 30}, + [4583] = {.lex_state = 1697}, + [4584] = {.lex_state = 1697}, + [4585] = {.lex_state = 1697}, + [4586] = {.lex_state = 1697}, + [4587] = {.lex_state = 1627}, + [4588] = {.lex_state = 30}, + [4589] = {.lex_state = 1697}, + [4590] = {.lex_state = 1697}, + [4591] = {.lex_state = 1697}, + [4592] = {.lex_state = 1627}, + [4593] = {.lex_state = 30}, + [4594] = {.lex_state = 30}, + [4595] = {.lex_state = 30}, + [4596] = {.lex_state = 30}, + [4597] = {.lex_state = 1665}, + [4598] = {.lex_state = 1697}, + [4599] = {.lex_state = 1697}, + [4600] = {.lex_state = 30}, + [4601] = {.lex_state = 1697}, + [4602] = {.lex_state = 1697}, + [4603] = {.lex_state = 30}, + [4604] = {.lex_state = 1697}, + [4605] = {.lex_state = 1697}, + [4606] = {.lex_state = 1627}, + [4607] = {.lex_state = 30}, + [4608] = {.lex_state = 1697}, + [4609] = {.lex_state = 1697}, + [4610] = {.lex_state = 1697}, + [4611] = {.lex_state = 30}, + [4612] = {.lex_state = 1627}, + [4613] = {.lex_state = 30}, + [4614] = {.lex_state = 30}, + [4615] = {.lex_state = 1697}, + [4616] = {.lex_state = 1627}, + [4617] = {.lex_state = 30}, + [4618] = {.lex_state = 30}, + [4619] = {.lex_state = 30}, + [4620] = {.lex_state = 1697}, + [4621] = {.lex_state = 1761}, + [4622] = {.lex_state = 1627}, + [4623] = {.lex_state = 30}, + [4624] = {.lex_state = 1697}, + [4625] = {.lex_state = 1730}, + [4626] = {.lex_state = 1627}, + [4627] = {.lex_state = 1697}, + [4628] = {.lex_state = 30}, + [4629] = {.lex_state = 1697}, + [4630] = {.lex_state = 1697}, + [4631] = {.lex_state = 1627}, + [4632] = {.lex_state = 1761}, + [4633] = {.lex_state = 30}, + [4634] = {.lex_state = 30}, + [4635] = {.lex_state = 1697}, + [4636] = {.lex_state = 1697}, + [4637] = {.lex_state = 30}, + [4638] = {.lex_state = 1627}, + [4639] = {.lex_state = 1627}, + [4640] = {.lex_state = 1762}, + [4641] = {.lex_state = 30}, + [4642] = {.lex_state = 1697}, + [4643] = {.lex_state = 30}, + [4644] = {.lex_state = 30}, + [4645] = {.lex_state = 30}, + [4646] = {.lex_state = 30}, + [4647] = {.lex_state = 30}, + [4648] = {.lex_state = 1627}, + [4649] = {.lex_state = 1697}, + [4650] = {.lex_state = 1762}, + [4651] = {.lex_state = 1697}, + [4652] = {.lex_state = 30}, + [4653] = {.lex_state = 246}, + [4654] = {.lex_state = 30}, + [4655] = {.lex_state = 1694}, + [4656] = {.lex_state = 30}, + [4657] = {.lex_state = 1697}, + [4658] = {.lex_state = 30}, + [4659] = {.lex_state = 30}, + [4660] = {.lex_state = 1697}, + [4661] = {.lex_state = 30}, + [4662] = {.lex_state = 30}, + [4663] = {.lex_state = 1762}, + [4664] = {.lex_state = 30}, + [4665] = {.lex_state = 30}, + [4666] = {.lex_state = 1665}, + [4667] = {.lex_state = 1697}, + [4668] = {.lex_state = 30}, + [4669] = {.lex_state = 30}, + [4670] = {.lex_state = 30}, + [4671] = {.lex_state = 1762}, + [4672] = {.lex_state = 30}, + [4673] = {.lex_state = 1697}, + [4674] = {.lex_state = 30}, + [4675] = {.lex_state = 1627}, + [4676] = {.lex_state = 1697}, + [4677] = {.lex_state = 30}, + [4678] = {.lex_state = 30}, + [4679] = {.lex_state = 1697}, + [4680] = {.lex_state = 30}, + [4681] = {.lex_state = 1697}, + [4682] = {.lex_state = 30}, + [4683] = {.lex_state = 1694}, + [4684] = {.lex_state = 30}, + [4685] = {.lex_state = 1627}, + [4686] = {.lex_state = 1697}, + [4687] = {.lex_state = 1697}, + [4688] = {.lex_state = 1697}, + [4689] = {.lex_state = 1762}, + [4690] = {.lex_state = 1697}, + [4691] = {.lex_state = 1627}, + [4692] = {.lex_state = 1627}, + [4693] = {.lex_state = 1697}, + [4694] = {.lex_state = 1697}, + [4695] = {.lex_state = 30}, + [4696] = {.lex_state = 30}, + [4697] = {.lex_state = 1697}, + [4698] = {.lex_state = 30}, + [4699] = {.lex_state = 253}, + [4700] = {.lex_state = 30}, + [4701] = {.lex_state = 1697}, + [4702] = {.lex_state = 1694}, + [4703] = {.lex_state = 1694}, + [4704] = {.lex_state = 1694}, + [4705] = {.lex_state = 1694}, + [4706] = {.lex_state = 1694}, + [4707] = {.lex_state = 1694}, + [4708] = {.lex_state = 1694}, + [4709] = {.lex_state = 1694}, + [4710] = {.lex_state = 1627}, + [4711] = {.lex_state = 1697}, + [4712] = {.lex_state = 1694}, + [4713] = {.lex_state = 1694}, + [4714] = {.lex_state = 1694}, + [4715] = {.lex_state = 30}, + [4716] = {.lex_state = 30}, + [4717] = {.lex_state = 1627}, + [4718] = {.lex_state = 1627}, + [4719] = {.lex_state = 1694}, + [4720] = {.lex_state = 1697}, + [4721] = {.lex_state = 1697}, + [4722] = {.lex_state = 1627}, + [4723] = {.lex_state = 1697}, + [4724] = {.lex_state = 1697}, + [4725] = {.lex_state = 1697}, + [4726] = {.lex_state = 30}, + [4727] = {.lex_state = 1697}, + [4728] = {.lex_state = 1697}, + [4729] = {.lex_state = 1697}, + [4730] = {.lex_state = 1697}, + [4731] = {.lex_state = 30}, + [4732] = {.lex_state = 1697}, + [4733] = {.lex_state = 1697}, + [4734] = {.lex_state = 30}, + [4735] = {.lex_state = 1697}, + [4736] = {.lex_state = 1697}, + [4737] = {.lex_state = 30}, + [4738] = {.lex_state = 1697}, + [4739] = {.lex_state = 1697}, + [4740] = {.lex_state = 30}, + [4741] = {.lex_state = 1627}, + [4742] = {.lex_state = 1697}, + [4743] = {.lex_state = 1697}, + [4744] = {.lex_state = 1697}, + [4745] = {.lex_state = 30}, + [4746] = {.lex_state = 1627}, + [4747] = {.lex_state = 30}, + [4748] = {.lex_state = 1627}, + [4749] = {.lex_state = 1697}, + [4750] = {.lex_state = 30}, + [4751] = {.lex_state = 1627}, + [4752] = {.lex_state = 30}, + [4753] = {.lex_state = 1697}, + [4754] = {.lex_state = 30}, + [4755] = {.lex_state = 30}, + [4756] = {.lex_state = 30}, + [4757] = {.lex_state = 30}, + [4758] = {.lex_state = 1627}, + [4759] = {.lex_state = 1697}, + [4760] = {.lex_state = 1627}, + [4761] = {.lex_state = 1730}, + [4762] = {.lex_state = 249}, + [4763] = {.lex_state = 30}, + [4764] = {.lex_state = 1697}, + [4765] = {.lex_state = 1694}, + [4766] = {.lex_state = 1697}, + [4767] = {.lex_state = 30}, + [4768] = {.lex_state = 1627}, + [4769] = {.lex_state = 30}, + [4770] = {.lex_state = 250}, + [4771] = {.lex_state = 30}, + [4772] = {.lex_state = 30}, + [4773] = {.lex_state = 30}, + [4774] = {.lex_state = 30}, + [4775] = {.lex_state = 66}, + [4776] = {.lex_state = 1627}, + [4777] = {.lex_state = 1697}, + [4778] = {.lex_state = 1697}, + [4779] = {.lex_state = 1697}, + [4780] = {.lex_state = 55}, + [4781] = {.lex_state = 1697}, + [4782] = {.lex_state = 30}, + [4783] = {.lex_state = 30}, + [4784] = {.lex_state = 1627}, + [4785] = {.lex_state = 30}, + [4786] = {.lex_state = 30}, + [4787] = {.lex_state = 1627}, + [4788] = {.lex_state = 250}, + [4789] = {.lex_state = 30}, + [4790] = {.lex_state = 30}, + [4791] = {.lex_state = 1697}, + [4792] = {.lex_state = 1697}, + [4793] = {.lex_state = 1697}, + [4794] = {.lex_state = 1697}, + [4795] = {.lex_state = 30}, + [4796] = {.lex_state = 1627}, + [4797] = {.lex_state = 1697}, + [4798] = {.lex_state = 1627}, + [4799] = {.lex_state = 30}, + [4800] = {.lex_state = 30}, + [4801] = {.lex_state = 262}, + [4802] = {.lex_state = 1627}, + [4803] = {.lex_state = 257}, + [4804] = {.lex_state = 30}, + [4805] = {.lex_state = 30}, + [4806] = {.lex_state = 62}, + [4807] = {.lex_state = 1627}, + [4808] = {.lex_state = 1627}, + [4809] = {.lex_state = 1627}, + [4810] = {.lex_state = 1627}, + [4811] = {.lex_state = 1627}, + [4812] = {.lex_state = 248}, + [4813] = {.lex_state = 1627}, + [4814] = {.lex_state = 1627}, + [4815] = {.lex_state = 1627}, + [4816] = {.lex_state = 249}, + [4817] = {.lex_state = 249}, + [4818] = {.lex_state = 249}, + [4819] = {.lex_state = 255}, + [4820] = {.lex_state = 1627}, + [4821] = {.lex_state = 1627}, + [4822] = {.lex_state = 30}, + [4823] = {.lex_state = 255}, + [4824] = {.lex_state = 30}, + [4825] = {.lex_state = 30}, + [4826] = {.lex_state = 30}, + [4827] = {.lex_state = 1762}, + [4828] = {.lex_state = 30}, + [4829] = {.lex_state = 1762}, + [4830] = {.lex_state = 1762}, + [4831] = {.lex_state = 1762}, + [4832] = {.lex_state = 30}, + [4833] = {.lex_state = 30}, + [4834] = {.lex_state = 30}, + [4835] = {.lex_state = 30}, + [4836] = {.lex_state = 1665}, + [4837] = {.lex_state = 30}, + [4838] = {.lex_state = 30}, + [4839] = {.lex_state = 30}, + [4840] = {.lex_state = 30}, + [4841] = {.lex_state = 1665}, + [4842] = {.lex_state = 30}, + [4843] = {.lex_state = 30}, + [4844] = {.lex_state = 30}, + [4845] = {.lex_state = 30}, + [4846] = {.lex_state = 30}, + [4847] = {.lex_state = 30}, + [4848] = {.lex_state = 30}, + [4849] = {.lex_state = 30}, + [4850] = {.lex_state = 30}, + [4851] = {.lex_state = 30}, + [4852] = {.lex_state = 1627}, + [4853] = {.lex_state = 1627}, + [4854] = {.lex_state = 1665}, + [4855] = {.lex_state = 1627}, + [4856] = {.lex_state = 249}, + [4857] = {.lex_state = 1665}, + [4858] = {.lex_state = 1627}, + [4859] = {.lex_state = 5092}, + [4860] = {.lex_state = 1665}, + [4861] = {.lex_state = 1665}, + [4862] = {.lex_state = 5092}, + [4863] = {.lex_state = 1627}, + [4864] = {.lex_state = 1627}, + [4865] = {.lex_state = 1627}, + [4866] = {.lex_state = 30}, + [4867] = {.lex_state = 1665}, + [4868] = {.lex_state = 30}, + [4869] = {.lex_state = 30}, + [4870] = {.lex_state = 1665}, + [4871] = {.lex_state = 30, .external_lex_state = 2}, + [4872] = {.lex_state = 30}, + [4873] = {.lex_state = 1627}, + [4874] = {.lex_state = 1627}, + [4875] = {.lex_state = 1627}, + [4876] = {.lex_state = 1627}, + [4877] = {.lex_state = 1627}, + [4878] = {.lex_state = 1627}, + [4879] = {.lex_state = 1627}, + [4880] = {.lex_state = 1627}, + [4881] = {.lex_state = 1762}, + [4882] = {.lex_state = 30, .external_lex_state = 2}, + [4883] = {.lex_state = 254}, + [4884] = {.lex_state = 1627}, + [4885] = {.lex_state = 1627}, + [4886] = {.lex_state = 1627}, + [4887] = {.lex_state = 1627}, + [4888] = {.lex_state = 1627}, + [4889] = {.lex_state = 1627}, + [4890] = {.lex_state = 1627}, + [4891] = {.lex_state = 1627}, + [4892] = {.lex_state = 280}, + [4893] = {.lex_state = 5092}, + [4894] = {.lex_state = 30}, + [4895] = {.lex_state = 286}, + [4896] = {.lex_state = 5092}, + [4897] = {.lex_state = 1627}, + [4898] = {.lex_state = 1627}, + [4899] = {.lex_state = 1627}, + [4900] = {.lex_state = 251}, + [4901] = {.lex_state = 1627}, + [4902] = {.lex_state = 1627}, + [4903] = {.lex_state = 1627}, + [4904] = {.lex_state = 1627}, + [4905] = {.lex_state = 1627}, + [4906] = {.lex_state = 1627}, + [4907] = {.lex_state = 1627}, + [4908] = {.lex_state = 1627}, + [4909] = {.lex_state = 1627}, + [4910] = {.lex_state = 1627}, + [4911] = {.lex_state = 246}, + [4912] = {.lex_state = 246}, + [4913] = {.lex_state = 246}, + [4914] = {.lex_state = 246}, + [4915] = {.lex_state = 1627}, + [4916] = {.lex_state = 1627}, + [4917] = {.lex_state = 1627}, + [4918] = {.lex_state = 1627}, + [4919] = {.lex_state = 1627}, + [4920] = {.lex_state = 251}, + [4921] = {.lex_state = 30, .external_lex_state = 2}, + [4922] = {.lex_state = 1627}, + [4923] = {.lex_state = 1627}, + [4924] = {.lex_state = 1627}, + [4925] = {.lex_state = 1627}, + [4926] = {.lex_state = 1627}, + [4927] = {.lex_state = 1627}, + [4928] = {.lex_state = 1627}, + [4929] = {.lex_state = 1627}, + [4930] = {.lex_state = 1627}, + [4931] = {.lex_state = 1627}, + [4932] = {.lex_state = 1627}, + [4933] = {.lex_state = 1627}, + [4934] = {.lex_state = 1627}, + [4935] = {.lex_state = 1627}, + [4936] = {.lex_state = 1627}, + [4937] = {.lex_state = 1627}, + [4938] = {.lex_state = 1627}, + [4939] = {.lex_state = 1665}, + [4940] = {.lex_state = 1627}, + [4941] = {.lex_state = 1627}, + [4942] = {.lex_state = 30}, + [4943] = {.lex_state = 30}, + [4944] = {.lex_state = 30}, + [4945] = {.lex_state = 62}, + [4946] = {.lex_state = 254}, + [4947] = {.lex_state = 1694}, + [4948] = {.lex_state = 249}, + [4949] = {.lex_state = 1694}, + [4950] = {.lex_state = 1694}, + [4951] = {.lex_state = 1694}, + [4952] = {.lex_state = 1694}, + [4953] = {.lex_state = 1694}, + [4954] = {.lex_state = 1694}, + [4955] = {.lex_state = 1694}, + [4956] = {.lex_state = 1694}, + [4957] = {.lex_state = 1694}, + [4958] = {.lex_state = 1694}, + [4959] = {.lex_state = 1694}, + [4960] = {.lex_state = 258}, + [4961] = {.lex_state = 1627}, + [4962] = {.lex_state = 1627}, + [4963] = {.lex_state = 5092}, + [4964] = {.lex_state = 256}, + [4965] = {.lex_state = 1694}, + [4966] = {.lex_state = 1627}, + [4967] = {.lex_state = 1627}, + [4968] = {.lex_state = 30}, + [4969] = {.lex_state = 281}, + [4970] = {.lex_state = 252}, + [4971] = {.lex_state = 69}, + [4972] = {.lex_state = 1660}, + [4973] = {.lex_state = 308}, + [4974] = {.lex_state = 69}, + [4975] = {.lex_state = 263}, + [4976] = {.lex_state = 30}, + [4977] = {.lex_state = 249}, + [4978] = {.lex_state = 306}, + [4979] = {.lex_state = 1627}, + [4980] = {.lex_state = 69}, + [4981] = {.lex_state = 287}, + [4982] = {.lex_state = 1729}, + [4983] = {.lex_state = 1729}, + [4984] = {.lex_state = 1629}, + [4985] = {.lex_state = 30, .external_lex_state = 2}, + [4986] = {.lex_state = 1660}, + [4987] = {.lex_state = 287}, + [4988] = {.lex_state = 1660}, + [4989] = {.lex_state = 30}, + [4990] = {.lex_state = 30}, + [4991] = {.lex_state = 30}, + [4992] = {.lex_state = 1729}, + [4993] = {.lex_state = 1729}, + [4994] = {.lex_state = 1729}, + [4995] = {.lex_state = 30}, + [4996] = {.lex_state = 292}, + [4997] = {.lex_state = 1729}, + [4998] = {.lex_state = 1729}, + [4999] = {.lex_state = 1729}, + [5000] = {.lex_state = 1729}, + [5001] = {.lex_state = 1729}, + [5002] = {.lex_state = 1729}, + [5003] = {.lex_state = 1729}, + [5004] = {.lex_state = 1729}, + [5005] = {.lex_state = 1729}, + [5006] = {.lex_state = 1729}, + [5007] = {.lex_state = 1729}, + [5008] = {.lex_state = 1729}, + [5009] = {.lex_state = 1729}, + [5010] = {.lex_state = 1729}, + [5011] = {.lex_state = 1729}, + [5012] = {.lex_state = 1729}, + [5013] = {.lex_state = 1729}, + [5014] = {.lex_state = 263}, + [5015] = {.lex_state = 69}, + [5016] = {.lex_state = 30, .external_lex_state = 2}, + [5017] = {.lex_state = 259}, + [5018] = {.lex_state = 1660}, + [5019] = {.lex_state = 30}, + [5020] = {.lex_state = 249}, + [5021] = {.lex_state = 259}, + [5022] = {.lex_state = 30, .external_lex_state = 2}, + [5023] = {.lex_state = 1694}, + [5024] = {.lex_state = 322}, + [5025] = {.lex_state = 252}, + [5026] = {.lex_state = 314}, + [5027] = {.lex_state = 1729}, + [5028] = {.lex_state = 1729}, + [5029] = {.lex_state = 4650}, + [5030] = {.lex_state = 4650}, + [5031] = {.lex_state = 4650}, + [5032] = {.lex_state = 1729}, + [5033] = {.lex_state = 1729}, + [5034] = {.lex_state = 5093}, + [5035] = {.lex_state = 4650}, + [5036] = {.lex_state = 4650}, + [5037] = {.lex_state = 288}, + [5038] = {.lex_state = 1629}, + [5039] = {.lex_state = 1629}, + [5040] = {.lex_state = 1629}, + [5041] = {.lex_state = 1729}, + [5042] = {.lex_state = 5276}, + [5043] = {.lex_state = 5276}, + [5044] = {.lex_state = 72}, + [5045] = {.lex_state = 1729}, + [5046] = {.lex_state = 1729}, + [5047] = {.lex_state = 1729}, + [5048] = {.lex_state = 1729}, + [5049] = {.lex_state = 1729}, + [5050] = {.lex_state = 1729}, + [5051] = {.lex_state = 1729}, + [5052] = {.lex_state = 1729}, + [5053] = {.lex_state = 1729}, + [5054] = {.lex_state = 1729}, + [5055] = {.lex_state = 1729}, + [5056] = {.lex_state = 1729}, + [5057] = {.lex_state = 1729}, + [5058] = {.lex_state = 1729}, + [5059] = {.lex_state = 1729}, + [5060] = {.lex_state = 293}, + [5061] = {.lex_state = 1729}, + [5062] = {.lex_state = 1729}, + [5063] = {.lex_state = 1729}, + [5064] = {.lex_state = 260}, + [5065] = {.lex_state = 62}, + [5066] = {.lex_state = 5276}, + [5067] = {.lex_state = 282}, + [5068] = {.lex_state = 5276}, + [5069] = {.lex_state = 288}, + [5070] = {.lex_state = 261}, + [5071] = {.lex_state = 30}, + [5072] = {.lex_state = 71}, + [5073] = {.lex_state = 5093}, + [5074] = {.lex_state = 261}, + [5075] = {.lex_state = 4650}, + [5076] = {.lex_state = 1729}, + [5077] = {.lex_state = 288}, + [5078] = {.lex_state = 1729}, + [5079] = {.lex_state = 4650}, + [5080] = {.lex_state = 320}, + [5081] = {.lex_state = 320}, + [5082] = {.lex_state = 320}, + [5083] = {.lex_state = 288}, + [5084] = {.lex_state = 320}, + [5085] = {.lex_state = 309}, + [5086] = {.lex_state = 309}, + [5087] = {.lex_state = 4650}, + [5088] = {.lex_state = 1729}, + [5089] = {.lex_state = 5276}, + [5090] = {.lex_state = 5276}, + [5091] = {.lex_state = 4650}, + [5092] = {.lex_state = 4650}, + [5093] = {.lex_state = 1629}, + [5094] = {.lex_state = 261}, + [5095] = {.lex_state = 4650}, + [5096] = {.lex_state = 4650}, + [5097] = {.lex_state = 4650}, + [5098] = {.lex_state = 4650}, + [5099] = {.lex_state = 4650}, + [5100] = {.lex_state = 4650}, + [5101] = {.lex_state = 4650}, + [5102] = {.lex_state = 4650}, + [5103] = {.lex_state = 4650}, + [5104] = {.lex_state = 4650}, + [5105] = {.lex_state = 4650}, + [5106] = {.lex_state = 4650}, + [5107] = {.lex_state = 4650}, + [5108] = {.lex_state = 320}, + [5109] = {.lex_state = 62}, + [5110] = {.lex_state = 261}, + [5111] = {.lex_state = 1729}, + [5112] = {.lex_state = 4650}, + [5113] = {.lex_state = 4650}, + [5114] = {.lex_state = 320}, + [5115] = {.lex_state = 1729}, + [5116] = {.lex_state = 4650}, + [5117] = {.lex_state = 30}, + [5118] = {.lex_state = 5093}, + [5119] = {.lex_state = 1729}, + [5120] = {.lex_state = 260}, + [5121] = {.lex_state = 5276}, + [5122] = {.lex_state = 1729}, + [5123] = {.lex_state = 260}, + [5124] = {.lex_state = 4650}, + [5125] = {.lex_state = 261}, + [5126] = {.lex_state = 1729}, + [5127] = {.lex_state = 323}, + [5128] = {.lex_state = 289}, + [5129] = {.lex_state = 260}, + [5130] = {.lex_state = 4650}, + [5131] = {.lex_state = 260}, + [5132] = {.lex_state = 5093}, + [5133] = {.lex_state = 288}, + [5134] = {.lex_state = 324}, + [5135] = {.lex_state = 320}, + [5136] = {.lex_state = 324}, + [5137] = {.lex_state = 4650}, + [5138] = {.lex_state = 5276}, + [5139] = {.lex_state = 5093}, + [5140] = {.lex_state = 315}, + [5141] = {.lex_state = 293}, + [5142] = {.lex_state = 294}, + [5143] = {.lex_state = 4650}, + [5144] = {.lex_state = 294}, + [5145] = {.lex_state = 1629}, + [5146] = {.lex_state = 1729}, + [5147] = {.lex_state = 1629}, + [5148] = {.lex_state = 1629}, + [5149] = {.lex_state = 1629}, + [5150] = {.lex_state = 1629}, + [5151] = {.lex_state = 290}, + [5152] = {.lex_state = 1629}, + [5153] = {.lex_state = 30, .external_lex_state = 2}, + [5154] = {.lex_state = 30, .external_lex_state = 2}, + [5155] = {.lex_state = 30}, + [5156] = {.lex_state = 307}, + [5157] = {.lex_state = 1629}, + [5158] = {.lex_state = 1629}, + [5159] = {.lex_state = 1629}, + [5160] = {.lex_state = 316}, + [5161] = {.lex_state = 307}, + [5162] = {.lex_state = 1729}, + [5163] = {.lex_state = 1729}, + [5164] = {.lex_state = 1729}, + [5165] = {.lex_state = 1729}, + [5166] = {.lex_state = 1729}, + [5167] = {.lex_state = 1732}, + [5168] = {.lex_state = 1729}, + [5169] = {.lex_state = 320}, + [5170] = {.lex_state = 1629}, + [5171] = {.lex_state = 30}, + [5172] = {.lex_state = 1665}, + [5173] = {.lex_state = 290}, + [5174] = {.lex_state = 307}, + [5175] = {.lex_state = 307}, + [5176] = {.lex_state = 1629}, + [5177] = {.lex_state = 1629}, + [5178] = {.lex_state = 320}, + [5179] = {.lex_state = 1629}, + [5180] = {.lex_state = 283}, + [5181] = {.lex_state = 318}, + [5182] = {.lex_state = 325}, + [5183] = {.lex_state = 1629}, + [5184] = {.lex_state = 1629}, + [5185] = {.lex_state = 1629}, + [5186] = {.lex_state = 1629}, + [5187] = {.lex_state = 1629}, + [5188] = {.lex_state = 1629}, + [5189] = {.lex_state = 1629}, + [5190] = {.lex_state = 30}, + [5191] = {.lex_state = 73}, + [5192] = {.lex_state = 1629}, + [5193] = {.lex_state = 1629}, + [5194] = {.lex_state = 1729}, + [5195] = {.lex_state = 1665}, + [5196] = {.lex_state = 1629}, + [5197] = {.lex_state = 1629}, + [5198] = {.lex_state = 73}, + [5199] = {.lex_state = 1629}, + [5200] = {.lex_state = 1629}, + [5201] = {.lex_state = 1629}, + [5202] = {.lex_state = 1629}, + [5203] = {.lex_state = 1629}, + [5204] = {.lex_state = 1629}, + [5205] = {.lex_state = 1629}, + [5206] = {.lex_state = 1629}, + [5207] = {.lex_state = 1629}, + [5208] = {.lex_state = 325}, + [5209] = {.lex_state = 1629}, + [5210] = {.lex_state = 1629}, + [5211] = {.lex_state = 1629}, + [5212] = {.lex_state = 1629}, + [5213] = {.lex_state = 1629}, + [5214] = {.lex_state = 1629}, + [5215] = {.lex_state = 326}, + [5216] = {.lex_state = 294}, + [5217] = {.lex_state = 1629}, + [5218] = {.lex_state = 1629}, + [5219] = {.lex_state = 1629}, + [5220] = {.lex_state = 1629}, + [5221] = {.lex_state = 1629}, + [5222] = {.lex_state = 1629}, + [5223] = {.lex_state = 30}, + [5224] = {.lex_state = 1629}, + [5225] = {.lex_state = 1629}, + [5226] = {.lex_state = 1729}, + [5227] = {.lex_state = 1629}, + [5228] = {.lex_state = 295}, + [5229] = {.lex_state = 1729}, + [5230] = {.lex_state = 1729}, + [5231] = {.lex_state = 30, .external_lex_state = 2}, + [5232] = {.lex_state = 30, .external_lex_state = 2}, + [5233] = {.lex_state = 30}, + [5234] = {.lex_state = 30, .external_lex_state = 2}, + [5235] = {.lex_state = 334}, + [5236] = {.lex_state = 30}, + [5237] = {.lex_state = 30}, + [5238] = {.lex_state = 30}, + [5239] = {.lex_state = 30}, + [5240] = {.lex_state = 30}, + [5241] = {.lex_state = 30}, + [5242] = {.lex_state = 30}, + [5243] = {.lex_state = 1629}, + [5244] = {.lex_state = 30}, + [5245] = {.lex_state = 30}, + [5246] = {.lex_state = 30}, + [5247] = {.lex_state = 30}, + [5248] = {.lex_state = 30}, + [5249] = {.lex_state = 30, .external_lex_state = 2}, + [5250] = {.lex_state = 30, .external_lex_state = 2}, + [5251] = {.lex_state = 30}, + [5252] = {.lex_state = 1729}, + [5253] = {.lex_state = 30}, + [5254] = {.lex_state = 1729}, + [5255] = {.lex_state = 326}, + [5256] = {.lex_state = 30}, + [5257] = {.lex_state = 30}, + [5258] = {.lex_state = 30}, + [5259] = {.lex_state = 326}, + [5260] = {.lex_state = 307}, + [5261] = {.lex_state = 30}, + [5262] = {.lex_state = 326}, + [5263] = {.lex_state = 1766}, + [5264] = {.lex_state = 30}, + [5265] = {.lex_state = 326}, + [5266] = {.lex_state = 30}, + [5267] = {.lex_state = 30}, + [5268] = {.lex_state = 30}, + [5269] = {.lex_state = 294}, + [5270] = {.lex_state = 294}, + [5271] = {.lex_state = 1629}, + [5272] = {.lex_state = 328}, + [5273] = {.lex_state = 1629}, + [5274] = {.lex_state = 237, .external_lex_state = 2}, + [5275] = {.lex_state = 236, .external_lex_state = 2}, + [5276] = {.lex_state = 236, .external_lex_state = 2}, + [5277] = {.lex_state = 236, .external_lex_state = 2}, + [5278] = {.lex_state = 1729}, + [5279] = {.lex_state = 236, .external_lex_state = 2}, + [5280] = {.lex_state = 236, .external_lex_state = 2}, + [5281] = {.lex_state = 1771}, + [5282] = {.lex_state = 291}, + [5283] = {.lex_state = 236, .external_lex_state = 2}, + [5284] = {.lex_state = 236, .external_lex_state = 2}, + [5285] = {.lex_state = 69}, + [5286] = {.lex_state = 237, .external_lex_state = 2}, + [5287] = {.lex_state = 1729}, + [5288] = {.lex_state = 236, .external_lex_state = 2}, + [5289] = {.lex_state = 237, .external_lex_state = 2}, + [5290] = {.lex_state = 74}, + [5291] = {.lex_state = 335}, + [5292] = {.lex_state = 291}, + [5293] = {.lex_state = 74}, + [5294] = {.lex_state = 237, .external_lex_state = 2}, + [5295] = {.lex_state = 291}, + [5296] = {.lex_state = 1729}, + [5297] = {.lex_state = 74}, + [5298] = {.lex_state = 1729}, + [5299] = {.lex_state = 236, .external_lex_state = 2}, + [5300] = {.lex_state = 237, .external_lex_state = 2}, + [5301] = {.lex_state = 296}, + [5302] = {.lex_state = 1763}, + [5303] = {.lex_state = 291}, + [5304] = {.lex_state = 236, .external_lex_state = 2}, + [5305] = {.lex_state = 237, .external_lex_state = 2}, + [5306] = {.lex_state = 236, .external_lex_state = 2}, + [5307] = {.lex_state = 236, .external_lex_state = 2}, + [5308] = {.lex_state = 74}, + [5309] = {.lex_state = 236, .external_lex_state = 2}, + [5310] = {.lex_state = 236, .external_lex_state = 2}, + [5311] = {.lex_state = 237, .external_lex_state = 2}, + [5312] = {.lex_state = 236, .external_lex_state = 2}, + [5313] = {.lex_state = 30}, + [5314] = {.lex_state = 317}, + [5315] = {.lex_state = 236, .external_lex_state = 2}, + [5316] = {.lex_state = 237, .external_lex_state = 2}, + [5317] = {.lex_state = 236, .external_lex_state = 2}, + [5318] = {.lex_state = 327}, + [5319] = {.lex_state = 1766}, + [5320] = {.lex_state = 236, .external_lex_state = 2}, + [5321] = {.lex_state = 237, .external_lex_state = 2}, + [5322] = {.lex_state = 236, .external_lex_state = 2}, + [5323] = {.lex_state = 327}, + [5324] = {.lex_state = 327}, + [5325] = {.lex_state = 236, .external_lex_state = 2}, + [5326] = {.lex_state = 237, .external_lex_state = 2}, + [5327] = {.lex_state = 320}, + [5328] = {.lex_state = 237, .external_lex_state = 2}, + [5329] = {.lex_state = 236, .external_lex_state = 2}, + [5330] = {.lex_state = 237, .external_lex_state = 2}, + [5331] = {.lex_state = 236, .external_lex_state = 2}, + [5332] = {.lex_state = 320}, + [5333] = {.lex_state = 236, .external_lex_state = 2}, + [5334] = {.lex_state = 237, .external_lex_state = 2}, + [5335] = {.lex_state = 1763}, + [5336] = {.lex_state = 1729}, + [5337] = {.lex_state = 237, .external_lex_state = 2}, + [5338] = {.lex_state = 236, .external_lex_state = 2}, + [5339] = {.lex_state = 237, .external_lex_state = 2}, + [5340] = {.lex_state = 236, .external_lex_state = 2}, + [5341] = {.lex_state = 237, .external_lex_state = 2}, + [5342] = {.lex_state = 236, .external_lex_state = 2}, + [5343] = {.lex_state = 237, .external_lex_state = 2}, + [5344] = {.lex_state = 236, .external_lex_state = 2}, + [5345] = {.lex_state = 237, .external_lex_state = 2}, + [5346] = {.lex_state = 237, .external_lex_state = 2}, + [5347] = {.lex_state = 237, .external_lex_state = 2}, + [5348] = {.lex_state = 237, .external_lex_state = 2}, + [5349] = {.lex_state = 237, .external_lex_state = 2}, + [5350] = {.lex_state = 237, .external_lex_state = 2}, + [5351] = {.lex_state = 237, .external_lex_state = 2}, + [5352] = {.lex_state = 237, .external_lex_state = 2}, + [5353] = {.lex_state = 237, .external_lex_state = 2}, + [5354] = {.lex_state = 237, .external_lex_state = 2}, + [5355] = {.lex_state = 237, .external_lex_state = 2}, + [5356] = {.lex_state = 236, .external_lex_state = 2}, + [5357] = {.lex_state = 236, .external_lex_state = 2}, + [5358] = {.lex_state = 30}, + [5359] = {.lex_state = 236, .external_lex_state = 2}, + [5360] = {.lex_state = 236, .external_lex_state = 2}, + [5361] = {.lex_state = 236, .external_lex_state = 2}, + [5362] = {.lex_state = 236, .external_lex_state = 2}, + [5363] = {.lex_state = 1764}, + [5364] = {.lex_state = 296}, + [5365] = {.lex_state = 236, .external_lex_state = 2}, + [5366] = {.lex_state = 329}, + [5367] = {.lex_state = 236, .external_lex_state = 2}, + [5368] = {.lex_state = 237, .external_lex_state = 2}, + [5369] = {.lex_state = 236, .external_lex_state = 2}, + [5370] = {.lex_state = 1729}, + [5371] = {.lex_state = 1771}, + [5372] = {.lex_state = 327}, + [5373] = {.lex_state = 1729}, + [5374] = {.lex_state = 236, .external_lex_state = 2}, + [5375] = {.lex_state = 236, .external_lex_state = 2}, + [5376] = {.lex_state = 1729}, + [5377] = {.lex_state = 236, .external_lex_state = 2}, + [5378] = {.lex_state = 236, .external_lex_state = 2}, + [5379] = {.lex_state = 236, .external_lex_state = 2}, + [5380] = {.lex_state = 236, .external_lex_state = 2}, + [5381] = {.lex_state = 236, .external_lex_state = 2}, + [5382] = {.lex_state = 1732}, + [5383] = {.lex_state = 236, .external_lex_state = 2}, + [5384] = {.lex_state = 236, .external_lex_state = 2}, + [5385] = {.lex_state = 236, .external_lex_state = 2}, + [5386] = {.lex_state = 236, .external_lex_state = 2}, + [5387] = {.lex_state = 236, .external_lex_state = 2}, + [5388] = {.lex_state = 1771}, + [5389] = {.lex_state = 236, .external_lex_state = 2}, + [5390] = {.lex_state = 236, .external_lex_state = 2}, + [5391] = {.lex_state = 236, .external_lex_state = 2}, + [5392] = {.lex_state = 236, .external_lex_state = 2}, + [5393] = {.lex_state = 236, .external_lex_state = 2}, + [5394] = {.lex_state = 237, .external_lex_state = 2}, + [5395] = {.lex_state = 1729}, + [5396] = {.lex_state = 335}, + [5397] = {.lex_state = 236, .external_lex_state = 2}, + [5398] = {.lex_state = 327}, + [5399] = {.lex_state = 1771}, + [5400] = {.lex_state = 236, .external_lex_state = 2}, + [5401] = {.lex_state = 236, .external_lex_state = 2}, + [5402] = {.lex_state = 236, .external_lex_state = 2}, + [5403] = {.lex_state = 330}, + [5404] = {.lex_state = 236, .external_lex_state = 2}, + [5405] = {.lex_state = 236, .external_lex_state = 2}, + [5406] = {.lex_state = 1771}, + [5407] = {.lex_state = 237, .external_lex_state = 2}, + [5408] = {.lex_state = 236, .external_lex_state = 2}, + [5409] = {.lex_state = 236, .external_lex_state = 2}, + [5410] = {.lex_state = 236, .external_lex_state = 2}, + [5411] = {.lex_state = 74}, + [5412] = {.lex_state = 236, .external_lex_state = 2}, + [5413] = {.lex_state = 236, .external_lex_state = 2}, + [5414] = {.lex_state = 236, .external_lex_state = 2}, + [5415] = {.lex_state = 236, .external_lex_state = 2}, + [5416] = {.lex_state = 236, .external_lex_state = 2}, + [5417] = {.lex_state = 236, .external_lex_state = 2}, + [5418] = {.lex_state = 1729}, + [5419] = {.lex_state = 330}, + [5420] = {.lex_state = 30}, + [5421] = {.lex_state = 236, .external_lex_state = 2}, + [5422] = {.lex_state = 236, .external_lex_state = 2}, + [5423] = {.lex_state = 236, .external_lex_state = 2}, + [5424] = {.lex_state = 30}, + [5425] = {.lex_state = 236, .external_lex_state = 2}, + [5426] = {.lex_state = 236, .external_lex_state = 2}, + [5427] = {.lex_state = 305}, + [5428] = {.lex_state = 331}, + [5429] = {.lex_state = 297}, + [5430] = {.lex_state = 320}, + [5431] = {.lex_state = 320}, + [5432] = {.lex_state = 1729}, + [5433] = {.lex_state = 1729}, + [5434] = {.lex_state = 1771}, + [5435] = {.lex_state = 236, .external_lex_state = 2}, + [5436] = {.lex_state = 1729}, + [5437] = {.lex_state = 236, .external_lex_state = 2}, + [5438] = {.lex_state = 1729}, + [5439] = {.lex_state = 1729}, + [5440] = {.lex_state = 336}, + [5441] = {.lex_state = 1729}, + [5442] = {.lex_state = 1729}, + [5443] = {.lex_state = 1729}, + [5444] = {.lex_state = 1771}, + [5445] = {.lex_state = 1729}, + [5446] = {.lex_state = 1729}, + [5447] = {.lex_state = 1771}, + [5448] = {.lex_state = 320}, + [5449] = {.lex_state = 320}, + [5450] = {.lex_state = 1729}, + [5451] = {.lex_state = 320}, + [5452] = {.lex_state = 320}, + [5453] = {.lex_state = 331}, + [5454] = {.lex_state = 320}, + [5455] = {.lex_state = 320}, + [5456] = {.lex_state = 1729}, + [5457] = {.lex_state = 320}, + [5458] = {.lex_state = 320}, + [5459] = {.lex_state = 1729}, + [5460] = {.lex_state = 1729}, + [5461] = {.lex_state = 320}, + [5462] = {.lex_state = 320}, + [5463] = {.lex_state = 320}, + [5464] = {.lex_state = 1694}, + [5465] = {.lex_state = 1730}, + [5466] = {.lex_state = 1729}, + [5467] = {.lex_state = 320}, + [5468] = {.lex_state = 320}, + [5469] = {.lex_state = 320}, + [5470] = {.lex_state = 320}, + [5471] = {.lex_state = 320}, + [5472] = {.lex_state = 236, .external_lex_state = 2}, + [5473] = {.lex_state = 236, .external_lex_state = 2}, + [5474] = {.lex_state = 1729}, + [5475] = {.lex_state = 297}, + [5476] = {.lex_state = 320}, + [5477] = {.lex_state = 1729}, + [5478] = {.lex_state = 69}, + [5479] = {.lex_state = 1729}, + [5480] = {.lex_state = 236, .external_lex_state = 2}, + [5481] = {.lex_state = 236, .external_lex_state = 2}, + [5482] = {.lex_state = 1729}, + [5483] = {.lex_state = 1729}, + [5484] = {.lex_state = 1729}, + [5485] = {.lex_state = 1729}, + [5486] = {.lex_state = 336}, + [5487] = {.lex_state = 1729}, + [5488] = {.lex_state = 1729}, + [5489] = {.lex_state = 1729}, + [5490] = {.lex_state = 1729}, + [5491] = {.lex_state = 1729}, + [5492] = {.lex_state = 321}, + [5493] = {.lex_state = 1729}, + [5494] = {.lex_state = 1729}, + [5495] = {.lex_state = 1729}, + [5496] = {.lex_state = 297}, + [5497] = {.lex_state = 1729}, + [5498] = {.lex_state = 1729}, + [5499] = {.lex_state = 1729}, + [5500] = {.lex_state = 297}, + [5501] = {.lex_state = 1729}, + [5502] = {.lex_state = 332}, + [5503] = {.lex_state = 305}, + [5504] = {.lex_state = 1729}, + [5505] = {.lex_state = 1729}, + [5506] = {.lex_state = 1729}, + [5507] = {.lex_state = 1729}, + [5508] = {.lex_state = 1729}, + [5509] = {.lex_state = 291}, + [5510] = {.lex_state = 1729}, + [5511] = {.lex_state = 332}, + [5512] = {.lex_state = 1729}, + [5513] = {.lex_state = 320}, + [5514] = {.lex_state = 1729}, + [5515] = {.lex_state = 1729}, + [5516] = {.lex_state = 1729}, + [5517] = {.lex_state = 69}, + [5518] = {.lex_state = 1729}, + [5519] = {.lex_state = 1729}, + [5520] = {.lex_state = 1729}, + [5521] = {.lex_state = 1729}, + [5522] = {.lex_state = 1729}, + [5523] = {.lex_state = 280}, + [5524] = {.lex_state = 1771}, + [5525] = {.lex_state = 1729}, + [5526] = {.lex_state = 1729}, + [5527] = {.lex_state = 319}, + [5528] = {.lex_state = 320}, + [5529] = {.lex_state = 336}, + [5530] = {.lex_state = 320}, + [5531] = {.lex_state = 30, .external_lex_state = 2}, + [5532] = {.lex_state = 331}, + [5533] = {.lex_state = 1771}, + [5534] = {.lex_state = 1763}, + [5535] = {.lex_state = 1764}, + [5536] = {.lex_state = 320}, + [5537] = {.lex_state = 1694}, + [5538] = {.lex_state = 291}, + [5539] = {.lex_state = 336}, + [5540] = {.lex_state = 1730}, + [5541] = {.lex_state = 297}, + [5542] = {.lex_state = 1729}, + [5543] = {.lex_state = 320}, + [5544] = {.lex_state = 320}, + [5545] = {.lex_state = 1729}, + [5546] = {.lex_state = 336}, + [5547] = {.lex_state = 236, .external_lex_state = 2}, + [5548] = {.lex_state = 1763}, + [5549] = {.lex_state = 1664}, + [5550] = {.lex_state = 320}, + [5551] = {.lex_state = 297}, + [5552] = {.lex_state = 1729}, + [5553] = {.lex_state = 1664}, + [5554] = {.lex_state = 1729}, + [5555] = {.lex_state = 336}, + [5556] = {.lex_state = 30}, + [5557] = {.lex_state = 331}, + [5558] = {.lex_state = 331}, + [5559] = {.lex_state = 320}, + [5560] = {.lex_state = 337}, + [5561] = {.lex_state = 331}, + [5562] = {.lex_state = 320}, + [5563] = {.lex_state = 333}, + [5564] = {.lex_state = 343}, + [5565] = {.lex_state = 338}, + [5566] = {.lex_state = 1694}, + [5567] = {.lex_state = 4651}, + [5568] = {.lex_state = 1696}, + [5569] = {.lex_state = 1696}, + [5570] = {.lex_state = 4651}, + [5571] = {.lex_state = 4651}, + [5572] = {.lex_state = 1696}, + [5573] = {.lex_state = 4651}, + [5574] = {.lex_state = 264}, + [5575] = {.lex_state = 367}, + [5576] = {.lex_state = 1729}, + [5577] = {.lex_state = 284}, + [5578] = {.lex_state = 336}, + [5579] = {.lex_state = 1729}, + [5580] = {.lex_state = 1729}, + [5581] = {.lex_state = 1729}, + [5582] = {.lex_state = 1729}, + [5583] = {.lex_state = 1729}, + [5584] = {.lex_state = 1696}, + [5585] = {.lex_state = 1696}, + [5586] = {.lex_state = 1729}, + [5587] = {.lex_state = 1729}, + [5588] = {.lex_state = 320}, + [5589] = {.lex_state = 69}, + [5590] = {.lex_state = 298}, + [5591] = {.lex_state = 1696}, + [5592] = {.lex_state = 264}, + [5593] = {.lex_state = 245}, + [5594] = {.lex_state = 4651}, + [5595] = {.lex_state = 4651}, + [5596] = {.lex_state = 336}, + [5597] = {.lex_state = 245}, + [5598] = {.lex_state = 1696}, + [5599] = {.lex_state = 62}, + [5600] = {.lex_state = 1696}, + [5601] = {.lex_state = 1729}, + [5602] = {.lex_state = 1696}, + [5603] = {.lex_state = 312}, + [5604] = {.lex_state = 312}, + [5605] = {.lex_state = 1729}, + [5606] = {.lex_state = 336}, + [5607] = {.lex_state = 30, .external_lex_state = 2}, + [5608] = {.lex_state = 69}, + [5609] = {.lex_state = 273}, + [5610] = {.lex_state = 245}, + [5611] = {.lex_state = 343}, + [5612] = {.lex_state = 4651}, + [5613] = {.lex_state = 4651}, + [5614] = {.lex_state = 245}, + [5615] = {.lex_state = 320}, + [5616] = {.lex_state = 1696}, + [5617] = {.lex_state = 320}, + [5618] = {.lex_state = 1729}, + [5619] = {.lex_state = 30}, + [5620] = {.lex_state = 1696}, + [5621] = {.lex_state = 1729}, + [5622] = {.lex_state = 1729}, + [5623] = {.lex_state = 1729}, + [5624] = {.lex_state = 1729}, + [5625] = {.lex_state = 1694}, + [5626] = {.lex_state = 245}, + [5627] = {.lex_state = 4651}, + [5628] = {.lex_state = 4651}, + [5629] = {.lex_state = 245}, + [5630] = {.lex_state = 320}, + [5631] = {.lex_state = 1696}, + [5632] = {.lex_state = 1696}, + [5633] = {.lex_state = 320}, + [5634] = {.lex_state = 62}, + [5635] = {.lex_state = 245}, + [5636] = {.lex_state = 4651}, + [5637] = {.lex_state = 4651}, + [5638] = {.lex_state = 266}, + [5639] = {.lex_state = 245}, + [5640] = {.lex_state = 1696}, + [5641] = {.lex_state = 1696}, + [5642] = {.lex_state = 30}, + [5643] = {.lex_state = 320}, + [5644] = {.lex_state = 1696}, + [5645] = {.lex_state = 333}, + [5646] = {.lex_state = 245}, + [5647] = {.lex_state = 4651}, + [5648] = {.lex_state = 4651}, + [5649] = {.lex_state = 245}, + [5650] = {.lex_state = 1696}, + [5651] = {.lex_state = 267}, + [5652] = {.lex_state = 1696}, + [5653] = {.lex_state = 333}, + [5654] = {.lex_state = 1696}, + [5655] = {.lex_state = 245}, + [5656] = {.lex_state = 4651}, + [5657] = {.lex_state = 4651}, + [5658] = {.lex_state = 1696}, + [5659] = {.lex_state = 245}, + [5660] = {.lex_state = 1696}, + [5661] = {.lex_state = 1696}, + [5662] = {.lex_state = 1696}, + [5663] = {.lex_state = 320}, + [5664] = {.lex_state = 301}, + [5665] = {.lex_state = 1729}, + [5666] = {.lex_state = 1696}, + [5667] = {.lex_state = 1696}, + [5668] = {.lex_state = 245}, + [5669] = {.lex_state = 4651}, + [5670] = {.lex_state = 4651}, + [5671] = {.lex_state = 245}, + [5672] = {.lex_state = 1696}, + [5673] = {.lex_state = 333}, + [5674] = {.lex_state = 333}, + [5675] = {.lex_state = 30}, + [5676] = {.lex_state = 1696}, + [5677] = {.lex_state = 245}, + [5678] = {.lex_state = 4651}, + [5679] = {.lex_state = 4651}, + [5680] = {.lex_state = 349}, + [5681] = {.lex_state = 245}, + [5682] = {.lex_state = 1696}, + [5683] = {.lex_state = 1696}, + [5684] = {.lex_state = 1696}, + [5685] = {.lex_state = 1696}, + [5686] = {.lex_state = 274}, + [5687] = {.lex_state = 245}, + [5688] = {.lex_state = 4651}, + [5689] = {.lex_state = 4651}, + [5690] = {.lex_state = 245}, + [5691] = {.lex_state = 320}, + [5692] = {.lex_state = 320}, + [5693] = {.lex_state = 340}, + [5694] = {.lex_state = 1696}, + [5695] = {.lex_state = 245}, + [5696] = {.lex_state = 1729}, + [5697] = {.lex_state = 245}, + [5698] = {.lex_state = 245}, + [5699] = {.lex_state = 1696}, + [5700] = {.lex_state = 1696}, + [5701] = {.lex_state = 333}, + [5702] = {.lex_state = 1729}, + [5703] = {.lex_state = 245}, + [5704] = {.lex_state = 245}, + [5705] = {.lex_state = 1696}, + [5706] = {.lex_state = 1696}, + [5707] = {.lex_state = 245}, + [5708] = {.lex_state = 338}, + [5709] = {.lex_state = 245}, + [5710] = {.lex_state = 1696}, + [5711] = {.lex_state = 1696}, + [5712] = {.lex_state = 1729}, + [5713] = {.lex_state = 320}, + [5714] = {.lex_state = 1696}, + [5715] = {.lex_state = 1696}, + [5716] = {.lex_state = 1696}, + [5717] = {.lex_state = 1729}, + [5718] = {.lex_state = 1696}, + [5719] = {.lex_state = 320}, + [5720] = {.lex_state = 367}, + [5721] = {.lex_state = 367}, + [5722] = {.lex_state = 1729}, + [5723] = {.lex_state = 1729}, + [5724] = {.lex_state = 245}, + [5725] = {.lex_state = 62}, + [5726] = {.lex_state = 1729}, + [5727] = {.lex_state = 1696}, + [5728] = {.lex_state = 1696}, + [5729] = {.lex_state = 320}, + [5730] = {.lex_state = 320}, + [5731] = {.lex_state = 62}, + [5732] = {.lex_state = 62}, + [5733] = {.lex_state = 62}, + [5734] = {.lex_state = 1696}, + [5735] = {.lex_state = 1729}, + [5736] = {.lex_state = 1729}, + [5737] = {.lex_state = 1729}, + [5738] = {.lex_state = 1696}, + [5739] = {.lex_state = 1696}, + [5740] = {.lex_state = 285}, + [5741] = {.lex_state = 1729}, + [5742] = {.lex_state = 1729}, + [5743] = {.lex_state = 1696}, + [5744] = {.lex_state = 1729}, + [5745] = {.lex_state = 1729}, + [5746] = {.lex_state = 1729}, + [5747] = {.lex_state = 367}, + [5748] = {.lex_state = 1729}, + [5749] = {.lex_state = 1729}, + [5750] = {.lex_state = 1696}, + [5751] = {.lex_state = 367}, + [5752] = {.lex_state = 30}, + [5753] = {.lex_state = 1696}, + [5754] = {.lex_state = 1729}, + [5755] = {.lex_state = 1729}, + [5756] = {.lex_state = 30}, + [5757] = {.lex_state = 1664}, + [5758] = {.lex_state = 1696}, + [5759] = {.lex_state = 1664}, + [5760] = {.lex_state = 1664}, + [5761] = {.lex_state = 1664}, + [5762] = {.lex_state = 305}, + [5763] = {.lex_state = 1664}, + [5764] = {.lex_state = 1696}, + [5765] = {.lex_state = 1664}, + [5766] = {.lex_state = 1696}, + [5767] = {.lex_state = 1696}, + [5768] = {.lex_state = 1729}, + [5769] = {.lex_state = 1729}, + [5770] = {.lex_state = 245}, + [5771] = {.lex_state = 1729}, + [5772] = {.lex_state = 1694}, + [5773] = {.lex_state = 1696}, + [5774] = {.lex_state = 245}, + [5775] = {.lex_state = 1729}, + [5776] = {.lex_state = 1729}, + [5777] = {.lex_state = 1729}, + [5778] = {.lex_state = 305}, + [5779] = {.lex_state = 1729}, + [5780] = {.lex_state = 1729}, + [5781] = {.lex_state = 1729}, + [5782] = {.lex_state = 245}, + [5783] = {.lex_state = 1729}, + [5784] = {.lex_state = 1730}, + [5785] = {.lex_state = 1729}, + [5786] = {.lex_state = 1729}, + [5787] = {.lex_state = 4651}, + [5788] = {.lex_state = 4651}, + [5789] = {.lex_state = 336}, + [5790] = {.lex_state = 1729}, + [5791] = {.lex_state = 1694}, + [5792] = {.lex_state = 1694}, + [5793] = {.lex_state = 320}, + [5794] = {.lex_state = 320}, + [5795] = {.lex_state = 1729}, + [5796] = {.lex_state = 1729}, + [5797] = {.lex_state = 245}, + [5798] = {.lex_state = 245}, + [5799] = {.lex_state = 1694}, + [5800] = {.lex_state = 1696}, + [5801] = {.lex_state = 1696}, + [5802] = {.lex_state = 1696}, + [5803] = {.lex_state = 312}, + [5804] = {.lex_state = 1732}, + [5805] = {.lex_state = 374}, + [5806] = {.lex_state = 30}, + [5807] = {.lex_state = 1665}, + [5808] = {.lex_state = 30}, + [5809] = {.lex_state = 312}, + [5810] = {.lex_state = 374}, + [5811] = {.lex_state = 312}, + [5812] = {.lex_state = 305}, + [5813] = {.lex_state = 312}, + [5814] = {.lex_state = 350}, + [5815] = {.lex_state = 312}, + [5816] = {.lex_state = 312}, + [5817] = {.lex_state = 312}, + [5818] = {.lex_state = 1665}, + [5819] = {.lex_state = 1696}, + [5820] = {.lex_state = 1665}, + [5821] = {.lex_state = 320}, + [5822] = {.lex_state = 374}, + [5823] = {.lex_state = 312}, + [5824] = {.lex_state = 312}, + [5825] = {.lex_state = 320}, + [5826] = {.lex_state = 1629}, + [5827] = {.lex_state = 374}, + [5828] = {.lex_state = 30}, + [5829] = {.lex_state = 320}, + [5830] = {.lex_state = 1696}, + [5831] = {.lex_state = 374}, + [5832] = {.lex_state = 320}, + [5833] = {.lex_state = 1665}, + [5834] = {.lex_state = 374}, + [5835] = {.lex_state = 312}, + [5836] = {.lex_state = 374}, + [5837] = {.lex_state = 302}, + [5838] = {.lex_state = 320}, + [5839] = {.lex_state = 374}, + [5840] = {.lex_state = 312}, + [5841] = {.lex_state = 374}, + [5842] = {.lex_state = 320}, + [5843] = {.lex_state = 312}, + [5844] = {.lex_state = 339}, + [5845] = {.lex_state = 1665}, + [5846] = {.lex_state = 1665}, + [5847] = {.lex_state = 374}, + [5848] = {.lex_state = 312}, + [5849] = {.lex_state = 374}, + [5850] = {.lex_state = 299}, + [5851] = {.lex_state = 269}, + [5852] = {.lex_state = 320}, + [5853] = {.lex_state = 320}, + [5854] = {.lex_state = 312}, + [5855] = {.lex_state = 339}, + [5856] = {.lex_state = 374}, + [5857] = {.lex_state = 312}, + [5858] = {.lex_state = 312}, + [5859] = {.lex_state = 374}, + [5860] = {.lex_state = 312}, + [5861] = {.lex_state = 30}, + [5862] = {.lex_state = 30}, + [5863] = {.lex_state = 312}, + [5864] = {.lex_state = 312}, + [5865] = {.lex_state = 30}, + [5866] = {.lex_state = 237}, + [5867] = {.lex_state = 30}, + [5868] = {.lex_state = 374}, + [5869] = {.lex_state = 30}, + [5870] = {.lex_state = 312}, + [5871] = {.lex_state = 312}, + [5872] = {.lex_state = 299}, + [5873] = {.lex_state = 1696}, + [5874] = {.lex_state = 30}, + [5875] = {.lex_state = 374}, + [5876] = {.lex_state = 312}, + [5877] = {.lex_state = 30}, + [5878] = {.lex_state = 1665}, + [5879] = {.lex_state = 30}, + [5880] = {.lex_state = 30}, + [5881] = {.lex_state = 320}, + [5882] = {.lex_state = 312}, + [5883] = {.lex_state = 320}, + [5884] = {.lex_state = 312}, + [5885] = {.lex_state = 320}, + [5886] = {.lex_state = 305}, + [5887] = {.lex_state = 351}, + [5888] = {.lex_state = 312}, + [5889] = {.lex_state = 312}, + [5890] = {.lex_state = 312}, + [5891] = {.lex_state = 302}, + [5892] = {.lex_state = 312}, + [5893] = {.lex_state = 320}, + [5894] = {.lex_state = 312}, + [5895] = {.lex_state = 374}, + [5896] = {.lex_state = 1665}, + [5897] = {.lex_state = 320}, + [5898] = {.lex_state = 320}, + [5899] = {.lex_state = 320}, + [5900] = {.lex_state = 62}, + [5901] = {.lex_state = 30}, + [5902] = {.lex_state = 374}, + [5903] = {.lex_state = 1696}, + [5904] = {.lex_state = 30}, + [5905] = {.lex_state = 312}, + [5906] = {.lex_state = 1665}, + [5907] = {.lex_state = 312}, + [5908] = {.lex_state = 312}, + [5909] = {.lex_state = 1696}, + [5910] = {.lex_state = 264}, + [5911] = {.lex_state = 312}, + [5912] = {.lex_state = 312}, + [5913] = {.lex_state = 1697}, + [5914] = {.lex_state = 320}, + [5915] = {.lex_state = 1696}, + [5916] = {.lex_state = 339}, + [5917] = {.lex_state = 1696}, + [5918] = {.lex_state = 312}, + [5919] = {.lex_state = 320}, + [5920] = {.lex_state = 1696}, + [5921] = {.lex_state = 312}, + [5922] = {.lex_state = 312}, + [5923] = {.lex_state = 312}, + [5924] = {.lex_state = 1665}, + [5925] = {.lex_state = 1665}, + [5926] = {.lex_state = 320}, + [5927] = {.lex_state = 374}, + [5928] = {.lex_state = 374}, + [5929] = {.lex_state = 30}, + [5930] = {.lex_state = 284}, + [5931] = {.lex_state = 312}, + [5932] = {.lex_state = 1665}, + [5933] = {.lex_state = 374}, + [5934] = {.lex_state = 312}, + [5935] = {.lex_state = 1694}, + [5936] = {.lex_state = 30}, + [5937] = {.lex_state = 312}, + [5938] = {.lex_state = 341}, + [5939] = {.lex_state = 1696}, + [5940] = {.lex_state = 30}, + [5941] = {.lex_state = 30}, + [5942] = {.lex_state = 274}, + [5943] = {.lex_state = 264}, + [5944] = {.lex_state = 312}, + [5945] = {.lex_state = 1665}, + [5946] = {.lex_state = 320}, + [5947] = {.lex_state = 267}, + [5948] = {.lex_state = 1665}, + [5949] = {.lex_state = 312}, + [5950] = {.lex_state = 320}, + [5951] = {.lex_state = 1665}, + [5952] = {.lex_state = 320}, + [5953] = {.lex_state = 312}, + [5954] = {.lex_state = 374}, + [5955] = {.lex_state = 30}, + [5956] = {.lex_state = 30}, + [5957] = {.lex_state = 30}, + [5958] = {.lex_state = 312}, + [5959] = {.lex_state = 30}, + [5960] = {.lex_state = 1696}, + [5961] = {.lex_state = 1732}, + [5962] = {.lex_state = 320}, + [5963] = {.lex_state = 1696}, + [5964] = {.lex_state = 374}, + [5965] = {.lex_state = 305}, + [5966] = {.lex_state = 320}, + [5967] = {.lex_state = 320}, + [5968] = {.lex_state = 351}, + [5969] = {.lex_state = 1696}, + [5970] = {.lex_state = 312}, + [5971] = {.lex_state = 1696}, + [5972] = {.lex_state = 374}, + [5973] = {.lex_state = 374}, + [5974] = {.lex_state = 305}, + [5975] = {.lex_state = 320}, + [5976] = {.lex_state = 1665}, + [5977] = {.lex_state = 312}, + [5978] = {.lex_state = 30}, + [5979] = {.lex_state = 30}, + [5980] = {.lex_state = 30}, + [5981] = {.lex_state = 339}, + [5982] = {.lex_state = 320}, + [5983] = {.lex_state = 1665}, + [5984] = {.lex_state = 30}, + [5985] = {.lex_state = 30}, + [5986] = {.lex_state = 30}, + [5987] = {.lex_state = 30}, + [5988] = {.lex_state = 1696}, + [5989] = {.lex_state = 30}, + [5990] = {.lex_state = 320}, + [5991] = {.lex_state = 320}, + [5992] = {.lex_state = 1696}, + [5993] = {.lex_state = 1696}, + [5994] = {.lex_state = 1696}, + [5995] = {.lex_state = 320}, + [5996] = {.lex_state = 312}, + [5997] = {.lex_state = 305}, + [5998] = {.lex_state = 305}, + [5999] = {.lex_state = 1696}, + [6000] = {.lex_state = 1696}, + [6001] = {.lex_state = 1696}, + [6002] = {.lex_state = 1696}, + [6003] = {.lex_state = 1696}, + [6004] = {.lex_state = 1696}, + [6005] = {.lex_state = 1696}, + [6006] = {.lex_state = 1696}, + [6007] = {.lex_state = 312}, + [6008] = {.lex_state = 312}, + [6009] = {.lex_state = 1696}, + [6010] = {.lex_state = 1696}, + [6011] = {.lex_state = 1697}, + [6012] = {.lex_state = 320}, + [6013] = {.lex_state = 374}, + [6014] = {.lex_state = 1696}, + [6015] = {.lex_state = 1696}, + [6016] = {.lex_state = 312}, + [6017] = {.lex_state = 1696}, + [6018] = {.lex_state = 1696}, + [6019] = {.lex_state = 374}, + [6020] = {.lex_state = 339}, + [6021] = {.lex_state = 1696}, + [6022] = {.lex_state = 1696}, + [6023] = {.lex_state = 1696}, + [6024] = {.lex_state = 1696}, + [6025] = {.lex_state = 1697}, + [6026] = {.lex_state = 1696}, + [6027] = {.lex_state = 1696}, + [6028] = {.lex_state = 1696}, + [6029] = {.lex_state = 1696}, + [6030] = {.lex_state = 1696}, + [6031] = {.lex_state = 1696}, + [6032] = {.lex_state = 30}, + [6033] = {.lex_state = 1696}, + [6034] = {.lex_state = 1696}, + [6035] = {.lex_state = 1696}, + [6036] = {.lex_state = 1696}, + [6037] = {.lex_state = 1696}, + [6038] = {.lex_state = 374}, + [6039] = {.lex_state = 1665}, + [6040] = {.lex_state = 271}, + [6041] = {.lex_state = 1660}, + [6042] = {.lex_state = 30}, + [6043] = {.lex_state = 30}, + [6044] = {.lex_state = 30}, + [6045] = {.lex_state = 312}, + [6046] = {.lex_state = 312}, + [6047] = {.lex_state = 30}, + [6048] = {.lex_state = 374}, + [6049] = {.lex_state = 374}, + [6050] = {.lex_state = 312}, + [6051] = {.lex_state = 1696}, + [6052] = {.lex_state = 1665}, + [6053] = {.lex_state = 1696}, + [6054] = {.lex_state = 374}, + [6055] = {.lex_state = 1696}, + [6056] = {.lex_state = 1665}, + [6057] = {.lex_state = 62}, + [6058] = {.lex_state = 1665}, + [6059] = {.lex_state = 312}, + [6060] = {.lex_state = 339}, + [6061] = {.lex_state = 374}, + [6062] = {.lex_state = 320}, + [6063] = {.lex_state = 1696}, + [6064] = {.lex_state = 320}, + [6065] = {.lex_state = 312}, + [6066] = {.lex_state = 237}, + [6067] = {.lex_state = 320}, + [6068] = {.lex_state = 320}, + [6069] = {.lex_state = 142}, + [6070] = {.lex_state = 320}, + [6071] = {.lex_state = 320}, + [6072] = {.lex_state = 1696}, + [6073] = {.lex_state = 372}, + [6074] = {.lex_state = 43}, + [6075] = {.lex_state = 356}, + [6076] = {.lex_state = 243}, + [6077] = {.lex_state = 1696}, + [6078] = {.lex_state = 142}, + [6079] = {.lex_state = 1696}, + [6080] = {.lex_state = 370}, + [6081] = {.lex_state = 243}, + [6082] = {.lex_state = 353}, + [6083] = {.lex_state = 1696}, + [6084] = {.lex_state = 30}, + [6085] = {.lex_state = 353}, + [6086] = {.lex_state = 43}, + [6087] = {.lex_state = 43}, + [6088] = {.lex_state = 352}, + [6089] = {.lex_state = 1696}, + [6090] = {.lex_state = 1696}, + [6091] = {.lex_state = 245}, + [6092] = {.lex_state = 1696}, + [6093] = {.lex_state = 352}, + [6094] = {.lex_state = 372}, + [6095] = {.lex_state = 142}, + [6096] = {.lex_state = 1696}, + [6097] = {.lex_state = 372}, + [6098] = {.lex_state = 1696}, + [6099] = {.lex_state = 1696}, + [6100] = {.lex_state = 1696}, + [6101] = {.lex_state = 1696}, + [6102] = {.lex_state = 151}, + [6103] = {.lex_state = 1696}, + [6104] = {.lex_state = 1696}, + [6105] = {.lex_state = 1696}, + [6106] = {.lex_state = 1696}, + [6107] = {.lex_state = 1696}, + [6108] = {.lex_state = 1696}, + [6109] = {.lex_state = 320}, + [6110] = {.lex_state = 1696}, + [6111] = {.lex_state = 355}, + [6112] = {.lex_state = 352}, + [6113] = {.lex_state = 237}, + [6114] = {.lex_state = 151}, + [6115] = {.lex_state = 151}, + [6116] = {.lex_state = 142}, + [6117] = {.lex_state = 142}, + [6118] = {.lex_state = 142}, + [6119] = {.lex_state = 1696}, + [6120] = {.lex_state = 365}, + [6121] = {.lex_state = 1696}, + [6122] = {.lex_state = 1696}, + [6123] = {.lex_state = 1696}, + [6124] = {.lex_state = 320}, + [6125] = {.lex_state = 237}, + [6126] = {.lex_state = 320}, + [6127] = {.lex_state = 300}, + [6128] = {.lex_state = 1696}, + [6129] = {.lex_state = 151}, + [6130] = {.lex_state = 1696}, + [6131] = {.lex_state = 151}, + [6132] = {.lex_state = 151}, + [6133] = {.lex_state = 151}, + [6134] = {.lex_state = 151}, + [6135] = {.lex_state = 142}, + [6136] = {.lex_state = 142}, + [6137] = {.lex_state = 142}, + [6138] = {.lex_state = 356}, + [6139] = {.lex_state = 1696}, + [6140] = {.lex_state = 300}, + [6141] = {.lex_state = 1696}, + [6142] = {.lex_state = 312}, + [6143] = {.lex_state = 1696}, + [6144] = {.lex_state = 1696}, + [6145] = {.lex_state = 243}, + [6146] = {.lex_state = 1696}, + [6147] = {.lex_state = 1696}, + [6148] = {.lex_state = 303}, + [6149] = {.lex_state = 151}, + [6150] = {.lex_state = 151}, + [6151] = {.lex_state = 1696}, + [6152] = {.lex_state = 142}, + [6153] = {.lex_state = 1696}, + [6154] = {.lex_state = 1696}, + [6155] = {.lex_state = 1696}, [6156] = {.lex_state = 370}, - [6157] = {.lex_state = 4765}, - [6158] = {.lex_state = 4765}, - [6159] = {.lex_state = 294}, - [6160] = {.lex_state = 1771}, - [6161] = {.lex_state = 1771}, - [6162] = {.lex_state = 1771}, - [6163] = {.lex_state = 41}, - [6164] = {.lex_state = 1771}, - [6165] = {.lex_state = 398}, - [6166] = {.lex_state = 80}, - [6167] = {.lex_state = 294}, - [6168] = {.lex_state = 1737}, - [6169] = {.lex_state = 4765}, - [6170] = {.lex_state = 4765}, - [6171] = {.lex_state = 294}, - [6172] = {.lex_state = 1737}, - [6173] = {.lex_state = 357}, - [6174] = {.lex_state = 1771}, - [6175] = {.lex_state = 14}, - [6176] = {.lex_state = 294}, - [6177] = {.lex_state = 1771}, - [6178] = {.lex_state = 1737}, - [6179] = {.lex_state = 1737}, - [6180] = {.lex_state = 294}, - [6181] = {.lex_state = 4765}, - [6182] = {.lex_state = 4765}, - [6183] = {.lex_state = 294}, - [6184] = {.lex_state = 1771}, - [6185] = {.lex_state = 1737}, - [6186] = {.lex_state = 1737}, - [6187] = {.lex_state = 1771}, - [6188] = {.lex_state = 1737}, - [6189] = {.lex_state = 1737}, - [6190] = {.lex_state = 294}, - [6191] = {.lex_state = 4765}, - [6192] = {.lex_state = 4765}, - [6193] = {.lex_state = 294}, - [6194] = {.lex_state = 1771}, - [6195] = {.lex_state = 80}, - [6196] = {.lex_state = 80}, - [6197] = {.lex_state = 80}, - [6198] = {.lex_state = 1771}, - [6199] = {.lex_state = 80}, - [6200] = {.lex_state = 80}, - [6201] = {.lex_state = 294}, - [6202] = {.lex_state = 4765}, - [6203] = {.lex_state = 4765}, - [6204] = {.lex_state = 294}, - [6205] = {.lex_state = 1771}, - [6206] = {.lex_state = 80}, - [6207] = {.lex_state = 1737}, - [6208] = {.lex_state = 80}, - [6209] = {.lex_state = 80}, - [6210] = {.lex_state = 294}, - [6211] = {.lex_state = 4765}, - [6212] = {.lex_state = 4765}, - [6213] = {.lex_state = 294}, - [6214] = {.lex_state = 1771}, - [6215] = {.lex_state = 80}, - [6216] = {.lex_state = 80}, - [6217] = {.lex_state = 1771}, - [6218] = {.lex_state = 1771}, - [6219] = {.lex_state = 1737}, - [6220] = {.lex_state = 1737}, - [6221] = {.lex_state = 80}, - [6222] = {.lex_state = 80}, - [6223] = {.lex_state = 294}, - [6224] = {.lex_state = 4765}, - [6225] = {.lex_state = 4765}, - [6226] = {.lex_state = 4765}, - [6227] = {.lex_state = 294}, - [6228] = {.lex_state = 1737}, - [6229] = {.lex_state = 1771}, - [6230] = {.lex_state = 1737}, - [6231] = {.lex_state = 1771}, - [6232] = {.lex_state = 1737}, - [6233] = {.lex_state = 1771}, - [6234] = {.lex_state = 294}, - [6235] = {.lex_state = 4765}, - [6236] = {.lex_state = 4765}, - [6237] = {.lex_state = 294}, - [6238] = {.lex_state = 1771}, - [6239] = {.lex_state = 80}, - [6240] = {.lex_state = 1771}, - [6241] = {.lex_state = 1771}, - [6242] = {.lex_state = 370}, - [6243] = {.lex_state = 1737}, - [6244] = {.lex_state = 294}, - [6245] = {.lex_state = 294}, - [6246] = {.lex_state = 1771}, - [6247] = {.lex_state = 1737}, - [6248] = {.lex_state = 1771}, - [6249] = {.lex_state = 80}, - [6250] = {.lex_state = 80}, - [6251] = {.lex_state = 294}, - [6252] = {.lex_state = 294}, - [6253] = {.lex_state = 1771}, - [6254] = {.lex_state = 80}, - [6255] = {.lex_state = 1771}, - [6256] = {.lex_state = 80}, - [6257] = {.lex_state = 294}, - [6258] = {.lex_state = 354}, - [6259] = {.lex_state = 294}, - [6260] = {.lex_state = 1771}, - [6261] = {.lex_state = 398}, - [6262] = {.lex_state = 1771}, - [6263] = {.lex_state = 370}, - [6264] = {.lex_state = 1771}, - [6265] = {.lex_state = 1771}, - [6266] = {.lex_state = 1771}, - [6267] = {.lex_state = 370}, - [6268] = {.lex_state = 1771}, - [6269] = {.lex_state = 370}, - [6270] = {.lex_state = 1771}, - [6271] = {.lex_state = 294}, - [6272] = {.lex_state = 1771}, - [6273] = {.lex_state = 14}, - [6274] = {.lex_state = 1771}, - [6275] = {.lex_state = 80}, - [6276] = {.lex_state = 1771}, - [6277] = {.lex_state = 1771}, - [6278] = {.lex_state = 370}, - [6279] = {.lex_state = 1771}, - [6280] = {.lex_state = 80}, - [6281] = {.lex_state = 1771}, - [6282] = {.lex_state = 1771}, - [6283] = {.lex_state = 361}, - [6284] = {.lex_state = 1771}, - [6285] = {.lex_state = 390}, - [6286] = {.lex_state = 80}, - [6287] = {.lex_state = 4765}, - [6288] = {.lex_state = 390}, - [6289] = {.lex_state = 1771}, - [6290] = {.lex_state = 80}, - [6291] = {.lex_state = 390}, - [6292] = {.lex_state = 390}, - [6293] = {.lex_state = 283}, - [6294] = {.lex_state = 1737}, - [6295] = {.lex_state = 4765}, - [6296] = {.lex_state = 1771}, - [6297] = {.lex_state = 1771}, - [6298] = {.lex_state = 1737}, - [6299] = {.lex_state = 4765}, - [6300] = {.lex_state = 41}, - [6301] = {.lex_state = 313}, - [6302] = {.lex_state = 313}, - [6303] = {.lex_state = 313}, - [6304] = {.lex_state = 1737}, - [6305] = {.lex_state = 403}, - [6306] = {.lex_state = 80}, - [6307] = {.lex_state = 80}, - [6308] = {.lex_state = 80}, - [6309] = {.lex_state = 283}, - [6310] = {.lex_state = 80}, - [6311] = {.lex_state = 294}, - [6312] = {.lex_state = 294}, - [6313] = {.lex_state = 4765}, - [6314] = {.lex_state = 313}, - [6315] = {.lex_state = 400}, - [6316] = {.lex_state = 1737}, - [6317] = {.lex_state = 4765}, - [6318] = {.lex_state = 80}, - [6319] = {.lex_state = 283}, - [6320] = {.lex_state = 1737}, - [6321] = {.lex_state = 1737}, - [6322] = {.lex_state = 316}, - [6323] = {.lex_state = 80}, - [6324] = {.lex_state = 313}, - [6325] = {.lex_state = 7}, - [6326] = {.lex_state = 313}, - [6327] = {.lex_state = 7}, - [6328] = {.lex_state = 7}, - [6329] = {.lex_state = 7}, - [6330] = {.lex_state = 313}, - [6331] = {.lex_state = 1737}, - [6332] = {.lex_state = 1737}, - [6333] = {.lex_state = 370}, - [6334] = {.lex_state = 1737}, - [6335] = {.lex_state = 41}, - [6336] = {.lex_state = 1771}, - [6337] = {.lex_state = 1771}, - [6338] = {.lex_state = 370}, - [6339] = {.lex_state = 396}, - [6340] = {.lex_state = 1737}, - [6341] = {.lex_state = 1737}, - [6342] = {.lex_state = 1771}, - [6343] = {.lex_state = 1737}, - [6344] = {.lex_state = 396}, - [6345] = {.lex_state = 14}, - [6346] = {.lex_state = 1771}, - [6347] = {.lex_state = 431}, - [6348] = {.lex_state = 1737}, - [6349] = {.lex_state = 431}, - [6350] = {.lex_state = 41}, - [6351] = {.lex_state = 1737}, - [6352] = {.lex_state = 1737}, - [6353] = {.lex_state = 294}, - [6354] = {.lex_state = 390}, - [6355] = {.lex_state = 1737}, - [6356] = {.lex_state = 1737}, - [6357] = {.lex_state = 1771}, - [6358] = {.lex_state = 80}, - [6359] = {.lex_state = 1771}, - [6360] = {.lex_state = 431}, - [6361] = {.lex_state = 14}, - [6362] = {.lex_state = 294}, - [6363] = {.lex_state = 14}, - [6364] = {.lex_state = 1771}, - [6365] = {.lex_state = 315}, - [6366] = {.lex_state = 1771}, - [6367] = {.lex_state = 323}, - [6368] = {.lex_state = 1771}, - [6369] = {.lex_state = 14}, - [6370] = {.lex_state = 283}, - [6371] = {.lex_state = 341}, - [6372] = {.lex_state = 1737}, - [6373] = {.lex_state = 283}, - [6374] = {.lex_state = 1737}, - [6375] = {.lex_state = 1771}, - [6376] = {.lex_state = 440}, - [6377] = {.lex_state = 368}, - [6378] = {.lex_state = 368}, - [6379] = {.lex_state = 1739}, - [6380] = {.lex_state = 1739}, - [6381] = {.lex_state = 370}, - [6382] = {.lex_state = 368}, - [6383] = {.lex_state = 370}, - [6384] = {.lex_state = 368}, - [6385] = {.lex_state = 368}, - [6386] = {.lex_state = 368}, - [6387] = {.lex_state = 368}, - [6388] = {.lex_state = 1739}, - [6389] = {.lex_state = 368}, - [6390] = {.lex_state = 1739}, - [6391] = {.lex_state = 320}, - [6392] = {.lex_state = 1739}, - [6393] = {.lex_state = 361}, - [6394] = {.lex_state = 1739}, - [6395] = {.lex_state = 340}, - [6396] = {.lex_state = 370}, - [6397] = {.lex_state = 370}, - [6398] = {.lex_state = 318}, - [6399] = {.lex_state = 1739}, - [6400] = {.lex_state = 1739}, - [6401] = {.lex_state = 399}, - [6402] = {.lex_state = 368}, - [6403] = {.lex_state = 370}, - [6404] = {.lex_state = 370}, - [6405] = {.lex_state = 368}, - [6406] = {.lex_state = 370}, - [6407] = {.lex_state = 370}, - [6408] = {.lex_state = 361}, - [6409] = {.lex_state = 368}, - [6410] = {.lex_state = 368}, - [6411] = {.lex_state = 361}, - [6412] = {.lex_state = 370}, - [6413] = {.lex_state = 370}, - [6414] = {.lex_state = 368}, - [6415] = {.lex_state = 368}, - [6416] = {.lex_state = 1771}, - [6417] = {.lex_state = 1739}, - [6418] = {.lex_state = 41}, - [6419] = {.lex_state = 41}, - [6420] = {.lex_state = 41}, - [6421] = {.lex_state = 355}, - [6422] = {.lex_state = 440}, - [6423] = {.lex_state = 1739}, - [6424] = {.lex_state = 1739}, - [6425] = {.lex_state = 41}, - [6426] = {.lex_state = 440}, - [6427] = {.lex_state = 368}, - [6428] = {.lex_state = 41}, - [6429] = {.lex_state = 41}, - [6430] = {.lex_state = 368}, - [6431] = {.lex_state = 440}, - [6432] = {.lex_state = 361}, - [6433] = {.lex_state = 1703}, - [6434] = {.lex_state = 1771}, - [6435] = {.lex_state = 1771}, - [6436] = {.lex_state = 1771}, - [6437] = {.lex_state = 440}, - [6438] = {.lex_state = 41}, - [6439] = {.lex_state = 1771}, - [6440] = {.lex_state = 125}, - [6441] = {.lex_state = 41}, - [6442] = {.lex_state = 399}, - [6443] = {.lex_state = 1772}, - [6444] = {.lex_state = 401}, - [6445] = {.lex_state = 41}, - [6446] = {.lex_state = 1739}, - [6447] = {.lex_state = 1739}, - [6448] = {.lex_state = 1739}, - [6449] = {.lex_state = 1739}, - [6450] = {.lex_state = 440}, - [6451] = {.lex_state = 1771}, - [6452] = {.lex_state = 440}, - [6453] = {.lex_state = 370}, - [6454] = {.lex_state = 370}, - [6455] = {.lex_state = 440}, - [6456] = {.lex_state = 440}, - [6457] = {.lex_state = 41}, - [6458] = {.lex_state = 1771}, - [6459] = {.lex_state = 1771}, - [6460] = {.lex_state = 370}, - [6461] = {.lex_state = 440}, - [6462] = {.lex_state = 370}, - [6463] = {.lex_state = 370}, - [6464] = {.lex_state = 440}, - [6465] = {.lex_state = 370}, - [6466] = {.lex_state = 41}, - [6467] = {.lex_state = 41}, - [6468] = {.lex_state = 41}, - [6469] = {.lex_state = 125}, - [6470] = {.lex_state = 440}, - [6471] = {.lex_state = 370}, - [6472] = {.lex_state = 370}, - [6473] = {.lex_state = 440}, - [6474] = {.lex_state = 1771}, - [6475] = {.lex_state = 368}, - [6476] = {.lex_state = 440}, - [6477] = {.lex_state = 41}, - [6478] = {.lex_state = 440}, - [6479] = {.lex_state = 41}, - [6480] = {.lex_state = 1771}, - [6481] = {.lex_state = 440}, - [6482] = {.lex_state = 368}, - [6483] = {.lex_state = 368}, - [6484] = {.lex_state = 368}, - [6485] = {.lex_state = 1771}, - [6486] = {.lex_state = 440}, - [6487] = {.lex_state = 440}, - [6488] = {.lex_state = 370}, - [6489] = {.lex_state = 368}, - [6490] = {.lex_state = 370}, - [6491] = {.lex_state = 370}, - [6492] = {.lex_state = 41}, - [6493] = {.lex_state = 440}, - [6494] = {.lex_state = 41}, - [6495] = {.lex_state = 399}, - [6496] = {.lex_state = 440}, - [6497] = {.lex_state = 440}, - [6498] = {.lex_state = 41}, - [6499] = {.lex_state = 41}, - [6500] = {.lex_state = 368}, - [6501] = {.lex_state = 41}, - [6502] = {.lex_state = 440}, - [6503] = {.lex_state = 440}, - [6504] = {.lex_state = 413}, - [6505] = {.lex_state = 368}, - [6506] = {.lex_state = 1771}, - [6507] = {.lex_state = 440}, - [6508] = {.lex_state = 41}, - [6509] = {.lex_state = 440}, - [6510] = {.lex_state = 399}, - [6511] = {.lex_state = 283}, - [6512] = {.lex_state = 1739}, - [6513] = {.lex_state = 440}, - [6514] = {.lex_state = 440}, - [6515] = {.lex_state = 368}, - [6516] = {.lex_state = 283}, - [6517] = {.lex_state = 283}, - [6518] = {.lex_state = 283}, - [6519] = {.lex_state = 368}, - [6520] = {.lex_state = 440}, - [6521] = {.lex_state = 399}, - [6522] = {.lex_state = 125}, - [6523] = {.lex_state = 440}, - [6524] = {.lex_state = 368}, - [6525] = {.lex_state = 440}, - [6526] = {.lex_state = 368}, - [6527] = {.lex_state = 440}, - [6528] = {.lex_state = 368}, - [6529] = {.lex_state = 1771}, - [6530] = {.lex_state = 370}, - [6531] = {.lex_state = 1771}, - [6532] = {.lex_state = 368}, - [6533] = {.lex_state = 125}, - [6534] = {.lex_state = 125}, - [6535] = {.lex_state = 368}, - [6536] = {.lex_state = 440}, - [6537] = {.lex_state = 1771}, - [6538] = {.lex_state = 1771}, - [6539] = {.lex_state = 1771}, - [6540] = {.lex_state = 1772}, - [6541] = {.lex_state = 440}, - [6542] = {.lex_state = 368}, - [6543] = {.lex_state = 370}, - [6544] = {.lex_state = 368}, - [6545] = {.lex_state = 41}, - [6546] = {.lex_state = 1770}, - [6547] = {.lex_state = 368}, - [6548] = {.lex_state = 283}, - [6549] = {.lex_state = 1739}, - [6550] = {.lex_state = 283}, - [6551] = {.lex_state = 1739}, - [6552] = {.lex_state = 368}, - [6553] = {.lex_state = 41}, - [6554] = {.lex_state = 1771}, - [6555] = {.lex_state = 368}, - [6556] = {.lex_state = 1807}, - [6557] = {.lex_state = 368}, - [6558] = {.lex_state = 1771}, - [6559] = {.lex_state = 368}, - [6560] = {.lex_state = 368}, - [6561] = {.lex_state = 1771}, - [6562] = {.lex_state = 368}, - [6563] = {.lex_state = 368}, - [6564] = {.lex_state = 370}, - [6565] = {.lex_state = 368}, - [6566] = {.lex_state = 1772}, - [6567] = {.lex_state = 370}, - [6568] = {.lex_state = 355}, - [6569] = {.lex_state = 1739}, - [6570] = {.lex_state = 1807}, - [6571] = {.lex_state = 368}, - [6572] = {.lex_state = 368}, - [6573] = {.lex_state = 323}, - [6574] = {.lex_state = 368}, - [6575] = {.lex_state = 399}, - [6576] = {.lex_state = 370}, - [6577] = {.lex_state = 370}, - [6578] = {.lex_state = 358}, - [6579] = {.lex_state = 41}, - [6580] = {.lex_state = 41}, - [6581] = {.lex_state = 41}, - [6582] = {.lex_state = 370}, - [6583] = {.lex_state = 41}, - [6584] = {.lex_state = 368}, - [6585] = {.lex_state = 1739}, - [6586] = {.lex_state = 313}, - [6587] = {.lex_state = 1771}, - [6588] = {.lex_state = 1771}, - [6589] = {.lex_state = 358}, - [6590] = {.lex_state = 1771}, - [6591] = {.lex_state = 1739}, - [6592] = {.lex_state = 1737}, - [6593] = {.lex_state = 361}, - [6594] = {.lex_state = 316}, - [6595] = {.lex_state = 313}, - [6596] = {.lex_state = 1737}, - [6597] = {.lex_state = 368}, - [6598] = {.lex_state = 412}, - [6599] = {.lex_state = 41}, - [6600] = {.lex_state = 41}, - [6601] = {.lex_state = 41}, - [6602] = {.lex_state = 41}, - [6603] = {.lex_state = 1771}, - [6604] = {.lex_state = 1771}, - [6605] = {.lex_state = 1771}, - [6606] = {.lex_state = 1771}, - [6607] = {.lex_state = 1771}, - [6608] = {.lex_state = 1771}, - [6609] = {.lex_state = 1771}, - [6610] = {.lex_state = 1771}, - [6611] = {.lex_state = 1771}, - [6612] = {.lex_state = 1771}, - [6613] = {.lex_state = 1771}, - [6614] = {.lex_state = 1771}, - [6615] = {.lex_state = 1771}, - [6616] = {.lex_state = 1771}, - [6617] = {.lex_state = 1771}, - [6618] = {.lex_state = 1771}, - [6619] = {.lex_state = 1771}, - [6620] = {.lex_state = 1771}, - [6621] = {.lex_state = 1771}, - [6622] = {.lex_state = 1771}, - [6623] = {.lex_state = 368}, - [6624] = {.lex_state = 1771}, - [6625] = {.lex_state = 1771}, - [6626] = {.lex_state = 1771}, - [6627] = {.lex_state = 1771}, - [6628] = {.lex_state = 1771}, - [6629] = {.lex_state = 1771}, - [6630] = {.lex_state = 1771}, - [6631] = {.lex_state = 1771}, - [6632] = {.lex_state = 1771}, - [6633] = {.lex_state = 1771}, - [6634] = {.lex_state = 1771}, - [6635] = {.lex_state = 1771}, - [6636] = {.lex_state = 370}, - [6637] = {.lex_state = 41}, - [6638] = {.lex_state = 41}, - [6639] = {.lex_state = 41}, - [6640] = {.lex_state = 1737}, - [6641] = {.lex_state = 41}, - [6642] = {.lex_state = 1737}, - [6643] = {.lex_state = 368}, - [6644] = {.lex_state = 370}, - [6645] = {.lex_state = 368}, - [6646] = {.lex_state = 368}, - [6647] = {.lex_state = 368}, - [6648] = {.lex_state = 370}, - [6649] = {.lex_state = 368}, - [6650] = {.lex_state = 370}, - [6651] = {.lex_state = 368}, - [6652] = {.lex_state = 370}, - [6653] = {.lex_state = 361}, - [6654] = {.lex_state = 368}, - [6655] = {.lex_state = 368}, - [6656] = {.lex_state = 368}, - [6657] = {.lex_state = 413}, - [6658] = {.lex_state = 370}, - [6659] = {.lex_state = 162}, - [6660] = {.lex_state = 162}, - [6661] = {.lex_state = 1771}, - [6662] = {.lex_state = 419}, - [6663] = {.lex_state = 162}, - [6664] = {.lex_state = 292}, - [6665] = {.lex_state = 294}, - [6666] = {.lex_state = 356}, - [6667] = {.lex_state = 333}, - [6668] = {.lex_state = 294}, - [6669] = {.lex_state = 1771}, - [6670] = {.lex_state = 414}, - [6671] = {.lex_state = 292}, - [6672] = {.lex_state = 419}, - [6673] = {.lex_state = 1771}, - [6674] = {.lex_state = 163}, - [6675] = {.lex_state = 361}, - [6676] = {.lex_state = 10}, - [6677] = {.lex_state = 88}, - [6678] = {.lex_state = 1771}, - [6679] = {.lex_state = 361}, - [6680] = {.lex_state = 419}, - [6681] = {.lex_state = 1771}, - [6682] = {.lex_state = 1771}, - [6683] = {.lex_state = 162}, - [6684] = {.lex_state = 162}, - [6685] = {.lex_state = 162}, - [6686] = {.lex_state = 162}, - [6687] = {.lex_state = 162}, - [6688] = {.lex_state = 162}, - [6689] = {.lex_state = 162}, - [6690] = {.lex_state = 162}, - [6691] = {.lex_state = 1771}, - [6692] = {.lex_state = 1771}, - [6693] = {.lex_state = 1771}, - [6694] = {.lex_state = 429}, - [6695] = {.lex_state = 419}, - [6696] = {.lex_state = 1771}, - [6697] = {.lex_state = 292}, - [6698] = {.lex_state = 429}, - [6699] = {.lex_state = 1771}, - [6700] = {.lex_state = 1771}, - [6701] = {.lex_state = 1771}, - [6702] = {.lex_state = 1771}, - [6703] = {.lex_state = 292}, - [6704] = {.lex_state = 435}, - [6705] = {.lex_state = 370}, - [6706] = {.lex_state = 370}, - [6707] = {.lex_state = 359}, - [6708] = {.lex_state = 370}, - [6709] = {.lex_state = 429}, - [6710] = {.lex_state = 292}, - [6711] = {.lex_state = 370}, - [6712] = {.lex_state = 1771}, - [6713] = {.lex_state = 1771}, - [6714] = {.lex_state = 370}, - [6715] = {.lex_state = 162}, - [6716] = {.lex_state = 162}, - [6717] = {.lex_state = 162}, - [6718] = {.lex_state = 162}, - [6719] = {.lex_state = 162}, - [6720] = {.lex_state = 162}, - [6721] = {.lex_state = 162}, - [6722] = {.lex_state = 162}, - [6723] = {.lex_state = 1771}, - [6724] = {.lex_state = 1771}, - [6725] = {.lex_state = 1771}, - [6726] = {.lex_state = 1771}, - [6727] = {.lex_state = 419}, - [6728] = {.lex_state = 1771}, - [6729] = {.lex_state = 292}, - [6730] = {.lex_state = 1771}, - [6731] = {.lex_state = 89}, - [6732] = {.lex_state = 1771}, - [6733] = {.lex_state = 1771}, - [6734] = {.lex_state = 292}, - [6735] = {.lex_state = 399}, - [6736] = {.lex_state = 292}, - [6737] = {.lex_state = 184}, - [6738] = {.lex_state = 414}, - [6739] = {.lex_state = 292}, - [6740] = {.lex_state = 434}, - [6741] = {.lex_state = 1771}, - [6742] = {.lex_state = 1771}, - [6743] = {.lex_state = 162}, - [6744] = {.lex_state = 162}, - [6745] = {.lex_state = 162}, - [6746] = {.lex_state = 162}, - [6747] = {.lex_state = 162}, - [6748] = {.lex_state = 162}, - [6749] = {.lex_state = 162}, - [6750] = {.lex_state = 162}, - [6751] = {.lex_state = 1771}, - [6752] = {.lex_state = 1771}, - [6753] = {.lex_state = 1771}, - [6754] = {.lex_state = 419}, - [6755] = {.lex_state = 1771}, - [6756] = {.lex_state = 292}, - [6757] = {.lex_state = 184}, - [6758] = {.lex_state = 1771}, - [6759] = {.lex_state = 1771}, - [6760] = {.lex_state = 438}, - [6761] = {.lex_state = 434}, - [6762] = {.lex_state = 292}, - [6763] = {.lex_state = 1771}, - [6764] = {.lex_state = 1771}, - [6765] = {.lex_state = 414}, - [6766] = {.lex_state = 184}, - [6767] = {.lex_state = 1771}, - [6768] = {.lex_state = 184}, - [6769] = {.lex_state = 1771}, - [6770] = {.lex_state = 1771}, - [6771] = {.lex_state = 294}, - [6772] = {.lex_state = 1771}, - [6773] = {.lex_state = 162}, - [6774] = {.lex_state = 162}, - [6775] = {.lex_state = 162}, - [6776] = {.lex_state = 162}, - [6777] = {.lex_state = 162}, - [6778] = {.lex_state = 162}, - [6779] = {.lex_state = 162}, - [6780] = {.lex_state = 162}, - [6781] = {.lex_state = 10}, - [6782] = {.lex_state = 10}, - [6783] = {.lex_state = 1771}, - [6784] = {.lex_state = 1771}, - [6785] = {.lex_state = 419}, - [6786] = {.lex_state = 1771}, - [6787] = {.lex_state = 292}, - [6788] = {.lex_state = 184}, - [6789] = {.lex_state = 10}, - [6790] = {.lex_state = 162}, - [6791] = {.lex_state = 1771}, - [6792] = {.lex_state = 1771}, - [6793] = {.lex_state = 292}, - [6794] = {.lex_state = 162}, - [6795] = {.lex_state = 368}, - [6796] = {.lex_state = 1771}, - [6797] = {.lex_state = 429}, - [6798] = {.lex_state = 1771}, - [6799] = {.lex_state = 162}, - [6800] = {.lex_state = 1771}, - [6801] = {.lex_state = 1771}, - [6802] = {.lex_state = 359}, - [6803] = {.lex_state = 1771}, - [6804] = {.lex_state = 162}, - [6805] = {.lex_state = 162}, - [6806] = {.lex_state = 162}, - [6807] = {.lex_state = 162}, - [6808] = {.lex_state = 162}, - [6809] = {.lex_state = 162}, - [6810] = {.lex_state = 162}, - [6811] = {.lex_state = 162}, - [6812] = {.lex_state = 414}, - [6813] = {.lex_state = 417}, - [6814] = {.lex_state = 1771}, - [6815] = {.lex_state = 1771}, - [6816] = {.lex_state = 419}, - [6817] = {.lex_state = 1771}, - [6818] = {.lex_state = 292}, - [6819] = {.lex_state = 162}, - [6820] = {.lex_state = 184}, - [6821] = {.lex_state = 1771}, - [6822] = {.lex_state = 292}, - [6823] = {.lex_state = 162}, - [6824] = {.lex_state = 162}, - [6825] = {.lex_state = 1771}, - [6826] = {.lex_state = 356}, - [6827] = {.lex_state = 1771}, - [6828] = {.lex_state = 162}, - [6829] = {.lex_state = 162}, - [6830] = {.lex_state = 162}, - [6831] = {.lex_state = 162}, - [6832] = {.lex_state = 162}, - [6833] = {.lex_state = 162}, - [6834] = {.lex_state = 162}, - [6835] = {.lex_state = 162}, - [6836] = {.lex_state = 162}, - [6837] = {.lex_state = 162}, - [6838] = {.lex_state = 184}, - [6839] = {.lex_state = 162}, - [6840] = {.lex_state = 1771}, - [6841] = {.lex_state = 419}, - [6842] = {.lex_state = 162}, - [6843] = {.lex_state = 292}, - [6844] = {.lex_state = 162}, - [6845] = {.lex_state = 184}, - [6846] = {.lex_state = 1771}, - [6847] = {.lex_state = 292}, - [6848] = {.lex_state = 356}, - [6849] = {.lex_state = 438}, - [6850] = {.lex_state = 184}, - [6851] = {.lex_state = 1771}, - [6852] = {.lex_state = 1771}, - [6853] = {.lex_state = 162}, - [6854] = {.lex_state = 162}, - [6855] = {.lex_state = 162}, - [6856] = {.lex_state = 162}, - [6857] = {.lex_state = 162}, - [6858] = {.lex_state = 162}, - [6859] = {.lex_state = 162}, - [6860] = {.lex_state = 162}, - [6861] = {.lex_state = 1771}, - [6862] = {.lex_state = 368}, - [6863] = {.lex_state = 419}, - [6864] = {.lex_state = 292}, - [6865] = {.lex_state = 1771}, - [6866] = {.lex_state = 1771}, - [6867] = {.lex_state = 1771}, - [6868] = {.lex_state = 292}, - [6869] = {.lex_state = 1771}, - [6870] = {.lex_state = 184}, - [6871] = {.lex_state = 1771}, - [6872] = {.lex_state = 1771}, - [6873] = {.lex_state = 1771}, - [6874] = {.lex_state = 162}, - [6875] = {.lex_state = 162}, - [6876] = {.lex_state = 162}, - [6877] = {.lex_state = 162}, - [6878] = {.lex_state = 162}, - [6879] = {.lex_state = 162}, - [6880] = {.lex_state = 162}, - [6881] = {.lex_state = 162}, - [6882] = {.lex_state = 184}, - [6883] = {.lex_state = 184}, - [6884] = {.lex_state = 419}, - [6885] = {.lex_state = 292}, - [6886] = {.lex_state = 1771}, - [6887] = {.lex_state = 292}, - [6888] = {.lex_state = 435}, - [6889] = {.lex_state = 1771}, - [6890] = {.lex_state = 414}, - [6891] = {.lex_state = 162}, - [6892] = {.lex_state = 162}, - [6893] = {.lex_state = 162}, - [6894] = {.lex_state = 162}, - [6895] = {.lex_state = 162}, - [6896] = {.lex_state = 162}, - [6897] = {.lex_state = 162}, - [6898] = {.lex_state = 162}, - [6899] = {.lex_state = 435}, - [6900] = {.lex_state = 162}, - [6901] = {.lex_state = 419}, - [6902] = {.lex_state = 292}, - [6903] = {.lex_state = 370}, - [6904] = {.lex_state = 292}, - [6905] = {.lex_state = 1771}, - [6906] = {.lex_state = 184}, - [6907] = {.lex_state = 435}, - [6908] = {.lex_state = 162}, - [6909] = {.lex_state = 162}, - [6910] = {.lex_state = 162}, - [6911] = {.lex_state = 162}, - [6912] = {.lex_state = 162}, - [6913] = {.lex_state = 162}, - [6914] = {.lex_state = 162}, - [6915] = {.lex_state = 162}, - [6916] = {.lex_state = 414}, - [6917] = {.lex_state = 419}, - [6918] = {.lex_state = 292}, - [6919] = {.lex_state = 370}, - [6920] = {.lex_state = 292}, - [6921] = {.lex_state = 1771}, - [6922] = {.lex_state = 1771}, - [6923] = {.lex_state = 429}, - [6924] = {.lex_state = 162}, - [6925] = {.lex_state = 162}, - [6926] = {.lex_state = 162}, - [6927] = {.lex_state = 162}, - [6928] = {.lex_state = 162}, - [6929] = {.lex_state = 162}, - [6930] = {.lex_state = 162}, - [6931] = {.lex_state = 162}, - [6932] = {.lex_state = 414}, - [6933] = {.lex_state = 419}, - [6934] = {.lex_state = 292}, - [6935] = {.lex_state = 370}, - [6936] = {.lex_state = 292}, - [6937] = {.lex_state = 162}, - [6938] = {.lex_state = 419}, - [6939] = {.lex_state = 292}, - [6940] = {.lex_state = 370}, - [6941] = {.lex_state = 292}, - [6942] = {.lex_state = 1771}, - [6943] = {.lex_state = 419}, - [6944] = {.lex_state = 292}, - [6945] = {.lex_state = 370}, - [6946] = {.lex_state = 292}, - [6947] = {.lex_state = 356}, - [6948] = {.lex_state = 419}, - [6949] = {.lex_state = 292}, - [6950] = {.lex_state = 292}, - [6951] = {.lex_state = 162}, - [6952] = {.lex_state = 419}, - [6953] = {.lex_state = 292}, - [6954] = {.lex_state = 292}, - [6955] = {.lex_state = 438}, - [6956] = {.lex_state = 419}, - [6957] = {.lex_state = 292}, - [6958] = {.lex_state = 292}, - [6959] = {.lex_state = 419}, - [6960] = {.lex_state = 419}, - [6961] = {.lex_state = 292}, - [6962] = {.lex_state = 292}, - [6963] = {.lex_state = 1771}, - [6964] = {.lex_state = 419}, - [6965] = {.lex_state = 292}, - [6966] = {.lex_state = 292}, - [6967] = {.lex_state = 1771}, - [6968] = {.lex_state = 419}, - [6969] = {.lex_state = 292}, - [6970] = {.lex_state = 292}, - [6971] = {.lex_state = 1771}, - [6972] = {.lex_state = 419}, - [6973] = {.lex_state = 292}, - [6974] = {.lex_state = 292}, - [6975] = {.lex_state = 292}, - [6976] = {.lex_state = 419}, - [6977] = {.lex_state = 292}, - [6978] = {.lex_state = 292}, - [6979] = {.lex_state = 162}, - [6980] = {.lex_state = 419}, - [6981] = {.lex_state = 292}, - [6982] = {.lex_state = 292}, - [6983] = {.lex_state = 1771}, - [6984] = {.lex_state = 419}, - [6985] = {.lex_state = 292}, - [6986] = {.lex_state = 292}, - [6987] = {.lex_state = 162}, - [6988] = {.lex_state = 419}, - [6989] = {.lex_state = 292}, - [6990] = {.lex_state = 292}, - [6991] = {.lex_state = 419}, - [6992] = {.lex_state = 419}, - [6993] = {.lex_state = 292}, - [6994] = {.lex_state = 292}, - [6995] = {.lex_state = 1771}, - [6996] = {.lex_state = 419}, - [6997] = {.lex_state = 292}, - [6998] = {.lex_state = 292}, - [6999] = {.lex_state = 1771}, - [7000] = {.lex_state = 419}, - [7001] = {.lex_state = 292}, - [7002] = {.lex_state = 292}, - [7003] = {.lex_state = 1771}, - [7004] = {.lex_state = 419}, - [7005] = {.lex_state = 292}, - [7006] = {.lex_state = 292}, - [7007] = {.lex_state = 1771}, - [7008] = {.lex_state = 419}, - [7009] = {.lex_state = 292}, - [7010] = {.lex_state = 292}, - [7011] = {.lex_state = 162}, - [7012] = {.lex_state = 419}, - [7013] = {.lex_state = 292}, - [7014] = {.lex_state = 292}, - [7015] = {.lex_state = 438}, - [7016] = {.lex_state = 419}, - [7017] = {.lex_state = 292}, - [7018] = {.lex_state = 292}, - [7019] = {.lex_state = 292}, - [7020] = {.lex_state = 419}, - [7021] = {.lex_state = 292}, - [7022] = {.lex_state = 292}, - [7023] = {.lex_state = 162}, - [7024] = {.lex_state = 419}, - [7025] = {.lex_state = 292}, - [7026] = {.lex_state = 162}, - [7027] = {.lex_state = 419}, - [7028] = {.lex_state = 292}, - [7029] = {.lex_state = 292}, - [7030] = {.lex_state = 419}, - [7031] = {.lex_state = 292}, - [7032] = {.lex_state = 292}, - [7033] = {.lex_state = 419}, - [7034] = {.lex_state = 292}, - [7035] = {.lex_state = 292}, - [7036] = {.lex_state = 419}, - [7037] = {.lex_state = 292}, - [7038] = {.lex_state = 292}, - [7039] = {.lex_state = 292}, - [7040] = {.lex_state = 292}, - [7041] = {.lex_state = 292}, - [7042] = {.lex_state = 292}, - [7043] = {.lex_state = 292}, - [7044] = {.lex_state = 292}, - [7045] = {.lex_state = 292}, - [7046] = {.lex_state = 419}, - [7047] = {.lex_state = 370}, - [7048] = {.lex_state = 1771}, - [7049] = {.lex_state = 162}, - [7050] = {.lex_state = 1771}, - [7051] = {.lex_state = 1771}, - [7052] = {.lex_state = 356}, - [7053] = {.lex_state = 10}, - [7054] = {.lex_state = 184}, - [7055] = {.lex_state = 316}, - [7056] = {.lex_state = 1771}, - [7057] = {.lex_state = 435}, - [7058] = {.lex_state = 162}, - [7059] = {.lex_state = 1771}, - [7060] = {.lex_state = 359}, - [7061] = {.lex_state = 184}, - [7062] = {.lex_state = 1771}, - [7063] = {.lex_state = 184}, - [7064] = {.lex_state = 1771}, - [7065] = {.lex_state = 361}, - [7066] = {.lex_state = 1771}, - [7067] = {.lex_state = 414}, - [7068] = {.lex_state = 1771}, - [7069] = {.lex_state = 292}, - [7070] = {.lex_state = 1771}, - [7071] = {.lex_state = 1771}, - [7072] = {.lex_state = 1771}, - [7073] = {.lex_state = 1771}, - [7074] = {.lex_state = 1771}, - [7075] = {.lex_state = 162}, - [7076] = {.lex_state = 1771}, - [7077] = {.lex_state = 1771}, - [7078] = {.lex_state = 1771}, - [7079] = {.lex_state = 370}, - [7080] = {.lex_state = 414}, - [7081] = {.lex_state = 1771}, - [7082] = {.lex_state = 1771}, - [7083] = {.lex_state = 1771}, - [7084] = {.lex_state = 1771}, - [7085] = {.lex_state = 292}, - [7086] = {.lex_state = 1771}, - [7087] = {.lex_state = 370}, - [7088] = {.lex_state = 1771}, - [7089] = {.lex_state = 1771}, - [7090] = {.lex_state = 359}, - [7091] = {.lex_state = 1771}, - [7092] = {.lex_state = 1771}, - [7093] = {.lex_state = 1771}, - [7094] = {.lex_state = 1771}, - [7095] = {.lex_state = 1771}, - [7096] = {.lex_state = 1771}, - [7097] = {.lex_state = 1771}, - [7098] = {.lex_state = 1771}, - [7099] = {.lex_state = 1771}, - [7100] = {.lex_state = 1771}, - [7101] = {.lex_state = 162}, - [7102] = {.lex_state = 162}, - [7103] = {.lex_state = 162}, - [7104] = {.lex_state = 370}, - [7105] = {.lex_state = 370}, - [7106] = {.lex_state = 370}, - [7107] = {.lex_state = 370}, - [7108] = {.lex_state = 370}, - [7109] = {.lex_state = 370}, - [7110] = {.lex_state = 370}, - [7111] = {.lex_state = 370}, - [7112] = {.lex_state = 162}, - [7113] = {.lex_state = 162}, - [7114] = {.lex_state = 162}, - [7115] = {.lex_state = 162}, - [7116] = {.lex_state = 162}, - [7117] = {.lex_state = 162}, - [7118] = {.lex_state = 162}, - [7119] = {.lex_state = 162}, - [7120] = {.lex_state = 162}, - [7121] = {.lex_state = 356}, - [7122] = {.lex_state = 184}, - [7123] = {.lex_state = 1771}, - [7124] = {.lex_state = 1771}, - [7125] = {.lex_state = 1771}, - [7126] = {.lex_state = 1771}, - [7127] = {.lex_state = 292}, - [7128] = {.lex_state = 419}, - [7129] = {.lex_state = 292}, - [7130] = {.lex_state = 366}, - [7131] = {.lex_state = 1771}, - [7132] = {.lex_state = 184}, - [7133] = {.lex_state = 434}, - [7134] = {.lex_state = 356}, - [7135] = {.lex_state = 359}, - [7136] = {.lex_state = 55}, - [7137] = {.lex_state = 162}, - [7138] = {.lex_state = 1771}, - [7139] = {.lex_state = 434}, - [7140] = {.lex_state = 1771}, - [7141] = {.lex_state = 283}, - [7142] = {.lex_state = 283}, - [7143] = {.lex_state = 434}, - [7144] = {.lex_state = 184}, - [7145] = {.lex_state = 1771}, - [7146] = {.lex_state = 1771}, - [7147] = {.lex_state = 292}, - [7148] = {.lex_state = 1771}, - [7149] = {.lex_state = 1771}, - [7150] = {.lex_state = 359}, - [7151] = {.lex_state = 1771}, - [7152] = {.lex_state = 1771}, - [7153] = {.lex_state = 419}, - [7154] = {.lex_state = 419}, - [7155] = {.lex_state = 1771}, - [7156] = {.lex_state = 1771}, - [7157] = {.lex_state = 1771}, - [7158] = {.lex_state = 1771}, - [7159] = {.lex_state = 162}, - [7160] = {.lex_state = 1771}, - [7161] = {.lex_state = 370}, - [7162] = {.lex_state = 1771}, - [7163] = {.lex_state = 1771}, - [7164] = {.lex_state = 1771}, - [7165] = {.lex_state = 1771}, - [7166] = {.lex_state = 1771}, - [7167] = {.lex_state = 359}, - [7168] = {.lex_state = 1771}, - [7169] = {.lex_state = 162}, - [7170] = {.lex_state = 415}, - [7171] = {.lex_state = 162}, - [7172] = {.lex_state = 370}, - [7173] = {.lex_state = 370}, - [7174] = {.lex_state = 399}, - [7175] = {.lex_state = 1771}, - [7176] = {.lex_state = 359}, - [7177] = {.lex_state = 162}, - [7178] = {.lex_state = 370}, - [7179] = {.lex_state = 162}, - [7180] = {.lex_state = 162}, - [7181] = {.lex_state = 1771}, - [7182] = {.lex_state = 162}, - [7183] = {.lex_state = 162}, - [7184] = {.lex_state = 162}, - [7185] = {.lex_state = 356}, - [7186] = {.lex_state = 162}, - [7187] = {.lex_state = 1771}, - [7188] = {.lex_state = 162}, - [7189] = {.lex_state = 162}, - [7190] = {.lex_state = 370}, - [7191] = {.lex_state = 184}, - [7192] = {.lex_state = 370}, - [7193] = {.lex_state = 162}, - [7194] = {.lex_state = 370}, - [7195] = {.lex_state = 370}, - [7196] = {.lex_state = 313}, - [7197] = {.lex_state = 370}, - [7198] = {.lex_state = 370}, - [7199] = {.lex_state = 419}, - [7200] = {.lex_state = 1771}, - [7201] = {.lex_state = 313}, - [7202] = {.lex_state = 402}, - [7203] = {.lex_state = 370}, - [7204] = {.lex_state = 370}, - [7205] = {.lex_state = 370}, - [7206] = {.lex_state = 292}, - [7207] = {.lex_state = 1771}, - [7208] = {.lex_state = 370}, - [7209] = {.lex_state = 370}, - [7210] = {.lex_state = 370}, - [7211] = {.lex_state = 1771}, - [7212] = {.lex_state = 1771}, - [7213] = {.lex_state = 370}, - [7214] = {.lex_state = 370}, - [7215] = {.lex_state = 370}, - [7216] = {.lex_state = 356}, - [7217] = {.lex_state = 1771}, - [7218] = {.lex_state = 370}, - [7219] = {.lex_state = 370}, - [7220] = {.lex_state = 370}, - [7221] = {.lex_state = 1771}, - [7222] = {.lex_state = 292}, - [7223] = {.lex_state = 370}, - [7224] = {.lex_state = 370}, - [7225] = {.lex_state = 370}, - [7226] = {.lex_state = 162}, - [7227] = {.lex_state = 162}, - [7228] = {.lex_state = 370}, - [7229] = {.lex_state = 370}, - [7230] = {.lex_state = 370}, - [7231] = {.lex_state = 1771}, - [7232] = {.lex_state = 1771}, - [7233] = {.lex_state = 370}, - [7234] = {.lex_state = 370}, - [7235] = {.lex_state = 370}, - [7236] = {.lex_state = 1771}, - [7237] = {.lex_state = 1771}, - [7238] = {.lex_state = 370}, - [7239] = {.lex_state = 370}, - [7240] = {.lex_state = 370}, - [7241] = {.lex_state = 184}, - [7242] = {.lex_state = 1771}, - [7243] = {.lex_state = 1771}, - [7244] = {.lex_state = 1771}, - [7245] = {.lex_state = 414}, - [7246] = {.lex_state = 438}, - [7247] = {.lex_state = 1771}, - [7248] = {.lex_state = 162}, - [7249] = {.lex_state = 162}, - [7250] = {.lex_state = 162}, - [7251] = {.lex_state = 162}, - [7252] = {.lex_state = 162}, - [7253] = {.lex_state = 162}, - [7254] = {.lex_state = 162}, - [7255] = {.lex_state = 162}, - [7256] = {.lex_state = 162}, - [7257] = {.lex_state = 419}, - [7258] = {.lex_state = 1771}, - [7259] = {.lex_state = 1771}, - [7260] = {.lex_state = 184}, - [7261] = {.lex_state = 184}, - [7262] = {.lex_state = 419}, - [7263] = {.lex_state = 162}, - [7264] = {.lex_state = 1771}, - [7265] = {.lex_state = 292}, - [7266] = {.lex_state = 162}, - [7267] = {.lex_state = 1771}, - [7268] = {.lex_state = 162}, - [7269] = {.lex_state = 162}, - [7270] = {.lex_state = 10}, - [7271] = {.lex_state = 1771}, - [7272] = {.lex_state = 1771}, - [7273] = {.lex_state = 1771}, - [7274] = {.lex_state = 41}, - [7275] = {.lex_state = 1771}, - [7276] = {.lex_state = 1771}, - [7277] = {.lex_state = 1771}, - [7278] = {.lex_state = 1771}, - [7279] = {.lex_state = 184}, - [7280] = {.lex_state = 1771}, - [7281] = {.lex_state = 1771}, - [7282] = {.lex_state = 415}, - [7283] = {.lex_state = 292}, - [7284] = {.lex_state = 283}, - [7285] = {.lex_state = 1771}, - [7286] = {.lex_state = 1771}, - [7287] = {.lex_state = 1771}, - [7288] = {.lex_state = 1771}, - [7289] = {.lex_state = 1771}, - [7290] = {.lex_state = 1771}, - [7291] = {.lex_state = 1771}, - [7292] = {.lex_state = 292}, - [7293] = {.lex_state = 368}, - [7294] = {.lex_state = 359}, - [7295] = {.lex_state = 162}, - [7296] = {.lex_state = 162}, - [7297] = {.lex_state = 292}, - [7298] = {.lex_state = 162}, - [7299] = {.lex_state = 162}, - [7300] = {.lex_state = 162}, - [7301] = {.lex_state = 162}, - [7302] = {.lex_state = 1771}, - [7303] = {.lex_state = 162}, - [7304] = {.lex_state = 41}, - [7305] = {.lex_state = 1771}, - [7306] = {.lex_state = 162}, - [7307] = {.lex_state = 1771}, - [7308] = {.lex_state = 10}, - [7309] = {.lex_state = 162}, - [7310] = {.lex_state = 292}, - [7311] = {.lex_state = 162}, - [7312] = {.lex_state = 257}, - [7313] = {.lex_state = 1771}, - [7314] = {.lex_state = 1739}, - [7315] = {.lex_state = 360}, - [7316] = {.lex_state = 1771}, - [7317] = {.lex_state = 162}, - [7318] = {.lex_state = 162}, - [7319] = {.lex_state = 162}, - [7320] = {.lex_state = 436}, - [7321] = {.lex_state = 433}, - [7322] = {.lex_state = 360}, - [7323] = {.lex_state = 1771}, - [7324] = {.lex_state = 162}, - [7325] = {.lex_state = 162}, - [7326] = {.lex_state = 436}, - [7327] = {.lex_state = 1771}, - [7328] = {.lex_state = 162}, - [7329] = {.lex_state = 162}, - [7330] = {.lex_state = 162}, - [7331] = {.lex_state = 1771}, - [7332] = {.lex_state = 162}, - [7333] = {.lex_state = 162}, - [7334] = {.lex_state = 162}, - [7335] = {.lex_state = 162}, - [7336] = {.lex_state = 162}, - [7337] = {.lex_state = 162}, - [7338] = {.lex_state = 162}, - [7339] = {.lex_state = 162}, - [7340] = {.lex_state = 162}, - [7341] = {.lex_state = 184}, - [7342] = {.lex_state = 1771}, - [7343] = {.lex_state = 184}, - [7344] = {.lex_state = 1771}, - [7345] = {.lex_state = 360}, - [7346] = {.lex_state = 1771}, - [7347] = {.lex_state = 433}, - [7348] = {.lex_state = 433}, - [7349] = {.lex_state = 360}, - [7350] = {.lex_state = 162}, - [7351] = {.lex_state = 1771}, - [7352] = {.lex_state = 184}, - [7353] = {.lex_state = 162}, - [7354] = {.lex_state = 162}, - [7355] = {.lex_state = 162}, - [7356] = {.lex_state = 184}, - [7357] = {.lex_state = 162}, - [7358] = {.lex_state = 162}, - [7359] = {.lex_state = 162}, - [7360] = {.lex_state = 184}, - [7361] = {.lex_state = 162}, - [7362] = {.lex_state = 439}, - [7363] = {.lex_state = 184}, - [7364] = {.lex_state = 1771}, - [7365] = {.lex_state = 184}, - [7366] = {.lex_state = 1771}, - [7367] = {.lex_state = 184}, - [7368] = {.lex_state = 1771}, - [7369] = {.lex_state = 1771}, - [7370] = {.lex_state = 1771}, - [7371] = {.lex_state = 360}, - [7372] = {.lex_state = 162}, - [7373] = {.lex_state = 1771}, - [7374] = {.lex_state = 1771}, - [7375] = {.lex_state = 1771}, - [7376] = {.lex_state = 1771}, - [7377] = {.lex_state = 1771}, - [7378] = {.lex_state = 360}, - [7379] = {.lex_state = 162}, - [7380] = {.lex_state = 162}, - [7381] = {.lex_state = 1771}, - [7382] = {.lex_state = 162}, - [7383] = {.lex_state = 162}, - [7384] = {.lex_state = 162}, - [7385] = {.lex_state = 162}, - [7386] = {.lex_state = 162}, - [7387] = {.lex_state = 162}, - [7388] = {.lex_state = 162}, - [7389] = {.lex_state = 360}, - [7390] = {.lex_state = 162}, - [7391] = {.lex_state = 1771}, - [7392] = {.lex_state = 1771}, - [7393] = {.lex_state = 1771}, - [7394] = {.lex_state = 416}, - [7395] = {.lex_state = 1771}, - [7396] = {.lex_state = 360}, - [7397] = {.lex_state = 416}, - [7398] = {.lex_state = 1771}, - [7399] = {.lex_state = 436}, - [7400] = {.lex_state = 162}, - [7401] = {.lex_state = 360}, - [7402] = {.lex_state = 1771}, - [7403] = {.lex_state = 162}, - [7404] = {.lex_state = 162}, - [7405] = {.lex_state = 162}, - [7406] = {.lex_state = 162}, - [7407] = {.lex_state = 162}, - [7408] = {.lex_state = 162}, - [7409] = {.lex_state = 162}, - [7410] = {.lex_state = 162}, - [7411] = {.lex_state = 92}, - [7412] = {.lex_state = 1771}, - [7413] = {.lex_state = 1770}, - [7414] = {.lex_state = 1749}, - [7415] = {.lex_state = 416}, - [7416] = {.lex_state = 1771}, - [7417] = {.lex_state = 162}, - [7418] = {.lex_state = 1771}, - [7419] = {.lex_state = 360}, - [7420] = {.lex_state = 162}, - [7421] = {.lex_state = 360}, - [7422] = {.lex_state = 162}, - [7423] = {.lex_state = 162}, - [7424] = {.lex_state = 162}, - [7425] = {.lex_state = 416}, - [7426] = {.lex_state = 162}, - [7427] = {.lex_state = 360}, - [7428] = {.lex_state = 416}, - [7429] = {.lex_state = 162}, - [7430] = {.lex_state = 162}, - [7431] = {.lex_state = 1771}, - [7432] = {.lex_state = 1771}, - [7433] = {.lex_state = 1771}, - [7434] = {.lex_state = 162}, - [7435] = {.lex_state = 162}, - [7436] = {.lex_state = 162}, - [7437] = {.lex_state = 1771}, - [7438] = {.lex_state = 162}, - [7439] = {.lex_state = 162}, - [7440] = {.lex_state = 162}, - [7441] = {.lex_state = 162}, - [7442] = {.lex_state = 440}, - [7443] = {.lex_state = 433}, - [7444] = {.lex_state = 422}, - [7445] = {.lex_state = 1771}, - [7446] = {.lex_state = 1771}, - [7447] = {.lex_state = 162}, - [7448] = {.lex_state = 360}, - [7449] = {.lex_state = 1771}, - [7450] = {.lex_state = 162}, - [7451] = {.lex_state = 1771}, - [7452] = {.lex_state = 360}, - [7453] = {.lex_state = 1771}, - [7454] = {.lex_state = 360}, - [7455] = {.lex_state = 1771}, - [7456] = {.lex_state = 1771}, - [7457] = {.lex_state = 162}, - [7458] = {.lex_state = 1771}, - [7459] = {.lex_state = 162}, - [7460] = {.lex_state = 162}, - [7461] = {.lex_state = 162}, - [7462] = {.lex_state = 162}, - [7463] = {.lex_state = 1771}, - [7464] = {.lex_state = 162}, - [7465] = {.lex_state = 162}, - [7466] = {.lex_state = 162}, - [7467] = {.lex_state = 162}, - [7468] = {.lex_state = 1771}, - [7469] = {.lex_state = 184}, - [7470] = {.lex_state = 162}, - [7471] = {.lex_state = 1771}, - [7472] = {.lex_state = 360}, - [7473] = {.lex_state = 1771}, - [7474] = {.lex_state = 162}, - [7475] = {.lex_state = 184}, - [7476] = {.lex_state = 360}, - [7477] = {.lex_state = 92}, - [7478] = {.lex_state = 162}, - [7479] = {.lex_state = 234}, - [7480] = {.lex_state = 1771}, - [7481] = {.lex_state = 162}, - [7482] = {.lex_state = 162}, - [7483] = {.lex_state = 162}, - [7484] = {.lex_state = 162}, - [7485] = {.lex_state = 162}, - [7486] = {.lex_state = 162}, - [7487] = {.lex_state = 1771}, - [7488] = {.lex_state = 162}, - [7489] = {.lex_state = 1771}, - [7490] = {.lex_state = 1771}, - [7491] = {.lex_state = 1770}, - [7492] = {.lex_state = 1771}, - [7493] = {.lex_state = 360}, - [7494] = {.lex_state = 360}, - [7495] = {.lex_state = 162}, - [7496] = {.lex_state = 2}, - [7497] = {.lex_state = 162}, - [7498] = {.lex_state = 360}, - [7499] = {.lex_state = 1771}, - [7500] = {.lex_state = 162}, - [7501] = {.lex_state = 432}, - [7502] = {.lex_state = 162}, - [7503] = {.lex_state = 162}, - [7504] = {.lex_state = 162}, - [7505] = {.lex_state = 162}, - [7506] = {.lex_state = 162}, - [7507] = {.lex_state = 1771}, - [7508] = {.lex_state = 162}, - [7509] = {.lex_state = 162}, - [7510] = {.lex_state = 1770}, - [7511] = {.lex_state = 162}, - [7512] = {.lex_state = 1770}, - [7513] = {.lex_state = 1770}, - [7514] = {.lex_state = 1771}, - [7515] = {.lex_state = 1771}, - [7516] = {.lex_state = 1771}, - [7517] = {.lex_state = 1771}, - [7518] = {.lex_state = 1771}, - [7519] = {.lex_state = 1771}, - [7520] = {.lex_state = 360}, - [7521] = {.lex_state = 433}, - [7522] = {.lex_state = 360}, - [7523] = {.lex_state = 162}, - [7524] = {.lex_state = 360}, - [7525] = {.lex_state = 162}, - [7526] = {.lex_state = 162}, - [7527] = {.lex_state = 162}, - [7528] = {.lex_state = 1771}, - [7529] = {.lex_state = 162}, - [7530] = {.lex_state = 162}, - [7531] = {.lex_state = 162}, - [7532] = {.lex_state = 162}, - [7533] = {.lex_state = 162}, - [7534] = {.lex_state = 14}, - [7535] = {.lex_state = 162}, - [7536] = {.lex_state = 1771}, - [7537] = {.lex_state = 162}, - [7538] = {.lex_state = 1770}, - [7539] = {.lex_state = 1770}, - [7540] = {.lex_state = 1770}, - [7541] = {.lex_state = 1771}, - [7542] = {.lex_state = 360}, - [7543] = {.lex_state = 1770}, - [7544] = {.lex_state = 1771}, - [7545] = {.lex_state = 1771}, - [7546] = {.lex_state = 360}, - [7547] = {.lex_state = 1770}, - [7548] = {.lex_state = 162}, - [7549] = {.lex_state = 162}, - [7550] = {.lex_state = 162}, - [7551] = {.lex_state = 162}, - [7552] = {.lex_state = 162}, - [7553] = {.lex_state = 184}, - [7554] = {.lex_state = 162}, - [7555] = {.lex_state = 1770}, - [7556] = {.lex_state = 162}, - [7557] = {.lex_state = 162}, - [7558] = {.lex_state = 1771}, - [7559] = {.lex_state = 162}, - [7560] = {.lex_state = 162}, - [7561] = {.lex_state = 162}, - [7562] = {.lex_state = 1772}, - [7563] = {.lex_state = 184}, - [7564] = {.lex_state = 416}, - [7565] = {.lex_state = 162}, - [7566] = {.lex_state = 162}, - [7567] = {.lex_state = 162}, - [7568] = {.lex_state = 360}, - [7569] = {.lex_state = 1771}, - [7570] = {.lex_state = 1771}, - [7571] = {.lex_state = 1771}, - [7572] = {.lex_state = 360}, - [7573] = {.lex_state = 1771}, - [7574] = {.lex_state = 162}, - [7575] = {.lex_state = 1771}, - [7576] = {.lex_state = 162}, - [7577] = {.lex_state = 162}, - [7578] = {.lex_state = 162}, - [7579] = {.lex_state = 162}, - [7580] = {.lex_state = 1771}, - [7581] = {.lex_state = 162}, - [7582] = {.lex_state = 162}, - [7583] = {.lex_state = 162}, - [7584] = {.lex_state = 430}, - [7585] = {.lex_state = 416}, - [7586] = {.lex_state = 1771}, - [7587] = {.lex_state = 162}, - [7588] = {.lex_state = 1771}, - [7589] = {.lex_state = 162}, - [7590] = {.lex_state = 162}, - [7591] = {.lex_state = 162}, - [7592] = {.lex_state = 162}, - [7593] = {.lex_state = 184}, - [7594] = {.lex_state = 1771}, - [7595] = {.lex_state = 162}, - [7596] = {.lex_state = 162}, - [7597] = {.lex_state = 162}, - [7598] = {.lex_state = 162}, - [7599] = {.lex_state = 1771}, - [7600] = {.lex_state = 162}, - [7601] = {.lex_state = 162}, - [7602] = {.lex_state = 1771}, - [7603] = {.lex_state = 162}, - [7604] = {.lex_state = 1771}, - [7605] = {.lex_state = 162}, - [7606] = {.lex_state = 162}, - [7607] = {.lex_state = 162}, - [7608] = {.lex_state = 162}, - [7609] = {.lex_state = 162}, - [7610] = {.lex_state = 1771}, - [7611] = {.lex_state = 162}, - [7612] = {.lex_state = 162}, - [7613] = {.lex_state = 1771}, - [7614] = {.lex_state = 1771}, - [7615] = {.lex_state = 162}, - [7616] = {.lex_state = 1771}, - [7617] = {.lex_state = 92}, - [7618] = {.lex_state = 1749}, - [7619] = {.lex_state = 1771}, - [7620] = {.lex_state = 162}, - [7621] = {.lex_state = 1771}, - [7622] = {.lex_state = 162}, - [7623] = {.lex_state = 162}, - [7624] = {.lex_state = 162}, - [7625] = {.lex_state = 162}, - [7626] = {.lex_state = 1771}, - [7627] = {.lex_state = 162}, - [7628] = {.lex_state = 162}, - [7629] = {.lex_state = 1771}, - [7630] = {.lex_state = 162}, - [7631] = {.lex_state = 92}, - [7632] = {.lex_state = 92}, - [7633] = {.lex_state = 162}, - [7634] = {.lex_state = 162}, - [7635] = {.lex_state = 1771}, - [7636] = {.lex_state = 416}, - [7637] = {.lex_state = 2}, - [7638] = {.lex_state = 14}, - [7639] = {.lex_state = 430}, - [7640] = {.lex_state = 162}, - [7641] = {.lex_state = 162}, - [7642] = {.lex_state = 162}, - [7643] = {.lex_state = 184}, - [7644] = {.lex_state = 184}, - [7645] = {.lex_state = 1771}, - [7646] = {.lex_state = 257}, - [7647] = {.lex_state = 162}, - [7648] = {.lex_state = 162}, - [7649] = {.lex_state = 162}, - [7650] = {.lex_state = 1771}, - [7651] = {.lex_state = 162}, - [7652] = {.lex_state = 162}, - [7653] = {.lex_state = 1771}, - [7654] = {.lex_state = 1771}, - [7655] = {.lex_state = 162}, - [7656] = {.lex_state = 360}, - [7657] = {.lex_state = 1771}, - [7658] = {.lex_state = 162}, - [7659] = {.lex_state = 292}, - [7660] = {.lex_state = 1771}, - [7661] = {.lex_state = 432}, - [7662] = {.lex_state = 440}, - [7663] = {.lex_state = 432}, - [7664] = {.lex_state = 162}, - [7665] = {.lex_state = 1771}, - [7666] = {.lex_state = 162}, - [7667] = {.lex_state = 440}, - [7668] = {.lex_state = 184}, - [7669] = {.lex_state = 1771}, - [7670] = {.lex_state = 162}, - [7671] = {.lex_state = 1771}, - [7672] = {.lex_state = 162}, - [7673] = {.lex_state = 1771}, - [7674] = {.lex_state = 162}, - [7675] = {.lex_state = 162}, - [7676] = {.lex_state = 162}, - [7677] = {.lex_state = 184}, - [7678] = {.lex_state = 1771}, - [7679] = {.lex_state = 1771}, - [7680] = {.lex_state = 1771}, - [7681] = {.lex_state = 1771}, - [7682] = {.lex_state = 1771}, - [7683] = {.lex_state = 1771}, - [7684] = {.lex_state = 416}, - [7685] = {.lex_state = 1771}, - [7686] = {.lex_state = 1771}, - [7687] = {.lex_state = 1771}, - [7688] = {.lex_state = 162}, - [7689] = {.lex_state = 1771}, - [7690] = {.lex_state = 162}, - [7691] = {.lex_state = 162}, - [7692] = {.lex_state = 1771}, - [7693] = {.lex_state = 184}, - [7694] = {.lex_state = 1771}, - [7695] = {.lex_state = 184}, - [7696] = {.lex_state = 416}, - [7697] = {.lex_state = 1771}, - [7698] = {.lex_state = 184}, - [7699] = {.lex_state = 184}, - [7700] = {.lex_state = 1771}, - [7701] = {.lex_state = 234}, - [7702] = {.lex_state = 162}, - [7703] = {.lex_state = 162}, - [7704] = {.lex_state = 409}, - [7705] = {.lex_state = 1771}, - [7706] = {.lex_state = 334}, - [7707] = {.lex_state = 1771}, - [7708] = {.lex_state = 1771}, - [7709] = {.lex_state = 162}, - [7710] = {.lex_state = 2}, - [7711] = {.lex_state = 162}, - [7712] = {.lex_state = 162}, - [7713] = {.lex_state = 184}, - [7714] = {.lex_state = 184}, - [7715] = {.lex_state = 2}, - [7716] = {.lex_state = 234}, - [7717] = {.lex_state = 184}, - [7718] = {.lex_state = 162}, - [7719] = {.lex_state = 2}, - [7720] = {.lex_state = 184}, - [7721] = {.lex_state = 184}, - [7722] = {.lex_state = 360}, - [7723] = {.lex_state = 162}, - [7724] = {.lex_state = 360}, - [7725] = {.lex_state = 162}, - [7726] = {.lex_state = 162}, - [7727] = {.lex_state = 184}, - [7728] = {.lex_state = 184}, - [7729] = {.lex_state = 234}, - [7730] = {.lex_state = 49}, - [7731] = {.lex_state = 2}, - [7732] = {.lex_state = 14}, - [7733] = {.lex_state = 1771}, - [7734] = {.lex_state = 1771}, - [7735] = {.lex_state = 162}, - [7736] = {.lex_state = 1771}, - [7737] = {.lex_state = 92}, - [7738] = {.lex_state = 1771}, - [7739] = {.lex_state = 162}, - [7740] = {.lex_state = 1771}, - [7741] = {.lex_state = 1771}, - [7742] = {.lex_state = 162}, - [7743] = {.lex_state = 1771}, - [7744] = {.lex_state = 162}, - [7745] = {.lex_state = 162}, - [7746] = {.lex_state = 1771}, - [7747] = {.lex_state = 1771}, - [7748] = {.lex_state = 162}, - [7749] = {.lex_state = 162}, - [7750] = {.lex_state = 1771}, - [7751] = {.lex_state = 162}, - [7752] = {.lex_state = 1771}, - [7753] = {.lex_state = 184}, - [7754] = {.lex_state = 1770}, - [7755] = {.lex_state = 1771}, - [7756] = {.lex_state = 1771}, - [7757] = {.lex_state = 1771}, - [7758] = {.lex_state = 1770}, - [7759] = {.lex_state = 162}, - [7760] = {.lex_state = 1771}, - [7761] = {.lex_state = 1771}, - [7762] = {.lex_state = 1771}, - [7763] = {.lex_state = 1771}, - [7764] = {.lex_state = 162}, - [7765] = {.lex_state = 92}, - [7766] = {.lex_state = 1771}, - [7767] = {.lex_state = 1771}, - [7768] = {.lex_state = 162}, - [7769] = {.lex_state = 162}, - [7770] = {.lex_state = 162}, - [7771] = {.lex_state = 162}, - [7772] = {.lex_state = 162}, - [7773] = {.lex_state = 162}, - [7774] = {.lex_state = 1771}, - [7775] = {.lex_state = 257}, - [7776] = {.lex_state = 408}, - [7777] = {.lex_state = 1771}, - [7778] = {.lex_state = 1770}, - [7779] = {.lex_state = 315}, - [7780] = {.lex_state = 1771}, - [7781] = {.lex_state = 162}, - [7782] = {.lex_state = 184}, - [7783] = {.lex_state = 257}, - [7784] = {.lex_state = 313}, - [7785] = {.lex_state = 1771}, - [7786] = {.lex_state = 162}, - [7787] = {.lex_state = 1771}, - [7788] = {.lex_state = 162}, - [7789] = {.lex_state = 184}, - [7790] = {.lex_state = 360}, - [7791] = {.lex_state = 234}, - [7792] = {.lex_state = 234}, - [7793] = {.lex_state = 1767}, - [7794] = {.lex_state = 90}, - [7795] = {.lex_state = 1771}, - [7796] = {.lex_state = 1771}, - [7797] = {.lex_state = 1771}, - [7798] = {.lex_state = 162}, - [7799] = {.lex_state = 433}, - [7800] = {.lex_state = 1771}, - [7801] = {.lex_state = 1767}, - [7802] = {.lex_state = 162}, - [7803] = {.lex_state = 436}, - [7804] = {.lex_state = 360}, - [7805] = {.lex_state = 432}, - [7806] = {.lex_state = 1771}, - [7807] = {.lex_state = 162}, - [7808] = {.lex_state = 410}, - [7809] = {.lex_state = 356}, - [7810] = {.lex_state = 422}, - [7811] = {.lex_state = 430}, - [7812] = {.lex_state = 1771}, - [7813] = {.lex_state = 162}, - [7814] = {.lex_state = 162}, - [7815] = {.lex_state = 162}, - [7816] = {.lex_state = 234}, - [7817] = {.lex_state = 162}, - [7818] = {.lex_state = 234}, - [7819] = {.lex_state = 162}, - [7820] = {.lex_state = 162}, - [7821] = {.lex_state = 1771}, - [7822] = {.lex_state = 1771}, - [7823] = {.lex_state = 1771}, - [7824] = {.lex_state = 1771}, - [7825] = {.lex_state = 162}, - [7826] = {.lex_state = 234}, - [7827] = {.lex_state = 162}, - [7828] = {.lex_state = 162}, - [7829] = {.lex_state = 234}, - [7830] = {.lex_state = 1771}, - [7831] = {.lex_state = 1771}, - [7832] = {.lex_state = 49}, - [7833] = {.lex_state = 1771}, - [7834] = {.lex_state = 1771}, - [7835] = {.lex_state = 234}, - [7836] = {.lex_state = 162}, - [7837] = {.lex_state = 234}, - [7838] = {.lex_state = 432}, - [7839] = {.lex_state = 162}, - [7840] = {.lex_state = 1771}, - [7841] = {.lex_state = 1771}, - [7842] = {.lex_state = 234}, - [7843] = {.lex_state = 1771}, - [7844] = {.lex_state = 1771}, - [7845] = {.lex_state = 234}, - [7846] = {.lex_state = 162}, - [7847] = {.lex_state = 234}, - [7848] = {.lex_state = 162}, - [7849] = {.lex_state = 1771}, - [7850] = {.lex_state = 1771}, - [7851] = {.lex_state = 162}, - [7852] = {.lex_state = 1771}, - [7853] = {.lex_state = 1771}, - [7854] = {.lex_state = 234}, - [7855] = {.lex_state = 162}, - [7856] = {.lex_state = 162}, - [7857] = {.lex_state = 234}, - [7858] = {.lex_state = 162}, - [7859] = {.lex_state = 162}, - [7860] = {.lex_state = 1771}, - [7861] = {.lex_state = 1771}, - [7862] = {.lex_state = 1771}, - [7863] = {.lex_state = 1771}, - [7864] = {.lex_state = 234}, - [7865] = {.lex_state = 1771}, - [7866] = {.lex_state = 234}, - [7867] = {.lex_state = 234}, - [7868] = {.lex_state = 1771}, - [7869] = {.lex_state = 1771}, - [7870] = {.lex_state = 1771}, - [7871] = {.lex_state = 1771}, - [7872] = {.lex_state = 234}, - [7873] = {.lex_state = 162}, - [7874] = {.lex_state = 234}, - [7875] = {.lex_state = 1771}, - [7876] = {.lex_state = 1771}, - [7877] = {.lex_state = 162}, - [7878] = {.lex_state = 1771}, - [7879] = {.lex_state = 1771}, - [7880] = {.lex_state = 234}, - [7881] = {.lex_state = 162}, - [7882] = {.lex_state = 234}, - [7883] = {.lex_state = 436}, - [7884] = {.lex_state = 1771}, - [7885] = {.lex_state = 1771}, - [7886] = {.lex_state = 162}, - [7887] = {.lex_state = 1771}, - [7888] = {.lex_state = 1771}, - [7889] = {.lex_state = 234}, - [7890] = {.lex_state = 162}, - [7891] = {.lex_state = 234}, - [7892] = {.lex_state = 1771}, - [7893] = {.lex_state = 1771}, - [7894] = {.lex_state = 1771}, - [7895] = {.lex_state = 1771}, - [7896] = {.lex_state = 162}, - [7897] = {.lex_state = 1771}, - [7898] = {.lex_state = 1771}, - [7899] = {.lex_state = 234}, - [7900] = {.lex_state = 1771}, - [7901] = {.lex_state = 1771}, - [7902] = {.lex_state = 234}, - [7903] = {.lex_state = 1771}, - [7904] = {.lex_state = 1771}, - [7905] = {.lex_state = 1771}, - [7906] = {.lex_state = 1771}, - [7907] = {.lex_state = 1771}, - [7908] = {.lex_state = 1771}, - [7909] = {.lex_state = 1771}, - [7910] = {.lex_state = 234}, - [7911] = {.lex_state = 1771}, - [7912] = {.lex_state = 234}, - [7913] = {.lex_state = 1771}, - [7914] = {.lex_state = 1771}, - [7915] = {.lex_state = 1771}, - [7916] = {.lex_state = 1771}, - [7917] = {.lex_state = 234}, - [7918] = {.lex_state = 234}, - [7919] = {.lex_state = 1771}, - [7920] = {.lex_state = 1771}, - [7921] = {.lex_state = 162}, - [7922] = {.lex_state = 1771}, - [7923] = {.lex_state = 1771}, - [7924] = {.lex_state = 234}, - [7925] = {.lex_state = 234}, - [7926] = {.lex_state = 1771}, - [7927] = {.lex_state = 1771}, - [7928] = {.lex_state = 1771}, - [7929] = {.lex_state = 1771}, - [7930] = {.lex_state = 234}, - [7931] = {.lex_state = 234}, - [7932] = {.lex_state = 1771}, - [7933] = {.lex_state = 1771}, - [7934] = {.lex_state = 1771}, - [7935] = {.lex_state = 1771}, - [7936] = {.lex_state = 1771}, - [7937] = {.lex_state = 234}, - [7938] = {.lex_state = 234}, - [7939] = {.lex_state = 1771}, - [7940] = {.lex_state = 1771}, - [7941] = {.lex_state = 1771}, - [7942] = {.lex_state = 1771}, - [7943] = {.lex_state = 234}, - [7944] = {.lex_state = 234}, - [7945] = {.lex_state = 1771}, - [7946] = {.lex_state = 1771}, - [7947] = {.lex_state = 1771}, - [7948] = {.lex_state = 1771}, - [7949] = {.lex_state = 359}, - [7950] = {.lex_state = 162}, - [7951] = {.lex_state = 360}, - [7952] = {.lex_state = 1771}, - [7953] = {.lex_state = 1771}, - [7954] = {.lex_state = 439}, - [7955] = {.lex_state = 162}, - [7956] = {.lex_state = 1771}, - [7957] = {.lex_state = 162}, - [7958] = {.lex_state = 433}, - [7959] = {.lex_state = 162}, - [7960] = {.lex_state = 360}, - [7961] = {.lex_state = 313}, - [7962] = {.lex_state = 370}, - [7963] = {.lex_state = 162}, - [7964] = {.lex_state = 162}, - [7965] = {.lex_state = 1771}, - [7966] = {.lex_state = 162}, - [7967] = {.lex_state = 162}, - [7968] = {.lex_state = 162}, - [7969] = {.lex_state = 162}, - [7970] = {.lex_state = 162}, - [7971] = {.lex_state = 430}, - [7972] = {.lex_state = 162}, - [7973] = {.lex_state = 1771}, - [7974] = {.lex_state = 162}, - [7975] = {.lex_state = 162}, - [7976] = {.lex_state = 162}, - [7977] = {.lex_state = 1771}, - [7978] = {.lex_state = 1771}, - [7979] = {.lex_state = 1771}, - [7980] = {.lex_state = 5580}, - [7981] = {.lex_state = 5580}, - [7982] = {.lex_state = 5584}, - [7983] = {.lex_state = 5584}, - [7984] = {.lex_state = 162}, - [7985] = {.lex_state = 1771}, - [7986] = {.lex_state = 1771}, - [7987] = {.lex_state = 1771}, - [7988] = {.lex_state = 1771}, - [7989] = {.lex_state = 437}, - [7990] = {.lex_state = 423}, - [7991] = {.lex_state = 418}, - [7992] = {.lex_state = 1771}, - [7993] = {.lex_state = 162}, - [7994] = {.lex_state = 160}, - [7995] = {.lex_state = 1771}, - [7996] = {.lex_state = 1749}, - [7997] = {.lex_state = 1771}, - [7998] = {.lex_state = 1771}, - [7999] = {.lex_state = 1771}, - [8000] = {.lex_state = 1771}, - [8001] = {.lex_state = 1771}, - [8002] = {.lex_state = 162}, - [8003] = {.lex_state = 1771}, - [8004] = {.lex_state = 160}, - [8005] = {.lex_state = 1771}, - [8006] = {.lex_state = 1771}, - [8007] = {.lex_state = 1771}, - [8008] = {.lex_state = 439}, - [8009] = {.lex_state = 162}, - [8010] = {.lex_state = 437}, - [8011] = {.lex_state = 5584}, - [8012] = {.lex_state = 5584}, - [8013] = {.lex_state = 1771}, - [8014] = {.lex_state = 1771}, - [8015] = {.lex_state = 160}, - [8016] = {.lex_state = 162}, - [8017] = {.lex_state = 5584}, - [8018] = {.lex_state = 423}, - [8019] = {.lex_state = 1771}, - [8020] = {.lex_state = 162}, - [8021] = {.lex_state = 423}, - [8022] = {.lex_state = 162}, - [8023] = {.lex_state = 1772}, - [8024] = {.lex_state = 423}, - [8025] = {.lex_state = 1771}, - [8026] = {.lex_state = 437}, - [8027] = {.lex_state = 423}, - [8028] = {.lex_state = 1771}, - [8029] = {.lex_state = 1771}, - [8030] = {.lex_state = 1807}, - [8031] = {.lex_state = 1771}, - [8032] = {.lex_state = 162}, - [8033] = {.lex_state = 1771}, - [8034] = {.lex_state = 1771}, - [8035] = {.lex_state = 1771}, - [8036] = {.lex_state = 433}, - [8037] = {.lex_state = 1771}, - [8038] = {.lex_state = 1771}, - [8039] = {.lex_state = 5580}, - [8040] = {.lex_state = 5580}, - [8041] = {.lex_state = 41}, - [8042] = {.lex_state = 14}, - [8043] = {.lex_state = 5582}, - [8044] = {.lex_state = 1771}, - [8045] = {.lex_state = 1772}, - [8046] = {.lex_state = 1771}, - [8047] = {.lex_state = 5584}, - [8048] = {.lex_state = 5584}, - [8049] = {.lex_state = 1771}, - [8050] = {.lex_state = 1771}, - [8051] = {.lex_state = 433}, - [8052] = {.lex_state = 160}, - [8053] = {.lex_state = 162}, - [8054] = {.lex_state = 423}, - [8055] = {.lex_state = 162}, - [8056] = {.lex_state = 162}, - [8057] = {.lex_state = 160}, - [8058] = {.lex_state = 1771}, - [8059] = {.lex_state = 1771}, - [8060] = {.lex_state = 423}, - [8061] = {.lex_state = 437}, - [8062] = {.lex_state = 5580}, - [8063] = {.lex_state = 437}, - [8064] = {.lex_state = 433}, - [8065] = {.lex_state = 5582}, - [8066] = {.lex_state = 1771}, - [8067] = {.lex_state = 1771}, - [8068] = {.lex_state = 14}, - [8069] = {.lex_state = 162}, - [8070] = {.lex_state = 162}, - [8071] = {.lex_state = 5580}, - [8072] = {.lex_state = 1771}, - [8073] = {.lex_state = 162}, - [8074] = {.lex_state = 162}, - [8075] = {.lex_state = 162}, - [8076] = {.lex_state = 1771}, - [8077] = {.lex_state = 4200}, - [8078] = {.lex_state = 162}, - [8079] = {.lex_state = 162}, - [8080] = {.lex_state = 162}, - [8081] = {.lex_state = 162}, - [8082] = {.lex_state = 5580}, - [8083] = {.lex_state = 1771}, - [8084] = {.lex_state = 162}, - [8085] = {.lex_state = 160}, - [8086] = {.lex_state = 162}, - [8087] = {.lex_state = 1707}, - [8088] = {.lex_state = 1767}, - [8089] = {.lex_state = 162}, - [8090] = {.lex_state = 1771}, - [8091] = {.lex_state = 160}, - [8092] = {.lex_state = 1771}, - [8093] = {.lex_state = 1771}, - [8094] = {.lex_state = 160}, - [8095] = {.lex_state = 1771}, - [8096] = {.lex_state = 162}, - [8097] = {.lex_state = 423}, - [8098] = {.lex_state = 1771}, - [8099] = {.lex_state = 1771}, - [8100] = {.lex_state = 1771}, - [8101] = {.lex_state = 162}, - [8102] = {.lex_state = 5580}, - [8103] = {.lex_state = 5580}, - [8104] = {.lex_state = 1771}, - [8105] = {.lex_state = 47}, - [8106] = {.lex_state = 1771}, - [8107] = {.lex_state = 1771}, - [8108] = {.lex_state = 1771}, - [8109] = {.lex_state = 1771}, - [8110] = {.lex_state = 160}, - [8111] = {.lex_state = 5580}, - [8112] = {.lex_state = 5584}, - [8113] = {.lex_state = 5584}, - [8114] = {.lex_state = 423}, - [8115] = {.lex_state = 1807}, - [8116] = {.lex_state = 1771}, - [8117] = {.lex_state = 1771}, - [8118] = {.lex_state = 1771}, - [8119] = {.lex_state = 160}, - [8120] = {.lex_state = 160}, - [8121] = {.lex_state = 5584}, - [8122] = {.lex_state = 1771}, - [8123] = {.lex_state = 5584}, - [8124] = {.lex_state = 1771}, - [8125] = {.lex_state = 1771}, - [8126] = {.lex_state = 1771}, - [8127] = {.lex_state = 162}, - [8128] = {.lex_state = 5580}, - [8129] = {.lex_state = 14}, - [8130] = {.lex_state = 160}, - [8131] = {.lex_state = 1771}, - [8132] = {.lex_state = 162}, - [8133] = {.lex_state = 1772}, - [8134] = {.lex_state = 160}, - [8135] = {.lex_state = 162}, - [8136] = {.lex_state = 1771}, - [8137] = {.lex_state = 1771}, - [8138] = {.lex_state = 162}, - [8139] = {.lex_state = 160}, - [8140] = {.lex_state = 5580}, - [8141] = {.lex_state = 5584}, - [8142] = {.lex_state = 5584}, - [8143] = {.lex_state = 5584}, - [8144] = {.lex_state = 1771}, - [8145] = {.lex_state = 5580}, - [8146] = {.lex_state = 5582}, - [8147] = {.lex_state = 1771}, - [8148] = {.lex_state = 5580}, - [8149] = {.lex_state = 5580}, - [8150] = {.lex_state = 5580}, - [8151] = {.lex_state = 5580}, - [8152] = {.lex_state = 5580}, - [8153] = {.lex_state = 5580}, - [8154] = {.lex_state = 1771}, - [8155] = {.lex_state = 1771}, - [8156] = {.lex_state = 1771}, - [8157] = {.lex_state = 1772}, - [8158] = {.lex_state = 162}, - [8159] = {.lex_state = 5580}, - [8160] = {.lex_state = 5580}, - [8161] = {.lex_state = 1771}, - [8162] = {.lex_state = 1771}, - [8163] = {.lex_state = 360}, - [8164] = {.lex_state = 1771}, - [8165] = {.lex_state = 1771}, - [8166] = {.lex_state = 1771}, - [8167] = {.lex_state = 5582}, - [8168] = {.lex_state = 433}, - [8169] = {.lex_state = 1771}, - [8170] = {.lex_state = 1771}, - [8171] = {.lex_state = 47}, - [8172] = {.lex_state = 162}, - [8173] = {.lex_state = 5582}, - [8174] = {.lex_state = 162}, - [8175] = {.lex_state = 1771}, - [8176] = {.lex_state = 1771}, - [8177] = {.lex_state = 1771}, - [8178] = {.lex_state = 1771}, - [8179] = {.lex_state = 162}, - [8180] = {.lex_state = 1771}, - [8181] = {.lex_state = 162}, - [8182] = {.lex_state = 423}, - [8183] = {.lex_state = 1771}, - [8184] = {.lex_state = 5580}, - [8185] = {.lex_state = 5580}, - [8186] = {.lex_state = 1771}, - [8187] = {.lex_state = 1771}, - [8188] = {.lex_state = 1771}, - [8189] = {.lex_state = 433}, - [8190] = {.lex_state = 433}, - [8191] = {.lex_state = 1771}, - [8192] = {.lex_state = 5580}, - [8193] = {.lex_state = 1771}, - [8194] = {.lex_state = 5584}, - [8195] = {.lex_state = 1771}, - [8196] = {.lex_state = 5584}, - [8197] = {.lex_state = 1771}, - [8198] = {.lex_state = 1771}, - [8199] = {.lex_state = 162}, - [8200] = {.lex_state = 184}, - [8201] = {.lex_state = 5580}, - [8202] = {.lex_state = 5580}, - [8203] = {.lex_state = 1771}, - [8204] = {.lex_state = 1771}, - [8205] = {.lex_state = 1771}, - [8206] = {.lex_state = 430}, - [8207] = {.lex_state = 160}, - [8208] = {.lex_state = 5580}, - [8209] = {.lex_state = 5580}, - [8210] = {.lex_state = 1771}, - [8211] = {.lex_state = 1771}, - [8212] = {.lex_state = 1771}, - [8213] = {.lex_state = 5584}, - [8214] = {.lex_state = 1771}, - [8215] = {.lex_state = 1771}, - [8216] = {.lex_state = 1771}, - [8217] = {.lex_state = 1771}, - [8218] = {.lex_state = 1771}, - [8219] = {.lex_state = 1771}, - [8220] = {.lex_state = 1771}, - [8221] = {.lex_state = 1771}, - [8222] = {.lex_state = 1771}, - [8223] = {.lex_state = 5580}, - [8224] = {.lex_state = 1771}, - [8225] = {.lex_state = 1771, .external_lex_state = 3}, - [8226] = {.lex_state = 2}, - [8227] = {.lex_state = 423}, - [8228] = {.lex_state = 433}, - [8229] = {.lex_state = 1771}, - [8230] = {.lex_state = 1771}, - [8231] = {.lex_state = 1771}, - [8232] = {.lex_state = 1771}, - [8233] = {.lex_state = 255}, - [8234] = {.lex_state = 1771}, - [8235] = {.lex_state = 1771}, - [8236] = {.lex_state = 1771}, - [8237] = {.lex_state = 1771}, - [8238] = {.lex_state = 1771}, - [8239] = {.lex_state = 1767}, - [8240] = {.lex_state = 425}, - [8241] = {.lex_state = 1771}, - [8242] = {.lex_state = 1771}, - [8243] = {.lex_state = 1771, .external_lex_state = 3}, - [8244] = {.lex_state = 1771}, - [8245] = {.lex_state = 1771, .external_lex_state = 3}, - [8246] = {.lex_state = 1771}, - [8247] = {.lex_state = 255}, - [8248] = {.lex_state = 1771}, - [8249] = {.lex_state = 1771}, - [8250] = {.lex_state = 1771, .external_lex_state = 3}, - [8251] = {.lex_state = 423}, - [8252] = {.lex_state = 1771}, - [8253] = {.lex_state = 1771}, - [8254] = {.lex_state = 1771}, - [8255] = {.lex_state = 1771}, - [8256] = {.lex_state = 1771}, - [8257] = {.lex_state = 1771}, - [8258] = {.lex_state = 1771}, - [8259] = {.lex_state = 3228}, - [8260] = {.lex_state = 1771, .external_lex_state = 3}, - [8261] = {.lex_state = 423}, - [8262] = {.lex_state = 3228}, - [8263] = {.lex_state = 3228}, - [8264] = {.lex_state = 1767}, - [8265] = {.lex_state = 433}, - [8266] = {.lex_state = 1771}, - [8267] = {.lex_state = 423}, - [8268] = {.lex_state = 1771}, - [8269] = {.lex_state = 1771, .external_lex_state = 3}, - [8270] = {.lex_state = 1771, .external_lex_state = 3}, - [8271] = {.lex_state = 1771}, - [8272] = {.lex_state = 1771}, - [8273] = {.lex_state = 1772}, - [8274] = {.lex_state = 1767}, - [8275] = {.lex_state = 1771, .external_lex_state = 3}, - [8276] = {.lex_state = 1771}, - [8277] = {.lex_state = 1771}, - [8278] = {.lex_state = 1771}, - [8279] = {.lex_state = 2}, - [8280] = {.lex_state = 1771}, - [8281] = {.lex_state = 1771}, - [8282] = {.lex_state = 1771}, - [8283] = {.lex_state = 1771}, - [8284] = {.lex_state = 1771, .external_lex_state = 3}, - [8285] = {.lex_state = 423}, - [8286] = {.lex_state = 1771}, - [8287] = {.lex_state = 433}, - [8288] = {.lex_state = 160}, - [8289] = {.lex_state = 41}, - [8290] = {.lex_state = 1771}, - [8291] = {.lex_state = 1771}, - [8292] = {.lex_state = 1771}, - [8293] = {.lex_state = 1771}, - [8294] = {.lex_state = 4200}, - [8295] = {.lex_state = 1771}, - [8296] = {.lex_state = 1771}, - [8297] = {.lex_state = 1771}, - [8298] = {.lex_state = 428}, - [8299] = {.lex_state = 1771}, - [8300] = {.lex_state = 1771}, - [8301] = {.lex_state = 1771}, - [8302] = {.lex_state = 1771, .external_lex_state = 4}, - [8303] = {.lex_state = 1771, .external_lex_state = 3}, - [8304] = {.lex_state = 3228}, - [8305] = {.lex_state = 2}, - [8306] = {.lex_state = 1771, .external_lex_state = 3}, - [8307] = {.lex_state = 1771}, - [8308] = {.lex_state = 1771}, - [8309] = {.lex_state = 1771}, - [8310] = {.lex_state = 2}, - [8311] = {.lex_state = 1771}, - [8312] = {.lex_state = 1771}, - [8313] = {.lex_state = 1771}, - [8314] = {.lex_state = 3228}, - [8315] = {.lex_state = 1771}, - [8316] = {.lex_state = 1771}, - [8317] = {.lex_state = 1771, .external_lex_state = 3}, - [8318] = {.lex_state = 1771, .external_lex_state = 3}, - [8319] = {.lex_state = 433}, - [8320] = {.lex_state = 1771}, - [8321] = {.lex_state = 1771}, - [8322] = {.lex_state = 1771}, - [8323] = {.lex_state = 3228}, - [8324] = {.lex_state = 423}, - [8325] = {.lex_state = 3228}, - [8326] = {.lex_state = 1771}, - [8327] = {.lex_state = 1767}, - [8328] = {.lex_state = 1771, .external_lex_state = 3}, - [8329] = {.lex_state = 427}, - [8330] = {.lex_state = 1771}, - [8331] = {.lex_state = 1771}, - [8332] = {.lex_state = 1771}, - [8333] = {.lex_state = 1771}, - [8334] = {.lex_state = 1771}, - [8335] = {.lex_state = 1767}, - [8336] = {.lex_state = 3228}, - [8337] = {.lex_state = 1771}, - [8338] = {.lex_state = 1771}, - [8339] = {.lex_state = 3228}, - [8340] = {.lex_state = 1767}, - [8341] = {.lex_state = 1767}, - [8342] = {.lex_state = 3228}, - [8343] = {.lex_state = 1771}, - [8344] = {.lex_state = 423}, - [8345] = {.lex_state = 1771}, - [8346] = {.lex_state = 3228}, - [8347] = {.lex_state = 1771, .external_lex_state = 3}, - [8348] = {.lex_state = 1771}, - [8349] = {.lex_state = 14}, - [8350] = {.lex_state = 1771}, - [8351] = {.lex_state = 1771}, - [8352] = {.lex_state = 1771}, - [8353] = {.lex_state = 1771}, - [8354] = {.lex_state = 1771, .external_lex_state = 3}, - [8355] = {.lex_state = 427}, - [8356] = {.lex_state = 423}, - [8357] = {.lex_state = 5580}, - [8358] = {.lex_state = 1771}, - [8359] = {.lex_state = 1771}, - [8360] = {.lex_state = 1771, .external_lex_state = 3}, - [8361] = {.lex_state = 1771}, - [8362] = {.lex_state = 41}, - [8363] = {.lex_state = 1771}, - [8364] = {.lex_state = 1771, .external_lex_state = 3}, - [8365] = {.lex_state = 1767}, - [8366] = {.lex_state = 1771}, - [8367] = {.lex_state = 1771, .external_lex_state = 4}, - [8368] = {.lex_state = 1771}, - [8369] = {.lex_state = 1771}, - [8370] = {.lex_state = 2}, - [8371] = {.lex_state = 1771, .external_lex_state = 3}, - [8372] = {.lex_state = 1771}, - [8373] = {.lex_state = 1771, .external_lex_state = 3}, - [8374] = {.lex_state = 1771, .external_lex_state = 3}, - [8375] = {.lex_state = 1771}, - [8376] = {.lex_state = 1771}, - [8377] = {.lex_state = 1771}, - [8378] = {.lex_state = 1771, .external_lex_state = 3}, - [8379] = {.lex_state = 1771, .external_lex_state = 3}, - [8380] = {.lex_state = 423}, - [8381] = {.lex_state = 1771}, - [8382] = {.lex_state = 1771}, - [8383] = {.lex_state = 1771}, - [8384] = {.lex_state = 1771}, - [8385] = {.lex_state = 1771}, - [8386] = {.lex_state = 1771, .external_lex_state = 3}, - [8387] = {.lex_state = 1771}, - [8388] = {.lex_state = 1771, .external_lex_state = 4}, - [8389] = {.lex_state = 2}, - [8390] = {.lex_state = 1771, .external_lex_state = 4}, - [8391] = {.lex_state = 2}, - [8392] = {.lex_state = 2}, - [8393] = {.lex_state = 1771}, - [8394] = {.lex_state = 3228}, - [8395] = {.lex_state = 14}, - [8396] = {.lex_state = 1771}, - [8397] = {.lex_state = 1771, .external_lex_state = 3}, - [8398] = {.lex_state = 1771}, - [8399] = {.lex_state = 2}, - [8400] = {.lex_state = 1771}, - [8401] = {.lex_state = 1771}, - [8402] = {.lex_state = 1771}, - [8403] = {.lex_state = 1771, .external_lex_state = 3}, - [8404] = {.lex_state = 1771}, - [8405] = {.lex_state = 1771, .external_lex_state = 4}, - [8406] = {.lex_state = 2}, - [8407] = {.lex_state = 1771}, - [8408] = {.lex_state = 1767}, - [8409] = {.lex_state = 1771}, - [8410] = {.lex_state = 3228}, - [8411] = {.lex_state = 1771}, - [8412] = {.lex_state = 1771}, - [8413] = {.lex_state = 433}, - [8414] = {.lex_state = 1767}, - [8415] = {.lex_state = 433}, - [8416] = {.lex_state = 1771}, - [8417] = {.lex_state = 423}, - [8418] = {.lex_state = 1771, .external_lex_state = 3}, - [8419] = {.lex_state = 1771, .external_lex_state = 4}, - [8420] = {.lex_state = 2}, - [8421] = {.lex_state = 5582}, - [8422] = {.lex_state = 433}, - [8423] = {.lex_state = 2}, - [8424] = {.lex_state = 5598}, - [8425] = {.lex_state = 1771}, - [8426] = {.lex_state = 1771}, - [8427] = {.lex_state = 5584}, - [8428] = {.lex_state = 1771}, - [8429] = {.lex_state = 1771, .external_lex_state = 3}, - [8430] = {.lex_state = 1771, .external_lex_state = 3}, - [8431] = {.lex_state = 10}, - [8432] = {.lex_state = 1771}, - [8433] = {.lex_state = 1771, .external_lex_state = 4}, - [8434] = {.lex_state = 2}, - [8435] = {.lex_state = 1771}, - [8436] = {.lex_state = 423}, - [8437] = {.lex_state = 433}, - [8438] = {.lex_state = 1771, .external_lex_state = 3}, - [8439] = {.lex_state = 1771}, - [8440] = {.lex_state = 1771}, - [8441] = {.lex_state = 1771}, - [8442] = {.lex_state = 1771}, - [8443] = {.lex_state = 423}, - [8444] = {.lex_state = 1771}, - [8445] = {.lex_state = 41}, - [8446] = {.lex_state = 1771, .external_lex_state = 4}, - [8447] = {.lex_state = 2}, - [8448] = {.lex_state = 1771}, - [8449] = {.lex_state = 44}, - [8450] = {.lex_state = 1771}, - [8451] = {.lex_state = 1771}, - [8452] = {.lex_state = 1771}, - [8453] = {.lex_state = 1771}, - [8454] = {.lex_state = 1771}, - [8455] = {.lex_state = 1771}, - [8456] = {.lex_state = 10}, - [8457] = {.lex_state = 41}, - [8458] = {.lex_state = 1771}, - [8459] = {.lex_state = 1771, .external_lex_state = 4}, - [8460] = {.lex_state = 2}, - [8461] = {.lex_state = 1771}, - [8462] = {.lex_state = 1771, .external_lex_state = 3}, - [8463] = {.lex_state = 1771}, - [8464] = {.lex_state = 1771}, - [8465] = {.lex_state = 1771}, - [8466] = {.lex_state = 5580}, - [8467] = {.lex_state = 5580}, - [8468] = {.lex_state = 433}, - [8469] = {.lex_state = 1771}, - [8470] = {.lex_state = 1771}, - [8471] = {.lex_state = 41}, - [8472] = {.lex_state = 1771, .external_lex_state = 4}, - [8473] = {.lex_state = 2}, - [8474] = {.lex_state = 1771}, - [8475] = {.lex_state = 1771}, - [8476] = {.lex_state = 1771}, - [8477] = {.lex_state = 1771}, - [8478] = {.lex_state = 426}, - [8479] = {.lex_state = 1771, .external_lex_state = 3}, - [8480] = {.lex_state = 1771}, - [8481] = {.lex_state = 427}, - [8482] = {.lex_state = 1771}, - [8483] = {.lex_state = 1771}, - [8484] = {.lex_state = 1771}, - [8485] = {.lex_state = 1771, .external_lex_state = 4}, - [8486] = {.lex_state = 2}, - [8487] = {.lex_state = 1767}, - [8488] = {.lex_state = 1771, .external_lex_state = 3}, - [8489] = {.lex_state = 423}, - [8490] = {.lex_state = 5584}, - [8491] = {.lex_state = 1771, .external_lex_state = 3}, - [8492] = {.lex_state = 1771}, - [8493] = {.lex_state = 1771}, - [8494] = {.lex_state = 1771}, - [8495] = {.lex_state = 428}, - [8496] = {.lex_state = 1771}, - [8497] = {.lex_state = 1771}, - [8498] = {.lex_state = 1771, .external_lex_state = 4}, - [8499] = {.lex_state = 2}, - [8500] = {.lex_state = 1771}, - [8501] = {.lex_state = 1771}, - [8502] = {.lex_state = 1771}, - [8503] = {.lex_state = 1771}, - [8504] = {.lex_state = 1771, .external_lex_state = 3}, - [8505] = {.lex_state = 2}, - [8506] = {.lex_state = 1771}, - [8507] = {.lex_state = 1771}, - [8508] = {.lex_state = 1771}, - [8509] = {.lex_state = 423}, - [8510] = {.lex_state = 1771}, - [8511] = {.lex_state = 1771, .external_lex_state = 4}, - [8512] = {.lex_state = 2}, - [8513] = {.lex_state = 1771}, - [8514] = {.lex_state = 1771}, - [8515] = {.lex_state = 2}, - [8516] = {.lex_state = 1771}, - [8517] = {.lex_state = 1771, .external_lex_state = 3}, - [8518] = {.lex_state = 1771, .external_lex_state = 3}, - [8519] = {.lex_state = 1771}, - [8520] = {.lex_state = 1771}, - [8521] = {.lex_state = 44}, - [8522] = {.lex_state = 1771, .external_lex_state = 3}, - [8523] = {.lex_state = 1771}, - [8524] = {.lex_state = 1771, .external_lex_state = 4}, - [8525] = {.lex_state = 2}, - [8526] = {.lex_state = 433}, - [8527] = {.lex_state = 2}, - [8528] = {.lex_state = 1771}, - [8529] = {.lex_state = 423}, - [8530] = {.lex_state = 433}, - [8531] = {.lex_state = 433}, - [8532] = {.lex_state = 1771, .external_lex_state = 3}, - [8533] = {.lex_state = 1771}, - [8534] = {.lex_state = 1771, .external_lex_state = 4}, - [8535] = {.lex_state = 2}, - [8536] = {.lex_state = 1771}, - [8537] = {.lex_state = 1771}, - [8538] = {.lex_state = 5582}, - [8539] = {.lex_state = 1771, .external_lex_state = 3}, - [8540] = {.lex_state = 255}, - [8541] = {.lex_state = 423}, - [8542] = {.lex_state = 1771}, - [8543] = {.lex_state = 439}, - [8544] = {.lex_state = 1771, .external_lex_state = 4}, - [8545] = {.lex_state = 1771}, - [8546] = {.lex_state = 1771, .external_lex_state = 3}, - [8547] = {.lex_state = 433}, - [8548] = {.lex_state = 2}, - [8549] = {.lex_state = 5582}, - [8550] = {.lex_state = 1771}, - [8551] = {.lex_state = 1771, .external_lex_state = 3}, - [8552] = {.lex_state = 1771}, - [8553] = {.lex_state = 1771, .external_lex_state = 4}, - [8554] = {.lex_state = 1771}, - [8555] = {.lex_state = 5584}, - [8556] = {.lex_state = 41}, - [8557] = {.lex_state = 1851}, - [8558] = {.lex_state = 1771}, - [8559] = {.lex_state = 1771}, - [8560] = {.lex_state = 1771}, - [8561] = {.lex_state = 1771}, - [8562] = {.lex_state = 1771, .external_lex_state = 4}, - [8563] = {.lex_state = 1771}, - [8564] = {.lex_state = 1771}, - [8565] = {.lex_state = 1771}, - [8566] = {.lex_state = 1771}, - [8567] = {.lex_state = 1771}, - [8568] = {.lex_state = 1771}, - [8569] = {.lex_state = 1771, .external_lex_state = 3}, - [8570] = {.lex_state = 315}, - [8571] = {.lex_state = 1771, .external_lex_state = 4}, - [8572] = {.lex_state = 1771, .external_lex_state = 4}, - [8573] = {.lex_state = 1771, .external_lex_state = 4}, - [8574] = {.lex_state = 1771, .external_lex_state = 4}, - [8575] = {.lex_state = 1771, .external_lex_state = 4}, - [8576] = {.lex_state = 1771, .external_lex_state = 4}, - [8577] = {.lex_state = 1771, .external_lex_state = 4}, - [8578] = {.lex_state = 1771, .external_lex_state = 4}, - [8579] = {.lex_state = 1771, .external_lex_state = 4}, - [8580] = {.lex_state = 1771, .external_lex_state = 4}, - [8581] = {.lex_state = 1771, .external_lex_state = 4}, - [8582] = {.lex_state = 1771, .external_lex_state = 4}, - [8583] = {.lex_state = 1771, .external_lex_state = 4}, - [8584] = {.lex_state = 1771, .external_lex_state = 4}, - [8585] = {.lex_state = 1771, .external_lex_state = 4}, - [8586] = {.lex_state = 1771, .external_lex_state = 4}, - [8587] = {.lex_state = 1771, .external_lex_state = 4}, - [8588] = {.lex_state = 1771, .external_lex_state = 4}, - [8589] = {.lex_state = 1771, .external_lex_state = 4}, - [8590] = {.lex_state = 1771, .external_lex_state = 4}, - [8591] = {.lex_state = 1771, .external_lex_state = 4}, - [8592] = {.lex_state = 1771, .external_lex_state = 4}, - [8593] = {.lex_state = 1771, .external_lex_state = 4}, - [8594] = {.lex_state = 1771, .external_lex_state = 4}, - [8595] = {.lex_state = 1771, .external_lex_state = 4}, - [8596] = {.lex_state = 1771, .external_lex_state = 4}, - [8597] = {.lex_state = 1771, .external_lex_state = 4}, - [8598] = {.lex_state = 1771, .external_lex_state = 4}, - [8599] = {.lex_state = 1771, .external_lex_state = 4}, - [8600] = {.lex_state = 1771, .external_lex_state = 4}, - [8601] = {.lex_state = 1771}, - [8602] = {.lex_state = 1771}, - [8603] = {.lex_state = 160}, - [8604] = {.lex_state = 2}, - [8605] = {.lex_state = 1771, .external_lex_state = 3}, - [8606] = {.lex_state = 1771}, - [8607] = {.lex_state = 1771}, - [8608] = {.lex_state = 1771}, - [8609] = {.lex_state = 1771, .external_lex_state = 4}, - [8610] = {.lex_state = 1771}, - [8611] = {.lex_state = 3228}, - [8612] = {.lex_state = 1771}, - [8613] = {.lex_state = 1771, .external_lex_state = 3}, - [8614] = {.lex_state = 1771}, - [8615] = {.lex_state = 1771}, - [8616] = {.lex_state = 1771}, - [8617] = {.lex_state = 423}, - [8618] = {.lex_state = 1771}, - [8619] = {.lex_state = 10}, - [8620] = {.lex_state = 10}, - [8621] = {.lex_state = 1851}, - [8622] = {.lex_state = 1771}, - [8623] = {.lex_state = 2}, - [8624] = {.lex_state = 423}, - [8625] = {.lex_state = 433}, - [8626] = {.lex_state = 1771}, - [8627] = {.lex_state = 10}, - [8628] = {.lex_state = 10}, - [8629] = {.lex_state = 1771}, - [8630] = {.lex_state = 1771}, - [8631] = {.lex_state = 3228}, - [8632] = {.lex_state = 1771}, - [8633] = {.lex_state = 3228}, - [8634] = {.lex_state = 1771}, - [8635] = {.lex_state = 1771}, - [8636] = {.lex_state = 1767}, - [8637] = {.lex_state = 1771}, - [8638] = {.lex_state = 1772}, - [8639] = {.lex_state = 1771}, - [8640] = {.lex_state = 1771}, - [8641] = {.lex_state = 3228}, - [8642] = {.lex_state = 1771}, - [8643] = {.lex_state = 160}, - [8644] = {.lex_state = 1771}, - [8645] = {.lex_state = 1771}, - [8646] = {.lex_state = 1771}, - [8647] = {.lex_state = 1771}, - [8648] = {.lex_state = 1771}, - [8649] = {.lex_state = 427}, - [8650] = {.lex_state = 1771, .external_lex_state = 3}, - [8651] = {.lex_state = 3228}, - [8652] = {.lex_state = 1771}, - [8653] = {.lex_state = 1771}, - [8654] = {.lex_state = 1771}, - [8655] = {.lex_state = 1771}, - [8656] = {.lex_state = 1771}, - [8657] = {.lex_state = 1771}, - [8658] = {.lex_state = 1771}, - [8659] = {.lex_state = 1771}, - [8660] = {.lex_state = 1771}, - [8661] = {.lex_state = 1771}, - [8662] = {.lex_state = 1771}, - [8663] = {.lex_state = 1771}, - [8664] = {.lex_state = 1771, .external_lex_state = 3}, - [8665] = {.lex_state = 1771}, - [8666] = {.lex_state = 10}, - [8667] = {.lex_state = 1771}, - [8668] = {.lex_state = 1771}, - [8669] = {.lex_state = 1771, .external_lex_state = 3}, - [8670] = {.lex_state = 1771, .external_lex_state = 3}, - [8671] = {.lex_state = 423}, - [8672] = {.lex_state = 1767}, - [8673] = {.lex_state = 1771}, - [8674] = {.lex_state = 433}, - [8675] = {.lex_state = 41}, - [8676] = {.lex_state = 1771}, - [8677] = {.lex_state = 10}, - [8678] = {.lex_state = 255}, - [8679] = {.lex_state = 41}, - [8680] = {.lex_state = 428}, - [8681] = {(TSStateId)(-1)}, + [6157] = {.lex_state = 1696}, + [6158] = {.lex_state = 142}, + [6159] = {.lex_state = 43}, + [6160] = {.lex_state = 142}, + [6161] = {.lex_state = 1696}, + [6162] = {.lex_state = 1696}, + [6163] = {.lex_state = 1696}, + [6164] = {.lex_state = 1696}, + [6165] = {.lex_state = 1696}, + [6166] = {.lex_state = 243}, + [6167] = {.lex_state = 243}, + [6168] = {.lex_state = 1696}, + [6169] = {.lex_state = 352}, + [6170] = {.lex_state = 1696}, + [6171] = {.lex_state = 151}, + [6172] = {.lex_state = 151}, + [6173] = {.lex_state = 151}, + [6174] = {.lex_state = 151}, + [6175] = {.lex_state = 75}, + [6176] = {.lex_state = 300}, + [6177] = {.lex_state = 356}, + [6178] = {.lex_state = 1696}, + [6179] = {.lex_state = 303}, + [6180] = {.lex_state = 243}, + [6181] = {.lex_state = 243}, + [6182] = {.lex_state = 369}, + [6183] = {.lex_state = 1696}, + [6184] = {.lex_state = 142}, + [6185] = {.lex_state = 43}, + [6186] = {.lex_state = 43}, + [6187] = {.lex_state = 142}, + [6188] = {.lex_state = 142}, + [6189] = {.lex_state = 142}, + [6190] = {.lex_state = 142}, + [6191] = {.lex_state = 142}, + [6192] = {.lex_state = 142}, + [6193] = {.lex_state = 142}, + [6194] = {.lex_state = 142}, + [6195] = {.lex_state = 1696}, + [6196] = {.lex_state = 119}, + [6197] = {.lex_state = 312}, + [6198] = {.lex_state = 339}, + [6199] = {.lex_state = 370}, + [6200] = {.lex_state = 1696}, + [6201] = {.lex_state = 1696}, + [6202] = {.lex_state = 365}, + [6203] = {.lex_state = 1696}, + [6204] = {.lex_state = 1696}, + [6205] = {.lex_state = 1696}, + [6206] = {.lex_state = 1696}, + [6207] = {.lex_state = 1696}, + [6208] = {.lex_state = 356}, + [6209] = {.lex_state = 243}, + [6210] = {.lex_state = 303}, + [6211] = {.lex_state = 142}, + [6212] = {.lex_state = 243}, + [6213] = {.lex_state = 352}, + [6214] = {.lex_state = 245}, + [6215] = {.lex_state = 142}, + [6216] = {.lex_state = 303}, + [6217] = {.lex_state = 142}, + [6218] = {.lex_state = 142}, + [6219] = {.lex_state = 142}, + [6220] = {.lex_state = 142}, + [6221] = {.lex_state = 142}, + [6222] = {.lex_state = 142}, + [6223] = {.lex_state = 142}, + [6224] = {.lex_state = 142}, + [6225] = {.lex_state = 142}, + [6226] = {.lex_state = 300}, + [6227] = {.lex_state = 356}, + [6228] = {.lex_state = 243}, + [6229] = {.lex_state = 142}, + [6230] = {.lex_state = 1696}, + [6231] = {.lex_state = 243}, + [6232] = {.lex_state = 1696}, + [6233] = {.lex_state = 370}, + [6234] = {.lex_state = 1696}, + [6235] = {.lex_state = 370}, + [6236] = {.lex_state = 142}, + [6237] = {.lex_state = 142}, + [6238] = {.lex_state = 142}, + [6239] = {.lex_state = 142}, + [6240] = {.lex_state = 142}, + [6241] = {.lex_state = 142}, + [6242] = {.lex_state = 142}, + [6243] = {.lex_state = 142}, + [6244] = {.lex_state = 1696}, + [6245] = {.lex_state = 356}, + [6246] = {.lex_state = 243}, + [6247] = {.lex_state = 1696}, + [6248] = {.lex_state = 1696}, + [6249] = {.lex_state = 243}, + [6250] = {.lex_state = 243}, + [6251] = {.lex_state = 245}, + [6252] = {.lex_state = 1696}, + [6253] = {.lex_state = 142}, + [6254] = {.lex_state = 142}, + [6255] = {.lex_state = 142}, + [6256] = {.lex_state = 142}, + [6257] = {.lex_state = 142}, + [6258] = {.lex_state = 142}, + [6259] = {.lex_state = 142}, + [6260] = {.lex_state = 142}, + [6261] = {.lex_state = 356}, + [6262] = {.lex_state = 243}, + [6263] = {.lex_state = 1696}, + [6264] = {.lex_state = 243}, + [6265] = {.lex_state = 1696}, + [6266] = {.lex_state = 1696}, + [6267] = {.lex_state = 142}, + [6268] = {.lex_state = 142}, + [6269] = {.lex_state = 142}, + [6270] = {.lex_state = 142}, + [6271] = {.lex_state = 142}, + [6272] = {.lex_state = 142}, + [6273] = {.lex_state = 142}, + [6274] = {.lex_state = 142}, + [6275] = {.lex_state = 1696}, + [6276] = {.lex_state = 356}, + [6277] = {.lex_state = 300}, + [6278] = {.lex_state = 243}, + [6279] = {.lex_state = 320}, + [6280] = {.lex_state = 243}, + [6281] = {.lex_state = 1696}, + [6282] = {.lex_state = 142}, + [6283] = {.lex_state = 142}, + [6284] = {.lex_state = 142}, + [6285] = {.lex_state = 142}, + [6286] = {.lex_state = 142}, + [6287] = {.lex_state = 142}, + [6288] = {.lex_state = 142}, + [6289] = {.lex_state = 142}, + [6290] = {.lex_state = 320}, + [6291] = {.lex_state = 300}, + [6292] = {.lex_state = 356}, + [6293] = {.lex_state = 243}, + [6294] = {.lex_state = 142}, + [6295] = {.lex_state = 243}, + [6296] = {.lex_state = 142}, + [6297] = {.lex_state = 142}, + [6298] = {.lex_state = 142}, + [6299] = {.lex_state = 142}, + [6300] = {.lex_state = 142}, + [6301] = {.lex_state = 142}, + [6302] = {.lex_state = 142}, + [6303] = {.lex_state = 142}, + [6304] = {.lex_state = 142}, + [6305] = {.lex_state = 142}, + [6306] = {.lex_state = 142}, + [6307] = {.lex_state = 1696}, + [6308] = {.lex_state = 356}, + [6309] = {.lex_state = 243}, + [6310] = {.lex_state = 142}, + [6311] = {.lex_state = 303}, + [6312] = {.lex_state = 243}, + [6313] = {.lex_state = 1696}, + [6314] = {.lex_state = 1696}, + [6315] = {.lex_state = 142}, + [6316] = {.lex_state = 142}, + [6317] = {.lex_state = 142}, + [6318] = {.lex_state = 142}, + [6319] = {.lex_state = 142}, + [6320] = {.lex_state = 142}, + [6321] = {.lex_state = 142}, + [6322] = {.lex_state = 142}, + [6323] = {.lex_state = 1627}, + [6324] = {.lex_state = 1696}, + [6325] = {.lex_state = 356}, + [6326] = {.lex_state = 243}, + [6327] = {.lex_state = 1696}, + [6328] = {.lex_state = 1696}, + [6329] = {.lex_state = 1696}, + [6330] = {.lex_state = 1696}, + [6331] = {.lex_state = 243}, + [6332] = {.lex_state = 1696}, + [6333] = {.lex_state = 303}, + [6334] = {.lex_state = 142}, + [6335] = {.lex_state = 142}, + [6336] = {.lex_state = 142}, + [6337] = {.lex_state = 142}, + [6338] = {.lex_state = 142}, + [6339] = {.lex_state = 142}, + [6340] = {.lex_state = 142}, + [6341] = {.lex_state = 142}, + [6342] = {.lex_state = 356}, + [6343] = {.lex_state = 243}, + [6344] = {.lex_state = 243}, + [6345] = {.lex_state = 1696}, + [6346] = {.lex_state = 1696}, + [6347] = {.lex_state = 352}, + [6348] = {.lex_state = 142}, + [6349] = {.lex_state = 142}, + [6350] = {.lex_state = 142}, + [6351] = {.lex_state = 142}, + [6352] = {.lex_state = 142}, + [6353] = {.lex_state = 142}, + [6354] = {.lex_state = 142}, + [6355] = {.lex_state = 142}, + [6356] = {.lex_state = 356}, + [6357] = {.lex_state = 243}, + [6358] = {.lex_state = 300}, + [6359] = {.lex_state = 243}, + [6360] = {.lex_state = 303}, + [6361] = {.lex_state = 142}, + [6362] = {.lex_state = 142}, + [6363] = {.lex_state = 142}, + [6364] = {.lex_state = 142}, + [6365] = {.lex_state = 142}, + [6366] = {.lex_state = 142}, + [6367] = {.lex_state = 142}, + [6368] = {.lex_state = 142}, + [6369] = {.lex_state = 142}, + [6370] = {.lex_state = 356}, + [6371] = {.lex_state = 243}, + [6372] = {.lex_state = 352}, + [6373] = {.lex_state = 243}, + [6374] = {.lex_state = 151}, + [6375] = {.lex_state = 151}, + [6376] = {.lex_state = 142}, + [6377] = {.lex_state = 142}, + [6378] = {.lex_state = 142}, + [6379] = {.lex_state = 142}, + [6380] = {.lex_state = 142}, + [6381] = {.lex_state = 1696}, + [6382] = {.lex_state = 142}, + [6383] = {.lex_state = 142}, + [6384] = {.lex_state = 356}, + [6385] = {.lex_state = 243}, + [6386] = {.lex_state = 339}, + [6387] = {.lex_state = 243}, + [6388] = {.lex_state = 142}, + [6389] = {.lex_state = 142}, + [6390] = {.lex_state = 142}, + [6391] = {.lex_state = 142}, + [6392] = {.lex_state = 142}, + [6393] = {.lex_state = 142}, + [6394] = {.lex_state = 142}, + [6395] = {.lex_state = 142}, + [6396] = {.lex_state = 142}, + [6397] = {.lex_state = 356}, + [6398] = {.lex_state = 243}, + [6399] = {.lex_state = 142}, + [6400] = {.lex_state = 243}, + [6401] = {.lex_state = 142}, + [6402] = {.lex_state = 142}, + [6403] = {.lex_state = 142}, + [6404] = {.lex_state = 142}, + [6405] = {.lex_state = 142}, + [6406] = {.lex_state = 142}, + [6407] = {.lex_state = 142}, + [6408] = {.lex_state = 142}, + [6409] = {.lex_state = 142}, + [6410] = {.lex_state = 142}, + [6411] = {.lex_state = 356}, + [6412] = {.lex_state = 243}, + [6413] = {.lex_state = 243}, + [6414] = {.lex_state = 1696}, + [6415] = {.lex_state = 356}, + [6416] = {.lex_state = 243}, + [6417] = {.lex_state = 243}, + [6418] = {.lex_state = 1696}, + [6419] = {.lex_state = 356}, + [6420] = {.lex_state = 243}, + [6421] = {.lex_state = 1696}, + [6422] = {.lex_state = 243}, + [6423] = {.lex_state = 365}, + [6424] = {.lex_state = 356}, + [6425] = {.lex_state = 243}, + [6426] = {.lex_state = 1696}, + [6427] = {.lex_state = 243}, + [6428] = {.lex_state = 1696}, + [6429] = {.lex_state = 356}, + [6430] = {.lex_state = 243}, + [6431] = {.lex_state = 243}, + [6432] = {.lex_state = 142}, + [6433] = {.lex_state = 356}, + [6434] = {.lex_state = 243}, + [6435] = {.lex_state = 243}, + [6436] = {.lex_state = 243}, + [6437] = {.lex_state = 356}, + [6438] = {.lex_state = 243}, + [6439] = {.lex_state = 243}, + [6440] = {.lex_state = 356}, + [6441] = {.lex_state = 243}, + [6442] = {.lex_state = 243}, + [6443] = {.lex_state = 1696}, + [6444] = {.lex_state = 356}, + [6445] = {.lex_state = 243}, + [6446] = {.lex_state = 243}, + [6447] = {.lex_state = 1696}, + [6448] = {.lex_state = 356}, + [6449] = {.lex_state = 243}, + [6450] = {.lex_state = 243}, + [6451] = {.lex_state = 356}, + [6452] = {.lex_state = 243}, + [6453] = {.lex_state = 243}, + [6454] = {.lex_state = 356}, + [6455] = {.lex_state = 243}, + [6456] = {.lex_state = 243}, + [6457] = {.lex_state = 356}, + [6458] = {.lex_state = 243}, + [6459] = {.lex_state = 243}, + [6460] = {.lex_state = 356}, + [6461] = {.lex_state = 243}, + [6462] = {.lex_state = 243}, + [6463] = {.lex_state = 356}, + [6464] = {.lex_state = 243}, + [6465] = {.lex_state = 243}, + [6466] = {.lex_state = 356}, + [6467] = {.lex_state = 243}, + [6468] = {.lex_state = 243}, + [6469] = {.lex_state = 356}, + [6470] = {.lex_state = 243}, + [6471] = {.lex_state = 243}, + [6472] = {.lex_state = 243}, + [6473] = {.lex_state = 243}, + [6474] = {.lex_state = 243}, + [6475] = {.lex_state = 243}, + [6476] = {.lex_state = 243}, + [6477] = {.lex_state = 243}, + [6478] = {.lex_state = 243}, + [6479] = {.lex_state = 243}, + [6480] = {.lex_state = 243}, + [6481] = {.lex_state = 243}, + [6482] = {.lex_state = 356}, + [6483] = {.lex_state = 1696}, + [6484] = {.lex_state = 1696}, + [6485] = {.lex_state = 320}, + [6486] = {.lex_state = 1696}, + [6487] = {.lex_state = 320}, + [6488] = {.lex_state = 1665}, + [6489] = {.lex_state = 320}, + [6490] = {.lex_state = 320}, + [6491] = {.lex_state = 1696}, + [6492] = {.lex_state = 142}, + [6493] = {.lex_state = 300}, + [6494] = {.lex_state = 1696}, + [6495] = {.lex_state = 300}, + [6496] = {.lex_state = 1696}, + [6497] = {.lex_state = 151}, + [6498] = {.lex_state = 142}, + [6499] = {.lex_state = 342}, + [6500] = {.lex_state = 372}, + [6501] = {.lex_state = 372}, + [6502] = {.lex_state = 1696}, + [6503] = {.lex_state = 1696}, + [6504] = {.lex_state = 365}, + [6505] = {.lex_state = 365}, + [6506] = {.lex_state = 76}, + [6507] = {.lex_state = 1696}, + [6508] = {.lex_state = 1665}, + [6509] = {.lex_state = 151}, + [6510] = {.lex_state = 303}, + [6511] = {.lex_state = 1696}, + [6512] = {.lex_state = 1696}, + [6513] = {.lex_state = 1696}, + [6514] = {.lex_state = 151}, + [6515] = {.lex_state = 151}, + [6516] = {.lex_state = 151}, + [6517] = {.lex_state = 151}, + [6518] = {.lex_state = 1696}, + [6519] = {.lex_state = 142}, + [6520] = {.lex_state = 142}, + [6521] = {.lex_state = 142}, + [6522] = {.lex_state = 352}, + [6523] = {.lex_state = 1696}, + [6524] = {.lex_state = 1696}, + [6525] = {.lex_state = 310}, + [6526] = {.lex_state = 320}, + [6527] = {.lex_state = 320}, + [6528] = {.lex_state = 320}, + [6529] = {.lex_state = 320}, + [6530] = {.lex_state = 320}, + [6531] = {.lex_state = 320}, + [6532] = {.lex_state = 369}, + [6533] = {.lex_state = 1696}, + [6534] = {.lex_state = 305}, + [6535] = {.lex_state = 369}, + [6536] = {.lex_state = 320}, + [6537] = {.lex_state = 303}, + [6538] = {.lex_state = 1696}, + [6539] = {.lex_state = 151}, + [6540] = {.lex_state = 151}, + [6541] = {.lex_state = 142}, + [6542] = {.lex_state = 1696}, + [6543] = {.lex_state = 264}, + [6544] = {.lex_state = 352}, + [6545] = {.lex_state = 1696}, + [6546] = {.lex_state = 1696}, + [6547] = {.lex_state = 369}, + [6548] = {.lex_state = 1696}, + [6549] = {.lex_state = 1696}, + [6550] = {.lex_state = 1696}, + [6551] = {.lex_state = 1665}, + [6552] = {.lex_state = 264}, + [6553] = {.lex_state = 1696}, + [6554] = {.lex_state = 312}, + [6555] = {.lex_state = 320}, + [6556] = {.lex_state = 1696}, + [6557] = {.lex_state = 320}, + [6558] = {.lex_state = 320}, + [6559] = {.lex_state = 320}, + [6560] = {.lex_state = 320}, + [6561] = {.lex_state = 320}, + [6562] = {.lex_state = 320}, + [6563] = {.lex_state = 1696}, + [6564] = {.lex_state = 1696}, + [6565] = {.lex_state = 320}, + [6566] = {.lex_state = 142}, + [6567] = {.lex_state = 320}, + [6568] = {.lex_state = 1665}, + [6569] = {.lex_state = 320}, + [6570] = {.lex_state = 356}, + [6571] = {.lex_state = 320}, + [6572] = {.lex_state = 320}, + [6573] = {.lex_state = 320}, + [6574] = {.lex_state = 320}, + [6575] = {.lex_state = 320}, + [6576] = {.lex_state = 320}, + [6577] = {.lex_state = 320}, + [6578] = {.lex_state = 320}, + [6579] = {.lex_state = 320}, + [6580] = {.lex_state = 142}, + [6581] = {.lex_state = 320}, + [6582] = {.lex_state = 320}, + [6583] = {.lex_state = 320}, + [6584] = {.lex_state = 320}, + [6585] = {.lex_state = 1696}, + [6586] = {.lex_state = 352}, + [6587] = {.lex_state = 1696}, + [6588] = {.lex_state = 320}, + [6589] = {.lex_state = 320}, + [6590] = {.lex_state = 320}, + [6591] = {.lex_state = 1696}, + [6592] = {.lex_state = 1696}, + [6593] = {.lex_state = 1696}, + [6594] = {.lex_state = 1696}, + [6595] = {.lex_state = 1696}, + [6596] = {.lex_state = 1696}, + [6597] = {.lex_state = 320}, + [6598] = {.lex_state = 305}, + [6599] = {.lex_state = 305}, + [6600] = {.lex_state = 369}, + [6601] = {.lex_state = 1696}, + [6602] = {.lex_state = 1696}, + [6603] = {.lex_state = 1696}, + [6604] = {.lex_state = 1696}, + [6605] = {.lex_state = 320}, + [6606] = {.lex_state = 320}, + [6607] = {.lex_state = 320}, + [6608] = {.lex_state = 320}, + [6609] = {.lex_state = 320}, + [6610] = {.lex_state = 320}, + [6611] = {.lex_state = 320}, + [6612] = {.lex_state = 320}, + [6613] = {.lex_state = 320}, + [6614] = {.lex_state = 320}, + [6615] = {.lex_state = 1665}, + [6616] = {.lex_state = 1665}, + [6617] = {.lex_state = 1665}, + [6618] = {.lex_state = 30}, + [6619] = {.lex_state = 320}, + [6620] = {.lex_state = 1696}, + [6621] = {.lex_state = 1696}, + [6622] = {.lex_state = 142}, + [6623] = {.lex_state = 142}, + [6624] = {.lex_state = 142}, + [6625] = {.lex_state = 142}, + [6626] = {.lex_state = 142}, + [6627] = {.lex_state = 142}, + [6628] = {.lex_state = 142}, + [6629] = {.lex_state = 142}, + [6630] = {.lex_state = 142}, + [6631] = {.lex_state = 142}, + [6632] = {.lex_state = 142}, + [6633] = {.lex_state = 366}, + [6634] = {.lex_state = 142}, + [6635] = {.lex_state = 1696}, + [6636] = {.lex_state = 142}, + [6637] = {.lex_state = 142}, + [6638] = {.lex_state = 142}, + [6639] = {.lex_state = 142}, + [6640] = {.lex_state = 142}, + [6641] = {.lex_state = 142}, + [6642] = {.lex_state = 142}, + [6643] = {.lex_state = 1696}, + [6644] = {.lex_state = 142}, + [6645] = {.lex_state = 304}, + [6646] = {.lex_state = 300}, + [6647] = {.lex_state = 1694}, + [6648] = {.lex_state = 69}, + [6649] = {.lex_state = 1696}, + [6650] = {.lex_state = 142}, + [6651] = {.lex_state = 1696}, + [6652] = {.lex_state = 368}, + [6653] = {.lex_state = 304}, + [6654] = {.lex_state = 142}, + [6655] = {.lex_state = 142}, + [6656] = {.lex_state = 1696}, + [6657] = {.lex_state = 142}, + [6658] = {.lex_state = 142}, + [6659] = {.lex_state = 142}, + [6660] = {.lex_state = 1696}, + [6661] = {.lex_state = 1696}, + [6662] = {.lex_state = 142}, + [6663] = {.lex_state = 142}, + [6664] = {.lex_state = 1696}, + [6665] = {.lex_state = 142}, + [6666] = {.lex_state = 354}, + [6667] = {.lex_state = 69}, + [6668] = {.lex_state = 304}, + [6669] = {.lex_state = 1696}, + [6670] = {.lex_state = 1696}, + [6671] = {.lex_state = 1696}, + [6672] = {.lex_state = 142}, + [6673] = {.lex_state = 142}, + [6674] = {.lex_state = 43}, + [6675] = {.lex_state = 371}, + [6676] = {.lex_state = 1696}, + [6677] = {.lex_state = 142}, + [6678] = {.lex_state = 142}, + [6679] = {.lex_state = 304}, + [6680] = {.lex_state = 151}, + [6681] = {.lex_state = 79}, + [6682] = {.lex_state = 142}, + [6683] = {.lex_state = 142}, + [6684] = {.lex_state = 142}, + [6685] = {.lex_state = 304}, + [6686] = {.lex_state = 198}, + [6687] = {.lex_state = 142}, + [6688] = {.lex_state = 1696}, + [6689] = {.lex_state = 1696}, + [6690] = {.lex_state = 142}, + [6691] = {.lex_state = 142}, + [6692] = {.lex_state = 142}, + [6693] = {.lex_state = 142}, + [6694] = {.lex_state = 142}, + [6695] = {.lex_state = 1696}, + [6696] = {.lex_state = 142}, + [6697] = {.lex_state = 142}, + [6698] = {.lex_state = 1696}, + [6699] = {.lex_state = 142}, + [6700] = {.lex_state = 1696}, + [6701] = {.lex_state = 1696}, + [6702] = {.lex_state = 1696}, + [6703] = {.lex_state = 142}, + [6704] = {.lex_state = 142}, + [6705] = {.lex_state = 1696}, + [6706] = {.lex_state = 1696}, + [6707] = {.lex_state = 1696}, + [6708] = {.lex_state = 79}, + [6709] = {.lex_state = 304}, + [6710] = {.lex_state = 1696}, + [6711] = {.lex_state = 1696}, + [6712] = {.lex_state = 304}, + [6713] = {.lex_state = 1696}, + [6714] = {.lex_state = 142}, + [6715] = {.lex_state = 142}, + [6716] = {.lex_state = 1696}, + [6717] = {.lex_state = 142}, + [6718] = {.lex_state = 142}, + [6719] = {.lex_state = 142}, + [6720] = {.lex_state = 1674}, + [6721] = {.lex_state = 142}, + [6722] = {.lex_state = 1694}, + [6723] = {.lex_state = 142}, + [6724] = {.lex_state = 142}, + [6725] = {.lex_state = 142}, + [6726] = {.lex_state = 1696}, + [6727] = {.lex_state = 142}, + [6728] = {.lex_state = 142}, + [6729] = {.lex_state = 1696}, + [6730] = {.lex_state = 1696}, + [6731] = {.lex_state = 142}, + [6732] = {.lex_state = 366}, + [6733] = {.lex_state = 304}, + [6734] = {.lex_state = 1696}, + [6735] = {.lex_state = 151}, + [6736] = {.lex_state = 1696}, + [6737] = {.lex_state = 142}, + [6738] = {.lex_state = 142}, + [6739] = {.lex_state = 304}, + [6740] = {.lex_state = 142}, + [6741] = {.lex_state = 142}, + [6742] = {.lex_state = 198}, + [6743] = {.lex_state = 142}, + [6744] = {.lex_state = 142}, + [6745] = {.lex_state = 142}, + [6746] = {.lex_state = 142}, + [6747] = {.lex_state = 142}, + [6748] = {.lex_state = 142}, + [6749] = {.lex_state = 142}, + [6750] = {.lex_state = 142}, + [6751] = {.lex_state = 1694}, + [6752] = {.lex_state = 142}, + [6753] = {.lex_state = 142}, + [6754] = {.lex_state = 1696}, + [6755] = {.lex_state = 142}, + [6756] = {.lex_state = 142}, + [6757] = {.lex_state = 142}, + [6758] = {.lex_state = 142}, + [6759] = {.lex_state = 142}, + [6760] = {.lex_state = 304}, + [6761] = {.lex_state = 142}, + [6762] = {.lex_state = 142}, + [6763] = {.lex_state = 142}, + [6764] = {.lex_state = 142}, + [6765] = {.lex_state = 1694}, + [6766] = {.lex_state = 304}, + [6767] = {.lex_state = 320}, + [6768] = {.lex_state = 142}, + [6769] = {.lex_state = 142}, + [6770] = {.lex_state = 142}, + [6771] = {.lex_state = 142}, + [6772] = {.lex_state = 142}, + [6773] = {.lex_state = 142}, + [6774] = {.lex_state = 1696}, + [6775] = {.lex_state = 142}, + [6776] = {.lex_state = 142}, + [6777] = {.lex_state = 151}, + [6778] = {.lex_state = 142}, + [6779] = {.lex_state = 1694}, + [6780] = {.lex_state = 151}, + [6781] = {.lex_state = 304}, + [6782] = {.lex_state = 142}, + [6783] = {.lex_state = 1696}, + [6784] = {.lex_state = 151}, + [6785] = {.lex_state = 1696}, + [6786] = {.lex_state = 373}, + [6787] = {.lex_state = 142}, + [6788] = {.lex_state = 304}, + [6789] = {.lex_state = 1696}, + [6790] = {.lex_state = 1696}, + [6791] = {.lex_state = 1696}, + [6792] = {.lex_state = 304}, + [6793] = {.lex_state = 1696}, + [6794] = {.lex_state = 142}, + [6795] = {.lex_state = 304}, + [6796] = {.lex_state = 142}, + [6797] = {.lex_state = 142}, + [6798] = {.lex_state = 142}, + [6799] = {.lex_state = 142}, + [6800] = {.lex_state = 151}, + [6801] = {.lex_state = 142}, + [6802] = {.lex_state = 142}, + [6803] = {.lex_state = 371}, + [6804] = {.lex_state = 371}, + [6805] = {.lex_state = 142}, + [6806] = {.lex_state = 151}, + [6807] = {.lex_state = 151}, + [6808] = {.lex_state = 1696}, + [6809] = {.lex_state = 1696}, + [6810] = {.lex_state = 151}, + [6811] = {.lex_state = 1696}, + [6812] = {.lex_state = 1696}, + [6813] = {.lex_state = 142}, + [6814] = {.lex_state = 304}, + [6815] = {.lex_state = 1696}, + [6816] = {.lex_state = 303}, + [6817] = {.lex_state = 142}, + [6818] = {.lex_state = 79}, + [6819] = {.lex_state = 304}, + [6820] = {.lex_state = 142}, + [6821] = {.lex_state = 142}, + [6822] = {.lex_state = 142}, + [6823] = {.lex_state = 142}, + [6824] = {.lex_state = 142}, + [6825] = {.lex_state = 142}, + [6826] = {.lex_state = 142}, + [6827] = {.lex_state = 1696}, + [6828] = {.lex_state = 142}, + [6829] = {.lex_state = 304}, + [6830] = {.lex_state = 1696}, + [6831] = {.lex_state = 354}, + [6832] = {.lex_state = 142}, + [6833] = {.lex_state = 1694}, + [6834] = {.lex_state = 1694}, + [6835] = {.lex_state = 142}, + [6836] = {.lex_state = 304}, + [6837] = {.lex_state = 1696}, + [6838] = {.lex_state = 1694}, + [6839] = {.lex_state = 142}, + [6840] = {.lex_state = 304}, + [6841] = {.lex_state = 142}, + [6842] = {.lex_state = 142}, + [6843] = {.lex_state = 142}, + [6844] = {.lex_state = 142}, + [6845] = {.lex_state = 142}, + [6846] = {.lex_state = 142}, + [6847] = {.lex_state = 79}, + [6848] = {.lex_state = 142}, + [6849] = {.lex_state = 142}, + [6850] = {.lex_state = 142}, + [6851] = {.lex_state = 142}, + [6852] = {.lex_state = 1692}, + [6853] = {.lex_state = 374}, + [6854] = {.lex_state = 142}, + [6855] = {.lex_state = 142}, + [6856] = {.lex_state = 304}, + [6857] = {.lex_state = 304}, + [6858] = {.lex_state = 366}, + [6859] = {.lex_state = 142}, + [6860] = {.lex_state = 142}, + [6861] = {.lex_state = 142}, + [6862] = {.lex_state = 142}, + [6863] = {.lex_state = 142}, + [6864] = {.lex_state = 1696}, + [6865] = {.lex_state = 142}, + [6866] = {.lex_state = 354}, + [6867] = {.lex_state = 142}, + [6868] = {.lex_state = 142}, + [6869] = {.lex_state = 354}, + [6870] = {.lex_state = 142}, + [6871] = {.lex_state = 1696}, + [6872] = {.lex_state = 142}, + [6873] = {.lex_state = 1692}, + [6874] = {.lex_state = 1696}, + [6875] = {.lex_state = 142}, + [6876] = {.lex_state = 304}, + [6877] = {.lex_state = 304}, + [6878] = {.lex_state = 354}, + [6879] = {.lex_state = 142}, + [6880] = {.lex_state = 354}, + [6881] = {.lex_state = 151}, + [6882] = {.lex_state = 142}, + [6883] = {.lex_state = 142}, + [6884] = {.lex_state = 142}, + [6885] = {.lex_state = 142}, + [6886] = {.lex_state = 348}, + [6887] = {.lex_state = 151}, + [6888] = {.lex_state = 142}, + [6889] = {.lex_state = 142}, + [6890] = {.lex_state = 354}, + [6891] = {.lex_state = 142}, + [6892] = {.lex_state = 142}, + [6893] = {.lex_state = 1694}, + [6894] = {.lex_state = 151}, + [6895] = {.lex_state = 1694}, + [6896] = {.lex_state = 142}, + [6897] = {.lex_state = 151}, + [6898] = {.lex_state = 142}, + [6899] = {.lex_state = 142}, + [6900] = {.lex_state = 142}, + [6901] = {.lex_state = 142}, + [6902] = {.lex_state = 142}, + [6903] = {.lex_state = 142}, + [6904] = {.lex_state = 142}, + [6905] = {.lex_state = 1696}, + [6906] = {.lex_state = 142}, + [6907] = {.lex_state = 142}, + [6908] = {.lex_state = 142}, + [6909] = {.lex_state = 373}, + [6910] = {.lex_state = 1692}, + [6911] = {.lex_state = 151}, + [6912] = {.lex_state = 142}, + [6913] = {.lex_state = 142}, + [6914] = {.lex_state = 151}, + [6915] = {.lex_state = 142}, + [6916] = {.lex_state = 368}, + [6917] = {.lex_state = 142}, + [6918] = {.lex_state = 142}, + [6919] = {.lex_state = 142}, + [6920] = {.lex_state = 142}, + [6921] = {.lex_state = 151}, + [6922] = {.lex_state = 142}, + [6923] = {.lex_state = 142}, + [6924] = {.lex_state = 142}, + [6925] = {.lex_state = 151}, + [6926] = {.lex_state = 142}, + [6927] = {.lex_state = 142}, + [6928] = {.lex_state = 371}, + [6929] = {.lex_state = 151}, + [6930] = {.lex_state = 142}, + [6931] = {.lex_state = 151}, + [6932] = {.lex_state = 1696}, + [6933] = {.lex_state = 1694}, + [6934] = {.lex_state = 304}, + [6935] = {.lex_state = 151}, + [6936] = {.lex_state = 1694}, + [6937] = {.lex_state = 1694}, + [6938] = {.lex_state = 243}, + [6939] = {.lex_state = 1694}, + [6940] = {.lex_state = 1696}, + [6941] = {.lex_state = 1696}, + [6942] = {.lex_state = 1696}, + [6943] = {.lex_state = 1696}, + [6944] = {.lex_state = 374}, + [6945] = {.lex_state = 1694}, + [6946] = {.lex_state = 304}, + [6947] = {.lex_state = 142}, + [6948] = {.lex_state = 1694}, + [6949] = {.lex_state = 358}, + [6950] = {.lex_state = 1660}, + [6951] = {.lex_state = 142}, + [6952] = {.lex_state = 1696}, + [6953] = {.lex_state = 151}, + [6954] = {.lex_state = 368}, + [6955] = {.lex_state = 151}, + [6956] = {.lex_state = 142}, + [6957] = {.lex_state = 358}, + [6958] = {.lex_state = 151}, + [6959] = {.lex_state = 1696}, + [6960] = {.lex_state = 142}, + [6961] = {.lex_state = 1696}, + [6962] = {.lex_state = 1696}, + [6963] = {.lex_state = 1696}, + [6964] = {.lex_state = 1696}, + [6965] = {.lex_state = 1696}, + [6966] = {.lex_state = 266}, + [6967] = {.lex_state = 198}, + [6968] = {.lex_state = 142}, + [6969] = {.lex_state = 1696}, + [6970] = {.lex_state = 142}, + [6971] = {.lex_state = 304}, + [6972] = {.lex_state = 1696}, + [6973] = {.lex_state = 1692}, + [6974] = {.lex_state = 142}, + [6975] = {.lex_state = 1692}, + [6976] = {.lex_state = 1692}, + [6977] = {.lex_state = 142}, + [6978] = {.lex_state = 142}, + [6979] = {.lex_state = 1692}, + [6980] = {.lex_state = 142}, + [6981] = {.lex_state = 1696}, + [6982] = {.lex_state = 1696}, + [6983] = {.lex_state = 142}, + [6984] = {.lex_state = 368}, + [6985] = {.lex_state = 142}, + [6986] = {.lex_state = 198}, + [6987] = {.lex_state = 1696}, + [6988] = {.lex_state = 1696}, + [6989] = {.lex_state = 79}, + [6990] = {.lex_state = 142}, + [6991] = {.lex_state = 368}, + [6992] = {.lex_state = 304}, + [6993] = {.lex_state = 1696}, + [6994] = {.lex_state = 142}, + [6995] = {.lex_state = 1696}, + [6996] = {.lex_state = 1696}, + [6997] = {.lex_state = 1696}, + [6998] = {.lex_state = 142}, + [6999] = {.lex_state = 1696}, + [7000] = {.lex_state = 1696}, + [7001] = {.lex_state = 142}, + [7002] = {.lex_state = 79}, + [7003] = {.lex_state = 1696}, + [7004] = {.lex_state = 142}, + [7005] = {.lex_state = 198}, + [7006] = {.lex_state = 366}, + [7007] = {.lex_state = 1696}, + [7008] = {.lex_state = 1696}, + [7009] = {.lex_state = 142}, + [7010] = {.lex_state = 142}, + [7011] = {.lex_state = 142}, + [7012] = {.lex_state = 142}, + [7013] = {.lex_state = 38}, + [7014] = {.lex_state = 142}, + [7015] = {.lex_state = 142}, + [7016] = {.lex_state = 237}, + [7017] = {.lex_state = 142}, + [7018] = {.lex_state = 142}, + [7019] = {.lex_state = 1696}, + [7020] = {.lex_state = 1696}, + [7021] = {.lex_state = 142}, + [7022] = {.lex_state = 142}, + [7023] = {.lex_state = 142}, + [7024] = {.lex_state = 142}, + [7025] = {.lex_state = 198}, + [7026] = {.lex_state = 237}, + [7027] = {.lex_state = 1696}, + [7028] = {.lex_state = 198}, + [7029] = {.lex_state = 142}, + [7030] = {.lex_state = 1696}, + [7031] = {.lex_state = 1674}, + [7032] = {.lex_state = 1696}, + [7033] = {.lex_state = 237}, + [7034] = {.lex_state = 1696}, + [7035] = {.lex_state = 142}, + [7036] = {.lex_state = 1696}, + [7037] = {.lex_state = 142}, + [7038] = {.lex_state = 151}, + [7039] = {.lex_state = 1696}, + [7040] = {.lex_state = 142}, + [7041] = {.lex_state = 304}, + [7042] = {.lex_state = 151}, + [7043] = {.lex_state = 198}, + [7044] = {.lex_state = 142}, + [7045] = {.lex_state = 142}, + [7046] = {.lex_state = 237}, + [7047] = {.lex_state = 1694}, + [7048] = {.lex_state = 142}, + [7049] = {.lex_state = 142}, + [7050] = {.lex_state = 69}, + [7051] = {.lex_state = 69}, + [7052] = {.lex_state = 142}, + [7053] = {.lex_state = 142}, + [7054] = {.lex_state = 1696}, + [7055] = {.lex_state = 142}, + [7056] = {.lex_state = 77}, + [7057] = {.lex_state = 142}, + [7058] = {.lex_state = 198}, + [7059] = {.lex_state = 151}, + [7060] = {.lex_state = 1697}, + [7061] = {.lex_state = 198}, + [7062] = {.lex_state = 151}, + [7063] = {.lex_state = 1696}, + [7064] = {.lex_state = 1696}, + [7065] = {.lex_state = 1696}, + [7066] = {.lex_state = 1696}, + [7067] = {.lex_state = 1696}, + [7068] = {.lex_state = 151}, + [7069] = {.lex_state = 1696}, + [7070] = {.lex_state = 198}, + [7071] = {.lex_state = 151}, + [7072] = {.lex_state = 198}, + [7073] = {.lex_state = 38}, + [7074] = {.lex_state = 1696}, + [7075] = {.lex_state = 1696}, + [7076] = {.lex_state = 1696}, + [7077] = {.lex_state = 1696}, + [7078] = {.lex_state = 198}, + [7079] = {.lex_state = 79}, + [7080] = {.lex_state = 1696}, + [7081] = {.lex_state = 198}, + [7082] = {.lex_state = 151}, + [7083] = {.lex_state = 1696}, + [7084] = {.lex_state = 1696}, + [7085] = {.lex_state = 151}, + [7086] = {.lex_state = 1696}, + [7087] = {.lex_state = 1696}, + [7088] = {.lex_state = 198}, + [7089] = {.lex_state = 198}, + [7090] = {.lex_state = 1696}, + [7091] = {.lex_state = 1696}, + [7092] = {.lex_state = 1696}, + [7093] = {.lex_state = 1696}, + [7094] = {.lex_state = 142}, + [7095] = {.lex_state = 1696}, + [7096] = {.lex_state = 1696}, + [7097] = {.lex_state = 198}, + [7098] = {.lex_state = 142}, + [7099] = {.lex_state = 1696}, + [7100] = {.lex_state = 198}, + [7101] = {.lex_state = 142}, + [7102] = {.lex_state = 1696}, + [7103] = {.lex_state = 1696}, + [7104] = {.lex_state = 1696}, + [7105] = {.lex_state = 1696}, + [7106] = {.lex_state = 198}, + [7107] = {.lex_state = 142}, + [7108] = {.lex_state = 198}, + [7109] = {.lex_state = 354}, + [7110] = {.lex_state = 237}, + [7111] = {.lex_state = 1696}, + [7112] = {.lex_state = 1696}, + [7113] = {.lex_state = 1696}, + [7114] = {.lex_state = 1696}, + [7115] = {.lex_state = 198}, + [7116] = {.lex_state = 1696}, + [7117] = {.lex_state = 198}, + [7118] = {.lex_state = 1696}, + [7119] = {.lex_state = 354}, + [7120] = {.lex_state = 1696}, + [7121] = {.lex_state = 1696}, + [7122] = {.lex_state = 1696}, + [7123] = {.lex_state = 1696}, + [7124] = {.lex_state = 198}, + [7125] = {.lex_state = 1696}, + [7126] = {.lex_state = 198}, + [7127] = {.lex_state = 1696}, + [7128] = {.lex_state = 1696}, + [7129] = {.lex_state = 1696}, + [7130] = {.lex_state = 1696}, + [7131] = {.lex_state = 198}, + [7132] = {.lex_state = 1692}, + [7133] = {.lex_state = 198}, + [7134] = {.lex_state = 142}, + [7135] = {.lex_state = 1696}, + [7136] = {.lex_state = 1696}, + [7137] = {.lex_state = 1696}, + [7138] = {.lex_state = 142}, + [7139] = {.lex_state = 1696}, + [7140] = {.lex_state = 1696}, + [7141] = {.lex_state = 198}, + [7142] = {.lex_state = 142}, + [7143] = {.lex_state = 1696}, + [7144] = {.lex_state = 198}, + [7145] = {.lex_state = 1696}, + [7146] = {.lex_state = 142}, + [7147] = {.lex_state = 1696}, + [7148] = {.lex_state = 1696}, + [7149] = {.lex_state = 237}, + [7150] = {.lex_state = 1696}, + [7151] = {.lex_state = 1696}, + [7152] = {.lex_state = 198}, + [7153] = {.lex_state = 198}, + [7154] = {.lex_state = 1696}, + [7155] = {.lex_state = 1696}, + [7156] = {.lex_state = 1696}, + [7157] = {.lex_state = 1696}, + [7158] = {.lex_state = 1696}, + [7159] = {.lex_state = 198}, + [7160] = {.lex_state = 198}, + [7161] = {.lex_state = 1696}, + [7162] = {.lex_state = 1696}, + [7163] = {.lex_state = 142}, + [7164] = {.lex_state = 1696}, + [7165] = {.lex_state = 1696}, + [7166] = {.lex_state = 198}, + [7167] = {.lex_state = 198}, + [7168] = {.lex_state = 374}, + [7169] = {.lex_state = 1696}, + [7170] = {.lex_state = 1696}, + [7171] = {.lex_state = 1696}, + [7172] = {.lex_state = 1696}, + [7173] = {.lex_state = 1696}, + [7174] = {.lex_state = 198}, + [7175] = {.lex_state = 198}, + [7176] = {.lex_state = 142}, + [7177] = {.lex_state = 1696}, + [7178] = {.lex_state = 1696}, + [7179] = {.lex_state = 1696}, + [7180] = {.lex_state = 1696}, + [7181] = {.lex_state = 1696}, + [7182] = {.lex_state = 1696}, + [7183] = {.lex_state = 371}, + [7184] = {.lex_state = 1696}, + [7185] = {.lex_state = 1696}, + [7186] = {.lex_state = 142}, + [7187] = {.lex_state = 1696}, + [7188] = {.lex_state = 142}, + [7189] = {.lex_state = 304}, + [7190] = {.lex_state = 142}, + [7191] = {.lex_state = 354}, + [7192] = {.lex_state = 142}, + [7193] = {.lex_state = 142}, + [7194] = {.lex_state = 142}, + [7195] = {.lex_state = 304}, + [7196] = {.lex_state = 142}, + [7197] = {.lex_state = 142}, + [7198] = {.lex_state = 368}, + [7199] = {.lex_state = 142}, + [7200] = {.lex_state = 304}, + [7201] = {.lex_state = 142}, + [7202] = {.lex_state = 142}, + [7203] = {.lex_state = 1697}, + [7204] = {.lex_state = 5462}, + [7205] = {.lex_state = 142}, + [7206] = {.lex_state = 5462}, + [7207] = {.lex_state = 1696}, + [7208] = {.lex_state = 140}, + [7209] = {.lex_state = 36}, + [7210] = {.lex_state = 140}, + [7211] = {.lex_state = 1694}, + [7212] = {.lex_state = 142}, + [7213] = {.lex_state = 366}, + [7214] = {.lex_state = 142}, + [7215] = {.lex_state = 36}, + [7216] = {.lex_state = 1696}, + [7217] = {.lex_state = 1696}, + [7218] = {.lex_state = 142}, + [7219] = {.lex_state = 5462}, + [7220] = {.lex_state = 5464}, + [7221] = {.lex_state = 140}, + [7222] = {.lex_state = 142}, + [7223] = {.lex_state = 140}, + [7224] = {.lex_state = 1694}, + [7225] = {.lex_state = 140}, + [7226] = {.lex_state = 142}, + [7227] = {.lex_state = 5466}, + [7228] = {.lex_state = 5466}, + [7229] = {.lex_state = 142}, + [7230] = {.lex_state = 5464}, + [7231] = {.lex_state = 5462}, + [7232] = {.lex_state = 5466}, + [7233] = {.lex_state = 140}, + [7234] = {.lex_state = 142}, + [7235] = {.lex_state = 142}, + [7236] = {.lex_state = 1696}, + [7237] = {.lex_state = 1694}, + [7238] = {.lex_state = 142}, + [7239] = {.lex_state = 151}, + [7240] = {.lex_state = 1674}, + [7241] = {.lex_state = 1696}, + [7242] = {.lex_state = 1696}, + [7243] = {.lex_state = 5464}, + [7244] = {.lex_state = 1696}, + [7245] = {.lex_state = 359}, + [7246] = {.lex_state = 142}, + [7247] = {.lex_state = 368}, + [7248] = {.lex_state = 5462}, + [7249] = {.lex_state = 4096}, + [7250] = {.lex_state = 142}, + [7251] = {.lex_state = 142}, + [7252] = {.lex_state = 30}, + [7253] = {.lex_state = 140}, + [7254] = {.lex_state = 1696}, + [7255] = {.lex_state = 140}, + [7256] = {.lex_state = 5466}, + [7257] = {.lex_state = 237}, + [7258] = {.lex_state = 1696}, + [7259] = {.lex_state = 1696}, + [7260] = {.lex_state = 1692}, + [7261] = {.lex_state = 5462}, + [7262] = {.lex_state = 142}, + [7263] = {.lex_state = 1696}, + [7264] = {.lex_state = 1697}, + [7265] = {.lex_state = 1696}, + [7266] = {.lex_state = 140}, + [7267] = {.lex_state = 5464}, + [7268] = {.lex_state = 5462}, + [7269] = {.lex_state = 142}, + [7270] = {.lex_state = 1696}, + [7271] = {.lex_state = 1696}, + [7272] = {.lex_state = 1696}, + [7273] = {.lex_state = 5466}, + [7274] = {.lex_state = 5466}, + [7275] = {.lex_state = 142}, + [7276] = {.lex_state = 142}, + [7277] = {.lex_state = 142}, + [7278] = {.lex_state = 5466}, + [7279] = {.lex_state = 5462}, + [7280] = {.lex_state = 5462}, + [7281] = {.lex_state = 5462}, + [7282] = {.lex_state = 142}, + [7283] = {.lex_state = 5462}, + [7284] = {.lex_state = 142}, + [7285] = {.lex_state = 5462}, + [7286] = {.lex_state = 1664}, + [7287] = {.lex_state = 140}, + [7288] = {.lex_state = 359}, + [7289] = {.lex_state = 5462}, + [7290] = {.lex_state = 5462}, + [7291] = {.lex_state = 5462}, + [7292] = {.lex_state = 142}, + [7293] = {.lex_state = 142}, + [7294] = {.lex_state = 373}, + [7295] = {.lex_state = 1697}, + [7296] = {.lex_state = 5462}, + [7297] = {.lex_state = 5462}, + [7298] = {.lex_state = 368}, + [7299] = {.lex_state = 142}, + [7300] = {.lex_state = 5466}, + [7301] = {.lex_state = 5466}, + [7302] = {.lex_state = 142}, + [7303] = {.lex_state = 142}, + [7304] = {.lex_state = 142}, + [7305] = {.lex_state = 5462}, + [7306] = {.lex_state = 5462}, + [7307] = {.lex_state = 142}, + [7308] = {.lex_state = 5462}, + [7309] = {.lex_state = 5462}, + [7310] = {.lex_state = 142}, + [7311] = {.lex_state = 237}, + [7312] = {.lex_state = 1696}, + [7313] = {.lex_state = 142}, + [7314] = {.lex_state = 237}, + [7315] = {.lex_state = 5466}, + [7316] = {.lex_state = 142}, + [7317] = {.lex_state = 5464}, + [7318] = {.lex_state = 142}, + [7319] = {.lex_state = 5466}, + [7320] = {.lex_state = 5462}, + [7321] = {.lex_state = 142}, + [7322] = {.lex_state = 5462}, + [7323] = {.lex_state = 1696}, + [7324] = {.lex_state = 1696}, + [7325] = {.lex_state = 140}, + [7326] = {.lex_state = 359}, + [7327] = {.lex_state = 1697}, + [7328] = {.lex_state = 1696}, + [7329] = {.lex_state = 140}, + [7330] = {.lex_state = 368}, + [7331] = {.lex_state = 140}, + [7332] = {.lex_state = 304}, + [7333] = {.lex_state = 5466}, + [7334] = {.lex_state = 5462}, + [7335] = {.lex_state = 140}, + [7336] = {.lex_state = 359}, + [7337] = {.lex_state = 1696}, + [7338] = {.lex_state = 5466}, + [7339] = {.lex_state = 142}, + [7340] = {.lex_state = 359}, + [7341] = {.lex_state = 359}, + [7342] = {.lex_state = 1696}, + [7343] = {.lex_state = 142}, + [7344] = {.lex_state = 368}, + [7345] = {.lex_state = 359}, + [7346] = {.lex_state = 1696}, + [7347] = {.lex_state = 1696}, + [7348] = {.lex_state = 142}, + [7349] = {.lex_state = 359}, + [7350] = {.lex_state = 359}, + [7351] = {.lex_state = 1696}, + [7352] = {.lex_state = 1696}, + [7353] = {.lex_state = 1696}, + [7354] = {.lex_state = 1696}, + [7355] = {.lex_state = 1696}, + [7356] = {.lex_state = 359}, + [7357] = {.lex_state = 368}, + [7358] = {.lex_state = 368}, + [7359] = {.lex_state = 5466}, + [7360] = {.lex_state = 5462}, + [7361] = {.lex_state = 1696}, + [7362] = {.lex_state = 5466}, + [7363] = {.lex_state = 1696}, + [7364] = {.lex_state = 142}, + [7365] = {.lex_state = 5466}, + [7366] = {.lex_state = 1696}, + [7367] = {.lex_state = 5466}, + [7368] = {.lex_state = 1696}, + [7369] = {.lex_state = 1696}, + [7370] = {.lex_state = 1696}, + [7371] = {.lex_state = 1696}, + [7372] = {.lex_state = 1696}, + [7373] = {.lex_state = 5466}, + [7374] = {.lex_state = 1696, .external_lex_state = 3}, + [7375] = {.lex_state = 1692}, + [7376] = {.lex_state = 1696}, + [7377] = {.lex_state = 1696}, + [7378] = {.lex_state = 30}, + [7379] = {.lex_state = 364}, + [7380] = {.lex_state = 1696}, + [7381] = {.lex_state = 1696}, + [7382] = {.lex_state = 1696}, + [7383] = {.lex_state = 1696}, + [7384] = {.lex_state = 30}, + [7385] = {.lex_state = 1696}, + [7386] = {.lex_state = 1692}, + [7387] = {.lex_state = 1696}, + [7388] = {.lex_state = 1696}, + [7389] = {.lex_state = 1696}, + [7390] = {.lex_state = 1696}, + [7391] = {.lex_state = 1696}, + [7392] = {.lex_state = 363}, + [7393] = {.lex_state = 1696, .external_lex_state = 3}, + [7394] = {.lex_state = 359}, + [7395] = {.lex_state = 1696, .external_lex_state = 3}, + [7396] = {.lex_state = 1696, .external_lex_state = 3}, + [7397] = {.lex_state = 1696}, + [7398] = {.lex_state = 1696}, + [7399] = {.lex_state = 359}, + [7400] = {.lex_state = 359}, + [7401] = {.lex_state = 359}, + [7402] = {.lex_state = 219}, + [7403] = {.lex_state = 3152}, + [7404] = {.lex_state = 368}, + [7405] = {.lex_state = 1696}, + [7406] = {.lex_state = 1692}, + [7407] = {.lex_state = 1696}, + [7408] = {.lex_state = 1696}, + [7409] = {.lex_state = 1696, .external_lex_state = 3}, + [7410] = {.lex_state = 1696}, + [7411] = {.lex_state = 1696}, + [7412] = {.lex_state = 219}, + [7413] = {.lex_state = 1696}, + [7414] = {.lex_state = 1696}, + [7415] = {.lex_state = 1696}, + [7416] = {.lex_state = 1696}, + [7417] = {.lex_state = 1696}, + [7418] = {.lex_state = 1696}, + [7419] = {.lex_state = 362}, + [7420] = {.lex_state = 1696}, + [7421] = {.lex_state = 1696}, + [7422] = {.lex_state = 363}, + [7423] = {.lex_state = 5466}, + [7424] = {.lex_state = 368}, + [7425] = {.lex_state = 1696}, + [7426] = {.lex_state = 1696}, + [7427] = {.lex_state = 1696}, + [7428] = {.lex_state = 1696}, + [7429] = {.lex_state = 1696}, + [7430] = {.lex_state = 1696}, + [7431] = {.lex_state = 1697}, + [7432] = {.lex_state = 1696}, + [7433] = {.lex_state = 359}, + [7434] = {.lex_state = 1696}, + [7435] = {.lex_state = 1696}, + [7436] = {.lex_state = 1696}, + [7437] = {.lex_state = 1696}, + [7438] = {.lex_state = 1696}, + [7439] = {.lex_state = 1696}, + [7440] = {.lex_state = 1696}, + [7441] = {.lex_state = 1696}, + [7442] = {.lex_state = 1696}, + [7443] = {.lex_state = 1696}, + [7444] = {.lex_state = 1696}, + [7445] = {.lex_state = 368}, + [7446] = {.lex_state = 1696}, + [7447] = {.lex_state = 1696}, + [7448] = {.lex_state = 1696}, + [7449] = {.lex_state = 1696}, + [7450] = {.lex_state = 1692}, + [7451] = {.lex_state = 1696}, + [7452] = {.lex_state = 1665}, + [7453] = {.lex_state = 1696, .external_lex_state = 3}, + [7454] = {.lex_state = 1696}, + [7455] = {.lex_state = 1696, .external_lex_state = 4}, + [7456] = {.lex_state = 1696, .external_lex_state = 3}, + [7457] = {.lex_state = 1696}, + [7458] = {.lex_state = 1627}, + [7459] = {.lex_state = 359}, + [7460] = {.lex_state = 1696}, + [7461] = {.lex_state = 368}, + [7462] = {.lex_state = 1692}, + [7463] = {.lex_state = 1696}, + [7464] = {.lex_state = 1696}, + [7465] = {.lex_state = 1696}, + [7466] = {.lex_state = 1696, .external_lex_state = 3}, + [7467] = {.lex_state = 1696}, + [7468] = {.lex_state = 4096}, + [7469] = {.lex_state = 1692}, + [7470] = {.lex_state = 1775}, + [7471] = {.lex_state = 1696, .external_lex_state = 3}, + [7472] = {.lex_state = 3152}, + [7473] = {.lex_state = 1696}, + [7474] = {.lex_state = 30}, + [7475] = {.lex_state = 359}, + [7476] = {.lex_state = 368}, + [7477] = {.lex_state = 1696}, + [7478] = {.lex_state = 364}, + [7479] = {.lex_state = 359}, + [7480] = {.lex_state = 1696}, + [7481] = {.lex_state = 1696}, + [7482] = {.lex_state = 1696}, + [7483] = {.lex_state = 1696}, + [7484] = {.lex_state = 1696}, + [7485] = {.lex_state = 1696}, + [7486] = {.lex_state = 1696}, + [7487] = {.lex_state = 1692}, + [7488] = {.lex_state = 1696}, + [7489] = {.lex_state = 1696, .external_lex_state = 3}, + [7490] = {.lex_state = 1696}, + [7491] = {.lex_state = 1696, .external_lex_state = 3}, + [7492] = {.lex_state = 1696}, + [7493] = {.lex_state = 1696}, + [7494] = {.lex_state = 1696}, + [7495] = {.lex_state = 359}, + [7496] = {.lex_state = 1696}, + [7497] = {.lex_state = 368}, + [7498] = {.lex_state = 219}, + [7499] = {.lex_state = 1696}, + [7500] = {.lex_state = 1696}, + [7501] = {.lex_state = 1696}, + [7502] = {.lex_state = 1696}, + [7503] = {.lex_state = 1696}, + [7504] = {.lex_state = 373}, + [7505] = {.lex_state = 1696}, + [7506] = {.lex_state = 1696}, + [7507] = {.lex_state = 368}, + [7508] = {.lex_state = 5466}, + [7509] = {.lex_state = 368}, + [7510] = {.lex_state = 1627}, + [7511] = {.lex_state = 3152}, + [7512] = {.lex_state = 1696, .external_lex_state = 4}, + [7513] = {.lex_state = 3152}, + [7514] = {.lex_state = 359}, + [7515] = {.lex_state = 1627}, + [7516] = {.lex_state = 1696}, + [7517] = {.lex_state = 1696}, + [7518] = {.lex_state = 1696}, + [7519] = {.lex_state = 1696}, + [7520] = {.lex_state = 5462}, + [7521] = {.lex_state = 1696, .external_lex_state = 3}, + [7522] = {.lex_state = 1696}, + [7523] = {.lex_state = 1696}, + [7524] = {.lex_state = 359}, + [7525] = {.lex_state = 1696, .external_lex_state = 3}, + [7526] = {.lex_state = 1696}, + [7527] = {.lex_state = 1696}, + [7528] = {.lex_state = 1696}, + [7529] = {.lex_state = 1696}, + [7530] = {.lex_state = 1696}, + [7531] = {.lex_state = 1696}, + [7532] = {.lex_state = 1696}, + [7533] = {.lex_state = 1696, .external_lex_state = 4}, + [7534] = {.lex_state = 1696, .external_lex_state = 3}, + [7535] = {.lex_state = 1627}, + [7536] = {.lex_state = 30}, + [7537] = {.lex_state = 1696}, + [7538] = {.lex_state = 1696}, + [7539] = {.lex_state = 1696}, + [7540] = {.lex_state = 1696}, + [7541] = {.lex_state = 1696}, + [7542] = {.lex_state = 368}, + [7543] = {.lex_state = 1696, .external_lex_state = 3}, + [7544] = {.lex_state = 30}, + [7545] = {.lex_state = 363}, + [7546] = {.lex_state = 1696}, + [7547] = {.lex_state = 1696}, + [7548] = {.lex_state = 1696, .external_lex_state = 4}, + [7549] = {.lex_state = 1627}, + [7550] = {.lex_state = 1696}, + [7551] = {.lex_state = 1696}, + [7552] = {.lex_state = 1696, .external_lex_state = 3}, + [7553] = {.lex_state = 1697}, + [7554] = {.lex_state = 1696}, + [7555] = {.lex_state = 1696}, + [7556] = {.lex_state = 359}, + [7557] = {.lex_state = 1696}, + [7558] = {.lex_state = 1696, .external_lex_state = 3}, + [7559] = {.lex_state = 1696}, + [7560] = {.lex_state = 1696, .external_lex_state = 3}, + [7561] = {.lex_state = 1696}, + [7562] = {.lex_state = 1696, .external_lex_state = 4}, + [7563] = {.lex_state = 1627}, + [7564] = {.lex_state = 3152}, + [7565] = {.lex_state = 364}, + [7566] = {.lex_state = 1692}, + [7567] = {.lex_state = 1696, .external_lex_state = 3}, + [7568] = {.lex_state = 1696}, + [7569] = {.lex_state = 359}, + [7570] = {.lex_state = 368}, + [7571] = {.lex_state = 1696}, + [7572] = {.lex_state = 1696, .external_lex_state = 3}, + [7573] = {.lex_state = 1696}, + [7574] = {.lex_state = 1696, .external_lex_state = 4}, + [7575] = {.lex_state = 1696, .external_lex_state = 4}, + [7576] = {.lex_state = 1627}, + [7577] = {.lex_state = 1696}, + [7578] = {.lex_state = 1696}, + [7579] = {.lex_state = 1696, .external_lex_state = 3}, + [7580] = {.lex_state = 3152}, + [7581] = {.lex_state = 1696}, + [7582] = {.lex_state = 1696}, + [7583] = {.lex_state = 3152}, + [7584] = {.lex_state = 5464}, + [7585] = {.lex_state = 1696, .external_lex_state = 3}, + [7586] = {.lex_state = 1696}, + [7587] = {.lex_state = 1696}, + [7588] = {.lex_state = 1696, .external_lex_state = 4}, + [7589] = {.lex_state = 1696}, + [7590] = {.lex_state = 1696}, + [7591] = {.lex_state = 1696, .external_lex_state = 3}, + [7592] = {.lex_state = 1696, .external_lex_state = 3}, + [7593] = {.lex_state = 1692}, + [7594] = {.lex_state = 359}, + [7595] = {.lex_state = 361}, + [7596] = {.lex_state = 1696}, + [7597] = {.lex_state = 1696, .external_lex_state = 3}, + [7598] = {.lex_state = 1696}, + [7599] = {.lex_state = 3152}, + [7600] = {.lex_state = 1696}, + [7601] = {.lex_state = 1696, .external_lex_state = 4}, + [7602] = {.lex_state = 1627}, + [7603] = {.lex_state = 1696}, + [7604] = {.lex_state = 1696, .external_lex_state = 3}, + [7605] = {.lex_state = 1692}, + [7606] = {.lex_state = 1696}, + [7607] = {.lex_state = 1696}, + [7608] = {.lex_state = 1696}, + [7609] = {.lex_state = 1696, .external_lex_state = 3}, + [7610] = {.lex_state = 1696}, + [7611] = {.lex_state = 1696}, + [7612] = {.lex_state = 1696}, + [7613] = {.lex_state = 1696}, + [7614] = {.lex_state = 1696, .external_lex_state = 4}, + [7615] = {.lex_state = 1627}, + [7616] = {.lex_state = 1696, .external_lex_state = 3}, + [7617] = {.lex_state = 1696}, + [7618] = {.lex_state = 1696}, + [7619] = {.lex_state = 1692}, + [7620] = {.lex_state = 1692}, + [7621] = {.lex_state = 219}, + [7622] = {.lex_state = 1696, .external_lex_state = 3}, + [7623] = {.lex_state = 1696}, + [7624] = {.lex_state = 3152}, + [7625] = {.lex_state = 3152}, + [7626] = {.lex_state = 1696}, + [7627] = {.lex_state = 1696, .external_lex_state = 4}, + [7628] = {.lex_state = 1627}, + [7629] = {.lex_state = 1696, .external_lex_state = 3}, + [7630] = {.lex_state = 1696}, + [7631] = {.lex_state = 1696}, + [7632] = {.lex_state = 1696}, + [7633] = {.lex_state = 1696, .external_lex_state = 3}, + [7634] = {.lex_state = 1696}, + [7635] = {.lex_state = 1696}, + [7636] = {.lex_state = 1696, .external_lex_state = 3}, + [7637] = {.lex_state = 1696, .external_lex_state = 3}, + [7638] = {.lex_state = 1696}, + [7639] = {.lex_state = 1696, .external_lex_state = 3}, + [7640] = {.lex_state = 1696, .external_lex_state = 4}, + [7641] = {.lex_state = 1627}, + [7642] = {.lex_state = 5462}, + [7643] = {.lex_state = 3152}, + [7644] = {.lex_state = 1696, .external_lex_state = 3}, + [7645] = {.lex_state = 1696}, + [7646] = {.lex_state = 1696}, + [7647] = {.lex_state = 1696, .external_lex_state = 3}, + [7648] = {.lex_state = 1696}, + [7649] = {.lex_state = 359}, + [7650] = {.lex_state = 1696, .external_lex_state = 3}, + [7651] = {.lex_state = 1696}, + [7652] = {.lex_state = 1696, .external_lex_state = 4}, + [7653] = {.lex_state = 1696, .external_lex_state = 4}, + [7654] = {.lex_state = 1627}, + [7655] = {.lex_state = 1696}, + [7656] = {.lex_state = 5464}, + [7657] = {.lex_state = 368}, + [7658] = {.lex_state = 1694}, + [7659] = {.lex_state = 1696}, + [7660] = {.lex_state = 1694}, + [7661] = {.lex_state = 1696}, + [7662] = {.lex_state = 1627}, + [7663] = {.lex_state = 1696, .external_lex_state = 4}, + [7664] = {.lex_state = 1627}, + [7665] = {.lex_state = 1696}, + [7666] = {.lex_state = 30}, + [7667] = {.lex_state = 1696}, + [7668] = {.lex_state = 1696}, + [7669] = {.lex_state = 1696}, + [7670] = {.lex_state = 1696}, + [7671] = {.lex_state = 1696}, + [7672] = {.lex_state = 1692}, + [7673] = {.lex_state = 1696, .external_lex_state = 4}, + [7674] = {.lex_state = 1696}, + [7675] = {.lex_state = 1696}, + [7676] = {.lex_state = 1696}, + [7677] = {.lex_state = 1696}, + [7678] = {.lex_state = 1696}, + [7679] = {.lex_state = 1696}, + [7680] = {.lex_state = 359}, + [7681] = {.lex_state = 33}, + [7682] = {.lex_state = 1696, .external_lex_state = 4}, + [7683] = {.lex_state = 1696}, + [7684] = {.lex_state = 1775}, + [7685] = {.lex_state = 1696}, + [7686] = {.lex_state = 5462}, + [7687] = {.lex_state = 1696}, + [7688] = {.lex_state = 1696}, + [7689] = {.lex_state = 1696}, + [7690] = {.lex_state = 1696}, + [7691] = {.lex_state = 1696, .external_lex_state = 4}, + [7692] = {.lex_state = 1696, .external_lex_state = 4}, + [7693] = {.lex_state = 1696, .external_lex_state = 4}, + [7694] = {.lex_state = 1696, .external_lex_state = 4}, + [7695] = {.lex_state = 1696, .external_lex_state = 4}, + [7696] = {.lex_state = 1696, .external_lex_state = 4}, + [7697] = {.lex_state = 1696, .external_lex_state = 4}, + [7698] = {.lex_state = 1696, .external_lex_state = 4}, + [7699] = {.lex_state = 1696, .external_lex_state = 4}, + [7700] = {.lex_state = 1696, .external_lex_state = 4}, + [7701] = {.lex_state = 1696, .external_lex_state = 4}, + [7702] = {.lex_state = 1696, .external_lex_state = 4}, + [7703] = {.lex_state = 1696, .external_lex_state = 4}, + [7704] = {.lex_state = 1696, .external_lex_state = 4}, + [7705] = {.lex_state = 1696, .external_lex_state = 4}, + [7706] = {.lex_state = 1696, .external_lex_state = 4}, + [7707] = {.lex_state = 1696, .external_lex_state = 4}, + [7708] = {.lex_state = 1696, .external_lex_state = 4}, + [7709] = {.lex_state = 1696, .external_lex_state = 4}, + [7710] = {.lex_state = 1696, .external_lex_state = 4}, + [7711] = {.lex_state = 1696, .external_lex_state = 4}, + [7712] = {.lex_state = 1696, .external_lex_state = 4}, + [7713] = {.lex_state = 3152}, + [7714] = {.lex_state = 140}, + [7715] = {.lex_state = 3152}, + [7716] = {.lex_state = 1696, .external_lex_state = 3}, + [7717] = {.lex_state = 1696}, + [7718] = {.lex_state = 1692}, + [7719] = {.lex_state = 363}, + [7720] = {.lex_state = 3152}, + [7721] = {.lex_state = 368}, + [7722] = {.lex_state = 1696}, + [7723] = {.lex_state = 1665}, + [7724] = {.lex_state = 1692}, + [7725] = {.lex_state = 359}, + [7726] = {.lex_state = 368}, + [7727] = {.lex_state = 368}, + [7728] = {.lex_state = 30}, + [7729] = {.lex_state = 1696}, + [7730] = {.lex_state = 1696}, + [7731] = {.lex_state = 1696}, + [7732] = {.lex_state = 1696}, + [7733] = {.lex_state = 1696}, + [7734] = {.lex_state = 5464}, + [7735] = {.lex_state = 1696}, + [7736] = {.lex_state = 30}, + [7737] = {.lex_state = 1692}, + [7738] = {.lex_state = 1696, .external_lex_state = 3}, + [7739] = {.lex_state = 359}, + [7740] = {.lex_state = 1696}, + [7741] = {.lex_state = 1696}, + [7742] = {.lex_state = 3152}, + [7743] = {.lex_state = 1692}, + [7744] = {.lex_state = 1696}, + [7745] = {.lex_state = 1696}, + [7746] = {.lex_state = 1696}, + [7747] = {.lex_state = 1696}, + [7748] = {.lex_state = 5480}, + [7749] = {.lex_state = 1696}, + [7750] = {.lex_state = 1696}, + [7751] = {.lex_state = 1696}, + [7752] = {.lex_state = 140}, + [7753] = {.lex_state = 1696}, + [7754] = {.lex_state = 1696}, + [7755] = {.lex_state = 1696}, + [7756] = {.lex_state = 266}, + [7757] = {.lex_state = 1696}, + [7758] = {.lex_state = 1696}, + [7759] = {.lex_state = 1696}, + [7760] = {.lex_state = 3152}, + [7761] = {.lex_state = 33}, + [7762] = {.lex_state = 1692}, + [7763] = {.lex_state = 1696}, + [7764] = {.lex_state = 1696}, + [7765] = {.lex_state = 1696}, + [7766] = {.lex_state = 1696}, + [7767] = {.lex_state = 1627}, + [7768] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -72621,7 +68380,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1), - [aux_sym_record_entry_token1] = ACTIONS(1), + [anon_sym_COLON2] = ACTIONS(1), + [anon_sym_DOT2] = ACTIONS(1), [aux_sym_env_var_token1] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), [aux_sym__unquoted_in_record_token1] = ACTIONS(1), @@ -72632,83 +68392,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(8282), - [sym_shebang] = STATE(70), - [sym__block_body_statement] = STATE(6763), - [sym__declaration] = STATE(7752), - [sym_decl_alias] = STATE(7471), - [sym_stmt_let] = STATE(7480), - [sym_stmt_mut] = STATE(7480), - [sym_stmt_const] = STATE(7480), - [sym_assignment] = STATE(7480), - [sym__mutable_assignment_pattern] = STATE(7499), - [sym__statement] = STATE(7752), - [sym_pipeline] = STATE(7480), - [sym__block_body] = STATE(8662), - [sym_cmd_identifier] = STATE(5044), - [sym_decl_def] = STATE(7471), - [sym_decl_export] = STATE(7471), - [sym_decl_extern] = STATE(7471), - [sym_decl_module] = STATE(7471), - [sym_decl_use] = STATE(7471), - [sym__ctrl_statement] = STATE(7480), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_for] = STATE(7673), - [sym_ctrl_loop] = STATE(7673), - [sym_ctrl_error] = STATE(7673), - [sym_ctrl_while] = STATE(7673), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_stmt_source] = STATE(7480), - [sym_stmt_register] = STATE(7480), - [sym__stmt_hide] = STATE(7480), - [sym_hide_mod] = STATE(7738), - [sym_hide_env] = STATE(7738), - [sym__stmt_overlay] = STATE(7480), - [sym_overlay_list] = STATE(7418), - [sym_overlay_hide] = STATE(7418), - [sym_overlay_new] = STATE(7418), - [sym_overlay_use] = STATE(7418), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), + [sym_nu_script] = STATE(7429), + [sym_shebang] = STATE(62), + [sym__block_body_statement] = STATE(6345), + [sym__declaration] = STATE(7184), + [sym_decl_alias] = STATE(6676), + [sym_stmt_let] = STATE(6701), + [sym_stmt_mut] = STATE(6701), + [sym_stmt_const] = STATE(6701), + [sym_assignment] = STATE(6701), + [sym__mutable_assignment_pattern] = STATE(6871), + [sym__statement] = STATE(7184), + [sym_pipeline] = STATE(6701), + [sym__block_body] = STATE(7608), + [sym_cmd_identifier] = STATE(4394), + [sym_decl_def] = STATE(6676), + [sym_decl_export] = STATE(6676), + [sym_decl_extern] = STATE(6676), + [sym_decl_module] = STATE(6676), + [sym_decl_use] = STATE(6676), + [sym__ctrl_statement] = STATE(6701), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_for] = STATE(6705), + [sym_ctrl_loop] = STATE(6705), + [sym_ctrl_error] = STATE(6705), + [sym_ctrl_while] = STATE(6705), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_stmt_source] = STATE(6701), + [sym_stmt_register] = STATE(6701), + [sym__stmt_hide] = STATE(6701), + [sym_hide_mod] = STATE(6808), + [sym_hide_env] = STATE(6808), + [sym__stmt_overlay] = STATE(6701), + [sym_overlay_list] = STATE(6812), + [sym_overlay_hide] = STATE(6812), + [sym_overlay_new] = STATE(6812), + [sym_overlay_use] = STATE(6812), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(1500), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(7414), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym__block_body_repeat1] = STATE(117), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(328), + [aux_sym_shebang_repeat1] = STATE(6720), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(99), + [aux_sym__block_body_repeat2] = STATE(135), + [aux_sym_pipe_element_repeat2] = STATE(308), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -72820,91 +68580,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(123), }, [2] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8510), - [sym_cmd_identifier] = STATE(4873), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym__match_pattern_record_variable] = STATE(699), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2112), - [sym__spread_parenthesized] = STATE(680), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(681), - [sym_val_variable] = STATE(162), - [sym_val_number] = STATE(2526), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2526), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(680), - [sym_record_body] = STATE(8375), - [sym_record_entry] = STATE(591), - [sym__record_key] = STATE(8310), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7527), + [sym_cmd_identifier] = STATE(4254), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(103), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym__match_pattern_record_variable] = STATE(686), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2069), + [sym__spread_parenthesized] = STATE(676), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(677), + [sym_val_variable] = STATE(149), + [sym_val_number] = STATE(2429), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2429), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(676), + [sym_record_body] = STATE(7531), + [sym_record_entry] = STATE(577), + [sym__record_key] = STATE(7462), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym__match_pattern_record_repeat1] = STATE(213), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym__match_pattern_record_repeat1] = STATE(199), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(125), [anon_sym_alias] = ACTIONS(127), [anon_sym_let] = ACTIONS(129), @@ -73025,89 +68785,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [3] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8246), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8554), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7568), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7611), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73228,89 +68988,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [4] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8283), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8554), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7610), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(94), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7415), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73431,89 +69191,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [5] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8510), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8375), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7467), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7611), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73634,89 +69394,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [6] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8321), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7527), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8523), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7531), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73837,89 +69597,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [7] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8520), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8523), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7763), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7547), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74040,89 +69800,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [8] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8618), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8375), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7526), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7547), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74243,89 +70003,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [9] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8520), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7370), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8295), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7531), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74446,89 +70206,495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [10] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8293), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8601), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7526), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7679), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(10), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), + [anon_sym_export] = ACTIONS(255), + [anon_sym_alias] = ACTIONS(257), + [anon_sym_let] = ACTIONS(259), + [anon_sym_let_DASHenv] = ACTIONS(259), + [anon_sym_mut] = ACTIONS(261), + [anon_sym_const] = ACTIONS(263), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_def] = ACTIONS(265), + [anon_sym_export_DASHenv] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_module] = ACTIONS(271), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(277), + [anon_sym_DASH2] = ACTIONS(163), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in2] = ACTIONS(285), + [anon_sym_loop] = ACTIONS(287), + [anon_sym_make] = ACTIONS(285), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_else] = ACTIONS(285), + [anon_sym_match] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(299), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_return] = ACTIONS(301), + [anon_sym_source] = ACTIONS(303), + [anon_sym_source_DASHenv] = ACTIONS(303), + [anon_sym_register] = ACTIONS(305), + [anon_sym_hide] = ACTIONS(307), + [anon_sym_hide_DASHenv] = ACTIONS(309), + [anon_sym_overlay] = ACTIONS(311), + [anon_sym_as] = ACTIONS(285), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [11] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7676), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7732), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(11), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), + [anon_sym_export] = ACTIONS(255), + [anon_sym_alias] = ACTIONS(257), + [anon_sym_let] = ACTIONS(259), + [anon_sym_let_DASHenv] = ACTIONS(259), + [anon_sym_mut] = ACTIONS(261), + [anon_sym_const] = ACTIONS(263), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_def] = ACTIONS(265), + [anon_sym_export_DASHenv] = ACTIONS(267), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_module] = ACTIONS(271), + [anon_sym_use] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(277), + [anon_sym_DASH2] = ACTIONS(163), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in2] = ACTIONS(285), + [anon_sym_loop] = ACTIONS(287), + [anon_sym_make] = ACTIONS(285), + [anon_sym_while] = ACTIONS(289), + [anon_sym_do] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_else] = ACTIONS(285), + [anon_sym_match] = ACTIONS(295), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(299), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_return] = ACTIONS(301), + [anon_sym_source] = ACTIONS(303), + [anon_sym_source_DASHenv] = ACTIONS(303), + [anon_sym_register] = ACTIONS(305), + [anon_sym_hide] = ACTIONS(307), + [anon_sym_hide_DASHenv] = ACTIONS(309), + [anon_sym_overlay] = ACTIONS(311), + [anon_sym_as] = ACTIONS(285), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [12] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7731), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(112), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7589), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(12), [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74600,7 +70766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -74648,90 +70814,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [11] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8568), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8497), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(11), + [13] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7766), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7454), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(13), [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74803,7 +70969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -74851,90 +71017,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [12] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8496), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8657), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(12), + [14] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7449), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7494), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(14), [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75006,7 +71172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(339), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -75054,90 +71220,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [13] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8652), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8464), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(13), + [15] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7492), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7432), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(15), [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75209,7 +71375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(341), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -75257,90 +71423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [14] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8398), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8238), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [16] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7430), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7590), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(16), + [aux_sym_shebang_repeat1] = STATE(21), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75412,7 +71578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -75460,90 +71626,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [15] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8237), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8450), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [17] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7492), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7417), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(17), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75615,7 +71781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -75663,90 +71829,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [16] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8448), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8224), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [18] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7586), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7502), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(18), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75818,7 +71984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -75866,293 +72032,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [17] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8398), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8281), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(17), + [19] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7416), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7612), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(19), [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [18] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8635), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(133), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8566), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76224,7 +72187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(349), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -76272,90 +72235,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [19] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8280), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8258), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [20] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7501), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7744), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(20), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76427,7 +72390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -76475,90 +72438,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [20] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8237), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8385), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [21] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7757), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(21), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76630,7 +72592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -76678,90 +72639,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [21] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8558), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8441), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [22] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7484), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(97), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(22), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -76833,7 +72793,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(353), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -76881,90 +72840,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [22] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8255), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), + [23] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7418), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), [sym_parameter_pipes] = STATE(104), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8494), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(216), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(23), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77036,7 +72994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(295), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(299), [anon_sym_catch] = ACTIONS(285), @@ -77084,89 +73041,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [23] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8642), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [24] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7557), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(24), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77285,89 +73242,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [24] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8292), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [25] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7382), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(25), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77486,89 +73443,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [25] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8350), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [26] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7670), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(26), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77687,89 +73644,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [26] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8307), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(139), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [27] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7674), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(27), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -77888,89 +73845,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [27] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8333), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [28] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7623), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(28), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -78089,89 +74046,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [28] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8477), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [29] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7551), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(93), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(29), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -78290,89 +74247,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [29] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8401), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [30] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7464), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(30), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -78491,89 +74448,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [30] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8665), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [31] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7435), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(31), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -78692,89 +74649,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [31] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8330), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [32] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7517), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(32), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -78893,89 +74850,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [32] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8476), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), - [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), + [33] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7631), + [sym_cmd_identifier] = STATE(4208), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(100), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(2065), + [sym__spread_parenthesized] = STATE(7262), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(1471), + [sym_val_number] = STATE(2423), + [sym__val_number_decimal] = STATE(810), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2423), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(33), + [aux_sym_shebang_repeat1] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -79094,185 +75051,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [33] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8629), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), + [34] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7582), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(34), + [aux_sym_shebang_repeat1] = STATE(38), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -79288,192 +75232,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [34] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8315), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), + [35] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7689), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(35), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -79489,192 +75419,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [35] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8369), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), + [36] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7467), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(36), + [aux_sym_shebang_repeat1] = STATE(40), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -79690,192 +75606,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [36] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8653), - [sym_cmd_identifier] = STATE(4812), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2160), - [sym__spread_parenthesized] = STATE(8135), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(1481), - [sym_val_number] = STATE(2447), + [37] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7763), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), [sym__val_number_decimal] = STATE(812), - [sym__val_number] = STATE(2431), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2447), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(203), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_record_body_repeat1] = STATE(220), - [anon_sym_export] = ACTIONS(255), - [anon_sym_alias] = ACTIONS(257), - [anon_sym_let] = ACTIONS(259), - [anon_sym_let_DASHenv] = ACTIONS(259), - [anon_sym_mut] = ACTIONS(261), - [anon_sym_const] = ACTIONS(263), - [aux_sym_cmd_identifier_token1] = ACTIONS(135), - [aux_sym_cmd_identifier_token2] = ACTIONS(137), - [aux_sym_cmd_identifier_token3] = ACTIONS(137), - [aux_sym_cmd_identifier_token4] = ACTIONS(137), - [aux_sym_cmd_identifier_token5] = ACTIONS(137), - [aux_sym_cmd_identifier_token6] = ACTIONS(137), - [aux_sym_cmd_identifier_token7] = ACTIONS(137), - [aux_sym_cmd_identifier_token8] = ACTIONS(135), - [aux_sym_cmd_identifier_token9] = ACTIONS(135), - [aux_sym_cmd_identifier_token10] = ACTIONS(137), - [aux_sym_cmd_identifier_token11] = ACTIONS(137), - [aux_sym_cmd_identifier_token12] = ACTIONS(135), - [aux_sym_cmd_identifier_token13] = ACTIONS(135), - [aux_sym_cmd_identifier_token14] = ACTIONS(135), - [aux_sym_cmd_identifier_token15] = ACTIONS(135), - [aux_sym_cmd_identifier_token16] = ACTIONS(137), - [aux_sym_cmd_identifier_token17] = ACTIONS(137), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(137), - [aux_sym_cmd_identifier_token20] = ACTIONS(137), - [aux_sym_cmd_identifier_token21] = ACTIONS(137), - [aux_sym_cmd_identifier_token22] = ACTIONS(137), - [aux_sym_cmd_identifier_token23] = ACTIONS(137), - [aux_sym_cmd_identifier_token24] = ACTIONS(137), - [aux_sym_cmd_identifier_token25] = ACTIONS(137), - [aux_sym_cmd_identifier_token26] = ACTIONS(137), - [aux_sym_cmd_identifier_token27] = ACTIONS(137), - [aux_sym_cmd_identifier_token28] = ACTIONS(137), - [aux_sym_cmd_identifier_token29] = ACTIONS(137), - [aux_sym_cmd_identifier_token30] = ACTIONS(137), - [aux_sym_cmd_identifier_token31] = ACTIONS(137), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(137), - [aux_sym_cmd_identifier_token34] = ACTIONS(135), - [aux_sym_cmd_identifier_token35] = ACTIONS(137), - [aux_sym_cmd_identifier_token36] = ACTIONS(137), - [aux_sym_cmd_identifier_token37] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(135), - [aux_sym_cmd_identifier_token39] = ACTIONS(137), - [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(139), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(37), + [aux_sym_shebang_repeat1] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(265), - [anon_sym_export_DASHenv] = ACTIONS(267), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_use] = ACTIONS(273), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(277), - [anon_sym_DASH2] = ACTIONS(163), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(281), - [anon_sym_for] = ACTIONS(283), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(287), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(295), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(299), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(301), - [anon_sym_source] = ACTIONS(303), - [anon_sym_source_DASHenv] = ACTIONS(303), - [anon_sym_register] = ACTIONS(305), - [anon_sym_hide] = ACTIONS(307), - [anon_sym_hide_DASHenv] = ACTIONS(309), - [anon_sym_overlay] = ACTIONS(311), - [anon_sym_as] = ACTIONS(285), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(219), - [aux_sym__val_number_decimal_token2] = ACTIONS(221), - [aux_sym__val_number_decimal_token3] = ACTIONS(223), - [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -79891,355 +75793,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [37] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8545), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, [38] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8321), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7382), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_shebang_repeat1] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(441), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -80247,186 +75960,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [39] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8246), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7526), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_shebang_repeat1] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(443), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -80434,186 +76146,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [40] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8514), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7484), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(97), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_shebang_repeat1] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -80621,185 +76332,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [41] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8307), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(139), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7557), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(224), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_shebang_repeat1] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -80807,185 +76518,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [42] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8350), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7568), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(224), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_shebang_repeat1] = STATE(40), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -80993,185 +76704,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [43] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8520), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7757), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_shebang_repeat1] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(141), [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -81179,4914 +76890,3432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [44] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8283), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7577), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(455), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [45] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8629), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7750), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(224), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(471), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [46] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8333), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7607), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(224), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(371), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(143), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), + [anon_sym_RPAREN2] = ACTIONS(475), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8506), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7669), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(457), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(473), + [anon_sym_RPAREN2] = ACTIONS(479), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8383), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7741), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(487), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(489), + [anon_sym_RPAREN2] = ACTIONS(483), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8416), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7486), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(491), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), + [anon_sym_RPAREN2] = ACTIONS(487), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8299), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7414), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(497), + [anon_sym_RPAREN2] = ACTIONS(491), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8440), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7442), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(499), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(501), + [anon_sym_RPAREN2] = ACTIONS(495), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8268), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7722), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(505), + [anon_sym_RPAREN2] = ACTIONS(499), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8366), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7428), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(507), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(497), + [anon_sym_RPAREN2] = ACTIONS(503), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8493), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7407), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(509), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(511), + [anon_sym_RPAREN2] = ACTIONS(507), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8291), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7730), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(513), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(497), + [anon_sym_RPAREN2] = ACTIONS(479), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8610), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7500), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(511), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(517), + [anon_sym_RPAREN2] = ACTIONS(513), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8607), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7447), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(519), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(521), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8552), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7598), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(525), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8565), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7722), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(497), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8614), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7603), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(531), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8311), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7420), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(535), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8612), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), + [sym__block_body_statement] = STATE(6345), + [sym__declaration] = STATE(7184), + [sym_decl_alias] = STATE(6676), + [sym_stmt_let] = STATE(6701), + [sym_stmt_mut] = STATE(6701), + [sym_stmt_const] = STATE(6701), + [sym_assignment] = STATE(6701), + [sym__mutable_assignment_pattern] = STATE(6871), + [sym__statement] = STATE(7184), + [sym_pipeline] = STATE(6701), + [sym__block_body] = STATE(7538), + [sym_cmd_identifier] = STATE(4394), + [sym_decl_def] = STATE(6676), + [sym_decl_export] = STATE(6676), + [sym_decl_extern] = STATE(6676), + [sym_decl_module] = STATE(6676), + [sym_decl_use] = STATE(6676), + [sym__ctrl_statement] = STATE(6701), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_for] = STATE(6705), + [sym_ctrl_loop] = STATE(6705), + [sym_ctrl_error] = STATE(6705), + [sym_ctrl_while] = STATE(6705), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_stmt_source] = STATE(6701), + [sym_stmt_register] = STATE(6701), + [sym__stmt_hide] = STATE(6701), + [sym_hide_mod] = STATE(6808), + [sym_hide_env] = STATE(6808), + [sym__stmt_overlay] = STATE(6701), + [sym_overlay_list] = STATE(6812), + [sym_overlay_hide] = STATE(6812), + [sym_overlay_new] = STATE(6812), + [sym_overlay_use] = STATE(6812), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(1500), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(531), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [63] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8254), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(541), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [64] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8235), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [65] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8507), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [66] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8428), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(66), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [67] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8484), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8432), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8661), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [70] = { - [sym__block_body_statement] = STATE(6763), - [sym__declaration] = STATE(7752), - [sym_decl_alias] = STATE(7471), - [sym_stmt_let] = STATE(7480), - [sym_stmt_mut] = STATE(7480), - [sym_stmt_const] = STATE(7480), - [sym_assignment] = STATE(7480), - [sym__mutable_assignment_pattern] = STATE(7499), - [sym__statement] = STATE(7752), - [sym_pipeline] = STATE(7480), - [sym__block_body] = STATE(8358), - [sym_cmd_identifier] = STATE(5044), - [sym_decl_def] = STATE(7471), - [sym_decl_export] = STATE(7471), - [sym_decl_extern] = STATE(7471), - [sym_decl_module] = STATE(7471), - [sym_decl_use] = STATE(7471), - [sym__ctrl_statement] = STATE(7480), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_for] = STATE(7673), - [sym_ctrl_loop] = STATE(7673), - [sym_ctrl_error] = STATE(7673), - [sym_ctrl_while] = STATE(7673), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_stmt_source] = STATE(7480), - [sym_stmt_register] = STATE(7480), - [sym__stmt_hide] = STATE(7480), - [sym_hide_mod] = STATE(7738), - [sym_hide_env] = STATE(7738), - [sym__stmt_overlay] = STATE(7480), - [sym_overlay_list] = STATE(7418), - [sym_overlay_hide] = STATE(7418), - [sym_overlay_new] = STATE(7418), - [sym_overlay_use] = STATE(7418), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(70), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym__block_body_repeat1] = STATE(117), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_pipe_element_repeat2] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(553), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(99), + [aux_sym__block_body_repeat2] = STATE(135), + [aux_sym_pipe_element_repeat2] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(523), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -86195,6777 +80424,5126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8645), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [63] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7750), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8656), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [64] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7751), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [73] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8313), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [65] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7559), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [74] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8337), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [66] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7530), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [75] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8377), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7753), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8316), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [68] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7383), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8338), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8615), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [79] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8630), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [80] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8444), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8673), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(575), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8634), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8402), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8550), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [85] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8234), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8536), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7730), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8331), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [70] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7745), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8480), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7758), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8230), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7669), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8372), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [73] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7733), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8644), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7486), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8296), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7626), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [93] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8400), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7554), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8453), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7465), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8500), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7671), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [96] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8542), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7436), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8622), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [80] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7518), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(80), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8659), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [81] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7635), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [99] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8667), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(99), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7764), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8363), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7427), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [101] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8465), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7463), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(443), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [102] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8248), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(102), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7493), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [103] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8277), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(103), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7528), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [104] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8286), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(104), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [87] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7539), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [105] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8376), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [88] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7546), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [106] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8616), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(106), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7555), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [107] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8320), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [90] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7746), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -92973,548 +85551,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [108] = { - [sym__block_body_statement_parenthesized] = STATE(6337), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(108), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(217), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(149), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [91] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7485), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [109] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8256), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [92] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7675), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(92), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [110] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8608), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1580), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(115), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [93] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7645), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(93), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -93522,182 +86102,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [111] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8513), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1580), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(115), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [94] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7630), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(94), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -93705,182 +86285,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [112] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8563), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [95] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7389), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1521), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(95), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(128), + [aux_sym_pipe_element_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -93888,365 +86468,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [113] = { - [sym__block_body_statement_parenthesized] = STATE(6346), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym__parenthesized_body] = STATE(8236), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(113), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym__block_body_repeat1] = STATE(108), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(147), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [114] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8469), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [96] = { + [sym__block_body_statement] = STATE(5939), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1521), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(206), + [aux_sym__block_body_repeat2] = STATE(127), + [aux_sym_pipe_element_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -94254,182 +86651,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [115] = { - [sym__block_body_statement] = STATE(6439), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1580), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(217), - [aux_sym__block_body_repeat2] = STATE(146), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [97] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7488), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(97), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -94437,182 +86834,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [116] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8244), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1580), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat1] = STATE(115), - [aux_sym__block_body_repeat2] = STATE(143), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [98] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7685), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(98), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -94620,106 +87017,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [117] = { - [sym__block_body_statement] = STATE(7285), - [sym__declaration] = STATE(7752), - [sym_decl_alias] = STATE(7471), - [sym_stmt_let] = STATE(7480), - [sym_stmt_mut] = STATE(7480), - [sym_stmt_const] = STATE(7480), - [sym_assignment] = STATE(7480), - [sym__mutable_assignment_pattern] = STATE(7499), - [sym__statement] = STATE(7752), - [sym_pipeline] = STATE(7480), - [sym_cmd_identifier] = STATE(5044), - [sym_decl_def] = STATE(7471), - [sym_decl_export] = STATE(7471), - [sym_decl_extern] = STATE(7471), - [sym_decl_module] = STATE(7471), - [sym_decl_use] = STATE(7471), - [sym__ctrl_statement] = STATE(7480), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_for] = STATE(7673), - [sym_ctrl_loop] = STATE(7673), - [sym_ctrl_error] = STATE(7673), - [sym_ctrl_while] = STATE(7673), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_stmt_source] = STATE(7480), - [sym_stmt_register] = STATE(7480), - [sym__stmt_hide] = STATE(7480), - [sym_hide_mod] = STATE(7738), - [sym_hide_env] = STATE(7738), - [sym__stmt_overlay] = STATE(7480), - [sym_overlay_list] = STATE(7418), - [sym_overlay_hide] = STATE(7418), - [sym_overlay_new] = STATE(7418), - [sym_overlay_use] = STATE(7418), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym__block_body_repeat1] = STATE(227), - [aux_sym__block_body_repeat2] = STATE(148), - [aux_sym_pipe_element_repeat2] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(631), + [99] = { + [sym__block_body_statement] = STATE(6553), + [sym__declaration] = STATE(7184), + [sym_decl_alias] = STATE(6676), + [sym_stmt_let] = STATE(6701), + [sym_stmt_mut] = STATE(6701), + [sym_stmt_const] = STATE(6701), + [sym_assignment] = STATE(6701), + [sym__mutable_assignment_pattern] = STATE(6871), + [sym__statement] = STATE(7184), + [sym_pipeline] = STATE(6701), + [sym_cmd_identifier] = STATE(4394), + [sym_decl_def] = STATE(6676), + [sym_decl_export] = STATE(6676), + [sym_decl_extern] = STATE(6676), + [sym_decl_module] = STATE(6676), + [sym_decl_use] = STATE(6676), + [sym__ctrl_statement] = STATE(6701), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_for] = STATE(6705), + [sym_ctrl_loop] = STATE(6705), + [sym_ctrl_error] = STATE(6705), + [sym_ctrl_while] = STATE(6705), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_stmt_source] = STATE(6701), + [sym_stmt_register] = STATE(6701), + [sym__stmt_hide] = STATE(6701), + [sym_hide_mod] = STATE(6808), + [sym_hide_env] = STATE(6808), + [sym__stmt_overlay] = STATE(6701), + [sym_overlay_list] = STATE(6812), + [sym_overlay_hide] = STATE(6812), + [sym_overlay_new] = STATE(6812), + [sym_overlay_use] = STATE(6812), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(1500), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(99), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(238), + [aux_sym__block_body_repeat2] = STATE(132), + [aux_sym_pipe_element_repeat2] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(595), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -94828,157 +87225,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [118] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8332), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [100] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7655), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(100), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -94986,365 +87383,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [119] = { - [sym__block_body_statement] = STATE(6439), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(217), - [aux_sym__block_body_repeat2] = STATE(142), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [101] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7506), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(631), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [120] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8359), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [102] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7648), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1521), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(102), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym__block_body_repeat2] = STATE(128), + [aux_sym_pipe_element_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -95352,182 +87749,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [121] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8626), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [103] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7411), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(103), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -95535,182 +87932,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [122] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8648), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [104] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7397), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(104), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -95718,182 +88115,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [123] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8461), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [105] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7540), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -95901,182 +88298,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [124] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8482), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [106] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7532), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -96084,182 +88481,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [125] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8393), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [107] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7381), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(107), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -96267,182 +88664,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [126] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8455), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [108] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7426), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(108), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -96450,182 +88847,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [127] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8654), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [109] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7755), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(109), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -96633,365 +89030,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [128] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8411), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [110] = { + [sym__block_body_statement_parenthesized] = STATE(5753), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(110), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(206), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [129] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8326), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [111] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7385), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(111), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -96999,182 +89396,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [130] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8353), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [112] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7661), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(112), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -97182,182 +89579,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [131] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8474), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [113] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7376), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -97365,182 +89762,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [132] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8501), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [114] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7561), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(114), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -97548,182 +89945,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [133] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8252), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [115] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7690), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(115), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -97731,182 +90128,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [134] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8676), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [116] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7550), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -97914,182 +90311,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [135] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8368), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [117] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7460), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(117), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98097,182 +90494,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [136] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8396), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [118] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7477), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(118), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98280,182 +90677,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [137] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8640), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [119] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7665), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(119), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98463,182 +90860,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [138] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8660), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [120] = { + [sym__block_body_statement] = STATE(5939), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(120), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(206), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(595), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98646,182 +91043,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [139] = { - [sym__block_body_statement] = STATE(6458), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym__block_body] = STATE(8483), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat1] = STATE(119), - [aux_sym__block_body_repeat2] = STATE(145), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [121] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7687), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(121), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98829,536 +91226,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [140] = { - [sym__block_body_statement] = STATE(7285), - [sym__declaration] = STATE(7752), - [sym_decl_alias] = STATE(7471), - [sym_stmt_let] = STATE(7480), - [sym_stmt_mut] = STATE(7480), - [sym_stmt_const] = STATE(7480), - [sym_assignment] = STATE(7480), - [sym__mutable_assignment_pattern] = STATE(7499), - [sym__statement] = STATE(7752), - [sym_pipeline] = STATE(7480), - [sym_cmd_identifier] = STATE(5044), - [sym_decl_def] = STATE(7471), - [sym_decl_export] = STATE(7471), - [sym_decl_extern] = STATE(7471), - [sym_decl_module] = STATE(7471), - [sym_decl_use] = STATE(7471), - [sym__ctrl_statement] = STATE(7480), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_for] = STATE(7673), - [sym_ctrl_loop] = STATE(7673), - [sym_ctrl_error] = STATE(7673), - [sym_ctrl_while] = STATE(7673), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_stmt_source] = STATE(7480), - [sym_stmt_register] = STATE(7480), - [sym__stmt_hide] = STATE(7480), - [sym_hide_mod] = STATE(7738), - [sym_hide_env] = STATE(7738), - [sym__stmt_overlay] = STATE(7480), - [sym_overlay_list] = STATE(7418), - [sym_overlay_hide] = STATE(7418), - [sym_overlay_new] = STATE(7418), - [sym_overlay_use] = STATE(7418), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(328), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [122] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7434), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(122), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, - [141] = { - [sym__block_body_statement] = STATE(7412), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1642), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(322), - [anon_sym_export] = ACTIONS(633), - [anon_sym_alias] = ACTIONS(636), - [anon_sym_let] = ACTIONS(639), - [anon_sym_let_DASHenv] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(642), - [anon_sym_const] = ACTIONS(645), - [aux_sym_cmd_identifier_token1] = ACTIONS(648), - [aux_sym_cmd_identifier_token2] = ACTIONS(651), - [aux_sym_cmd_identifier_token3] = ACTIONS(651), - [aux_sym_cmd_identifier_token4] = ACTIONS(651), - [aux_sym_cmd_identifier_token5] = ACTIONS(651), - [aux_sym_cmd_identifier_token6] = ACTIONS(651), - [aux_sym_cmd_identifier_token7] = ACTIONS(651), - [aux_sym_cmd_identifier_token8] = ACTIONS(648), - [aux_sym_cmd_identifier_token9] = ACTIONS(648), - [aux_sym_cmd_identifier_token10] = ACTIONS(651), - [aux_sym_cmd_identifier_token11] = ACTIONS(651), - [aux_sym_cmd_identifier_token12] = ACTIONS(648), - [aux_sym_cmd_identifier_token13] = ACTIONS(648), - [aux_sym_cmd_identifier_token14] = ACTIONS(648), - [aux_sym_cmd_identifier_token15] = ACTIONS(648), - [aux_sym_cmd_identifier_token16] = ACTIONS(651), - [aux_sym_cmd_identifier_token17] = ACTIONS(651), - [aux_sym_cmd_identifier_token18] = ACTIONS(648), - [aux_sym_cmd_identifier_token19] = ACTIONS(651), - [aux_sym_cmd_identifier_token20] = ACTIONS(651), - [aux_sym_cmd_identifier_token21] = ACTIONS(651), - [aux_sym_cmd_identifier_token22] = ACTIONS(651), - [aux_sym_cmd_identifier_token23] = ACTIONS(651), - [aux_sym_cmd_identifier_token24] = ACTIONS(651), - [aux_sym_cmd_identifier_token25] = ACTIONS(651), - [aux_sym_cmd_identifier_token26] = ACTIONS(651), - [aux_sym_cmd_identifier_token27] = ACTIONS(651), - [aux_sym_cmd_identifier_token28] = ACTIONS(651), - [aux_sym_cmd_identifier_token29] = ACTIONS(651), - [aux_sym_cmd_identifier_token30] = ACTIONS(651), - [aux_sym_cmd_identifier_token31] = ACTIONS(651), - [aux_sym_cmd_identifier_token32] = ACTIONS(648), - [aux_sym_cmd_identifier_token33] = ACTIONS(651), - [aux_sym_cmd_identifier_token34] = ACTIONS(648), - [aux_sym_cmd_identifier_token35] = ACTIONS(651), - [aux_sym_cmd_identifier_token36] = ACTIONS(651), - [aux_sym_cmd_identifier_token37] = ACTIONS(651), - [aux_sym_cmd_identifier_token38] = ACTIONS(648), - [aux_sym_cmd_identifier_token39] = ACTIONS(651), - [aux_sym_cmd_identifier_token40] = ACTIONS(651), - [anon_sym_def] = ACTIONS(654), - [anon_sym_export_DASHenv] = ACTIONS(657), - [anon_sym_extern] = ACTIONS(660), - [anon_sym_module] = ACTIONS(663), - [anon_sym_use] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_error] = ACTIONS(678), - [anon_sym_DASH2] = ACTIONS(681), - [anon_sym_break] = ACTIONS(684), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_for] = ACTIONS(690), - [anon_sym_loop] = ACTIONS(693), - [anon_sym_while] = ACTIONS(696), - [anon_sym_do] = ACTIONS(699), - [anon_sym_if] = ACTIONS(702), - [anon_sym_match] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_DOT_DOT] = ACTIONS(711), - [anon_sym_try] = ACTIONS(714), - [anon_sym_return] = ACTIONS(717), - [anon_sym_source] = ACTIONS(720), - [anon_sym_source_DASHenv] = ACTIONS(720), - [anon_sym_register] = ACTIONS(723), - [anon_sym_hide] = ACTIONS(726), - [anon_sym_hide_DASHenv] = ACTIONS(729), - [anon_sym_overlay] = ACTIONS(732), - [anon_sym_where] = ACTIONS(735), - [aux_sym_expr_unary_token1] = ACTIONS(738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [anon_sym_DOT_DOT_LT] = ACTIONS(741), - [anon_sym_null] = ACTIONS(744), - [anon_sym_true] = ACTIONS(747), - [anon_sym_false] = ACTIONS(747), - [aux_sym__val_number_decimal_token1] = ACTIONS(750), - [aux_sym__val_number_decimal_token2] = ACTIONS(753), - [aux_sym__val_number_decimal_token3] = ACTIONS(756), - [aux_sym__val_number_decimal_token4] = ACTIONS(759), - [aux_sym__val_number_token1] = ACTIONS(762), - [aux_sym__val_number_token2] = ACTIONS(762), - [aux_sym__val_number_token3] = ACTIONS(762), - [aux_sym__val_number_token4] = ACTIONS(765), - [aux_sym__val_number_token5] = ACTIONS(765), - [aux_sym__val_number_token6] = ACTIONS(765), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(771), - [anon_sym_0x] = ACTIONS(771), - [sym_val_date] = ACTIONS(774), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(780), - [sym__str_back_ticks] = ACTIONS(780), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(786), - [aux_sym_env_var_token1] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(792), - [aux_sym_command_token1] = ACTIONS(795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(798), + [123] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7443), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(123), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [142] = { - [sym__block_body_statement] = STATE(6485), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(142), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [124] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7516), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(124), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -99366,178 +91775,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [143] = { - [sym__block_body_statement] = STATE(6439), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1580), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [125] = { + [sym__block_body_statement] = STATE(5819), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym__block_body] = STATE(7529), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(120), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -99545,357 +91958,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [144] = { - [sym__block_body_statement_parenthesized] = STATE(6871), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1631), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(144), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym__parenthesized_body_repeat2] = STATE(144), - [anon_sym_export] = ACTIONS(801), - [anon_sym_alias] = ACTIONS(804), - [anon_sym_let] = ACTIONS(807), - [anon_sym_let_DASHenv] = ACTIONS(807), - [anon_sym_mut] = ACTIONS(810), - [anon_sym_const] = ACTIONS(813), - [aux_sym_cmd_identifier_token1] = ACTIONS(816), - [aux_sym_cmd_identifier_token2] = ACTIONS(819), - [aux_sym_cmd_identifier_token3] = ACTIONS(819), - [aux_sym_cmd_identifier_token4] = ACTIONS(819), - [aux_sym_cmd_identifier_token5] = ACTIONS(819), - [aux_sym_cmd_identifier_token6] = ACTIONS(819), - [aux_sym_cmd_identifier_token7] = ACTIONS(819), - [aux_sym_cmd_identifier_token8] = ACTIONS(816), - [aux_sym_cmd_identifier_token9] = ACTIONS(816), - [aux_sym_cmd_identifier_token10] = ACTIONS(819), - [aux_sym_cmd_identifier_token11] = ACTIONS(819), - [aux_sym_cmd_identifier_token12] = ACTIONS(816), - [aux_sym_cmd_identifier_token13] = ACTIONS(816), - [aux_sym_cmd_identifier_token14] = ACTIONS(816), - [aux_sym_cmd_identifier_token15] = ACTIONS(816), - [aux_sym_cmd_identifier_token16] = ACTIONS(819), - [aux_sym_cmd_identifier_token17] = ACTIONS(819), - [aux_sym_cmd_identifier_token18] = ACTIONS(816), - [aux_sym_cmd_identifier_token19] = ACTIONS(819), - [aux_sym_cmd_identifier_token20] = ACTIONS(819), - [aux_sym_cmd_identifier_token21] = ACTIONS(819), - [aux_sym_cmd_identifier_token22] = ACTIONS(819), - [aux_sym_cmd_identifier_token23] = ACTIONS(819), - [aux_sym_cmd_identifier_token24] = ACTIONS(819), - [aux_sym_cmd_identifier_token25] = ACTIONS(819), - [aux_sym_cmd_identifier_token26] = ACTIONS(819), - [aux_sym_cmd_identifier_token27] = ACTIONS(819), - [aux_sym_cmd_identifier_token28] = ACTIONS(819), - [aux_sym_cmd_identifier_token29] = ACTIONS(819), - [aux_sym_cmd_identifier_token30] = ACTIONS(819), - [aux_sym_cmd_identifier_token31] = ACTIONS(819), - [aux_sym_cmd_identifier_token32] = ACTIONS(816), - [aux_sym_cmd_identifier_token33] = ACTIONS(819), - [aux_sym_cmd_identifier_token34] = ACTIONS(816), - [aux_sym_cmd_identifier_token35] = ACTIONS(819), - [aux_sym_cmd_identifier_token36] = ACTIONS(819), - [aux_sym_cmd_identifier_token37] = ACTIONS(819), - [aux_sym_cmd_identifier_token38] = ACTIONS(816), - [aux_sym_cmd_identifier_token39] = ACTIONS(819), - [aux_sym_cmd_identifier_token40] = ACTIONS(819), - [anon_sym_def] = ACTIONS(822), - [anon_sym_export_DASHenv] = ACTIONS(825), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_module] = ACTIONS(831), - [anon_sym_use] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(840), - [anon_sym_DOLLAR] = ACTIONS(843), - [anon_sym_error] = ACTIONS(846), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_break] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(855), - [anon_sym_for] = ACTIONS(858), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(864), - [anon_sym_do] = ACTIONS(867), - [anon_sym_if] = ACTIONS(870), - [anon_sym_match] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_try] = ACTIONS(882), - [anon_sym_return] = ACTIONS(885), - [anon_sym_source] = ACTIONS(888), - [anon_sym_source_DASHenv] = ACTIONS(888), - [anon_sym_register] = ACTIONS(891), - [anon_sym_hide] = ACTIONS(894), - [anon_sym_hide_DASHenv] = ACTIONS(897), - [anon_sym_overlay] = ACTIONS(900), - [anon_sym_where] = ACTIONS(903), - [aux_sym_expr_unary_token1] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_null] = ACTIONS(912), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [aux_sym__val_number_decimal_token1] = ACTIONS(918), - [aux_sym__val_number_decimal_token2] = ACTIONS(921), - [aux_sym__val_number_decimal_token3] = ACTIONS(924), - [aux_sym__val_number_decimal_token4] = ACTIONS(927), - [aux_sym__val_number_token1] = ACTIONS(930), - [aux_sym__val_number_token2] = ACTIONS(930), - [aux_sym__val_number_token3] = ACTIONS(930), - [aux_sym__val_number_token4] = ACTIONS(933), - [aux_sym__val_number_token5] = ACTIONS(933), - [aux_sym__val_number_token6] = ACTIONS(933), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(939), - [anon_sym_0x] = ACTIONS(939), - [sym_val_date] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym__str_single_quotes] = ACTIONS(948), - [sym__str_back_ticks] = ACTIONS(948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), - [aux_sym_env_var_token1] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(960), - [aux_sym_command_token1] = ACTIONS(963), + [126] = { + [sym__block_body_statement_parenthesized] = STATE(5602), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym__parenthesized_body] = STATE(7503), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(126), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(110), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(129), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(966), + [sym_raw_string_begin] = ACTIONS(253), }, - [145] = { - [sym__block_body_statement] = STATE(6439), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(326), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [127] = { + [sym__block_body_statement] = STATE(5960), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1521), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(127), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -99903,178 +92320,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [146] = { - [sym__block_body_statement] = STATE(6485), - [sym__declaration] = STATE(7217), - [sym_decl_alias] = STATE(7232), - [sym_stmt_let] = STATE(7280), - [sym_stmt_mut] = STATE(7280), - [sym_stmt_const] = STATE(7280), - [sym_assignment] = STATE(7280), - [sym__mutable_assignment_pattern] = STATE(7291), - [sym__statement] = STATE(7217), - [sym_pipeline] = STATE(7280), - [sym_cmd_identifier] = STATE(4846), - [sym_decl_def] = STATE(7232), - [sym_decl_export] = STATE(7232), - [sym_decl_extern] = STATE(7232), - [sym_decl_module] = STATE(7232), - [sym_decl_use] = STATE(7232), - [sym__ctrl_statement] = STATE(7280), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_stmt_source] = STATE(7280), - [sym_stmt_register] = STATE(7280), - [sym__stmt_hide] = STATE(7280), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7280), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1580), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(619), - [anon_sym_alias] = ACTIONS(621), - [anon_sym_let] = ACTIONS(623), - [anon_sym_let_DASHenv] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(625), - [anon_sym_const] = ACTIONS(627), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [128] = { + [sym__block_body_statement] = STATE(5939), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1521), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(128), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(302), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -100082,283 +92499,641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [147] = { - [sym__block_body_statement_parenthesized] = STATE(6337), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(147), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(144), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [129] = { + [sym__block_body_statement_parenthesized] = STATE(5753), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(129), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(134), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [148] = { - [sym__block_body_statement] = STATE(6764), - [sym__declaration] = STATE(7752), - [sym_decl_alias] = STATE(7471), - [sym_stmt_let] = STATE(7480), - [sym_stmt_mut] = STATE(7480), - [sym_stmt_const] = STATE(7480), - [sym_assignment] = STATE(7480), - [sym__mutable_assignment_pattern] = STATE(7499), - [sym__statement] = STATE(7752), - [sym_pipeline] = STATE(7480), - [sym_cmd_identifier] = STATE(5044), - [sym_decl_def] = STATE(7471), - [sym_decl_export] = STATE(7471), - [sym_decl_extern] = STATE(7471), - [sym_decl_module] = STATE(7471), - [sym_decl_use] = STATE(7471), - [sym__ctrl_statement] = STATE(7480), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_for] = STATE(7673), - [sym_ctrl_loop] = STATE(7673), - [sym_ctrl_error] = STATE(7673), - [sym_ctrl_while] = STATE(7673), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_stmt_source] = STATE(7480), - [sym_stmt_register] = STATE(7480), - [sym__stmt_hide] = STATE(7480), - [sym_hide_mod] = STATE(7738), - [sym_hide_env] = STATE(7738), - [sym__stmt_overlay] = STATE(7480), - [sym_overlay_list] = STATE(7418), - [sym_overlay_hide] = STATE(7418), - [sym_overlay_new] = STATE(7418), - [sym_overlay_use] = STATE(7418), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(1587), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym__block_body_repeat2] = STATE(141), - [aux_sym_pipe_element_repeat2] = STATE(328), + [130] = { + [sym__block_body_statement] = STATE(5960), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [131] = { + [sym__block_body_statement] = STATE(5939), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1529), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(131), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(303), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [132] = { + [sym__block_body_statement] = STATE(6096), + [sym__declaration] = STATE(7184), + [sym_decl_alias] = STATE(6676), + [sym_stmt_let] = STATE(6701), + [sym_stmt_mut] = STATE(6701), + [sym_stmt_const] = STATE(6701), + [sym_assignment] = STATE(6701), + [sym__mutable_assignment_pattern] = STATE(6871), + [sym__statement] = STATE(7184), + [sym_pipeline] = STATE(6701), + [sym_cmd_identifier] = STATE(4394), + [sym_decl_def] = STATE(6676), + [sym_decl_export] = STATE(6676), + [sym_decl_extern] = STATE(6676), + [sym_decl_module] = STATE(6676), + [sym_decl_use] = STATE(6676), + [sym__ctrl_statement] = STATE(6701), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_for] = STATE(6705), + [sym_ctrl_loop] = STATE(6705), + [sym_ctrl_error] = STATE(6705), + [sym_ctrl_while] = STATE(6705), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_stmt_source] = STATE(6701), + [sym_stmt_register] = STATE(6701), + [sym__stmt_hide] = STATE(6701), + [sym_hide_mod] = STATE(6808), + [sym_hide_env] = STATE(6808), + [sym__stmt_overlay] = STATE(6701), + [sym_overlay_list] = STATE(6812), + [sym_overlay_hide] = STATE(6812), + [sym_overlay_new] = STATE(6812), + [sym_overlay_use] = STATE(6812), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(1500), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(132), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(308), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -100465,1038 +93240,2720 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [149] = { - [sym__block_body_statement_parenthesized] = STATE(6161), - [sym__declaration_parenthesized] = STATE(7956), - [sym_decl_alias_parenthesized] = STATE(7973), - [sym_stmt_let_parenthesized] = STATE(7445), - [sym_stmt_mut_parenthesized] = STATE(7445), - [sym_stmt_const_parenthesized] = STATE(7445), - [sym_assignment_parenthesized] = STATE(7445), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7366), - [sym__statement_parenthesized] = STATE(7956), - [sym_pipeline_parenthesized] = STATE(7445), - [sym_cmd_identifier] = STATE(4892), - [sym_decl_def] = STATE(7973), - [sym_decl_export] = STATE(7973), - [sym_decl_extern] = STATE(7973), - [sym_decl_module] = STATE(7973), - [sym_decl_use] = STATE(7973), - [sym__ctrl_statement] = STATE(7445), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_for] = STATE(6661), - [sym_ctrl_loop] = STATE(6661), - [sym_ctrl_error] = STATE(6661), - [sym_ctrl_while] = STATE(6661), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_stmt_source] = STATE(7445), - [sym_stmt_register] = STATE(7445), - [sym__stmt_hide] = STATE(7445), - [sym_hide_mod] = STATE(6681), - [sym_hide_env] = STATE(6681), - [sym__stmt_overlay] = STATE(7445), - [sym_overlay_list] = STATE(6713), - [sym_overlay_hide] = STATE(6713), - [sym_overlay_new] = STATE(6713), - [sym_overlay_use] = STATE(6713), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(1538), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(149), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym__parenthesized_body_repeat2] = STATE(144), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_let_DASHenv] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_def] = ACTIONS(373), - [anon_sym_export_DASHenv] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(377), - [anon_sym_module] = ACTIONS(379), - [anon_sym_use] = ACTIONS(381), + [133] = { + [sym__block_body_statement_parenthesized] = STATE(5591), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1499), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym__parenthesized_body_repeat2] = STATE(134), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_error] = ACTIONS(387), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_for] = ACTIONS(395), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_source] = ACTIONS(413), - [anon_sym_source_DASHenv] = ACTIONS(413), - [anon_sym_register] = ACTIONS(415), - [anon_sym_hide] = ACTIONS(417), - [anon_sym_hide_DASHenv] = ACTIONS(419), - [anon_sym_overlay] = ACTIONS(421), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [150] = { - [sym_cell_path] = STATE(163), - [sym_path] = STATE(161), - [sym_comment] = STATE(150), - [aux_sym_cell_path_repeat1] = STATE(152), - [anon_sym_export] = ACTIONS(969), - [anon_sym_alias] = ACTIONS(969), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_let_DASHenv] = ACTIONS(969), - [anon_sym_mut] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), - [aux_sym_cmd_identifier_token1] = ACTIONS(969), - [aux_sym_cmd_identifier_token2] = ACTIONS(971), - [aux_sym_cmd_identifier_token3] = ACTIONS(971), - [aux_sym_cmd_identifier_token4] = ACTIONS(971), - [aux_sym_cmd_identifier_token5] = ACTIONS(971), - [aux_sym_cmd_identifier_token6] = ACTIONS(971), - [aux_sym_cmd_identifier_token7] = ACTIONS(971), - [aux_sym_cmd_identifier_token8] = ACTIONS(969), - [aux_sym_cmd_identifier_token9] = ACTIONS(969), - [aux_sym_cmd_identifier_token10] = ACTIONS(971), - [aux_sym_cmd_identifier_token11] = ACTIONS(971), - [aux_sym_cmd_identifier_token12] = ACTIONS(969), - [aux_sym_cmd_identifier_token13] = ACTIONS(969), - [aux_sym_cmd_identifier_token14] = ACTIONS(969), - [aux_sym_cmd_identifier_token15] = ACTIONS(969), - [aux_sym_cmd_identifier_token16] = ACTIONS(971), - [aux_sym_cmd_identifier_token17] = ACTIONS(971), - [aux_sym_cmd_identifier_token18] = ACTIONS(971), - [aux_sym_cmd_identifier_token19] = ACTIONS(971), - [aux_sym_cmd_identifier_token20] = ACTIONS(971), - [aux_sym_cmd_identifier_token21] = ACTIONS(971), - [aux_sym_cmd_identifier_token22] = ACTIONS(971), - [aux_sym_cmd_identifier_token23] = ACTIONS(971), - [aux_sym_cmd_identifier_token24] = ACTIONS(971), - [aux_sym_cmd_identifier_token25] = ACTIONS(971), - [aux_sym_cmd_identifier_token26] = ACTIONS(971), - [aux_sym_cmd_identifier_token27] = ACTIONS(971), - [aux_sym_cmd_identifier_token28] = ACTIONS(971), - [aux_sym_cmd_identifier_token29] = ACTIONS(971), - [aux_sym_cmd_identifier_token30] = ACTIONS(971), - [aux_sym_cmd_identifier_token31] = ACTIONS(971), - [aux_sym_cmd_identifier_token32] = ACTIONS(971), - [aux_sym_cmd_identifier_token33] = ACTIONS(971), - [aux_sym_cmd_identifier_token34] = ACTIONS(969), - [aux_sym_cmd_identifier_token35] = ACTIONS(971), - [aux_sym_cmd_identifier_token36] = ACTIONS(971), - [aux_sym_cmd_identifier_token37] = ACTIONS(971), - [aux_sym_cmd_identifier_token38] = ACTIONS(969), - [aux_sym_cmd_identifier_token39] = ACTIONS(971), - [aux_sym_cmd_identifier_token40] = ACTIONS(971), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_def] = ACTIONS(969), - [anon_sym_export_DASHenv] = ACTIONS(969), - [anon_sym_extern] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(969), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_make] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_source] = ACTIONS(969), - [anon_sym_source_DASHenv] = ACTIONS(969), - [anon_sym_register] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_hide_DASHenv] = ACTIONS(969), - [anon_sym_overlay] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(969), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), - [aux_sym_record_entry_token1] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), + [134] = { + [sym__block_body_statement_parenthesized] = STATE(6083), + [sym__declaration_parenthesized] = STATE(7008), + [sym_decl_alias_parenthesized] = STATE(7019), + [sym_stmt_let_parenthesized] = STATE(7020), + [sym_stmt_mut_parenthesized] = STATE(7020), + [sym_stmt_const_parenthesized] = STATE(7020), + [sym_assignment_parenthesized] = STATE(7020), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7030), + [sym__statement_parenthesized] = STATE(7008), + [sym_pipeline_parenthesized] = STATE(7020), + [sym_cmd_identifier] = STATE(4436), + [sym_decl_def] = STATE(7019), + [sym_decl_export] = STATE(7019), + [sym_decl_extern] = STATE(7019), + [sym_decl_module] = STATE(7019), + [sym_decl_use] = STATE(7019), + [sym__ctrl_statement] = STATE(7020), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_stmt_source] = STATE(7020), + [sym_stmt_register] = STATE(7020), + [sym__stmt_hide] = STATE(7020), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(7020), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1615), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(134), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym__parenthesized_body_repeat2] = STATE(134), + [anon_sym_export] = ACTIONS(599), + [anon_sym_alias] = ACTIONS(602), + [anon_sym_let] = ACTIONS(605), + [anon_sym_let_DASHenv] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(608), + [anon_sym_const] = ACTIONS(611), + [aux_sym_cmd_identifier_token1] = ACTIONS(614), + [aux_sym_cmd_identifier_token2] = ACTIONS(617), + [aux_sym_cmd_identifier_token3] = ACTIONS(617), + [aux_sym_cmd_identifier_token4] = ACTIONS(617), + [aux_sym_cmd_identifier_token5] = ACTIONS(617), + [aux_sym_cmd_identifier_token6] = ACTIONS(617), + [aux_sym_cmd_identifier_token7] = ACTIONS(617), + [aux_sym_cmd_identifier_token8] = ACTIONS(614), + [aux_sym_cmd_identifier_token9] = ACTIONS(614), + [aux_sym_cmd_identifier_token10] = ACTIONS(617), + [aux_sym_cmd_identifier_token11] = ACTIONS(617), + [aux_sym_cmd_identifier_token12] = ACTIONS(614), + [aux_sym_cmd_identifier_token13] = ACTIONS(614), + [aux_sym_cmd_identifier_token14] = ACTIONS(614), + [aux_sym_cmd_identifier_token15] = ACTIONS(614), + [aux_sym_cmd_identifier_token16] = ACTIONS(617), + [aux_sym_cmd_identifier_token17] = ACTIONS(617), + [aux_sym_cmd_identifier_token18] = ACTIONS(614), + [aux_sym_cmd_identifier_token19] = ACTIONS(617), + [aux_sym_cmd_identifier_token20] = ACTIONS(617), + [aux_sym_cmd_identifier_token21] = ACTIONS(617), + [aux_sym_cmd_identifier_token22] = ACTIONS(617), + [aux_sym_cmd_identifier_token23] = ACTIONS(617), + [aux_sym_cmd_identifier_token24] = ACTIONS(617), + [aux_sym_cmd_identifier_token25] = ACTIONS(617), + [aux_sym_cmd_identifier_token26] = ACTIONS(617), + [aux_sym_cmd_identifier_token27] = ACTIONS(617), + [aux_sym_cmd_identifier_token28] = ACTIONS(617), + [aux_sym_cmd_identifier_token29] = ACTIONS(617), + [aux_sym_cmd_identifier_token30] = ACTIONS(617), + [aux_sym_cmd_identifier_token31] = ACTIONS(617), + [aux_sym_cmd_identifier_token32] = ACTIONS(614), + [aux_sym_cmd_identifier_token33] = ACTIONS(617), + [aux_sym_cmd_identifier_token34] = ACTIONS(614), + [aux_sym_cmd_identifier_token35] = ACTIONS(617), + [aux_sym_cmd_identifier_token36] = ACTIONS(617), + [aux_sym_cmd_identifier_token37] = ACTIONS(617), + [aux_sym_cmd_identifier_token38] = ACTIONS(614), + [aux_sym_cmd_identifier_token39] = ACTIONS(617), + [aux_sym_cmd_identifier_token40] = ACTIONS(617), + [anon_sym_def] = ACTIONS(620), + [anon_sym_export_DASHenv] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_module] = ACTIONS(629), + [anon_sym_use] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_error] = ACTIONS(644), + [anon_sym_DASH2] = ACTIONS(647), + [anon_sym_break] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_for] = ACTIONS(656), + [anon_sym_loop] = ACTIONS(659), + [anon_sym_while] = ACTIONS(662), + [anon_sym_do] = ACTIONS(665), + [anon_sym_if] = ACTIONS(668), + [anon_sym_match] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_DOT_DOT] = ACTIONS(677), + [anon_sym_try] = ACTIONS(680), + [anon_sym_return] = ACTIONS(683), + [anon_sym_source] = ACTIONS(686), + [anon_sym_source_DASHenv] = ACTIONS(686), + [anon_sym_register] = ACTIONS(689), + [anon_sym_hide] = ACTIONS(692), + [anon_sym_hide_DASHenv] = ACTIONS(695), + [anon_sym_overlay] = ACTIONS(698), + [anon_sym_where] = ACTIONS(701), + [aux_sym_expr_unary_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_null] = ACTIONS(710), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [aux_sym__val_number_decimal_token1] = ACTIONS(716), + [aux_sym__val_number_decimal_token2] = ACTIONS(719), + [aux_sym__val_number_decimal_token3] = ACTIONS(722), + [aux_sym__val_number_decimal_token4] = ACTIONS(725), + [aux_sym__val_number_token1] = ACTIONS(728), + [aux_sym__val_number_token2] = ACTIONS(728), + [aux_sym__val_number_token3] = ACTIONS(728), + [aux_sym__val_number_token4] = ACTIONS(731), + [aux_sym__val_number_token5] = ACTIONS(731), + [aux_sym__val_number_token6] = ACTIONS(731), + [anon_sym_0b] = ACTIONS(734), + [anon_sym_0o] = ACTIONS(737), + [anon_sym_0x] = ACTIONS(737), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(743), + [sym__str_single_quotes] = ACTIONS(746), + [sym__str_back_ticks] = ACTIONS(746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [aux_sym_env_var_token1] = ACTIONS(755), + [anon_sym_CARET] = ACTIONS(758), + [aux_sym_command_token1] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(764), }, - [151] = { - [sym_path] = STATE(161), - [sym_comment] = STATE(151), - [aux_sym_cell_path_repeat1] = STATE(151), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), - [aux_sym_cmd_identifier_token1] = ACTIONS(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(977), - [aux_sym_cmd_identifier_token3] = ACTIONS(977), - [aux_sym_cmd_identifier_token4] = ACTIONS(977), - [aux_sym_cmd_identifier_token5] = ACTIONS(977), - [aux_sym_cmd_identifier_token6] = ACTIONS(977), - [aux_sym_cmd_identifier_token7] = ACTIONS(977), - [aux_sym_cmd_identifier_token8] = ACTIONS(975), - [aux_sym_cmd_identifier_token9] = ACTIONS(975), - [aux_sym_cmd_identifier_token10] = ACTIONS(977), - [aux_sym_cmd_identifier_token11] = ACTIONS(977), - [aux_sym_cmd_identifier_token12] = ACTIONS(975), - [aux_sym_cmd_identifier_token13] = ACTIONS(975), - [aux_sym_cmd_identifier_token14] = ACTIONS(975), - [aux_sym_cmd_identifier_token15] = ACTIONS(975), - [aux_sym_cmd_identifier_token16] = ACTIONS(977), - [aux_sym_cmd_identifier_token17] = ACTIONS(977), - [aux_sym_cmd_identifier_token18] = ACTIONS(977), - [aux_sym_cmd_identifier_token19] = ACTIONS(977), - [aux_sym_cmd_identifier_token20] = ACTIONS(977), - [aux_sym_cmd_identifier_token21] = ACTIONS(977), - [aux_sym_cmd_identifier_token22] = ACTIONS(977), - [aux_sym_cmd_identifier_token23] = ACTIONS(977), - [aux_sym_cmd_identifier_token24] = ACTIONS(977), - [aux_sym_cmd_identifier_token25] = ACTIONS(977), - [aux_sym_cmd_identifier_token26] = ACTIONS(977), - [aux_sym_cmd_identifier_token27] = ACTIONS(977), - [aux_sym_cmd_identifier_token28] = ACTIONS(977), - [aux_sym_cmd_identifier_token29] = ACTIONS(977), - [aux_sym_cmd_identifier_token30] = ACTIONS(977), - [aux_sym_cmd_identifier_token31] = ACTIONS(977), - [aux_sym_cmd_identifier_token32] = ACTIONS(977), - [aux_sym_cmd_identifier_token33] = ACTIONS(977), - [aux_sym_cmd_identifier_token34] = ACTIONS(975), - [aux_sym_cmd_identifier_token35] = ACTIONS(977), - [aux_sym_cmd_identifier_token36] = ACTIONS(977), - [aux_sym_cmd_identifier_token37] = ACTIONS(977), - [aux_sym_cmd_identifier_token38] = ACTIONS(975), - [aux_sym_cmd_identifier_token39] = ACTIONS(977), - [aux_sym_cmd_identifier_token40] = ACTIONS(977), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_error] = ACTIONS(975), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(975), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), - [aux_sym_record_entry_token1] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), + [135] = { + [sym__block_body_statement] = STATE(6553), + [sym__declaration] = STATE(7184), + [sym_decl_alias] = STATE(6676), + [sym_stmt_let] = STATE(6701), + [sym_stmt_mut] = STATE(6701), + [sym_stmt_const] = STATE(6701), + [sym_assignment] = STATE(6701), + [sym__mutable_assignment_pattern] = STATE(6871), + [sym__statement] = STATE(7184), + [sym_pipeline] = STATE(6701), + [sym_cmd_identifier] = STATE(4394), + [sym_decl_def] = STATE(6676), + [sym_decl_export] = STATE(6676), + [sym_decl_extern] = STATE(6676), + [sym_decl_module] = STATE(6676), + [sym_decl_use] = STATE(6676), + [sym__ctrl_statement] = STATE(6701), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_for] = STATE(6705), + [sym_ctrl_loop] = STATE(6705), + [sym_ctrl_error] = STATE(6705), + [sym_ctrl_while] = STATE(6705), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_stmt_source] = STATE(6701), + [sym_stmt_register] = STATE(6701), + [sym__stmt_hide] = STATE(6701), + [sym_hide_mod] = STATE(6808), + [sym_hide_env] = STATE(6808), + [sym__stmt_overlay] = STATE(6701), + [sym_overlay_list] = STATE(6812), + [sym_overlay_hide] = STATE(6812), + [sym_overlay_new] = STATE(6812), + [sym_overlay_use] = STATE(6812), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(1500), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(135), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(308), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [152] = { - [sym_path] = STATE(161), - [sym_comment] = STATE(152), - [aux_sym_cell_path_repeat1] = STATE(151), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(984), - [anon_sym_DASH_EQ] = ACTIONS(984), - [anon_sym_STAR_EQ] = ACTIONS(984), - [anon_sym_SLASH_EQ] = ACTIONS(984), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [136] = { + [sym__block_body_statement] = STATE(6669), + [sym__declaration] = STATE(6200), + [sym_decl_alias] = STATE(6201), + [sym_stmt_let] = STATE(6203), + [sym_stmt_mut] = STATE(6203), + [sym_stmt_const] = STATE(6203), + [sym_assignment] = STATE(6203), + [sym__mutable_assignment_pattern] = STATE(6204), + [sym__statement] = STATE(6200), + [sym_pipeline] = STATE(6203), + [sym_cmd_identifier] = STATE(4344), + [sym_decl_def] = STATE(6201), + [sym_decl_export] = STATE(6201), + [sym_decl_extern] = STATE(6201), + [sym_decl_module] = STATE(6201), + [sym_decl_use] = STATE(6201), + [sym__ctrl_statement] = STATE(6203), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_for] = STATE(6205), + [sym_ctrl_loop] = STATE(6205), + [sym_ctrl_error] = STATE(6205), + [sym_ctrl_while] = STATE(6205), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_stmt_source] = STATE(6203), + [sym_stmt_register] = STATE(6203), + [sym__stmt_hide] = STATE(6203), + [sym_hide_mod] = STATE(6206), + [sym_hide_env] = STATE(6206), + [sym__stmt_overlay] = STATE(6203), + [sym_overlay_list] = STATE(6207), + [sym_overlay_hide] = STATE(6207), + [sym_overlay_new] = STATE(6207), + [sym_overlay_use] = STATE(6207), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1549), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(313), + [anon_sym_export] = ACTIONS(767), + [anon_sym_alias] = ACTIONS(770), + [anon_sym_let] = ACTIONS(773), + [anon_sym_let_DASHenv] = ACTIONS(773), + [anon_sym_mut] = ACTIONS(776), + [anon_sym_const] = ACTIONS(779), + [aux_sym_cmd_identifier_token1] = ACTIONS(782), + [aux_sym_cmd_identifier_token2] = ACTIONS(785), + [aux_sym_cmd_identifier_token3] = ACTIONS(785), + [aux_sym_cmd_identifier_token4] = ACTIONS(785), + [aux_sym_cmd_identifier_token5] = ACTIONS(785), + [aux_sym_cmd_identifier_token6] = ACTIONS(785), + [aux_sym_cmd_identifier_token7] = ACTIONS(785), + [aux_sym_cmd_identifier_token8] = ACTIONS(782), + [aux_sym_cmd_identifier_token9] = ACTIONS(782), + [aux_sym_cmd_identifier_token10] = ACTIONS(785), + [aux_sym_cmd_identifier_token11] = ACTIONS(785), + [aux_sym_cmd_identifier_token12] = ACTIONS(782), + [aux_sym_cmd_identifier_token13] = ACTIONS(782), + [aux_sym_cmd_identifier_token14] = ACTIONS(782), + [aux_sym_cmd_identifier_token15] = ACTIONS(782), + [aux_sym_cmd_identifier_token16] = ACTIONS(785), + [aux_sym_cmd_identifier_token17] = ACTIONS(785), + [aux_sym_cmd_identifier_token18] = ACTIONS(782), + [aux_sym_cmd_identifier_token19] = ACTIONS(785), + [aux_sym_cmd_identifier_token20] = ACTIONS(785), + [aux_sym_cmd_identifier_token21] = ACTIONS(785), + [aux_sym_cmd_identifier_token22] = ACTIONS(785), + [aux_sym_cmd_identifier_token23] = ACTIONS(785), + [aux_sym_cmd_identifier_token24] = ACTIONS(785), + [aux_sym_cmd_identifier_token25] = ACTIONS(785), + [aux_sym_cmd_identifier_token26] = ACTIONS(785), + [aux_sym_cmd_identifier_token27] = ACTIONS(785), + [aux_sym_cmd_identifier_token28] = ACTIONS(785), + [aux_sym_cmd_identifier_token29] = ACTIONS(785), + [aux_sym_cmd_identifier_token30] = ACTIONS(785), + [aux_sym_cmd_identifier_token31] = ACTIONS(785), + [aux_sym_cmd_identifier_token32] = ACTIONS(782), + [aux_sym_cmd_identifier_token33] = ACTIONS(785), + [aux_sym_cmd_identifier_token34] = ACTIONS(782), + [aux_sym_cmd_identifier_token35] = ACTIONS(785), + [aux_sym_cmd_identifier_token36] = ACTIONS(785), + [aux_sym_cmd_identifier_token37] = ACTIONS(785), + [aux_sym_cmd_identifier_token38] = ACTIONS(782), + [aux_sym_cmd_identifier_token39] = ACTIONS(785), + [aux_sym_cmd_identifier_token40] = ACTIONS(785), + [anon_sym_def] = ACTIONS(788), + [anon_sym_export_DASHenv] = ACTIONS(791), + [anon_sym_extern] = ACTIONS(794), + [anon_sym_module] = ACTIONS(797), + [anon_sym_use] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_error] = ACTIONS(812), + [anon_sym_DASH2] = ACTIONS(815), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_for] = ACTIONS(824), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_while] = ACTIONS(830), + [anon_sym_do] = ACTIONS(833), + [anon_sym_if] = ACTIONS(836), + [anon_sym_match] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_try] = ACTIONS(848), + [anon_sym_return] = ACTIONS(851), + [anon_sym_source] = ACTIONS(854), + [anon_sym_source_DASHenv] = ACTIONS(854), + [anon_sym_register] = ACTIONS(857), + [anon_sym_hide] = ACTIONS(860), + [anon_sym_hide_DASHenv] = ACTIONS(863), + [anon_sym_overlay] = ACTIONS(866), + [anon_sym_where] = ACTIONS(869), + [aux_sym_expr_unary_token1] = ACTIONS(872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(875), + [anon_sym_DOT_DOT_LT] = ACTIONS(875), + [anon_sym_null] = ACTIONS(878), + [anon_sym_true] = ACTIONS(881), + [anon_sym_false] = ACTIONS(881), + [aux_sym__val_number_decimal_token1] = ACTIONS(884), + [aux_sym__val_number_decimal_token2] = ACTIONS(887), + [aux_sym__val_number_decimal_token3] = ACTIONS(890), + [aux_sym__val_number_decimal_token4] = ACTIONS(893), + [aux_sym__val_number_token1] = ACTIONS(896), + [aux_sym__val_number_token2] = ACTIONS(896), + [aux_sym__val_number_token3] = ACTIONS(896), + [aux_sym__val_number_token4] = ACTIONS(899), + [aux_sym__val_number_token5] = ACTIONS(899), + [aux_sym__val_number_token6] = ACTIONS(899), + [anon_sym_0b] = ACTIONS(902), + [anon_sym_0o] = ACTIONS(905), + [anon_sym_0x] = ACTIONS(905), + [sym_val_date] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(911), + [sym__str_single_quotes] = ACTIONS(914), + [sym__str_back_ticks] = ACTIONS(914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(920), + [aux_sym_env_var_token1] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(926), + [aux_sym_command_token1] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(932), + }, + [137] = { + [sym_cell_path] = STATE(150), + [sym_path] = STATE(148), + [sym_comment] = STATE(137), + [aux_sym_cell_path_repeat1] = STATE(139), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_error] = ACTIONS(935), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(935), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(939), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), + }, + [138] = { + [sym_path] = STATE(148), + [sym_comment] = STATE(138), + [aux_sym_cell_path_repeat1] = STATE(138), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(943), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(943), + [aux_sym_cmd_identifier_token3] = ACTIONS(943), + [aux_sym_cmd_identifier_token4] = ACTIONS(943), + [aux_sym_cmd_identifier_token5] = ACTIONS(943), + [aux_sym_cmd_identifier_token6] = ACTIONS(943), + [aux_sym_cmd_identifier_token7] = ACTIONS(943), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(943), + [aux_sym_cmd_identifier_token11] = ACTIONS(943), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(943), + [aux_sym_cmd_identifier_token17] = ACTIONS(943), + [aux_sym_cmd_identifier_token18] = ACTIONS(943), + [aux_sym_cmd_identifier_token19] = ACTIONS(943), + [aux_sym_cmd_identifier_token20] = ACTIONS(943), + [aux_sym_cmd_identifier_token21] = ACTIONS(943), + [aux_sym_cmd_identifier_token22] = ACTIONS(943), + [aux_sym_cmd_identifier_token23] = ACTIONS(943), + [aux_sym_cmd_identifier_token24] = ACTIONS(943), + [aux_sym_cmd_identifier_token25] = ACTIONS(943), + [aux_sym_cmd_identifier_token26] = ACTIONS(943), + [aux_sym_cmd_identifier_token27] = ACTIONS(943), + [aux_sym_cmd_identifier_token28] = ACTIONS(943), + [aux_sym_cmd_identifier_token29] = ACTIONS(943), + [aux_sym_cmd_identifier_token30] = ACTIONS(943), + [aux_sym_cmd_identifier_token31] = ACTIONS(943), + [aux_sym_cmd_identifier_token32] = ACTIONS(943), + [aux_sym_cmd_identifier_token33] = ACTIONS(943), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(943), + [aux_sym_cmd_identifier_token36] = ACTIONS(943), + [aux_sym_cmd_identifier_token37] = ACTIONS(943), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(943), + [aux_sym_cmd_identifier_token40] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_error] = ACTIONS(941), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(941), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(941), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(945), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), + }, + [139] = { + [sym_path] = STATE(148), + [sym_comment] = STATE(139), + [aux_sym_cell_path_repeat1] = STATE(138), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [anon_sym_PLUS_EQ] = ACTIONS(950), + [anon_sym_DASH_EQ] = ACTIONS(950), + [anon_sym_STAR_EQ] = ACTIONS(950), + [anon_sym_SLASH_EQ] = ACTIONS(950), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(939), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [140] = { + [sym_comment] = STATE(140), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_PLUS_EQ] = ACTIONS(954), + [anon_sym_DASH_EQ] = ACTIONS(954), + [anon_sym_STAR_EQ] = ACTIONS(954), + [anon_sym_SLASH_EQ] = ACTIONS(954), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(954), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_and2] = ACTIONS(954), + [anon_sym_xor2] = ACTIONS(954), + [anon_sym_or2] = ACTIONS(954), + [anon_sym_not_DASHin2] = ACTIONS(954), + [anon_sym_starts_DASHwith2] = ACTIONS(954), + [anon_sym_ends_DASHwith2] = ACTIONS(954), + [anon_sym_EQ_EQ2] = ACTIONS(954), + [anon_sym_BANG_EQ2] = ACTIONS(954), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ2] = ACTIONS(954), + [anon_sym_GT_EQ2] = ACTIONS(954), + [anon_sym_EQ_TILDE2] = ACTIONS(954), + [anon_sym_BANG_TILDE2] = ACTIONS(954), + [anon_sym_STAR_STAR2] = ACTIONS(954), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(952), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_bit_DASHshl2] = ACTIONS(954), + [anon_sym_bit_DASHshr2] = ACTIONS(954), + [anon_sym_bit_DASHand2] = ACTIONS(954), + [anon_sym_bit_DASHxor2] = ACTIONS(954), + [anon_sym_bit_DASHor2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), + }, + [141] = { + [sym_comment] = STATE(141), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(958), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), + }, + [142] = { + [sym_comment] = STATE(142), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_GT2] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_STAR2] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_and2] = ACTIONS(964), + [anon_sym_xor2] = ACTIONS(964), + [anon_sym_or2] = ACTIONS(964), + [anon_sym_not_DASHin2] = ACTIONS(964), + [anon_sym_starts_DASHwith2] = ACTIONS(964), + [anon_sym_ends_DASHwith2] = ACTIONS(964), + [anon_sym_EQ_EQ2] = ACTIONS(964), + [anon_sym_BANG_EQ2] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(962), + [anon_sym_LT_EQ2] = ACTIONS(964), + [anon_sym_GT_EQ2] = ACTIONS(964), + [anon_sym_EQ_TILDE2] = ACTIONS(964), + [anon_sym_BANG_TILDE2] = ACTIONS(964), + [anon_sym_STAR_STAR2] = ACTIONS(964), + [anon_sym_PLUS_PLUS2] = ACTIONS(962), + [anon_sym_SLASH2] = ACTIONS(962), + [anon_sym_mod2] = ACTIONS(962), + [anon_sym_SLASH_SLASH2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_bit_DASHshl2] = ACTIONS(964), + [anon_sym_bit_DASHshr2] = ACTIONS(964), + [anon_sym_bit_DASHand2] = ACTIONS(964), + [anon_sym_bit_DASHxor2] = ACTIONS(964), + [anon_sym_bit_DASHor2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), + }, + [143] = { + [sym_comment] = STATE(143), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(970), + [anon_sym_and2] = ACTIONS(968), + [anon_sym_xor2] = ACTIONS(968), + [anon_sym_or2] = ACTIONS(968), + [anon_sym_not_DASHin2] = ACTIONS(968), + [anon_sym_starts_DASHwith2] = ACTIONS(968), + [anon_sym_ends_DASHwith2] = ACTIONS(968), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(968), + [anon_sym_STAR_STAR2] = ACTIONS(968), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(966), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_bit_DASHshl2] = ACTIONS(968), + [anon_sym_bit_DASHshr2] = ACTIONS(968), + [anon_sym_bit_DASHand2] = ACTIONS(968), + [anon_sym_bit_DASHxor2] = ACTIONS(968), + [anon_sym_bit_DASHor2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_COLON2] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), + }, + [144] = { + [sym_comment] = STATE(144), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(972), + [anon_sym_GT2] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_STAR2] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(974), + [anon_sym_xor2] = ACTIONS(974), + [anon_sym_or2] = ACTIONS(974), + [anon_sym_not_DASHin2] = ACTIONS(974), + [anon_sym_starts_DASHwith2] = ACTIONS(974), + [anon_sym_ends_DASHwith2] = ACTIONS(974), + [anon_sym_EQ_EQ2] = ACTIONS(974), + [anon_sym_BANG_EQ2] = ACTIONS(974), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ2] = ACTIONS(974), + [anon_sym_GT_EQ2] = ACTIONS(974), + [anon_sym_EQ_TILDE2] = ACTIONS(974), + [anon_sym_BANG_TILDE2] = ACTIONS(974), + [anon_sym_STAR_STAR2] = ACTIONS(974), + [anon_sym_PLUS_PLUS2] = ACTIONS(972), + [anon_sym_SLASH2] = ACTIONS(972), + [anon_sym_mod2] = ACTIONS(972), + [anon_sym_SLASH_SLASH2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_bit_DASHshl2] = ACTIONS(974), + [anon_sym_bit_DASHshr2] = ACTIONS(974), + [anon_sym_bit_DASHand2] = ACTIONS(974), + [anon_sym_bit_DASHxor2] = ACTIONS(974), + [anon_sym_bit_DASHor2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), + }, + [145] = { + [sym_comment] = STATE(145), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(978), + [anon_sym_xor2] = ACTIONS(978), + [anon_sym_or2] = ACTIONS(978), + [anon_sym_not_DASHin2] = ACTIONS(978), + [anon_sym_starts_DASHwith2] = ACTIONS(978), + [anon_sym_ends_DASHwith2] = ACTIONS(978), + [anon_sym_EQ_EQ2] = ACTIONS(978), + [anon_sym_BANG_EQ2] = ACTIONS(978), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ2] = ACTIONS(978), + [anon_sym_GT_EQ2] = ACTIONS(978), + [anon_sym_EQ_TILDE2] = ACTIONS(978), + [anon_sym_BANG_TILDE2] = ACTIONS(978), + [anon_sym_STAR_STAR2] = ACTIONS(978), + [anon_sym_PLUS_PLUS2] = ACTIONS(976), + [anon_sym_SLASH2] = ACTIONS(976), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_bit_DASHshl2] = ACTIONS(978), + [anon_sym_bit_DASHshr2] = ACTIONS(978), + [anon_sym_bit_DASHand2] = ACTIONS(978), + [anon_sym_bit_DASHxor2] = ACTIONS(978), + [anon_sym_bit_DASHor2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), + }, + [146] = { + [sym_comment] = STATE(146), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(982), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(982), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(982), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [aux_sym_record_entry_token1] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_GT2] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(980), + [anon_sym_and2] = ACTIONS(982), + [anon_sym_xor2] = ACTIONS(982), + [anon_sym_or2] = ACTIONS(982), + [anon_sym_not_DASHin2] = ACTIONS(982), + [anon_sym_starts_DASHwith2] = ACTIONS(982), + [anon_sym_ends_DASHwith2] = ACTIONS(982), + [anon_sym_EQ_EQ2] = ACTIONS(982), + [anon_sym_BANG_EQ2] = ACTIONS(982), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ2] = ACTIONS(982), + [anon_sym_GT_EQ2] = ACTIONS(982), + [anon_sym_EQ_TILDE2] = ACTIONS(982), + [anon_sym_BANG_TILDE2] = ACTIONS(982), + [anon_sym_STAR_STAR2] = ACTIONS(982), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(980), + [anon_sym_mod2] = ACTIONS(980), + [anon_sym_SLASH_SLASH2] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_bit_DASHshl2] = ACTIONS(982), + [anon_sym_bit_DASHshr2] = ACTIONS(982), + [anon_sym_bit_DASHand2] = ACTIONS(982), + [anon_sym_bit_DASHxor2] = ACTIONS(982), + [anon_sym_bit_DASHor2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), }, - [153] = { - [sym_comment] = STATE(153), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [147] = { + [sym_comment] = STATE(147), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), }, - [154] = { - [sym_comment] = STATE(154), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [148] = { + [sym_comment] = STATE(148), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(994), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(990), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(988), + [anon_sym_GT2] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_STAR2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(990), + [anon_sym_xor2] = ACTIONS(990), + [anon_sym_or2] = ACTIONS(990), + [anon_sym_not_DASHin2] = ACTIONS(990), + [anon_sym_starts_DASHwith2] = ACTIONS(990), + [anon_sym_ends_DASHwith2] = ACTIONS(990), + [anon_sym_EQ_EQ2] = ACTIONS(990), + [anon_sym_BANG_EQ2] = ACTIONS(990), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ2] = ACTIONS(990), + [anon_sym_GT_EQ2] = ACTIONS(990), + [anon_sym_EQ_TILDE2] = ACTIONS(990), + [anon_sym_BANG_TILDE2] = ACTIONS(990), + [anon_sym_STAR_STAR2] = ACTIONS(990), + [anon_sym_PLUS_PLUS2] = ACTIONS(988), + [anon_sym_SLASH2] = ACTIONS(988), + [anon_sym_mod2] = ACTIONS(988), + [anon_sym_SLASH_SLASH2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_bit_DASHshl2] = ACTIONS(990), + [anon_sym_bit_DASHshr2] = ACTIONS(990), + [anon_sym_bit_DASHand2] = ACTIONS(990), + [anon_sym_bit_DASHxor2] = ACTIONS(990), + [anon_sym_bit_DASHor2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), }, - [155] = { - [sym_comment] = STATE(155), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), + [149] = { + [sym_comment] = STATE(149), + [anon_sym_export] = ACTIONS(992), + [anon_sym_alias] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_let] = ACTIONS(992), + [anon_sym_let_DASHenv] = ACTIONS(992), + [anon_sym_mut] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token1] = ACTIONS(992), [aux_sym_cmd_identifier_token2] = ACTIONS(998), [aux_sym_cmd_identifier_token3] = ACTIONS(998), [aux_sym_cmd_identifier_token4] = ACTIONS(998), [aux_sym_cmd_identifier_token5] = ACTIONS(998), [aux_sym_cmd_identifier_token6] = ACTIONS(998), [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), + [aux_sym_cmd_identifier_token8] = ACTIONS(992), + [aux_sym_cmd_identifier_token9] = ACTIONS(992), [aux_sym_cmd_identifier_token10] = ACTIONS(998), [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), + [aux_sym_cmd_identifier_token12] = ACTIONS(992), + [aux_sym_cmd_identifier_token13] = ACTIONS(992), + [aux_sym_cmd_identifier_token14] = ACTIONS(992), + [aux_sym_cmd_identifier_token15] = ACTIONS(992), [aux_sym_cmd_identifier_token16] = ACTIONS(998), [aux_sym_cmd_identifier_token17] = ACTIONS(998), [aux_sym_cmd_identifier_token18] = ACTIONS(998), @@ -101515,780 +95972,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(998), [aux_sym_cmd_identifier_token32] = ACTIONS(998), [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), + [aux_sym_cmd_identifier_token34] = ACTIONS(992), [aux_sym_cmd_identifier_token35] = ACTIONS(998), [aux_sym_cmd_identifier_token36] = ACTIONS(998), [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), [aux_sym_cmd_identifier_token39] = ACTIONS(998), [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(992), + [anon_sym_export_DASHenv] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(1002), [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), + [anon_sym_error] = ACTIONS(992), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1006), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_make] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_source] = ACTIONS(992), + [anon_sym_source_DASHenv] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_hide_DASHenv] = ACTIONS(992), + [anon_sym_overlay] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1006), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), [aux_sym__val_number_decimal_token2] = ACTIONS(998), [aux_sym__val_number_decimal_token3] = ACTIONS(998), [aux_sym__val_number_decimal_token4] = ACTIONS(998), [aux_sym__val_number_token1] = ACTIONS(998), [aux_sym__val_number_token2] = ACTIONS(998), [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), [anon_sym_DQUOTE] = ACTIONS(998), [sym__str_single_quotes] = ACTIONS(998), [sym__str_back_ticks] = ACTIONS(998), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [aux_sym_record_entry_token1] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [anon_sym_COLON2] = ACTIONS(1016), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(998), }, - [156] = { - [sym_comment] = STATE(156), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [aux_sym_record_entry_token1] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [157] = { - [sym_comment] = STATE(157), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [aux_sym_record_entry_token1] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [158] = { - [sym_comment] = STATE(158), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1008), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1012), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1008), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [aux_sym_record_entry_token1] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [159] = { - [sym_comment] = STATE(159), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1014), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [aux_sym_record_entry_token1] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [160] = { - [sym_comment] = STATE(160), + [150] = { + [sym_comment] = STATE(150), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_EQ] = ACTIONS(1018), @@ -102341,7 +96141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1018), [aux_sym_cmd_identifier_token39] = ACTIONS(1020), [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [sym__newline] = ACTIONS(1018), + [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), [anon_sym_err_GT_PIPE] = ACTIONS(1020), @@ -102412,7 +96212,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), @@ -102430,7 +96229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1020), [sym__str_back_ticks] = ACTIONS(1020), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [aux_sym_record_entry_token1] = ACTIONS(1020), + [anon_sym_COLON2] = ACTIONS(1020), [anon_sym_err_GT] = ACTIONS(1018), [anon_sym_out_GT] = ACTIONS(1018), [anon_sym_e_GT] = ACTIONS(1018), @@ -102450,973 +96249,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [161] = { - [sym_comment] = STATE(161), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1024), - [aux_sym_cmd_identifier_token3] = ACTIONS(1024), - [aux_sym_cmd_identifier_token4] = ACTIONS(1024), - [aux_sym_cmd_identifier_token5] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1024), - [aux_sym_cmd_identifier_token7] = ACTIONS(1024), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1024), - [aux_sym_cmd_identifier_token11] = ACTIONS(1024), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1024), - [aux_sym_cmd_identifier_token17] = ACTIONS(1024), - [aux_sym_cmd_identifier_token18] = ACTIONS(1024), - [aux_sym_cmd_identifier_token19] = ACTIONS(1024), - [aux_sym_cmd_identifier_token20] = ACTIONS(1024), - [aux_sym_cmd_identifier_token21] = ACTIONS(1024), - [aux_sym_cmd_identifier_token22] = ACTIONS(1024), - [aux_sym_cmd_identifier_token23] = ACTIONS(1024), - [aux_sym_cmd_identifier_token24] = ACTIONS(1024), - [aux_sym_cmd_identifier_token25] = ACTIONS(1024), - [aux_sym_cmd_identifier_token26] = ACTIONS(1024), - [aux_sym_cmd_identifier_token27] = ACTIONS(1024), - [aux_sym_cmd_identifier_token28] = ACTIONS(1024), - [aux_sym_cmd_identifier_token29] = ACTIONS(1024), - [aux_sym_cmd_identifier_token30] = ACTIONS(1024), - [aux_sym_cmd_identifier_token31] = ACTIONS(1024), - [aux_sym_cmd_identifier_token32] = ACTIONS(1024), - [aux_sym_cmd_identifier_token33] = ACTIONS(1024), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1024), - [aux_sym_cmd_identifier_token36] = ACTIONS(1024), - [aux_sym_cmd_identifier_token37] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1022), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), - }, - [162] = { - [sym_comment] = STATE(162), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1032), - [aux_sym_cmd_identifier_token3] = ACTIONS(1032), - [aux_sym_cmd_identifier_token4] = ACTIONS(1032), - [aux_sym_cmd_identifier_token5] = ACTIONS(1032), - [aux_sym_cmd_identifier_token6] = ACTIONS(1032), - [aux_sym_cmd_identifier_token7] = ACTIONS(1032), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1032), - [aux_sym_cmd_identifier_token11] = ACTIONS(1032), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1032), - [aux_sym_cmd_identifier_token17] = ACTIONS(1032), - [aux_sym_cmd_identifier_token18] = ACTIONS(1032), - [aux_sym_cmd_identifier_token19] = ACTIONS(1032), - [aux_sym_cmd_identifier_token20] = ACTIONS(1032), - [aux_sym_cmd_identifier_token21] = ACTIONS(1032), - [aux_sym_cmd_identifier_token22] = ACTIONS(1032), - [aux_sym_cmd_identifier_token23] = ACTIONS(1032), - [aux_sym_cmd_identifier_token24] = ACTIONS(1032), - [aux_sym_cmd_identifier_token25] = ACTIONS(1032), - [aux_sym_cmd_identifier_token26] = ACTIONS(1032), - [aux_sym_cmd_identifier_token27] = ACTIONS(1032), - [aux_sym_cmd_identifier_token28] = ACTIONS(1032), - [aux_sym_cmd_identifier_token29] = ACTIONS(1032), - [aux_sym_cmd_identifier_token30] = ACTIONS(1032), - [aux_sym_cmd_identifier_token31] = ACTIONS(1032), - [aux_sym_cmd_identifier_token32] = ACTIONS(1032), - [aux_sym_cmd_identifier_token33] = ACTIONS(1032), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1032), - [aux_sym_cmd_identifier_token36] = ACTIONS(1032), - [aux_sym_cmd_identifier_token37] = ACTIONS(1032), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1032), - [aux_sym_cmd_identifier_token40] = ACTIONS(1032), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1040), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1034), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1040), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1032), - [aux_sym__val_number_decimal_token4] = ACTIONS(1032), - [aux_sym__val_number_token1] = ACTIONS(1032), - [aux_sym__val_number_token2] = ACTIONS(1032), - [aux_sym__val_number_token3] = ACTIONS(1032), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), - [aux_sym_record_entry_token1] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1032), - }, - [163] = { - [sym_comment] = STATE(163), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1054), - [aux_sym_cmd_identifier_token3] = ACTIONS(1054), - [aux_sym_cmd_identifier_token4] = ACTIONS(1054), - [aux_sym_cmd_identifier_token5] = ACTIONS(1054), - [aux_sym_cmd_identifier_token6] = ACTIONS(1054), - [aux_sym_cmd_identifier_token7] = ACTIONS(1054), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1054), - [aux_sym_cmd_identifier_token11] = ACTIONS(1054), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1054), - [aux_sym_cmd_identifier_token17] = ACTIONS(1054), - [aux_sym_cmd_identifier_token18] = ACTIONS(1054), - [aux_sym_cmd_identifier_token19] = ACTIONS(1054), - [aux_sym_cmd_identifier_token20] = ACTIONS(1054), - [aux_sym_cmd_identifier_token21] = ACTIONS(1054), - [aux_sym_cmd_identifier_token22] = ACTIONS(1054), - [aux_sym_cmd_identifier_token23] = ACTIONS(1054), - [aux_sym_cmd_identifier_token24] = ACTIONS(1054), - [aux_sym_cmd_identifier_token25] = ACTIONS(1054), - [aux_sym_cmd_identifier_token26] = ACTIONS(1054), - [aux_sym_cmd_identifier_token27] = ACTIONS(1054), - [aux_sym_cmd_identifier_token28] = ACTIONS(1054), - [aux_sym_cmd_identifier_token29] = ACTIONS(1054), - [aux_sym_cmd_identifier_token30] = ACTIONS(1054), - [aux_sym_cmd_identifier_token31] = ACTIONS(1054), - [aux_sym_cmd_identifier_token32] = ACTIONS(1054), - [aux_sym_cmd_identifier_token33] = ACTIONS(1054), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1054), - [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [aux_sym_cmd_identifier_token37] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_GT2] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_STAR2] = ACTIONS(1052), - [anon_sym_and2] = ACTIONS(1054), - [anon_sym_xor2] = ACTIONS(1054), - [anon_sym_or2] = ACTIONS(1054), - [anon_sym_not_DASHin2] = ACTIONS(1054), - [anon_sym_starts_DASHwith2] = ACTIONS(1054), - [anon_sym_ends_DASHwith2] = ACTIONS(1054), - [anon_sym_EQ_EQ2] = ACTIONS(1054), - [anon_sym_BANG_EQ2] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1052), - [anon_sym_LT_EQ2] = ACTIONS(1054), - [anon_sym_GT_EQ2] = ACTIONS(1054), - [anon_sym_EQ_TILDE2] = ACTIONS(1054), - [anon_sym_BANG_TILDE2] = ACTIONS(1054), - [anon_sym_STAR_STAR2] = ACTIONS(1054), - [anon_sym_PLUS_PLUS2] = ACTIONS(1052), - [anon_sym_SLASH2] = ACTIONS(1052), - [anon_sym_mod2] = ACTIONS(1052), - [anon_sym_SLASH_SLASH2] = ACTIONS(1054), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_bit_DASHshl2] = ACTIONS(1054), - [anon_sym_bit_DASHshr2] = ACTIONS(1054), - [anon_sym_bit_DASHand2] = ACTIONS(1054), - [anon_sym_bit_DASHxor2] = ACTIONS(1054), - [anon_sym_bit_DASHor2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1052), - [aux_sym__val_number_token5] = ACTIONS(1052), - [aux_sym__val_number_token6] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1054), - }, - [164] = { - [sym_pipeline] = STATE(7244), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(164), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [165] = { - [sym_pipeline] = STATE(6701), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [166] = { - [sym_pipeline] = STATE(7244), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [151] = { + [sym_pipeline_parenthesized] = STATE(6726), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(151), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [167] = { - [sym_pipeline] = STATE(6869), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [152] = { + [sym_pipeline] = STATE(6110), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(152), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -103424,74 +96480,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [168] = { - [sym_pipeline] = STATE(7777), - [sym_cmd_identifier] = STATE(5044), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(328), + [153] = { + [sym_pipeline] = STATE(6962), + [sym_cmd_identifier] = STATE(4394), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -103534,7 +96590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -103577,49 +96633,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [169] = { - [sym_pipeline] = STATE(7416), - [sym_cmd_identifier] = STATE(5044), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(328), + [154] = { + [sym_pipeline] = STATE(6649), + [sym_cmd_identifier] = STATE(4394), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -103662,7 +96718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -103705,433 +96761,1585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [170] = { - [sym_pipeline_parenthesized] = STATE(7451), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [155] = { + [sym_pipeline_parenthesized] = STATE(6791), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [171] = { - [sym_pipeline_parenthesized] = STATE(7692), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [156] = { + [sym_pipeline_parenthesized] = STATE(6793), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(156), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [172] = { - [sym_pipeline_parenthesized] = STATE(7451), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(172), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [157] = { + [sym_pipeline] = STATE(6077), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [158] = { + [sym_pipeline] = STATE(6101), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [173] = { - [sym_pipeline] = STATE(7660), - [sym_cmd_identifier] = STATE(5044), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(328), + [159] = { + [sym_pipeline] = STATE(6108), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [160] = { + [sym_pipeline] = STATE(6103), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [161] = { + [sym_pipeline] = STATE(6110), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [162] = { + [sym_pipeline] = STATE(6101), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [163] = { + [sym_pipeline] = STATE(6108), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [164] = { + [sym_pipeline_parenthesized] = STATE(6688), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(164), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [165] = { + [sym_pipeline_parenthesized] = STATE(6706), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(165), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [166] = { + [sym_pipeline_parenthesized] = STATE(6726), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(166), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [167] = { + [sym_pipeline] = STATE(6864), + [sym_cmd_identifier] = STATE(4394), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -104174,7 +98382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -104217,689 +98425,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [174] = { - [sym_pipeline_parenthesized] = STATE(7613), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(174), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [175] = { - [sym_pipeline_parenthesized] = STATE(7613), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(175), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [176] = { - [sym_pipeline_parenthesized] = STATE(7760), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [168] = { + [sym_pipeline_parenthesized] = STATE(6793), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [177] = { - [sym_pipeline_parenthesized] = STATE(7761), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(200), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [169] = { + [sym_pipeline_parenthesized] = STATE(6688), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(169), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [178] = { - [sym_pipeline_parenthesized] = STATE(7760), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [170] = { + [sym_pipeline_parenthesized] = STATE(6706), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [179] = { - [sym_pipeline] = STATE(7653), - [sym_cmd_identifier] = STATE(5044), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(328), + [171] = { + [sym_pipeline] = STATE(6965), + [sym_cmd_identifier] = STATE(4394), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(171), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -104942,7 +98894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -104985,49 +98937,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [180] = { - [sym_pipeline] = STATE(7654), - [sym_cmd_identifier] = STATE(5044), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(5045), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(328), + [172] = { + [sym_pipeline] = STATE(6969), + [sym_cmd_identifier] = STATE(4394), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4389), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(181), + [aux_sym_pipe_element_repeat2] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -105070,7 +99022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -105113,102 +99065,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [181] = { - [sym_pipeline] = STATE(7231), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [173] = { + [sym_pipeline] = STATE(6077), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -105216,383 +99168,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [182] = { - [sym_pipeline_parenthesized] = STATE(7761), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [183] = { - [sym_pipeline_parenthesized] = STATE(7692), - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(4951), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(183), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(194), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [184] = { - [sym_pipeline] = STATE(7231), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [174] = { + [sym_pipeline] = STATE(6103), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(174), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -105600,127 +99296,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [185] = { - [sym_pipeline] = STATE(7231), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [175] = { + [sym_pipeline] = STATE(6101), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -105728,127 +99424,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [186] = { - [sym_pipeline] = STATE(6700), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [176] = { + [sym_pipeline] = STATE(6108), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -105856,127 +99552,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [187] = { - [sym_pipeline] = STATE(6700), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [177] = { + [sym_pipeline] = STATE(6103), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -105984,127 +99680,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [188] = { - [sym_pipeline] = STATE(6701), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [178] = { + [sym_pipeline] = STATE(6110), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(182), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -106112,127 +99808,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [189] = { - [sym_pipeline] = STATE(6869), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(189), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [179] = { + [sym_pipeline] = STATE(6077), + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4351), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -106240,255 +99936,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [190] = { - [sym_pipeline] = STATE(6701), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [180] = { + [sym_pipeline_parenthesized] = STATE(6791), + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4491), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [191] = { - [sym_pipeline] = STATE(6869), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(197), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [181] = { + [sym_cmd_identifier] = STATE(4394), + [sym__ctrl_expression] = STATE(4798), + [sym_ctrl_do] = STATE(4885), + [sym_ctrl_if] = STATE(4885), + [sym_ctrl_match] = STATE(4885), + [sym_ctrl_try] = STATE(4885), + [sym_ctrl_return] = STATE(4885), + [sym_pipe_element] = STATE(4512), + [sym_where_command] = STATE(4889), + [sym__expression] = STATE(3736), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4889), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(308), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [182] = { + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4381), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(302), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -106496,255 +100318,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [192] = { - [sym_pipeline] = STATE(6700), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(196), - [aux_sym_pipe_element_repeat2] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [183] = { + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4922), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(862), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1043), + [aux_sym_cmd_identifier_token3] = ACTIONS(1043), + [aux_sym_cmd_identifier_token4] = ACTIONS(1043), + [aux_sym_cmd_identifier_token5] = ACTIONS(1043), + [aux_sym_cmd_identifier_token6] = ACTIONS(1043), + [aux_sym_cmd_identifier_token7] = ACTIONS(1043), + [aux_sym_cmd_identifier_token8] = ACTIONS(1043), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1043), + [aux_sym_cmd_identifier_token11] = ACTIONS(1043), + [aux_sym_cmd_identifier_token12] = ACTIONS(1043), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1043), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1043), + [aux_sym_cmd_identifier_token17] = ACTIONS(1043), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1043), + [aux_sym_cmd_identifier_token20] = ACTIONS(1043), + [aux_sym_cmd_identifier_token21] = ACTIONS(1043), + [aux_sym_cmd_identifier_token22] = ACTIONS(1043), + [aux_sym_cmd_identifier_token23] = ACTIONS(1043), + [aux_sym_cmd_identifier_token24] = ACTIONS(1043), + [aux_sym_cmd_identifier_token25] = ACTIONS(1043), + [aux_sym_cmd_identifier_token26] = ACTIONS(1043), + [aux_sym_cmd_identifier_token27] = ACTIONS(1043), + [aux_sym_cmd_identifier_token28] = ACTIONS(1043), + [aux_sym_cmd_identifier_token29] = ACTIONS(1043), + [aux_sym_cmd_identifier_token30] = ACTIONS(1043), + [aux_sym_cmd_identifier_token31] = ACTIONS(1043), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1043), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1043), + [aux_sym_cmd_identifier_token36] = ACTIONS(1043), + [aux_sym_cmd_identifier_token37] = ACTIONS(1043), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1043), + [aux_sym_cmd_identifier_token40] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1085), + [aux_sym_expr_unary_token1] = ACTIONS(1088), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1091), + [anon_sym_DOT_DOT_LT] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1100), + [aux_sym__val_number_decimal_token2] = ACTIONS(1103), + [aux_sym__val_number_decimal_token3] = ACTIONS(1106), + [aux_sym__val_number_decimal_token4] = ACTIONS(1109), + [aux_sym__val_number_token1] = ACTIONS(1112), + [aux_sym__val_number_token2] = ACTIONS(1112), + [aux_sym__val_number_token3] = ACTIONS(1112), + [aux_sym__val_number_token4] = ACTIONS(1115), + [aux_sym__val_number_token5] = ACTIONS(1115), + [aux_sym__val_number_token6] = ACTIONS(1115), + [anon_sym_0b] = ACTIONS(1118), + [anon_sym_0o] = ACTIONS(1121), + [anon_sym_0x] = ACTIONS(1121), + [sym_val_date] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym__str_single_quotes] = ACTIONS(1130), + [sym__str_back_ticks] = ACTIONS(1130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1133), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1136), + [aux_sym_env_var_token1] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1142), + [aux_sym_command_token1] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1148), + }, + [184] = { + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4813), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(862), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(301), + [aux_sym_cmd_identifier_token1] = ACTIONS(1151), + [aux_sym_cmd_identifier_token2] = ACTIONS(1154), + [aux_sym_cmd_identifier_token3] = ACTIONS(1154), + [aux_sym_cmd_identifier_token4] = ACTIONS(1154), + [aux_sym_cmd_identifier_token5] = ACTIONS(1154), + [aux_sym_cmd_identifier_token6] = ACTIONS(1154), + [aux_sym_cmd_identifier_token7] = ACTIONS(1154), + [aux_sym_cmd_identifier_token8] = ACTIONS(1154), + [aux_sym_cmd_identifier_token9] = ACTIONS(1151), + [aux_sym_cmd_identifier_token10] = ACTIONS(1154), + [aux_sym_cmd_identifier_token11] = ACTIONS(1154), + [aux_sym_cmd_identifier_token12] = ACTIONS(1154), + [aux_sym_cmd_identifier_token13] = ACTIONS(1151), + [aux_sym_cmd_identifier_token14] = ACTIONS(1154), + [aux_sym_cmd_identifier_token15] = ACTIONS(1151), + [aux_sym_cmd_identifier_token16] = ACTIONS(1154), + [aux_sym_cmd_identifier_token17] = ACTIONS(1154), + [aux_sym_cmd_identifier_token18] = ACTIONS(1151), + [aux_sym_cmd_identifier_token19] = ACTIONS(1154), + [aux_sym_cmd_identifier_token20] = ACTIONS(1154), + [aux_sym_cmd_identifier_token21] = ACTIONS(1154), + [aux_sym_cmd_identifier_token22] = ACTIONS(1154), + [aux_sym_cmd_identifier_token23] = ACTIONS(1154), + [aux_sym_cmd_identifier_token24] = ACTIONS(1154), + [aux_sym_cmd_identifier_token25] = ACTIONS(1154), + [aux_sym_cmd_identifier_token26] = ACTIONS(1154), + [aux_sym_cmd_identifier_token27] = ACTIONS(1154), + [aux_sym_cmd_identifier_token28] = ACTIONS(1154), + [aux_sym_cmd_identifier_token29] = ACTIONS(1154), + [aux_sym_cmd_identifier_token30] = ACTIONS(1154), + [aux_sym_cmd_identifier_token31] = ACTIONS(1154), + [aux_sym_cmd_identifier_token32] = ACTIONS(1151), + [aux_sym_cmd_identifier_token33] = ACTIONS(1154), + [aux_sym_cmd_identifier_token34] = ACTIONS(1151), + [aux_sym_cmd_identifier_token35] = ACTIONS(1154), + [aux_sym_cmd_identifier_token36] = ACTIONS(1154), + [aux_sym_cmd_identifier_token37] = ACTIONS(1154), + [aux_sym_cmd_identifier_token38] = ACTIONS(1151), + [aux_sym_cmd_identifier_token39] = ACTIONS(1154), + [aux_sym_cmd_identifier_token40] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_DASH2] = ACTIONS(1166), + [anon_sym_break] = ACTIONS(1169), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_do] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_match] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1187), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1196), + [aux_sym_expr_unary_token1] = ACTIONS(1199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1202), + [anon_sym_DOT_DOT_LT] = ACTIONS(1202), + [anon_sym_null] = ACTIONS(1205), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [aux_sym__val_number_decimal_token1] = ACTIONS(1211), + [aux_sym__val_number_decimal_token2] = ACTIONS(1214), + [aux_sym__val_number_decimal_token3] = ACTIONS(1217), + [aux_sym__val_number_decimal_token4] = ACTIONS(1220), + [aux_sym__val_number_token1] = ACTIONS(1223), + [aux_sym__val_number_token2] = ACTIONS(1223), + [aux_sym__val_number_token3] = ACTIONS(1223), + [aux_sym__val_number_token4] = ACTIONS(1226), + [aux_sym__val_number_token5] = ACTIONS(1226), + [aux_sym__val_number_token6] = ACTIONS(1226), + [anon_sym_0b] = ACTIONS(1229), + [anon_sym_0o] = ACTIONS(1232), + [anon_sym_0x] = ACTIONS(1232), + [sym_val_date] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym__str_single_quotes] = ACTIONS(1241), + [sym__str_back_ticks] = ACTIONS(1241), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1247), + [aux_sym_env_var_token1] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1253), + [aux_sym_command_token1] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1259), + }, + [185] = { + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4454), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(185), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [193] = { - [sym_pipeline] = STATE(7244), - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4850), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(193), - [aux_sym_pipeline_repeat1] = STATE(195), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [186] = { + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4381), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(303), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -106752,253 +100826,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [194] = { - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(5055), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(194), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(198), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(327), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [187] = { + [sym_cmd_identifier] = STATE(4436), + [sym__ctrl_expression_parenthesized] = STATE(4897), + [sym_ctrl_do_parenthesized] = STATE(4898), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_ctrl_match] = STATE(4898), + [sym_ctrl_try_parenthesized] = STATE(4898), + [sym_ctrl_return] = STATE(4898), + [sym_pipe_element_parenthesized] = STATE(4454), + [sym_where_command_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(3730), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4915), + [sym_comment] = STATE(187), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(471), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [195] = { - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4868), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(326), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [188] = { + [sym_cmd_identifier] = STATE(4344), + [sym__ctrl_expression] = STATE(4631), + [sym_ctrl_do] = STATE(4691), + [sym_ctrl_if] = STATE(4691), + [sym_ctrl_match] = STATE(4691), + [sym_ctrl_try] = STATE(4691), + [sym_ctrl_return] = STATE(4691), + [sym_pipe_element] = STATE(4381), + [sym_where_command] = STATE(4717), + [sym__expression] = STATE(3679), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4717), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(403), - [anon_sym_match] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -107006,1228 +101080,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [196] = { - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4868), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(196), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(322), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [189] = { + [sym_comment] = STATE(189), + [aux_sym_shebang_repeat1] = STATE(189), + [anon_sym_export] = ACTIONS(1262), + [anon_sym_alias] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_let_DASHenv] = ACTIONS(1262), + [anon_sym_mut] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [aux_sym_cmd_identifier_token1] = ACTIONS(1262), + [aux_sym_cmd_identifier_token2] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1264), + [aux_sym_cmd_identifier_token4] = ACTIONS(1264), + [aux_sym_cmd_identifier_token5] = ACTIONS(1264), + [aux_sym_cmd_identifier_token6] = ACTIONS(1264), + [aux_sym_cmd_identifier_token7] = ACTIONS(1264), + [aux_sym_cmd_identifier_token8] = ACTIONS(1262), + [aux_sym_cmd_identifier_token9] = ACTIONS(1262), + [aux_sym_cmd_identifier_token10] = ACTIONS(1264), + [aux_sym_cmd_identifier_token11] = ACTIONS(1264), + [aux_sym_cmd_identifier_token12] = ACTIONS(1262), + [aux_sym_cmd_identifier_token13] = ACTIONS(1262), + [aux_sym_cmd_identifier_token14] = ACTIONS(1262), + [aux_sym_cmd_identifier_token15] = ACTIONS(1262), + [aux_sym_cmd_identifier_token16] = ACTIONS(1264), + [aux_sym_cmd_identifier_token17] = ACTIONS(1264), + [aux_sym_cmd_identifier_token18] = ACTIONS(1262), + [aux_sym_cmd_identifier_token19] = ACTIONS(1264), + [aux_sym_cmd_identifier_token20] = ACTIONS(1264), + [aux_sym_cmd_identifier_token21] = ACTIONS(1264), + [aux_sym_cmd_identifier_token22] = ACTIONS(1264), + [aux_sym_cmd_identifier_token23] = ACTIONS(1264), + [aux_sym_cmd_identifier_token24] = ACTIONS(1264), + [aux_sym_cmd_identifier_token25] = ACTIONS(1264), + [aux_sym_cmd_identifier_token26] = ACTIONS(1264), + [aux_sym_cmd_identifier_token27] = ACTIONS(1264), + [aux_sym_cmd_identifier_token28] = ACTIONS(1264), + [aux_sym_cmd_identifier_token29] = ACTIONS(1264), + [aux_sym_cmd_identifier_token30] = ACTIONS(1264), + [aux_sym_cmd_identifier_token31] = ACTIONS(1264), + [aux_sym_cmd_identifier_token32] = ACTIONS(1262), + [aux_sym_cmd_identifier_token33] = ACTIONS(1264), + [aux_sym_cmd_identifier_token34] = ACTIONS(1262), + [aux_sym_cmd_identifier_token35] = ACTIONS(1264), + [aux_sym_cmd_identifier_token36] = ACTIONS(1264), + [aux_sym_cmd_identifier_token37] = ACTIONS(1264), + [aux_sym_cmd_identifier_token38] = ACTIONS(1262), + [aux_sym_cmd_identifier_token39] = ACTIONS(1264), + [aux_sym_cmd_identifier_token40] = ACTIONS(1264), + [sym__newline] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_def] = ACTIONS(1262), + [anon_sym_export_DASHenv] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_module] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_error] = ACTIONS(1262), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_in2] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_make] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_catch] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_source] = ACTIONS(1262), + [anon_sym_source_DASHenv] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_hide] = ACTIONS(1262), + [anon_sym_hide_DASHenv] = ACTIONS(1262), + [anon_sym_overlay] = ACTIONS(1262), + [anon_sym_as] = ACTIONS(1262), + [anon_sym_where] = ACTIONS(1264), + [aux_sym_expr_unary_token1] = ACTIONS(1264), + [anon_sym_PLUS2] = ACTIONS(1262), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1264), + [anon_sym_DOT_DOT_LT] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1264), + [aux_sym__val_number_decimal_token1] = ACTIONS(1262), + [aux_sym__val_number_decimal_token2] = ACTIONS(1264), + [aux_sym__val_number_decimal_token3] = ACTIONS(1264), + [aux_sym__val_number_decimal_token4] = ACTIONS(1264), + [aux_sym__val_number_token1] = ACTIONS(1264), + [aux_sym__val_number_token2] = ACTIONS(1264), + [aux_sym__val_number_token3] = ACTIONS(1264), + [aux_sym__val_number_token4] = ACTIONS(1262), + [aux_sym__val_number_token5] = ACTIONS(1262), + [aux_sym__val_number_token6] = ACTIONS(1262), + [anon_sym_0b] = ACTIONS(1262), + [anon_sym_0o] = ACTIONS(1262), + [anon_sym_0x] = ACTIONS(1262), + [sym_val_date] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1264), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1264), + [aux_sym_env_var_token1] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1264), + [aux_sym_command_token1] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1264), }, - [197] = { - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(4868), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(197), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_do] = ACTIONS(401), - [anon_sym_if] = ACTIONS(629), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(409), - [anon_sym_return] = ACTIONS(469), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [190] = { + [sym_comment] = STATE(190), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_alias] = ACTIONS(1269), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_let_DASHenv] = ACTIONS(1269), + [anon_sym_mut] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(1269), + [aux_sym_cmd_identifier_token1] = ACTIONS(1269), + [aux_sym_cmd_identifier_token2] = ACTIONS(1272), + [aux_sym_cmd_identifier_token3] = ACTIONS(1272), + [aux_sym_cmd_identifier_token4] = ACTIONS(1272), + [aux_sym_cmd_identifier_token5] = ACTIONS(1272), + [aux_sym_cmd_identifier_token6] = ACTIONS(1272), + [aux_sym_cmd_identifier_token7] = ACTIONS(1272), + [aux_sym_cmd_identifier_token8] = ACTIONS(1269), + [aux_sym_cmd_identifier_token9] = ACTIONS(1269), + [aux_sym_cmd_identifier_token10] = ACTIONS(1272), + [aux_sym_cmd_identifier_token11] = ACTIONS(1272), + [aux_sym_cmd_identifier_token12] = ACTIONS(1269), + [aux_sym_cmd_identifier_token13] = ACTIONS(1269), + [aux_sym_cmd_identifier_token14] = ACTIONS(1269), + [aux_sym_cmd_identifier_token15] = ACTIONS(1269), + [aux_sym_cmd_identifier_token16] = ACTIONS(1272), + [aux_sym_cmd_identifier_token17] = ACTIONS(1272), + [aux_sym_cmd_identifier_token18] = ACTIONS(1269), + [aux_sym_cmd_identifier_token19] = ACTIONS(1272), + [aux_sym_cmd_identifier_token20] = ACTIONS(1272), + [aux_sym_cmd_identifier_token21] = ACTIONS(1272), + [aux_sym_cmd_identifier_token22] = ACTIONS(1272), + [aux_sym_cmd_identifier_token23] = ACTIONS(1272), + [aux_sym_cmd_identifier_token24] = ACTIONS(1272), + [aux_sym_cmd_identifier_token25] = ACTIONS(1272), + [aux_sym_cmd_identifier_token26] = ACTIONS(1272), + [aux_sym_cmd_identifier_token27] = ACTIONS(1272), + [aux_sym_cmd_identifier_token28] = ACTIONS(1272), + [aux_sym_cmd_identifier_token29] = ACTIONS(1272), + [aux_sym_cmd_identifier_token30] = ACTIONS(1272), + [aux_sym_cmd_identifier_token31] = ACTIONS(1272), + [aux_sym_cmd_identifier_token32] = ACTIONS(1269), + [aux_sym_cmd_identifier_token33] = ACTIONS(1272), + [aux_sym_cmd_identifier_token34] = ACTIONS(1269), + [aux_sym_cmd_identifier_token35] = ACTIONS(1272), + [aux_sym_cmd_identifier_token36] = ACTIONS(1272), + [aux_sym_cmd_identifier_token37] = ACTIONS(1272), + [aux_sym_cmd_identifier_token38] = ACTIONS(1269), + [aux_sym_cmd_identifier_token39] = ACTIONS(1272), + [aux_sym_cmd_identifier_token40] = ACTIONS(1272), + [sym__newline] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1269), + [anon_sym_export_DASHenv] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_use] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_error] = ACTIONS(1269), + [anon_sym_DASH2] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_in2] = ACTIONS(1277), + [anon_sym_loop] = ACTIONS(1269), + [anon_sym_make] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(1269), + [anon_sym_catch] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_source] = ACTIONS(1269), + [anon_sym_source_DASHenv] = ACTIONS(1269), + [anon_sym_register] = ACTIONS(1269), + [anon_sym_hide] = ACTIONS(1269), + [anon_sym_hide_DASHenv] = ACTIONS(1269), + [anon_sym_overlay] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1277), + [anon_sym_where] = ACTIONS(1272), + [aux_sym_expr_unary_token1] = ACTIONS(1272), + [anon_sym_PLUS2] = ACTIONS(1277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), + [anon_sym_DOT_DOT_LT] = ACTIONS(1272), + [anon_sym_null] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1269), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(1272), + [aux_sym__val_number_token2] = ACTIONS(1272), + [aux_sym__val_number_token3] = ACTIONS(1272), + [aux_sym__val_number_token4] = ACTIONS(1269), + [aux_sym__val_number_token5] = ACTIONS(1269), + [aux_sym__val_number_token6] = ACTIONS(1269), + [anon_sym_0b] = ACTIONS(1269), + [anon_sym_0o] = ACTIONS(1269), + [anon_sym_0x] = ACTIONS(1269), + [sym_val_date] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1272), + [sym__str_back_ticks] = ACTIONS(1272), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1275), + [aux_sym_env_var_token1] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1272), + [aux_sym_command_token1] = ACTIONS(1272), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [198] = { - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(5437), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(869), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(198), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(198), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), - [aux_sym_cmd_identifier_token1] = ACTIONS(1074), - [aux_sym_cmd_identifier_token2] = ACTIONS(1077), - [aux_sym_cmd_identifier_token3] = ACTIONS(1077), - [aux_sym_cmd_identifier_token4] = ACTIONS(1077), - [aux_sym_cmd_identifier_token5] = ACTIONS(1077), - [aux_sym_cmd_identifier_token6] = ACTIONS(1077), - [aux_sym_cmd_identifier_token7] = ACTIONS(1077), - [aux_sym_cmd_identifier_token8] = ACTIONS(1077), - [aux_sym_cmd_identifier_token9] = ACTIONS(1074), - [aux_sym_cmd_identifier_token10] = ACTIONS(1077), - [aux_sym_cmd_identifier_token11] = ACTIONS(1077), - [aux_sym_cmd_identifier_token12] = ACTIONS(1077), - [aux_sym_cmd_identifier_token13] = ACTIONS(1074), - [aux_sym_cmd_identifier_token14] = ACTIONS(1077), - [aux_sym_cmd_identifier_token15] = ACTIONS(1074), - [aux_sym_cmd_identifier_token16] = ACTIONS(1077), - [aux_sym_cmd_identifier_token17] = ACTIONS(1077), - [aux_sym_cmd_identifier_token18] = ACTIONS(1074), - [aux_sym_cmd_identifier_token19] = ACTIONS(1077), - [aux_sym_cmd_identifier_token20] = ACTIONS(1077), - [aux_sym_cmd_identifier_token21] = ACTIONS(1077), - [aux_sym_cmd_identifier_token22] = ACTIONS(1077), - [aux_sym_cmd_identifier_token23] = ACTIONS(1077), - [aux_sym_cmd_identifier_token24] = ACTIONS(1077), - [aux_sym_cmd_identifier_token25] = ACTIONS(1077), - [aux_sym_cmd_identifier_token26] = ACTIONS(1077), - [aux_sym_cmd_identifier_token27] = ACTIONS(1077), - [aux_sym_cmd_identifier_token28] = ACTIONS(1077), - [aux_sym_cmd_identifier_token29] = ACTIONS(1077), - [aux_sym_cmd_identifier_token30] = ACTIONS(1077), - [aux_sym_cmd_identifier_token31] = ACTIONS(1077), - [aux_sym_cmd_identifier_token32] = ACTIONS(1074), - [aux_sym_cmd_identifier_token33] = ACTIONS(1077), - [aux_sym_cmd_identifier_token34] = ACTIONS(1074), - [aux_sym_cmd_identifier_token35] = ACTIONS(1077), - [aux_sym_cmd_identifier_token36] = ACTIONS(1077), - [aux_sym_cmd_identifier_token37] = ACTIONS(1077), - [aux_sym_cmd_identifier_token38] = ACTIONS(1074), - [aux_sym_cmd_identifier_token39] = ACTIONS(1077), - [aux_sym_cmd_identifier_token40] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_DASH2] = ACTIONS(1089), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_do] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1101), - [anon_sym_match] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1110), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_where] = ACTIONS(1119), - [aux_sym_expr_unary_token1] = ACTIONS(1122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1125), - [anon_sym_DOT_DOT_LT] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1131), - [anon_sym_false] = ACTIONS(1131), - [aux_sym__val_number_decimal_token1] = ACTIONS(1134), - [aux_sym__val_number_decimal_token2] = ACTIONS(1137), - [aux_sym__val_number_decimal_token3] = ACTIONS(1140), - [aux_sym__val_number_decimal_token4] = ACTIONS(1143), - [aux_sym__val_number_token1] = ACTIONS(1146), - [aux_sym__val_number_token2] = ACTIONS(1146), - [aux_sym__val_number_token3] = ACTIONS(1146), - [aux_sym__val_number_token4] = ACTIONS(1149), - [aux_sym__val_number_token5] = ACTIONS(1149), - [aux_sym__val_number_token6] = ACTIONS(1149), - [anon_sym_0b] = ACTIONS(1152), - [anon_sym_0o] = ACTIONS(1155), - [anon_sym_0x] = ACTIONS(1155), - [sym_val_date] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym__str_single_quotes] = ACTIONS(1164), - [sym__str_back_ticks] = ACTIONS(1164), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1167), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1170), - [aux_sym_env_var_token1] = ACTIONS(1173), - [anon_sym_CARET] = ACTIONS(1176), - [aux_sym_command_token1] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1182), + [sym_raw_string_begin] = ACTIONS(1272), }, - [199] = { - [sym_cmd_identifier] = STATE(4846), - [sym__ctrl_expression] = STATE(5086), - [sym_ctrl_do] = STATE(5087), - [sym_ctrl_if] = STATE(5087), - [sym_ctrl_match] = STATE(5087), - [sym_ctrl_try] = STATE(5087), - [sym_ctrl_return] = STATE(5087), - [sym_pipe_element] = STATE(5327), - [sym_where_command] = STATE(5089), - [sym__expression] = STATE(4111), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(869), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5089), - [sym_comment] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(324), - [aux_sym_cmd_identifier_token1] = ACTIONS(1185), - [aux_sym_cmd_identifier_token2] = ACTIONS(1188), - [aux_sym_cmd_identifier_token3] = ACTIONS(1188), - [aux_sym_cmd_identifier_token4] = ACTIONS(1188), - [aux_sym_cmd_identifier_token5] = ACTIONS(1188), - [aux_sym_cmd_identifier_token6] = ACTIONS(1188), - [aux_sym_cmd_identifier_token7] = ACTIONS(1188), - [aux_sym_cmd_identifier_token8] = ACTIONS(1188), - [aux_sym_cmd_identifier_token9] = ACTIONS(1185), - [aux_sym_cmd_identifier_token10] = ACTIONS(1188), - [aux_sym_cmd_identifier_token11] = ACTIONS(1188), - [aux_sym_cmd_identifier_token12] = ACTIONS(1188), - [aux_sym_cmd_identifier_token13] = ACTIONS(1185), - [aux_sym_cmd_identifier_token14] = ACTIONS(1188), - [aux_sym_cmd_identifier_token15] = ACTIONS(1185), - [aux_sym_cmd_identifier_token16] = ACTIONS(1188), - [aux_sym_cmd_identifier_token17] = ACTIONS(1188), - [aux_sym_cmd_identifier_token18] = ACTIONS(1185), - [aux_sym_cmd_identifier_token19] = ACTIONS(1188), - [aux_sym_cmd_identifier_token20] = ACTIONS(1188), - [aux_sym_cmd_identifier_token21] = ACTIONS(1188), - [aux_sym_cmd_identifier_token22] = ACTIONS(1188), - [aux_sym_cmd_identifier_token23] = ACTIONS(1188), - [aux_sym_cmd_identifier_token24] = ACTIONS(1188), - [aux_sym_cmd_identifier_token25] = ACTIONS(1188), - [aux_sym_cmd_identifier_token26] = ACTIONS(1188), - [aux_sym_cmd_identifier_token27] = ACTIONS(1188), - [aux_sym_cmd_identifier_token28] = ACTIONS(1188), - [aux_sym_cmd_identifier_token29] = ACTIONS(1188), - [aux_sym_cmd_identifier_token30] = ACTIONS(1188), - [aux_sym_cmd_identifier_token31] = ACTIONS(1188), - [aux_sym_cmd_identifier_token32] = ACTIONS(1185), - [aux_sym_cmd_identifier_token33] = ACTIONS(1188), - [aux_sym_cmd_identifier_token34] = ACTIONS(1185), - [aux_sym_cmd_identifier_token35] = ACTIONS(1188), - [aux_sym_cmd_identifier_token36] = ACTIONS(1188), - [aux_sym_cmd_identifier_token37] = ACTIONS(1188), - [aux_sym_cmd_identifier_token38] = ACTIONS(1185), - [aux_sym_cmd_identifier_token39] = ACTIONS(1188), - [aux_sym_cmd_identifier_token40] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1197), - [anon_sym_DASH2] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_DOT_DOT] = ACTIONS(1221), - [anon_sym_try] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_where] = ACTIONS(1230), - [aux_sym_expr_unary_token1] = ACTIONS(1233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_DOT_DOT_LT] = ACTIONS(1236), - [anon_sym_null] = ACTIONS(1239), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [aux_sym__val_number_decimal_token1] = ACTIONS(1245), - [aux_sym__val_number_decimal_token2] = ACTIONS(1248), - [aux_sym__val_number_decimal_token3] = ACTIONS(1251), - [aux_sym__val_number_decimal_token4] = ACTIONS(1254), - [aux_sym__val_number_token1] = ACTIONS(1257), - [aux_sym__val_number_token2] = ACTIONS(1257), - [aux_sym__val_number_token3] = ACTIONS(1257), - [aux_sym__val_number_token4] = ACTIONS(1260), - [aux_sym__val_number_token5] = ACTIONS(1260), - [aux_sym__val_number_token6] = ACTIONS(1260), - [anon_sym_0b] = ACTIONS(1263), - [anon_sym_0o] = ACTIONS(1266), - [anon_sym_0x] = ACTIONS(1266), - [sym_val_date] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1272), + [191] = { + [sym_comment] = STATE(191), + [anon_sym_export] = ACTIONS(1277), + [anon_sym_alias] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1277), + [anon_sym_let_DASHenv] = ACTIONS(1277), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1277), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1277), + [aux_sym_cmd_identifier_token9] = ACTIONS(1277), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1277), + [aux_sym_cmd_identifier_token13] = ACTIONS(1277), + [aux_sym_cmd_identifier_token14] = ACTIONS(1277), + [aux_sym_cmd_identifier_token15] = ACTIONS(1277), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1277), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1275), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1275), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1275), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1275), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1275), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [aux_sym_cmd_identifier_token37] = ACTIONS(1275), + [aux_sym_cmd_identifier_token38] = ACTIONS(1277), + [aux_sym_cmd_identifier_token39] = ACTIONS(1275), + [aux_sym_cmd_identifier_token40] = ACTIONS(1275), + [sym__newline] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1277), + [anon_sym_export_DASHenv] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1277), + [anon_sym_module] = ACTIONS(1277), + [anon_sym_use] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_error] = ACTIONS(1277), + [anon_sym_DASH2] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_in2] = ACTIONS(1277), + [anon_sym_loop] = ACTIONS(1277), + [anon_sym_make] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1277), + [anon_sym_catch] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_source] = ACTIONS(1277), + [anon_sym_source_DASHenv] = ACTIONS(1277), + [anon_sym_register] = ACTIONS(1277), + [anon_sym_hide] = ACTIONS(1277), + [anon_sym_hide_DASHenv] = ACTIONS(1277), + [anon_sym_overlay] = ACTIONS(1277), + [anon_sym_as] = ACTIONS(1277), + [anon_sym_where] = ACTIONS(1275), + [aux_sym_expr_unary_token1] = ACTIONS(1275), + [anon_sym_PLUS2] = ACTIONS(1277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1277), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_decimal_token4] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1277), + [anon_sym_0o] = ACTIONS(1277), + [anon_sym_0x] = ACTIONS(1277), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), [sym__str_single_quotes] = ACTIONS(1275), [sym__str_back_ticks] = ACTIONS(1275), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1281), - [aux_sym_env_var_token1] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1287), - [aux_sym_command_token1] = ACTIONS(1290), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1293), - }, - [200] = { - [sym_cmd_identifier] = STATE(4892), - [sym__ctrl_expression_parenthesized] = STATE(5380), - [sym_ctrl_do_parenthesized] = STATE(5404), - [sym_ctrl_if_parenthesized] = STATE(5404), - [sym_ctrl_match] = STATE(5404), - [sym_ctrl_try_parenthesized] = STATE(5404), - [sym_ctrl_return] = STATE(5404), - [sym_pipe_element_parenthesized] = STATE(5055), - [sym_where_command_parenthesized] = STATE(5431), - [sym__expression_parenthesized] = STATE(4206), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5468), - [sym_comment] = STATE(200), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(198), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(317), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_do] = ACTIONS(463), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_match] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(467), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_where] = ACTIONS(471), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [201] = { - [sym_cmd_identifier] = STATE(5044), - [sym__ctrl_expression] = STATE(5445), - [sym_ctrl_do] = STATE(5449), - [sym_ctrl_if] = STATE(5449), - [sym_ctrl_match] = STATE(5449), - [sym_ctrl_try] = STATE(5449), - [sym_ctrl_return] = STATE(5449), - [sym_pipe_element] = STATE(4987), - [sym_where_command] = STATE(5344), - [sym__expression] = STATE(4205), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5344), - [sym_comment] = STATE(201), - [aux_sym_pipeline_repeat1] = STATE(199), - [aux_sym_pipe_element_repeat2] = STATE(328), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [202] = { - [sym_comment] = STATE(202), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_alias] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_let_DASHenv] = ACTIONS(1296), - [anon_sym_mut] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [aux_sym_cmd_identifier_token1] = ACTIONS(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1299), - [aux_sym_cmd_identifier_token3] = ACTIONS(1299), - [aux_sym_cmd_identifier_token4] = ACTIONS(1299), - [aux_sym_cmd_identifier_token5] = ACTIONS(1299), - [aux_sym_cmd_identifier_token6] = ACTIONS(1299), - [aux_sym_cmd_identifier_token7] = ACTIONS(1299), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1299), - [aux_sym_cmd_identifier_token11] = ACTIONS(1299), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1299), - [aux_sym_cmd_identifier_token17] = ACTIONS(1299), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1299), - [aux_sym_cmd_identifier_token20] = ACTIONS(1299), - [aux_sym_cmd_identifier_token21] = ACTIONS(1299), - [aux_sym_cmd_identifier_token22] = ACTIONS(1299), - [aux_sym_cmd_identifier_token23] = ACTIONS(1299), - [aux_sym_cmd_identifier_token24] = ACTIONS(1299), - [aux_sym_cmd_identifier_token25] = ACTIONS(1299), - [aux_sym_cmd_identifier_token26] = ACTIONS(1299), - [aux_sym_cmd_identifier_token27] = ACTIONS(1299), - [aux_sym_cmd_identifier_token28] = ACTIONS(1299), - [aux_sym_cmd_identifier_token29] = ACTIONS(1299), - [aux_sym_cmd_identifier_token30] = ACTIONS(1299), - [aux_sym_cmd_identifier_token31] = ACTIONS(1299), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1299), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1299), - [aux_sym_cmd_identifier_token36] = ACTIONS(1299), - [aux_sym_cmd_identifier_token37] = ACTIONS(1299), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1299), - [aux_sym_cmd_identifier_token40] = ACTIONS(1299), - [sym__newline] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1296), - [anon_sym_export_DASHenv] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_in2] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_make] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1296), - [anon_sym_catch] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_source] = ACTIONS(1296), - [anon_sym_source_DASHenv] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_hide] = ACTIONS(1296), - [anon_sym_hide_DASHenv] = ACTIONS(1296), - [anon_sym_overlay] = ACTIONS(1296), - [anon_sym_as] = ACTIONS(1304), - [anon_sym_where] = ACTIONS(1299), - [aux_sym_expr_unary_token1] = ACTIONS(1299), - [anon_sym_PLUS2] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), - [anon_sym_DOT_DOT_LT] = ACTIONS(1299), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1299), - [aux_sym__val_number_decimal_token3] = ACTIONS(1299), - [aux_sym__val_number_decimal_token4] = ACTIONS(1299), - [aux_sym__val_number_token1] = ACTIONS(1299), - [aux_sym__val_number_token2] = ACTIONS(1299), - [aux_sym__val_number_token3] = ACTIONS(1299), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_0b] = ACTIONS(1296), - [anon_sym_0o] = ACTIONS(1296), - [anon_sym_0x] = ACTIONS(1296), - [sym_val_date] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym__str_single_quotes] = ACTIONS(1299), - [sym__str_back_ticks] = ACTIONS(1299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1299), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1302), - [aux_sym_env_var_token1] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1299), - [aux_sym_command_token1] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1275), + [aux_sym_env_var_token1] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1275), + [aux_sym_command_token1] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [203] = { - [sym_comment] = STATE(203), - [aux_sym_shebang_repeat1] = STATE(203), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1308), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1308), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1308), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in2] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_make] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1310), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_PLUS2] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1310), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1310), - [aux_sym_env_var_token1] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), + [sym_raw_string_begin] = ACTIONS(1275), }, - [204] = { - [sym_comment] = STATE(204), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_alias] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_let_DASHenv] = ACTIONS(1304), - [anon_sym_mut] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [aux_sym_cmd_identifier_token1] = ACTIONS(1304), - [aux_sym_cmd_identifier_token2] = ACTIONS(1302), - [aux_sym_cmd_identifier_token3] = ACTIONS(1302), - [aux_sym_cmd_identifier_token4] = ACTIONS(1302), - [aux_sym_cmd_identifier_token5] = ACTIONS(1302), - [aux_sym_cmd_identifier_token6] = ACTIONS(1302), - [aux_sym_cmd_identifier_token7] = ACTIONS(1302), - [aux_sym_cmd_identifier_token8] = ACTIONS(1304), - [aux_sym_cmd_identifier_token9] = ACTIONS(1304), - [aux_sym_cmd_identifier_token10] = ACTIONS(1302), - [aux_sym_cmd_identifier_token11] = ACTIONS(1302), - [aux_sym_cmd_identifier_token12] = ACTIONS(1304), - [aux_sym_cmd_identifier_token13] = ACTIONS(1304), - [aux_sym_cmd_identifier_token14] = ACTIONS(1304), - [aux_sym_cmd_identifier_token15] = ACTIONS(1304), - [aux_sym_cmd_identifier_token16] = ACTIONS(1302), - [aux_sym_cmd_identifier_token17] = ACTIONS(1302), - [aux_sym_cmd_identifier_token18] = ACTIONS(1304), - [aux_sym_cmd_identifier_token19] = ACTIONS(1302), - [aux_sym_cmd_identifier_token20] = ACTIONS(1302), - [aux_sym_cmd_identifier_token21] = ACTIONS(1302), - [aux_sym_cmd_identifier_token22] = ACTIONS(1302), - [aux_sym_cmd_identifier_token23] = ACTIONS(1302), - [aux_sym_cmd_identifier_token24] = ACTIONS(1302), - [aux_sym_cmd_identifier_token25] = ACTIONS(1302), - [aux_sym_cmd_identifier_token26] = ACTIONS(1302), - [aux_sym_cmd_identifier_token27] = ACTIONS(1302), - [aux_sym_cmd_identifier_token28] = ACTIONS(1302), - [aux_sym_cmd_identifier_token29] = ACTIONS(1302), - [aux_sym_cmd_identifier_token30] = ACTIONS(1302), - [aux_sym_cmd_identifier_token31] = ACTIONS(1302), - [aux_sym_cmd_identifier_token32] = ACTIONS(1304), - [aux_sym_cmd_identifier_token33] = ACTIONS(1302), - [aux_sym_cmd_identifier_token34] = ACTIONS(1304), - [aux_sym_cmd_identifier_token35] = ACTIONS(1302), - [aux_sym_cmd_identifier_token36] = ACTIONS(1302), - [aux_sym_cmd_identifier_token37] = ACTIONS(1302), - [aux_sym_cmd_identifier_token38] = ACTIONS(1304), - [aux_sym_cmd_identifier_token39] = ACTIONS(1302), - [aux_sym_cmd_identifier_token40] = ACTIONS(1302), - [sym__newline] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1304), - [anon_sym_export_DASHenv] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_error] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_in2] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_make] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1304), - [anon_sym_catch] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_source] = ACTIONS(1304), - [anon_sym_source_DASHenv] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_hide] = ACTIONS(1304), - [anon_sym_hide_DASHenv] = ACTIONS(1304), - [anon_sym_overlay] = ACTIONS(1304), - [anon_sym_as] = ACTIONS(1304), - [anon_sym_where] = ACTIONS(1302), - [aux_sym_expr_unary_token1] = ACTIONS(1302), - [anon_sym_PLUS2] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1304), - [anon_sym_0o] = ACTIONS(1304), - [anon_sym_0x] = ACTIONS(1304), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1302), - [aux_sym_env_var_token1] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1302), - [aux_sym_command_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1302), - }, - [205] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8561), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(205), - [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(216), + [192] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7679), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(192), + [aux_sym_shebang_repeat1] = STATE(202), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [sym__newline] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -108241,7 +101553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -108255,96 +101567,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [206] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8322), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(206), - [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(216), + [193] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7408), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(193), + [aux_sym_shebang_repeat1] = STATE(202), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [sym__newline] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -108358,7 +101670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1301), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -108372,96 +101684,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [207] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8554), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(207), - [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(216), + [194] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7611), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(194), + [aux_sym_shebang_repeat1] = STATE(202), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [sym__newline] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -108475,7 +101787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -108489,96 +101801,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [208] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8295), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(208), - [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(216), + [195] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7519), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(195), + [aux_sym_shebang_repeat1] = STATE(202), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [sym__newline] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -108592,7 +101904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(1303), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -108606,96 +101918,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [209] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_body] = STATE(8272), - [sym_record_entry] = STATE(7836), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(209), - [aux_sym_shebang_repeat1] = STATE(214), - [aux_sym_record_body_repeat1] = STATE(216), + [196] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_body] = STATE(7481), + [sym_record_entry] = STATE(7176), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(196), + [aux_sym_shebang_repeat1] = STATE(202), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [sym__newline] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -108709,7 +102021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1305), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -108723,555 +102035,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [210] = { - [sym_cmd_identifier] = STATE(8505), - [sym__match_pattern_record_variable] = STATE(699), - [sym_expr_parenthesized] = STATE(8623), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(581), - [sym_val_number] = STATE(8623), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8623), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(699), - [sym__record_key] = STATE(8505), - [sym_comment] = STATE(210), - [aux_sym__match_pattern_record_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1339), - [anon_sym_alias] = ACTIONS(1339), - [anon_sym_let] = ACTIONS(1339), - [anon_sym_let_DASHenv] = ACTIONS(1339), - [anon_sym_mut] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [aux_sym_cmd_identifier_token1] = ACTIONS(1342), - [aux_sym_cmd_identifier_token2] = ACTIONS(1345), - [aux_sym_cmd_identifier_token3] = ACTIONS(1345), - [aux_sym_cmd_identifier_token4] = ACTIONS(1345), - [aux_sym_cmd_identifier_token5] = ACTIONS(1345), - [aux_sym_cmd_identifier_token6] = ACTIONS(1345), - [aux_sym_cmd_identifier_token7] = ACTIONS(1345), - [aux_sym_cmd_identifier_token8] = ACTIONS(1342), - [aux_sym_cmd_identifier_token9] = ACTIONS(1342), - [aux_sym_cmd_identifier_token10] = ACTIONS(1345), - [aux_sym_cmd_identifier_token11] = ACTIONS(1345), - [aux_sym_cmd_identifier_token12] = ACTIONS(1342), - [aux_sym_cmd_identifier_token13] = ACTIONS(1342), - [aux_sym_cmd_identifier_token14] = ACTIONS(1342), - [aux_sym_cmd_identifier_token15] = ACTIONS(1342), - [aux_sym_cmd_identifier_token16] = ACTIONS(1345), - [aux_sym_cmd_identifier_token17] = ACTIONS(1345), - [aux_sym_cmd_identifier_token18] = ACTIONS(1345), - [aux_sym_cmd_identifier_token19] = ACTIONS(1345), - [aux_sym_cmd_identifier_token20] = ACTIONS(1345), - [aux_sym_cmd_identifier_token21] = ACTIONS(1345), - [aux_sym_cmd_identifier_token22] = ACTIONS(1345), - [aux_sym_cmd_identifier_token23] = ACTIONS(1345), - [aux_sym_cmd_identifier_token24] = ACTIONS(1345), - [aux_sym_cmd_identifier_token25] = ACTIONS(1345), - [aux_sym_cmd_identifier_token26] = ACTIONS(1345), - [aux_sym_cmd_identifier_token27] = ACTIONS(1345), - [aux_sym_cmd_identifier_token28] = ACTIONS(1345), - [aux_sym_cmd_identifier_token29] = ACTIONS(1345), - [aux_sym_cmd_identifier_token30] = ACTIONS(1345), - [aux_sym_cmd_identifier_token31] = ACTIONS(1345), - [aux_sym_cmd_identifier_token32] = ACTIONS(1345), - [aux_sym_cmd_identifier_token33] = ACTIONS(1345), - [aux_sym_cmd_identifier_token34] = ACTIONS(1342), - [aux_sym_cmd_identifier_token35] = ACTIONS(1345), - [aux_sym_cmd_identifier_token36] = ACTIONS(1345), - [aux_sym_cmd_identifier_token37] = ACTIONS(1345), - [aux_sym_cmd_identifier_token38] = ACTIONS(1342), - [aux_sym_cmd_identifier_token39] = ACTIONS(1345), - [aux_sym_cmd_identifier_token40] = ACTIONS(1345), - [anon_sym_def] = ACTIONS(1339), - [anon_sym_export_DASHenv] = ACTIONS(1339), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_module] = ACTIONS(1339), - [anon_sym_use] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1351), - [anon_sym_error] = ACTIONS(1339), - [anon_sym_DASH2] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_in2] = ACTIONS(1339), - [anon_sym_loop] = ACTIONS(1339), - [anon_sym_make] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_do] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_else] = ACTIONS(1339), - [anon_sym_match] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1339), - [anon_sym_catch] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_source] = ACTIONS(1339), - [anon_sym_source_DASHenv] = ACTIONS(1339), - [anon_sym_register] = ACTIONS(1339), - [anon_sym_hide] = ACTIONS(1339), - [anon_sym_hide_DASHenv] = ACTIONS(1339), - [anon_sym_overlay] = ACTIONS(1339), - [anon_sym_as] = ACTIONS(1339), - [anon_sym_PLUS2] = ACTIONS(1354), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), - [aux_sym__val_number_decimal_token1] = ACTIONS(1365), - [aux_sym__val_number_decimal_token2] = ACTIONS(1368), - [aux_sym__val_number_decimal_token3] = ACTIONS(1371), - [aux_sym__val_number_decimal_token4] = ACTIONS(1374), - [aux_sym__val_number_token1] = ACTIONS(1377), - [aux_sym__val_number_token2] = ACTIONS(1377), - [aux_sym__val_number_token3] = ACTIONS(1377), - [aux_sym__val_number_token4] = ACTIONS(1380), - [aux_sym__val_number_token5] = ACTIONS(1380), - [aux_sym__val_number_token6] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1386), - [sym__str_back_ticks] = ACTIONS(1386), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1389), + [197] = { + [sym_cmd_identifier] = STATE(6185), + [sym__match_pattern_record_variable] = STATE(686), + [sym_expr_parenthesized] = STATE(7375), + [sym__spread_parenthesized] = STATE(735), + [sym__spread_variable] = STATE(736), + [sym_val_variable] = STATE(564), + [sym_val_number] = STATE(7375), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7375), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(735), + [sym_record_entry] = STATE(686), + [sym__record_key] = STATE(7718), + [sym_comment] = STATE(197), + [aux_sym__match_pattern_record_repeat1] = STATE(199), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_DASH2] = ACTIONS(207), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in2] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_make] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1392), + [sym_raw_string_begin] = ACTIONS(1299), }, - [211] = { - [sym_cmd_identifier] = STATE(8505), - [sym__match_pattern_record_variable] = STATE(699), - [sym_expr_parenthesized] = STATE(8623), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(581), - [sym_val_number] = STATE(8623), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8623), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(699), - [sym__record_key] = STATE(8505), - [sym_comment] = STATE(211), - [aux_sym__match_pattern_record_repeat1] = STATE(213), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1395), + [198] = { + [sym_cmd_identifier] = STATE(6185), + [sym__match_pattern_record_variable] = STATE(686), + [sym_expr_parenthesized] = STATE(7375), + [sym__spread_parenthesized] = STATE(735), + [sym__spread_variable] = STATE(736), + [sym_val_variable] = STATE(564), + [sym_val_number] = STATE(7375), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7375), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(735), + [sym_record_entry] = STATE(686), + [sym__record_key] = STATE(7718), + [sym_comment] = STATE(198), + [aux_sym__match_pattern_record_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_alias] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_let_DASHenv] = ACTIONS(1319), + [anon_sym_mut] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(1322), + [aux_sym_cmd_identifier_token2] = ACTIONS(1325), + [aux_sym_cmd_identifier_token3] = ACTIONS(1325), + [aux_sym_cmd_identifier_token4] = ACTIONS(1325), + [aux_sym_cmd_identifier_token5] = ACTIONS(1325), + [aux_sym_cmd_identifier_token6] = ACTIONS(1325), + [aux_sym_cmd_identifier_token7] = ACTIONS(1325), + [aux_sym_cmd_identifier_token8] = ACTIONS(1322), + [aux_sym_cmd_identifier_token9] = ACTIONS(1322), + [aux_sym_cmd_identifier_token10] = ACTIONS(1325), + [aux_sym_cmd_identifier_token11] = ACTIONS(1325), + [aux_sym_cmd_identifier_token12] = ACTIONS(1322), + [aux_sym_cmd_identifier_token13] = ACTIONS(1322), + [aux_sym_cmd_identifier_token14] = ACTIONS(1322), + [aux_sym_cmd_identifier_token15] = ACTIONS(1322), + [aux_sym_cmd_identifier_token16] = ACTIONS(1325), + [aux_sym_cmd_identifier_token17] = ACTIONS(1325), + [aux_sym_cmd_identifier_token18] = ACTIONS(1325), + [aux_sym_cmd_identifier_token19] = ACTIONS(1325), + [aux_sym_cmd_identifier_token20] = ACTIONS(1325), + [aux_sym_cmd_identifier_token21] = ACTIONS(1325), + [aux_sym_cmd_identifier_token22] = ACTIONS(1325), + [aux_sym_cmd_identifier_token23] = ACTIONS(1325), + [aux_sym_cmd_identifier_token24] = ACTIONS(1325), + [aux_sym_cmd_identifier_token25] = ACTIONS(1325), + [aux_sym_cmd_identifier_token26] = ACTIONS(1325), + [aux_sym_cmd_identifier_token27] = ACTIONS(1325), + [aux_sym_cmd_identifier_token28] = ACTIONS(1325), + [aux_sym_cmd_identifier_token29] = ACTIONS(1325), + [aux_sym_cmd_identifier_token30] = ACTIONS(1325), + [aux_sym_cmd_identifier_token31] = ACTIONS(1325), + [aux_sym_cmd_identifier_token32] = ACTIONS(1325), + [aux_sym_cmd_identifier_token33] = ACTIONS(1325), + [aux_sym_cmd_identifier_token34] = ACTIONS(1322), + [aux_sym_cmd_identifier_token35] = ACTIONS(1325), + [aux_sym_cmd_identifier_token36] = ACTIONS(1325), + [aux_sym_cmd_identifier_token37] = ACTIONS(1325), + [aux_sym_cmd_identifier_token38] = ACTIONS(1322), + [aux_sym_cmd_identifier_token39] = ACTIONS(1325), + [aux_sym_cmd_identifier_token40] = ACTIONS(1325), + [anon_sym_def] = ACTIONS(1319), + [anon_sym_export_DASHenv] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_use] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1331), + [anon_sym_error] = ACTIONS(1319), + [anon_sym_DASH2] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1319), + [anon_sym_for] = ACTIONS(1319), + [anon_sym_in2] = ACTIONS(1319), + [anon_sym_loop] = ACTIONS(1319), + [anon_sym_make] = ACTIONS(1319), + [anon_sym_while] = ACTIONS(1319), + [anon_sym_do] = ACTIONS(1319), + [anon_sym_if] = ACTIONS(1319), + [anon_sym_else] = ACTIONS(1319), + [anon_sym_match] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_try] = ACTIONS(1319), + [anon_sym_catch] = ACTIONS(1319), + [anon_sym_return] = ACTIONS(1319), + [anon_sym_source] = ACTIONS(1319), + [anon_sym_source_DASHenv] = ACTIONS(1319), + [anon_sym_register] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_hide_DASHenv] = ACTIONS(1319), + [anon_sym_overlay] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_PLUS2] = ACTIONS(1334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1342), + [aux_sym__val_number_decimal_token1] = ACTIONS(1345), + [aux_sym__val_number_decimal_token2] = ACTIONS(1348), + [aux_sym__val_number_decimal_token3] = ACTIONS(1351), + [aux_sym__val_number_decimal_token4] = ACTIONS(1354), + [aux_sym__val_number_token1] = ACTIONS(1357), + [aux_sym__val_number_token2] = ACTIONS(1357), + [aux_sym__val_number_token3] = ACTIONS(1357), + [aux_sym__val_number_token4] = ACTIONS(1360), + [aux_sym__val_number_token5] = ACTIONS(1360), + [aux_sym__val_number_token6] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym__str_single_quotes] = ACTIONS(1366), + [sym__str_back_ticks] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1372), + }, + [199] = { + [sym_cmd_identifier] = STATE(6185), + [sym__match_pattern_record_variable] = STATE(686), + [sym_expr_parenthesized] = STATE(7375), + [sym__spread_parenthesized] = STATE(735), + [sym__spread_variable] = STATE(736), + [sym_val_variable] = STATE(564), + [sym_val_number] = STATE(7375), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7375), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(735), + [sym_record_entry] = STATE(686), + [sym__record_key] = STATE(7718), + [sym_comment] = STATE(199), + [aux_sym__match_pattern_record_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(1307), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in2] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in2] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_make] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [212] = { - [sym_cmd_identifier] = STATE(8505), - [sym__match_pattern_record_variable] = STATE(699), - [sym_expr_parenthesized] = STATE(8623), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(581), - [sym_val_number] = STATE(8623), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8623), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(699), - [sym__record_key] = STATE(8505), - [sym_comment] = STATE(212), - [aux_sym__match_pattern_record_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1395), + [200] = { + [sym_cmd_identifier] = STATE(6185), + [sym__match_pattern_record_variable] = STATE(686), + [sym_expr_parenthesized] = STATE(7375), + [sym__spread_parenthesized] = STATE(735), + [sym__spread_variable] = STATE(736), + [sym_val_variable] = STATE(564), + [sym_val_number] = STATE(7375), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7375), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(735), + [sym_record_entry] = STATE(686), + [sym__record_key] = STATE(7718), + [sym_comment] = STATE(200), + [aux_sym__match_pattern_record_repeat1] = STATE(201), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(1307), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in2] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in2] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_make] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [213] = { - [sym_cmd_identifier] = STATE(8505), - [sym__match_pattern_record_variable] = STATE(699), - [sym_expr_parenthesized] = STATE(8623), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(581), - [sym_val_number] = STATE(8623), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8623), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(699), - [sym__record_key] = STATE(8505), - [sym_comment] = STATE(213), - [aux_sym__match_pattern_record_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1395), + [201] = { + [sym_cmd_identifier] = STATE(6185), + [sym__match_pattern_record_variable] = STATE(686), + [sym_expr_parenthesized] = STATE(7375), + [sym__spread_parenthesized] = STATE(735), + [sym__spread_variable] = STATE(736), + [sym_val_variable] = STATE(564), + [sym_val_number] = STATE(7375), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7375), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(735), + [sym_record_entry] = STATE(686), + [sym__record_key] = STATE(7718), + [sym_comment] = STATE(201), + [aux_sym__match_pattern_record_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_error] = ACTIONS(1307), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in2] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_in2] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_make] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [214] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7658), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(214), - [aux_sym_shebang_repeat1] = STATE(650), - [aux_sym_record_body_repeat1] = STATE(220), + [202] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6628), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(202), + [aux_sym_shebang_repeat1] = STATE(630), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [sym__newline] = ACTIONS(1319), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -109298,208 +102725,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [215] = { - [sym_cmd_identifier] = STATE(8505), - [sym__match_pattern_record_variable] = STATE(699), - [sym_expr_parenthesized] = STATE(8623), - [sym__spread_parenthesized] = STATE(731), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(581), - [sym_val_number] = STATE(8623), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8623), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(731), - [sym_record_entry] = STATE(699), - [sym__record_key] = STATE(8505), - [sym_comment] = STATE(215), - [aux_sym__match_pattern_record_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1395), - [anon_sym_alias] = ACTIONS(1395), - [anon_sym_let] = ACTIONS(1395), - [anon_sym_let_DASHenv] = ACTIONS(1395), - [anon_sym_mut] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), - [anon_sym_def] = ACTIONS(1395), - [anon_sym_export_DASHenv] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym_module] = ACTIONS(1395), - [anon_sym_use] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1397), - [anon_sym_error] = ACTIONS(1395), - [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_in2] = ACTIONS(1395), - [anon_sym_loop] = ACTIONS(1395), - [anon_sym_make] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_match] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_try] = ACTIONS(1395), - [anon_sym_catch] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_source] = ACTIONS(1395), - [anon_sym_source_DASHenv] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_hide] = ACTIONS(1395), - [anon_sym_hide_DASHenv] = ACTIONS(1395), - [anon_sym_overlay] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1395), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1403), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1405), + [203] = { + [sym_comment] = STATE(203), + [aux_sym__block_body_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_RPAREN] = ACTIONS(1385), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1383), }, - [216] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7691), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(216), - [aux_sym_record_body_repeat1] = STATE(218), + [204] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6854), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(204), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -109526,432 +102951,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [217] = { - [sym_comment] = STATE(217), - [aux_sym__block_body_repeat1] = STATE(217), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_alias] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_let_DASHenv] = ACTIONS(1413), - [anon_sym_mut] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [aux_sym_cmd_identifier_token1] = ACTIONS(1413), - [aux_sym_cmd_identifier_token2] = ACTIONS(1415), - [aux_sym_cmd_identifier_token3] = ACTIONS(1415), - [aux_sym_cmd_identifier_token4] = ACTIONS(1415), - [aux_sym_cmd_identifier_token5] = ACTIONS(1415), - [aux_sym_cmd_identifier_token6] = ACTIONS(1415), - [aux_sym_cmd_identifier_token7] = ACTIONS(1415), - [aux_sym_cmd_identifier_token8] = ACTIONS(1413), - [aux_sym_cmd_identifier_token9] = ACTIONS(1413), - [aux_sym_cmd_identifier_token10] = ACTIONS(1415), - [aux_sym_cmd_identifier_token11] = ACTIONS(1415), - [aux_sym_cmd_identifier_token12] = ACTIONS(1413), - [aux_sym_cmd_identifier_token13] = ACTIONS(1413), - [aux_sym_cmd_identifier_token14] = ACTIONS(1413), - [aux_sym_cmd_identifier_token15] = ACTIONS(1413), - [aux_sym_cmd_identifier_token16] = ACTIONS(1415), - [aux_sym_cmd_identifier_token17] = ACTIONS(1415), - [aux_sym_cmd_identifier_token18] = ACTIONS(1413), - [aux_sym_cmd_identifier_token19] = ACTIONS(1415), - [aux_sym_cmd_identifier_token20] = ACTIONS(1415), - [aux_sym_cmd_identifier_token21] = ACTIONS(1415), - [aux_sym_cmd_identifier_token22] = ACTIONS(1415), - [aux_sym_cmd_identifier_token23] = ACTIONS(1415), - [aux_sym_cmd_identifier_token24] = ACTIONS(1415), - [aux_sym_cmd_identifier_token25] = ACTIONS(1415), - [aux_sym_cmd_identifier_token26] = ACTIONS(1415), - [aux_sym_cmd_identifier_token27] = ACTIONS(1415), - [aux_sym_cmd_identifier_token28] = ACTIONS(1415), - [aux_sym_cmd_identifier_token29] = ACTIONS(1415), - [aux_sym_cmd_identifier_token30] = ACTIONS(1415), - [aux_sym_cmd_identifier_token31] = ACTIONS(1415), - [aux_sym_cmd_identifier_token32] = ACTIONS(1413), - [aux_sym_cmd_identifier_token33] = ACTIONS(1415), - [aux_sym_cmd_identifier_token34] = ACTIONS(1413), - [aux_sym_cmd_identifier_token35] = ACTIONS(1415), - [aux_sym_cmd_identifier_token36] = ACTIONS(1415), - [aux_sym_cmd_identifier_token37] = ACTIONS(1415), - [aux_sym_cmd_identifier_token38] = ACTIONS(1413), - [aux_sym_cmd_identifier_token39] = ACTIONS(1415), - [aux_sym_cmd_identifier_token40] = ACTIONS(1415), - [sym__newline] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_def] = ACTIONS(1413), - [anon_sym_export_DASHenv] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1413), - [anon_sym_DASH2] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_source] = ACTIONS(1413), - [anon_sym_source_DASHenv] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_hide_DASHenv] = ACTIONS(1413), - [anon_sym_overlay] = ACTIONS(1413), - [anon_sym_where] = ACTIONS(1415), - [aux_sym_expr_unary_token1] = ACTIONS(1415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1415), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1415), - [aux_sym__val_number_decimal_token3] = ACTIONS(1415), - [aux_sym__val_number_decimal_token4] = ACTIONS(1415), - [aux_sym__val_number_token1] = ACTIONS(1415), - [aux_sym__val_number_token2] = ACTIONS(1415), - [aux_sym__val_number_token3] = ACTIONS(1415), - [aux_sym__val_number_token4] = ACTIONS(1413), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1413), - [anon_sym_0b] = ACTIONS(1413), - [anon_sym_0o] = ACTIONS(1413), - [anon_sym_0x] = ACTIONS(1413), - [sym_val_date] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym__str_single_quotes] = ACTIONS(1415), - [sym__str_back_ticks] = ACTIONS(1415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1415), - [aux_sym_env_var_token1] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1415), - [aux_sym_command_token1] = ACTIONS(1415), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1415), - }, - [218] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(8081), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(218), - [aux_sym_record_body_repeat1] = STATE(218), - [anon_sym_export] = ACTIONS(1420), - [anon_sym_alias] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_let_DASHenv] = ACTIONS(1420), - [anon_sym_mut] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [aux_sym_cmd_identifier_token1] = ACTIONS(1423), - [aux_sym_cmd_identifier_token2] = ACTIONS(1426), - [aux_sym_cmd_identifier_token3] = ACTIONS(1426), - [aux_sym_cmd_identifier_token4] = ACTIONS(1426), - [aux_sym_cmd_identifier_token5] = ACTIONS(1426), - [aux_sym_cmd_identifier_token6] = ACTIONS(1426), - [aux_sym_cmd_identifier_token7] = ACTIONS(1426), - [aux_sym_cmd_identifier_token8] = ACTIONS(1423), - [aux_sym_cmd_identifier_token9] = ACTIONS(1423), - [aux_sym_cmd_identifier_token10] = ACTIONS(1426), - [aux_sym_cmd_identifier_token11] = ACTIONS(1426), - [aux_sym_cmd_identifier_token12] = ACTIONS(1423), - [aux_sym_cmd_identifier_token13] = ACTIONS(1423), - [aux_sym_cmd_identifier_token14] = ACTIONS(1423), - [aux_sym_cmd_identifier_token15] = ACTIONS(1423), - [aux_sym_cmd_identifier_token16] = ACTIONS(1426), - [aux_sym_cmd_identifier_token17] = ACTIONS(1426), - [aux_sym_cmd_identifier_token18] = ACTIONS(1426), - [aux_sym_cmd_identifier_token19] = ACTIONS(1426), - [aux_sym_cmd_identifier_token20] = ACTIONS(1426), - [aux_sym_cmd_identifier_token21] = ACTIONS(1426), - [aux_sym_cmd_identifier_token22] = ACTIONS(1426), - [aux_sym_cmd_identifier_token23] = ACTIONS(1426), - [aux_sym_cmd_identifier_token24] = ACTIONS(1426), - [aux_sym_cmd_identifier_token25] = ACTIONS(1426), - [aux_sym_cmd_identifier_token26] = ACTIONS(1426), - [aux_sym_cmd_identifier_token27] = ACTIONS(1426), - [aux_sym_cmd_identifier_token28] = ACTIONS(1426), - [aux_sym_cmd_identifier_token29] = ACTIONS(1426), - [aux_sym_cmd_identifier_token30] = ACTIONS(1426), - [aux_sym_cmd_identifier_token31] = ACTIONS(1426), - [aux_sym_cmd_identifier_token32] = ACTIONS(1426), - [aux_sym_cmd_identifier_token33] = ACTIONS(1426), - [aux_sym_cmd_identifier_token34] = ACTIONS(1423), - [aux_sym_cmd_identifier_token35] = ACTIONS(1426), - [aux_sym_cmd_identifier_token36] = ACTIONS(1426), - [aux_sym_cmd_identifier_token37] = ACTIONS(1426), - [aux_sym_cmd_identifier_token38] = ACTIONS(1423), - [aux_sym_cmd_identifier_token39] = ACTIONS(1426), - [aux_sym_cmd_identifier_token40] = ACTIONS(1426), - [anon_sym_def] = ACTIONS(1420), - [anon_sym_export_DASHenv] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_module] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_error] = ACTIONS(1420), - [anon_sym_DASH2] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_in2] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_make] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1420), - [anon_sym_catch] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_source] = ACTIONS(1420), - [anon_sym_source_DASHenv] = ACTIONS(1420), - [anon_sym_register] = ACTIONS(1420), - [anon_sym_hide] = ACTIONS(1420), - [anon_sym_hide_DASHenv] = ACTIONS(1420), - [anon_sym_overlay] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1420), - [anon_sym_PLUS2] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1438), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1441), - [aux_sym__val_number_decimal_token1] = ACTIONS(1444), - [aux_sym__val_number_decimal_token2] = ACTIONS(1447), - [aux_sym__val_number_decimal_token3] = ACTIONS(1450), - [aux_sym__val_number_decimal_token4] = ACTIONS(1453), - [aux_sym__val_number_token1] = ACTIONS(1456), - [aux_sym__val_number_token2] = ACTIONS(1456), - [aux_sym__val_number_token3] = ACTIONS(1456), - [aux_sym__val_number_token4] = ACTIONS(1459), - [aux_sym__val_number_token5] = ACTIONS(1459), - [aux_sym__val_number_token6] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym__str_single_quotes] = ACTIONS(1465), - [sym__str_back_ticks] = ACTIONS(1465), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1471), + [sym_raw_string_begin] = ACTIONS(1299), }, - [219] = { - [sym_comment] = STATE(219), - [aux_sym__block_body_repeat1] = STATE(217), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [205] = { + [sym_comment] = STATE(205), + [aux_sym__block_body_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1383), }, - [220] = { - [sym_cmd_identifier] = STATE(8527), - [sym_expr_parenthesized] = STATE(8548), - [sym__spread_parenthesized] = STATE(8135), - [sym__spread_variable] = STATE(8174), - [sym_val_variable] = STATE(8548), - [sym_val_number] = STATE(8548), - [sym__val_number_decimal] = STATE(3846), - [sym__val_number] = STATE(2431), - [sym_val_string] = STATE(8548), - [sym__raw_str] = STATE(1571), - [sym__str_double_quotes] = STATE(1571), - [sym__spread_record] = STATE(8135), - [sym_record_entry] = STATE(7877), - [sym__record_key] = STATE(8527), - [sym_comment] = STATE(220), - [aux_sym_record_body_repeat1] = STATE(218), + [206] = { + [sym_comment] = STATE(206), + [aux_sym__block_body_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_alias] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_let_DASHenv] = ACTIONS(1389), + [anon_sym_mut] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [aux_sym_cmd_identifier_token1] = ACTIONS(1389), + [aux_sym_cmd_identifier_token2] = ACTIONS(1391), + [aux_sym_cmd_identifier_token3] = ACTIONS(1391), + [aux_sym_cmd_identifier_token4] = ACTIONS(1391), + [aux_sym_cmd_identifier_token5] = ACTIONS(1391), + [aux_sym_cmd_identifier_token6] = ACTIONS(1391), + [aux_sym_cmd_identifier_token7] = ACTIONS(1391), + [aux_sym_cmd_identifier_token8] = ACTIONS(1389), + [aux_sym_cmd_identifier_token9] = ACTIONS(1389), + [aux_sym_cmd_identifier_token10] = ACTIONS(1391), + [aux_sym_cmd_identifier_token11] = ACTIONS(1391), + [aux_sym_cmd_identifier_token12] = ACTIONS(1389), + [aux_sym_cmd_identifier_token13] = ACTIONS(1389), + [aux_sym_cmd_identifier_token14] = ACTIONS(1389), + [aux_sym_cmd_identifier_token15] = ACTIONS(1389), + [aux_sym_cmd_identifier_token16] = ACTIONS(1391), + [aux_sym_cmd_identifier_token17] = ACTIONS(1391), + [aux_sym_cmd_identifier_token18] = ACTIONS(1389), + [aux_sym_cmd_identifier_token19] = ACTIONS(1391), + [aux_sym_cmd_identifier_token20] = ACTIONS(1391), + [aux_sym_cmd_identifier_token21] = ACTIONS(1391), + [aux_sym_cmd_identifier_token22] = ACTIONS(1391), + [aux_sym_cmd_identifier_token23] = ACTIONS(1391), + [aux_sym_cmd_identifier_token24] = ACTIONS(1391), + [aux_sym_cmd_identifier_token25] = ACTIONS(1391), + [aux_sym_cmd_identifier_token26] = ACTIONS(1391), + [aux_sym_cmd_identifier_token27] = ACTIONS(1391), + [aux_sym_cmd_identifier_token28] = ACTIONS(1391), + [aux_sym_cmd_identifier_token29] = ACTIONS(1391), + [aux_sym_cmd_identifier_token30] = ACTIONS(1391), + [aux_sym_cmd_identifier_token31] = ACTIONS(1391), + [aux_sym_cmd_identifier_token32] = ACTIONS(1389), + [aux_sym_cmd_identifier_token33] = ACTIONS(1391), + [aux_sym_cmd_identifier_token34] = ACTIONS(1389), + [aux_sym_cmd_identifier_token35] = ACTIONS(1391), + [aux_sym_cmd_identifier_token36] = ACTIONS(1391), + [aux_sym_cmd_identifier_token37] = ACTIONS(1391), + [aux_sym_cmd_identifier_token38] = ACTIONS(1389), + [aux_sym_cmd_identifier_token39] = ACTIONS(1391), + [aux_sym_cmd_identifier_token40] = ACTIONS(1391), + [sym__newline] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_def] = ACTIONS(1389), + [anon_sym_export_DASHenv] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1389), + [anon_sym_DASH2] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_source] = ACTIONS(1389), + [anon_sym_source_DASHenv] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_hide] = ACTIONS(1389), + [anon_sym_hide_DASHenv] = ACTIONS(1389), + [anon_sym_overlay] = ACTIONS(1389), + [anon_sym_where] = ACTIONS(1391), + [aux_sym_expr_unary_token1] = ACTIONS(1391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), + [anon_sym_DOT_DOT_LT] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [aux_sym__val_number_decimal_token1] = ACTIONS(1389), + [aux_sym__val_number_decimal_token2] = ACTIONS(1391), + [aux_sym__val_number_decimal_token3] = ACTIONS(1391), + [aux_sym__val_number_decimal_token4] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1389), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1389), + [anon_sym_0b] = ACTIONS(1389), + [anon_sym_0o] = ACTIONS(1389), + [anon_sym_0x] = ACTIONS(1389), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [aux_sym_env_var_token1] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1391), + [aux_sym_command_token1] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1391), + }, + [207] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(6636), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), [anon_sym_let_DASHenv] = ACTIONS(285), [anon_sym_mut] = ACTIONS(285), [anon_sym_const] = ACTIONS(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(1315), - [aux_sym_cmd_identifier_token2] = ACTIONS(1317), - [aux_sym_cmd_identifier_token3] = ACTIONS(1317), - [aux_sym_cmd_identifier_token4] = ACTIONS(1317), - [aux_sym_cmd_identifier_token5] = ACTIONS(1317), - [aux_sym_cmd_identifier_token6] = ACTIONS(1317), - [aux_sym_cmd_identifier_token7] = ACTIONS(1317), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1315), - [aux_sym_cmd_identifier_token10] = ACTIONS(1317), - [aux_sym_cmd_identifier_token11] = ACTIONS(1317), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1315), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1315), - [aux_sym_cmd_identifier_token16] = ACTIONS(1317), - [aux_sym_cmd_identifier_token17] = ACTIONS(1317), - [aux_sym_cmd_identifier_token18] = ACTIONS(1317), - [aux_sym_cmd_identifier_token19] = ACTIONS(1317), - [aux_sym_cmd_identifier_token20] = ACTIONS(1317), - [aux_sym_cmd_identifier_token21] = ACTIONS(1317), - [aux_sym_cmd_identifier_token22] = ACTIONS(1317), - [aux_sym_cmd_identifier_token23] = ACTIONS(1317), - [aux_sym_cmd_identifier_token24] = ACTIONS(1317), - [aux_sym_cmd_identifier_token25] = ACTIONS(1317), - [aux_sym_cmd_identifier_token26] = ACTIONS(1317), - [aux_sym_cmd_identifier_token27] = ACTIONS(1317), - [aux_sym_cmd_identifier_token28] = ACTIONS(1317), - [aux_sym_cmd_identifier_token29] = ACTIONS(1317), - [aux_sym_cmd_identifier_token30] = ACTIONS(1317), - [aux_sym_cmd_identifier_token31] = ACTIONS(1317), - [aux_sym_cmd_identifier_token32] = ACTIONS(1317), - [aux_sym_cmd_identifier_token33] = ACTIONS(1317), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1317), - [aux_sym_cmd_identifier_token36] = ACTIONS(1317), - [aux_sym_cmd_identifier_token37] = ACTIONS(1317), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1317), - [aux_sym_cmd_identifier_token40] = ACTIONS(1317), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(137), + [aux_sym_cmd_identifier_token3] = ACTIONS(137), + [aux_sym_cmd_identifier_token4] = ACTIONS(137), + [aux_sym_cmd_identifier_token5] = ACTIONS(137), + [aux_sym_cmd_identifier_token6] = ACTIONS(137), + [aux_sym_cmd_identifier_token7] = ACTIONS(137), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(137), + [aux_sym_cmd_identifier_token11] = ACTIONS(137), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(137), + [aux_sym_cmd_identifier_token17] = ACTIONS(137), + [aux_sym_cmd_identifier_token18] = ACTIONS(137), + [aux_sym_cmd_identifier_token19] = ACTIONS(137), + [aux_sym_cmd_identifier_token20] = ACTIONS(137), + [aux_sym_cmd_identifier_token21] = ACTIONS(137), + [aux_sym_cmd_identifier_token22] = ACTIONS(137), + [aux_sym_cmd_identifier_token23] = ACTIONS(137), + [aux_sym_cmd_identifier_token24] = ACTIONS(137), + [aux_sym_cmd_identifier_token25] = ACTIONS(137), + [aux_sym_cmd_identifier_token26] = ACTIONS(137), + [aux_sym_cmd_identifier_token27] = ACTIONS(137), + [aux_sym_cmd_identifier_token28] = ACTIONS(137), + [aux_sym_cmd_identifier_token29] = ACTIONS(137), + [aux_sym_cmd_identifier_token30] = ACTIONS(137), + [aux_sym_cmd_identifier_token31] = ACTIONS(137), + [aux_sym_cmd_identifier_token32] = ACTIONS(137), + [aux_sym_cmd_identifier_token33] = ACTIONS(137), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(137), + [aux_sym_cmd_identifier_token36] = ACTIONS(137), + [aux_sym_cmd_identifier_token37] = ACTIONS(137), + [aux_sym_cmd_identifier_token38] = ACTIONS(135), + [aux_sym_cmd_identifier_token39] = ACTIONS(137), + [aux_sym_cmd_identifier_token40] = ACTIONS(137), [anon_sym_def] = ACTIONS(285), [anon_sym_export_DASHenv] = ACTIONS(285), [anon_sym_extern] = ACTIONS(285), [anon_sym_module] = ACTIONS(285), [anon_sym_use] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1323), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), [anon_sym_error] = ACTIONS(285), [anon_sym_DASH2] = ACTIONS(207), [anon_sym_break] = ACTIONS(285), @@ -109978,330 +103290,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1327), - [aux_sym__val_number_decimal_token2] = ACTIONS(1329), - [aux_sym__val_number_decimal_token3] = ACTIONS(1331), - [aux_sym__val_number_decimal_token4] = ACTIONS(1333), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1291), + [aux_sym__val_number_decimal_token4] = ACTIONS(1293), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1299), }, - [221] = { - [sym_comment] = STATE(221), - [aux_sym__block_body_repeat1] = STATE(217), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), + [208] = { + [sym_comment] = STATE(208), + [aux_sym__block_body_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), [sym__newline] = ACTIONS(141), [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1383), }, - [222] = { - [sym_comment] = STATE(222), - [aux_sym__block_body_repeat1] = STATE(217), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), + [209] = { + [sym_cmd_identifier] = STATE(6074), + [sym_expr_parenthesized] = STATE(7737), + [sym__spread_parenthesized] = STATE(7262), + [sym__spread_variable] = STATE(7276), + [sym_val_variable] = STATE(7737), + [sym_val_number] = STATE(7737), + [sym__val_number_decimal] = STATE(3527), + [sym__val_number] = STATE(1660), + [sym_val_string] = STATE(7737), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym__spread_record] = STATE(7262), + [sym_record_entry] = STATE(7293), + [sym__record_key] = STATE(7386), + [sym_comment] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1398), + [anon_sym_alias] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_let_DASHenv] = ACTIONS(1398), + [anon_sym_mut] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [aux_sym_cmd_identifier_token1] = ACTIONS(1401), + [aux_sym_cmd_identifier_token2] = ACTIONS(1404), + [aux_sym_cmd_identifier_token3] = ACTIONS(1404), + [aux_sym_cmd_identifier_token4] = ACTIONS(1404), + [aux_sym_cmd_identifier_token5] = ACTIONS(1404), + [aux_sym_cmd_identifier_token6] = ACTIONS(1404), + [aux_sym_cmd_identifier_token7] = ACTIONS(1404), + [aux_sym_cmd_identifier_token8] = ACTIONS(1401), + [aux_sym_cmd_identifier_token9] = ACTIONS(1401), + [aux_sym_cmd_identifier_token10] = ACTIONS(1404), + [aux_sym_cmd_identifier_token11] = ACTIONS(1404), + [aux_sym_cmd_identifier_token12] = ACTIONS(1401), + [aux_sym_cmd_identifier_token13] = ACTIONS(1401), + [aux_sym_cmd_identifier_token14] = ACTIONS(1401), + [aux_sym_cmd_identifier_token15] = ACTIONS(1401), + [aux_sym_cmd_identifier_token16] = ACTIONS(1404), + [aux_sym_cmd_identifier_token17] = ACTIONS(1404), + [aux_sym_cmd_identifier_token18] = ACTIONS(1404), + [aux_sym_cmd_identifier_token19] = ACTIONS(1404), + [aux_sym_cmd_identifier_token20] = ACTIONS(1404), + [aux_sym_cmd_identifier_token21] = ACTIONS(1404), + [aux_sym_cmd_identifier_token22] = ACTIONS(1404), + [aux_sym_cmd_identifier_token23] = ACTIONS(1404), + [aux_sym_cmd_identifier_token24] = ACTIONS(1404), + [aux_sym_cmd_identifier_token25] = ACTIONS(1404), + [aux_sym_cmd_identifier_token26] = ACTIONS(1404), + [aux_sym_cmd_identifier_token27] = ACTIONS(1404), + [aux_sym_cmd_identifier_token28] = ACTIONS(1404), + [aux_sym_cmd_identifier_token29] = ACTIONS(1404), + [aux_sym_cmd_identifier_token30] = ACTIONS(1404), + [aux_sym_cmd_identifier_token31] = ACTIONS(1404), + [aux_sym_cmd_identifier_token32] = ACTIONS(1404), + [aux_sym_cmd_identifier_token33] = ACTIONS(1404), + [aux_sym_cmd_identifier_token34] = ACTIONS(1401), + [aux_sym_cmd_identifier_token35] = ACTIONS(1404), + [aux_sym_cmd_identifier_token36] = ACTIONS(1404), + [aux_sym_cmd_identifier_token37] = ACTIONS(1404), + [aux_sym_cmd_identifier_token38] = ACTIONS(1401), + [aux_sym_cmd_identifier_token39] = ACTIONS(1404), + [aux_sym_cmd_identifier_token40] = ACTIONS(1404), + [anon_sym_def] = ACTIONS(1398), + [anon_sym_export_DASHenv] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_module] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_error] = ACTIONS(1398), + [anon_sym_DASH2] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_in2] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_make] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [anon_sym_catch] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_source] = ACTIONS(1398), + [anon_sym_source_DASHenv] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_hide] = ACTIONS(1398), + [anon_sym_hide_DASHenv] = ACTIONS(1398), + [anon_sym_overlay] = ACTIONS(1398), + [anon_sym_as] = ACTIONS(1398), + [anon_sym_PLUS2] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1422), + [aux_sym__val_number_decimal_token2] = ACTIONS(1425), + [aux_sym__val_number_decimal_token3] = ACTIONS(1428), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1434), + [aux_sym__val_number_token2] = ACTIONS(1434), + [aux_sym__val_number_token3] = ACTIONS(1434), + [aux_sym__val_number_token4] = ACTIONS(1437), + [aux_sym__val_number_token5] = ACTIONS(1437), + [aux_sym__val_number_token6] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym__str_single_quotes] = ACTIONS(1443), + [sym__str_back_ticks] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1449), }, - [223] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5317), - [sym_block] = STATE(5390), - [sym__expression_parenthesized] = STATE(5390), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5390), - [sym_comment] = STATE(223), - [aux_sym_shebang_repeat1] = STATE(253), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [210] = { + [sym_comment] = STATE(210), + [aux_sym__block_body_repeat1] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(1396), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1383), + }, + [211] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4808), + [sym_block] = STATE(4809), + [sym__expression_parenthesized] = STATE(4809), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4809), + [sym_comment] = STATE(211), + [aux_sym_shebang_repeat1] = STATE(213), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110309,671 +103733,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [224] = { - [sym_comment] = STATE(224), - [aux_sym_shebang_repeat1] = STATE(224), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1308), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1308), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1308), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1310), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [aux_sym_env_var_token1] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), - }, - [225] = { - [sym_comment] = STATE(225), - [aux_sym__block_body_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1478), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), - }, - [226] = { - [sym_comment] = STATE(226), - [aux_sym_shebang_repeat1] = STATE(7746), - [aux_sym__parenthesized_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1499), - [anon_sym_alias] = ACTIONS(1499), - [anon_sym_let] = ACTIONS(1499), - [anon_sym_let_DASHenv] = ACTIONS(1499), - [anon_sym_mut] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [aux_sym_cmd_identifier_token1] = ACTIONS(1499), - [aux_sym_cmd_identifier_token2] = ACTIONS(1501), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [aux_sym_cmd_identifier_token6] = ACTIONS(1501), - [aux_sym_cmd_identifier_token7] = ACTIONS(1501), - [aux_sym_cmd_identifier_token8] = ACTIONS(1499), - [aux_sym_cmd_identifier_token9] = ACTIONS(1499), - [aux_sym_cmd_identifier_token10] = ACTIONS(1501), - [aux_sym_cmd_identifier_token11] = ACTIONS(1501), - [aux_sym_cmd_identifier_token12] = ACTIONS(1499), - [aux_sym_cmd_identifier_token13] = ACTIONS(1499), - [aux_sym_cmd_identifier_token14] = ACTIONS(1499), - [aux_sym_cmd_identifier_token15] = ACTIONS(1499), - [aux_sym_cmd_identifier_token16] = ACTIONS(1501), - [aux_sym_cmd_identifier_token17] = ACTIONS(1501), - [aux_sym_cmd_identifier_token18] = ACTIONS(1499), - [aux_sym_cmd_identifier_token19] = ACTIONS(1501), - [aux_sym_cmd_identifier_token20] = ACTIONS(1501), - [aux_sym_cmd_identifier_token21] = ACTIONS(1501), - [aux_sym_cmd_identifier_token22] = ACTIONS(1501), - [aux_sym_cmd_identifier_token23] = ACTIONS(1501), - [aux_sym_cmd_identifier_token24] = ACTIONS(1501), - [aux_sym_cmd_identifier_token25] = ACTIONS(1501), - [aux_sym_cmd_identifier_token26] = ACTIONS(1501), - [aux_sym_cmd_identifier_token27] = ACTIONS(1501), - [aux_sym_cmd_identifier_token28] = ACTIONS(1501), - [aux_sym_cmd_identifier_token29] = ACTIONS(1501), - [aux_sym_cmd_identifier_token30] = ACTIONS(1501), - [aux_sym_cmd_identifier_token31] = ACTIONS(1501), - [aux_sym_cmd_identifier_token32] = ACTIONS(1499), - [aux_sym_cmd_identifier_token33] = ACTIONS(1501), - [aux_sym_cmd_identifier_token34] = ACTIONS(1499), - [aux_sym_cmd_identifier_token35] = ACTIONS(1501), - [aux_sym_cmd_identifier_token36] = ACTIONS(1501), - [aux_sym_cmd_identifier_token37] = ACTIONS(1501), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1501), - [aux_sym_cmd_identifier_token40] = ACTIONS(1501), - [sym__newline] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_def] = ACTIONS(1499), - [anon_sym_export_DASHenv] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_module] = ACTIONS(1499), - [anon_sym_use] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_error] = ACTIONS(1499), - [anon_sym_DASH2] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_loop] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_match] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_source] = ACTIONS(1499), - [anon_sym_source_DASHenv] = ACTIONS(1499), - [anon_sym_register] = ACTIONS(1499), - [anon_sym_hide] = ACTIONS(1499), - [anon_sym_hide_DASHenv] = ACTIONS(1499), - [anon_sym_overlay] = ACTIONS(1499), - [anon_sym_where] = ACTIONS(1501), - [aux_sym_expr_unary_token1] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), - [anon_sym_DOT_DOT_LT] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1499), - [aux_sym__val_number_decimal_token2] = ACTIONS(1501), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1499), - [aux_sym__val_number_token5] = ACTIONS(1499), - [aux_sym__val_number_token6] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1499), - [anon_sym_0x] = ACTIONS(1499), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [aux_sym_env_var_token1] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1501), - [aux_sym_command_token1] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1501), - }, - [227] = { - [sym_comment] = STATE(227), - [aux_sym__block_body_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_alias] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_let_DASHenv] = ACTIONS(1413), - [anon_sym_mut] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [aux_sym_cmd_identifier_token1] = ACTIONS(1413), - [aux_sym_cmd_identifier_token2] = ACTIONS(1415), - [aux_sym_cmd_identifier_token3] = ACTIONS(1415), - [aux_sym_cmd_identifier_token4] = ACTIONS(1415), - [aux_sym_cmd_identifier_token5] = ACTIONS(1415), - [aux_sym_cmd_identifier_token6] = ACTIONS(1415), - [aux_sym_cmd_identifier_token7] = ACTIONS(1415), - [aux_sym_cmd_identifier_token8] = ACTIONS(1413), - [aux_sym_cmd_identifier_token9] = ACTIONS(1413), - [aux_sym_cmd_identifier_token10] = ACTIONS(1415), - [aux_sym_cmd_identifier_token11] = ACTIONS(1415), - [aux_sym_cmd_identifier_token12] = ACTIONS(1413), - [aux_sym_cmd_identifier_token13] = ACTIONS(1413), - [aux_sym_cmd_identifier_token14] = ACTIONS(1413), - [aux_sym_cmd_identifier_token15] = ACTIONS(1413), - [aux_sym_cmd_identifier_token16] = ACTIONS(1415), - [aux_sym_cmd_identifier_token17] = ACTIONS(1415), - [aux_sym_cmd_identifier_token18] = ACTIONS(1413), - [aux_sym_cmd_identifier_token19] = ACTIONS(1415), - [aux_sym_cmd_identifier_token20] = ACTIONS(1415), - [aux_sym_cmd_identifier_token21] = ACTIONS(1415), - [aux_sym_cmd_identifier_token22] = ACTIONS(1415), - [aux_sym_cmd_identifier_token23] = ACTIONS(1415), - [aux_sym_cmd_identifier_token24] = ACTIONS(1415), - [aux_sym_cmd_identifier_token25] = ACTIONS(1415), - [aux_sym_cmd_identifier_token26] = ACTIONS(1415), - [aux_sym_cmd_identifier_token27] = ACTIONS(1415), - [aux_sym_cmd_identifier_token28] = ACTIONS(1415), - [aux_sym_cmd_identifier_token29] = ACTIONS(1415), - [aux_sym_cmd_identifier_token30] = ACTIONS(1415), - [aux_sym_cmd_identifier_token31] = ACTIONS(1415), - [aux_sym_cmd_identifier_token32] = ACTIONS(1413), - [aux_sym_cmd_identifier_token33] = ACTIONS(1415), - [aux_sym_cmd_identifier_token34] = ACTIONS(1413), - [aux_sym_cmd_identifier_token35] = ACTIONS(1415), - [aux_sym_cmd_identifier_token36] = ACTIONS(1415), - [aux_sym_cmd_identifier_token37] = ACTIONS(1415), - [aux_sym_cmd_identifier_token38] = ACTIONS(1413), - [aux_sym_cmd_identifier_token39] = ACTIONS(1415), - [aux_sym_cmd_identifier_token40] = ACTIONS(1415), - [sym__newline] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_def] = ACTIONS(1413), - [anon_sym_export_DASHenv] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_error] = ACTIONS(1413), - [anon_sym_DASH2] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_source] = ACTIONS(1413), - [anon_sym_source_DASHenv] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_hide] = ACTIONS(1413), - [anon_sym_hide_DASHenv] = ACTIONS(1413), - [anon_sym_overlay] = ACTIONS(1413), - [anon_sym_where] = ACTIONS(1415), - [aux_sym_expr_unary_token1] = ACTIONS(1415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1415), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [aux_sym__val_number_decimal_token1] = ACTIONS(1413), - [aux_sym__val_number_decimal_token2] = ACTIONS(1415), - [aux_sym__val_number_decimal_token3] = ACTIONS(1415), - [aux_sym__val_number_decimal_token4] = ACTIONS(1415), - [aux_sym__val_number_token1] = ACTIONS(1415), - [aux_sym__val_number_token2] = ACTIONS(1415), - [aux_sym__val_number_token3] = ACTIONS(1415), - [aux_sym__val_number_token4] = ACTIONS(1413), - [aux_sym__val_number_token5] = ACTIONS(1413), - [aux_sym__val_number_token6] = ACTIONS(1413), - [anon_sym_0b] = ACTIONS(1413), - [anon_sym_0o] = ACTIONS(1413), - [anon_sym_0x] = ACTIONS(1413), - [sym_val_date] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym__str_single_quotes] = ACTIONS(1415), - [sym__str_back_ticks] = ACTIONS(1415), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1415), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1415), - [aux_sym_env_var_token1] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1415), - [aux_sym_command_token1] = ACTIONS(1415), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1415), + [sym_raw_string_begin] = ACTIONS(253), }, - [228] = { - [sym_comment] = STATE(228), - [aux_sym__block_body_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1482), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), + [212] = { + [sym_comment] = STATE(212), + [aux_sym_shebang_repeat1] = STATE(292), + [aux_sym__parenthesized_body_repeat1] = STATE(263), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_alias] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_let_DASHenv] = ACTIONS(1464), + [anon_sym_mut] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [aux_sym_cmd_identifier_token1] = ACTIONS(1464), + [aux_sym_cmd_identifier_token2] = ACTIONS(1466), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [aux_sym_cmd_identifier_token6] = ACTIONS(1466), + [aux_sym_cmd_identifier_token7] = ACTIONS(1466), + [aux_sym_cmd_identifier_token8] = ACTIONS(1464), + [aux_sym_cmd_identifier_token9] = ACTIONS(1464), + [aux_sym_cmd_identifier_token10] = ACTIONS(1466), + [aux_sym_cmd_identifier_token11] = ACTIONS(1466), + [aux_sym_cmd_identifier_token12] = ACTIONS(1464), + [aux_sym_cmd_identifier_token13] = ACTIONS(1464), + [aux_sym_cmd_identifier_token14] = ACTIONS(1464), + [aux_sym_cmd_identifier_token15] = ACTIONS(1464), + [aux_sym_cmd_identifier_token16] = ACTIONS(1466), + [aux_sym_cmd_identifier_token17] = ACTIONS(1466), + [aux_sym_cmd_identifier_token18] = ACTIONS(1464), + [aux_sym_cmd_identifier_token19] = ACTIONS(1466), + [aux_sym_cmd_identifier_token20] = ACTIONS(1466), + [aux_sym_cmd_identifier_token21] = ACTIONS(1466), + [aux_sym_cmd_identifier_token22] = ACTIONS(1466), + [aux_sym_cmd_identifier_token23] = ACTIONS(1466), + [aux_sym_cmd_identifier_token24] = ACTIONS(1466), + [aux_sym_cmd_identifier_token25] = ACTIONS(1466), + [aux_sym_cmd_identifier_token26] = ACTIONS(1466), + [aux_sym_cmd_identifier_token27] = ACTIONS(1466), + [aux_sym_cmd_identifier_token28] = ACTIONS(1466), + [aux_sym_cmd_identifier_token29] = ACTIONS(1466), + [aux_sym_cmd_identifier_token30] = ACTIONS(1466), + [aux_sym_cmd_identifier_token31] = ACTIONS(1466), + [aux_sym_cmd_identifier_token32] = ACTIONS(1464), + [aux_sym_cmd_identifier_token33] = ACTIONS(1466), + [aux_sym_cmd_identifier_token34] = ACTIONS(1464), + [aux_sym_cmd_identifier_token35] = ACTIONS(1466), + [aux_sym_cmd_identifier_token36] = ACTIONS(1466), + [aux_sym_cmd_identifier_token37] = ACTIONS(1466), + [aux_sym_cmd_identifier_token38] = ACTIONS(1464), + [aux_sym_cmd_identifier_token39] = ACTIONS(1466), + [aux_sym_cmd_identifier_token40] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_def] = ACTIONS(1464), + [anon_sym_export_DASHenv] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_error] = ACTIONS(1464), + [anon_sym_DASH2] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_try] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_source] = ACTIONS(1464), + [anon_sym_source_DASHenv] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_hide] = ACTIONS(1464), + [anon_sym_hide_DASHenv] = ACTIONS(1464), + [anon_sym_overlay] = ACTIONS(1464), + [anon_sym_where] = ACTIONS(1466), + [aux_sym_expr_unary_token1] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1466), + [anon_sym_DOT_DOT_LT] = ACTIONS(1466), + [anon_sym_null] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1466), + [aux_sym__val_number_decimal_token4] = ACTIONS(1466), + [aux_sym__val_number_token1] = ACTIONS(1466), + [aux_sym__val_number_token2] = ACTIONS(1466), + [aux_sym__val_number_token3] = ACTIONS(1466), + [aux_sym__val_number_token4] = ACTIONS(1464), + [aux_sym__val_number_token5] = ACTIONS(1464), + [aux_sym__val_number_token6] = ACTIONS(1464), + [anon_sym_0b] = ACTIONS(1464), + [anon_sym_0o] = ACTIONS(1464), + [anon_sym_0x] = ACTIONS(1464), + [sym_val_date] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [sym__str_single_quotes] = ACTIONS(1466), + [sym__str_back_ticks] = ACTIONS(1466), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1466), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1466), + [aux_sym_env_var_token1] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1466), + [aux_sym_command_token1] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1466), }, - [229] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5317), - [sym_block] = STATE(5390), - [sym__expression_parenthesized] = STATE(5390), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5390), - [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(231), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [213] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4873), + [sym_block] = STATE(4874), + [sym__expression_parenthesized] = STATE(4874), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4874), + [sym_comment] = STATE(213), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -110981,223 +103957,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [230] = { - [sym_comment] = STATE(230), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_POUND_BANG] = ACTIONS(1302), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_alias] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_let_DASHenv] = ACTIONS(1522), - [anon_sym_mut] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [aux_sym_cmd_identifier_token1] = ACTIONS(1522), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1522), - [aux_sym_cmd_identifier_token9] = ACTIONS(1522), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1522), - [aux_sym_cmd_identifier_token13] = ACTIONS(1522), - [aux_sym_cmd_identifier_token14] = ACTIONS(1522), - [aux_sym_cmd_identifier_token15] = ACTIONS(1522), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1522), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1522), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1522), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1522), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_export_DASHenv] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_module] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1522), - [anon_sym_error] = ACTIONS(1522), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_source] = ACTIONS(1522), - [anon_sym_source_DASHenv] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_hide] = ACTIONS(1522), - [anon_sym_hide_DASHenv] = ACTIONS(1522), - [anon_sym_overlay] = ACTIONS(1522), - [anon_sym_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [aux_sym__val_number_decimal_token1] = ACTIONS(1522), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1522), - [aux_sym__val_number_token5] = ACTIONS(1522), - [aux_sym__val_number_token6] = ACTIONS(1522), - [anon_sym_0b] = ACTIONS(1522), - [anon_sym_0o] = ACTIONS(1522), - [anon_sym_0x] = ACTIONS(1522), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [aux_sym_env_var_token1] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1306), + [sym_raw_string_begin] = ACTIONS(253), }, - [231] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5459), - [sym_block] = STATE(5460), - [sym__expression_parenthesized] = STATE(5460), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5460), - [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [214] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4873), + [sym_block] = STATE(4874), + [sym__expression_parenthesized] = STATE(4874), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4874), + [sym_comment] = STATE(214), + [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111205,111 +104069,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [232] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5459), - [sym_block] = STATE(5460), - [sym__expression_parenthesized] = STATE(5460), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5460), - [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(235), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [215] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4875), + [sym_block] = STATE(4876), + [sym__expression_parenthesized] = STATE(4876), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4876), + [sym_comment] = STATE(215), + [aux_sym_shebang_repeat1] = STATE(219), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111317,111 +104181,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [233] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5474), - [sym_block] = STATE(5475), - [sym__expression_parenthesized] = STATE(5475), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5475), - [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(237), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [216] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4877), + [sym_block] = STATE(4878), + [sym__expression_parenthesized] = STATE(4878), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4878), + [sym_comment] = STATE(216), + [aux_sym_shebang_repeat1] = STATE(221), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111429,111 +104293,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [234] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5438), - [sym_block] = STATE(5443), - [sym__expression_parenthesized] = STATE(5443), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5443), - [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(239), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [217] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4901), + [sym_block] = STATE(4902), + [sym__expression_parenthesized] = STATE(4902), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4902), + [sym_comment] = STATE(217), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111541,111 +104405,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [235] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5331), - [sym_block] = STATE(5333), - [sym__expression_parenthesized] = STATE(5333), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5333), - [sym_comment] = STATE(235), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [218] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4901), + [sym_block] = STATE(4902), + [sym__expression_parenthesized] = STATE(4902), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4902), + [sym_comment] = STATE(218), + [aux_sym_shebang_repeat1] = STATE(225), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111653,111 +104517,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [236] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5331), - [sym_block] = STATE(5333), - [sym__expression_parenthesized] = STATE(5333), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5333), - [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(241), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [219] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4903), + [sym_block] = STATE(4904), + [sym__expression_parenthesized] = STATE(4904), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4904), + [sym_comment] = STATE(219), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111765,111 +104629,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [237] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5335), - [sym_block] = STATE(5336), - [sym__expression_parenthesized] = STATE(5336), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5336), - [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [220] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4903), + [sym_block] = STATE(4904), + [sym__expression_parenthesized] = STATE(4904), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4904), + [sym_comment] = STATE(220), + [aux_sym_shebang_repeat1] = STATE(226), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111877,111 +104741,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [238] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5335), - [sym_block] = STATE(5336), - [sym__expression_parenthesized] = STATE(5336), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5336), - [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(242), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [221] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4905), + [sym_block] = STATE(4906), + [sym__expression_parenthesized] = STATE(4906), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4906), + [sym_comment] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -111989,111 +104853,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [239] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5338), - [sym_block] = STATE(5340), - [sym__expression_parenthesized] = STATE(5340), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5340), - [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [222] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4905), + [sym_block] = STATE(4906), + [sym__expression_parenthesized] = STATE(4906), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4906), + [sym_comment] = STATE(222), + [aux_sym_shebang_repeat1] = STATE(228), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112101,111 +104965,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [240] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5345), - [sym_block] = STATE(5346), - [sym__expression_parenthesized] = STATE(5346), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5346), - [sym_comment] = STATE(240), - [aux_sym_shebang_repeat1] = STATE(246), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [223] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4907), + [sym_block] = STATE(4908), + [sym__expression_parenthesized] = STATE(4908), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4908), + [sym_comment] = STATE(223), + [aux_sym_shebang_repeat1] = STATE(230), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112213,111 +105077,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [241] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5455), - [sym_block] = STATE(5456), - [sym__expression_parenthesized] = STATE(5456), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5456), - [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [224] = { + [sym_comment] = STATE(224), + [aux_sym__block_body_repeat1] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1383), + }, + [225] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4923), + [sym_block] = STATE(4924), + [sym__expression_parenthesized] = STATE(4924), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4924), + [sym_comment] = STATE(225), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112325,111 +105301,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [242] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5457), - [sym_block] = STATE(5458), - [sym__expression_parenthesized] = STATE(5458), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5458), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [226] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4926), + [sym_comment] = STATE(226), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112437,111 +105413,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [243] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5457), - [sym_block] = STATE(5458), - [sym__expression_parenthesized] = STATE(5458), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5458), - [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(248), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [227] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4926), + [sym_comment] = STATE(227), + [aux_sym_shebang_repeat1] = STATE(232), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112549,111 +105525,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [244] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5461), - [sym_block] = STATE(5462), - [sym__expression_parenthesized] = STATE(5462), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5462), - [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [228] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4927), + [sym_block] = STATE(4928), + [sym__expression_parenthesized] = STATE(4928), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4928), + [sym_comment] = STATE(228), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112661,111 +105637,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [245] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5461), - [sym_block] = STATE(5462), - [sym__expression_parenthesized] = STATE(5462), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5462), - [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [229] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4927), + [sym_block] = STATE(4928), + [sym__expression_parenthesized] = STATE(4928), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4928), + [sym_comment] = STATE(229), + [aux_sym_shebang_repeat1] = STATE(233), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112773,111 +105749,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [246] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5463), - [sym_block] = STATE(5464), - [sym__expression_parenthesized] = STATE(5464), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5464), - [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [230] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4931), + [sym_comment] = STATE(230), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112885,111 +105861,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [247] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5463), - [sym_block] = STATE(5464), - [sym__expression_parenthesized] = STATE(5464), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5464), - [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(250), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [231] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4931), + [sym_comment] = STATE(231), + [aux_sym_shebang_repeat1] = STATE(234), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -112997,111 +105973,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [248] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5361), - [sym_block] = STATE(5378), - [sym__expression_parenthesized] = STATE(5378), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5378), - [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [232] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4933), + [sym_block] = STATE(4934), + [sym__expression_parenthesized] = STATE(4934), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4934), + [sym_comment] = STATE(232), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113109,111 +106085,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [249] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5313), - [sym_block] = STATE(5433), - [sym__expression_parenthesized] = STATE(5433), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5433), - [sym_comment] = STATE(249), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [233] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4935), + [sym_block] = STATE(4936), + [sym__expression_parenthesized] = STATE(4936), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4936), + [sym_comment] = STATE(233), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113221,111 +106197,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [250] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5400), - [sym_block] = STATE(5315), - [sym__expression_parenthesized] = STATE(5315), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5315), - [sym_comment] = STATE(250), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [234] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4937), + [sym_block] = STATE(4938), + [sym__expression_parenthesized] = STATE(4938), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4938), + [sym_comment] = STATE(234), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113333,111 +106309,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [251] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5400), - [sym_block] = STATE(5315), - [sym__expression_parenthesized] = STATE(5315), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5315), - [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(252), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [235] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4937), + [sym_block] = STATE(4938), + [sym__expression_parenthesized] = STATE(4938), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4938), + [sym_comment] = STATE(235), + [aux_sym_shebang_repeat1] = STATE(236), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113445,111 +106421,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [252] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5405), - [sym_block] = STATE(5430), - [sym__expression_parenthesized] = STATE(5430), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5430), - [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [236] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4940), + [sym_block] = STATE(4941), + [sym__expression_parenthesized] = STATE(4941), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4941), + [sym_comment] = STATE(236), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113557,111 +106533,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [253] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5459), - [sym_block] = STATE(5460), - [sym__expression_parenthesized] = STATE(5460), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5460), - [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [237] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4808), + [sym_block] = STATE(4809), + [sym__expression_parenthesized] = STATE(4809), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4809), + [sym_comment] = STATE(237), + [aux_sym_shebang_repeat1] = STATE(240), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113669,111 +106645,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [254] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5459), - [sym_block] = STATE(5460), - [sym__expression_parenthesized] = STATE(5460), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5460), - [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(281), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [238] = { + [sym_comment] = STATE(238), + [aux_sym__block_body_repeat1] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_alias] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_let_DASHenv] = ACTIONS(1389), + [anon_sym_mut] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [aux_sym_cmd_identifier_token1] = ACTIONS(1389), + [aux_sym_cmd_identifier_token2] = ACTIONS(1391), + [aux_sym_cmd_identifier_token3] = ACTIONS(1391), + [aux_sym_cmd_identifier_token4] = ACTIONS(1391), + [aux_sym_cmd_identifier_token5] = ACTIONS(1391), + [aux_sym_cmd_identifier_token6] = ACTIONS(1391), + [aux_sym_cmd_identifier_token7] = ACTIONS(1391), + [aux_sym_cmd_identifier_token8] = ACTIONS(1389), + [aux_sym_cmd_identifier_token9] = ACTIONS(1389), + [aux_sym_cmd_identifier_token10] = ACTIONS(1391), + [aux_sym_cmd_identifier_token11] = ACTIONS(1391), + [aux_sym_cmd_identifier_token12] = ACTIONS(1389), + [aux_sym_cmd_identifier_token13] = ACTIONS(1389), + [aux_sym_cmd_identifier_token14] = ACTIONS(1389), + [aux_sym_cmd_identifier_token15] = ACTIONS(1389), + [aux_sym_cmd_identifier_token16] = ACTIONS(1391), + [aux_sym_cmd_identifier_token17] = ACTIONS(1391), + [aux_sym_cmd_identifier_token18] = ACTIONS(1389), + [aux_sym_cmd_identifier_token19] = ACTIONS(1391), + [aux_sym_cmd_identifier_token20] = ACTIONS(1391), + [aux_sym_cmd_identifier_token21] = ACTIONS(1391), + [aux_sym_cmd_identifier_token22] = ACTIONS(1391), + [aux_sym_cmd_identifier_token23] = ACTIONS(1391), + [aux_sym_cmd_identifier_token24] = ACTIONS(1391), + [aux_sym_cmd_identifier_token25] = ACTIONS(1391), + [aux_sym_cmd_identifier_token26] = ACTIONS(1391), + [aux_sym_cmd_identifier_token27] = ACTIONS(1391), + [aux_sym_cmd_identifier_token28] = ACTIONS(1391), + [aux_sym_cmd_identifier_token29] = ACTIONS(1391), + [aux_sym_cmd_identifier_token30] = ACTIONS(1391), + [aux_sym_cmd_identifier_token31] = ACTIONS(1391), + [aux_sym_cmd_identifier_token32] = ACTIONS(1389), + [aux_sym_cmd_identifier_token33] = ACTIONS(1391), + [aux_sym_cmd_identifier_token34] = ACTIONS(1389), + [aux_sym_cmd_identifier_token35] = ACTIONS(1391), + [aux_sym_cmd_identifier_token36] = ACTIONS(1391), + [aux_sym_cmd_identifier_token37] = ACTIONS(1391), + [aux_sym_cmd_identifier_token38] = ACTIONS(1389), + [aux_sym_cmd_identifier_token39] = ACTIONS(1391), + [aux_sym_cmd_identifier_token40] = ACTIONS(1391), + [sym__newline] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_def] = ACTIONS(1389), + [anon_sym_export_DASHenv] = ACTIONS(1389), + [anon_sym_extern] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_use] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_error] = ACTIONS(1389), + [anon_sym_DASH2] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_loop] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_match] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1389), + [anon_sym_try] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_source] = ACTIONS(1389), + [anon_sym_source_DASHenv] = ACTIONS(1389), + [anon_sym_register] = ACTIONS(1389), + [anon_sym_hide] = ACTIONS(1389), + [anon_sym_hide_DASHenv] = ACTIONS(1389), + [anon_sym_overlay] = ACTIONS(1389), + [anon_sym_where] = ACTIONS(1391), + [aux_sym_expr_unary_token1] = ACTIONS(1391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1391), + [anon_sym_DOT_DOT_LT] = ACTIONS(1391), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [aux_sym__val_number_decimal_token1] = ACTIONS(1389), + [aux_sym__val_number_decimal_token2] = ACTIONS(1391), + [aux_sym__val_number_decimal_token3] = ACTIONS(1391), + [aux_sym__val_number_decimal_token4] = ACTIONS(1391), + [aux_sym__val_number_token1] = ACTIONS(1391), + [aux_sym__val_number_token2] = ACTIONS(1391), + [aux_sym__val_number_token3] = ACTIONS(1391), + [aux_sym__val_number_token4] = ACTIONS(1389), + [aux_sym__val_number_token5] = ACTIONS(1389), + [aux_sym__val_number_token6] = ACTIONS(1389), + [anon_sym_0b] = ACTIONS(1389), + [anon_sym_0o] = ACTIONS(1389), + [anon_sym_0x] = ACTIONS(1389), + [sym_val_date] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym__str_single_quotes] = ACTIONS(1391), + [sym__str_back_ticks] = ACTIONS(1391), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1391), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1391), + [aux_sym_env_var_token1] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1391), + [aux_sym_command_token1] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1391), + }, + [239] = { + [sym_comment] = STATE(239), + [anon_sym_export] = ACTIONS(1485), + [anon_sym_alias] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_let_DASHenv] = ACTIONS(1485), + [anon_sym_mut] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [aux_sym_cmd_identifier_token1] = ACTIONS(1485), + [aux_sym_cmd_identifier_token2] = ACTIONS(1279), + [aux_sym_cmd_identifier_token3] = ACTIONS(1279), + [aux_sym_cmd_identifier_token4] = ACTIONS(1279), + [aux_sym_cmd_identifier_token5] = ACTIONS(1279), + [aux_sym_cmd_identifier_token6] = ACTIONS(1279), + [aux_sym_cmd_identifier_token7] = ACTIONS(1279), + [aux_sym_cmd_identifier_token8] = ACTIONS(1485), + [aux_sym_cmd_identifier_token9] = ACTIONS(1485), + [aux_sym_cmd_identifier_token10] = ACTIONS(1279), + [aux_sym_cmd_identifier_token11] = ACTIONS(1279), + [aux_sym_cmd_identifier_token12] = ACTIONS(1485), + [aux_sym_cmd_identifier_token13] = ACTIONS(1485), + [aux_sym_cmd_identifier_token14] = ACTIONS(1485), + [aux_sym_cmd_identifier_token15] = ACTIONS(1485), + [aux_sym_cmd_identifier_token16] = ACTIONS(1279), + [aux_sym_cmd_identifier_token17] = ACTIONS(1279), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1279), + [aux_sym_cmd_identifier_token20] = ACTIONS(1279), + [aux_sym_cmd_identifier_token21] = ACTIONS(1279), + [aux_sym_cmd_identifier_token22] = ACTIONS(1279), + [aux_sym_cmd_identifier_token23] = ACTIONS(1279), + [aux_sym_cmd_identifier_token24] = ACTIONS(1279), + [aux_sym_cmd_identifier_token25] = ACTIONS(1279), + [aux_sym_cmd_identifier_token26] = ACTIONS(1279), + [aux_sym_cmd_identifier_token27] = ACTIONS(1279), + [aux_sym_cmd_identifier_token28] = ACTIONS(1279), + [aux_sym_cmd_identifier_token29] = ACTIONS(1279), + [aux_sym_cmd_identifier_token30] = ACTIONS(1279), + [aux_sym_cmd_identifier_token31] = ACTIONS(1279), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1279), + [aux_sym_cmd_identifier_token34] = ACTIONS(1485), + [aux_sym_cmd_identifier_token35] = ACTIONS(1279), + [aux_sym_cmd_identifier_token36] = ACTIONS(1279), + [aux_sym_cmd_identifier_token37] = ACTIONS(1279), + [aux_sym_cmd_identifier_token38] = ACTIONS(1485), + [aux_sym_cmd_identifier_token39] = ACTIONS(1279), + [aux_sym_cmd_identifier_token40] = ACTIONS(1279), + [sym__newline] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_export_DASHenv] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_module] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_loop] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_source] = ACTIONS(1485), + [anon_sym_source_DASHenv] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_hide] = ACTIONS(1485), + [anon_sym_hide_DASHenv] = ACTIONS(1485), + [anon_sym_overlay] = ACTIONS(1485), + [anon_sym_where] = ACTIONS(1279), + [aux_sym_expr_unary_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1485), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_decimal_token4] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1485), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [aux_sym_env_var_token1] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1279), + [aux_sym_command_token1] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1279), + }, + [240] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4873), + [sym_block] = STATE(4874), + [sym__expression_parenthesized] = STATE(4874), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4874), + [sym_comment] = STATE(240), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113781,111 +106981,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [255] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5474), - [sym_block] = STATE(5475), - [sym__expression_parenthesized] = STATE(5475), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5475), - [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(283), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [241] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4873), + [sym_block] = STATE(4874), + [sym__expression_parenthesized] = STATE(4874), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4874), + [sym_comment] = STATE(241), + [aux_sym_shebang_repeat1] = STATE(244), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -113893,111 +107093,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [256] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5438), - [sym_block] = STATE(5443), - [sym__expression_parenthesized] = STATE(5443), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5443), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [242] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4875), + [sym_block] = STATE(4876), + [sym__expression_parenthesized] = STATE(4876), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4876), + [sym_comment] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(246), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114005,111 +107205,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [257] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5317), - [sym_block] = STATE(5390), - [sym__expression_parenthesized] = STATE(5390), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5390), - [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(258), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [243] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4877), + [sym_block] = STATE(4878), + [sym__expression_parenthesized] = STATE(4878), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4878), + [sym_comment] = STATE(243), + [aux_sym_shebang_repeat1] = STATE(248), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114117,111 +107317,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [258] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5459), - [sym_block] = STATE(5460), - [sym__expression_parenthesized] = STATE(5460), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5460), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [244] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4901), + [sym_block] = STATE(4902), + [sym__expression_parenthesized] = STATE(4902), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4902), + [sym_comment] = STATE(244), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114229,111 +107429,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [259] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5459), - [sym_block] = STATE(5460), - [sym__expression_parenthesized] = STATE(5460), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5460), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(262), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [245] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4901), + [sym_block] = STATE(4902), + [sym__expression_parenthesized] = STATE(4902), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4902), + [sym_comment] = STATE(245), + [aux_sym_shebang_repeat1] = STATE(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114341,111 +107541,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [260] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5474), - [sym_block] = STATE(5475), - [sym__expression_parenthesized] = STATE(5475), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5475), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(264), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [246] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4903), + [sym_block] = STATE(4904), + [sym__expression_parenthesized] = STATE(4904), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4904), + [sym_comment] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114453,111 +107653,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [261] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5438), - [sym_block] = STATE(5443), - [sym__expression_parenthesized] = STATE(5443), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5443), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(266), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [247] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4903), + [sym_block] = STATE(4904), + [sym__expression_parenthesized] = STATE(4904), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4904), + [sym_comment] = STATE(247), + [aux_sym_shebang_repeat1] = STATE(252), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114565,111 +107765,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [262] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5331), - [sym_block] = STATE(5333), - [sym__expression_parenthesized] = STATE(5333), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5333), - [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [248] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4905), + [sym_block] = STATE(4906), + [sym__expression_parenthesized] = STATE(4906), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4906), + [sym_comment] = STATE(248), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114677,111 +107877,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [263] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5331), - [sym_block] = STATE(5333), - [sym__expression_parenthesized] = STATE(5333), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5333), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(269), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [249] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4905), + [sym_block] = STATE(4906), + [sym__expression_parenthesized] = STATE(4906), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4906), + [sym_comment] = STATE(249), + [aux_sym_shebang_repeat1] = STATE(254), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114789,111 +107989,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [264] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5335), - [sym_block] = STATE(5336), - [sym__expression_parenthesized] = STATE(5336), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5336), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [250] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4907), + [sym_block] = STATE(4908), + [sym__expression_parenthesized] = STATE(4908), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4908), + [sym_comment] = STATE(250), + [aux_sym_shebang_repeat1] = STATE(256), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114901,111 +108101,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [265] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5335), - [sym_block] = STATE(5336), - [sym__expression_parenthesized] = STATE(5336), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5336), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(270), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [251] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4923), + [sym_block] = STATE(4924), + [sym__expression_parenthesized] = STATE(4924), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4924), + [sym_comment] = STATE(251), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115013,111 +108213,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [266] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5338), - [sym_block] = STATE(5340), - [sym__expression_parenthesized] = STATE(5340), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5340), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [252] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4926), + [sym_comment] = STATE(252), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115125,111 +108325,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [267] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5338), - [sym_block] = STATE(5340), - [sym__expression_parenthesized] = STATE(5340), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5340), - [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(272), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [253] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4926), + [sym_comment] = STATE(253), + [aux_sym_shebang_repeat1] = STATE(291), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115237,111 +108437,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [268] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5345), - [sym_block] = STATE(5346), - [sym__expression_parenthesized] = STATE(5346), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5346), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(274), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [254] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4927), + [sym_block] = STATE(4928), + [sym__expression_parenthesized] = STATE(4928), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4928), + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115349,111 +108549,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [269] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5455), - [sym_block] = STATE(5456), - [sym__expression_parenthesized] = STATE(5456), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5456), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [255] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4927), + [sym_block] = STATE(4928), + [sym__expression_parenthesized] = STATE(4928), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4928), + [sym_comment] = STATE(255), + [aux_sym_shebang_repeat1] = STATE(258), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115461,111 +108661,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [270] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5457), - [sym_block] = STATE(5458), - [sym__expression_parenthesized] = STATE(5458), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5458), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [256] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4931), + [sym_comment] = STATE(256), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115573,111 +108773,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [271] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5457), - [sym_block] = STATE(5458), - [sym__expression_parenthesized] = STATE(5458), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5458), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(276), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [257] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4931), + [sym_comment] = STATE(257), + [aux_sym_shebang_repeat1] = STATE(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115685,111 +108885,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [272] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5461), - [sym_block] = STATE(5462), - [sym__expression_parenthesized] = STATE(5462), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5462), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [258] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4935), + [sym_block] = STATE(4936), + [sym__expression_parenthesized] = STATE(4936), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4936), + [sym_comment] = STATE(258), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115797,111 +108997,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [273] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5461), - [sym_block] = STATE(5462), - [sym__expression_parenthesized] = STATE(5462), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5462), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(277), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [259] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4937), + [sym_block] = STATE(4938), + [sym__expression_parenthesized] = STATE(4938), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4938), + [sym_comment] = STATE(259), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115909,111 +109109,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [274] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5463), - [sym_block] = STATE(5464), - [sym__expression_parenthesized] = STATE(5464), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5464), - [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [260] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4937), + [sym_block] = STATE(4938), + [sym__expression_parenthesized] = STATE(4938), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4938), + [sym_comment] = STATE(260), + [aux_sym_shebang_repeat1] = STATE(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116021,111 +109221,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [275] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5463), - [sym_block] = STATE(5464), - [sym__expression_parenthesized] = STATE(5464), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5464), - [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(278), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [261] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4940), + [sym_block] = STATE(4941), + [sym__expression_parenthesized] = STATE(4941), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4941), + [sym_comment] = STATE(261), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116133,111 +109333,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [276] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5361), - [sym_block] = STATE(5378), - [sym__expression_parenthesized] = STATE(5378), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5378), - [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [262] = { + [sym_comment] = STATE(262), + [ts_builtin_sym_end] = ACTIONS(1279), + [anon_sym_POUND_BANG] = ACTIONS(1275), + [anon_sym_export] = ACTIONS(1485), + [anon_sym_alias] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_let_DASHenv] = ACTIONS(1485), + [anon_sym_mut] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [aux_sym_cmd_identifier_token1] = ACTIONS(1485), + [aux_sym_cmd_identifier_token2] = ACTIONS(1279), + [aux_sym_cmd_identifier_token3] = ACTIONS(1279), + [aux_sym_cmd_identifier_token4] = ACTIONS(1279), + [aux_sym_cmd_identifier_token5] = ACTIONS(1279), + [aux_sym_cmd_identifier_token6] = ACTIONS(1279), + [aux_sym_cmd_identifier_token7] = ACTIONS(1279), + [aux_sym_cmd_identifier_token8] = ACTIONS(1485), + [aux_sym_cmd_identifier_token9] = ACTIONS(1485), + [aux_sym_cmd_identifier_token10] = ACTIONS(1279), + [aux_sym_cmd_identifier_token11] = ACTIONS(1279), + [aux_sym_cmd_identifier_token12] = ACTIONS(1485), + [aux_sym_cmd_identifier_token13] = ACTIONS(1485), + [aux_sym_cmd_identifier_token14] = ACTIONS(1485), + [aux_sym_cmd_identifier_token15] = ACTIONS(1485), + [aux_sym_cmd_identifier_token16] = ACTIONS(1279), + [aux_sym_cmd_identifier_token17] = ACTIONS(1279), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1279), + [aux_sym_cmd_identifier_token20] = ACTIONS(1279), + [aux_sym_cmd_identifier_token21] = ACTIONS(1279), + [aux_sym_cmd_identifier_token22] = ACTIONS(1279), + [aux_sym_cmd_identifier_token23] = ACTIONS(1279), + [aux_sym_cmd_identifier_token24] = ACTIONS(1279), + [aux_sym_cmd_identifier_token25] = ACTIONS(1279), + [aux_sym_cmd_identifier_token26] = ACTIONS(1279), + [aux_sym_cmd_identifier_token27] = ACTIONS(1279), + [aux_sym_cmd_identifier_token28] = ACTIONS(1279), + [aux_sym_cmd_identifier_token29] = ACTIONS(1279), + [aux_sym_cmd_identifier_token30] = ACTIONS(1279), + [aux_sym_cmd_identifier_token31] = ACTIONS(1279), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1279), + [aux_sym_cmd_identifier_token34] = ACTIONS(1485), + [aux_sym_cmd_identifier_token35] = ACTIONS(1279), + [aux_sym_cmd_identifier_token36] = ACTIONS(1279), + [aux_sym_cmd_identifier_token37] = ACTIONS(1279), + [aux_sym_cmd_identifier_token38] = ACTIONS(1485), + [aux_sym_cmd_identifier_token39] = ACTIONS(1279), + [aux_sym_cmd_identifier_token40] = ACTIONS(1279), + [sym__newline] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_export_DASHenv] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_module] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_loop] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_source] = ACTIONS(1485), + [anon_sym_source_DASHenv] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_hide] = ACTIONS(1485), + [anon_sym_hide_DASHenv] = ACTIONS(1485), + [anon_sym_overlay] = ACTIONS(1485), + [anon_sym_where] = ACTIONS(1279), + [aux_sym_expr_unary_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1485), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_decimal_token4] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1485), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [aux_sym_env_var_token1] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1279), + [aux_sym_command_token1] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1279), + }, + [263] = { + [sym_comment] = STATE(263), + [aux_sym_shebang_repeat1] = STATE(6689), + [aux_sym__parenthesized_body_repeat1] = STATE(263), + [anon_sym_export] = ACTIONS(1487), + [anon_sym_alias] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_let_DASHenv] = ACTIONS(1487), + [anon_sym_mut] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [aux_sym_cmd_identifier_token1] = ACTIONS(1487), + [aux_sym_cmd_identifier_token2] = ACTIONS(1489), + [aux_sym_cmd_identifier_token3] = ACTIONS(1489), + [aux_sym_cmd_identifier_token4] = ACTIONS(1489), + [aux_sym_cmd_identifier_token5] = ACTIONS(1489), + [aux_sym_cmd_identifier_token6] = ACTIONS(1489), + [aux_sym_cmd_identifier_token7] = ACTIONS(1489), + [aux_sym_cmd_identifier_token8] = ACTIONS(1487), + [aux_sym_cmd_identifier_token9] = ACTIONS(1487), + [aux_sym_cmd_identifier_token10] = ACTIONS(1489), + [aux_sym_cmd_identifier_token11] = ACTIONS(1489), + [aux_sym_cmd_identifier_token12] = ACTIONS(1487), + [aux_sym_cmd_identifier_token13] = ACTIONS(1487), + [aux_sym_cmd_identifier_token14] = ACTIONS(1487), + [aux_sym_cmd_identifier_token15] = ACTIONS(1487), + [aux_sym_cmd_identifier_token16] = ACTIONS(1489), + [aux_sym_cmd_identifier_token17] = ACTIONS(1489), + [aux_sym_cmd_identifier_token18] = ACTIONS(1487), + [aux_sym_cmd_identifier_token19] = ACTIONS(1489), + [aux_sym_cmd_identifier_token20] = ACTIONS(1489), + [aux_sym_cmd_identifier_token21] = ACTIONS(1489), + [aux_sym_cmd_identifier_token22] = ACTIONS(1489), + [aux_sym_cmd_identifier_token23] = ACTIONS(1489), + [aux_sym_cmd_identifier_token24] = ACTIONS(1489), + [aux_sym_cmd_identifier_token25] = ACTIONS(1489), + [aux_sym_cmd_identifier_token26] = ACTIONS(1489), + [aux_sym_cmd_identifier_token27] = ACTIONS(1489), + [aux_sym_cmd_identifier_token28] = ACTIONS(1489), + [aux_sym_cmd_identifier_token29] = ACTIONS(1489), + [aux_sym_cmd_identifier_token30] = ACTIONS(1489), + [aux_sym_cmd_identifier_token31] = ACTIONS(1489), + [aux_sym_cmd_identifier_token32] = ACTIONS(1487), + [aux_sym_cmd_identifier_token33] = ACTIONS(1489), + [aux_sym_cmd_identifier_token34] = ACTIONS(1487), + [aux_sym_cmd_identifier_token35] = ACTIONS(1489), + [aux_sym_cmd_identifier_token36] = ACTIONS(1489), + [aux_sym_cmd_identifier_token37] = ACTIONS(1489), + [aux_sym_cmd_identifier_token38] = ACTIONS(1487), + [aux_sym_cmd_identifier_token39] = ACTIONS(1489), + [aux_sym_cmd_identifier_token40] = ACTIONS(1489), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_def] = ACTIONS(1487), + [anon_sym_export_DASHenv] = ACTIONS(1487), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_module] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(1487), + [anon_sym_error] = ACTIONS(1487), + [anon_sym_DASH2] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_loop] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_source] = ACTIONS(1487), + [anon_sym_source_DASHenv] = ACTIONS(1487), + [anon_sym_register] = ACTIONS(1487), + [anon_sym_hide] = ACTIONS(1487), + [anon_sym_hide_DASHenv] = ACTIONS(1487), + [anon_sym_overlay] = ACTIONS(1487), + [anon_sym_where] = ACTIONS(1489), + [aux_sym_expr_unary_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [aux_sym__val_number_decimal_token1] = ACTIONS(1487), + [aux_sym__val_number_decimal_token2] = ACTIONS(1489), + [aux_sym__val_number_decimal_token3] = ACTIONS(1489), + [aux_sym__val_number_decimal_token4] = ACTIONS(1489), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [aux_sym__val_number_token4] = ACTIONS(1487), + [aux_sym__val_number_token5] = ACTIONS(1487), + [aux_sym__val_number_token6] = ACTIONS(1487), + [anon_sym_0b] = ACTIONS(1487), + [anon_sym_0o] = ACTIONS(1487), + [anon_sym_0x] = ACTIONS(1487), + [sym_val_date] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [aux_sym_env_var_token1] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1489), + [aux_sym_command_token1] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1489), + }, + [264] = { + [sym_comment] = STATE(264), + [aux_sym__block_body_repeat1] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(1385), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1383), + }, + [265] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4808), + [sym_block] = STATE(4809), + [sym__expression_parenthesized] = STATE(4809), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4809), + [sym_comment] = STATE(265), + [aux_sym_shebang_repeat1] = STATE(266), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116245,111 +109781,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [277] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5313), - [sym_block] = STATE(5433), - [sym__expression_parenthesized] = STATE(5433), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5433), - [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [266] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4873), + [sym_block] = STATE(4874), + [sym__expression_parenthesized] = STATE(4874), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4874), + [sym_comment] = STATE(266), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116357,111 +109893,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [278] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5400), - [sym_block] = STATE(5315), - [sym__expression_parenthesized] = STATE(5315), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5315), - [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [267] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4873), + [sym_block] = STATE(4874), + [sym__expression_parenthesized] = STATE(4874), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4874), + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(270), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116469,111 +110005,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [279] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5400), - [sym_block] = STATE(5315), - [sym__expression_parenthesized] = STATE(5315), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5315), - [sym_comment] = STATE(279), - [aux_sym_shebang_repeat1] = STATE(280), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [268] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4875), + [sym_block] = STATE(4876), + [sym__expression_parenthesized] = STATE(4876), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4876), + [sym_comment] = STATE(268), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116581,111 +110117,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [280] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5405), - [sym_block] = STATE(5430), - [sym__expression_parenthesized] = STATE(5430), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5430), - [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [269] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4877), + [sym_block] = STATE(4878), + [sym__expression_parenthesized] = STATE(4878), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4878), + [sym_comment] = STATE(269), + [aux_sym_shebang_repeat1] = STATE(274), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116693,111 +110229,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [281] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5331), - [sym_block] = STATE(5333), - [sym__expression_parenthesized] = STATE(5333), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5333), - [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [270] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4901), + [sym_block] = STATE(4902), + [sym__expression_parenthesized] = STATE(4902), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4902), + [sym_comment] = STATE(270), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116805,111 +110341,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [282] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5331), - [sym_block] = STATE(5333), - [sym__expression_parenthesized] = STATE(5333), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5333), - [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(289), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [271] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4901), + [sym_block] = STATE(4902), + [sym__expression_parenthesized] = STATE(4902), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4902), + [sym_comment] = STATE(271), + [aux_sym_shebang_repeat1] = STATE(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -116917,111 +110453,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [283] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5335), - [sym_block] = STATE(5336), - [sym__expression_parenthesized] = STATE(5336), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5336), - [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [272] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4903), + [sym_block] = STATE(4904), + [sym__expression_parenthesized] = STATE(4904), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4904), + [sym_comment] = STATE(272), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117029,111 +110565,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [284] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5335), - [sym_block] = STATE(5336), - [sym__expression_parenthesized] = STATE(5336), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5336), - [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(290), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [273] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4903), + [sym_block] = STATE(4904), + [sym__expression_parenthesized] = STATE(4904), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4904), + [sym_comment] = STATE(273), + [aux_sym_shebang_repeat1] = STATE(278), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117141,111 +110677,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [285] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5338), - [sym_block] = STATE(5340), - [sym__expression_parenthesized] = STATE(5340), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5340), - [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [274] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4905), + [sym_block] = STATE(4906), + [sym__expression_parenthesized] = STATE(4906), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4906), + [sym_comment] = STATE(274), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117253,111 +110789,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [286] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5338), - [sym_block] = STATE(5340), - [sym__expression_parenthesized] = STATE(5340), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5340), - [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(292), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [275] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4905), + [sym_block] = STATE(4906), + [sym__expression_parenthesized] = STATE(4906), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4906), + [sym_comment] = STATE(275), + [aux_sym_shebang_repeat1] = STATE(280), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117365,111 +110901,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [287] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5345), - [sym_block] = STATE(5346), - [sym__expression_parenthesized] = STATE(5346), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5346), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(294), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [276] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4907), + [sym_block] = STATE(4908), + [sym__expression_parenthesized] = STATE(4908), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4908), + [sym_comment] = STATE(276), + [aux_sym_shebang_repeat1] = STATE(282), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117477,223 +111013,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [288] = { - [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(226), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_alias] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_let_DASHenv] = ACTIONS(1532), - [anon_sym_mut] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [aux_sym_cmd_identifier_token1] = ACTIONS(1532), - [aux_sym_cmd_identifier_token2] = ACTIONS(1534), - [aux_sym_cmd_identifier_token3] = ACTIONS(1534), - [aux_sym_cmd_identifier_token4] = ACTIONS(1534), - [aux_sym_cmd_identifier_token5] = ACTIONS(1534), - [aux_sym_cmd_identifier_token6] = ACTIONS(1534), - [aux_sym_cmd_identifier_token7] = ACTIONS(1534), - [aux_sym_cmd_identifier_token8] = ACTIONS(1532), - [aux_sym_cmd_identifier_token9] = ACTIONS(1532), - [aux_sym_cmd_identifier_token10] = ACTIONS(1534), - [aux_sym_cmd_identifier_token11] = ACTIONS(1534), - [aux_sym_cmd_identifier_token12] = ACTIONS(1532), - [aux_sym_cmd_identifier_token13] = ACTIONS(1532), - [aux_sym_cmd_identifier_token14] = ACTIONS(1532), - [aux_sym_cmd_identifier_token15] = ACTIONS(1532), - [aux_sym_cmd_identifier_token16] = ACTIONS(1534), - [aux_sym_cmd_identifier_token17] = ACTIONS(1534), - [aux_sym_cmd_identifier_token18] = ACTIONS(1532), - [aux_sym_cmd_identifier_token19] = ACTIONS(1534), - [aux_sym_cmd_identifier_token20] = ACTIONS(1534), - [aux_sym_cmd_identifier_token21] = ACTIONS(1534), - [aux_sym_cmd_identifier_token22] = ACTIONS(1534), - [aux_sym_cmd_identifier_token23] = ACTIONS(1534), - [aux_sym_cmd_identifier_token24] = ACTIONS(1534), - [aux_sym_cmd_identifier_token25] = ACTIONS(1534), - [aux_sym_cmd_identifier_token26] = ACTIONS(1534), - [aux_sym_cmd_identifier_token27] = ACTIONS(1534), - [aux_sym_cmd_identifier_token28] = ACTIONS(1534), - [aux_sym_cmd_identifier_token29] = ACTIONS(1534), - [aux_sym_cmd_identifier_token30] = ACTIONS(1534), - [aux_sym_cmd_identifier_token31] = ACTIONS(1534), - [aux_sym_cmd_identifier_token32] = ACTIONS(1532), - [aux_sym_cmd_identifier_token33] = ACTIONS(1534), - [aux_sym_cmd_identifier_token34] = ACTIONS(1532), - [aux_sym_cmd_identifier_token35] = ACTIONS(1534), - [aux_sym_cmd_identifier_token36] = ACTIONS(1534), - [aux_sym_cmd_identifier_token37] = ACTIONS(1534), - [aux_sym_cmd_identifier_token38] = ACTIONS(1532), - [aux_sym_cmd_identifier_token39] = ACTIONS(1534), - [aux_sym_cmd_identifier_token40] = ACTIONS(1534), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1532), - [anon_sym_export_DASHenv] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1532), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_use] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_DOLLAR] = ACTIONS(1532), - [anon_sym_error] = ACTIONS(1532), - [anon_sym_DASH2] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_loop] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_match] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_try] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_source] = ACTIONS(1532), - [anon_sym_source_DASHenv] = ACTIONS(1532), - [anon_sym_register] = ACTIONS(1532), - [anon_sym_hide] = ACTIONS(1532), - [anon_sym_hide_DASHenv] = ACTIONS(1532), - [anon_sym_overlay] = ACTIONS(1532), - [anon_sym_where] = ACTIONS(1534), - [aux_sym_expr_unary_token1] = ACTIONS(1534), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1534), - [anon_sym_DOT_DOT_LT] = ACTIONS(1534), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [aux_sym__val_number_decimal_token1] = ACTIONS(1532), - [aux_sym__val_number_decimal_token2] = ACTIONS(1534), - [aux_sym__val_number_decimal_token3] = ACTIONS(1534), - [aux_sym__val_number_decimal_token4] = ACTIONS(1534), - [aux_sym__val_number_token1] = ACTIONS(1534), - [aux_sym__val_number_token2] = ACTIONS(1534), - [aux_sym__val_number_token3] = ACTIONS(1534), - [aux_sym__val_number_token4] = ACTIONS(1532), - [aux_sym__val_number_token5] = ACTIONS(1532), - [aux_sym__val_number_token6] = ACTIONS(1532), - [anon_sym_0b] = ACTIONS(1532), - [anon_sym_0o] = ACTIONS(1532), - [anon_sym_0x] = ACTIONS(1532), - [sym_val_date] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym__str_single_quotes] = ACTIONS(1534), - [sym__str_back_ticks] = ACTIONS(1534), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1534), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1534), - [aux_sym_env_var_token1] = ACTIONS(1532), - [anon_sym_CARET] = ACTIONS(1534), - [aux_sym_command_token1] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1534), + [sym_raw_string_begin] = ACTIONS(253), }, - [289] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5455), - [sym_block] = STATE(5456), - [sym__expression_parenthesized] = STATE(5456), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5456), - [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [277] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4923), + [sym_block] = STATE(4924), + [sym__expression_parenthesized] = STATE(4924), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4924), + [sym_comment] = STATE(277), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117701,111 +111125,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [290] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5457), - [sym_block] = STATE(5458), - [sym__expression_parenthesized] = STATE(5458), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5458), - [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [278] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4926), + [sym_comment] = STATE(278), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117813,111 +111237,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [291] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5457), - [sym_block] = STATE(5458), - [sym__expression_parenthesized] = STATE(5458), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5458), - [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(296), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [279] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4926), + [sym_comment] = STATE(279), + [aux_sym_shebang_repeat1] = STATE(284), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -117925,111 +111349,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [292] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5461), - [sym_block] = STATE(5462), - [sym__expression_parenthesized] = STATE(5462), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5462), - [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [280] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4927), + [sym_block] = STATE(4928), + [sym__expression_parenthesized] = STATE(4928), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4928), + [sym_comment] = STATE(280), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118037,111 +111461,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [293] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5461), - [sym_block] = STATE(5462), - [sym__expression_parenthesized] = STATE(5462), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5462), - [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(297), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [281] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4927), + [sym_block] = STATE(4928), + [sym__expression_parenthesized] = STATE(4928), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4928), + [sym_comment] = STATE(281), + [aux_sym_shebang_repeat1] = STATE(285), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118149,111 +111573,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [294] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5463), - [sym_block] = STATE(5464), - [sym__expression_parenthesized] = STATE(5464), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5464), - [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [282] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4931), + [sym_comment] = STATE(282), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118261,111 +111685,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [295] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5463), - [sym_block] = STATE(5464), - [sym__expression_parenthesized] = STATE(5464), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5464), - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(298), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [283] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4931), + [sym_comment] = STATE(283), + [aux_sym_shebang_repeat1] = STATE(286), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118373,111 +111797,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [296] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5361), - [sym_block] = STATE(5378), - [sym__expression_parenthesized] = STATE(5378), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5378), - [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [284] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4933), + [sym_block] = STATE(4934), + [sym__expression_parenthesized] = STATE(4934), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4934), + [sym_comment] = STATE(284), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118485,111 +111909,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [297] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5313), - [sym_block] = STATE(5433), - [sym__expression_parenthesized] = STATE(5433), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5433), - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [285] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4935), + [sym_block] = STATE(4936), + [sym__expression_parenthesized] = STATE(4936), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4936), + [sym_comment] = STATE(285), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118597,111 +112021,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [298] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5400), - [sym_block] = STATE(5315), - [sym__expression_parenthesized] = STATE(5315), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5315), - [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [286] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4937), + [sym_block] = STATE(4938), + [sym__expression_parenthesized] = STATE(4938), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4938), + [sym_comment] = STATE(286), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118709,111 +112133,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [299] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5400), - [sym_block] = STATE(5315), - [sym__expression_parenthesized] = STATE(5315), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5315), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(300), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [287] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4937), + [sym_block] = STATE(4938), + [sym__expression_parenthesized] = STATE(4938), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4938), + [sym_comment] = STATE(287), + [aux_sym_shebang_repeat1] = STATE(288), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118821,111 +112245,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [300] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5405), - [sym_block] = STATE(5430), - [sym__expression_parenthesized] = STATE(5430), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5430), - [sym_comment] = STATE(300), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [288] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4940), + [sym_block] = STATE(4941), + [sym__expression_parenthesized] = STATE(4941), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4941), + [sym_comment] = STATE(288), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -118933,447 +112357,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [301] = { - [sym_comment] = STATE(301), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_alias] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_let_DASHenv] = ACTIONS(1522), - [anon_sym_mut] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [aux_sym_cmd_identifier_token1] = ACTIONS(1522), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1522), - [aux_sym_cmd_identifier_token9] = ACTIONS(1522), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1522), - [aux_sym_cmd_identifier_token13] = ACTIONS(1522), - [aux_sym_cmd_identifier_token14] = ACTIONS(1522), - [aux_sym_cmd_identifier_token15] = ACTIONS(1522), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1522), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1522), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1522), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1522), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_export_DASHenv] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_module] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1522), - [anon_sym_error] = ACTIONS(1522), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_source] = ACTIONS(1522), - [anon_sym_source_DASHenv] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_hide] = ACTIONS(1522), - [anon_sym_hide_DASHenv] = ACTIONS(1522), - [anon_sym_overlay] = ACTIONS(1522), - [anon_sym_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [aux_sym__val_number_decimal_token1] = ACTIONS(1522), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1522), - [aux_sym__val_number_token5] = ACTIONS(1522), - [aux_sym__val_number_token6] = ACTIONS(1522), - [anon_sym_0b] = ACTIONS(1522), - [anon_sym_0o] = ACTIONS(1522), - [anon_sym_0x] = ACTIONS(1522), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [aux_sym_env_var_token1] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), - }, - [302] = { - [sym_comment] = STATE(302), - [aux_sym__block_body_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), + [sym_raw_string_begin] = ACTIONS(253), }, - [303] = { - [sym_comment] = STATE(303), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_alias] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_let_DASHenv] = ACTIONS(1296), - [anon_sym_mut] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [aux_sym_cmd_identifier_token1] = ACTIONS(1296), - [aux_sym_cmd_identifier_token2] = ACTIONS(1299), - [aux_sym_cmd_identifier_token3] = ACTIONS(1299), - [aux_sym_cmd_identifier_token4] = ACTIONS(1299), - [aux_sym_cmd_identifier_token5] = ACTIONS(1299), - [aux_sym_cmd_identifier_token6] = ACTIONS(1299), - [aux_sym_cmd_identifier_token7] = ACTIONS(1299), - [aux_sym_cmd_identifier_token8] = ACTIONS(1296), - [aux_sym_cmd_identifier_token9] = ACTIONS(1296), - [aux_sym_cmd_identifier_token10] = ACTIONS(1299), - [aux_sym_cmd_identifier_token11] = ACTIONS(1299), - [aux_sym_cmd_identifier_token12] = ACTIONS(1296), - [aux_sym_cmd_identifier_token13] = ACTIONS(1296), - [aux_sym_cmd_identifier_token14] = ACTIONS(1296), - [aux_sym_cmd_identifier_token15] = ACTIONS(1296), - [aux_sym_cmd_identifier_token16] = ACTIONS(1299), - [aux_sym_cmd_identifier_token17] = ACTIONS(1299), - [aux_sym_cmd_identifier_token18] = ACTIONS(1296), - [aux_sym_cmd_identifier_token19] = ACTIONS(1299), - [aux_sym_cmd_identifier_token20] = ACTIONS(1299), - [aux_sym_cmd_identifier_token21] = ACTIONS(1299), - [aux_sym_cmd_identifier_token22] = ACTIONS(1299), - [aux_sym_cmd_identifier_token23] = ACTIONS(1299), - [aux_sym_cmd_identifier_token24] = ACTIONS(1299), - [aux_sym_cmd_identifier_token25] = ACTIONS(1299), - [aux_sym_cmd_identifier_token26] = ACTIONS(1299), - [aux_sym_cmd_identifier_token27] = ACTIONS(1299), - [aux_sym_cmd_identifier_token28] = ACTIONS(1299), - [aux_sym_cmd_identifier_token29] = ACTIONS(1299), - [aux_sym_cmd_identifier_token30] = ACTIONS(1299), - [aux_sym_cmd_identifier_token31] = ACTIONS(1299), - [aux_sym_cmd_identifier_token32] = ACTIONS(1296), - [aux_sym_cmd_identifier_token33] = ACTIONS(1299), - [aux_sym_cmd_identifier_token34] = ACTIONS(1296), - [aux_sym_cmd_identifier_token35] = ACTIONS(1299), - [aux_sym_cmd_identifier_token36] = ACTIONS(1299), - [aux_sym_cmd_identifier_token37] = ACTIONS(1299), - [aux_sym_cmd_identifier_token38] = ACTIONS(1296), - [aux_sym_cmd_identifier_token39] = ACTIONS(1299), - [aux_sym_cmd_identifier_token40] = ACTIONS(1299), - [sym__newline] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1296), - [anon_sym_export_DASHenv] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_error] = ACTIONS(1296), - [anon_sym_DASH2] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_source] = ACTIONS(1296), - [anon_sym_source_DASHenv] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_hide] = ACTIONS(1296), - [anon_sym_hide_DASHenv] = ACTIONS(1296), - [anon_sym_overlay] = ACTIONS(1296), - [anon_sym_where] = ACTIONS(1299), - [aux_sym_expr_unary_token1] = ACTIONS(1299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), - [anon_sym_DOT_DOT_LT] = ACTIONS(1299), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym__val_number_decimal_token1] = ACTIONS(1296), - [aux_sym__val_number_decimal_token2] = ACTIONS(1299), - [aux_sym__val_number_decimal_token3] = ACTIONS(1299), - [aux_sym__val_number_decimal_token4] = ACTIONS(1299), - [aux_sym__val_number_token1] = ACTIONS(1299), - [aux_sym__val_number_token2] = ACTIONS(1299), - [aux_sym__val_number_token3] = ACTIONS(1299), - [aux_sym__val_number_token4] = ACTIONS(1296), - [aux_sym__val_number_token5] = ACTIONS(1296), - [aux_sym__val_number_token6] = ACTIONS(1296), - [anon_sym_0b] = ACTIONS(1296), - [anon_sym_0o] = ACTIONS(1296), - [anon_sym_0x] = ACTIONS(1296), - [sym_val_date] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym__str_single_quotes] = ACTIONS(1299), - [sym__str_back_ticks] = ACTIONS(1299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1299), - [aux_sym_env_var_token1] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1299), - [aux_sym_command_token1] = ACTIONS(1299), + [289] = { + [sym_comment] = STATE(289), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_alias] = ACTIONS(1269), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_let_DASHenv] = ACTIONS(1269), + [anon_sym_mut] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(1269), + [aux_sym_cmd_identifier_token1] = ACTIONS(1269), + [aux_sym_cmd_identifier_token2] = ACTIONS(1272), + [aux_sym_cmd_identifier_token3] = ACTIONS(1272), + [aux_sym_cmd_identifier_token4] = ACTIONS(1272), + [aux_sym_cmd_identifier_token5] = ACTIONS(1272), + [aux_sym_cmd_identifier_token6] = ACTIONS(1272), + [aux_sym_cmd_identifier_token7] = ACTIONS(1272), + [aux_sym_cmd_identifier_token8] = ACTIONS(1269), + [aux_sym_cmd_identifier_token9] = ACTIONS(1269), + [aux_sym_cmd_identifier_token10] = ACTIONS(1272), + [aux_sym_cmd_identifier_token11] = ACTIONS(1272), + [aux_sym_cmd_identifier_token12] = ACTIONS(1269), + [aux_sym_cmd_identifier_token13] = ACTIONS(1269), + [aux_sym_cmd_identifier_token14] = ACTIONS(1269), + [aux_sym_cmd_identifier_token15] = ACTIONS(1269), + [aux_sym_cmd_identifier_token16] = ACTIONS(1272), + [aux_sym_cmd_identifier_token17] = ACTIONS(1272), + [aux_sym_cmd_identifier_token18] = ACTIONS(1269), + [aux_sym_cmd_identifier_token19] = ACTIONS(1272), + [aux_sym_cmd_identifier_token20] = ACTIONS(1272), + [aux_sym_cmd_identifier_token21] = ACTIONS(1272), + [aux_sym_cmd_identifier_token22] = ACTIONS(1272), + [aux_sym_cmd_identifier_token23] = ACTIONS(1272), + [aux_sym_cmd_identifier_token24] = ACTIONS(1272), + [aux_sym_cmd_identifier_token25] = ACTIONS(1272), + [aux_sym_cmd_identifier_token26] = ACTIONS(1272), + [aux_sym_cmd_identifier_token27] = ACTIONS(1272), + [aux_sym_cmd_identifier_token28] = ACTIONS(1272), + [aux_sym_cmd_identifier_token29] = ACTIONS(1272), + [aux_sym_cmd_identifier_token30] = ACTIONS(1272), + [aux_sym_cmd_identifier_token31] = ACTIONS(1272), + [aux_sym_cmd_identifier_token32] = ACTIONS(1269), + [aux_sym_cmd_identifier_token33] = ACTIONS(1272), + [aux_sym_cmd_identifier_token34] = ACTIONS(1269), + [aux_sym_cmd_identifier_token35] = ACTIONS(1272), + [aux_sym_cmd_identifier_token36] = ACTIONS(1272), + [aux_sym_cmd_identifier_token37] = ACTIONS(1272), + [aux_sym_cmd_identifier_token38] = ACTIONS(1269), + [aux_sym_cmd_identifier_token39] = ACTIONS(1272), + [aux_sym_cmd_identifier_token40] = ACTIONS(1272), + [sym__newline] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1269), + [anon_sym_export_DASHenv] = ACTIONS(1269), + [anon_sym_extern] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_use] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_error] = ACTIONS(1269), + [anon_sym_DASH2] = ACTIONS(1269), + [anon_sym_break] = ACTIONS(1269), + [anon_sym_continue] = ACTIONS(1269), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_loop] = ACTIONS(1269), + [anon_sym_while] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1269), + [anon_sym_if] = ACTIONS(1269), + [anon_sym_match] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_try] = ACTIONS(1269), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_source] = ACTIONS(1269), + [anon_sym_source_DASHenv] = ACTIONS(1269), + [anon_sym_register] = ACTIONS(1269), + [anon_sym_hide] = ACTIONS(1269), + [anon_sym_hide_DASHenv] = ACTIONS(1269), + [anon_sym_overlay] = ACTIONS(1269), + [anon_sym_where] = ACTIONS(1272), + [aux_sym_expr_unary_token1] = ACTIONS(1272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), + [anon_sym_DOT_DOT_LT] = ACTIONS(1272), + [anon_sym_null] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1269), + [anon_sym_false] = ACTIONS(1269), + [aux_sym__val_number_decimal_token1] = ACTIONS(1269), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(1272), + [aux_sym__val_number_token2] = ACTIONS(1272), + [aux_sym__val_number_token3] = ACTIONS(1272), + [aux_sym__val_number_token4] = ACTIONS(1269), + [aux_sym__val_number_token5] = ACTIONS(1269), + [aux_sym__val_number_token6] = ACTIONS(1269), + [anon_sym_0b] = ACTIONS(1269), + [anon_sym_0o] = ACTIONS(1269), + [anon_sym_0x] = ACTIONS(1269), + [sym_val_date] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1272), + [sym__str_back_ticks] = ACTIONS(1272), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), + [aux_sym_env_var_token1] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1272), + [aux_sym_command_token1] = ACTIONS(1272), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1272), }, - [304] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if_parenthesized] = STATE(5338), - [sym_block] = STATE(5340), - [sym__expression_parenthesized] = STATE(5340), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4164), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5340), - [sym_comment] = STATE(304), - [aux_sym_shebang_repeat1] = STATE(244), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [sym__newline] = ACTIONS(1484), + [290] = { + [sym_comment] = STATE(290), + [aux_sym_shebang_repeat1] = STATE(290), + [anon_sym_export] = ACTIONS(1262), + [anon_sym_alias] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_let_DASHenv] = ACTIONS(1262), + [anon_sym_mut] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [aux_sym_cmd_identifier_token1] = ACTIONS(1262), + [aux_sym_cmd_identifier_token2] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1264), + [aux_sym_cmd_identifier_token4] = ACTIONS(1264), + [aux_sym_cmd_identifier_token5] = ACTIONS(1264), + [aux_sym_cmd_identifier_token6] = ACTIONS(1264), + [aux_sym_cmd_identifier_token7] = ACTIONS(1264), + [aux_sym_cmd_identifier_token8] = ACTIONS(1262), + [aux_sym_cmd_identifier_token9] = ACTIONS(1262), + [aux_sym_cmd_identifier_token10] = ACTIONS(1264), + [aux_sym_cmd_identifier_token11] = ACTIONS(1264), + [aux_sym_cmd_identifier_token12] = ACTIONS(1262), + [aux_sym_cmd_identifier_token13] = ACTIONS(1262), + [aux_sym_cmd_identifier_token14] = ACTIONS(1262), + [aux_sym_cmd_identifier_token15] = ACTIONS(1262), + [aux_sym_cmd_identifier_token16] = ACTIONS(1264), + [aux_sym_cmd_identifier_token17] = ACTIONS(1264), + [aux_sym_cmd_identifier_token18] = ACTIONS(1262), + [aux_sym_cmd_identifier_token19] = ACTIONS(1264), + [aux_sym_cmd_identifier_token20] = ACTIONS(1264), + [aux_sym_cmd_identifier_token21] = ACTIONS(1264), + [aux_sym_cmd_identifier_token22] = ACTIONS(1264), + [aux_sym_cmd_identifier_token23] = ACTIONS(1264), + [aux_sym_cmd_identifier_token24] = ACTIONS(1264), + [aux_sym_cmd_identifier_token25] = ACTIONS(1264), + [aux_sym_cmd_identifier_token26] = ACTIONS(1264), + [aux_sym_cmd_identifier_token27] = ACTIONS(1264), + [aux_sym_cmd_identifier_token28] = ACTIONS(1264), + [aux_sym_cmd_identifier_token29] = ACTIONS(1264), + [aux_sym_cmd_identifier_token30] = ACTIONS(1264), + [aux_sym_cmd_identifier_token31] = ACTIONS(1264), + [aux_sym_cmd_identifier_token32] = ACTIONS(1262), + [aux_sym_cmd_identifier_token33] = ACTIONS(1264), + [aux_sym_cmd_identifier_token34] = ACTIONS(1262), + [aux_sym_cmd_identifier_token35] = ACTIONS(1264), + [aux_sym_cmd_identifier_token36] = ACTIONS(1264), + [aux_sym_cmd_identifier_token37] = ACTIONS(1264), + [aux_sym_cmd_identifier_token38] = ACTIONS(1262), + [aux_sym_cmd_identifier_token39] = ACTIONS(1264), + [aux_sym_cmd_identifier_token40] = ACTIONS(1264), + [sym__newline] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_def] = ACTIONS(1262), + [anon_sym_export_DASHenv] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_module] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_error] = ACTIONS(1262), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_source] = ACTIONS(1262), + [anon_sym_source_DASHenv] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_hide] = ACTIONS(1262), + [anon_sym_hide_DASHenv] = ACTIONS(1262), + [anon_sym_overlay] = ACTIONS(1262), + [anon_sym_where] = ACTIONS(1264), + [aux_sym_expr_unary_token1] = ACTIONS(1264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1264), + [anon_sym_DOT_DOT_LT] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [aux_sym__val_number_decimal_token1] = ACTIONS(1262), + [aux_sym__val_number_decimal_token2] = ACTIONS(1264), + [aux_sym__val_number_decimal_token3] = ACTIONS(1264), + [aux_sym__val_number_decimal_token4] = ACTIONS(1264), + [aux_sym__val_number_token1] = ACTIONS(1264), + [aux_sym__val_number_token2] = ACTIONS(1264), + [aux_sym__val_number_token3] = ACTIONS(1264), + [aux_sym__val_number_token4] = ACTIONS(1262), + [aux_sym__val_number_token5] = ACTIONS(1262), + [aux_sym__val_number_token6] = ACTIONS(1262), + [anon_sym_0b] = ACTIONS(1262), + [anon_sym_0o] = ACTIONS(1262), + [anon_sym_0x] = ACTIONS(1262), + [sym_val_date] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1264), + [aux_sym_env_var_token1] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1264), + [aux_sym_command_token1] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1264), + }, + [291] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if_parenthesized] = STATE(4933), + [sym_block] = STATE(4934), + [sym__expression_parenthesized] = STATE(4934), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3688), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4934), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -119381,1214 +112693,884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [305] = { - [sym_comment] = STATE(305), - [aux_sym__block_body_repeat1] = STATE(217), - [anon_sym_export] = ACTIONS(1474), - [anon_sym_alias] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_let_DASHenv] = ACTIONS(1474), - [anon_sym_mut] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [aux_sym_cmd_identifier_token1] = ACTIONS(1474), - [aux_sym_cmd_identifier_token2] = ACTIONS(1476), - [aux_sym_cmd_identifier_token3] = ACTIONS(1476), - [aux_sym_cmd_identifier_token4] = ACTIONS(1476), - [aux_sym_cmd_identifier_token5] = ACTIONS(1476), - [aux_sym_cmd_identifier_token6] = ACTIONS(1476), - [aux_sym_cmd_identifier_token7] = ACTIONS(1476), - [aux_sym_cmd_identifier_token8] = ACTIONS(1474), - [aux_sym_cmd_identifier_token9] = ACTIONS(1474), - [aux_sym_cmd_identifier_token10] = ACTIONS(1476), - [aux_sym_cmd_identifier_token11] = ACTIONS(1476), - [aux_sym_cmd_identifier_token12] = ACTIONS(1474), - [aux_sym_cmd_identifier_token13] = ACTIONS(1474), - [aux_sym_cmd_identifier_token14] = ACTIONS(1474), - [aux_sym_cmd_identifier_token15] = ACTIONS(1474), - [aux_sym_cmd_identifier_token16] = ACTIONS(1476), - [aux_sym_cmd_identifier_token17] = ACTIONS(1476), - [aux_sym_cmd_identifier_token18] = ACTIONS(1474), - [aux_sym_cmd_identifier_token19] = ACTIONS(1476), - [aux_sym_cmd_identifier_token20] = ACTIONS(1476), - [aux_sym_cmd_identifier_token21] = ACTIONS(1476), - [aux_sym_cmd_identifier_token22] = ACTIONS(1476), - [aux_sym_cmd_identifier_token23] = ACTIONS(1476), - [aux_sym_cmd_identifier_token24] = ACTIONS(1476), - [aux_sym_cmd_identifier_token25] = ACTIONS(1476), - [aux_sym_cmd_identifier_token26] = ACTIONS(1476), - [aux_sym_cmd_identifier_token27] = ACTIONS(1476), - [aux_sym_cmd_identifier_token28] = ACTIONS(1476), - [aux_sym_cmd_identifier_token29] = ACTIONS(1476), - [aux_sym_cmd_identifier_token30] = ACTIONS(1476), - [aux_sym_cmd_identifier_token31] = ACTIONS(1476), - [aux_sym_cmd_identifier_token32] = ACTIONS(1474), - [aux_sym_cmd_identifier_token33] = ACTIONS(1476), - [aux_sym_cmd_identifier_token34] = ACTIONS(1474), - [aux_sym_cmd_identifier_token35] = ACTIONS(1476), - [aux_sym_cmd_identifier_token36] = ACTIONS(1476), - [aux_sym_cmd_identifier_token37] = ACTIONS(1476), - [aux_sym_cmd_identifier_token38] = ACTIONS(1474), - [aux_sym_cmd_identifier_token39] = ACTIONS(1476), - [aux_sym_cmd_identifier_token40] = ACTIONS(1476), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_export_DASHenv] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_module] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_error] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_source] = ACTIONS(1474), - [anon_sym_source_DASHenv] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_hide] = ACTIONS(1474), - [anon_sym_hide_DASHenv] = ACTIONS(1474), - [anon_sym_overlay] = ACTIONS(1474), - [anon_sym_where] = ACTIONS(1476), - [aux_sym_expr_unary_token1] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [aux_sym__val_number_decimal_token1] = ACTIONS(1474), - [aux_sym__val_number_decimal_token2] = ACTIONS(1476), - [aux_sym__val_number_decimal_token3] = ACTIONS(1476), - [aux_sym__val_number_decimal_token4] = ACTIONS(1476), - [aux_sym__val_number_token1] = ACTIONS(1476), - [aux_sym__val_number_token2] = ACTIONS(1476), - [aux_sym__val_number_token3] = ACTIONS(1476), - [aux_sym__val_number_token4] = ACTIONS(1474), - [aux_sym__val_number_token5] = ACTIONS(1474), - [aux_sym__val_number_token6] = ACTIONS(1474), - [anon_sym_0b] = ACTIONS(1474), - [anon_sym_0o] = ACTIONS(1474), - [anon_sym_0x] = ACTIONS(1474), - [sym_val_date] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__str_single_quotes] = ACTIONS(1476), - [sym__str_back_ticks] = ACTIONS(1476), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1476), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1476), - [aux_sym_env_var_token1] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1476), - [aux_sym_command_token1] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1476), - }, - [306] = { - [sym_comment] = STATE(306), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_alias] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_let_DASHenv] = ACTIONS(1304), - [anon_sym_mut] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [aux_sym_cmd_identifier_token1] = ACTIONS(1304), - [aux_sym_cmd_identifier_token2] = ACTIONS(1302), - [aux_sym_cmd_identifier_token3] = ACTIONS(1302), - [aux_sym_cmd_identifier_token4] = ACTIONS(1302), - [aux_sym_cmd_identifier_token5] = ACTIONS(1302), - [aux_sym_cmd_identifier_token6] = ACTIONS(1302), - [aux_sym_cmd_identifier_token7] = ACTIONS(1302), - [aux_sym_cmd_identifier_token8] = ACTIONS(1304), - [aux_sym_cmd_identifier_token9] = ACTIONS(1304), - [aux_sym_cmd_identifier_token10] = ACTIONS(1302), - [aux_sym_cmd_identifier_token11] = ACTIONS(1302), - [aux_sym_cmd_identifier_token12] = ACTIONS(1304), - [aux_sym_cmd_identifier_token13] = ACTIONS(1304), - [aux_sym_cmd_identifier_token14] = ACTIONS(1304), - [aux_sym_cmd_identifier_token15] = ACTIONS(1304), - [aux_sym_cmd_identifier_token16] = ACTIONS(1302), - [aux_sym_cmd_identifier_token17] = ACTIONS(1302), - [aux_sym_cmd_identifier_token18] = ACTIONS(1304), - [aux_sym_cmd_identifier_token19] = ACTIONS(1302), - [aux_sym_cmd_identifier_token20] = ACTIONS(1302), - [aux_sym_cmd_identifier_token21] = ACTIONS(1302), - [aux_sym_cmd_identifier_token22] = ACTIONS(1302), - [aux_sym_cmd_identifier_token23] = ACTIONS(1302), - [aux_sym_cmd_identifier_token24] = ACTIONS(1302), - [aux_sym_cmd_identifier_token25] = ACTIONS(1302), - [aux_sym_cmd_identifier_token26] = ACTIONS(1302), - [aux_sym_cmd_identifier_token27] = ACTIONS(1302), - [aux_sym_cmd_identifier_token28] = ACTIONS(1302), - [aux_sym_cmd_identifier_token29] = ACTIONS(1302), - [aux_sym_cmd_identifier_token30] = ACTIONS(1302), - [aux_sym_cmd_identifier_token31] = ACTIONS(1302), - [aux_sym_cmd_identifier_token32] = ACTIONS(1304), - [aux_sym_cmd_identifier_token33] = ACTIONS(1302), - [aux_sym_cmd_identifier_token34] = ACTIONS(1304), - [aux_sym_cmd_identifier_token35] = ACTIONS(1302), - [aux_sym_cmd_identifier_token36] = ACTIONS(1302), - [aux_sym_cmd_identifier_token37] = ACTIONS(1302), - [aux_sym_cmd_identifier_token38] = ACTIONS(1304), - [aux_sym_cmd_identifier_token39] = ACTIONS(1302), - [aux_sym_cmd_identifier_token40] = ACTIONS(1302), - [sym__newline] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1304), - [anon_sym_export_DASHenv] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_error] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_source] = ACTIONS(1304), - [anon_sym_source_DASHenv] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_hide] = ACTIONS(1304), - [anon_sym_hide_DASHenv] = ACTIONS(1304), - [anon_sym_overlay] = ACTIONS(1304), - [anon_sym_where] = ACTIONS(1302), - [aux_sym_expr_unary_token1] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1304), - [anon_sym_0o] = ACTIONS(1304), - [anon_sym_0x] = ACTIONS(1304), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [aux_sym_env_var_token1] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1302), - [aux_sym_command_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1302), + [sym_raw_string_begin] = ACTIONS(253), }, - [307] = { - [sym_comment] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(1522), - [anon_sym_alias] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_let_DASHenv] = ACTIONS(1522), - [anon_sym_mut] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [aux_sym_cmd_identifier_token1] = ACTIONS(1522), - [aux_sym_cmd_identifier_token2] = ACTIONS(1306), - [aux_sym_cmd_identifier_token3] = ACTIONS(1306), - [aux_sym_cmd_identifier_token4] = ACTIONS(1306), - [aux_sym_cmd_identifier_token5] = ACTIONS(1306), - [aux_sym_cmd_identifier_token6] = ACTIONS(1306), - [aux_sym_cmd_identifier_token7] = ACTIONS(1306), - [aux_sym_cmd_identifier_token8] = ACTIONS(1522), - [aux_sym_cmd_identifier_token9] = ACTIONS(1522), - [aux_sym_cmd_identifier_token10] = ACTIONS(1306), - [aux_sym_cmd_identifier_token11] = ACTIONS(1306), - [aux_sym_cmd_identifier_token12] = ACTIONS(1522), - [aux_sym_cmd_identifier_token13] = ACTIONS(1522), - [aux_sym_cmd_identifier_token14] = ACTIONS(1522), - [aux_sym_cmd_identifier_token15] = ACTIONS(1522), - [aux_sym_cmd_identifier_token16] = ACTIONS(1306), - [aux_sym_cmd_identifier_token17] = ACTIONS(1306), - [aux_sym_cmd_identifier_token18] = ACTIONS(1522), - [aux_sym_cmd_identifier_token19] = ACTIONS(1306), - [aux_sym_cmd_identifier_token20] = ACTIONS(1306), - [aux_sym_cmd_identifier_token21] = ACTIONS(1306), - [aux_sym_cmd_identifier_token22] = ACTIONS(1306), - [aux_sym_cmd_identifier_token23] = ACTIONS(1306), - [aux_sym_cmd_identifier_token24] = ACTIONS(1306), - [aux_sym_cmd_identifier_token25] = ACTIONS(1306), - [aux_sym_cmd_identifier_token26] = ACTIONS(1306), - [aux_sym_cmd_identifier_token27] = ACTIONS(1306), - [aux_sym_cmd_identifier_token28] = ACTIONS(1306), - [aux_sym_cmd_identifier_token29] = ACTIONS(1306), - [aux_sym_cmd_identifier_token30] = ACTIONS(1306), - [aux_sym_cmd_identifier_token31] = ACTIONS(1306), - [aux_sym_cmd_identifier_token32] = ACTIONS(1522), - [aux_sym_cmd_identifier_token33] = ACTIONS(1306), - [aux_sym_cmd_identifier_token34] = ACTIONS(1522), - [aux_sym_cmd_identifier_token35] = ACTIONS(1306), - [aux_sym_cmd_identifier_token36] = ACTIONS(1306), - [aux_sym_cmd_identifier_token37] = ACTIONS(1306), - [aux_sym_cmd_identifier_token38] = ACTIONS(1522), - [aux_sym_cmd_identifier_token39] = ACTIONS(1306), - [aux_sym_cmd_identifier_token40] = ACTIONS(1306), - [sym__newline] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_export_DASHenv] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_module] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1522), - [anon_sym_error] = ACTIONS(1522), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_do] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_source] = ACTIONS(1522), - [anon_sym_source_DASHenv] = ACTIONS(1522), - [anon_sym_register] = ACTIONS(1522), - [anon_sym_hide] = ACTIONS(1522), - [anon_sym_hide_DASHenv] = ACTIONS(1522), - [anon_sym_overlay] = ACTIONS(1522), - [anon_sym_where] = ACTIONS(1306), - [aux_sym_expr_unary_token1] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1306), - [anon_sym_DOT_DOT_LT] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [aux_sym__val_number_decimal_token1] = ACTIONS(1522), - [aux_sym__val_number_decimal_token2] = ACTIONS(1306), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(1306), - [aux_sym__val_number_token2] = ACTIONS(1306), - [aux_sym__val_number_token3] = ACTIONS(1306), - [aux_sym__val_number_token4] = ACTIONS(1522), - [aux_sym__val_number_token5] = ACTIONS(1522), - [aux_sym__val_number_token6] = ACTIONS(1522), - [anon_sym_0b] = ACTIONS(1522), - [anon_sym_0o] = ACTIONS(1522), - [anon_sym_0x] = ACTIONS(1522), - [sym_val_date] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym__str_single_quotes] = ACTIONS(1306), - [sym__str_back_ticks] = ACTIONS(1306), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1306), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1306), - [aux_sym_env_var_token1] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1306), - [aux_sym_command_token1] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1306), + [292] = { + [sym_comment] = STATE(292), + [aux_sym_shebang_repeat1] = STATE(290), + [anon_sym_export] = ACTIONS(1508), + [anon_sym_alias] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_let_DASHenv] = ACTIONS(1508), + [anon_sym_mut] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [aux_sym_cmd_identifier_token1] = ACTIONS(1508), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1508), + [aux_sym_cmd_identifier_token9] = ACTIONS(1508), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1508), + [aux_sym_cmd_identifier_token13] = ACTIONS(1508), + [aux_sym_cmd_identifier_token14] = ACTIONS(1508), + [aux_sym_cmd_identifier_token15] = ACTIONS(1508), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1508), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1508), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1508), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [aux_sym_cmd_identifier_token37] = ACTIONS(1510), + [aux_sym_cmd_identifier_token38] = ACTIONS(1508), + [aux_sym_cmd_identifier_token39] = ACTIONS(1510), + [aux_sym_cmd_identifier_token40] = ACTIONS(1510), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1508), + [anon_sym_export_DASHenv] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_module] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_error] = ACTIONS(1508), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_source] = ACTIONS(1508), + [anon_sym_source_DASHenv] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_hide] = ACTIONS(1508), + [anon_sym_hide_DASHenv] = ACTIONS(1508), + [anon_sym_overlay] = ACTIONS(1508), + [anon_sym_where] = ACTIONS(1510), + [aux_sym_expr_unary_token1] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_LT] = ACTIONS(1510), + [anon_sym_null] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [aux_sym__val_number_decimal_token1] = ACTIONS(1508), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1510), + [aux_sym__val_number_token2] = ACTIONS(1510), + [aux_sym__val_number_token3] = ACTIONS(1510), + [aux_sym__val_number_token4] = ACTIONS(1508), + [aux_sym__val_number_token5] = ACTIONS(1508), + [aux_sym__val_number_token6] = ACTIONS(1508), + [anon_sym_0b] = ACTIONS(1508), + [anon_sym_0o] = ACTIONS(1508), + [anon_sym_0x] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym__str_single_quotes] = ACTIONS(1510), + [sym__str_back_ticks] = ACTIONS(1510), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1510), + [aux_sym_env_var_token1] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1510), + [aux_sym_command_token1] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1510), }, - [308] = { - [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(1540), - [anon_sym_export] = ACTIONS(1542), - [anon_sym_alias] = ACTIONS(1542), - [anon_sym_let] = ACTIONS(1542), - [anon_sym_let_DASHenv] = ACTIONS(1542), - [anon_sym_mut] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [aux_sym_cmd_identifier_token1] = ACTIONS(1542), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), - [aux_sym_cmd_identifier_token8] = ACTIONS(1542), - [aux_sym_cmd_identifier_token9] = ACTIONS(1542), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), - [aux_sym_cmd_identifier_token12] = ACTIONS(1542), - [aux_sym_cmd_identifier_token13] = ACTIONS(1542), - [aux_sym_cmd_identifier_token14] = ACTIONS(1542), - [aux_sym_cmd_identifier_token15] = ACTIONS(1542), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1542), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1542), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), - [aux_sym_cmd_identifier_token34] = ACTIONS(1542), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [aux_sym_cmd_identifier_token37] = ACTIONS(1540), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1540), - [aux_sym_cmd_identifier_token40] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_def] = ACTIONS(1542), - [anon_sym_export_DASHenv] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_module] = ACTIONS(1542), - [anon_sym_use] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1542), - [anon_sym_DASH2] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_loop] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_source] = ACTIONS(1542), - [anon_sym_source_DASHenv] = ACTIONS(1542), - [anon_sym_register] = ACTIONS(1542), - [anon_sym_hide] = ACTIONS(1542), - [anon_sym_hide_DASHenv] = ACTIONS(1542), - [anon_sym_overlay] = ACTIONS(1542), - [anon_sym_where] = ACTIONS(1540), - [aux_sym_expr_unary_token1] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1542), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1542), - [aux_sym__val_number_token5] = ACTIONS(1542), - [aux_sym__val_number_token6] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1542), - [anon_sym_0x] = ACTIONS(1542), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [aux_sym_env_var_token1] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1540), - [aux_sym_command_token1] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1540), + [293] = { + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(1279), + [anon_sym_export] = ACTIONS(1485), + [anon_sym_alias] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_let_DASHenv] = ACTIONS(1485), + [anon_sym_mut] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [aux_sym_cmd_identifier_token1] = ACTIONS(1485), + [aux_sym_cmd_identifier_token2] = ACTIONS(1279), + [aux_sym_cmd_identifier_token3] = ACTIONS(1279), + [aux_sym_cmd_identifier_token4] = ACTIONS(1279), + [aux_sym_cmd_identifier_token5] = ACTIONS(1279), + [aux_sym_cmd_identifier_token6] = ACTIONS(1279), + [aux_sym_cmd_identifier_token7] = ACTIONS(1279), + [aux_sym_cmd_identifier_token8] = ACTIONS(1485), + [aux_sym_cmd_identifier_token9] = ACTIONS(1485), + [aux_sym_cmd_identifier_token10] = ACTIONS(1279), + [aux_sym_cmd_identifier_token11] = ACTIONS(1279), + [aux_sym_cmd_identifier_token12] = ACTIONS(1485), + [aux_sym_cmd_identifier_token13] = ACTIONS(1485), + [aux_sym_cmd_identifier_token14] = ACTIONS(1485), + [aux_sym_cmd_identifier_token15] = ACTIONS(1485), + [aux_sym_cmd_identifier_token16] = ACTIONS(1279), + [aux_sym_cmd_identifier_token17] = ACTIONS(1279), + [aux_sym_cmd_identifier_token18] = ACTIONS(1485), + [aux_sym_cmd_identifier_token19] = ACTIONS(1279), + [aux_sym_cmd_identifier_token20] = ACTIONS(1279), + [aux_sym_cmd_identifier_token21] = ACTIONS(1279), + [aux_sym_cmd_identifier_token22] = ACTIONS(1279), + [aux_sym_cmd_identifier_token23] = ACTIONS(1279), + [aux_sym_cmd_identifier_token24] = ACTIONS(1279), + [aux_sym_cmd_identifier_token25] = ACTIONS(1279), + [aux_sym_cmd_identifier_token26] = ACTIONS(1279), + [aux_sym_cmd_identifier_token27] = ACTIONS(1279), + [aux_sym_cmd_identifier_token28] = ACTIONS(1279), + [aux_sym_cmd_identifier_token29] = ACTIONS(1279), + [aux_sym_cmd_identifier_token30] = ACTIONS(1279), + [aux_sym_cmd_identifier_token31] = ACTIONS(1279), + [aux_sym_cmd_identifier_token32] = ACTIONS(1485), + [aux_sym_cmd_identifier_token33] = ACTIONS(1279), + [aux_sym_cmd_identifier_token34] = ACTIONS(1485), + [aux_sym_cmd_identifier_token35] = ACTIONS(1279), + [aux_sym_cmd_identifier_token36] = ACTIONS(1279), + [aux_sym_cmd_identifier_token37] = ACTIONS(1279), + [aux_sym_cmd_identifier_token38] = ACTIONS(1485), + [aux_sym_cmd_identifier_token39] = ACTIONS(1279), + [aux_sym_cmd_identifier_token40] = ACTIONS(1279), + [sym__newline] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_export_DASHenv] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_module] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1485), + [anon_sym_error] = ACTIONS(1485), + [anon_sym_DASH2] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_loop] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_source] = ACTIONS(1485), + [anon_sym_source_DASHenv] = ACTIONS(1485), + [anon_sym_register] = ACTIONS(1485), + [anon_sym_hide] = ACTIONS(1485), + [anon_sym_hide_DASHenv] = ACTIONS(1485), + [anon_sym_overlay] = ACTIONS(1485), + [anon_sym_where] = ACTIONS(1279), + [aux_sym_expr_unary_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [aux_sym__val_number_decimal_token1] = ACTIONS(1485), + [aux_sym__val_number_decimal_token2] = ACTIONS(1279), + [aux_sym__val_number_decimal_token3] = ACTIONS(1279), + [aux_sym__val_number_decimal_token4] = ACTIONS(1279), + [aux_sym__val_number_token1] = ACTIONS(1279), + [aux_sym__val_number_token2] = ACTIONS(1279), + [aux_sym__val_number_token3] = ACTIONS(1279), + [aux_sym__val_number_token4] = ACTIONS(1485), + [aux_sym__val_number_token5] = ACTIONS(1485), + [aux_sym__val_number_token6] = ACTIONS(1485), + [anon_sym_0b] = ACTIONS(1485), + [anon_sym_0o] = ACTIONS(1485), + [anon_sym_0x] = ACTIONS(1485), + [sym_val_date] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [sym__str_single_quotes] = ACTIONS(1279), + [sym__str_back_ticks] = ACTIONS(1279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1279), + [aux_sym_env_var_token1] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1279), + [aux_sym_command_token1] = ACTIONS(1279), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1279), }, - [309] = { - [sym_comment] = STATE(309), - [ts_builtin_sym_end] = ACTIONS(1544), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_alias] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(1546), - [anon_sym_let_DASHenv] = ACTIONS(1546), - [anon_sym_mut] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [aux_sym_cmd_identifier_token1] = ACTIONS(1546), - [aux_sym_cmd_identifier_token2] = ACTIONS(1544), - [aux_sym_cmd_identifier_token3] = ACTIONS(1544), - [aux_sym_cmd_identifier_token4] = ACTIONS(1544), - [aux_sym_cmd_identifier_token5] = ACTIONS(1544), - [aux_sym_cmd_identifier_token6] = ACTIONS(1544), - [aux_sym_cmd_identifier_token7] = ACTIONS(1544), - [aux_sym_cmd_identifier_token8] = ACTIONS(1546), - [aux_sym_cmd_identifier_token9] = ACTIONS(1546), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1546), - [aux_sym_cmd_identifier_token13] = ACTIONS(1546), - [aux_sym_cmd_identifier_token14] = ACTIONS(1546), - [aux_sym_cmd_identifier_token15] = ACTIONS(1546), - [aux_sym_cmd_identifier_token16] = ACTIONS(1544), - [aux_sym_cmd_identifier_token17] = ACTIONS(1544), - [aux_sym_cmd_identifier_token18] = ACTIONS(1546), - [aux_sym_cmd_identifier_token19] = ACTIONS(1544), - [aux_sym_cmd_identifier_token20] = ACTIONS(1544), - [aux_sym_cmd_identifier_token21] = ACTIONS(1544), - [aux_sym_cmd_identifier_token22] = ACTIONS(1544), - [aux_sym_cmd_identifier_token23] = ACTIONS(1544), - [aux_sym_cmd_identifier_token24] = ACTIONS(1544), - [aux_sym_cmd_identifier_token25] = ACTIONS(1544), - [aux_sym_cmd_identifier_token26] = ACTIONS(1544), - [aux_sym_cmd_identifier_token27] = ACTIONS(1544), - [aux_sym_cmd_identifier_token28] = ACTIONS(1544), - [aux_sym_cmd_identifier_token29] = ACTIONS(1544), - [aux_sym_cmd_identifier_token30] = ACTIONS(1544), - [aux_sym_cmd_identifier_token31] = ACTIONS(1544), - [aux_sym_cmd_identifier_token32] = ACTIONS(1546), - [aux_sym_cmd_identifier_token33] = ACTIONS(1544), - [aux_sym_cmd_identifier_token34] = ACTIONS(1546), - [aux_sym_cmd_identifier_token35] = ACTIONS(1544), - [aux_sym_cmd_identifier_token36] = ACTIONS(1544), - [aux_sym_cmd_identifier_token37] = ACTIONS(1544), - [aux_sym_cmd_identifier_token38] = ACTIONS(1546), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [sym__newline] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1546), - [anon_sym_export_DASHenv] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_use] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_error] = ACTIONS(1546), - [anon_sym_DASH2] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_do] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_source] = ACTIONS(1546), - [anon_sym_source_DASHenv] = ACTIONS(1546), - [anon_sym_register] = ACTIONS(1546), - [anon_sym_hide] = ACTIONS(1546), - [anon_sym_hide_DASHenv] = ACTIONS(1546), - [anon_sym_overlay] = ACTIONS(1546), - [anon_sym_where] = ACTIONS(1544), - [aux_sym_expr_unary_token1] = ACTIONS(1544), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1544), - [anon_sym_DOT_DOT_LT] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [aux_sym__val_number_decimal_token1] = ACTIONS(1546), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1544), - [aux_sym__val_number_token2] = ACTIONS(1544), - [aux_sym__val_number_token3] = ACTIONS(1544), - [aux_sym__val_number_token4] = ACTIONS(1546), - [aux_sym__val_number_token5] = ACTIONS(1546), - [aux_sym__val_number_token6] = ACTIONS(1546), - [anon_sym_0b] = ACTIONS(1546), - [anon_sym_0o] = ACTIONS(1546), - [anon_sym_0x] = ACTIONS(1546), - [sym_val_date] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1544), - [sym__str_single_quotes] = ACTIONS(1544), - [sym__str_back_ticks] = ACTIONS(1544), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1544), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1544), - [aux_sym_env_var_token1] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1544), - [aux_sym_command_token1] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1544), + [294] = { + [sym_comment] = STATE(294), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_where] = ACTIONS(1516), + [aux_sym_expr_unary_token1] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), + [aux_sym_env_var_token1] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [aux_sym_command_token1] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1516), }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1548), - [anon_sym_alias] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_let_DASHenv] = ACTIONS(1548), - [anon_sym_mut] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [aux_sym_cmd_identifier_token1] = ACTIONS(1548), - [aux_sym_cmd_identifier_token2] = ACTIONS(1550), - [aux_sym_cmd_identifier_token3] = ACTIONS(1550), - [aux_sym_cmd_identifier_token4] = ACTIONS(1550), - [aux_sym_cmd_identifier_token5] = ACTIONS(1550), - [aux_sym_cmd_identifier_token6] = ACTIONS(1550), - [aux_sym_cmd_identifier_token7] = ACTIONS(1550), - [aux_sym_cmd_identifier_token8] = ACTIONS(1548), - [aux_sym_cmd_identifier_token9] = ACTIONS(1548), - [aux_sym_cmd_identifier_token10] = ACTIONS(1550), - [aux_sym_cmd_identifier_token11] = ACTIONS(1550), - [aux_sym_cmd_identifier_token12] = ACTIONS(1548), - [aux_sym_cmd_identifier_token13] = ACTIONS(1548), - [aux_sym_cmd_identifier_token14] = ACTIONS(1548), - [aux_sym_cmd_identifier_token15] = ACTIONS(1548), - [aux_sym_cmd_identifier_token16] = ACTIONS(1550), - [aux_sym_cmd_identifier_token17] = ACTIONS(1550), - [aux_sym_cmd_identifier_token18] = ACTIONS(1548), - [aux_sym_cmd_identifier_token19] = ACTIONS(1550), - [aux_sym_cmd_identifier_token20] = ACTIONS(1550), - [aux_sym_cmd_identifier_token21] = ACTIONS(1550), - [aux_sym_cmd_identifier_token22] = ACTIONS(1550), - [aux_sym_cmd_identifier_token23] = ACTIONS(1550), - [aux_sym_cmd_identifier_token24] = ACTIONS(1550), - [aux_sym_cmd_identifier_token25] = ACTIONS(1550), - [aux_sym_cmd_identifier_token26] = ACTIONS(1550), - [aux_sym_cmd_identifier_token27] = ACTIONS(1550), - [aux_sym_cmd_identifier_token28] = ACTIONS(1550), - [aux_sym_cmd_identifier_token29] = ACTIONS(1550), - [aux_sym_cmd_identifier_token30] = ACTIONS(1550), - [aux_sym_cmd_identifier_token31] = ACTIONS(1550), - [aux_sym_cmd_identifier_token32] = ACTIONS(1548), - [aux_sym_cmd_identifier_token33] = ACTIONS(1550), - [aux_sym_cmd_identifier_token34] = ACTIONS(1548), - [aux_sym_cmd_identifier_token35] = ACTIONS(1550), - [aux_sym_cmd_identifier_token36] = ACTIONS(1550), - [aux_sym_cmd_identifier_token37] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1548), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_def] = ACTIONS(1548), - [anon_sym_export_DASHenv] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_module] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1548), - [anon_sym_error] = ACTIONS(1548), - [anon_sym_DASH2] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_source] = ACTIONS(1548), - [anon_sym_source_DASHenv] = ACTIONS(1548), - [anon_sym_register] = ACTIONS(1548), - [anon_sym_hide] = ACTIONS(1548), - [anon_sym_hide_DASHenv] = ACTIONS(1548), - [anon_sym_overlay] = ACTIONS(1548), - [anon_sym_where] = ACTIONS(1550), - [aux_sym_expr_unary_token1] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [aux_sym__val_number_decimal_token1] = ACTIONS(1548), - [aux_sym__val_number_decimal_token2] = ACTIONS(1550), - [aux_sym__val_number_decimal_token3] = ACTIONS(1550), - [aux_sym__val_number_decimal_token4] = ACTIONS(1550), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [aux_sym__val_number_token4] = ACTIONS(1548), - [aux_sym__val_number_token5] = ACTIONS(1548), - [aux_sym__val_number_token6] = ACTIONS(1548), - [anon_sym_0b] = ACTIONS(1548), - [anon_sym_0o] = ACTIONS(1548), - [anon_sym_0x] = ACTIONS(1548), - [sym_val_date] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [aux_sym_env_var_token1] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1550), - [aux_sym_command_token1] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1550), + [295] = { + [sym_comment] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(1521), + [anon_sym_export] = ACTIONS(1523), + [anon_sym_alias] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_let_DASHenv] = ACTIONS(1523), + [anon_sym_mut] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [aux_sym_cmd_identifier_token1] = ACTIONS(1523), + [aux_sym_cmd_identifier_token2] = ACTIONS(1521), + [aux_sym_cmd_identifier_token3] = ACTIONS(1521), + [aux_sym_cmd_identifier_token4] = ACTIONS(1521), + [aux_sym_cmd_identifier_token5] = ACTIONS(1521), + [aux_sym_cmd_identifier_token6] = ACTIONS(1521), + [aux_sym_cmd_identifier_token7] = ACTIONS(1521), + [aux_sym_cmd_identifier_token8] = ACTIONS(1523), + [aux_sym_cmd_identifier_token9] = ACTIONS(1523), + [aux_sym_cmd_identifier_token10] = ACTIONS(1521), + [aux_sym_cmd_identifier_token11] = ACTIONS(1521), + [aux_sym_cmd_identifier_token12] = ACTIONS(1523), + [aux_sym_cmd_identifier_token13] = ACTIONS(1523), + [aux_sym_cmd_identifier_token14] = ACTIONS(1523), + [aux_sym_cmd_identifier_token15] = ACTIONS(1523), + [aux_sym_cmd_identifier_token16] = ACTIONS(1521), + [aux_sym_cmd_identifier_token17] = ACTIONS(1521), + [aux_sym_cmd_identifier_token18] = ACTIONS(1523), + [aux_sym_cmd_identifier_token19] = ACTIONS(1521), + [aux_sym_cmd_identifier_token20] = ACTIONS(1521), + [aux_sym_cmd_identifier_token21] = ACTIONS(1521), + [aux_sym_cmd_identifier_token22] = ACTIONS(1521), + [aux_sym_cmd_identifier_token23] = ACTIONS(1521), + [aux_sym_cmd_identifier_token24] = ACTIONS(1521), + [aux_sym_cmd_identifier_token25] = ACTIONS(1521), + [aux_sym_cmd_identifier_token26] = ACTIONS(1521), + [aux_sym_cmd_identifier_token27] = ACTIONS(1521), + [aux_sym_cmd_identifier_token28] = ACTIONS(1521), + [aux_sym_cmd_identifier_token29] = ACTIONS(1521), + [aux_sym_cmd_identifier_token30] = ACTIONS(1521), + [aux_sym_cmd_identifier_token31] = ACTIONS(1521), + [aux_sym_cmd_identifier_token32] = ACTIONS(1523), + [aux_sym_cmd_identifier_token33] = ACTIONS(1521), + [aux_sym_cmd_identifier_token34] = ACTIONS(1523), + [aux_sym_cmd_identifier_token35] = ACTIONS(1521), + [aux_sym_cmd_identifier_token36] = ACTIONS(1521), + [aux_sym_cmd_identifier_token37] = ACTIONS(1521), + [aux_sym_cmd_identifier_token38] = ACTIONS(1523), + [aux_sym_cmd_identifier_token39] = ACTIONS(1521), + [aux_sym_cmd_identifier_token40] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_def] = ACTIONS(1523), + [anon_sym_export_DASHenv] = ACTIONS(1523), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_module] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1523), + [anon_sym_error] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_try] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_source] = ACTIONS(1523), + [anon_sym_source_DASHenv] = ACTIONS(1523), + [anon_sym_register] = ACTIONS(1523), + [anon_sym_hide] = ACTIONS(1523), + [anon_sym_hide_DASHenv] = ACTIONS(1523), + [anon_sym_overlay] = ACTIONS(1523), + [anon_sym_where] = ACTIONS(1521), + [aux_sym_expr_unary_token1] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), + [anon_sym_DOT_DOT_LT] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [aux_sym__val_number_decimal_token1] = ACTIONS(1523), + [aux_sym__val_number_decimal_token2] = ACTIONS(1521), + [aux_sym__val_number_decimal_token3] = ACTIONS(1521), + [aux_sym__val_number_decimal_token4] = ACTIONS(1521), + [aux_sym__val_number_token1] = ACTIONS(1521), + [aux_sym__val_number_token2] = ACTIONS(1521), + [aux_sym__val_number_token3] = ACTIONS(1521), + [aux_sym__val_number_token4] = ACTIONS(1523), + [aux_sym__val_number_token5] = ACTIONS(1523), + [aux_sym__val_number_token6] = ACTIONS(1523), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0o] = ACTIONS(1523), + [anon_sym_0x] = ACTIONS(1523), + [sym_val_date] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(1521), + [sym__str_single_quotes] = ACTIONS(1521), + [sym__str_back_ticks] = ACTIONS(1521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), + [aux_sym_env_var_token1] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1521), + [aux_sym_command_token1] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1521), }, - [311] = { - [sym_comment] = STATE(311), - [aux_sym_shebang_repeat1] = STATE(224), - [anon_sym_export] = ACTIONS(1555), - [anon_sym_alias] = ACTIONS(1555), - [anon_sym_let] = ACTIONS(1555), - [anon_sym_let_DASHenv] = ACTIONS(1555), - [anon_sym_mut] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [aux_sym_cmd_identifier_token1] = ACTIONS(1555), - [aux_sym_cmd_identifier_token2] = ACTIONS(1557), - [aux_sym_cmd_identifier_token3] = ACTIONS(1557), - [aux_sym_cmd_identifier_token4] = ACTIONS(1557), - [aux_sym_cmd_identifier_token5] = ACTIONS(1557), - [aux_sym_cmd_identifier_token6] = ACTIONS(1557), - [aux_sym_cmd_identifier_token7] = ACTIONS(1557), - [aux_sym_cmd_identifier_token8] = ACTIONS(1555), - [aux_sym_cmd_identifier_token9] = ACTIONS(1555), - [aux_sym_cmd_identifier_token10] = ACTIONS(1557), - [aux_sym_cmd_identifier_token11] = ACTIONS(1557), - [aux_sym_cmd_identifier_token12] = ACTIONS(1555), - [aux_sym_cmd_identifier_token13] = ACTIONS(1555), - [aux_sym_cmd_identifier_token14] = ACTIONS(1555), - [aux_sym_cmd_identifier_token15] = ACTIONS(1555), - [aux_sym_cmd_identifier_token16] = ACTIONS(1557), - [aux_sym_cmd_identifier_token17] = ACTIONS(1557), - [aux_sym_cmd_identifier_token18] = ACTIONS(1555), - [aux_sym_cmd_identifier_token19] = ACTIONS(1557), - [aux_sym_cmd_identifier_token20] = ACTIONS(1557), - [aux_sym_cmd_identifier_token21] = ACTIONS(1557), - [aux_sym_cmd_identifier_token22] = ACTIONS(1557), - [aux_sym_cmd_identifier_token23] = ACTIONS(1557), - [aux_sym_cmd_identifier_token24] = ACTIONS(1557), - [aux_sym_cmd_identifier_token25] = ACTIONS(1557), - [aux_sym_cmd_identifier_token26] = ACTIONS(1557), - [aux_sym_cmd_identifier_token27] = ACTIONS(1557), - [aux_sym_cmd_identifier_token28] = ACTIONS(1557), - [aux_sym_cmd_identifier_token29] = ACTIONS(1557), - [aux_sym_cmd_identifier_token30] = ACTIONS(1557), - [aux_sym_cmd_identifier_token31] = ACTIONS(1557), - [aux_sym_cmd_identifier_token32] = ACTIONS(1555), - [aux_sym_cmd_identifier_token33] = ACTIONS(1557), - [aux_sym_cmd_identifier_token34] = ACTIONS(1555), - [aux_sym_cmd_identifier_token35] = ACTIONS(1557), - [aux_sym_cmd_identifier_token36] = ACTIONS(1557), - [aux_sym_cmd_identifier_token37] = ACTIONS(1557), - [aux_sym_cmd_identifier_token38] = ACTIONS(1555), - [aux_sym_cmd_identifier_token39] = ACTIONS(1557), - [aux_sym_cmd_identifier_token40] = ACTIONS(1557), - [sym__newline] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_def] = ACTIONS(1555), - [anon_sym_export_DASHenv] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_use] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1555), - [anon_sym_error] = ACTIONS(1555), - [anon_sym_DASH2] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_loop] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1555), - [anon_sym_try] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_source] = ACTIONS(1555), - [anon_sym_source_DASHenv] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_hide] = ACTIONS(1555), - [anon_sym_hide_DASHenv] = ACTIONS(1555), - [anon_sym_overlay] = ACTIONS(1555), - [anon_sym_where] = ACTIONS(1557), - [aux_sym_expr_unary_token1] = ACTIONS(1557), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_LT] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [aux_sym__val_number_decimal_token1] = ACTIONS(1555), - [aux_sym__val_number_decimal_token2] = ACTIONS(1557), - [aux_sym__val_number_decimal_token3] = ACTIONS(1557), - [aux_sym__val_number_decimal_token4] = ACTIONS(1557), - [aux_sym__val_number_token1] = ACTIONS(1557), - [aux_sym__val_number_token2] = ACTIONS(1557), - [aux_sym__val_number_token3] = ACTIONS(1557), - [aux_sym__val_number_token4] = ACTIONS(1555), - [aux_sym__val_number_token5] = ACTIONS(1555), - [aux_sym__val_number_token6] = ACTIONS(1555), - [anon_sym_0b] = ACTIONS(1555), - [anon_sym_0o] = ACTIONS(1555), - [anon_sym_0x] = ACTIONS(1555), - [sym_val_date] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [sym__str_single_quotes] = ACTIONS(1557), - [sym__str_back_ticks] = ACTIONS(1557), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), - [aux_sym_env_var_token1] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1557), - [aux_sym_command_token1] = ACTIONS(1557), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1557), + [296] = { + [sym_comment] = STATE(296), + [ts_builtin_sym_end] = ACTIONS(1525), + [anon_sym_export] = ACTIONS(1527), + [anon_sym_alias] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_let_DASHenv] = ACTIONS(1527), + [anon_sym_mut] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [aux_sym_cmd_identifier_token1] = ACTIONS(1527), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1527), + [aux_sym_cmd_identifier_token9] = ACTIONS(1527), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1527), + [aux_sym_cmd_identifier_token13] = ACTIONS(1527), + [aux_sym_cmd_identifier_token14] = ACTIONS(1527), + [aux_sym_cmd_identifier_token15] = ACTIONS(1527), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1527), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1527), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1527), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [aux_sym_cmd_identifier_token37] = ACTIONS(1525), + [aux_sym_cmd_identifier_token38] = ACTIONS(1527), + [aux_sym_cmd_identifier_token39] = ACTIONS(1525), + [aux_sym_cmd_identifier_token40] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_def] = ACTIONS(1527), + [anon_sym_export_DASHenv] = ACTIONS(1527), + [anon_sym_extern] = ACTIONS(1527), + [anon_sym_module] = ACTIONS(1527), + [anon_sym_use] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_error] = ACTIONS(1527), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_break] = ACTIONS(1527), + [anon_sym_continue] = ACTIONS(1527), + [anon_sym_for] = ACTIONS(1527), + [anon_sym_loop] = ACTIONS(1527), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_do] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1527), + [anon_sym_match] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_try] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1527), + [anon_sym_source] = ACTIONS(1527), + [anon_sym_source_DASHenv] = ACTIONS(1527), + [anon_sym_register] = ACTIONS(1527), + [anon_sym_hide] = ACTIONS(1527), + [anon_sym_hide_DASHenv] = ACTIONS(1527), + [anon_sym_overlay] = ACTIONS(1527), + [anon_sym_where] = ACTIONS(1525), + [aux_sym_expr_unary_token1] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [aux_sym__val_number_decimal_token1] = ACTIONS(1527), + [aux_sym__val_number_decimal_token2] = ACTIONS(1525), + [aux_sym__val_number_decimal_token3] = ACTIONS(1525), + [aux_sym__val_number_decimal_token4] = ACTIONS(1525), + [aux_sym__val_number_token1] = ACTIONS(1525), + [aux_sym__val_number_token2] = ACTIONS(1525), + [aux_sym__val_number_token3] = ACTIONS(1525), + [aux_sym__val_number_token4] = ACTIONS(1527), + [aux_sym__val_number_token5] = ACTIONS(1527), + [aux_sym__val_number_token6] = ACTIONS(1527), + [anon_sym_0b] = ACTIONS(1527), + [anon_sym_0o] = ACTIONS(1527), + [anon_sym_0x] = ACTIONS(1527), + [sym_val_date] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1525), + [sym__str_single_quotes] = ACTIONS(1525), + [sym__str_back_ticks] = ACTIONS(1525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1525), + [aux_sym_env_var_token1] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1525), + [aux_sym_command_token1] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1525), }, - [312] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if] = STATE(5223), - [sym_block] = STATE(5224), - [sym__expression] = STATE(5224), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1224), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5224), - [sym_comment] = STATE(312), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [297] = { + [sym_comment] = STATE(297), + [anon_sym_export] = ACTIONS(1277), + [anon_sym_alias] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1277), + [anon_sym_let_DASHenv] = ACTIONS(1277), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1277), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1277), + [aux_sym_cmd_identifier_token9] = ACTIONS(1277), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1277), + [aux_sym_cmd_identifier_token13] = ACTIONS(1277), + [aux_sym_cmd_identifier_token14] = ACTIONS(1277), + [aux_sym_cmd_identifier_token15] = ACTIONS(1277), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1277), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1275), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1275), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1275), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1275), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1275), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [aux_sym_cmd_identifier_token37] = ACTIONS(1275), + [aux_sym_cmd_identifier_token38] = ACTIONS(1277), + [aux_sym_cmd_identifier_token39] = ACTIONS(1275), + [aux_sym_cmd_identifier_token40] = ACTIONS(1275), + [sym__newline] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1277), + [anon_sym_export_DASHenv] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1277), + [anon_sym_module] = ACTIONS(1277), + [anon_sym_use] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_error] = ACTIONS(1277), + [anon_sym_DASH2] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_loop] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_source] = ACTIONS(1277), + [anon_sym_source_DASHenv] = ACTIONS(1277), + [anon_sym_register] = ACTIONS(1277), + [anon_sym_hide] = ACTIONS(1277), + [anon_sym_hide_DASHenv] = ACTIONS(1277), + [anon_sym_overlay] = ACTIONS(1277), + [anon_sym_where] = ACTIONS(1275), + [aux_sym_expr_unary_token1] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1277), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_decimal_token4] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1277), + [anon_sym_0o] = ACTIONS(1277), + [anon_sym_0x] = ACTIONS(1277), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [aux_sym_env_var_token1] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1275), + [aux_sym_command_token1] = ACTIONS(1275), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(1275), }, - [313] = { - [sym_comment] = STATE(313), - [anon_sym_export] = ACTIONS(1561), - [anon_sym_alias] = ACTIONS(1561), - [anon_sym_let] = ACTIONS(1561), - [anon_sym_let_DASHenv] = ACTIONS(1561), - [anon_sym_mut] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [aux_sym_cmd_identifier_token1] = ACTIONS(1561), - [aux_sym_cmd_identifier_token2] = ACTIONS(1563), - [aux_sym_cmd_identifier_token3] = ACTIONS(1563), - [aux_sym_cmd_identifier_token4] = ACTIONS(1563), - [aux_sym_cmd_identifier_token5] = ACTIONS(1563), - [aux_sym_cmd_identifier_token6] = ACTIONS(1563), - [aux_sym_cmd_identifier_token7] = ACTIONS(1563), - [aux_sym_cmd_identifier_token8] = ACTIONS(1561), - [aux_sym_cmd_identifier_token9] = ACTIONS(1561), - [aux_sym_cmd_identifier_token10] = ACTIONS(1563), - [aux_sym_cmd_identifier_token11] = ACTIONS(1563), - [aux_sym_cmd_identifier_token12] = ACTIONS(1561), - [aux_sym_cmd_identifier_token13] = ACTIONS(1561), - [aux_sym_cmd_identifier_token14] = ACTIONS(1561), - [aux_sym_cmd_identifier_token15] = ACTIONS(1561), - [aux_sym_cmd_identifier_token16] = ACTIONS(1563), - [aux_sym_cmd_identifier_token17] = ACTIONS(1563), - [aux_sym_cmd_identifier_token18] = ACTIONS(1561), - [aux_sym_cmd_identifier_token19] = ACTIONS(1563), - [aux_sym_cmd_identifier_token20] = ACTIONS(1563), - [aux_sym_cmd_identifier_token21] = ACTIONS(1563), - [aux_sym_cmd_identifier_token22] = ACTIONS(1563), - [aux_sym_cmd_identifier_token23] = ACTIONS(1563), - [aux_sym_cmd_identifier_token24] = ACTIONS(1563), - [aux_sym_cmd_identifier_token25] = ACTIONS(1563), - [aux_sym_cmd_identifier_token26] = ACTIONS(1563), - [aux_sym_cmd_identifier_token27] = ACTIONS(1563), - [aux_sym_cmd_identifier_token28] = ACTIONS(1563), - [aux_sym_cmd_identifier_token29] = ACTIONS(1563), - [aux_sym_cmd_identifier_token30] = ACTIONS(1563), - [aux_sym_cmd_identifier_token31] = ACTIONS(1563), - [aux_sym_cmd_identifier_token32] = ACTIONS(1561), - [aux_sym_cmd_identifier_token33] = ACTIONS(1563), - [aux_sym_cmd_identifier_token34] = ACTIONS(1561), - [aux_sym_cmd_identifier_token35] = ACTIONS(1563), - [aux_sym_cmd_identifier_token36] = ACTIONS(1563), - [aux_sym_cmd_identifier_token37] = ACTIONS(1563), - [aux_sym_cmd_identifier_token38] = ACTIONS(1561), - [aux_sym_cmd_identifier_token39] = ACTIONS(1563), - [aux_sym_cmd_identifier_token40] = ACTIONS(1563), - [sym__newline] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_def] = ACTIONS(1561), - [anon_sym_export_DASHenv] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym_module] = ACTIONS(1561), - [anon_sym_use] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_DOLLAR] = ACTIONS(1561), - [anon_sym_error] = ACTIONS(1561), - [anon_sym_DASH2] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_loop] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_match] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_source] = ACTIONS(1561), - [anon_sym_source_DASHenv] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_hide] = ACTIONS(1561), - [anon_sym_hide_DASHenv] = ACTIONS(1561), - [anon_sym_overlay] = ACTIONS(1561), - [anon_sym_where] = ACTIONS(1563), - [aux_sym_expr_unary_token1] = ACTIONS(1563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), - [anon_sym_DOT_DOT_LT] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [aux_sym__val_number_decimal_token1] = ACTIONS(1561), - [aux_sym__val_number_decimal_token2] = ACTIONS(1563), - [aux_sym__val_number_decimal_token3] = ACTIONS(1563), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), - [aux_sym__val_number_token1] = ACTIONS(1563), - [aux_sym__val_number_token2] = ACTIONS(1563), - [aux_sym__val_number_token3] = ACTIONS(1563), - [aux_sym__val_number_token4] = ACTIONS(1561), - [aux_sym__val_number_token5] = ACTIONS(1561), - [aux_sym__val_number_token6] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1561), - [anon_sym_0o] = ACTIONS(1561), - [anon_sym_0x] = ACTIONS(1561), - [sym_val_date] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym__str_single_quotes] = ACTIONS(1563), - [sym__str_back_ticks] = ACTIONS(1563), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), - [aux_sym_env_var_token1] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1563), - [aux_sym_command_token1] = ACTIONS(1563), + [298] = { + [sym_comment] = STATE(298), + [aux_sym__block_body_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_alias] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_let_DASHenv] = ACTIONS(1381), + [anon_sym_mut] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [aux_sym_cmd_identifier_token1] = ACTIONS(1381), + [aux_sym_cmd_identifier_token2] = ACTIONS(1383), + [aux_sym_cmd_identifier_token3] = ACTIONS(1383), + [aux_sym_cmd_identifier_token4] = ACTIONS(1383), + [aux_sym_cmd_identifier_token5] = ACTIONS(1383), + [aux_sym_cmd_identifier_token6] = ACTIONS(1383), + [aux_sym_cmd_identifier_token7] = ACTIONS(1383), + [aux_sym_cmd_identifier_token8] = ACTIONS(1381), + [aux_sym_cmd_identifier_token9] = ACTIONS(1381), + [aux_sym_cmd_identifier_token10] = ACTIONS(1383), + [aux_sym_cmd_identifier_token11] = ACTIONS(1383), + [aux_sym_cmd_identifier_token12] = ACTIONS(1381), + [aux_sym_cmd_identifier_token13] = ACTIONS(1381), + [aux_sym_cmd_identifier_token14] = ACTIONS(1381), + [aux_sym_cmd_identifier_token15] = ACTIONS(1381), + [aux_sym_cmd_identifier_token16] = ACTIONS(1383), + [aux_sym_cmd_identifier_token17] = ACTIONS(1383), + [aux_sym_cmd_identifier_token18] = ACTIONS(1381), + [aux_sym_cmd_identifier_token19] = ACTIONS(1383), + [aux_sym_cmd_identifier_token20] = ACTIONS(1383), + [aux_sym_cmd_identifier_token21] = ACTIONS(1383), + [aux_sym_cmd_identifier_token22] = ACTIONS(1383), + [aux_sym_cmd_identifier_token23] = ACTIONS(1383), + [aux_sym_cmd_identifier_token24] = ACTIONS(1383), + [aux_sym_cmd_identifier_token25] = ACTIONS(1383), + [aux_sym_cmd_identifier_token26] = ACTIONS(1383), + [aux_sym_cmd_identifier_token27] = ACTIONS(1383), + [aux_sym_cmd_identifier_token28] = ACTIONS(1383), + [aux_sym_cmd_identifier_token29] = ACTIONS(1383), + [aux_sym_cmd_identifier_token30] = ACTIONS(1383), + [aux_sym_cmd_identifier_token31] = ACTIONS(1383), + [aux_sym_cmd_identifier_token32] = ACTIONS(1381), + [aux_sym_cmd_identifier_token33] = ACTIONS(1383), + [aux_sym_cmd_identifier_token34] = ACTIONS(1381), + [aux_sym_cmd_identifier_token35] = ACTIONS(1383), + [aux_sym_cmd_identifier_token36] = ACTIONS(1383), + [aux_sym_cmd_identifier_token37] = ACTIONS(1383), + [aux_sym_cmd_identifier_token38] = ACTIONS(1381), + [aux_sym_cmd_identifier_token39] = ACTIONS(1383), + [aux_sym_cmd_identifier_token40] = ACTIONS(1383), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1381), + [anon_sym_export_DASHenv] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_use] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_error] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_source] = ACTIONS(1381), + [anon_sym_source_DASHenv] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_hide] = ACTIONS(1381), + [anon_sym_hide_DASHenv] = ACTIONS(1381), + [anon_sym_overlay] = ACTIONS(1381), + [anon_sym_where] = ACTIONS(1383), + [aux_sym_expr_unary_token1] = ACTIONS(1383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), + [anon_sym_DOT_DOT_LT] = ACTIONS(1383), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym__val_number_decimal_token1] = ACTIONS(1381), + [aux_sym__val_number_decimal_token2] = ACTIONS(1383), + [aux_sym__val_number_decimal_token3] = ACTIONS(1383), + [aux_sym__val_number_decimal_token4] = ACTIONS(1383), + [aux_sym__val_number_token1] = ACTIONS(1383), + [aux_sym__val_number_token2] = ACTIONS(1383), + [aux_sym__val_number_token3] = ACTIONS(1383), + [aux_sym__val_number_token4] = ACTIONS(1381), + [aux_sym__val_number_token5] = ACTIONS(1381), + [aux_sym__val_number_token6] = ACTIONS(1381), + [anon_sym_0b] = ACTIONS(1381), + [anon_sym_0o] = ACTIONS(1381), + [anon_sym_0x] = ACTIONS(1381), + [sym_val_date] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [sym__str_single_quotes] = ACTIONS(1383), + [sym__str_back_ticks] = ACTIONS(1383), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), + [aux_sym_env_var_token1] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1383), + [aux_sym_command_token1] = ACTIONS(1383), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1563), - }, - [314] = { - [sym__expr_parenthesized_immediate] = STATE(500), - [sym__immediate_decimal] = STATE(390), - [sym_val_variable] = STATE(500), - [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [aux_sym_cmd_identifier_token37] = ACTIONS(1565), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1565), - [aux_sym_cmd_identifier_token40] = ACTIONS(1565), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1571), - [aux_sym__immediate_decimal_token1] = ACTIONS(1573), - [aux_sym__immediate_decimal_token3] = ACTIONS(1573), - [aux_sym__immediate_decimal_token4] = ACTIONS(1575), - [aux_sym__immediate_decimal_token5] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1565), - [aux_sym__val_number_token2] = ACTIONS(1565), - [aux_sym__val_number_token3] = ACTIONS(1565), - [aux_sym__val_number_token4] = ACTIONS(1565), - [aux_sym__val_number_token5] = ACTIONS(1565), - [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym__str_single_quotes] = ACTIONS(1565), - [sym__str_back_ticks] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), - [sym__entry_separator] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1579), + [sym_raw_string_begin] = ACTIONS(1383), }, - [315] = { - [sym_cmd_identifier] = STATE(4846), - [sym__expression] = STATE(4087), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5178), - [sym_comment] = STATE(315), - [aux_sym_pipe_element_repeat2] = STATE(1172), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [299] = { + [sym_cmd_identifier] = STATE(4436), + [sym__expression_parenthesized] = STATE(3714), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4807), + [sym_comment] = STATE(299), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1152), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -120597,218 +113579,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [316] = { - [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1499), - [anon_sym_alias] = ACTIONS(1499), - [anon_sym_let] = ACTIONS(1499), - [anon_sym_let_DASHenv] = ACTIONS(1499), - [anon_sym_mut] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [aux_sym_cmd_identifier_token1] = ACTIONS(1499), - [aux_sym_cmd_identifier_token2] = ACTIONS(1501), - [aux_sym_cmd_identifier_token3] = ACTIONS(1501), - [aux_sym_cmd_identifier_token4] = ACTIONS(1501), - [aux_sym_cmd_identifier_token5] = ACTIONS(1501), - [aux_sym_cmd_identifier_token6] = ACTIONS(1501), - [aux_sym_cmd_identifier_token7] = ACTIONS(1501), - [aux_sym_cmd_identifier_token8] = ACTIONS(1499), - [aux_sym_cmd_identifier_token9] = ACTIONS(1499), - [aux_sym_cmd_identifier_token10] = ACTIONS(1501), - [aux_sym_cmd_identifier_token11] = ACTIONS(1501), - [aux_sym_cmd_identifier_token12] = ACTIONS(1499), - [aux_sym_cmd_identifier_token13] = ACTIONS(1499), - [aux_sym_cmd_identifier_token14] = ACTIONS(1499), - [aux_sym_cmd_identifier_token15] = ACTIONS(1499), - [aux_sym_cmd_identifier_token16] = ACTIONS(1501), - [aux_sym_cmd_identifier_token17] = ACTIONS(1501), - [aux_sym_cmd_identifier_token18] = ACTIONS(1499), - [aux_sym_cmd_identifier_token19] = ACTIONS(1501), - [aux_sym_cmd_identifier_token20] = ACTIONS(1501), - [aux_sym_cmd_identifier_token21] = ACTIONS(1501), - [aux_sym_cmd_identifier_token22] = ACTIONS(1501), - [aux_sym_cmd_identifier_token23] = ACTIONS(1501), - [aux_sym_cmd_identifier_token24] = ACTIONS(1501), - [aux_sym_cmd_identifier_token25] = ACTIONS(1501), - [aux_sym_cmd_identifier_token26] = ACTIONS(1501), - [aux_sym_cmd_identifier_token27] = ACTIONS(1501), - [aux_sym_cmd_identifier_token28] = ACTIONS(1501), - [aux_sym_cmd_identifier_token29] = ACTIONS(1501), - [aux_sym_cmd_identifier_token30] = ACTIONS(1501), - [aux_sym_cmd_identifier_token31] = ACTIONS(1501), - [aux_sym_cmd_identifier_token32] = ACTIONS(1499), - [aux_sym_cmd_identifier_token33] = ACTIONS(1501), - [aux_sym_cmd_identifier_token34] = ACTIONS(1499), - [aux_sym_cmd_identifier_token35] = ACTIONS(1501), - [aux_sym_cmd_identifier_token36] = ACTIONS(1501), - [aux_sym_cmd_identifier_token37] = ACTIONS(1501), - [aux_sym_cmd_identifier_token38] = ACTIONS(1499), - [aux_sym_cmd_identifier_token39] = ACTIONS(1501), - [aux_sym_cmd_identifier_token40] = ACTIONS(1501), - [sym__newline] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_def] = ACTIONS(1499), - [anon_sym_export_DASHenv] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_module] = ACTIONS(1499), - [anon_sym_use] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_DOLLAR] = ACTIONS(1499), - [anon_sym_error] = ACTIONS(1499), - [anon_sym_DASH2] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_loop] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_match] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_source] = ACTIONS(1499), - [anon_sym_source_DASHenv] = ACTIONS(1499), - [anon_sym_register] = ACTIONS(1499), - [anon_sym_hide] = ACTIONS(1499), - [anon_sym_hide_DASHenv] = ACTIONS(1499), - [anon_sym_overlay] = ACTIONS(1499), - [anon_sym_where] = ACTIONS(1501), - [aux_sym_expr_unary_token1] = ACTIONS(1501), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1501), - [anon_sym_DOT_DOT_LT] = ACTIONS(1501), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [aux_sym__val_number_decimal_token1] = ACTIONS(1499), - [aux_sym__val_number_decimal_token2] = ACTIONS(1501), - [aux_sym__val_number_decimal_token3] = ACTIONS(1501), - [aux_sym__val_number_decimal_token4] = ACTIONS(1501), - [aux_sym__val_number_token1] = ACTIONS(1501), - [aux_sym__val_number_token2] = ACTIONS(1501), - [aux_sym__val_number_token3] = ACTIONS(1501), - [aux_sym__val_number_token4] = ACTIONS(1499), - [aux_sym__val_number_token5] = ACTIONS(1499), - [aux_sym__val_number_token6] = ACTIONS(1499), - [anon_sym_0b] = ACTIONS(1499), - [anon_sym_0o] = ACTIONS(1499), - [anon_sym_0x] = ACTIONS(1499), - [sym_val_date] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), - [aux_sym_env_var_token1] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1501), - [aux_sym_command_token1] = ACTIONS(1501), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1501), + [300] = { + [sym_comment] = STATE(300), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_alias] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_let_DASHenv] = ACTIONS(1529), + [anon_sym_mut] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [aux_sym_cmd_identifier_token1] = ACTIONS(1529), + [aux_sym_cmd_identifier_token2] = ACTIONS(1531), + [aux_sym_cmd_identifier_token3] = ACTIONS(1531), + [aux_sym_cmd_identifier_token4] = ACTIONS(1531), + [aux_sym_cmd_identifier_token5] = ACTIONS(1531), + [aux_sym_cmd_identifier_token6] = ACTIONS(1531), + [aux_sym_cmd_identifier_token7] = ACTIONS(1531), + [aux_sym_cmd_identifier_token8] = ACTIONS(1529), + [aux_sym_cmd_identifier_token9] = ACTIONS(1529), + [aux_sym_cmd_identifier_token10] = ACTIONS(1531), + [aux_sym_cmd_identifier_token11] = ACTIONS(1531), + [aux_sym_cmd_identifier_token12] = ACTIONS(1529), + [aux_sym_cmd_identifier_token13] = ACTIONS(1529), + [aux_sym_cmd_identifier_token14] = ACTIONS(1529), + [aux_sym_cmd_identifier_token15] = ACTIONS(1529), + [aux_sym_cmd_identifier_token16] = ACTIONS(1531), + [aux_sym_cmd_identifier_token17] = ACTIONS(1531), + [aux_sym_cmd_identifier_token18] = ACTIONS(1529), + [aux_sym_cmd_identifier_token19] = ACTIONS(1531), + [aux_sym_cmd_identifier_token20] = ACTIONS(1531), + [aux_sym_cmd_identifier_token21] = ACTIONS(1531), + [aux_sym_cmd_identifier_token22] = ACTIONS(1531), + [aux_sym_cmd_identifier_token23] = ACTIONS(1531), + [aux_sym_cmd_identifier_token24] = ACTIONS(1531), + [aux_sym_cmd_identifier_token25] = ACTIONS(1531), + [aux_sym_cmd_identifier_token26] = ACTIONS(1531), + [aux_sym_cmd_identifier_token27] = ACTIONS(1531), + [aux_sym_cmd_identifier_token28] = ACTIONS(1531), + [aux_sym_cmd_identifier_token29] = ACTIONS(1531), + [aux_sym_cmd_identifier_token30] = ACTIONS(1531), + [aux_sym_cmd_identifier_token31] = ACTIONS(1531), + [aux_sym_cmd_identifier_token32] = ACTIONS(1529), + [aux_sym_cmd_identifier_token33] = ACTIONS(1531), + [aux_sym_cmd_identifier_token34] = ACTIONS(1529), + [aux_sym_cmd_identifier_token35] = ACTIONS(1531), + [aux_sym_cmd_identifier_token36] = ACTIONS(1531), + [aux_sym_cmd_identifier_token37] = ACTIONS(1531), + [aux_sym_cmd_identifier_token38] = ACTIONS(1529), + [aux_sym_cmd_identifier_token39] = ACTIONS(1531), + [aux_sym_cmd_identifier_token40] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_export_DASHenv] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [anon_sym_error] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_source] = ACTIONS(1529), + [anon_sym_source_DASHenv] = ACTIONS(1529), + [anon_sym_register] = ACTIONS(1529), + [anon_sym_hide] = ACTIONS(1529), + [anon_sym_hide_DASHenv] = ACTIONS(1529), + [anon_sym_overlay] = ACTIONS(1529), + [anon_sym_where] = ACTIONS(1531), + [aux_sym_expr_unary_token1] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT] = ACTIONS(1531), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1531), + [aux_sym__val_number_decimal_token3] = ACTIONS(1531), + [aux_sym__val_number_decimal_token4] = ACTIONS(1531), + [aux_sym__val_number_token1] = ACTIONS(1531), + [aux_sym__val_number_token2] = ACTIONS(1531), + [aux_sym__val_number_token3] = ACTIONS(1531), + [aux_sym__val_number_token4] = ACTIONS(1529), + [aux_sym__val_number_token5] = ACTIONS(1529), + [aux_sym__val_number_token6] = ACTIONS(1529), + [anon_sym_0b] = ACTIONS(1529), + [anon_sym_0o] = ACTIONS(1529), + [anon_sym_0x] = ACTIONS(1529), + [sym_val_date] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym__str_single_quotes] = ACTIONS(1531), + [sym__str_back_ticks] = ACTIONS(1531), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1531), + [aux_sym_env_var_token1] = ACTIONS(1529), + [anon_sym_CARET] = ACTIONS(1531), + [aux_sym_command_token1] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1531), }, - [317] = { - [sym_cmd_identifier] = STATE(4892), - [sym__expression_parenthesized] = STATE(4174), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5366), - [sym_comment] = STATE(317), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [301] = { + [sym_cmd_identifier] = STATE(4436), + [sym__expression_parenthesized] = STATE(3714), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(862), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4807), + [sym_comment] = STATE(301), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1152), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -120817,328 +113799,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1533), + [aux_sym__val_number_decimal_token2] = ACTIONS(1535), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1539), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [318] = { - [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(1548), - [anon_sym_alias] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_let_DASHenv] = ACTIONS(1548), - [anon_sym_mut] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [aux_sym_cmd_identifier_token1] = ACTIONS(1548), - [aux_sym_cmd_identifier_token2] = ACTIONS(1550), - [aux_sym_cmd_identifier_token3] = ACTIONS(1550), - [aux_sym_cmd_identifier_token4] = ACTIONS(1550), - [aux_sym_cmd_identifier_token5] = ACTIONS(1550), - [aux_sym_cmd_identifier_token6] = ACTIONS(1550), - [aux_sym_cmd_identifier_token7] = ACTIONS(1550), - [aux_sym_cmd_identifier_token8] = ACTIONS(1548), - [aux_sym_cmd_identifier_token9] = ACTIONS(1548), - [aux_sym_cmd_identifier_token10] = ACTIONS(1550), - [aux_sym_cmd_identifier_token11] = ACTIONS(1550), - [aux_sym_cmd_identifier_token12] = ACTIONS(1548), - [aux_sym_cmd_identifier_token13] = ACTIONS(1548), - [aux_sym_cmd_identifier_token14] = ACTIONS(1548), - [aux_sym_cmd_identifier_token15] = ACTIONS(1548), - [aux_sym_cmd_identifier_token16] = ACTIONS(1550), - [aux_sym_cmd_identifier_token17] = ACTIONS(1550), - [aux_sym_cmd_identifier_token18] = ACTIONS(1548), - [aux_sym_cmd_identifier_token19] = ACTIONS(1550), - [aux_sym_cmd_identifier_token20] = ACTIONS(1550), - [aux_sym_cmd_identifier_token21] = ACTIONS(1550), - [aux_sym_cmd_identifier_token22] = ACTIONS(1550), - [aux_sym_cmd_identifier_token23] = ACTIONS(1550), - [aux_sym_cmd_identifier_token24] = ACTIONS(1550), - [aux_sym_cmd_identifier_token25] = ACTIONS(1550), - [aux_sym_cmd_identifier_token26] = ACTIONS(1550), - [aux_sym_cmd_identifier_token27] = ACTIONS(1550), - [aux_sym_cmd_identifier_token28] = ACTIONS(1550), - [aux_sym_cmd_identifier_token29] = ACTIONS(1550), - [aux_sym_cmd_identifier_token30] = ACTIONS(1550), - [aux_sym_cmd_identifier_token31] = ACTIONS(1550), - [aux_sym_cmd_identifier_token32] = ACTIONS(1548), - [aux_sym_cmd_identifier_token33] = ACTIONS(1550), - [aux_sym_cmd_identifier_token34] = ACTIONS(1548), - [aux_sym_cmd_identifier_token35] = ACTIONS(1550), - [aux_sym_cmd_identifier_token36] = ACTIONS(1550), - [aux_sym_cmd_identifier_token37] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1548), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_def] = ACTIONS(1548), - [anon_sym_export_DASHenv] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_module] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1548), - [anon_sym_error] = ACTIONS(1548), - [anon_sym_DASH2] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_source] = ACTIONS(1548), - [anon_sym_source_DASHenv] = ACTIONS(1548), - [anon_sym_register] = ACTIONS(1548), - [anon_sym_hide] = ACTIONS(1548), - [anon_sym_hide_DASHenv] = ACTIONS(1548), - [anon_sym_overlay] = ACTIONS(1548), - [anon_sym_where] = ACTIONS(1550), - [aux_sym_expr_unary_token1] = ACTIONS(1550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [aux_sym__val_number_decimal_token1] = ACTIONS(1548), - [aux_sym__val_number_decimal_token2] = ACTIONS(1550), - [aux_sym__val_number_decimal_token3] = ACTIONS(1550), - [aux_sym__val_number_decimal_token4] = ACTIONS(1550), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [aux_sym__val_number_token4] = ACTIONS(1548), - [aux_sym__val_number_token5] = ACTIONS(1548), - [aux_sym__val_number_token6] = ACTIONS(1548), - [anon_sym_0b] = ACTIONS(1548), - [anon_sym_0o] = ACTIONS(1548), - [anon_sym_0x] = ACTIONS(1548), - [sym_val_date] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [aux_sym_env_var_token1] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1550), - [aux_sym_command_token1] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1550), - }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1583), - [anon_sym_alias] = ACTIONS(1583), - [anon_sym_let] = ACTIONS(1583), - [anon_sym_let_DASHenv] = ACTIONS(1583), - [anon_sym_mut] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [aux_sym_cmd_identifier_token1] = ACTIONS(1583), - [aux_sym_cmd_identifier_token2] = ACTIONS(1585), - [aux_sym_cmd_identifier_token3] = ACTIONS(1585), - [aux_sym_cmd_identifier_token4] = ACTIONS(1585), - [aux_sym_cmd_identifier_token5] = ACTIONS(1585), - [aux_sym_cmd_identifier_token6] = ACTIONS(1585), - [aux_sym_cmd_identifier_token7] = ACTIONS(1585), - [aux_sym_cmd_identifier_token8] = ACTIONS(1583), - [aux_sym_cmd_identifier_token9] = ACTIONS(1583), - [aux_sym_cmd_identifier_token10] = ACTIONS(1585), - [aux_sym_cmd_identifier_token11] = ACTIONS(1585), - [aux_sym_cmd_identifier_token12] = ACTIONS(1583), - [aux_sym_cmd_identifier_token13] = ACTIONS(1583), - [aux_sym_cmd_identifier_token14] = ACTIONS(1583), - [aux_sym_cmd_identifier_token15] = ACTIONS(1583), - [aux_sym_cmd_identifier_token16] = ACTIONS(1585), - [aux_sym_cmd_identifier_token17] = ACTIONS(1585), - [aux_sym_cmd_identifier_token18] = ACTIONS(1583), - [aux_sym_cmd_identifier_token19] = ACTIONS(1585), - [aux_sym_cmd_identifier_token20] = ACTIONS(1585), - [aux_sym_cmd_identifier_token21] = ACTIONS(1585), - [aux_sym_cmd_identifier_token22] = ACTIONS(1585), - [aux_sym_cmd_identifier_token23] = ACTIONS(1585), - [aux_sym_cmd_identifier_token24] = ACTIONS(1585), - [aux_sym_cmd_identifier_token25] = ACTIONS(1585), - [aux_sym_cmd_identifier_token26] = ACTIONS(1585), - [aux_sym_cmd_identifier_token27] = ACTIONS(1585), - [aux_sym_cmd_identifier_token28] = ACTIONS(1585), - [aux_sym_cmd_identifier_token29] = ACTIONS(1585), - [aux_sym_cmd_identifier_token30] = ACTIONS(1585), - [aux_sym_cmd_identifier_token31] = ACTIONS(1585), - [aux_sym_cmd_identifier_token32] = ACTIONS(1583), - [aux_sym_cmd_identifier_token33] = ACTIONS(1585), - [aux_sym_cmd_identifier_token34] = ACTIONS(1583), - [aux_sym_cmd_identifier_token35] = ACTIONS(1585), - [aux_sym_cmd_identifier_token36] = ACTIONS(1585), - [aux_sym_cmd_identifier_token37] = ACTIONS(1585), - [aux_sym_cmd_identifier_token38] = ACTIONS(1583), - [aux_sym_cmd_identifier_token39] = ACTIONS(1585), - [aux_sym_cmd_identifier_token40] = ACTIONS(1585), - [sym__newline] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_def] = ACTIONS(1583), - [anon_sym_export_DASHenv] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym_module] = ACTIONS(1583), - [anon_sym_use] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1583), - [anon_sym_error] = ACTIONS(1583), - [anon_sym_DASH2] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_source] = ACTIONS(1583), - [anon_sym_source_DASHenv] = ACTIONS(1583), - [anon_sym_register] = ACTIONS(1583), - [anon_sym_hide] = ACTIONS(1583), - [anon_sym_hide_DASHenv] = ACTIONS(1583), - [anon_sym_overlay] = ACTIONS(1583), - [anon_sym_where] = ACTIONS(1585), - [aux_sym_expr_unary_token1] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT] = ACTIONS(1585), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [aux_sym__val_number_decimal_token1] = ACTIONS(1583), - [aux_sym__val_number_decimal_token2] = ACTIONS(1585), - [aux_sym__val_number_decimal_token3] = ACTIONS(1585), - [aux_sym__val_number_decimal_token4] = ACTIONS(1585), - [aux_sym__val_number_token1] = ACTIONS(1585), - [aux_sym__val_number_token2] = ACTIONS(1585), - [aux_sym__val_number_token3] = ACTIONS(1585), - [aux_sym__val_number_token4] = ACTIONS(1583), - [aux_sym__val_number_token5] = ACTIONS(1583), - [aux_sym__val_number_token6] = ACTIONS(1583), - [anon_sym_0b] = ACTIONS(1583), - [anon_sym_0o] = ACTIONS(1583), - [anon_sym_0x] = ACTIONS(1583), - [sym_val_date] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [sym__str_single_quotes] = ACTIONS(1585), - [sym__str_back_ticks] = ACTIONS(1585), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1585), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1585), - [aux_sym_env_var_token1] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1585), - [aux_sym_command_token1] = ACTIONS(1585), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1585), + [sym_raw_string_begin] = ACTIONS(253), }, - [320] = { - [sym_cmd_identifier] = STATE(4892), - [sym__expression_parenthesized] = STATE(4174), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(869), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5366), - [sym_comment] = STATE(320), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [302] = { + [sym_cmd_identifier] = STATE(4344), + [sym__expression] = STATE(3686), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(817), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4675), + [sym_comment] = STATE(302), + [aux_sym_pipe_element_repeat2] = STATE(1149), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -121147,218 +113909,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [321] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if] = STATE(5223), - [sym_block] = STATE(5224), - [sym__expression] = STATE(5224), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1256), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5224), - [sym_comment] = STATE(321), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [322] = { - [sym_cmd_identifier] = STATE(4846), - [sym__expression] = STATE(4087), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(838), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5178), - [sym_comment] = STATE(322), - [aux_sym_pipe_element_repeat2] = STATE(1172), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [303] = { + [sym_cmd_identifier] = STATE(4344), + [sym__expression] = STATE(3686), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(812), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4675), + [sym_comment] = STATE(303), + [aux_sym_pipe_element_repeat2] = STATE(1149), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -121367,219 +114019,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1064), - [aux_sym__val_number_decimal_token3] = ACTIONS(1066), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [323] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if] = STATE(5223), - [sym_block] = STATE(5224), - [sym__expression] = STATE(5224), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1229), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5224), - [sym_comment] = STATE(323), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1524), - [aux_sym__val_number_decimal_token2] = ACTIONS(1526), - [aux_sym__val_number_decimal_token3] = ACTIONS(1528), - [aux_sym__val_number_decimal_token4] = ACTIONS(1530), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [304] = { + [sym_comment] = STATE(304), + [anon_sym_export] = ACTIONS(1487), + [anon_sym_alias] = ACTIONS(1487), + [anon_sym_let] = ACTIONS(1487), + [anon_sym_let_DASHenv] = ACTIONS(1487), + [anon_sym_mut] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1487), + [aux_sym_cmd_identifier_token1] = ACTIONS(1487), + [aux_sym_cmd_identifier_token2] = ACTIONS(1489), + [aux_sym_cmd_identifier_token3] = ACTIONS(1489), + [aux_sym_cmd_identifier_token4] = ACTIONS(1489), + [aux_sym_cmd_identifier_token5] = ACTIONS(1489), + [aux_sym_cmd_identifier_token6] = ACTIONS(1489), + [aux_sym_cmd_identifier_token7] = ACTIONS(1489), + [aux_sym_cmd_identifier_token8] = ACTIONS(1487), + [aux_sym_cmd_identifier_token9] = ACTIONS(1487), + [aux_sym_cmd_identifier_token10] = ACTIONS(1489), + [aux_sym_cmd_identifier_token11] = ACTIONS(1489), + [aux_sym_cmd_identifier_token12] = ACTIONS(1487), + [aux_sym_cmd_identifier_token13] = ACTIONS(1487), + [aux_sym_cmd_identifier_token14] = ACTIONS(1487), + [aux_sym_cmd_identifier_token15] = ACTIONS(1487), + [aux_sym_cmd_identifier_token16] = ACTIONS(1489), + [aux_sym_cmd_identifier_token17] = ACTIONS(1489), + [aux_sym_cmd_identifier_token18] = ACTIONS(1487), + [aux_sym_cmd_identifier_token19] = ACTIONS(1489), + [aux_sym_cmd_identifier_token20] = ACTIONS(1489), + [aux_sym_cmd_identifier_token21] = ACTIONS(1489), + [aux_sym_cmd_identifier_token22] = ACTIONS(1489), + [aux_sym_cmd_identifier_token23] = ACTIONS(1489), + [aux_sym_cmd_identifier_token24] = ACTIONS(1489), + [aux_sym_cmd_identifier_token25] = ACTIONS(1489), + [aux_sym_cmd_identifier_token26] = ACTIONS(1489), + [aux_sym_cmd_identifier_token27] = ACTIONS(1489), + [aux_sym_cmd_identifier_token28] = ACTIONS(1489), + [aux_sym_cmd_identifier_token29] = ACTIONS(1489), + [aux_sym_cmd_identifier_token30] = ACTIONS(1489), + [aux_sym_cmd_identifier_token31] = ACTIONS(1489), + [aux_sym_cmd_identifier_token32] = ACTIONS(1487), + [aux_sym_cmd_identifier_token33] = ACTIONS(1489), + [aux_sym_cmd_identifier_token34] = ACTIONS(1487), + [aux_sym_cmd_identifier_token35] = ACTIONS(1489), + [aux_sym_cmd_identifier_token36] = ACTIONS(1489), + [aux_sym_cmd_identifier_token37] = ACTIONS(1489), + [aux_sym_cmd_identifier_token38] = ACTIONS(1487), + [aux_sym_cmd_identifier_token39] = ACTIONS(1489), + [aux_sym_cmd_identifier_token40] = ACTIONS(1489), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_def] = ACTIONS(1487), + [anon_sym_export_DASHenv] = ACTIONS(1487), + [anon_sym_extern] = ACTIONS(1487), + [anon_sym_module] = ACTIONS(1487), + [anon_sym_use] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(1487), + [anon_sym_error] = ACTIONS(1487), + [anon_sym_DASH2] = ACTIONS(1487), + [anon_sym_break] = ACTIONS(1487), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_for] = ACTIONS(1487), + [anon_sym_loop] = ACTIONS(1487), + [anon_sym_while] = ACTIONS(1487), + [anon_sym_do] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1487), + [anon_sym_match] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_return] = ACTIONS(1487), + [anon_sym_source] = ACTIONS(1487), + [anon_sym_source_DASHenv] = ACTIONS(1487), + [anon_sym_register] = ACTIONS(1487), + [anon_sym_hide] = ACTIONS(1487), + [anon_sym_hide_DASHenv] = ACTIONS(1487), + [anon_sym_overlay] = ACTIONS(1487), + [anon_sym_where] = ACTIONS(1489), + [aux_sym_expr_unary_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1487), + [anon_sym_false] = ACTIONS(1487), + [aux_sym__val_number_decimal_token1] = ACTIONS(1487), + [aux_sym__val_number_decimal_token2] = ACTIONS(1489), + [aux_sym__val_number_decimal_token3] = ACTIONS(1489), + [aux_sym__val_number_decimal_token4] = ACTIONS(1489), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [aux_sym__val_number_token4] = ACTIONS(1487), + [aux_sym__val_number_token5] = ACTIONS(1487), + [aux_sym__val_number_token6] = ACTIONS(1487), + [anon_sym_0b] = ACTIONS(1487), + [anon_sym_0o] = ACTIONS(1487), + [anon_sym_0x] = ACTIONS(1487), + [sym_val_date] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [aux_sym_env_var_token1] = ACTIONS(1487), + [anon_sym_CARET] = ACTIONS(1489), + [aux_sym_command_token1] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1489), }, - [324] = { - [sym_cmd_identifier] = STATE(4846), - [sym__expression] = STATE(4087), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(869), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5178), - [sym_comment] = STATE(324), - [aux_sym_pipe_element_repeat2] = STATE(1172), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [305] = { + [sym_comment] = STATE(305), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1516), + [aux_sym_cmd_identifier_token3] = ACTIONS(1516), + [aux_sym_cmd_identifier_token4] = ACTIONS(1516), + [aux_sym_cmd_identifier_token5] = ACTIONS(1516), + [aux_sym_cmd_identifier_token6] = ACTIONS(1516), + [aux_sym_cmd_identifier_token7] = ACTIONS(1516), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1516), + [aux_sym_cmd_identifier_token11] = ACTIONS(1516), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1516), + [aux_sym_cmd_identifier_token17] = ACTIONS(1516), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1516), + [aux_sym_cmd_identifier_token20] = ACTIONS(1516), + [aux_sym_cmd_identifier_token21] = ACTIONS(1516), + [aux_sym_cmd_identifier_token22] = ACTIONS(1516), + [aux_sym_cmd_identifier_token23] = ACTIONS(1516), + [aux_sym_cmd_identifier_token24] = ACTIONS(1516), + [aux_sym_cmd_identifier_token25] = ACTIONS(1516), + [aux_sym_cmd_identifier_token26] = ACTIONS(1516), + [aux_sym_cmd_identifier_token27] = ACTIONS(1516), + [aux_sym_cmd_identifier_token28] = ACTIONS(1516), + [aux_sym_cmd_identifier_token29] = ACTIONS(1516), + [aux_sym_cmd_identifier_token30] = ACTIONS(1516), + [aux_sym_cmd_identifier_token31] = ACTIONS(1516), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1516), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1516), + [aux_sym_cmd_identifier_token36] = ACTIONS(1516), + [aux_sym_cmd_identifier_token37] = ACTIONS(1516), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1516), + [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_where] = ACTIONS(1516), + [aux_sym_expr_unary_token1] = ACTIONS(1516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1516), + [aux_sym__val_number_decimal_token3] = ACTIONS(1516), + [aux_sym__val_number_decimal_token4] = ACTIONS(1516), + [aux_sym__val_number_token1] = ACTIONS(1516), + [aux_sym__val_number_token2] = ACTIONS(1516), + [aux_sym__val_number_token3] = ACTIONS(1516), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym__str_single_quotes] = ACTIONS(1516), + [sym__str_back_ticks] = ACTIONS(1516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), + [aux_sym_env_var_token1] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1516), + [aux_sym_command_token1] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1516), + }, + [306] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if] = STATE(4758), + [sym_block] = STATE(4760), + [sym__expression] = STATE(4760), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1182), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4760), + [sym_comment] = STATE(306), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -121587,64 +114350,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1593), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1541), + [aux_sym__val_number_decimal_token2] = ACTIONS(1543), + [aux_sym__val_number_decimal_token3] = ACTIONS(1545), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [325] = { - [sym_cmd_identifier] = STATE(5044), - [sym_ctrl_if] = STATE(5321), - [sym_block] = STATE(5358), - [sym__expression] = STATE(5358), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4216), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1209), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_command] = STATE(5358), - [sym_comment] = STATE(325), + [307] = { + [sym_cmd_identifier] = STATE(4394), + [sym_ctrl_if] = STATE(4961), + [sym_block] = STATE(4962), + [sym__expression] = STATE(4962), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3758), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1204), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_command] = STATE(4962), + [sym_comment] = STATE(307), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -121687,10 +114449,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_if] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1549), [anon_sym_DOT_DOT] = ACTIONS(65), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), @@ -121698,10 +114460,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(87), [anon_sym_true] = ACTIONS(89), [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(1599), - [aux_sym__val_number_decimal_token2] = ACTIONS(1601), - [aux_sym__val_number_decimal_token3] = ACTIONS(1603), - [aux_sym__val_number_decimal_token4] = ACTIONS(1605), + [aux_sym__val_number_decimal_token1] = ACTIONS(1551), + [aux_sym__val_number_decimal_token2] = ACTIONS(1553), + [aux_sym__val_number_decimal_token3] = ACTIONS(1555), + [aux_sym__val_number_decimal_token4] = ACTIONS(1557), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -121722,259 +114484,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [326] = { - [sym_cmd_identifier] = STATE(4846), - [sym__expression] = STATE(4087), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4218), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(829), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5178), - [sym_comment] = STATE(326), - [aux_sym_pipe_element_repeat2] = STATE(1172), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(423), - [aux_sym__val_number_decimal_token2] = ACTIONS(425), - [aux_sym__val_number_decimal_token3] = ACTIONS(427), - [aux_sym__val_number_decimal_token4] = ACTIONS(429), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [327] = { - [sym_cmd_identifier] = STATE(4892), - [sym__expression_parenthesized] = STATE(4174), - [sym_expr_unary] = STATE(2441), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2441), - [sym__expr_binary_expression_parenthesized] = STATE(4088), - [sym_expr_parenthesized] = STATE(2041), - [sym_val_range] = STATE(2441), - [sym__value] = STATE(2441), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(825), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_env_var] = STATE(7562), - [sym__command_parenthesized] = STATE(5366), - [sym_comment] = STATE(327), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(475), - [aux_sym__val_number_decimal_token2] = ACTIONS(477), - [aux_sym__val_number_decimal_token3] = ACTIONS(479), - [aux_sym__val_number_decimal_token4] = ACTIONS(481), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(483), - [aux_sym_command_token1] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [328] = { - [sym_cmd_identifier] = STATE(5044), - [sym__expression] = STATE(4177), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4209), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(833), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_env_var] = STATE(8133), - [sym_command] = STATE(5367), - [sym_comment] = STATE(328), - [aux_sym_pipe_element_repeat2] = STATE(1172), + [308] = { + [sym_cmd_identifier] = STATE(4394), + [sym__expression] = STATE(3732), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3757), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4884), + [sym_comment] = STATE(308), + [aux_sym_pipe_element_repeat2] = STATE(1149), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -122017,7 +114559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), [anon_sym_DOT_DOT] = ACTIONS(65), @@ -122052,195 +114594,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [329] = { - [sym_comment] = STATE(329), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_alias] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_let_DASHenv] = ACTIONS(1607), - [anon_sym_mut] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [aux_sym_cmd_identifier_token1] = ACTIONS(1607), - [aux_sym_cmd_identifier_token2] = ACTIONS(1609), - [aux_sym_cmd_identifier_token3] = ACTIONS(1609), - [aux_sym_cmd_identifier_token4] = ACTIONS(1609), - [aux_sym_cmd_identifier_token5] = ACTIONS(1609), - [aux_sym_cmd_identifier_token6] = ACTIONS(1609), - [aux_sym_cmd_identifier_token7] = ACTIONS(1609), - [aux_sym_cmd_identifier_token8] = ACTIONS(1607), - [aux_sym_cmd_identifier_token9] = ACTIONS(1607), - [aux_sym_cmd_identifier_token10] = ACTIONS(1609), - [aux_sym_cmd_identifier_token11] = ACTIONS(1609), - [aux_sym_cmd_identifier_token12] = ACTIONS(1607), - [aux_sym_cmd_identifier_token13] = ACTIONS(1607), - [aux_sym_cmd_identifier_token14] = ACTIONS(1607), - [aux_sym_cmd_identifier_token15] = ACTIONS(1607), - [aux_sym_cmd_identifier_token16] = ACTIONS(1609), - [aux_sym_cmd_identifier_token17] = ACTIONS(1609), - [aux_sym_cmd_identifier_token18] = ACTIONS(1607), - [aux_sym_cmd_identifier_token19] = ACTIONS(1609), - [aux_sym_cmd_identifier_token20] = ACTIONS(1609), - [aux_sym_cmd_identifier_token21] = ACTIONS(1609), - [aux_sym_cmd_identifier_token22] = ACTIONS(1609), - [aux_sym_cmd_identifier_token23] = ACTIONS(1609), - [aux_sym_cmd_identifier_token24] = ACTIONS(1609), - [aux_sym_cmd_identifier_token25] = ACTIONS(1609), - [aux_sym_cmd_identifier_token26] = ACTIONS(1609), - [aux_sym_cmd_identifier_token27] = ACTIONS(1609), - [aux_sym_cmd_identifier_token28] = ACTIONS(1609), - [aux_sym_cmd_identifier_token29] = ACTIONS(1609), - [aux_sym_cmd_identifier_token30] = ACTIONS(1609), - [aux_sym_cmd_identifier_token31] = ACTIONS(1609), - [aux_sym_cmd_identifier_token32] = ACTIONS(1607), - [aux_sym_cmd_identifier_token33] = ACTIONS(1609), - [aux_sym_cmd_identifier_token34] = ACTIONS(1607), - [aux_sym_cmd_identifier_token35] = ACTIONS(1609), - [aux_sym_cmd_identifier_token36] = ACTIONS(1609), - [aux_sym_cmd_identifier_token37] = ACTIONS(1609), - [aux_sym_cmd_identifier_token38] = ACTIONS(1607), - [aux_sym_cmd_identifier_token39] = ACTIONS(1609), - [aux_sym_cmd_identifier_token40] = ACTIONS(1609), - [sym__newline] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_export_DASHenv] = ACTIONS(1607), - [anon_sym_extern] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_use] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_DOLLAR] = ACTIONS(1607), - [anon_sym_error] = ACTIONS(1607), - [anon_sym_DASH2] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_loop] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_DOT_DOT] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_source] = ACTIONS(1607), - [anon_sym_source_DASHenv] = ACTIONS(1607), - [anon_sym_register] = ACTIONS(1607), - [anon_sym_hide] = ACTIONS(1607), - [anon_sym_hide_DASHenv] = ACTIONS(1607), - [anon_sym_overlay] = ACTIONS(1607), - [anon_sym_where] = ACTIONS(1609), - [aux_sym_expr_unary_token1] = ACTIONS(1609), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1609), - [anon_sym_DOT_DOT_LT] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [aux_sym__val_number_decimal_token1] = ACTIONS(1607), - [aux_sym__val_number_decimal_token2] = ACTIONS(1609), - [aux_sym__val_number_decimal_token3] = ACTIONS(1609), - [aux_sym__val_number_decimal_token4] = ACTIONS(1609), - [aux_sym__val_number_token1] = ACTIONS(1609), - [aux_sym__val_number_token2] = ACTIONS(1609), - [aux_sym__val_number_token3] = ACTIONS(1609), - [aux_sym__val_number_token4] = ACTIONS(1607), - [aux_sym__val_number_token5] = ACTIONS(1607), - [aux_sym__val_number_token6] = ACTIONS(1607), - [anon_sym_0b] = ACTIONS(1607), - [anon_sym_0o] = ACTIONS(1607), - [anon_sym_0x] = ACTIONS(1607), - [sym_val_date] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym__str_single_quotes] = ACTIONS(1609), - [sym__str_back_ticks] = ACTIONS(1609), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1609), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1609), - [aux_sym_env_var_token1] = ACTIONS(1607), - [anon_sym_CARET] = ACTIONS(1609), - [aux_sym_command_token1] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1609), + [309] = { + [sym_cmd_identifier] = STATE(4436), + [sym__expression_parenthesized] = STATE(3714), + [sym_expr_unary] = STATE(2316), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2316), + [sym__expr_binary_expression_parenthesized] = STATE(3692), + [sym_expr_parenthesized] = STATE(2008), + [sym_val_range] = STATE(2316), + [sym__value] = STATE(2316), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7060), + [sym__command_parenthesized] = STATE(4807), + [sym_comment] = STATE(309), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1152), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [330] = { - [sym_cmd_identifier] = STATE(4846), - [sym_ctrl_if] = STATE(5223), - [sym_block] = STATE(5224), - [sym__expression] = STATE(5224), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1225), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_command] = STATE(5224), - [sym_comment] = STATE(330), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(367), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(367), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(369), - [aux_sym_cmd_identifier_token37] = ACTIONS(369), - [aux_sym_cmd_identifier_token38] = ACTIONS(367), - [aux_sym_cmd_identifier_token39] = ACTIONS(369), - [aux_sym_cmd_identifier_token40] = ACTIONS(369), + [310] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if] = STATE(4758), + [sym_block] = STATE(4760), + [sym__expression] = STATE(4760), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1194), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4760), + [sym_comment] = STATE(310), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_if] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -122248,362 +114790,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1611), - [aux_sym__val_number_decimal_token2] = ACTIONS(1613), - [aux_sym__val_number_decimal_token3] = ACTIONS(1615), - [aux_sym__val_number_decimal_token4] = ACTIONS(1617), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(433), - [aux_sym__val_number_token5] = ACTIONS(433), - [aux_sym__val_number_token6] = ACTIONS(433), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [331] = { - [sym__expr_parenthesized_immediate] = STATE(546), - [sym__immediate_decimal] = STATE(438), - [sym_val_variable] = STATE(546), - [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1579), - [aux_sym_cmd_identifier_token3] = ACTIONS(1579), - [aux_sym_cmd_identifier_token4] = ACTIONS(1579), - [aux_sym_cmd_identifier_token5] = ACTIONS(1579), - [aux_sym_cmd_identifier_token6] = ACTIONS(1579), - [aux_sym_cmd_identifier_token7] = ACTIONS(1579), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1579), - [aux_sym_cmd_identifier_token11] = ACTIONS(1579), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1579), - [aux_sym_cmd_identifier_token17] = ACTIONS(1579), - [aux_sym_cmd_identifier_token18] = ACTIONS(1579), - [aux_sym_cmd_identifier_token19] = ACTIONS(1579), - [aux_sym_cmd_identifier_token20] = ACTIONS(1579), - [aux_sym_cmd_identifier_token21] = ACTIONS(1579), - [aux_sym_cmd_identifier_token22] = ACTIONS(1579), - [aux_sym_cmd_identifier_token23] = ACTIONS(1579), - [aux_sym_cmd_identifier_token24] = ACTIONS(1579), - [aux_sym_cmd_identifier_token25] = ACTIONS(1579), - [aux_sym_cmd_identifier_token26] = ACTIONS(1579), - [aux_sym_cmd_identifier_token27] = ACTIONS(1579), - [aux_sym_cmd_identifier_token28] = ACTIONS(1579), - [aux_sym_cmd_identifier_token29] = ACTIONS(1579), - [aux_sym_cmd_identifier_token30] = ACTIONS(1579), - [aux_sym_cmd_identifier_token31] = ACTIONS(1579), - [aux_sym_cmd_identifier_token32] = ACTIONS(1579), - [aux_sym_cmd_identifier_token33] = ACTIONS(1579), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1579), - [aux_sym_cmd_identifier_token36] = ACTIONS(1579), - [aux_sym_cmd_identifier_token37] = ACTIONS(1579), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1579), - [aux_sym_cmd_identifier_token40] = ACTIONS(1579), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1619), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), - [anon_sym_DOT] = ACTIONS(1623), - [aux_sym__immediate_decimal_token1] = ACTIONS(1625), - [aux_sym__immediate_decimal_token3] = ACTIONS(1627), - [aux_sym__immediate_decimal_token4] = ACTIONS(1629), - [aux_sym__immediate_decimal_token5] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1565), - [aux_sym__val_number_token5] = ACTIONS(1565), - [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [311] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if] = STATE(4758), + [sym_block] = STATE(4760), + [sym__expression] = STATE(4760), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1232), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4760), + [sym_comment] = STATE(311), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1474), + [aux_sym__val_number_decimal_token2] = ACTIONS(1476), + [aux_sym__val_number_decimal_token3] = ACTIONS(1478), + [aux_sym__val_number_decimal_token4] = ACTIONS(1480), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1579), + [sym_raw_string_begin] = ACTIONS(253), }, - [332] = { - [sym__expr_parenthesized_immediate] = STATE(455), - [sym__immediate_decimal] = STATE(456), - [sym_val_variable] = STATE(455), - [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1633), - [aux_sym_cmd_identifier_token3] = ACTIONS(1633), - [aux_sym_cmd_identifier_token4] = ACTIONS(1633), - [aux_sym_cmd_identifier_token5] = ACTIONS(1633), - [aux_sym_cmd_identifier_token6] = ACTIONS(1633), - [aux_sym_cmd_identifier_token7] = ACTIONS(1633), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1633), - [aux_sym_cmd_identifier_token11] = ACTIONS(1633), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1633), - [aux_sym_cmd_identifier_token17] = ACTIONS(1633), - [aux_sym_cmd_identifier_token18] = ACTIONS(1633), - [aux_sym_cmd_identifier_token19] = ACTIONS(1633), - [aux_sym_cmd_identifier_token20] = ACTIONS(1633), - [aux_sym_cmd_identifier_token21] = ACTIONS(1633), - [aux_sym_cmd_identifier_token22] = ACTIONS(1633), - [aux_sym_cmd_identifier_token23] = ACTIONS(1633), - [aux_sym_cmd_identifier_token24] = ACTIONS(1633), - [aux_sym_cmd_identifier_token25] = ACTIONS(1633), - [aux_sym_cmd_identifier_token26] = ACTIONS(1633), - [aux_sym_cmd_identifier_token27] = ACTIONS(1633), - [aux_sym_cmd_identifier_token28] = ACTIONS(1633), - [aux_sym_cmd_identifier_token29] = ACTIONS(1633), - [aux_sym_cmd_identifier_token30] = ACTIONS(1633), - [aux_sym_cmd_identifier_token31] = ACTIONS(1633), - [aux_sym_cmd_identifier_token32] = ACTIONS(1633), - [aux_sym_cmd_identifier_token33] = ACTIONS(1633), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1633), - [aux_sym_cmd_identifier_token36] = ACTIONS(1633), - [aux_sym_cmd_identifier_token37] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT] = ACTIONS(1635), - [aux_sym__immediate_decimal_token1] = ACTIONS(1637), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1639), - [aux_sym__immediate_decimal_token5] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [sym__entry_separator] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1643), + [312] = { + [sym_comment] = STATE(312), + [anon_sym_export] = ACTIONS(1561), + [anon_sym_alias] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_let_DASHenv] = ACTIONS(1561), + [anon_sym_mut] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [aux_sym_cmd_identifier_token1] = ACTIONS(1561), + [aux_sym_cmd_identifier_token2] = ACTIONS(1563), + [aux_sym_cmd_identifier_token3] = ACTIONS(1563), + [aux_sym_cmd_identifier_token4] = ACTIONS(1563), + [aux_sym_cmd_identifier_token5] = ACTIONS(1563), + [aux_sym_cmd_identifier_token6] = ACTIONS(1563), + [aux_sym_cmd_identifier_token7] = ACTIONS(1563), + [aux_sym_cmd_identifier_token8] = ACTIONS(1561), + [aux_sym_cmd_identifier_token9] = ACTIONS(1561), + [aux_sym_cmd_identifier_token10] = ACTIONS(1563), + [aux_sym_cmd_identifier_token11] = ACTIONS(1563), + [aux_sym_cmd_identifier_token12] = ACTIONS(1561), + [aux_sym_cmd_identifier_token13] = ACTIONS(1561), + [aux_sym_cmd_identifier_token14] = ACTIONS(1561), + [aux_sym_cmd_identifier_token15] = ACTIONS(1561), + [aux_sym_cmd_identifier_token16] = ACTIONS(1563), + [aux_sym_cmd_identifier_token17] = ACTIONS(1563), + [aux_sym_cmd_identifier_token18] = ACTIONS(1561), + [aux_sym_cmd_identifier_token19] = ACTIONS(1563), + [aux_sym_cmd_identifier_token20] = ACTIONS(1563), + [aux_sym_cmd_identifier_token21] = ACTIONS(1563), + [aux_sym_cmd_identifier_token22] = ACTIONS(1563), + [aux_sym_cmd_identifier_token23] = ACTIONS(1563), + [aux_sym_cmd_identifier_token24] = ACTIONS(1563), + [aux_sym_cmd_identifier_token25] = ACTIONS(1563), + [aux_sym_cmd_identifier_token26] = ACTIONS(1563), + [aux_sym_cmd_identifier_token27] = ACTIONS(1563), + [aux_sym_cmd_identifier_token28] = ACTIONS(1563), + [aux_sym_cmd_identifier_token29] = ACTIONS(1563), + [aux_sym_cmd_identifier_token30] = ACTIONS(1563), + [aux_sym_cmd_identifier_token31] = ACTIONS(1563), + [aux_sym_cmd_identifier_token32] = ACTIONS(1561), + [aux_sym_cmd_identifier_token33] = ACTIONS(1563), + [aux_sym_cmd_identifier_token34] = ACTIONS(1561), + [aux_sym_cmd_identifier_token35] = ACTIONS(1563), + [aux_sym_cmd_identifier_token36] = ACTIONS(1563), + [aux_sym_cmd_identifier_token37] = ACTIONS(1563), + [aux_sym_cmd_identifier_token38] = ACTIONS(1561), + [aux_sym_cmd_identifier_token39] = ACTIONS(1563), + [aux_sym_cmd_identifier_token40] = ACTIONS(1563), + [sym__newline] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_def] = ACTIONS(1561), + [anon_sym_export_DASHenv] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1561), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_use] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [anon_sym_error] = ACTIONS(1561), + [anon_sym_DASH2] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_loop] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_source] = ACTIONS(1561), + [anon_sym_source_DASHenv] = ACTIONS(1561), + [anon_sym_register] = ACTIONS(1561), + [anon_sym_hide] = ACTIONS(1561), + [anon_sym_hide_DASHenv] = ACTIONS(1561), + [anon_sym_overlay] = ACTIONS(1561), + [anon_sym_where] = ACTIONS(1563), + [aux_sym_expr_unary_token1] = ACTIONS(1563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), + [anon_sym_DOT_DOT_LT] = ACTIONS(1563), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [aux_sym__val_number_decimal_token1] = ACTIONS(1561), + [aux_sym__val_number_decimal_token2] = ACTIONS(1563), + [aux_sym__val_number_decimal_token3] = ACTIONS(1563), + [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_token1] = ACTIONS(1563), + [aux_sym__val_number_token2] = ACTIONS(1563), + [aux_sym__val_number_token3] = ACTIONS(1563), + [aux_sym__val_number_token4] = ACTIONS(1561), + [aux_sym__val_number_token5] = ACTIONS(1561), + [aux_sym__val_number_token6] = ACTIONS(1561), + [anon_sym_0b] = ACTIONS(1561), + [anon_sym_0o] = ACTIONS(1561), + [anon_sym_0x] = ACTIONS(1561), + [sym_val_date] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [sym__str_single_quotes] = ACTIONS(1563), + [sym__str_back_ticks] = ACTIONS(1563), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1563), + [aux_sym_env_var_token1] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1563), + [aux_sym_command_token1] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1563), }, - [333] = { - [sym__expr_parenthesized_immediate] = STATE(647), - [sym__immediate_decimal] = STATE(533), - [sym_val_variable] = STATE(647), - [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1645), - [anon_sym_alias] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_let_DASHenv] = ACTIONS(1645), - [anon_sym_mut] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [aux_sym_cmd_identifier_token2] = ACTIONS(1645), - [aux_sym_cmd_identifier_token3] = ACTIONS(1645), - [aux_sym_cmd_identifier_token4] = ACTIONS(1645), - [aux_sym_cmd_identifier_token5] = ACTIONS(1645), - [aux_sym_cmd_identifier_token6] = ACTIONS(1645), - [aux_sym_cmd_identifier_token7] = ACTIONS(1645), - [aux_sym_cmd_identifier_token8] = ACTIONS(1645), - [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1645), - [aux_sym_cmd_identifier_token11] = ACTIONS(1645), - [aux_sym_cmd_identifier_token12] = ACTIONS(1645), - [aux_sym_cmd_identifier_token13] = ACTIONS(1645), - [aux_sym_cmd_identifier_token14] = ACTIONS(1645), - [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [aux_sym_cmd_identifier_token16] = ACTIONS(1645), - [aux_sym_cmd_identifier_token17] = ACTIONS(1645), - [aux_sym_cmd_identifier_token18] = ACTIONS(1645), - [aux_sym_cmd_identifier_token19] = ACTIONS(1645), - [aux_sym_cmd_identifier_token20] = ACTIONS(1645), - [aux_sym_cmd_identifier_token21] = ACTIONS(1645), - [aux_sym_cmd_identifier_token22] = ACTIONS(1645), - [aux_sym_cmd_identifier_token23] = ACTIONS(1645), - [aux_sym_cmd_identifier_token24] = ACTIONS(1645), - [aux_sym_cmd_identifier_token25] = ACTIONS(1645), - [aux_sym_cmd_identifier_token26] = ACTIONS(1645), - [aux_sym_cmd_identifier_token27] = ACTIONS(1645), - [aux_sym_cmd_identifier_token28] = ACTIONS(1645), - [aux_sym_cmd_identifier_token29] = ACTIONS(1645), - [aux_sym_cmd_identifier_token30] = ACTIONS(1645), - [aux_sym_cmd_identifier_token31] = ACTIONS(1645), - [aux_sym_cmd_identifier_token32] = ACTIONS(1645), - [aux_sym_cmd_identifier_token33] = ACTIONS(1645), - [aux_sym_cmd_identifier_token34] = ACTIONS(1645), - [aux_sym_cmd_identifier_token35] = ACTIONS(1645), - [aux_sym_cmd_identifier_token36] = ACTIONS(1645), - [aux_sym_cmd_identifier_token37] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1645), - [anon_sym_export_DASHenv] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_module] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_make] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_source] = ACTIONS(1645), - [anon_sym_source_DASHenv] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_hide_DASHenv] = ACTIONS(1645), - [anon_sym_overlay] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [aux_sym__immediate_decimal_token1] = ACTIONS(1651), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1653), - [aux_sym__immediate_decimal_token5] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [aux_sym__val_number_token4] = ACTIONS(1645), - [aux_sym__val_number_token5] = ACTIONS(1645), - [aux_sym__val_number_token6] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [sym__entry_separator] = ACTIONS(1657), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1657), + [313] = { + [sym_cmd_identifier] = STATE(4344), + [sym__expression] = STATE(3686), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(834), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4675), + [sym_comment] = STATE(313), + [aux_sym_pipe_element_repeat2] = STATE(1149), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [334] = { - [sym__expr_parenthesized_immediate] = STATE(634), - [sym__immediate_decimal] = STATE(535), - [sym_val_variable] = STATE(634), - [sym_comment] = STATE(334), + [314] = { + [sym_cmd_identifier] = STATE(4344), + [sym_ctrl_if] = STATE(4758), + [sym_block] = STATE(4760), + [sym__expression] = STATE(4760), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1213), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_command] = STATE(4760), + [sym_comment] = STATE(314), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1503), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [315] = { + [sym_comment] = STATE(315), [anon_sym_export] = ACTIONS(1565), [anon_sym_alias] = ACTIONS(1565), [anon_sym_let] = ACTIONS(1565), @@ -122611,68 +115263,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1565), [anon_sym_const] = ACTIONS(1565), [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1565), - [aux_sym_cmd_identifier_token3] = ACTIONS(1565), - [aux_sym_cmd_identifier_token4] = ACTIONS(1565), - [aux_sym_cmd_identifier_token5] = ACTIONS(1565), - [aux_sym_cmd_identifier_token6] = ACTIONS(1565), - [aux_sym_cmd_identifier_token7] = ACTIONS(1565), + [aux_sym_cmd_identifier_token2] = ACTIONS(1567), + [aux_sym_cmd_identifier_token3] = ACTIONS(1567), + [aux_sym_cmd_identifier_token4] = ACTIONS(1567), + [aux_sym_cmd_identifier_token5] = ACTIONS(1567), + [aux_sym_cmd_identifier_token6] = ACTIONS(1567), + [aux_sym_cmd_identifier_token7] = ACTIONS(1567), [aux_sym_cmd_identifier_token8] = ACTIONS(1565), [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1565), - [aux_sym_cmd_identifier_token11] = ACTIONS(1565), + [aux_sym_cmd_identifier_token10] = ACTIONS(1567), + [aux_sym_cmd_identifier_token11] = ACTIONS(1567), [aux_sym_cmd_identifier_token12] = ACTIONS(1565), [aux_sym_cmd_identifier_token13] = ACTIONS(1565), [aux_sym_cmd_identifier_token14] = ACTIONS(1565), [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1565), - [aux_sym_cmd_identifier_token17] = ACTIONS(1565), + [aux_sym_cmd_identifier_token16] = ACTIONS(1567), + [aux_sym_cmd_identifier_token17] = ACTIONS(1567), [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1565), - [aux_sym_cmd_identifier_token20] = ACTIONS(1565), - [aux_sym_cmd_identifier_token21] = ACTIONS(1565), - [aux_sym_cmd_identifier_token22] = ACTIONS(1565), - [aux_sym_cmd_identifier_token23] = ACTIONS(1565), - [aux_sym_cmd_identifier_token24] = ACTIONS(1565), - [aux_sym_cmd_identifier_token25] = ACTIONS(1565), - [aux_sym_cmd_identifier_token26] = ACTIONS(1565), - [aux_sym_cmd_identifier_token27] = ACTIONS(1565), - [aux_sym_cmd_identifier_token28] = ACTIONS(1565), - [aux_sym_cmd_identifier_token29] = ACTIONS(1565), - [aux_sym_cmd_identifier_token30] = ACTIONS(1565), - [aux_sym_cmd_identifier_token31] = ACTIONS(1565), + [aux_sym_cmd_identifier_token19] = ACTIONS(1567), + [aux_sym_cmd_identifier_token20] = ACTIONS(1567), + [aux_sym_cmd_identifier_token21] = ACTIONS(1567), + [aux_sym_cmd_identifier_token22] = ACTIONS(1567), + [aux_sym_cmd_identifier_token23] = ACTIONS(1567), + [aux_sym_cmd_identifier_token24] = ACTIONS(1567), + [aux_sym_cmd_identifier_token25] = ACTIONS(1567), + [aux_sym_cmd_identifier_token26] = ACTIONS(1567), + [aux_sym_cmd_identifier_token27] = ACTIONS(1567), + [aux_sym_cmd_identifier_token28] = ACTIONS(1567), + [aux_sym_cmd_identifier_token29] = ACTIONS(1567), + [aux_sym_cmd_identifier_token30] = ACTIONS(1567), + [aux_sym_cmd_identifier_token31] = ACTIONS(1567), [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1565), + [aux_sym_cmd_identifier_token33] = ACTIONS(1567), [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1565), - [aux_sym_cmd_identifier_token36] = ACTIONS(1565), - [aux_sym_cmd_identifier_token37] = ACTIONS(1565), + [aux_sym_cmd_identifier_token35] = ACTIONS(1567), + [aux_sym_cmd_identifier_token36] = ACTIONS(1567), + [aux_sym_cmd_identifier_token37] = ACTIONS(1567), [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1565), - [aux_sym_cmd_identifier_token40] = ACTIONS(1565), + [aux_sym_cmd_identifier_token39] = ACTIONS(1567), + [aux_sym_cmd_identifier_token40] = ACTIONS(1567), + [sym__newline] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), [anon_sym_def] = ACTIONS(1565), [anon_sym_export_DASHenv] = ACTIONS(1565), [anon_sym_extern] = ACTIONS(1565), [anon_sym_module] = ACTIONS(1565), [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1565), [anon_sym_error] = ACTIONS(1565), [anon_sym_DASH2] = ACTIONS(1565), [anon_sym_break] = ACTIONS(1565), [anon_sym_continue] = ACTIONS(1565), [anon_sym_for] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1565), [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), [anon_sym_while] = ACTIONS(1565), [anon_sym_do] = ACTIONS(1565), [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1565), [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), [anon_sym_return] = ACTIONS(1565), [anon_sym_source] = ACTIONS(1565), [anon_sym_source_DASHenv] = ACTIONS(1565), @@ -122680,815 +115332,2552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1565), [anon_sym_hide_DASHenv] = ACTIONS(1565), [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1565), - [aux_sym__immediate_decimal_token1] = ACTIONS(1651), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1653), - [aux_sym__immediate_decimal_token5] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1565), + [anon_sym_where] = ACTIONS(1567), + [aux_sym_expr_unary_token1] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), + [anon_sym_DOT_DOT_LT] = ACTIONS(1567), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1565), - [aux_sym__val_number_token2] = ACTIONS(1565), - [aux_sym__val_number_token3] = ACTIONS(1565), + [aux_sym__val_number_decimal_token2] = ACTIONS(1567), + [aux_sym__val_number_decimal_token3] = ACTIONS(1567), + [aux_sym__val_number_decimal_token4] = ACTIONS(1567), + [aux_sym__val_number_token1] = ACTIONS(1567), + [aux_sym__val_number_token2] = ACTIONS(1567), + [aux_sym__val_number_token3] = ACTIONS(1567), [aux_sym__val_number_token4] = ACTIONS(1565), [aux_sym__val_number_token5] = ACTIONS(1565), [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [sym__str_single_quotes] = ACTIONS(1565), - [sym__str_back_ticks] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1565), - [sym__entry_separator] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), + [anon_sym_0b] = ACTIONS(1565), + [anon_sym_0o] = ACTIONS(1565), + [anon_sym_0x] = ACTIONS(1565), + [sym_val_date] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym__str_single_quotes] = ACTIONS(1567), + [sym__str_back_ticks] = ACTIONS(1567), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), + [aux_sym_env_var_token1] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1567), + [aux_sym_command_token1] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1567), + }, + [316] = { + [sym_cmd_identifier] = STATE(4344), + [sym__expression] = STATE(3686), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3751), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(862), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_env_var] = STATE(7327), + [sym_command] = STATE(4675), + [sym_comment] = STATE(316), + [aux_sym_pipe_element_repeat2] = STATE(1149), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1533), + [aux_sym__val_number_decimal_token2] = ACTIONS(1535), + [aux_sym__val_number_decimal_token3] = ACTIONS(1537), + [aux_sym__val_number_decimal_token4] = ACTIONS(1539), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [317] = { + [sym__expr_parenthesized_immediate] = STATE(493), + [sym__immediate_decimal] = STATE(371), + [sym_val_variable] = STATE(493), + [sym_comment] = STATE(317), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [aux_sym_cmd_identifier_token37] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1575), + [aux_sym__immediate_decimal_token1] = ACTIONS(1577), + [aux_sym__immediate_decimal_token3] = ACTIONS(1577), + [aux_sym__immediate_decimal_token4] = ACTIONS(1579), + [aux_sym__immediate_decimal_token5] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [aux_sym__val_number_token4] = ACTIONS(1569), + [aux_sym__val_number_token5] = ACTIONS(1569), + [aux_sym__val_number_token6] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1583), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1579), + [sym_raw_string_begin] = ACTIONS(1583), }, - [335] = { - [sym_comment] = STATE(335), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_alias] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_let_DASHenv] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [aux_sym_cmd_identifier_token1] = ACTIONS(1661), - [aux_sym_cmd_identifier_token2] = ACTIONS(1661), - [aux_sym_cmd_identifier_token3] = ACTIONS(1661), - [aux_sym_cmd_identifier_token4] = ACTIONS(1661), - [aux_sym_cmd_identifier_token5] = ACTIONS(1661), - [aux_sym_cmd_identifier_token6] = ACTIONS(1661), - [aux_sym_cmd_identifier_token7] = ACTIONS(1661), - [aux_sym_cmd_identifier_token8] = ACTIONS(1661), - [aux_sym_cmd_identifier_token9] = ACTIONS(1661), - [aux_sym_cmd_identifier_token10] = ACTIONS(1661), - [aux_sym_cmd_identifier_token11] = ACTIONS(1661), - [aux_sym_cmd_identifier_token12] = ACTIONS(1661), - [aux_sym_cmd_identifier_token13] = ACTIONS(1661), - [aux_sym_cmd_identifier_token14] = ACTIONS(1661), - [aux_sym_cmd_identifier_token15] = ACTIONS(1661), - [aux_sym_cmd_identifier_token16] = ACTIONS(1661), - [aux_sym_cmd_identifier_token17] = ACTIONS(1661), - [aux_sym_cmd_identifier_token18] = ACTIONS(1661), - [aux_sym_cmd_identifier_token19] = ACTIONS(1661), - [aux_sym_cmd_identifier_token20] = ACTIONS(1661), - [aux_sym_cmd_identifier_token21] = ACTIONS(1661), - [aux_sym_cmd_identifier_token22] = ACTIONS(1661), - [aux_sym_cmd_identifier_token23] = ACTIONS(1661), - [aux_sym_cmd_identifier_token24] = ACTIONS(1661), - [aux_sym_cmd_identifier_token25] = ACTIONS(1661), - [aux_sym_cmd_identifier_token26] = ACTIONS(1661), - [aux_sym_cmd_identifier_token27] = ACTIONS(1661), - [aux_sym_cmd_identifier_token28] = ACTIONS(1661), - [aux_sym_cmd_identifier_token29] = ACTIONS(1661), - [aux_sym_cmd_identifier_token30] = ACTIONS(1661), - [aux_sym_cmd_identifier_token31] = ACTIONS(1661), - [aux_sym_cmd_identifier_token32] = ACTIONS(1661), - [aux_sym_cmd_identifier_token33] = ACTIONS(1661), - [aux_sym_cmd_identifier_token34] = ACTIONS(1661), - [aux_sym_cmd_identifier_token35] = ACTIONS(1661), - [aux_sym_cmd_identifier_token36] = ACTIONS(1661), - [aux_sym_cmd_identifier_token37] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_export_DASHenv] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_make] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_source] = ACTIONS(1661), - [anon_sym_source_DASHenv] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_hide_DASHenv] = ACTIONS(1661), - [anon_sym_overlay] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(1665), - [aux_sym__immediate_decimal_token2] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [aux_sym__val_number_token4] = ACTIONS(1661), - [aux_sym__val_number_token5] = ACTIONS(1661), - [aux_sym__val_number_token6] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [sym__entry_separator] = ACTIONS(1663), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), + [318] = { + [sym__expr_parenthesized_immediate] = STATE(491), + [sym__immediate_decimal] = STATE(492), + [sym_val_variable] = STATE(491), + [sym_comment] = STATE(318), + [anon_sym_export] = ACTIONS(1587), + [anon_sym_alias] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1587), + [anon_sym_let_DASHenv] = ACTIONS(1587), + [anon_sym_mut] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [aux_sym_cmd_identifier_token1] = ACTIONS(1587), + [aux_sym_cmd_identifier_token2] = ACTIONS(1587), + [aux_sym_cmd_identifier_token3] = ACTIONS(1587), + [aux_sym_cmd_identifier_token4] = ACTIONS(1587), + [aux_sym_cmd_identifier_token5] = ACTIONS(1587), + [aux_sym_cmd_identifier_token6] = ACTIONS(1587), + [aux_sym_cmd_identifier_token7] = ACTIONS(1587), + [aux_sym_cmd_identifier_token8] = ACTIONS(1587), + [aux_sym_cmd_identifier_token9] = ACTIONS(1587), + [aux_sym_cmd_identifier_token10] = ACTIONS(1587), + [aux_sym_cmd_identifier_token11] = ACTIONS(1587), + [aux_sym_cmd_identifier_token12] = ACTIONS(1587), + [aux_sym_cmd_identifier_token13] = ACTIONS(1587), + [aux_sym_cmd_identifier_token14] = ACTIONS(1587), + [aux_sym_cmd_identifier_token15] = ACTIONS(1587), + [aux_sym_cmd_identifier_token16] = ACTIONS(1587), + [aux_sym_cmd_identifier_token17] = ACTIONS(1587), + [aux_sym_cmd_identifier_token18] = ACTIONS(1587), + [aux_sym_cmd_identifier_token19] = ACTIONS(1587), + [aux_sym_cmd_identifier_token20] = ACTIONS(1587), + [aux_sym_cmd_identifier_token21] = ACTIONS(1587), + [aux_sym_cmd_identifier_token22] = ACTIONS(1587), + [aux_sym_cmd_identifier_token23] = ACTIONS(1587), + [aux_sym_cmd_identifier_token24] = ACTIONS(1587), + [aux_sym_cmd_identifier_token25] = ACTIONS(1587), + [aux_sym_cmd_identifier_token26] = ACTIONS(1587), + [aux_sym_cmd_identifier_token27] = ACTIONS(1587), + [aux_sym_cmd_identifier_token28] = ACTIONS(1587), + [aux_sym_cmd_identifier_token29] = ACTIONS(1587), + [aux_sym_cmd_identifier_token30] = ACTIONS(1587), + [aux_sym_cmd_identifier_token31] = ACTIONS(1587), + [aux_sym_cmd_identifier_token32] = ACTIONS(1587), + [aux_sym_cmd_identifier_token33] = ACTIONS(1587), + [aux_sym_cmd_identifier_token34] = ACTIONS(1587), + [aux_sym_cmd_identifier_token35] = ACTIONS(1587), + [aux_sym_cmd_identifier_token36] = ACTIONS(1587), + [aux_sym_cmd_identifier_token37] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1587), + [anon_sym_export_DASHenv] = ACTIONS(1587), + [anon_sym_extern] = ACTIONS(1587), + [anon_sym_module] = ACTIONS(1587), + [anon_sym_use] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_make] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_else] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1587), + [anon_sym_catch] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_source] = ACTIONS(1587), + [anon_sym_source_DASHenv] = ACTIONS(1587), + [anon_sym_register] = ACTIONS(1587), + [anon_sym_hide] = ACTIONS(1587), + [anon_sym_hide_DASHenv] = ACTIONS(1587), + [anon_sym_overlay] = ACTIONS(1587), + [anon_sym_as] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1573), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(1591), + [aux_sym__immediate_decimal_token3] = ACTIONS(1591), + [aux_sym__immediate_decimal_token4] = ACTIONS(1593), + [aux_sym__immediate_decimal_token5] = ACTIONS(1595), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [sym__entry_separator] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1663), + [sym_raw_string_begin] = ACTIONS(1597), }, - [336] = { - [sym_comment] = STATE(336), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1669), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1669), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1669), - [aux_sym_cmd_identifier_token32] = ACTIONS(1669), - [aux_sym_cmd_identifier_token33] = ACTIONS(1669), - [aux_sym_cmd_identifier_token34] = ACTIONS(1669), - [aux_sym_cmd_identifier_token35] = ACTIONS(1669), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [aux_sym_cmd_identifier_token37] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_make] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_as] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(1673), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [sym__entry_separator] = ACTIONS(1671), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), + [319] = { + [sym_comment] = STATE(319), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), + [aux_sym_cmd_identifier_token37] = ACTIONS(1599), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1599), + [aux_sym_cmd_identifier_token40] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), + [sym__entry_separator] = ACTIONS(1601), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1671), + [sym_raw_string_begin] = ACTIONS(1601), }, - [337] = { - [sym__expr_parenthesized_immediate] = STATE(640), - [sym__immediate_decimal] = STATE(641), - [sym_val_variable] = STATE(640), - [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(1677), - [anon_sym_alias] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_let_DASHenv] = ACTIONS(1677), - [anon_sym_mut] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [aux_sym_cmd_identifier_token1] = ACTIONS(1677), - [aux_sym_cmd_identifier_token2] = ACTIONS(1677), - [aux_sym_cmd_identifier_token3] = ACTIONS(1677), - [aux_sym_cmd_identifier_token4] = ACTIONS(1677), - [aux_sym_cmd_identifier_token5] = ACTIONS(1677), - [aux_sym_cmd_identifier_token6] = ACTIONS(1677), - [aux_sym_cmd_identifier_token7] = ACTIONS(1677), - [aux_sym_cmd_identifier_token8] = ACTIONS(1677), - [aux_sym_cmd_identifier_token9] = ACTIONS(1677), - [aux_sym_cmd_identifier_token10] = ACTIONS(1677), - [aux_sym_cmd_identifier_token11] = ACTIONS(1677), - [aux_sym_cmd_identifier_token12] = ACTIONS(1677), - [aux_sym_cmd_identifier_token13] = ACTIONS(1677), - [aux_sym_cmd_identifier_token14] = ACTIONS(1677), - [aux_sym_cmd_identifier_token15] = ACTIONS(1677), - [aux_sym_cmd_identifier_token16] = ACTIONS(1677), - [aux_sym_cmd_identifier_token17] = ACTIONS(1677), - [aux_sym_cmd_identifier_token18] = ACTIONS(1677), - [aux_sym_cmd_identifier_token19] = ACTIONS(1677), - [aux_sym_cmd_identifier_token20] = ACTIONS(1677), - [aux_sym_cmd_identifier_token21] = ACTIONS(1677), - [aux_sym_cmd_identifier_token22] = ACTIONS(1677), - [aux_sym_cmd_identifier_token23] = ACTIONS(1677), - [aux_sym_cmd_identifier_token24] = ACTIONS(1677), - [aux_sym_cmd_identifier_token25] = ACTIONS(1677), - [aux_sym_cmd_identifier_token26] = ACTIONS(1677), - [aux_sym_cmd_identifier_token27] = ACTIONS(1677), - [aux_sym_cmd_identifier_token28] = ACTIONS(1677), - [aux_sym_cmd_identifier_token29] = ACTIONS(1677), - [aux_sym_cmd_identifier_token30] = ACTIONS(1677), - [aux_sym_cmd_identifier_token31] = ACTIONS(1677), - [aux_sym_cmd_identifier_token32] = ACTIONS(1677), - [aux_sym_cmd_identifier_token33] = ACTIONS(1677), - [aux_sym_cmd_identifier_token34] = ACTIONS(1677), - [aux_sym_cmd_identifier_token35] = ACTIONS(1677), - [aux_sym_cmd_identifier_token36] = ACTIONS(1677), - [aux_sym_cmd_identifier_token37] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [anon_sym_def] = ACTIONS(1677), - [anon_sym_export_DASHenv] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_module] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_in2] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_make] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_source] = ACTIONS(1677), - [anon_sym_source_DASHenv] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_hide] = ACTIONS(1677), - [anon_sym_hide_DASHenv] = ACTIONS(1677), - [anon_sym_overlay] = ACTIONS(1677), - [anon_sym_as] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), - [aux_sym__immediate_decimal_token1] = ACTIONS(1679), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1681), - [aux_sym__immediate_decimal_token5] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [aux_sym__val_number_token4] = ACTIONS(1677), - [aux_sym__val_number_token5] = ACTIONS(1677), - [aux_sym__val_number_token6] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), - [sym__entry_separator] = ACTIONS(1685), + [320] = { + [sym__expr_parenthesized_immediate] = STATE(647), + [sym__immediate_decimal] = STATE(517), + [sym_val_variable] = STATE(647), + [sym_comment] = STATE(320), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1569), + [aux_sym_cmd_identifier_token3] = ACTIONS(1569), + [aux_sym_cmd_identifier_token4] = ACTIONS(1569), + [aux_sym_cmd_identifier_token5] = ACTIONS(1569), + [aux_sym_cmd_identifier_token6] = ACTIONS(1569), + [aux_sym_cmd_identifier_token7] = ACTIONS(1569), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1569), + [aux_sym_cmd_identifier_token11] = ACTIONS(1569), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1569), + [aux_sym_cmd_identifier_token17] = ACTIONS(1569), + [aux_sym_cmd_identifier_token18] = ACTIONS(1569), + [aux_sym_cmd_identifier_token19] = ACTIONS(1569), + [aux_sym_cmd_identifier_token20] = ACTIONS(1569), + [aux_sym_cmd_identifier_token21] = ACTIONS(1569), + [aux_sym_cmd_identifier_token22] = ACTIONS(1569), + [aux_sym_cmd_identifier_token23] = ACTIONS(1569), + [aux_sym_cmd_identifier_token24] = ACTIONS(1569), + [aux_sym_cmd_identifier_token25] = ACTIONS(1569), + [aux_sym_cmd_identifier_token26] = ACTIONS(1569), + [aux_sym_cmd_identifier_token27] = ACTIONS(1569), + [aux_sym_cmd_identifier_token28] = ACTIONS(1569), + [aux_sym_cmd_identifier_token29] = ACTIONS(1569), + [aux_sym_cmd_identifier_token30] = ACTIONS(1569), + [aux_sym_cmd_identifier_token31] = ACTIONS(1569), + [aux_sym_cmd_identifier_token32] = ACTIONS(1569), + [aux_sym_cmd_identifier_token33] = ACTIONS(1569), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1569), + [aux_sym_cmd_identifier_token36] = ACTIONS(1569), + [aux_sym_cmd_identifier_token37] = ACTIONS(1569), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1569), + [aux_sym_cmd_identifier_token40] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1569), + [aux_sym__immediate_decimal_token1] = ACTIONS(1611), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1613), + [aux_sym__immediate_decimal_token5] = ACTIONS(1615), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1569), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1569), + [aux_sym__val_number_token2] = ACTIONS(1569), + [aux_sym__val_number_token3] = ACTIONS(1569), + [aux_sym__val_number_token4] = ACTIONS(1569), + [aux_sym__val_number_token5] = ACTIONS(1569), + [aux_sym__val_number_token6] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1569), + [sym__str_single_quotes] = ACTIONS(1569), + [sym__str_back_ticks] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1569), + [sym__entry_separator] = ACTIONS(1583), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1685), + [sym_raw_string_begin] = ACTIONS(1583), }, - [338] = { - [sym__expr_parenthesized_immediate] = STATE(8112), - [sym_comment] = STATE(338), - [anon_sym_export] = ACTIONS(1687), - [anon_sym_alias] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_let_DASHenv] = ACTIONS(1687), - [anon_sym_mut] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1687), - [aux_sym_cmd_identifier_token2] = ACTIONS(1687), - [aux_sym_cmd_identifier_token3] = ACTIONS(1687), - [aux_sym_cmd_identifier_token4] = ACTIONS(1687), - [aux_sym_cmd_identifier_token5] = ACTIONS(1687), - [aux_sym_cmd_identifier_token6] = ACTIONS(1687), - [aux_sym_cmd_identifier_token7] = ACTIONS(1687), - [aux_sym_cmd_identifier_token8] = ACTIONS(1687), - [aux_sym_cmd_identifier_token9] = ACTIONS(1687), - [aux_sym_cmd_identifier_token10] = ACTIONS(1687), - [aux_sym_cmd_identifier_token11] = ACTIONS(1687), - [aux_sym_cmd_identifier_token12] = ACTIONS(1687), - [aux_sym_cmd_identifier_token13] = ACTIONS(1687), - [aux_sym_cmd_identifier_token14] = ACTIONS(1687), - [aux_sym_cmd_identifier_token15] = ACTIONS(1687), - [aux_sym_cmd_identifier_token16] = ACTIONS(1687), - [aux_sym_cmd_identifier_token17] = ACTIONS(1687), - [aux_sym_cmd_identifier_token18] = ACTIONS(1687), - [aux_sym_cmd_identifier_token19] = ACTIONS(1687), - [aux_sym_cmd_identifier_token20] = ACTIONS(1687), - [aux_sym_cmd_identifier_token21] = ACTIONS(1687), - [aux_sym_cmd_identifier_token22] = ACTIONS(1687), - [aux_sym_cmd_identifier_token23] = ACTIONS(1687), - [aux_sym_cmd_identifier_token24] = ACTIONS(1687), - [aux_sym_cmd_identifier_token25] = ACTIONS(1687), - [aux_sym_cmd_identifier_token26] = ACTIONS(1687), - [aux_sym_cmd_identifier_token27] = ACTIONS(1687), - [aux_sym_cmd_identifier_token28] = ACTIONS(1687), - [aux_sym_cmd_identifier_token29] = ACTIONS(1687), - [aux_sym_cmd_identifier_token30] = ACTIONS(1687), - [aux_sym_cmd_identifier_token31] = ACTIONS(1687), - [aux_sym_cmd_identifier_token32] = ACTIONS(1687), - [aux_sym_cmd_identifier_token33] = ACTIONS(1687), - [aux_sym_cmd_identifier_token34] = ACTIONS(1687), - [aux_sym_cmd_identifier_token35] = ACTIONS(1687), - [aux_sym_cmd_identifier_token36] = ACTIONS(1687), - [aux_sym_cmd_identifier_token37] = ACTIONS(1687), - [aux_sym_cmd_identifier_token38] = ACTIONS(1687), - [aux_sym_cmd_identifier_token39] = ACTIONS(1687), - [aux_sym_cmd_identifier_token40] = ACTIONS(1687), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_export_DASHenv] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_module] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_error] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_make] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_catch] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_source] = ACTIONS(1687), - [anon_sym_source_DASHenv] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_hide] = ACTIONS(1687), - [anon_sym_hide_DASHenv] = ACTIONS(1687), - [anon_sym_overlay] = ACTIONS(1687), - [anon_sym_as] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1693), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1687), - [aux_sym__val_number_decimal_token3] = ACTIONS(1687), - [aux_sym__val_number_decimal_token4] = ACTIONS(1687), - [aux_sym__val_number_token1] = ACTIONS(1687), - [aux_sym__val_number_token2] = ACTIONS(1687), - [aux_sym__val_number_token3] = ACTIONS(1687), - [aux_sym__val_number_token4] = ACTIONS(1687), - [aux_sym__val_number_token5] = ACTIONS(1687), - [aux_sym__val_number_token6] = ACTIONS(1687), - [sym_filesize_unit] = ACTIONS(1695), - [sym_duration_unit] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym__str_single_quotes] = ACTIONS(1687), - [sym__str_back_ticks] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), - [sym__entry_separator] = ACTIONS(1699), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [321] = { + [sym__expr_parenthesized_immediate] = STATE(665), + [sym__immediate_decimal] = STATE(521), + [sym_val_variable] = STATE(665), + [sym_comment] = STATE(321), + [anon_sym_export] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1617), + [anon_sym_let] = ACTIONS(1617), + [anon_sym_let_DASHenv] = ACTIONS(1617), + [anon_sym_mut] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [aux_sym_cmd_identifier_token1] = ACTIONS(1617), + [aux_sym_cmd_identifier_token2] = ACTIONS(1617), + [aux_sym_cmd_identifier_token3] = ACTIONS(1617), + [aux_sym_cmd_identifier_token4] = ACTIONS(1617), + [aux_sym_cmd_identifier_token5] = ACTIONS(1617), + [aux_sym_cmd_identifier_token6] = ACTIONS(1617), + [aux_sym_cmd_identifier_token7] = ACTIONS(1617), + [aux_sym_cmd_identifier_token8] = ACTIONS(1617), + [aux_sym_cmd_identifier_token9] = ACTIONS(1617), + [aux_sym_cmd_identifier_token10] = ACTIONS(1617), + [aux_sym_cmd_identifier_token11] = ACTIONS(1617), + [aux_sym_cmd_identifier_token12] = ACTIONS(1617), + [aux_sym_cmd_identifier_token13] = ACTIONS(1617), + [aux_sym_cmd_identifier_token14] = ACTIONS(1617), + [aux_sym_cmd_identifier_token15] = ACTIONS(1617), + [aux_sym_cmd_identifier_token16] = ACTIONS(1617), + [aux_sym_cmd_identifier_token17] = ACTIONS(1617), + [aux_sym_cmd_identifier_token18] = ACTIONS(1617), + [aux_sym_cmd_identifier_token19] = ACTIONS(1617), + [aux_sym_cmd_identifier_token20] = ACTIONS(1617), + [aux_sym_cmd_identifier_token21] = ACTIONS(1617), + [aux_sym_cmd_identifier_token22] = ACTIONS(1617), + [aux_sym_cmd_identifier_token23] = ACTIONS(1617), + [aux_sym_cmd_identifier_token24] = ACTIONS(1617), + [aux_sym_cmd_identifier_token25] = ACTIONS(1617), + [aux_sym_cmd_identifier_token26] = ACTIONS(1617), + [aux_sym_cmd_identifier_token27] = ACTIONS(1617), + [aux_sym_cmd_identifier_token28] = ACTIONS(1617), + [aux_sym_cmd_identifier_token29] = ACTIONS(1617), + [aux_sym_cmd_identifier_token30] = ACTIONS(1617), + [aux_sym_cmd_identifier_token31] = ACTIONS(1617), + [aux_sym_cmd_identifier_token32] = ACTIONS(1617), + [aux_sym_cmd_identifier_token33] = ACTIONS(1617), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1617), + [aux_sym_cmd_identifier_token36] = ACTIONS(1617), + [aux_sym_cmd_identifier_token37] = ACTIONS(1617), + [aux_sym_cmd_identifier_token38] = ACTIONS(1617), + [aux_sym_cmd_identifier_token39] = ACTIONS(1617), + [aux_sym_cmd_identifier_token40] = ACTIONS(1617), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_export_DASHenv] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1617), + [anon_sym_use] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_in2] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_make] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_catch] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_source] = ACTIONS(1617), + [anon_sym_source_DASHenv] = ACTIONS(1617), + [anon_sym_register] = ACTIONS(1617), + [anon_sym_hide] = ACTIONS(1617), + [anon_sym_hide_DASHenv] = ACTIONS(1617), + [anon_sym_overlay] = ACTIONS(1617), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1617), + [aux_sym__immediate_decimal_token1] = ACTIONS(1611), + [aux_sym__immediate_decimal_token3] = ACTIONS(1611), + [aux_sym__immediate_decimal_token4] = ACTIONS(1613), + [aux_sym__immediate_decimal_token5] = ACTIONS(1615), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1617), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1617), + [aux_sym__val_number_token2] = ACTIONS(1617), + [aux_sym__val_number_token3] = ACTIONS(1617), + [aux_sym__val_number_token4] = ACTIONS(1617), + [aux_sym__val_number_token5] = ACTIONS(1617), + [aux_sym__val_number_token6] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym__str_single_quotes] = ACTIONS(1617), + [sym__str_back_ticks] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1617), + [sym__entry_separator] = ACTIONS(1619), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1699), + [sym_raw_string_begin] = ACTIONS(1619), }, - [339] = { - [sym_comment] = STATE(339), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1671), - [aux_sym_cmd_identifier_token3] = ACTIONS(1671), - [aux_sym_cmd_identifier_token4] = ACTIONS(1671), - [aux_sym_cmd_identifier_token5] = ACTIONS(1671), - [aux_sym_cmd_identifier_token6] = ACTIONS(1671), - [aux_sym_cmd_identifier_token7] = ACTIONS(1671), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1671), - [aux_sym_cmd_identifier_token11] = ACTIONS(1671), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1671), - [aux_sym_cmd_identifier_token17] = ACTIONS(1671), - [aux_sym_cmd_identifier_token18] = ACTIONS(1671), - [aux_sym_cmd_identifier_token19] = ACTIONS(1671), - [aux_sym_cmd_identifier_token20] = ACTIONS(1671), - [aux_sym_cmd_identifier_token21] = ACTIONS(1671), - [aux_sym_cmd_identifier_token22] = ACTIONS(1671), - [aux_sym_cmd_identifier_token23] = ACTIONS(1671), - [aux_sym_cmd_identifier_token24] = ACTIONS(1671), - [aux_sym_cmd_identifier_token25] = ACTIONS(1671), - [aux_sym_cmd_identifier_token26] = ACTIONS(1671), - [aux_sym_cmd_identifier_token27] = ACTIONS(1671), - [aux_sym_cmd_identifier_token28] = ACTIONS(1671), - [aux_sym_cmd_identifier_token29] = ACTIONS(1671), - [aux_sym_cmd_identifier_token30] = ACTIONS(1671), - [aux_sym_cmd_identifier_token31] = ACTIONS(1671), - [aux_sym_cmd_identifier_token32] = ACTIONS(1671), - [aux_sym_cmd_identifier_token33] = ACTIONS(1671), - [aux_sym_cmd_identifier_token34] = ACTIONS(1669), - [aux_sym_cmd_identifier_token35] = ACTIONS(1671), - [aux_sym_cmd_identifier_token36] = ACTIONS(1671), - [aux_sym_cmd_identifier_token37] = ACTIONS(1671), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1671), - [aux_sym_cmd_identifier_token40] = ACTIONS(1671), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_make] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_as] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(1703), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1671), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [322] = { + [sym_comment] = STATE(322), + [anon_sym_export] = ACTIONS(1623), + [anon_sym_alias] = ACTIONS(1623), + [anon_sym_let] = ACTIONS(1623), + [anon_sym_let_DASHenv] = ACTIONS(1623), + [anon_sym_mut] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [aux_sym_cmd_identifier_token1] = ACTIONS(1623), + [aux_sym_cmd_identifier_token2] = ACTIONS(1623), + [aux_sym_cmd_identifier_token3] = ACTIONS(1623), + [aux_sym_cmd_identifier_token4] = ACTIONS(1623), + [aux_sym_cmd_identifier_token5] = ACTIONS(1623), + [aux_sym_cmd_identifier_token6] = ACTIONS(1623), + [aux_sym_cmd_identifier_token7] = ACTIONS(1623), + [aux_sym_cmd_identifier_token8] = ACTIONS(1623), + [aux_sym_cmd_identifier_token9] = ACTIONS(1623), + [aux_sym_cmd_identifier_token10] = ACTIONS(1623), + [aux_sym_cmd_identifier_token11] = ACTIONS(1623), + [aux_sym_cmd_identifier_token12] = ACTIONS(1623), + [aux_sym_cmd_identifier_token13] = ACTIONS(1623), + [aux_sym_cmd_identifier_token14] = ACTIONS(1623), + [aux_sym_cmd_identifier_token15] = ACTIONS(1623), + [aux_sym_cmd_identifier_token16] = ACTIONS(1623), + [aux_sym_cmd_identifier_token17] = ACTIONS(1623), + [aux_sym_cmd_identifier_token18] = ACTIONS(1623), + [aux_sym_cmd_identifier_token19] = ACTIONS(1623), + [aux_sym_cmd_identifier_token20] = ACTIONS(1623), + [aux_sym_cmd_identifier_token21] = ACTIONS(1623), + [aux_sym_cmd_identifier_token22] = ACTIONS(1623), + [aux_sym_cmd_identifier_token23] = ACTIONS(1623), + [aux_sym_cmd_identifier_token24] = ACTIONS(1623), + [aux_sym_cmd_identifier_token25] = ACTIONS(1623), + [aux_sym_cmd_identifier_token26] = ACTIONS(1623), + [aux_sym_cmd_identifier_token27] = ACTIONS(1623), + [aux_sym_cmd_identifier_token28] = ACTIONS(1623), + [aux_sym_cmd_identifier_token29] = ACTIONS(1623), + [aux_sym_cmd_identifier_token30] = ACTIONS(1623), + [aux_sym_cmd_identifier_token31] = ACTIONS(1623), + [aux_sym_cmd_identifier_token32] = ACTIONS(1623), + [aux_sym_cmd_identifier_token33] = ACTIONS(1623), + [aux_sym_cmd_identifier_token34] = ACTIONS(1623), + [aux_sym_cmd_identifier_token35] = ACTIONS(1623), + [aux_sym_cmd_identifier_token36] = ACTIONS(1623), + [aux_sym_cmd_identifier_token37] = ACTIONS(1623), + [aux_sym_cmd_identifier_token38] = ACTIONS(1623), + [aux_sym_cmd_identifier_token39] = ACTIONS(1623), + [aux_sym_cmd_identifier_token40] = ACTIONS(1623), + [anon_sym_def] = ACTIONS(1623), + [anon_sym_export_DASHenv] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_module] = ACTIONS(1623), + [anon_sym_use] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_error] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_loop] = ACTIONS(1623), + [anon_sym_make] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_try] = ACTIONS(1623), + [anon_sym_catch] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_source] = ACTIONS(1623), + [anon_sym_source_DASHenv] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_hide] = ACTIONS(1623), + [anon_sym_hide_DASHenv] = ACTIONS(1623), + [anon_sym_overlay] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(1627), + [aux_sym__immediate_decimal_token2] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym__str_single_quotes] = ACTIONS(1623), + [sym__str_back_ticks] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1623), + [sym__entry_separator] = ACTIONS(1625), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1625), }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_alias] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_let_DASHenv] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [aux_sym_cmd_identifier_token1] = ACTIONS(1661), - [aux_sym_cmd_identifier_token2] = ACTIONS(1663), - [aux_sym_cmd_identifier_token3] = ACTIONS(1663), - [aux_sym_cmd_identifier_token4] = ACTIONS(1663), - [aux_sym_cmd_identifier_token5] = ACTIONS(1663), - [aux_sym_cmd_identifier_token6] = ACTIONS(1663), - [aux_sym_cmd_identifier_token7] = ACTIONS(1663), - [aux_sym_cmd_identifier_token8] = ACTIONS(1661), - [aux_sym_cmd_identifier_token9] = ACTIONS(1661), - [aux_sym_cmd_identifier_token10] = ACTIONS(1663), - [aux_sym_cmd_identifier_token11] = ACTIONS(1663), - [aux_sym_cmd_identifier_token12] = ACTIONS(1661), - [aux_sym_cmd_identifier_token13] = ACTIONS(1661), - [aux_sym_cmd_identifier_token14] = ACTIONS(1661), - [aux_sym_cmd_identifier_token15] = ACTIONS(1661), - [aux_sym_cmd_identifier_token16] = ACTIONS(1663), - [aux_sym_cmd_identifier_token17] = ACTIONS(1663), - [aux_sym_cmd_identifier_token18] = ACTIONS(1663), - [aux_sym_cmd_identifier_token19] = ACTIONS(1663), - [aux_sym_cmd_identifier_token20] = ACTIONS(1663), - [aux_sym_cmd_identifier_token21] = ACTIONS(1663), - [aux_sym_cmd_identifier_token22] = ACTIONS(1663), - [aux_sym_cmd_identifier_token23] = ACTIONS(1663), - [aux_sym_cmd_identifier_token24] = ACTIONS(1663), - [aux_sym_cmd_identifier_token25] = ACTIONS(1663), - [aux_sym_cmd_identifier_token26] = ACTIONS(1663), - [aux_sym_cmd_identifier_token27] = ACTIONS(1663), - [aux_sym_cmd_identifier_token28] = ACTIONS(1663), - [aux_sym_cmd_identifier_token29] = ACTIONS(1663), - [aux_sym_cmd_identifier_token30] = ACTIONS(1663), - [aux_sym_cmd_identifier_token31] = ACTIONS(1663), - [aux_sym_cmd_identifier_token32] = ACTIONS(1663), - [aux_sym_cmd_identifier_token33] = ACTIONS(1663), - [aux_sym_cmd_identifier_token34] = ACTIONS(1661), - [aux_sym_cmd_identifier_token35] = ACTIONS(1663), - [aux_sym_cmd_identifier_token36] = ACTIONS(1663), - [aux_sym_cmd_identifier_token37] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1663), - [aux_sym_cmd_identifier_token40] = ACTIONS(1663), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_export_DASHenv] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1663), - [anon_sym_error] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_make] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_source] = ACTIONS(1661), - [anon_sym_source_DASHenv] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_hide_DASHenv] = ACTIONS(1661), - [anon_sym_overlay] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(1707), - [aux_sym__immediate_decimal_token2] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1661), - [aux_sym__val_number_token5] = ACTIONS(1661), - [aux_sym__val_number_token6] = ACTIONS(1661), + [323] = { + [sym__expr_parenthesized_immediate] = STATE(509), + [sym__immediate_decimal] = STATE(416), + [sym_val_variable] = STATE(509), + [sym_comment] = STATE(323), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1583), + [aux_sym_cmd_identifier_token3] = ACTIONS(1583), + [aux_sym_cmd_identifier_token4] = ACTIONS(1583), + [aux_sym_cmd_identifier_token5] = ACTIONS(1583), + [aux_sym_cmd_identifier_token6] = ACTIONS(1583), + [aux_sym_cmd_identifier_token7] = ACTIONS(1583), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1583), + [aux_sym_cmd_identifier_token11] = ACTIONS(1583), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1583), + [aux_sym_cmd_identifier_token17] = ACTIONS(1583), + [aux_sym_cmd_identifier_token18] = ACTIONS(1583), + [aux_sym_cmd_identifier_token19] = ACTIONS(1583), + [aux_sym_cmd_identifier_token20] = ACTIONS(1583), + [aux_sym_cmd_identifier_token21] = ACTIONS(1583), + [aux_sym_cmd_identifier_token22] = ACTIONS(1583), + [aux_sym_cmd_identifier_token23] = ACTIONS(1583), + [aux_sym_cmd_identifier_token24] = ACTIONS(1583), + [aux_sym_cmd_identifier_token25] = ACTIONS(1583), + [aux_sym_cmd_identifier_token26] = ACTIONS(1583), + [aux_sym_cmd_identifier_token27] = ACTIONS(1583), + [aux_sym_cmd_identifier_token28] = ACTIONS(1583), + [aux_sym_cmd_identifier_token29] = ACTIONS(1583), + [aux_sym_cmd_identifier_token30] = ACTIONS(1583), + [aux_sym_cmd_identifier_token31] = ACTIONS(1583), + [aux_sym_cmd_identifier_token32] = ACTIONS(1583), + [aux_sym_cmd_identifier_token33] = ACTIONS(1583), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1583), + [aux_sym_cmd_identifier_token36] = ACTIONS(1583), + [aux_sym_cmd_identifier_token37] = ACTIONS(1583), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1583), + [aux_sym_cmd_identifier_token40] = ACTIONS(1583), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(1635), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1641), + [aux_sym__immediate_decimal_token5] = ACTIONS(1643), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1569), + [aux_sym__val_number_token5] = ACTIONS(1569), + [aux_sym__val_number_token6] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1583), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1583), + }, + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1601), + [aux_sym_cmd_identifier_token3] = ACTIONS(1601), + [aux_sym_cmd_identifier_token4] = ACTIONS(1601), + [aux_sym_cmd_identifier_token5] = ACTIONS(1601), + [aux_sym_cmd_identifier_token6] = ACTIONS(1601), + [aux_sym_cmd_identifier_token7] = ACTIONS(1601), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1601), + [aux_sym_cmd_identifier_token11] = ACTIONS(1601), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1601), + [aux_sym_cmd_identifier_token17] = ACTIONS(1601), + [aux_sym_cmd_identifier_token18] = ACTIONS(1601), + [aux_sym_cmd_identifier_token19] = ACTIONS(1601), + [aux_sym_cmd_identifier_token20] = ACTIONS(1601), + [aux_sym_cmd_identifier_token21] = ACTIONS(1601), + [aux_sym_cmd_identifier_token22] = ACTIONS(1601), + [aux_sym_cmd_identifier_token23] = ACTIONS(1601), + [aux_sym_cmd_identifier_token24] = ACTIONS(1601), + [aux_sym_cmd_identifier_token25] = ACTIONS(1601), + [aux_sym_cmd_identifier_token26] = ACTIONS(1601), + [aux_sym_cmd_identifier_token27] = ACTIONS(1601), + [aux_sym_cmd_identifier_token28] = ACTIONS(1601), + [aux_sym_cmd_identifier_token29] = ACTIONS(1601), + [aux_sym_cmd_identifier_token30] = ACTIONS(1601), + [aux_sym_cmd_identifier_token31] = ACTIONS(1601), + [aux_sym_cmd_identifier_token32] = ACTIONS(1601), + [aux_sym_cmd_identifier_token33] = ACTIONS(1601), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1601), + [aux_sym_cmd_identifier_token36] = ACTIONS(1601), + [aux_sym_cmd_identifier_token37] = ACTIONS(1601), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1601), + [aux_sym_cmd_identifier_token40] = ACTIONS(1601), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(1645), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(1647), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1601), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), + }, + [325] = { + [sym_comment] = STATE(325), + [anon_sym_export] = ACTIONS(1623), + [anon_sym_alias] = ACTIONS(1623), + [anon_sym_let] = ACTIONS(1623), + [anon_sym_let_DASHenv] = ACTIONS(1623), + [anon_sym_mut] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [aux_sym_cmd_identifier_token1] = ACTIONS(1623), + [aux_sym_cmd_identifier_token2] = ACTIONS(1625), + [aux_sym_cmd_identifier_token3] = ACTIONS(1625), + [aux_sym_cmd_identifier_token4] = ACTIONS(1625), + [aux_sym_cmd_identifier_token5] = ACTIONS(1625), + [aux_sym_cmd_identifier_token6] = ACTIONS(1625), + [aux_sym_cmd_identifier_token7] = ACTIONS(1625), + [aux_sym_cmd_identifier_token8] = ACTIONS(1623), + [aux_sym_cmd_identifier_token9] = ACTIONS(1623), + [aux_sym_cmd_identifier_token10] = ACTIONS(1625), + [aux_sym_cmd_identifier_token11] = ACTIONS(1625), + [aux_sym_cmd_identifier_token12] = ACTIONS(1623), + [aux_sym_cmd_identifier_token13] = ACTIONS(1623), + [aux_sym_cmd_identifier_token14] = ACTIONS(1623), + [aux_sym_cmd_identifier_token15] = ACTIONS(1623), + [aux_sym_cmd_identifier_token16] = ACTIONS(1625), + [aux_sym_cmd_identifier_token17] = ACTIONS(1625), + [aux_sym_cmd_identifier_token18] = ACTIONS(1625), + [aux_sym_cmd_identifier_token19] = ACTIONS(1625), + [aux_sym_cmd_identifier_token20] = ACTIONS(1625), + [aux_sym_cmd_identifier_token21] = ACTIONS(1625), + [aux_sym_cmd_identifier_token22] = ACTIONS(1625), + [aux_sym_cmd_identifier_token23] = ACTIONS(1625), + [aux_sym_cmd_identifier_token24] = ACTIONS(1625), + [aux_sym_cmd_identifier_token25] = ACTIONS(1625), + [aux_sym_cmd_identifier_token26] = ACTIONS(1625), + [aux_sym_cmd_identifier_token27] = ACTIONS(1625), + [aux_sym_cmd_identifier_token28] = ACTIONS(1625), + [aux_sym_cmd_identifier_token29] = ACTIONS(1625), + [aux_sym_cmd_identifier_token30] = ACTIONS(1625), + [aux_sym_cmd_identifier_token31] = ACTIONS(1625), + [aux_sym_cmd_identifier_token32] = ACTIONS(1625), + [aux_sym_cmd_identifier_token33] = ACTIONS(1625), + [aux_sym_cmd_identifier_token34] = ACTIONS(1623), + [aux_sym_cmd_identifier_token35] = ACTIONS(1625), + [aux_sym_cmd_identifier_token36] = ACTIONS(1625), + [aux_sym_cmd_identifier_token37] = ACTIONS(1625), + [aux_sym_cmd_identifier_token38] = ACTIONS(1623), + [aux_sym_cmd_identifier_token39] = ACTIONS(1625), + [aux_sym_cmd_identifier_token40] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1623), + [anon_sym_export_DASHenv] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_module] = ACTIONS(1623), + [anon_sym_use] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_loop] = ACTIONS(1623), + [anon_sym_make] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1623), + [anon_sym_catch] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_source] = ACTIONS(1623), + [anon_sym_source_DASHenv] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_hide] = ACTIONS(1623), + [anon_sym_hide_DASHenv] = ACTIONS(1623), + [anon_sym_overlay] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(1649), + [aux_sym__immediate_decimal_token2] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1625), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), + }, + [326] = { + [sym__expr_parenthesized_immediate] = STATE(7300), + [sym_comment] = STATE(326), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1653), + [aux_sym_cmd_identifier_token3] = ACTIONS(1653), + [aux_sym_cmd_identifier_token4] = ACTIONS(1653), + [aux_sym_cmd_identifier_token5] = ACTIONS(1653), + [aux_sym_cmd_identifier_token6] = ACTIONS(1653), + [aux_sym_cmd_identifier_token7] = ACTIONS(1653), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1653), + [aux_sym_cmd_identifier_token11] = ACTIONS(1653), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1653), + [aux_sym_cmd_identifier_token17] = ACTIONS(1653), + [aux_sym_cmd_identifier_token18] = ACTIONS(1653), + [aux_sym_cmd_identifier_token19] = ACTIONS(1653), + [aux_sym_cmd_identifier_token20] = ACTIONS(1653), + [aux_sym_cmd_identifier_token21] = ACTIONS(1653), + [aux_sym_cmd_identifier_token22] = ACTIONS(1653), + [aux_sym_cmd_identifier_token23] = ACTIONS(1653), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1653), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1653), + [aux_sym_cmd_identifier_token28] = ACTIONS(1653), + [aux_sym_cmd_identifier_token29] = ACTIONS(1653), + [aux_sym_cmd_identifier_token30] = ACTIONS(1653), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1653), + [aux_sym_cmd_identifier_token37] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1659), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [aux_sym__val_number_token4] = ACTIONS(1653), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1653), [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [sym_duration_unit] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1653), + [sym__entry_separator] = ACTIONS(1665), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1665), }, - [341] = { - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1669), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1669), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1669), - [aux_sym_cmd_identifier_token32] = ACTIONS(1669), - [aux_sym_cmd_identifier_token33] = ACTIONS(1669), - [aux_sym_cmd_identifier_token34] = ACTIONS(1669), - [aux_sym_cmd_identifier_token35] = ACTIONS(1669), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [aux_sym_cmd_identifier_token37] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_make] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_as] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [sym__entry_separator] = ACTIONS(1671), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), + [327] = { + [sym_comment] = STATE(327), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), + [aux_sym_cmd_identifier_token37] = ACTIONS(1599), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1599), + [aux_sym_cmd_identifier_token40] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), + [sym__entry_separator] = ACTIONS(1601), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1671), + [sym_raw_string_begin] = ACTIONS(1601), }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), + [328] = { + [sym__expr_parenthesized_immediate] = STATE(507), + [sym__immediate_decimal] = STATE(508), + [sym_val_variable] = STATE(507), + [sym_comment] = STATE(328), + [anon_sym_export] = ACTIONS(1587), + [anon_sym_alias] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1587), + [anon_sym_let_DASHenv] = ACTIONS(1587), + [anon_sym_mut] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [aux_sym_cmd_identifier_token1] = ACTIONS(1587), + [aux_sym_cmd_identifier_token2] = ACTIONS(1597), + [aux_sym_cmd_identifier_token3] = ACTIONS(1597), + [aux_sym_cmd_identifier_token4] = ACTIONS(1597), + [aux_sym_cmd_identifier_token5] = ACTIONS(1597), + [aux_sym_cmd_identifier_token6] = ACTIONS(1597), + [aux_sym_cmd_identifier_token7] = ACTIONS(1597), + [aux_sym_cmd_identifier_token8] = ACTIONS(1587), + [aux_sym_cmd_identifier_token9] = ACTIONS(1587), + [aux_sym_cmd_identifier_token10] = ACTIONS(1597), + [aux_sym_cmd_identifier_token11] = ACTIONS(1597), + [aux_sym_cmd_identifier_token12] = ACTIONS(1587), + [aux_sym_cmd_identifier_token13] = ACTIONS(1587), + [aux_sym_cmd_identifier_token14] = ACTIONS(1587), + [aux_sym_cmd_identifier_token15] = ACTIONS(1587), + [aux_sym_cmd_identifier_token16] = ACTIONS(1597), + [aux_sym_cmd_identifier_token17] = ACTIONS(1597), + [aux_sym_cmd_identifier_token18] = ACTIONS(1597), + [aux_sym_cmd_identifier_token19] = ACTIONS(1597), + [aux_sym_cmd_identifier_token20] = ACTIONS(1597), + [aux_sym_cmd_identifier_token21] = ACTIONS(1597), + [aux_sym_cmd_identifier_token22] = ACTIONS(1597), + [aux_sym_cmd_identifier_token23] = ACTIONS(1597), + [aux_sym_cmd_identifier_token24] = ACTIONS(1597), + [aux_sym_cmd_identifier_token25] = ACTIONS(1597), + [aux_sym_cmd_identifier_token26] = ACTIONS(1597), + [aux_sym_cmd_identifier_token27] = ACTIONS(1597), + [aux_sym_cmd_identifier_token28] = ACTIONS(1597), + [aux_sym_cmd_identifier_token29] = ACTIONS(1597), + [aux_sym_cmd_identifier_token30] = ACTIONS(1597), + [aux_sym_cmd_identifier_token31] = ACTIONS(1597), + [aux_sym_cmd_identifier_token32] = ACTIONS(1597), + [aux_sym_cmd_identifier_token33] = ACTIONS(1597), + [aux_sym_cmd_identifier_token34] = ACTIONS(1587), + [aux_sym_cmd_identifier_token35] = ACTIONS(1597), + [aux_sym_cmd_identifier_token36] = ACTIONS(1597), + [aux_sym_cmd_identifier_token37] = ACTIONS(1597), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1597), + [aux_sym_cmd_identifier_token40] = ACTIONS(1597), + [anon_sym_def] = ACTIONS(1587), + [anon_sym_export_DASHenv] = ACTIONS(1587), + [anon_sym_extern] = ACTIONS(1587), + [anon_sym_module] = ACTIONS(1587), + [anon_sym_use] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_make] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_else] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1587), + [anon_sym_catch] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_source] = ACTIONS(1587), + [anon_sym_source_DASHenv] = ACTIONS(1587), + [anon_sym_register] = ACTIONS(1587), + [anon_sym_hide] = ACTIONS(1587), + [anon_sym_hide_DASHenv] = ACTIONS(1587), + [anon_sym_overlay] = ACTIONS(1587), + [anon_sym_as] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(1669), + [aux_sym__immediate_decimal_token1] = ACTIONS(1671), + [aux_sym__immediate_decimal_token3] = ACTIONS(1673), + [aux_sym__immediate_decimal_token4] = ACTIONS(1675), + [aux_sym__immediate_decimal_token5] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1597), + }, + [329] = { + [sym__expr_parenthesized_immediate] = STATE(645), + [sym__immediate_decimal] = STATE(646), + [sym_val_variable] = STATE(645), + [sym_comment] = STATE(329), + [anon_sym_export] = ACTIONS(1587), + [anon_sym_alias] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1587), + [anon_sym_let_DASHenv] = ACTIONS(1587), + [anon_sym_mut] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [aux_sym_cmd_identifier_token1] = ACTIONS(1587), + [aux_sym_cmd_identifier_token2] = ACTIONS(1587), + [aux_sym_cmd_identifier_token3] = ACTIONS(1587), + [aux_sym_cmd_identifier_token4] = ACTIONS(1587), + [aux_sym_cmd_identifier_token5] = ACTIONS(1587), + [aux_sym_cmd_identifier_token6] = ACTIONS(1587), + [aux_sym_cmd_identifier_token7] = ACTIONS(1587), + [aux_sym_cmd_identifier_token8] = ACTIONS(1587), + [aux_sym_cmd_identifier_token9] = ACTIONS(1587), + [aux_sym_cmd_identifier_token10] = ACTIONS(1587), + [aux_sym_cmd_identifier_token11] = ACTIONS(1587), + [aux_sym_cmd_identifier_token12] = ACTIONS(1587), + [aux_sym_cmd_identifier_token13] = ACTIONS(1587), + [aux_sym_cmd_identifier_token14] = ACTIONS(1587), + [aux_sym_cmd_identifier_token15] = ACTIONS(1587), + [aux_sym_cmd_identifier_token16] = ACTIONS(1587), + [aux_sym_cmd_identifier_token17] = ACTIONS(1587), + [aux_sym_cmd_identifier_token18] = ACTIONS(1587), + [aux_sym_cmd_identifier_token19] = ACTIONS(1587), + [aux_sym_cmd_identifier_token20] = ACTIONS(1587), + [aux_sym_cmd_identifier_token21] = ACTIONS(1587), + [aux_sym_cmd_identifier_token22] = ACTIONS(1587), + [aux_sym_cmd_identifier_token23] = ACTIONS(1587), + [aux_sym_cmd_identifier_token24] = ACTIONS(1587), + [aux_sym_cmd_identifier_token25] = ACTIONS(1587), + [aux_sym_cmd_identifier_token26] = ACTIONS(1587), + [aux_sym_cmd_identifier_token27] = ACTIONS(1587), + [aux_sym_cmd_identifier_token28] = ACTIONS(1587), + [aux_sym_cmd_identifier_token29] = ACTIONS(1587), + [aux_sym_cmd_identifier_token30] = ACTIONS(1587), + [aux_sym_cmd_identifier_token31] = ACTIONS(1587), + [aux_sym_cmd_identifier_token32] = ACTIONS(1587), + [aux_sym_cmd_identifier_token33] = ACTIONS(1587), + [aux_sym_cmd_identifier_token34] = ACTIONS(1587), + [aux_sym_cmd_identifier_token35] = ACTIONS(1587), + [aux_sym_cmd_identifier_token36] = ACTIONS(1587), + [aux_sym_cmd_identifier_token37] = ACTIONS(1587), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1587), + [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1587), + [anon_sym_export_DASHenv] = ACTIONS(1587), + [anon_sym_extern] = ACTIONS(1587), + [anon_sym_module] = ACTIONS(1587), + [anon_sym_use] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_make] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_else] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1587), + [anon_sym_catch] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_source] = ACTIONS(1587), + [anon_sym_source_DASHenv] = ACTIONS(1587), + [anon_sym_register] = ACTIONS(1587), + [anon_sym_hide] = ACTIONS(1587), + [anon_sym_hide_DASHenv] = ACTIONS(1587), + [anon_sym_overlay] = ACTIONS(1587), + [anon_sym_as] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1587), + [aux_sym__val_number_token2] = ACTIONS(1587), + [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym__str_single_quotes] = ACTIONS(1587), + [sym__str_back_ticks] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), + [sym__entry_separator] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1597), + }, + [330] = { + [sym__expr_parenthesized_immediate] = STATE(657), + [sym__immediate_decimal] = STATE(658), + [sym_val_variable] = STATE(657), + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_alias] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_let_DASHenv] = ACTIONS(1685), + [anon_sym_mut] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [aux_sym_cmd_identifier_token1] = ACTIONS(1685), + [aux_sym_cmd_identifier_token2] = ACTIONS(1685), + [aux_sym_cmd_identifier_token3] = ACTIONS(1685), + [aux_sym_cmd_identifier_token4] = ACTIONS(1685), + [aux_sym_cmd_identifier_token5] = ACTIONS(1685), + [aux_sym_cmd_identifier_token6] = ACTIONS(1685), + [aux_sym_cmd_identifier_token7] = ACTIONS(1685), + [aux_sym_cmd_identifier_token8] = ACTIONS(1685), + [aux_sym_cmd_identifier_token9] = ACTIONS(1685), + [aux_sym_cmd_identifier_token10] = ACTIONS(1685), + [aux_sym_cmd_identifier_token11] = ACTIONS(1685), + [aux_sym_cmd_identifier_token12] = ACTIONS(1685), + [aux_sym_cmd_identifier_token13] = ACTIONS(1685), + [aux_sym_cmd_identifier_token14] = ACTIONS(1685), + [aux_sym_cmd_identifier_token15] = ACTIONS(1685), + [aux_sym_cmd_identifier_token16] = ACTIONS(1685), + [aux_sym_cmd_identifier_token17] = ACTIONS(1685), + [aux_sym_cmd_identifier_token18] = ACTIONS(1685), + [aux_sym_cmd_identifier_token19] = ACTIONS(1685), + [aux_sym_cmd_identifier_token20] = ACTIONS(1685), + [aux_sym_cmd_identifier_token21] = ACTIONS(1685), + [aux_sym_cmd_identifier_token22] = ACTIONS(1685), + [aux_sym_cmd_identifier_token23] = ACTIONS(1685), + [aux_sym_cmd_identifier_token24] = ACTIONS(1685), + [aux_sym_cmd_identifier_token25] = ACTIONS(1685), + [aux_sym_cmd_identifier_token26] = ACTIONS(1685), + [aux_sym_cmd_identifier_token27] = ACTIONS(1685), + [aux_sym_cmd_identifier_token28] = ACTIONS(1685), + [aux_sym_cmd_identifier_token29] = ACTIONS(1685), + [aux_sym_cmd_identifier_token30] = ACTIONS(1685), + [aux_sym_cmd_identifier_token31] = ACTIONS(1685), + [aux_sym_cmd_identifier_token32] = ACTIONS(1685), + [aux_sym_cmd_identifier_token33] = ACTIONS(1685), + [aux_sym_cmd_identifier_token34] = ACTIONS(1685), + [aux_sym_cmd_identifier_token35] = ACTIONS(1685), + [aux_sym_cmd_identifier_token36] = ACTIONS(1685), + [aux_sym_cmd_identifier_token37] = ACTIONS(1685), + [aux_sym_cmd_identifier_token38] = ACTIONS(1685), + [aux_sym_cmd_identifier_token39] = ACTIONS(1685), + [aux_sym_cmd_identifier_token40] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_export_DASHenv] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_make] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_else] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_catch] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_source] = ACTIONS(1685), + [anon_sym_source_DASHenv] = ACTIONS(1685), + [anon_sym_register] = ACTIONS(1685), + [anon_sym_hide] = ACTIONS(1685), + [anon_sym_hide_DASHenv] = ACTIONS(1685), + [anon_sym_overlay] = ACTIONS(1685), + [anon_sym_as] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1685), + [aux_sym__val_number_decimal_token4] = ACTIONS(1685), + [aux_sym__val_number_token1] = ACTIONS(1685), + [aux_sym__val_number_token2] = ACTIONS(1685), + [aux_sym__val_number_token3] = ACTIONS(1685), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1685), + [sym__entry_separator] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1687), + }, + [331] = { + [sym__expr_parenthesized_immediate] = STATE(659), + [sym__immediate_decimal] = STATE(660), + [sym_val_variable] = STATE(659), + [sym_comment] = STATE(331), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_alias] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_let_DASHenv] = ACTIONS(1689), + [anon_sym_mut] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [aux_sym_cmd_identifier_token1] = ACTIONS(1689), + [aux_sym_cmd_identifier_token2] = ACTIONS(1689), + [aux_sym_cmd_identifier_token3] = ACTIONS(1689), + [aux_sym_cmd_identifier_token4] = ACTIONS(1689), + [aux_sym_cmd_identifier_token5] = ACTIONS(1689), + [aux_sym_cmd_identifier_token6] = ACTIONS(1689), + [aux_sym_cmd_identifier_token7] = ACTIONS(1689), + [aux_sym_cmd_identifier_token8] = ACTIONS(1689), + [aux_sym_cmd_identifier_token9] = ACTIONS(1689), + [aux_sym_cmd_identifier_token10] = ACTIONS(1689), + [aux_sym_cmd_identifier_token11] = ACTIONS(1689), + [aux_sym_cmd_identifier_token12] = ACTIONS(1689), + [aux_sym_cmd_identifier_token13] = ACTIONS(1689), + [aux_sym_cmd_identifier_token14] = ACTIONS(1689), + [aux_sym_cmd_identifier_token15] = ACTIONS(1689), + [aux_sym_cmd_identifier_token16] = ACTIONS(1689), + [aux_sym_cmd_identifier_token17] = ACTIONS(1689), + [aux_sym_cmd_identifier_token18] = ACTIONS(1689), + [aux_sym_cmd_identifier_token19] = ACTIONS(1689), + [aux_sym_cmd_identifier_token20] = ACTIONS(1689), + [aux_sym_cmd_identifier_token21] = ACTIONS(1689), + [aux_sym_cmd_identifier_token22] = ACTIONS(1689), + [aux_sym_cmd_identifier_token23] = ACTIONS(1689), + [aux_sym_cmd_identifier_token24] = ACTIONS(1689), + [aux_sym_cmd_identifier_token25] = ACTIONS(1689), + [aux_sym_cmd_identifier_token26] = ACTIONS(1689), + [aux_sym_cmd_identifier_token27] = ACTIONS(1689), + [aux_sym_cmd_identifier_token28] = ACTIONS(1689), + [aux_sym_cmd_identifier_token29] = ACTIONS(1689), + [aux_sym_cmd_identifier_token30] = ACTIONS(1689), + [aux_sym_cmd_identifier_token31] = ACTIONS(1689), + [aux_sym_cmd_identifier_token32] = ACTIONS(1689), + [aux_sym_cmd_identifier_token33] = ACTIONS(1689), + [aux_sym_cmd_identifier_token34] = ACTIONS(1689), + [aux_sym_cmd_identifier_token35] = ACTIONS(1689), + [aux_sym_cmd_identifier_token36] = ACTIONS(1689), + [aux_sym_cmd_identifier_token37] = ACTIONS(1689), + [aux_sym_cmd_identifier_token38] = ACTIONS(1689), + [aux_sym_cmd_identifier_token39] = ACTIONS(1689), + [aux_sym_cmd_identifier_token40] = ACTIONS(1689), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_export_DASHenv] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_make] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_catch] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_source] = ACTIONS(1689), + [anon_sym_source_DASHenv] = ACTIONS(1689), + [anon_sym_register] = ACTIONS(1689), + [anon_sym_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1689), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1689), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1689), + [aux_sym__val_number_decimal_token3] = ACTIONS(1689), + [aux_sym__val_number_decimal_token4] = ACTIONS(1689), + [aux_sym__val_number_token1] = ACTIONS(1689), + [aux_sym__val_number_token2] = ACTIONS(1689), + [aux_sym__val_number_token3] = ACTIONS(1689), + [aux_sym__val_number_token4] = ACTIONS(1689), + [aux_sym__val_number_token5] = ACTIONS(1689), + [aux_sym__val_number_token6] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1689), + [sym__entry_separator] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1691), + }, + [332] = { + [sym__expr_parenthesized_immediate] = STATE(662), + [sym__immediate_decimal] = STATE(664), + [sym_val_variable] = STATE(662), + [sym_comment] = STATE(332), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1693), + [aux_sym_cmd_identifier_token3] = ACTIONS(1693), + [aux_sym_cmd_identifier_token4] = ACTIONS(1693), + [aux_sym_cmd_identifier_token5] = ACTIONS(1693), + [aux_sym_cmd_identifier_token6] = ACTIONS(1693), + [aux_sym_cmd_identifier_token7] = ACTIONS(1693), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1693), + [aux_sym_cmd_identifier_token11] = ACTIONS(1693), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1693), + [aux_sym_cmd_identifier_token17] = ACTIONS(1693), + [aux_sym_cmd_identifier_token18] = ACTIONS(1693), + [aux_sym_cmd_identifier_token19] = ACTIONS(1693), + [aux_sym_cmd_identifier_token20] = ACTIONS(1693), + [aux_sym_cmd_identifier_token21] = ACTIONS(1693), + [aux_sym_cmd_identifier_token22] = ACTIONS(1693), + [aux_sym_cmd_identifier_token23] = ACTIONS(1693), + [aux_sym_cmd_identifier_token24] = ACTIONS(1693), + [aux_sym_cmd_identifier_token25] = ACTIONS(1693), + [aux_sym_cmd_identifier_token26] = ACTIONS(1693), + [aux_sym_cmd_identifier_token27] = ACTIONS(1693), + [aux_sym_cmd_identifier_token28] = ACTIONS(1693), + [aux_sym_cmd_identifier_token29] = ACTIONS(1693), + [aux_sym_cmd_identifier_token30] = ACTIONS(1693), + [aux_sym_cmd_identifier_token31] = ACTIONS(1693), + [aux_sym_cmd_identifier_token32] = ACTIONS(1693), + [aux_sym_cmd_identifier_token33] = ACTIONS(1693), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1693), + [aux_sym_cmd_identifier_token36] = ACTIONS(1693), + [aux_sym_cmd_identifier_token37] = ACTIONS(1693), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1693), + [aux_sym_cmd_identifier_token40] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1693), + [aux_sym__val_number_token2] = ACTIONS(1693), + [aux_sym__val_number_token3] = ACTIONS(1693), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), + [sym__entry_separator] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1695), + }, + [333] = { + [sym__expr_parenthesized_immediate] = STATE(747), + [sym__immediate_decimal] = STATE(556), + [sym_val_variable] = STATE(747), + [sym_comment] = STATE(333), + [anon_sym_export] = ACTIONS(1569), + [anon_sym_alias] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_let_DASHenv] = ACTIONS(1569), + [anon_sym_mut] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [aux_sym_cmd_identifier_token1] = ACTIONS(1569), + [aux_sym_cmd_identifier_token2] = ACTIONS(1583), + [aux_sym_cmd_identifier_token3] = ACTIONS(1583), + [aux_sym_cmd_identifier_token4] = ACTIONS(1583), + [aux_sym_cmd_identifier_token5] = ACTIONS(1583), + [aux_sym_cmd_identifier_token6] = ACTIONS(1583), + [aux_sym_cmd_identifier_token7] = ACTIONS(1583), + [aux_sym_cmd_identifier_token8] = ACTIONS(1569), + [aux_sym_cmd_identifier_token9] = ACTIONS(1569), + [aux_sym_cmd_identifier_token10] = ACTIONS(1583), + [aux_sym_cmd_identifier_token11] = ACTIONS(1583), + [aux_sym_cmd_identifier_token12] = ACTIONS(1569), + [aux_sym_cmd_identifier_token13] = ACTIONS(1569), + [aux_sym_cmd_identifier_token14] = ACTIONS(1569), + [aux_sym_cmd_identifier_token15] = ACTIONS(1569), + [aux_sym_cmd_identifier_token16] = ACTIONS(1583), + [aux_sym_cmd_identifier_token17] = ACTIONS(1583), + [aux_sym_cmd_identifier_token18] = ACTIONS(1583), + [aux_sym_cmd_identifier_token19] = ACTIONS(1583), + [aux_sym_cmd_identifier_token20] = ACTIONS(1583), + [aux_sym_cmd_identifier_token21] = ACTIONS(1583), + [aux_sym_cmd_identifier_token22] = ACTIONS(1583), + [aux_sym_cmd_identifier_token23] = ACTIONS(1583), + [aux_sym_cmd_identifier_token24] = ACTIONS(1583), + [aux_sym_cmd_identifier_token25] = ACTIONS(1583), + [aux_sym_cmd_identifier_token26] = ACTIONS(1583), + [aux_sym_cmd_identifier_token27] = ACTIONS(1583), + [aux_sym_cmd_identifier_token28] = ACTIONS(1583), + [aux_sym_cmd_identifier_token29] = ACTIONS(1583), + [aux_sym_cmd_identifier_token30] = ACTIONS(1583), + [aux_sym_cmd_identifier_token31] = ACTIONS(1583), + [aux_sym_cmd_identifier_token32] = ACTIONS(1583), + [aux_sym_cmd_identifier_token33] = ACTIONS(1583), + [aux_sym_cmd_identifier_token34] = ACTIONS(1569), + [aux_sym_cmd_identifier_token35] = ACTIONS(1583), + [aux_sym_cmd_identifier_token36] = ACTIONS(1583), + [aux_sym_cmd_identifier_token37] = ACTIONS(1583), + [aux_sym_cmd_identifier_token38] = ACTIONS(1569), + [aux_sym_cmd_identifier_token39] = ACTIONS(1583), + [aux_sym_cmd_identifier_token40] = ACTIONS(1583), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_export_DASHenv] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_make] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_catch] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_source] = ACTIONS(1569), + [anon_sym_source_DASHenv] = ACTIONS(1569), + [anon_sym_register] = ACTIONS(1569), + [anon_sym_hide] = ACTIONS(1569), + [anon_sym_hide_DASHenv] = ACTIONS(1569), + [anon_sym_overlay] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(1701), + [aux_sym__immediate_decimal_token3] = ACTIONS(1703), + [aux_sym__immediate_decimal_token4] = ACTIONS(1705), + [aux_sym__immediate_decimal_token5] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1569), + [aux_sym__val_number_token5] = ACTIONS(1569), + [aux_sym__val_number_token6] = ACTIONS(1569), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1583), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1583), + }, + [334] = { + [sym__expr_parenthesized_immediate] = STATE(696), + [sym__immediate_decimal] = STATE(559), + [sym_val_variable] = STATE(696), + [sym_comment] = STATE(334), + [anon_sym_export] = ACTIONS(1617), + [anon_sym_alias] = ACTIONS(1617), + [anon_sym_let] = ACTIONS(1617), + [anon_sym_let_DASHenv] = ACTIONS(1617), + [anon_sym_mut] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [aux_sym_cmd_identifier_token1] = ACTIONS(1617), + [aux_sym_cmd_identifier_token2] = ACTIONS(1619), + [aux_sym_cmd_identifier_token3] = ACTIONS(1619), + [aux_sym_cmd_identifier_token4] = ACTIONS(1619), + [aux_sym_cmd_identifier_token5] = ACTIONS(1619), + [aux_sym_cmd_identifier_token6] = ACTIONS(1619), + [aux_sym_cmd_identifier_token7] = ACTIONS(1619), + [aux_sym_cmd_identifier_token8] = ACTIONS(1617), + [aux_sym_cmd_identifier_token9] = ACTIONS(1617), + [aux_sym_cmd_identifier_token10] = ACTIONS(1619), + [aux_sym_cmd_identifier_token11] = ACTIONS(1619), + [aux_sym_cmd_identifier_token12] = ACTIONS(1617), + [aux_sym_cmd_identifier_token13] = ACTIONS(1617), + [aux_sym_cmd_identifier_token14] = ACTIONS(1617), + [aux_sym_cmd_identifier_token15] = ACTIONS(1617), + [aux_sym_cmd_identifier_token16] = ACTIONS(1619), + [aux_sym_cmd_identifier_token17] = ACTIONS(1619), + [aux_sym_cmd_identifier_token18] = ACTIONS(1619), + [aux_sym_cmd_identifier_token19] = ACTIONS(1619), + [aux_sym_cmd_identifier_token20] = ACTIONS(1619), + [aux_sym_cmd_identifier_token21] = ACTIONS(1619), + [aux_sym_cmd_identifier_token22] = ACTIONS(1619), + [aux_sym_cmd_identifier_token23] = ACTIONS(1619), + [aux_sym_cmd_identifier_token24] = ACTIONS(1619), + [aux_sym_cmd_identifier_token25] = ACTIONS(1619), + [aux_sym_cmd_identifier_token26] = ACTIONS(1619), + [aux_sym_cmd_identifier_token27] = ACTIONS(1619), + [aux_sym_cmd_identifier_token28] = ACTIONS(1619), + [aux_sym_cmd_identifier_token29] = ACTIONS(1619), + [aux_sym_cmd_identifier_token30] = ACTIONS(1619), + [aux_sym_cmd_identifier_token31] = ACTIONS(1619), + [aux_sym_cmd_identifier_token32] = ACTIONS(1619), + [aux_sym_cmd_identifier_token33] = ACTIONS(1619), + [aux_sym_cmd_identifier_token34] = ACTIONS(1617), + [aux_sym_cmd_identifier_token35] = ACTIONS(1619), + [aux_sym_cmd_identifier_token36] = ACTIONS(1619), + [aux_sym_cmd_identifier_token37] = ACTIONS(1619), + [aux_sym_cmd_identifier_token38] = ACTIONS(1617), + [aux_sym_cmd_identifier_token39] = ACTIONS(1619), + [aux_sym_cmd_identifier_token40] = ACTIONS(1619), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_export_DASHenv] = ACTIONS(1617), + [anon_sym_extern] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1617), + [anon_sym_use] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_in2] = ACTIONS(1617), + [anon_sym_loop] = ACTIONS(1617), + [anon_sym_make] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_else] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_catch] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_source] = ACTIONS(1617), + [anon_sym_source_DASHenv] = ACTIONS(1617), + [anon_sym_register] = ACTIONS(1617), + [anon_sym_hide] = ACTIONS(1617), + [anon_sym_hide_DASHenv] = ACTIONS(1617), + [anon_sym_overlay] = ACTIONS(1617), + [anon_sym_as] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(1701), + [aux_sym__immediate_decimal_token3] = ACTIONS(1703), + [aux_sym__immediate_decimal_token4] = ACTIONS(1705), + [aux_sym__immediate_decimal_token5] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1617), + [aux_sym__val_number_token5] = ACTIONS(1617), + [aux_sym__val_number_token6] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1619), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1619), + }, + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [aux_sym_cmd_identifier_token37] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1711), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1711), + }, + [336] = { + [sym_cell_path] = STATE(480), + [sym_path] = STATE(400), + [sym_comment] = STATE(336), + [aux_sym_cell_path_repeat1] = STATE(363), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(935), + [aux_sym_cmd_identifier_token3] = ACTIONS(935), + [aux_sym_cmd_identifier_token4] = ACTIONS(935), + [aux_sym_cmd_identifier_token5] = ACTIONS(935), + [aux_sym_cmd_identifier_token6] = ACTIONS(935), + [aux_sym_cmd_identifier_token7] = ACTIONS(935), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(935), + [aux_sym_cmd_identifier_token11] = ACTIONS(935), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(935), + [aux_sym_cmd_identifier_token17] = ACTIONS(935), + [aux_sym_cmd_identifier_token18] = ACTIONS(935), + [aux_sym_cmd_identifier_token19] = ACTIONS(935), + [aux_sym_cmd_identifier_token20] = ACTIONS(935), + [aux_sym_cmd_identifier_token21] = ACTIONS(935), + [aux_sym_cmd_identifier_token22] = ACTIONS(935), + [aux_sym_cmd_identifier_token23] = ACTIONS(935), + [aux_sym_cmd_identifier_token24] = ACTIONS(935), + [aux_sym_cmd_identifier_token25] = ACTIONS(935), + [aux_sym_cmd_identifier_token26] = ACTIONS(935), + [aux_sym_cmd_identifier_token27] = ACTIONS(935), + [aux_sym_cmd_identifier_token28] = ACTIONS(935), + [aux_sym_cmd_identifier_token29] = ACTIONS(935), + [aux_sym_cmd_identifier_token30] = ACTIONS(935), + [aux_sym_cmd_identifier_token31] = ACTIONS(935), + [aux_sym_cmd_identifier_token32] = ACTIONS(935), + [aux_sym_cmd_identifier_token33] = ACTIONS(935), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(935), + [aux_sym_cmd_identifier_token36] = ACTIONS(935), + [aux_sym_cmd_identifier_token37] = ACTIONS(935), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(935), + [aux_sym_cmd_identifier_token40] = ACTIONS(935), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(935), + [aux_sym__val_number_decimal_token3] = ACTIONS(935), + [aux_sym__val_number_decimal_token4] = ACTIONS(935), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), + [sym__entry_separator] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(937), + }, + [337] = { + [sym_cell_path] = STATE(448), + [sym_path] = STATE(400), + [sym_comment] = STATE(337), + [aux_sym_cell_path_repeat1] = STATE(363), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_alias] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_let_DASHenv] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [aux_sym_cmd_identifier_token1] = ACTIONS(1717), + [aux_sym_cmd_identifier_token2] = ACTIONS(1717), + [aux_sym_cmd_identifier_token3] = ACTIONS(1717), + [aux_sym_cmd_identifier_token4] = ACTIONS(1717), + [aux_sym_cmd_identifier_token5] = ACTIONS(1717), + [aux_sym_cmd_identifier_token6] = ACTIONS(1717), + [aux_sym_cmd_identifier_token7] = ACTIONS(1717), + [aux_sym_cmd_identifier_token8] = ACTIONS(1717), + [aux_sym_cmd_identifier_token9] = ACTIONS(1717), + [aux_sym_cmd_identifier_token10] = ACTIONS(1717), + [aux_sym_cmd_identifier_token11] = ACTIONS(1717), + [aux_sym_cmd_identifier_token12] = ACTIONS(1717), + [aux_sym_cmd_identifier_token13] = ACTIONS(1717), + [aux_sym_cmd_identifier_token14] = ACTIONS(1717), + [aux_sym_cmd_identifier_token15] = ACTIONS(1717), + [aux_sym_cmd_identifier_token16] = ACTIONS(1717), + [aux_sym_cmd_identifier_token17] = ACTIONS(1717), + [aux_sym_cmd_identifier_token18] = ACTIONS(1717), + [aux_sym_cmd_identifier_token19] = ACTIONS(1717), + [aux_sym_cmd_identifier_token20] = ACTIONS(1717), + [aux_sym_cmd_identifier_token21] = ACTIONS(1717), + [aux_sym_cmd_identifier_token22] = ACTIONS(1717), + [aux_sym_cmd_identifier_token23] = ACTIONS(1717), + [aux_sym_cmd_identifier_token24] = ACTIONS(1717), + [aux_sym_cmd_identifier_token25] = ACTIONS(1717), + [aux_sym_cmd_identifier_token26] = ACTIONS(1717), + [aux_sym_cmd_identifier_token27] = ACTIONS(1717), + [aux_sym_cmd_identifier_token28] = ACTIONS(1717), + [aux_sym_cmd_identifier_token29] = ACTIONS(1717), + [aux_sym_cmd_identifier_token30] = ACTIONS(1717), + [aux_sym_cmd_identifier_token31] = ACTIONS(1717), + [aux_sym_cmd_identifier_token32] = ACTIONS(1717), + [aux_sym_cmd_identifier_token33] = ACTIONS(1717), + [aux_sym_cmd_identifier_token34] = ACTIONS(1717), + [aux_sym_cmd_identifier_token35] = ACTIONS(1717), + [aux_sym_cmd_identifier_token36] = ACTIONS(1717), + [aux_sym_cmd_identifier_token37] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_export_DASHenv] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_in2] = ACTIONS(1717), + [anon_sym_loop] = ACTIONS(1717), + [anon_sym_make] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_catch] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_source] = ACTIONS(1717), + [anon_sym_source_DASHenv] = ACTIONS(1717), + [anon_sym_register] = ACTIONS(1717), + [anon_sym_hide] = ACTIONS(1717), + [anon_sym_hide_DASHenv] = ACTIONS(1717), + [anon_sym_overlay] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [aux_sym__val_number_token4] = ACTIONS(1717), + [aux_sym__val_number_token5] = ACTIONS(1717), + [aux_sym__val_number_token6] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [sym__entry_separator] = ACTIONS(1719), + [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1719), + }, + [338] = { + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1601), + [aux_sym_cmd_identifier_token3] = ACTIONS(1601), + [aux_sym_cmd_identifier_token4] = ACTIONS(1601), + [aux_sym_cmd_identifier_token5] = ACTIONS(1601), + [aux_sym_cmd_identifier_token6] = ACTIONS(1601), + [aux_sym_cmd_identifier_token7] = ACTIONS(1601), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1601), + [aux_sym_cmd_identifier_token11] = ACTIONS(1601), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1601), + [aux_sym_cmd_identifier_token17] = ACTIONS(1601), + [aux_sym_cmd_identifier_token18] = ACTIONS(1601), + [aux_sym_cmd_identifier_token19] = ACTIONS(1601), + [aux_sym_cmd_identifier_token20] = ACTIONS(1601), + [aux_sym_cmd_identifier_token21] = ACTIONS(1601), + [aux_sym_cmd_identifier_token22] = ACTIONS(1601), + [aux_sym_cmd_identifier_token23] = ACTIONS(1601), + [aux_sym_cmd_identifier_token24] = ACTIONS(1601), + [aux_sym_cmd_identifier_token25] = ACTIONS(1601), + [aux_sym_cmd_identifier_token26] = ACTIONS(1601), + [aux_sym_cmd_identifier_token27] = ACTIONS(1601), + [aux_sym_cmd_identifier_token28] = ACTIONS(1601), + [aux_sym_cmd_identifier_token29] = ACTIONS(1601), + [aux_sym_cmd_identifier_token30] = ACTIONS(1601), + [aux_sym_cmd_identifier_token31] = ACTIONS(1601), + [aux_sym_cmd_identifier_token32] = ACTIONS(1601), + [aux_sym_cmd_identifier_token33] = ACTIONS(1601), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1601), + [aux_sym_cmd_identifier_token36] = ACTIONS(1601), + [aux_sym_cmd_identifier_token37] = ACTIONS(1601), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1601), + [aux_sym_cmd_identifier_token40] = ACTIONS(1601), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(1647), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1601), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), + }, + [339] = { + [sym_comment] = STATE(339), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), [aux_sym_cmd_identifier_token2] = ACTIONS(1711), [aux_sym_cmd_identifier_token3] = ACTIONS(1711), [aux_sym_cmd_identifier_token4] = ACTIONS(1711), [aux_sym_cmd_identifier_token5] = ACTIONS(1711), [aux_sym_cmd_identifier_token6] = ACTIONS(1711), [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), [aux_sym_cmd_identifier_token10] = ACTIONS(1711), [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), [aux_sym_cmd_identifier_token16] = ACTIONS(1711), [aux_sym_cmd_identifier_token17] = ACTIONS(1711), [aux_sym_cmd_identifier_token18] = ACTIONS(1711), @@ -123507,1686 +117896,1676 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1711), [aux_sym_cmd_identifier_token32] = ACTIONS(1711), [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), [aux_sym_cmd_identifier_token35] = ACTIONS(1711), [aux_sym_cmd_identifier_token36] = ACTIONS(1711), [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), [aux_sym_cmd_identifier_token39] = ACTIONS(1711), [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(1721), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), [aux_sym__val_number_decimal_token2] = ACTIONS(1711), [aux_sym__val_number_decimal_token3] = ACTIONS(1711), [aux_sym__val_number_decimal_token4] = ACTIONS(1711), [aux_sym__val_number_token1] = ACTIONS(1711), [aux_sym__val_number_token2] = ACTIONS(1711), [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1709), [anon_sym_DQUOTE] = ACTIONS(1711), [sym__str_single_quotes] = ACTIONS(1711), [sym__str_back_ticks] = ACTIONS(1711), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), + }, + [340] = { + [sym_comment] = STATE(340), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), + [aux_sym_cmd_identifier_token37] = ACTIONS(1599), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1599), + [aux_sym_cmd_identifier_token40] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), + [sym__entry_separator] = ACTIONS(1601), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1601), + }, + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1623), + [anon_sym_alias] = ACTIONS(1623), + [anon_sym_let] = ACTIONS(1623), + [anon_sym_let_DASHenv] = ACTIONS(1623), + [anon_sym_mut] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [aux_sym_cmd_identifier_token1] = ACTIONS(1623), + [aux_sym_cmd_identifier_token2] = ACTIONS(1623), + [aux_sym_cmd_identifier_token3] = ACTIONS(1623), + [aux_sym_cmd_identifier_token4] = ACTIONS(1623), + [aux_sym_cmd_identifier_token5] = ACTIONS(1623), + [aux_sym_cmd_identifier_token6] = ACTIONS(1623), + [aux_sym_cmd_identifier_token7] = ACTIONS(1623), + [aux_sym_cmd_identifier_token8] = ACTIONS(1623), + [aux_sym_cmd_identifier_token9] = ACTIONS(1623), + [aux_sym_cmd_identifier_token10] = ACTIONS(1623), + [aux_sym_cmd_identifier_token11] = ACTIONS(1623), + [aux_sym_cmd_identifier_token12] = ACTIONS(1623), + [aux_sym_cmd_identifier_token13] = ACTIONS(1623), + [aux_sym_cmd_identifier_token14] = ACTIONS(1623), + [aux_sym_cmd_identifier_token15] = ACTIONS(1623), + [aux_sym_cmd_identifier_token16] = ACTIONS(1623), + [aux_sym_cmd_identifier_token17] = ACTIONS(1623), + [aux_sym_cmd_identifier_token18] = ACTIONS(1623), + [aux_sym_cmd_identifier_token19] = ACTIONS(1623), + [aux_sym_cmd_identifier_token20] = ACTIONS(1623), + [aux_sym_cmd_identifier_token21] = ACTIONS(1623), + [aux_sym_cmd_identifier_token22] = ACTIONS(1623), + [aux_sym_cmd_identifier_token23] = ACTIONS(1623), + [aux_sym_cmd_identifier_token24] = ACTIONS(1623), + [aux_sym_cmd_identifier_token25] = ACTIONS(1623), + [aux_sym_cmd_identifier_token26] = ACTIONS(1623), + [aux_sym_cmd_identifier_token27] = ACTIONS(1623), + [aux_sym_cmd_identifier_token28] = ACTIONS(1623), + [aux_sym_cmd_identifier_token29] = ACTIONS(1623), + [aux_sym_cmd_identifier_token30] = ACTIONS(1623), + [aux_sym_cmd_identifier_token31] = ACTIONS(1623), + [aux_sym_cmd_identifier_token32] = ACTIONS(1623), + [aux_sym_cmd_identifier_token33] = ACTIONS(1623), + [aux_sym_cmd_identifier_token34] = ACTIONS(1623), + [aux_sym_cmd_identifier_token35] = ACTIONS(1623), + [aux_sym_cmd_identifier_token36] = ACTIONS(1623), + [aux_sym_cmd_identifier_token37] = ACTIONS(1623), + [aux_sym_cmd_identifier_token38] = ACTIONS(1623), + [aux_sym_cmd_identifier_token39] = ACTIONS(1623), + [aux_sym_cmd_identifier_token40] = ACTIONS(1623), + [anon_sym_def] = ACTIONS(1623), + [anon_sym_export_DASHenv] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_module] = ACTIONS(1623), + [anon_sym_use] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_error] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_loop] = ACTIONS(1623), + [anon_sym_make] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_try] = ACTIONS(1623), + [anon_sym_catch] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_source] = ACTIONS(1623), + [anon_sym_source_DASHenv] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_hide] = ACTIONS(1623), + [anon_sym_hide_DASHenv] = ACTIONS(1623), + [anon_sym_overlay] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1623), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1623), + [aux_sym__val_number_decimal_token3] = ACTIONS(1623), + [aux_sym__val_number_decimal_token4] = ACTIONS(1623), + [aux_sym__val_number_token1] = ACTIONS(1623), + [aux_sym__val_number_token2] = ACTIONS(1623), + [aux_sym__val_number_token3] = ACTIONS(1623), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [sym__str_single_quotes] = ACTIONS(1623), + [sym__str_back_ticks] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1623), + [sym__entry_separator] = ACTIONS(1625), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1625), + }, + [342] = { + [sym_comment] = STATE(342), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [aux_sym_cmd_identifier_token37] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1711), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(1711), }, [343] = { - [sym__expr_parenthesized_immediate] = STATE(734), - [sym__immediate_decimal] = STATE(574), - [sym_val_variable] = STATE(734), [sym_comment] = STATE(343), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1579), - [aux_sym_cmd_identifier_token3] = ACTIONS(1579), - [aux_sym_cmd_identifier_token4] = ACTIONS(1579), - [aux_sym_cmd_identifier_token5] = ACTIONS(1579), - [aux_sym_cmd_identifier_token6] = ACTIONS(1579), - [aux_sym_cmd_identifier_token7] = ACTIONS(1579), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1579), - [aux_sym_cmd_identifier_token11] = ACTIONS(1579), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1579), - [aux_sym_cmd_identifier_token17] = ACTIONS(1579), - [aux_sym_cmd_identifier_token18] = ACTIONS(1579), - [aux_sym_cmd_identifier_token19] = ACTIONS(1579), - [aux_sym_cmd_identifier_token20] = ACTIONS(1579), - [aux_sym_cmd_identifier_token21] = ACTIONS(1579), - [aux_sym_cmd_identifier_token22] = ACTIONS(1579), - [aux_sym_cmd_identifier_token23] = ACTIONS(1579), - [aux_sym_cmd_identifier_token24] = ACTIONS(1579), - [aux_sym_cmd_identifier_token25] = ACTIONS(1579), - [aux_sym_cmd_identifier_token26] = ACTIONS(1579), - [aux_sym_cmd_identifier_token27] = ACTIONS(1579), - [aux_sym_cmd_identifier_token28] = ACTIONS(1579), - [aux_sym_cmd_identifier_token29] = ACTIONS(1579), - [aux_sym_cmd_identifier_token30] = ACTIONS(1579), - [aux_sym_cmd_identifier_token31] = ACTIONS(1579), - [aux_sym_cmd_identifier_token32] = ACTIONS(1579), - [aux_sym_cmd_identifier_token33] = ACTIONS(1579), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1579), - [aux_sym_cmd_identifier_token36] = ACTIONS(1579), - [aux_sym_cmd_identifier_token37] = ACTIONS(1579), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1579), - [aux_sym_cmd_identifier_token40] = ACTIONS(1579), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_make] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_as] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), - [aux_sym__immediate_decimal_token1] = ACTIONS(1721), - [aux_sym__immediate_decimal_token3] = ACTIONS(1723), - [aux_sym__immediate_decimal_token4] = ACTIONS(1725), - [aux_sym__immediate_decimal_token5] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1565), - [aux_sym__val_number_token5] = ACTIONS(1565), - [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1579), + [anon_sym_export] = ACTIONS(1723), + [anon_sym_alias] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1723), + [anon_sym_let_DASHenv] = ACTIONS(1723), + [anon_sym_mut] = ACTIONS(1723), + [anon_sym_const] = ACTIONS(1723), + [aux_sym_cmd_identifier_token1] = ACTIONS(1723), + [aux_sym_cmd_identifier_token2] = ACTIONS(1723), + [aux_sym_cmd_identifier_token3] = ACTIONS(1723), + [aux_sym_cmd_identifier_token4] = ACTIONS(1723), + [aux_sym_cmd_identifier_token5] = ACTIONS(1723), + [aux_sym_cmd_identifier_token6] = ACTIONS(1723), + [aux_sym_cmd_identifier_token7] = ACTIONS(1723), + [aux_sym_cmd_identifier_token8] = ACTIONS(1723), + [aux_sym_cmd_identifier_token9] = ACTIONS(1723), + [aux_sym_cmd_identifier_token10] = ACTIONS(1723), + [aux_sym_cmd_identifier_token11] = ACTIONS(1723), + [aux_sym_cmd_identifier_token12] = ACTIONS(1723), + [aux_sym_cmd_identifier_token13] = ACTIONS(1723), + [aux_sym_cmd_identifier_token14] = ACTIONS(1723), + [aux_sym_cmd_identifier_token15] = ACTIONS(1723), + [aux_sym_cmd_identifier_token16] = ACTIONS(1723), + [aux_sym_cmd_identifier_token17] = ACTIONS(1723), + [aux_sym_cmd_identifier_token18] = ACTIONS(1723), + [aux_sym_cmd_identifier_token19] = ACTIONS(1723), + [aux_sym_cmd_identifier_token20] = ACTIONS(1723), + [aux_sym_cmd_identifier_token21] = ACTIONS(1723), + [aux_sym_cmd_identifier_token22] = ACTIONS(1723), + [aux_sym_cmd_identifier_token23] = ACTIONS(1723), + [aux_sym_cmd_identifier_token24] = ACTIONS(1723), + [aux_sym_cmd_identifier_token25] = ACTIONS(1723), + [aux_sym_cmd_identifier_token26] = ACTIONS(1723), + [aux_sym_cmd_identifier_token27] = ACTIONS(1723), + [aux_sym_cmd_identifier_token28] = ACTIONS(1723), + [aux_sym_cmd_identifier_token29] = ACTIONS(1723), + [aux_sym_cmd_identifier_token30] = ACTIONS(1723), + [aux_sym_cmd_identifier_token31] = ACTIONS(1723), + [aux_sym_cmd_identifier_token32] = ACTIONS(1723), + [aux_sym_cmd_identifier_token33] = ACTIONS(1723), + [aux_sym_cmd_identifier_token34] = ACTIONS(1723), + [aux_sym_cmd_identifier_token35] = ACTIONS(1723), + [aux_sym_cmd_identifier_token36] = ACTIONS(1723), + [aux_sym_cmd_identifier_token37] = ACTIONS(1723), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1723), + [aux_sym_cmd_identifier_token40] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1723), + [anon_sym_export_DASHenv] = ACTIONS(1723), + [anon_sym_extern] = ACTIONS(1723), + [anon_sym_module] = ACTIONS(1723), + [anon_sym_use] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_error] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_loop] = ACTIONS(1723), + [anon_sym_make] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1723), + [anon_sym_do] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1723), + [anon_sym_catch] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_source] = ACTIONS(1723), + [anon_sym_source_DASHenv] = ACTIONS(1723), + [anon_sym_register] = ACTIONS(1723), + [anon_sym_hide] = ACTIONS(1723), + [anon_sym_hide_DASHenv] = ACTIONS(1723), + [anon_sym_overlay] = ACTIONS(1723), + [anon_sym_as] = ACTIONS(1723), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1723), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [aux_sym__val_number_token4] = ACTIONS(1723), + [aux_sym__val_number_token5] = ACTIONS(1723), + [aux_sym__val_number_token6] = ACTIONS(1723), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), + [sym__entry_separator] = ACTIONS(1725), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1725), }, [344] = { - [sym__expr_parenthesized_immediate] = STATE(751), - [sym__immediate_decimal] = STATE(577), - [sym_val_variable] = STATE(751), [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1645), - [anon_sym_alias] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_let_DASHenv] = ACTIONS(1645), - [anon_sym_mut] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [aux_sym_cmd_identifier_token1] = ACTIONS(1645), - [aux_sym_cmd_identifier_token2] = ACTIONS(1657), - [aux_sym_cmd_identifier_token3] = ACTIONS(1657), - [aux_sym_cmd_identifier_token4] = ACTIONS(1657), - [aux_sym_cmd_identifier_token5] = ACTIONS(1657), - [aux_sym_cmd_identifier_token6] = ACTIONS(1657), - [aux_sym_cmd_identifier_token7] = ACTIONS(1657), - [aux_sym_cmd_identifier_token8] = ACTIONS(1645), - [aux_sym_cmd_identifier_token9] = ACTIONS(1645), - [aux_sym_cmd_identifier_token10] = ACTIONS(1657), - [aux_sym_cmd_identifier_token11] = ACTIONS(1657), - [aux_sym_cmd_identifier_token12] = ACTIONS(1645), - [aux_sym_cmd_identifier_token13] = ACTIONS(1645), - [aux_sym_cmd_identifier_token14] = ACTIONS(1645), - [aux_sym_cmd_identifier_token15] = ACTIONS(1645), - [aux_sym_cmd_identifier_token16] = ACTIONS(1657), - [aux_sym_cmd_identifier_token17] = ACTIONS(1657), - [aux_sym_cmd_identifier_token18] = ACTIONS(1657), - [aux_sym_cmd_identifier_token19] = ACTIONS(1657), - [aux_sym_cmd_identifier_token20] = ACTIONS(1657), - [aux_sym_cmd_identifier_token21] = ACTIONS(1657), - [aux_sym_cmd_identifier_token22] = ACTIONS(1657), - [aux_sym_cmd_identifier_token23] = ACTIONS(1657), - [aux_sym_cmd_identifier_token24] = ACTIONS(1657), - [aux_sym_cmd_identifier_token25] = ACTIONS(1657), - [aux_sym_cmd_identifier_token26] = ACTIONS(1657), - [aux_sym_cmd_identifier_token27] = ACTIONS(1657), - [aux_sym_cmd_identifier_token28] = ACTIONS(1657), - [aux_sym_cmd_identifier_token29] = ACTIONS(1657), - [aux_sym_cmd_identifier_token30] = ACTIONS(1657), - [aux_sym_cmd_identifier_token31] = ACTIONS(1657), - [aux_sym_cmd_identifier_token32] = ACTIONS(1657), - [aux_sym_cmd_identifier_token33] = ACTIONS(1657), - [aux_sym_cmd_identifier_token34] = ACTIONS(1645), - [aux_sym_cmd_identifier_token35] = ACTIONS(1657), - [aux_sym_cmd_identifier_token36] = ACTIONS(1657), - [aux_sym_cmd_identifier_token37] = ACTIONS(1657), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1657), - [aux_sym_cmd_identifier_token40] = ACTIONS(1657), - [anon_sym_def] = ACTIONS(1645), - [anon_sym_export_DASHenv] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym_module] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_make] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(1645), - [anon_sym_catch] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_source] = ACTIONS(1645), - [anon_sym_source_DASHenv] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_hide] = ACTIONS(1645), - [anon_sym_hide_DASHenv] = ACTIONS(1645), - [anon_sym_overlay] = ACTIONS(1645), - [anon_sym_as] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(1721), - [aux_sym__immediate_decimal_token3] = ACTIONS(1723), - [aux_sym__immediate_decimal_token4] = ACTIONS(1725), - [aux_sym__immediate_decimal_token5] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1657), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1657), - [aux_sym__val_number_token2] = ACTIONS(1657), - [aux_sym__val_number_token3] = ACTIONS(1657), - [aux_sym__val_number_token4] = ACTIONS(1645), - [aux_sym__val_number_token5] = ACTIONS(1645), - [aux_sym__val_number_token6] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym__str_single_quotes] = ACTIONS(1657), - [sym__str_back_ticks] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1657), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1657), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(1731), + [aux_sym__immediate_decimal_token2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1729), }, [345] = { - [sym__expr_parenthesized_immediate] = STATE(512), - [sym__immediate_decimal] = STATE(540), - [sym_val_variable] = STATE(512), [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [aux_sym_cmd_identifier_token37] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1619), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1729), - [aux_sym__immediate_decimal_token1] = ACTIONS(1731), - [aux_sym__immediate_decimal_token3] = ACTIONS(1733), - [aux_sym__immediate_decimal_token4] = ACTIONS(1735), - [aux_sym__immediate_decimal_token5] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), }, [346] = { - [sym__expr_parenthesized_immediate] = STATE(642), - [sym__immediate_decimal] = STATE(643), - [sym_val_variable] = STATE(642), + [sym__expr_parenthesized_immediate] = STATE(7228), [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1739), - [aux_sym_cmd_identifier_token3] = ACTIONS(1739), - [aux_sym_cmd_identifier_token4] = ACTIONS(1739), - [aux_sym_cmd_identifier_token5] = ACTIONS(1739), - [aux_sym_cmd_identifier_token6] = ACTIONS(1739), - [aux_sym_cmd_identifier_token7] = ACTIONS(1739), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1739), - [aux_sym_cmd_identifier_token11] = ACTIONS(1739), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1739), - [aux_sym_cmd_identifier_token17] = ACTIONS(1739), - [aux_sym_cmd_identifier_token18] = ACTIONS(1739), - [aux_sym_cmd_identifier_token19] = ACTIONS(1739), - [aux_sym_cmd_identifier_token20] = ACTIONS(1739), - [aux_sym_cmd_identifier_token21] = ACTIONS(1739), - [aux_sym_cmd_identifier_token22] = ACTIONS(1739), - [aux_sym_cmd_identifier_token23] = ACTIONS(1739), - [aux_sym_cmd_identifier_token24] = ACTIONS(1739), - [aux_sym_cmd_identifier_token25] = ACTIONS(1739), - [aux_sym_cmd_identifier_token26] = ACTIONS(1739), - [aux_sym_cmd_identifier_token27] = ACTIONS(1739), - [aux_sym_cmd_identifier_token28] = ACTIONS(1739), - [aux_sym_cmd_identifier_token29] = ACTIONS(1739), - [aux_sym_cmd_identifier_token30] = ACTIONS(1739), - [aux_sym_cmd_identifier_token31] = ACTIONS(1739), - [aux_sym_cmd_identifier_token32] = ACTIONS(1739), - [aux_sym_cmd_identifier_token33] = ACTIONS(1739), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1739), - [aux_sym_cmd_identifier_token36] = ACTIONS(1739), - [aux_sym_cmd_identifier_token37] = ACTIONS(1739), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1739), - [aux_sym_cmd_identifier_token40] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1739), - [aux_sym__immediate_decimal_token1] = ACTIONS(1679), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1681), - [aux_sym__immediate_decimal_token5] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1739), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1739), - [aux_sym__val_number_token2] = ACTIONS(1739), - [aux_sym__val_number_token3] = ACTIONS(1739), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [sym__str_single_quotes] = ACTIONS(1739), - [sym__str_back_ticks] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1739), - [sym__entry_separator] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1741), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1665), + [aux_sym_cmd_identifier_token3] = ACTIONS(1665), + [aux_sym_cmd_identifier_token4] = ACTIONS(1665), + [aux_sym_cmd_identifier_token5] = ACTIONS(1665), + [aux_sym_cmd_identifier_token6] = ACTIONS(1665), + [aux_sym_cmd_identifier_token7] = ACTIONS(1665), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1665), + [aux_sym_cmd_identifier_token11] = ACTIONS(1665), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1665), + [aux_sym_cmd_identifier_token17] = ACTIONS(1665), + [aux_sym_cmd_identifier_token18] = ACTIONS(1665), + [aux_sym_cmd_identifier_token19] = ACTIONS(1665), + [aux_sym_cmd_identifier_token20] = ACTIONS(1665), + [aux_sym_cmd_identifier_token21] = ACTIONS(1665), + [aux_sym_cmd_identifier_token22] = ACTIONS(1665), + [aux_sym_cmd_identifier_token23] = ACTIONS(1665), + [aux_sym_cmd_identifier_token24] = ACTIONS(1665), + [aux_sym_cmd_identifier_token25] = ACTIONS(1665), + [aux_sym_cmd_identifier_token26] = ACTIONS(1665), + [aux_sym_cmd_identifier_token27] = ACTIONS(1665), + [aux_sym_cmd_identifier_token28] = ACTIONS(1665), + [aux_sym_cmd_identifier_token29] = ACTIONS(1665), + [aux_sym_cmd_identifier_token30] = ACTIONS(1665), + [aux_sym_cmd_identifier_token31] = ACTIONS(1665), + [aux_sym_cmd_identifier_token32] = ACTIONS(1665), + [aux_sym_cmd_identifier_token33] = ACTIONS(1665), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1665), + [aux_sym_cmd_identifier_token36] = ACTIONS(1665), + [aux_sym_cmd_identifier_token37] = ACTIONS(1665), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1665), + [aux_sym_cmd_identifier_token40] = ACTIONS(1665), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(1743), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1745), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1653), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(1747), + [sym_duration_unit] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1665), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), }, [347] = { - [sym__expr_parenthesized_immediate] = STATE(644), - [sym__immediate_decimal] = STATE(646), - [sym_val_variable] = STATE(644), + [sym__expr_parenthesized_immediate] = STATE(731), + [sym__immediate_decimal] = STATE(732), + [sym_val_variable] = STATE(731), [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_alias] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_let_DASHenv] = ACTIONS(1743), - [anon_sym_mut] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [aux_sym_cmd_identifier_token1] = ACTIONS(1743), - [aux_sym_cmd_identifier_token2] = ACTIONS(1743), - [aux_sym_cmd_identifier_token3] = ACTIONS(1743), - [aux_sym_cmd_identifier_token4] = ACTIONS(1743), - [aux_sym_cmd_identifier_token5] = ACTIONS(1743), - [aux_sym_cmd_identifier_token6] = ACTIONS(1743), - [aux_sym_cmd_identifier_token7] = ACTIONS(1743), - [aux_sym_cmd_identifier_token8] = ACTIONS(1743), - [aux_sym_cmd_identifier_token9] = ACTIONS(1743), - [aux_sym_cmd_identifier_token10] = ACTIONS(1743), - [aux_sym_cmd_identifier_token11] = ACTIONS(1743), - [aux_sym_cmd_identifier_token12] = ACTIONS(1743), - [aux_sym_cmd_identifier_token13] = ACTIONS(1743), - [aux_sym_cmd_identifier_token14] = ACTIONS(1743), - [aux_sym_cmd_identifier_token15] = ACTIONS(1743), - [aux_sym_cmd_identifier_token16] = ACTIONS(1743), - [aux_sym_cmd_identifier_token17] = ACTIONS(1743), - [aux_sym_cmd_identifier_token18] = ACTIONS(1743), - [aux_sym_cmd_identifier_token19] = ACTIONS(1743), - [aux_sym_cmd_identifier_token20] = ACTIONS(1743), - [aux_sym_cmd_identifier_token21] = ACTIONS(1743), - [aux_sym_cmd_identifier_token22] = ACTIONS(1743), - [aux_sym_cmd_identifier_token23] = ACTIONS(1743), - [aux_sym_cmd_identifier_token24] = ACTIONS(1743), - [aux_sym_cmd_identifier_token25] = ACTIONS(1743), - [aux_sym_cmd_identifier_token26] = ACTIONS(1743), - [aux_sym_cmd_identifier_token27] = ACTIONS(1743), - [aux_sym_cmd_identifier_token28] = ACTIONS(1743), - [aux_sym_cmd_identifier_token29] = ACTIONS(1743), - [aux_sym_cmd_identifier_token30] = ACTIONS(1743), - [aux_sym_cmd_identifier_token31] = ACTIONS(1743), - [aux_sym_cmd_identifier_token32] = ACTIONS(1743), - [aux_sym_cmd_identifier_token33] = ACTIONS(1743), - [aux_sym_cmd_identifier_token34] = ACTIONS(1743), - [aux_sym_cmd_identifier_token35] = ACTIONS(1743), - [aux_sym_cmd_identifier_token36] = ACTIONS(1743), - [aux_sym_cmd_identifier_token37] = ACTIONS(1743), - [aux_sym_cmd_identifier_token38] = ACTIONS(1743), - [aux_sym_cmd_identifier_token39] = ACTIONS(1743), - [aux_sym_cmd_identifier_token40] = ACTIONS(1743), - [anon_sym_def] = ACTIONS(1743), - [anon_sym_export_DASHenv] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_make] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_catch] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_source] = ACTIONS(1743), - [anon_sym_source_DASHenv] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_hide] = ACTIONS(1743), - [anon_sym_hide_DASHenv] = ACTIONS(1743), - [anon_sym_overlay] = ACTIONS(1743), - [anon_sym_as] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1743), - [aux_sym__immediate_decimal_token1] = ACTIONS(1679), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1681), - [aux_sym__immediate_decimal_token5] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1743), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1743), - [aux_sym__val_number_decimal_token3] = ACTIONS(1743), - [aux_sym__val_number_decimal_token4] = ACTIONS(1743), - [aux_sym__val_number_token1] = ACTIONS(1743), - [aux_sym__val_number_token2] = ACTIONS(1743), - [aux_sym__val_number_token3] = ACTIONS(1743), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym__str_single_quotes] = ACTIONS(1743), - [sym__str_back_ticks] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1743), - [sym__entry_separator] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1745), + [anon_sym_export] = ACTIONS(1587), + [anon_sym_alias] = ACTIONS(1587), + [anon_sym_let] = ACTIONS(1587), + [anon_sym_let_DASHenv] = ACTIONS(1587), + [anon_sym_mut] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [aux_sym_cmd_identifier_token1] = ACTIONS(1587), + [aux_sym_cmd_identifier_token2] = ACTIONS(1597), + [aux_sym_cmd_identifier_token3] = ACTIONS(1597), + [aux_sym_cmd_identifier_token4] = ACTIONS(1597), + [aux_sym_cmd_identifier_token5] = ACTIONS(1597), + [aux_sym_cmd_identifier_token6] = ACTIONS(1597), + [aux_sym_cmd_identifier_token7] = ACTIONS(1597), + [aux_sym_cmd_identifier_token8] = ACTIONS(1587), + [aux_sym_cmd_identifier_token9] = ACTIONS(1587), + [aux_sym_cmd_identifier_token10] = ACTIONS(1597), + [aux_sym_cmd_identifier_token11] = ACTIONS(1597), + [aux_sym_cmd_identifier_token12] = ACTIONS(1587), + [aux_sym_cmd_identifier_token13] = ACTIONS(1587), + [aux_sym_cmd_identifier_token14] = ACTIONS(1587), + [aux_sym_cmd_identifier_token15] = ACTIONS(1587), + [aux_sym_cmd_identifier_token16] = ACTIONS(1597), + [aux_sym_cmd_identifier_token17] = ACTIONS(1597), + [aux_sym_cmd_identifier_token18] = ACTIONS(1597), + [aux_sym_cmd_identifier_token19] = ACTIONS(1597), + [aux_sym_cmd_identifier_token20] = ACTIONS(1597), + [aux_sym_cmd_identifier_token21] = ACTIONS(1597), + [aux_sym_cmd_identifier_token22] = ACTIONS(1597), + [aux_sym_cmd_identifier_token23] = ACTIONS(1597), + [aux_sym_cmd_identifier_token24] = ACTIONS(1597), + [aux_sym_cmd_identifier_token25] = ACTIONS(1597), + [aux_sym_cmd_identifier_token26] = ACTIONS(1597), + [aux_sym_cmd_identifier_token27] = ACTIONS(1597), + [aux_sym_cmd_identifier_token28] = ACTIONS(1597), + [aux_sym_cmd_identifier_token29] = ACTIONS(1597), + [aux_sym_cmd_identifier_token30] = ACTIONS(1597), + [aux_sym_cmd_identifier_token31] = ACTIONS(1597), + [aux_sym_cmd_identifier_token32] = ACTIONS(1597), + [aux_sym_cmd_identifier_token33] = ACTIONS(1597), + [aux_sym_cmd_identifier_token34] = ACTIONS(1587), + [aux_sym_cmd_identifier_token35] = ACTIONS(1597), + [aux_sym_cmd_identifier_token36] = ACTIONS(1597), + [aux_sym_cmd_identifier_token37] = ACTIONS(1597), + [aux_sym_cmd_identifier_token38] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1597), + [aux_sym_cmd_identifier_token40] = ACTIONS(1597), + [anon_sym_def] = ACTIONS(1587), + [anon_sym_export_DASHenv] = ACTIONS(1587), + [anon_sym_extern] = ACTIONS(1587), + [anon_sym_module] = ACTIONS(1587), + [anon_sym_use] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_make] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_else] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1587), + [anon_sym_catch] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_source] = ACTIONS(1587), + [anon_sym_source_DASHenv] = ACTIONS(1587), + [anon_sym_register] = ACTIONS(1587), + [anon_sym_hide] = ACTIONS(1587), + [anon_sym_hide_DASHenv] = ACTIONS(1587), + [anon_sym_overlay] = ACTIONS(1587), + [anon_sym_as] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1587), + [aux_sym__val_number_token5] = ACTIONS(1587), + [aux_sym__val_number_token6] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1597), }, [348] = { - [sym__expr_parenthesized_immediate] = STATE(632), - [sym__immediate_decimal] = STATE(633), - [sym_val_variable] = STATE(632), + [sym__expr_parenthesized_immediate] = STATE(690), + [sym__immediate_decimal] = STATE(691), + [sym_val_variable] = STATE(690), [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1633), - [aux_sym_cmd_identifier_token3] = ACTIONS(1633), - [aux_sym_cmd_identifier_token4] = ACTIONS(1633), - [aux_sym_cmd_identifier_token5] = ACTIONS(1633), - [aux_sym_cmd_identifier_token6] = ACTIONS(1633), - [aux_sym_cmd_identifier_token7] = ACTIONS(1633), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1633), - [aux_sym_cmd_identifier_token11] = ACTIONS(1633), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1633), - [aux_sym_cmd_identifier_token17] = ACTIONS(1633), - [aux_sym_cmd_identifier_token18] = ACTIONS(1633), - [aux_sym_cmd_identifier_token19] = ACTIONS(1633), - [aux_sym_cmd_identifier_token20] = ACTIONS(1633), - [aux_sym_cmd_identifier_token21] = ACTIONS(1633), - [aux_sym_cmd_identifier_token22] = ACTIONS(1633), - [aux_sym_cmd_identifier_token23] = ACTIONS(1633), - [aux_sym_cmd_identifier_token24] = ACTIONS(1633), - [aux_sym_cmd_identifier_token25] = ACTIONS(1633), - [aux_sym_cmd_identifier_token26] = ACTIONS(1633), - [aux_sym_cmd_identifier_token27] = ACTIONS(1633), - [aux_sym_cmd_identifier_token28] = ACTIONS(1633), - [aux_sym_cmd_identifier_token29] = ACTIONS(1633), - [aux_sym_cmd_identifier_token30] = ACTIONS(1633), - [aux_sym_cmd_identifier_token31] = ACTIONS(1633), - [aux_sym_cmd_identifier_token32] = ACTIONS(1633), - [aux_sym_cmd_identifier_token33] = ACTIONS(1633), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1633), - [aux_sym_cmd_identifier_token36] = ACTIONS(1633), - [aux_sym_cmd_identifier_token37] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1679), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1681), - [aux_sym__immediate_decimal_token5] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [sym__entry_separator] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_alias] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_let_DASHenv] = ACTIONS(1685), + [anon_sym_mut] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [aux_sym_cmd_identifier_token1] = ACTIONS(1685), + [aux_sym_cmd_identifier_token2] = ACTIONS(1687), + [aux_sym_cmd_identifier_token3] = ACTIONS(1687), + [aux_sym_cmd_identifier_token4] = ACTIONS(1687), + [aux_sym_cmd_identifier_token5] = ACTIONS(1687), + [aux_sym_cmd_identifier_token6] = ACTIONS(1687), + [aux_sym_cmd_identifier_token7] = ACTIONS(1687), + [aux_sym_cmd_identifier_token8] = ACTIONS(1685), + [aux_sym_cmd_identifier_token9] = ACTIONS(1685), + [aux_sym_cmd_identifier_token10] = ACTIONS(1687), + [aux_sym_cmd_identifier_token11] = ACTIONS(1687), + [aux_sym_cmd_identifier_token12] = ACTIONS(1685), + [aux_sym_cmd_identifier_token13] = ACTIONS(1685), + [aux_sym_cmd_identifier_token14] = ACTIONS(1685), + [aux_sym_cmd_identifier_token15] = ACTIONS(1685), + [aux_sym_cmd_identifier_token16] = ACTIONS(1687), + [aux_sym_cmd_identifier_token17] = ACTIONS(1687), + [aux_sym_cmd_identifier_token18] = ACTIONS(1687), + [aux_sym_cmd_identifier_token19] = ACTIONS(1687), + [aux_sym_cmd_identifier_token20] = ACTIONS(1687), + [aux_sym_cmd_identifier_token21] = ACTIONS(1687), + [aux_sym_cmd_identifier_token22] = ACTIONS(1687), + [aux_sym_cmd_identifier_token23] = ACTIONS(1687), + [aux_sym_cmd_identifier_token24] = ACTIONS(1687), + [aux_sym_cmd_identifier_token25] = ACTIONS(1687), + [aux_sym_cmd_identifier_token26] = ACTIONS(1687), + [aux_sym_cmd_identifier_token27] = ACTIONS(1687), + [aux_sym_cmd_identifier_token28] = ACTIONS(1687), + [aux_sym_cmd_identifier_token29] = ACTIONS(1687), + [aux_sym_cmd_identifier_token30] = ACTIONS(1687), + [aux_sym_cmd_identifier_token31] = ACTIONS(1687), + [aux_sym_cmd_identifier_token32] = ACTIONS(1687), + [aux_sym_cmd_identifier_token33] = ACTIONS(1687), + [aux_sym_cmd_identifier_token34] = ACTIONS(1685), + [aux_sym_cmd_identifier_token35] = ACTIONS(1687), + [aux_sym_cmd_identifier_token36] = ACTIONS(1687), + [aux_sym_cmd_identifier_token37] = ACTIONS(1687), + [aux_sym_cmd_identifier_token38] = ACTIONS(1685), + [aux_sym_cmd_identifier_token39] = ACTIONS(1687), + [aux_sym_cmd_identifier_token40] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_export_DASHenv] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_make] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_else] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_catch] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_source] = ACTIONS(1685), + [anon_sym_source_DASHenv] = ACTIONS(1685), + [anon_sym_register] = ACTIONS(1685), + [anon_sym_hide] = ACTIONS(1685), + [anon_sym_hide_DASHenv] = ACTIONS(1685), + [anon_sym_overlay] = ACTIONS(1685), + [anon_sym_as] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1685), + [aux_sym__val_number_decimal_token4] = ACTIONS(1685), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, [349] = { - [sym__expr_parenthesized_immediate] = STATE(716), - [sym__immediate_decimal] = STATE(747), - [sym_val_variable] = STATE(716), + [sym__expr_parenthesized_immediate] = STATE(692), + [sym__immediate_decimal] = STATE(693), + [sym_val_variable] = STATE(692), [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_alias] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_let_DASHenv] = ACTIONS(1743), - [anon_sym_mut] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [aux_sym_cmd_identifier_token1] = ACTIONS(1743), - [aux_sym_cmd_identifier_token2] = ACTIONS(1745), - [aux_sym_cmd_identifier_token3] = ACTIONS(1745), - [aux_sym_cmd_identifier_token4] = ACTIONS(1745), - [aux_sym_cmd_identifier_token5] = ACTIONS(1745), - [aux_sym_cmd_identifier_token6] = ACTIONS(1745), - [aux_sym_cmd_identifier_token7] = ACTIONS(1745), - [aux_sym_cmd_identifier_token8] = ACTIONS(1743), - [aux_sym_cmd_identifier_token9] = ACTIONS(1743), - [aux_sym_cmd_identifier_token10] = ACTIONS(1745), - [aux_sym_cmd_identifier_token11] = ACTIONS(1745), - [aux_sym_cmd_identifier_token12] = ACTIONS(1743), - [aux_sym_cmd_identifier_token13] = ACTIONS(1743), - [aux_sym_cmd_identifier_token14] = ACTIONS(1743), - [aux_sym_cmd_identifier_token15] = ACTIONS(1743), - [aux_sym_cmd_identifier_token16] = ACTIONS(1745), - [aux_sym_cmd_identifier_token17] = ACTIONS(1745), - [aux_sym_cmd_identifier_token18] = ACTIONS(1745), - [aux_sym_cmd_identifier_token19] = ACTIONS(1745), - [aux_sym_cmd_identifier_token20] = ACTIONS(1745), - [aux_sym_cmd_identifier_token21] = ACTIONS(1745), - [aux_sym_cmd_identifier_token22] = ACTIONS(1745), - [aux_sym_cmd_identifier_token23] = ACTIONS(1745), - [aux_sym_cmd_identifier_token24] = ACTIONS(1745), - [aux_sym_cmd_identifier_token25] = ACTIONS(1745), - [aux_sym_cmd_identifier_token26] = ACTIONS(1745), - [aux_sym_cmd_identifier_token27] = ACTIONS(1745), - [aux_sym_cmd_identifier_token28] = ACTIONS(1745), - [aux_sym_cmd_identifier_token29] = ACTIONS(1745), - [aux_sym_cmd_identifier_token30] = ACTIONS(1745), - [aux_sym_cmd_identifier_token31] = ACTIONS(1745), - [aux_sym_cmd_identifier_token32] = ACTIONS(1745), - [aux_sym_cmd_identifier_token33] = ACTIONS(1745), - [aux_sym_cmd_identifier_token34] = ACTIONS(1743), - [aux_sym_cmd_identifier_token35] = ACTIONS(1745), - [aux_sym_cmd_identifier_token36] = ACTIONS(1745), - [aux_sym_cmd_identifier_token37] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1743), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [anon_sym_def] = ACTIONS(1743), - [anon_sym_export_DASHenv] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_make] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_catch] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_source] = ACTIONS(1743), - [anon_sym_source_DASHenv] = ACTIONS(1743), - [anon_sym_register] = ACTIONS(1743), - [anon_sym_hide] = ACTIONS(1743), - [anon_sym_hide_DASHenv] = ACTIONS(1743), - [anon_sym_overlay] = ACTIONS(1743), - [anon_sym_as] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1745), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1743), - [aux_sym__val_number_decimal_token3] = ACTIONS(1743), - [aux_sym__val_number_decimal_token4] = ACTIONS(1743), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_alias] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_let_DASHenv] = ACTIONS(1689), + [anon_sym_mut] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [aux_sym_cmd_identifier_token1] = ACTIONS(1689), + [aux_sym_cmd_identifier_token2] = ACTIONS(1691), + [aux_sym_cmd_identifier_token3] = ACTIONS(1691), + [aux_sym_cmd_identifier_token4] = ACTIONS(1691), + [aux_sym_cmd_identifier_token5] = ACTIONS(1691), + [aux_sym_cmd_identifier_token6] = ACTIONS(1691), + [aux_sym_cmd_identifier_token7] = ACTIONS(1691), + [aux_sym_cmd_identifier_token8] = ACTIONS(1689), + [aux_sym_cmd_identifier_token9] = ACTIONS(1689), + [aux_sym_cmd_identifier_token10] = ACTIONS(1691), + [aux_sym_cmd_identifier_token11] = ACTIONS(1691), + [aux_sym_cmd_identifier_token12] = ACTIONS(1689), + [aux_sym_cmd_identifier_token13] = ACTIONS(1689), + [aux_sym_cmd_identifier_token14] = ACTIONS(1689), + [aux_sym_cmd_identifier_token15] = ACTIONS(1689), + [aux_sym_cmd_identifier_token16] = ACTIONS(1691), + [aux_sym_cmd_identifier_token17] = ACTIONS(1691), + [aux_sym_cmd_identifier_token18] = ACTIONS(1691), + [aux_sym_cmd_identifier_token19] = ACTIONS(1691), + [aux_sym_cmd_identifier_token20] = ACTIONS(1691), + [aux_sym_cmd_identifier_token21] = ACTIONS(1691), + [aux_sym_cmd_identifier_token22] = ACTIONS(1691), + [aux_sym_cmd_identifier_token23] = ACTIONS(1691), + [aux_sym_cmd_identifier_token24] = ACTIONS(1691), + [aux_sym_cmd_identifier_token25] = ACTIONS(1691), + [aux_sym_cmd_identifier_token26] = ACTIONS(1691), + [aux_sym_cmd_identifier_token27] = ACTIONS(1691), + [aux_sym_cmd_identifier_token28] = ACTIONS(1691), + [aux_sym_cmd_identifier_token29] = ACTIONS(1691), + [aux_sym_cmd_identifier_token30] = ACTIONS(1691), + [aux_sym_cmd_identifier_token31] = ACTIONS(1691), + [aux_sym_cmd_identifier_token32] = ACTIONS(1691), + [aux_sym_cmd_identifier_token33] = ACTIONS(1691), + [aux_sym_cmd_identifier_token34] = ACTIONS(1689), + [aux_sym_cmd_identifier_token35] = ACTIONS(1691), + [aux_sym_cmd_identifier_token36] = ACTIONS(1691), + [aux_sym_cmd_identifier_token37] = ACTIONS(1691), + [aux_sym_cmd_identifier_token38] = ACTIONS(1689), + [aux_sym_cmd_identifier_token39] = ACTIONS(1691), + [aux_sym_cmd_identifier_token40] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_export_DASHenv] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_make] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_catch] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_source] = ACTIONS(1689), + [anon_sym_source_DASHenv] = ACTIONS(1689), + [anon_sym_register] = ACTIONS(1689), + [anon_sym_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1691), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1689), + [aux_sym__val_number_decimal_token3] = ACTIONS(1689), + [aux_sym__val_number_decimal_token4] = ACTIONS(1689), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1689), + [aux_sym__val_number_token5] = ACTIONS(1689), + [aux_sym__val_number_token6] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1691), }, [350] = { + [sym__expr_parenthesized_immediate] = STATE(694), + [sym__immediate_decimal] = STATE(695), + [sym_val_variable] = STATE(694), [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1671), - [aux_sym_cmd_identifier_token3] = ACTIONS(1671), - [aux_sym_cmd_identifier_token4] = ACTIONS(1671), - [aux_sym_cmd_identifier_token5] = ACTIONS(1671), - [aux_sym_cmd_identifier_token6] = ACTIONS(1671), - [aux_sym_cmd_identifier_token7] = ACTIONS(1671), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1671), - [aux_sym_cmd_identifier_token11] = ACTIONS(1671), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1671), - [aux_sym_cmd_identifier_token17] = ACTIONS(1671), - [aux_sym_cmd_identifier_token18] = ACTIONS(1671), - [aux_sym_cmd_identifier_token19] = ACTIONS(1671), - [aux_sym_cmd_identifier_token20] = ACTIONS(1671), - [aux_sym_cmd_identifier_token21] = ACTIONS(1671), - [aux_sym_cmd_identifier_token22] = ACTIONS(1671), - [aux_sym_cmd_identifier_token23] = ACTIONS(1671), - [aux_sym_cmd_identifier_token24] = ACTIONS(1671), - [aux_sym_cmd_identifier_token25] = ACTIONS(1671), - [aux_sym_cmd_identifier_token26] = ACTIONS(1671), - [aux_sym_cmd_identifier_token27] = ACTIONS(1671), - [aux_sym_cmd_identifier_token28] = ACTIONS(1671), - [aux_sym_cmd_identifier_token29] = ACTIONS(1671), - [aux_sym_cmd_identifier_token30] = ACTIONS(1671), - [aux_sym_cmd_identifier_token31] = ACTIONS(1671), - [aux_sym_cmd_identifier_token32] = ACTIONS(1671), - [aux_sym_cmd_identifier_token33] = ACTIONS(1671), - [aux_sym_cmd_identifier_token34] = ACTIONS(1669), - [aux_sym_cmd_identifier_token35] = ACTIONS(1671), - [aux_sym_cmd_identifier_token36] = ACTIONS(1671), - [aux_sym_cmd_identifier_token37] = ACTIONS(1671), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1671), - [aux_sym_cmd_identifier_token40] = ACTIONS(1671), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_make] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_as] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1671), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [aux_sym_cmd_identifier_token1] = ACTIONS(1693), + [aux_sym_cmd_identifier_token2] = ACTIONS(1695), + [aux_sym_cmd_identifier_token3] = ACTIONS(1695), + [aux_sym_cmd_identifier_token4] = ACTIONS(1695), + [aux_sym_cmd_identifier_token5] = ACTIONS(1695), + [aux_sym_cmd_identifier_token6] = ACTIONS(1695), + [aux_sym_cmd_identifier_token7] = ACTIONS(1695), + [aux_sym_cmd_identifier_token8] = ACTIONS(1693), + [aux_sym_cmd_identifier_token9] = ACTIONS(1693), + [aux_sym_cmd_identifier_token10] = ACTIONS(1695), + [aux_sym_cmd_identifier_token11] = ACTIONS(1695), + [aux_sym_cmd_identifier_token12] = ACTIONS(1693), + [aux_sym_cmd_identifier_token13] = ACTIONS(1693), + [aux_sym_cmd_identifier_token14] = ACTIONS(1693), + [aux_sym_cmd_identifier_token15] = ACTIONS(1693), + [aux_sym_cmd_identifier_token16] = ACTIONS(1695), + [aux_sym_cmd_identifier_token17] = ACTIONS(1695), + [aux_sym_cmd_identifier_token18] = ACTIONS(1695), + [aux_sym_cmd_identifier_token19] = ACTIONS(1695), + [aux_sym_cmd_identifier_token20] = ACTIONS(1695), + [aux_sym_cmd_identifier_token21] = ACTIONS(1695), + [aux_sym_cmd_identifier_token22] = ACTIONS(1695), + [aux_sym_cmd_identifier_token23] = ACTIONS(1695), + [aux_sym_cmd_identifier_token24] = ACTIONS(1695), + [aux_sym_cmd_identifier_token25] = ACTIONS(1695), + [aux_sym_cmd_identifier_token26] = ACTIONS(1695), + [aux_sym_cmd_identifier_token27] = ACTIONS(1695), + [aux_sym_cmd_identifier_token28] = ACTIONS(1695), + [aux_sym_cmd_identifier_token29] = ACTIONS(1695), + [aux_sym_cmd_identifier_token30] = ACTIONS(1695), + [aux_sym_cmd_identifier_token31] = ACTIONS(1695), + [aux_sym_cmd_identifier_token32] = ACTIONS(1695), + [aux_sym_cmd_identifier_token33] = ACTIONS(1695), + [aux_sym_cmd_identifier_token34] = ACTIONS(1693), + [aux_sym_cmd_identifier_token35] = ACTIONS(1695), + [aux_sym_cmd_identifier_token36] = ACTIONS(1695), + [aux_sym_cmd_identifier_token37] = ACTIONS(1695), + [aux_sym_cmd_identifier_token38] = ACTIONS(1693), + [aux_sym_cmd_identifier_token39] = ACTIONS(1695), + [aux_sym_cmd_identifier_token40] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_make] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_catch] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(1699), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(1753), + [aux_sym__immediate_decimal_token3] = ACTIONS(1755), + [aux_sym__immediate_decimal_token4] = ACTIONS(1757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1693), + [aux_sym__val_number_token5] = ACTIONS(1693), + [aux_sym__val_number_token6] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1695), }, [351] = { + [sym_cell_path] = STATE(445), + [sym_path] = STATE(400), [sym_comment] = STATE(351), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [aux_sym_cell_path_repeat1] = STATE(363), + [anon_sym_export] = ACTIONS(1761), + [anon_sym_alias] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_let_DASHenv] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [aux_sym_cmd_identifier_token1] = ACTIONS(1761), + [aux_sym_cmd_identifier_token2] = ACTIONS(1761), + [aux_sym_cmd_identifier_token3] = ACTIONS(1761), + [aux_sym_cmd_identifier_token4] = ACTIONS(1761), + [aux_sym_cmd_identifier_token5] = ACTIONS(1761), + [aux_sym_cmd_identifier_token6] = ACTIONS(1761), + [aux_sym_cmd_identifier_token7] = ACTIONS(1761), + [aux_sym_cmd_identifier_token8] = ACTIONS(1761), + [aux_sym_cmd_identifier_token9] = ACTIONS(1761), + [aux_sym_cmd_identifier_token10] = ACTIONS(1761), + [aux_sym_cmd_identifier_token11] = ACTIONS(1761), + [aux_sym_cmd_identifier_token12] = ACTIONS(1761), + [aux_sym_cmd_identifier_token13] = ACTIONS(1761), + [aux_sym_cmd_identifier_token14] = ACTIONS(1761), + [aux_sym_cmd_identifier_token15] = ACTIONS(1761), + [aux_sym_cmd_identifier_token16] = ACTIONS(1761), + [aux_sym_cmd_identifier_token17] = ACTIONS(1761), + [aux_sym_cmd_identifier_token18] = ACTIONS(1761), + [aux_sym_cmd_identifier_token19] = ACTIONS(1761), + [aux_sym_cmd_identifier_token20] = ACTIONS(1761), + [aux_sym_cmd_identifier_token21] = ACTIONS(1761), + [aux_sym_cmd_identifier_token22] = ACTIONS(1761), + [aux_sym_cmd_identifier_token23] = ACTIONS(1761), + [aux_sym_cmd_identifier_token24] = ACTIONS(1761), + [aux_sym_cmd_identifier_token25] = ACTIONS(1761), + [aux_sym_cmd_identifier_token26] = ACTIONS(1761), + [aux_sym_cmd_identifier_token27] = ACTIONS(1761), + [aux_sym_cmd_identifier_token28] = ACTIONS(1761), + [aux_sym_cmd_identifier_token29] = ACTIONS(1761), + [aux_sym_cmd_identifier_token30] = ACTIONS(1761), + [aux_sym_cmd_identifier_token31] = ACTIONS(1761), + [aux_sym_cmd_identifier_token32] = ACTIONS(1761), + [aux_sym_cmd_identifier_token33] = ACTIONS(1761), + [aux_sym_cmd_identifier_token34] = ACTIONS(1761), + [aux_sym_cmd_identifier_token35] = ACTIONS(1761), + [aux_sym_cmd_identifier_token36] = ACTIONS(1761), + [aux_sym_cmd_identifier_token37] = ACTIONS(1761), + [aux_sym_cmd_identifier_token38] = ACTIONS(1761), + [aux_sym_cmd_identifier_token39] = ACTIONS(1761), + [aux_sym_cmd_identifier_token40] = ACTIONS(1761), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_export_DASHenv] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_module] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_error] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_make] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_catch] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_source] = ACTIONS(1761), + [anon_sym_source_DASHenv] = ACTIONS(1761), + [anon_sym_register] = ACTIONS(1761), + [anon_sym_hide] = ACTIONS(1761), + [anon_sym_hide_DASHenv] = ACTIONS(1761), + [anon_sym_overlay] = ACTIONS(1761), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1761), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1761), + [aux_sym__val_number_decimal_token3] = ACTIONS(1761), + [aux_sym__val_number_decimal_token4] = ACTIONS(1761), + [aux_sym__val_number_token1] = ACTIONS(1761), + [aux_sym__val_number_token2] = ACTIONS(1761), + [aux_sym__val_number_token3] = ACTIONS(1761), + [aux_sym__val_number_token4] = ACTIONS(1761), + [aux_sym__val_number_token5] = ACTIONS(1761), + [aux_sym__val_number_token6] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [sym__str_single_quotes] = ACTIONS(1761), + [sym__str_back_ticks] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1761), + [sym__entry_separator] = ACTIONS(1763), + [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1763), }, [352] = { - [sym_cell_path] = STATE(474), - [sym_path] = STATE(429), [sym_comment] = STATE(352), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1761), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1761), + [sym_raw_string_begin] = ACTIONS(1737), }, [353] = { + [sym_cell_path] = STATE(524), + [sym_path] = STATE(443), [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1669), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1669), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1669), - [aux_sym_cmd_identifier_token32] = ACTIONS(1669), - [aux_sym_cmd_identifier_token33] = ACTIONS(1669), - [aux_sym_cmd_identifier_token34] = ACTIONS(1669), - [aux_sym_cmd_identifier_token35] = ACTIONS(1669), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [aux_sym_cmd_identifier_token37] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_make] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_as] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [sym__entry_separator] = ACTIONS(1671), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1671), + [aux_sym_cell_path_repeat1] = STATE(374), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), }, [354] = { - [sym_cell_path] = STATE(480), - [sym_path] = STATE(429), [sym_comment] = STATE(354), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [aux_sym_cmd_identifier_token1] = ACTIONS(1763), - [aux_sym_cmd_identifier_token2] = ACTIONS(1763), - [aux_sym_cmd_identifier_token3] = ACTIONS(1763), - [aux_sym_cmd_identifier_token4] = ACTIONS(1763), - [aux_sym_cmd_identifier_token5] = ACTIONS(1763), - [aux_sym_cmd_identifier_token6] = ACTIONS(1763), - [aux_sym_cmd_identifier_token7] = ACTIONS(1763), - [aux_sym_cmd_identifier_token8] = ACTIONS(1763), - [aux_sym_cmd_identifier_token9] = ACTIONS(1763), - [aux_sym_cmd_identifier_token10] = ACTIONS(1763), - [aux_sym_cmd_identifier_token11] = ACTIONS(1763), - [aux_sym_cmd_identifier_token12] = ACTIONS(1763), - [aux_sym_cmd_identifier_token13] = ACTIONS(1763), - [aux_sym_cmd_identifier_token14] = ACTIONS(1763), - [aux_sym_cmd_identifier_token15] = ACTIONS(1763), - [aux_sym_cmd_identifier_token16] = ACTIONS(1763), - [aux_sym_cmd_identifier_token17] = ACTIONS(1763), - [aux_sym_cmd_identifier_token18] = ACTIONS(1763), - [aux_sym_cmd_identifier_token19] = ACTIONS(1763), - [aux_sym_cmd_identifier_token20] = ACTIONS(1763), - [aux_sym_cmd_identifier_token21] = ACTIONS(1763), - [aux_sym_cmd_identifier_token22] = ACTIONS(1763), - [aux_sym_cmd_identifier_token23] = ACTIONS(1763), - [aux_sym_cmd_identifier_token24] = ACTIONS(1763), - [aux_sym_cmd_identifier_token25] = ACTIONS(1763), - [aux_sym_cmd_identifier_token26] = ACTIONS(1763), - [aux_sym_cmd_identifier_token27] = ACTIONS(1763), - [aux_sym_cmd_identifier_token28] = ACTIONS(1763), - [aux_sym_cmd_identifier_token29] = ACTIONS(1763), - [aux_sym_cmd_identifier_token30] = ACTIONS(1763), - [aux_sym_cmd_identifier_token31] = ACTIONS(1763), - [aux_sym_cmd_identifier_token32] = ACTIONS(1763), - [aux_sym_cmd_identifier_token33] = ACTIONS(1763), - [aux_sym_cmd_identifier_token34] = ACTIONS(1763), - [aux_sym_cmd_identifier_token35] = ACTIONS(1763), - [aux_sym_cmd_identifier_token36] = ACTIONS(1763), - [aux_sym_cmd_identifier_token37] = ACTIONS(1763), - [aux_sym_cmd_identifier_token38] = ACTIONS(1763), - [aux_sym_cmd_identifier_token39] = ACTIONS(1763), - [aux_sym_cmd_identifier_token40] = ACTIONS(1763), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_make] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_catch] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), - [sym__entry_separator] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(1767), + [aux_sym__immediate_decimal_token2] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [355] = { [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_alias] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_let_DASHenv] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [aux_sym_cmd_identifier_token1] = ACTIONS(1661), - [aux_sym_cmd_identifier_token2] = ACTIONS(1661), - [aux_sym_cmd_identifier_token3] = ACTIONS(1661), - [aux_sym_cmd_identifier_token4] = ACTIONS(1661), - [aux_sym_cmd_identifier_token5] = ACTIONS(1661), - [aux_sym_cmd_identifier_token6] = ACTIONS(1661), - [aux_sym_cmd_identifier_token7] = ACTIONS(1661), - [aux_sym_cmd_identifier_token8] = ACTIONS(1661), - [aux_sym_cmd_identifier_token9] = ACTIONS(1661), - [aux_sym_cmd_identifier_token10] = ACTIONS(1661), - [aux_sym_cmd_identifier_token11] = ACTIONS(1661), - [aux_sym_cmd_identifier_token12] = ACTIONS(1661), - [aux_sym_cmd_identifier_token13] = ACTIONS(1661), - [aux_sym_cmd_identifier_token14] = ACTIONS(1661), - [aux_sym_cmd_identifier_token15] = ACTIONS(1661), - [aux_sym_cmd_identifier_token16] = ACTIONS(1661), - [aux_sym_cmd_identifier_token17] = ACTIONS(1661), - [aux_sym_cmd_identifier_token18] = ACTIONS(1661), - [aux_sym_cmd_identifier_token19] = ACTIONS(1661), - [aux_sym_cmd_identifier_token20] = ACTIONS(1661), - [aux_sym_cmd_identifier_token21] = ACTIONS(1661), - [aux_sym_cmd_identifier_token22] = ACTIONS(1661), - [aux_sym_cmd_identifier_token23] = ACTIONS(1661), - [aux_sym_cmd_identifier_token24] = ACTIONS(1661), - [aux_sym_cmd_identifier_token25] = ACTIONS(1661), - [aux_sym_cmd_identifier_token26] = ACTIONS(1661), - [aux_sym_cmd_identifier_token27] = ACTIONS(1661), - [aux_sym_cmd_identifier_token28] = ACTIONS(1661), - [aux_sym_cmd_identifier_token29] = ACTIONS(1661), - [aux_sym_cmd_identifier_token30] = ACTIONS(1661), - [aux_sym_cmd_identifier_token31] = ACTIONS(1661), - [aux_sym_cmd_identifier_token32] = ACTIONS(1661), - [aux_sym_cmd_identifier_token33] = ACTIONS(1661), - [aux_sym_cmd_identifier_token34] = ACTIONS(1661), - [aux_sym_cmd_identifier_token35] = ACTIONS(1661), - [aux_sym_cmd_identifier_token36] = ACTIONS(1661), - [aux_sym_cmd_identifier_token37] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_export_DASHenv] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_make] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_source] = ACTIONS(1661), - [anon_sym_source_DASHenv] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_hide_DASHenv] = ACTIONS(1661), - [anon_sym_overlay] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [aux_sym__val_number_token4] = ACTIONS(1661), - [aux_sym__val_number_token5] = ACTIONS(1661), - [aux_sym__val_number_token6] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [sym__entry_separator] = ACTIONS(1663), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1663), - }, - [356] = { - [sym_comment] = STATE(356), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [357] = { - [sym_comment] = STATE(357), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_alias] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_let_DASHenv] = ACTIONS(1767), - [anon_sym_mut] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [aux_sym_cmd_identifier_token1] = ACTIONS(1767), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1767), - [aux_sym_cmd_identifier_token9] = ACTIONS(1767), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1767), - [aux_sym_cmd_identifier_token13] = ACTIONS(1767), - [aux_sym_cmd_identifier_token14] = ACTIONS(1767), - [aux_sym_cmd_identifier_token15] = ACTIONS(1767), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1767), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1767), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1767), - [anon_sym_export_DASHenv] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_use] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_loop] = ACTIONS(1767), - [anon_sym_make] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_catch] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_source] = ACTIONS(1767), - [anon_sym_source_DASHenv] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_hide] = ACTIONS(1767), - [anon_sym_hide_DASHenv] = ACTIONS(1767), - [anon_sym_overlay] = ACTIONS(1767), - [anon_sym_as] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1767), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [sym__entry_separator] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1769), - }, - [358] = { - [sym_comment] = STATE(358), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -125270,8 +119649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(1775), - [aux_sym__immediate_decimal_token2] = ACTIONS(1777), + [aux_sym__immediate_decimal_token2] = ACTIONS(1775), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1771), @@ -125292,1922 +119670,962 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1773), }, + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1777), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [357] = { + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1623), + [anon_sym_alias] = ACTIONS(1623), + [anon_sym_let] = ACTIONS(1623), + [anon_sym_let_DASHenv] = ACTIONS(1623), + [anon_sym_mut] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [aux_sym_cmd_identifier_token1] = ACTIONS(1623), + [aux_sym_cmd_identifier_token2] = ACTIONS(1625), + [aux_sym_cmd_identifier_token3] = ACTIONS(1625), + [aux_sym_cmd_identifier_token4] = ACTIONS(1625), + [aux_sym_cmd_identifier_token5] = ACTIONS(1625), + [aux_sym_cmd_identifier_token6] = ACTIONS(1625), + [aux_sym_cmd_identifier_token7] = ACTIONS(1625), + [aux_sym_cmd_identifier_token8] = ACTIONS(1623), + [aux_sym_cmd_identifier_token9] = ACTIONS(1623), + [aux_sym_cmd_identifier_token10] = ACTIONS(1625), + [aux_sym_cmd_identifier_token11] = ACTIONS(1625), + [aux_sym_cmd_identifier_token12] = ACTIONS(1623), + [aux_sym_cmd_identifier_token13] = ACTIONS(1623), + [aux_sym_cmd_identifier_token14] = ACTIONS(1623), + [aux_sym_cmd_identifier_token15] = ACTIONS(1623), + [aux_sym_cmd_identifier_token16] = ACTIONS(1625), + [aux_sym_cmd_identifier_token17] = ACTIONS(1625), + [aux_sym_cmd_identifier_token18] = ACTIONS(1625), + [aux_sym_cmd_identifier_token19] = ACTIONS(1625), + [aux_sym_cmd_identifier_token20] = ACTIONS(1625), + [aux_sym_cmd_identifier_token21] = ACTIONS(1625), + [aux_sym_cmd_identifier_token22] = ACTIONS(1625), + [aux_sym_cmd_identifier_token23] = ACTIONS(1625), + [aux_sym_cmd_identifier_token24] = ACTIONS(1625), + [aux_sym_cmd_identifier_token25] = ACTIONS(1625), + [aux_sym_cmd_identifier_token26] = ACTIONS(1625), + [aux_sym_cmd_identifier_token27] = ACTIONS(1625), + [aux_sym_cmd_identifier_token28] = ACTIONS(1625), + [aux_sym_cmd_identifier_token29] = ACTIONS(1625), + [aux_sym_cmd_identifier_token30] = ACTIONS(1625), + [aux_sym_cmd_identifier_token31] = ACTIONS(1625), + [aux_sym_cmd_identifier_token32] = ACTIONS(1625), + [aux_sym_cmd_identifier_token33] = ACTIONS(1625), + [aux_sym_cmd_identifier_token34] = ACTIONS(1623), + [aux_sym_cmd_identifier_token35] = ACTIONS(1625), + [aux_sym_cmd_identifier_token36] = ACTIONS(1625), + [aux_sym_cmd_identifier_token37] = ACTIONS(1625), + [aux_sym_cmd_identifier_token38] = ACTIONS(1623), + [aux_sym_cmd_identifier_token39] = ACTIONS(1625), + [aux_sym_cmd_identifier_token40] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1623), + [anon_sym_export_DASHenv] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym_module] = ACTIONS(1623), + [anon_sym_use] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1625), + [anon_sym_error] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_loop] = ACTIONS(1623), + [anon_sym_make] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1623), + [anon_sym_catch] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_source] = ACTIONS(1623), + [anon_sym_source_DASHenv] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_hide] = ACTIONS(1623), + [anon_sym_hide_DASHenv] = ACTIONS(1623), + [anon_sym_overlay] = ACTIONS(1623), + [anon_sym_as] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1623), + [aux_sym__val_number_token5] = ACTIONS(1623), + [aux_sym__val_number_token6] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1625), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), + }, + [358] = { + [sym_comment] = STATE(358), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1711), + [aux_sym_cmd_identifier_token3] = ACTIONS(1711), + [aux_sym_cmd_identifier_token4] = ACTIONS(1711), + [aux_sym_cmd_identifier_token5] = ACTIONS(1711), + [aux_sym_cmd_identifier_token6] = ACTIONS(1711), + [aux_sym_cmd_identifier_token7] = ACTIONS(1711), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1711), + [aux_sym_cmd_identifier_token11] = ACTIONS(1711), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1711), + [aux_sym_cmd_identifier_token17] = ACTIONS(1711), + [aux_sym_cmd_identifier_token18] = ACTIONS(1711), + [aux_sym_cmd_identifier_token19] = ACTIONS(1711), + [aux_sym_cmd_identifier_token20] = ACTIONS(1711), + [aux_sym_cmd_identifier_token21] = ACTIONS(1711), + [aux_sym_cmd_identifier_token22] = ACTIONS(1711), + [aux_sym_cmd_identifier_token23] = ACTIONS(1711), + [aux_sym_cmd_identifier_token24] = ACTIONS(1711), + [aux_sym_cmd_identifier_token25] = ACTIONS(1711), + [aux_sym_cmd_identifier_token26] = ACTIONS(1711), + [aux_sym_cmd_identifier_token27] = ACTIONS(1711), + [aux_sym_cmd_identifier_token28] = ACTIONS(1711), + [aux_sym_cmd_identifier_token29] = ACTIONS(1711), + [aux_sym_cmd_identifier_token30] = ACTIONS(1711), + [aux_sym_cmd_identifier_token31] = ACTIONS(1711), + [aux_sym_cmd_identifier_token32] = ACTIONS(1711), + [aux_sym_cmd_identifier_token33] = ACTIONS(1711), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1711), + [aux_sym_cmd_identifier_token36] = ACTIONS(1711), + [aux_sym_cmd_identifier_token37] = ACTIONS(1711), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1711), + [aux_sym_cmd_identifier_token40] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), + }, [359] = { - [sym_cell_path] = STATE(461), - [sym_path] = STATE(429), [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(375), - [anon_sym_export] = ACTIONS(969), - [anon_sym_alias] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_let_DASHenv] = ACTIONS(969), - [anon_sym_mut] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [aux_sym_cmd_identifier_token1] = ACTIONS(969), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), - [aux_sym_cmd_identifier_token8] = ACTIONS(969), - [aux_sym_cmd_identifier_token9] = ACTIONS(969), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), - [aux_sym_cmd_identifier_token12] = ACTIONS(969), - [aux_sym_cmd_identifier_token13] = ACTIONS(969), - [aux_sym_cmd_identifier_token14] = ACTIONS(969), - [aux_sym_cmd_identifier_token15] = ACTIONS(969), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), - [aux_sym_cmd_identifier_token34] = ACTIONS(969), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), - [aux_sym_cmd_identifier_token38] = ACTIONS(969), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), - [anon_sym_def] = ACTIONS(969), - [anon_sym_export_DASHenv] = ACTIONS(969), - [anon_sym_extern] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_make] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_try] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_source] = ACTIONS(969), - [anon_sym_source_DASHenv] = ACTIONS(969), - [anon_sym_register] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_hide_DASHenv] = ACTIONS(969), - [anon_sym_overlay] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [sym__entry_separator] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(971), + [anon_sym_export] = ACTIONS(1723), + [anon_sym_alias] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1723), + [anon_sym_let_DASHenv] = ACTIONS(1723), + [anon_sym_mut] = ACTIONS(1723), + [anon_sym_const] = ACTIONS(1723), + [aux_sym_cmd_identifier_token1] = ACTIONS(1723), + [aux_sym_cmd_identifier_token2] = ACTIONS(1725), + [aux_sym_cmd_identifier_token3] = ACTIONS(1725), + [aux_sym_cmd_identifier_token4] = ACTIONS(1725), + [aux_sym_cmd_identifier_token5] = ACTIONS(1725), + [aux_sym_cmd_identifier_token6] = ACTIONS(1725), + [aux_sym_cmd_identifier_token7] = ACTIONS(1725), + [aux_sym_cmd_identifier_token8] = ACTIONS(1723), + [aux_sym_cmd_identifier_token9] = ACTIONS(1723), + [aux_sym_cmd_identifier_token10] = ACTIONS(1725), + [aux_sym_cmd_identifier_token11] = ACTIONS(1725), + [aux_sym_cmd_identifier_token12] = ACTIONS(1723), + [aux_sym_cmd_identifier_token13] = ACTIONS(1723), + [aux_sym_cmd_identifier_token14] = ACTIONS(1723), + [aux_sym_cmd_identifier_token15] = ACTIONS(1723), + [aux_sym_cmd_identifier_token16] = ACTIONS(1725), + [aux_sym_cmd_identifier_token17] = ACTIONS(1725), + [aux_sym_cmd_identifier_token18] = ACTIONS(1725), + [aux_sym_cmd_identifier_token19] = ACTIONS(1725), + [aux_sym_cmd_identifier_token20] = ACTIONS(1725), + [aux_sym_cmd_identifier_token21] = ACTIONS(1725), + [aux_sym_cmd_identifier_token22] = ACTIONS(1725), + [aux_sym_cmd_identifier_token23] = ACTIONS(1725), + [aux_sym_cmd_identifier_token24] = ACTIONS(1725), + [aux_sym_cmd_identifier_token25] = ACTIONS(1725), + [aux_sym_cmd_identifier_token26] = ACTIONS(1725), + [aux_sym_cmd_identifier_token27] = ACTIONS(1725), + [aux_sym_cmd_identifier_token28] = ACTIONS(1725), + [aux_sym_cmd_identifier_token29] = ACTIONS(1725), + [aux_sym_cmd_identifier_token30] = ACTIONS(1725), + [aux_sym_cmd_identifier_token31] = ACTIONS(1725), + [aux_sym_cmd_identifier_token32] = ACTIONS(1725), + [aux_sym_cmd_identifier_token33] = ACTIONS(1725), + [aux_sym_cmd_identifier_token34] = ACTIONS(1723), + [aux_sym_cmd_identifier_token35] = ACTIONS(1725), + [aux_sym_cmd_identifier_token36] = ACTIONS(1725), + [aux_sym_cmd_identifier_token37] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1723), + [aux_sym_cmd_identifier_token39] = ACTIONS(1725), + [aux_sym_cmd_identifier_token40] = ACTIONS(1725), + [anon_sym_def] = ACTIONS(1723), + [anon_sym_export_DASHenv] = ACTIONS(1723), + [anon_sym_extern] = ACTIONS(1723), + [anon_sym_module] = ACTIONS(1723), + [anon_sym_use] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_error] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_loop] = ACTIONS(1723), + [anon_sym_make] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1723), + [anon_sym_do] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1723), + [anon_sym_catch] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_source] = ACTIONS(1723), + [anon_sym_source_DASHenv] = ACTIONS(1723), + [anon_sym_register] = ACTIONS(1723), + [anon_sym_hide] = ACTIONS(1723), + [anon_sym_hide_DASHenv] = ACTIONS(1723), + [anon_sym_overlay] = ACTIONS(1723), + [anon_sym_as] = ACTIONS(1723), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), + [aux_sym__val_number_decimal_token1] = ACTIONS(1723), + [aux_sym__val_number_decimal_token2] = ACTIONS(1725), + [aux_sym__val_number_decimal_token3] = ACTIONS(1725), + [aux_sym__val_number_decimal_token4] = ACTIONS(1725), + [aux_sym__val_number_token1] = ACTIONS(1725), + [aux_sym__val_number_token2] = ACTIONS(1725), + [aux_sym__val_number_token3] = ACTIONS(1725), + [aux_sym__val_number_token4] = ACTIONS(1723), + [aux_sym__val_number_token5] = ACTIONS(1723), + [aux_sym__val_number_token6] = ACTIONS(1723), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1725), }, [360] = { + [sym_cell_path] = STATE(511), + [sym_path] = STATE(443), [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(374), + [anon_sym_export] = ACTIONS(1761), + [anon_sym_alias] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_let_DASHenv] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [aux_sym_cmd_identifier_token1] = ACTIONS(1761), + [aux_sym_cmd_identifier_token2] = ACTIONS(1763), + [aux_sym_cmd_identifier_token3] = ACTIONS(1763), + [aux_sym_cmd_identifier_token4] = ACTIONS(1763), + [aux_sym_cmd_identifier_token5] = ACTIONS(1763), + [aux_sym_cmd_identifier_token6] = ACTIONS(1763), + [aux_sym_cmd_identifier_token7] = ACTIONS(1763), + [aux_sym_cmd_identifier_token8] = ACTIONS(1761), + [aux_sym_cmd_identifier_token9] = ACTIONS(1761), + [aux_sym_cmd_identifier_token10] = ACTIONS(1763), + [aux_sym_cmd_identifier_token11] = ACTIONS(1763), + [aux_sym_cmd_identifier_token12] = ACTIONS(1761), + [aux_sym_cmd_identifier_token13] = ACTIONS(1761), + [aux_sym_cmd_identifier_token14] = ACTIONS(1761), + [aux_sym_cmd_identifier_token15] = ACTIONS(1761), + [aux_sym_cmd_identifier_token16] = ACTIONS(1763), + [aux_sym_cmd_identifier_token17] = ACTIONS(1763), + [aux_sym_cmd_identifier_token18] = ACTIONS(1763), + [aux_sym_cmd_identifier_token19] = ACTIONS(1763), + [aux_sym_cmd_identifier_token20] = ACTIONS(1763), + [aux_sym_cmd_identifier_token21] = ACTIONS(1763), + [aux_sym_cmd_identifier_token22] = ACTIONS(1763), + [aux_sym_cmd_identifier_token23] = ACTIONS(1763), + [aux_sym_cmd_identifier_token24] = ACTIONS(1763), + [aux_sym_cmd_identifier_token25] = ACTIONS(1763), + [aux_sym_cmd_identifier_token26] = ACTIONS(1763), + [aux_sym_cmd_identifier_token27] = ACTIONS(1763), + [aux_sym_cmd_identifier_token28] = ACTIONS(1763), + [aux_sym_cmd_identifier_token29] = ACTIONS(1763), + [aux_sym_cmd_identifier_token30] = ACTIONS(1763), + [aux_sym_cmd_identifier_token31] = ACTIONS(1763), + [aux_sym_cmd_identifier_token32] = ACTIONS(1763), + [aux_sym_cmd_identifier_token33] = ACTIONS(1763), + [aux_sym_cmd_identifier_token34] = ACTIONS(1761), + [aux_sym_cmd_identifier_token35] = ACTIONS(1763), + [aux_sym_cmd_identifier_token36] = ACTIONS(1763), + [aux_sym_cmd_identifier_token37] = ACTIONS(1763), + [aux_sym_cmd_identifier_token38] = ACTIONS(1761), + [aux_sym_cmd_identifier_token39] = ACTIONS(1763), + [aux_sym_cmd_identifier_token40] = ACTIONS(1763), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_export_DASHenv] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_module] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_error] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_in2] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_make] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_catch] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_source] = ACTIONS(1761), + [anon_sym_source_DASHenv] = ACTIONS(1761), + [anon_sym_register] = ACTIONS(1761), + [anon_sym_hide] = ACTIONS(1761), + [anon_sym_hide_DASHenv] = ACTIONS(1761), + [anon_sym_overlay] = ACTIONS(1761), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1761), + [aux_sym__val_number_token5] = ACTIONS(1761), + [aux_sym__val_number_token6] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), + [anon_sym_DOT2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1763), }, [361] = { - [sym__expr_parenthesized_immediate] = STATE(757), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(757), + [sym_path] = STATE(400), [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_alias] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_let_DASHenv] = ACTIONS(1739), - [anon_sym_mut] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [aux_sym_cmd_identifier_token1] = ACTIONS(1739), - [aux_sym_cmd_identifier_token2] = ACTIONS(1741), - [aux_sym_cmd_identifier_token3] = ACTIONS(1741), - [aux_sym_cmd_identifier_token4] = ACTIONS(1741), - [aux_sym_cmd_identifier_token5] = ACTIONS(1741), - [aux_sym_cmd_identifier_token6] = ACTIONS(1741), - [aux_sym_cmd_identifier_token7] = ACTIONS(1741), - [aux_sym_cmd_identifier_token8] = ACTIONS(1739), - [aux_sym_cmd_identifier_token9] = ACTIONS(1739), - [aux_sym_cmd_identifier_token10] = ACTIONS(1741), - [aux_sym_cmd_identifier_token11] = ACTIONS(1741), - [aux_sym_cmd_identifier_token12] = ACTIONS(1739), - [aux_sym_cmd_identifier_token13] = ACTIONS(1739), - [aux_sym_cmd_identifier_token14] = ACTIONS(1739), - [aux_sym_cmd_identifier_token15] = ACTIONS(1739), - [aux_sym_cmd_identifier_token16] = ACTIONS(1741), - [aux_sym_cmd_identifier_token17] = ACTIONS(1741), - [aux_sym_cmd_identifier_token18] = ACTIONS(1741), - [aux_sym_cmd_identifier_token19] = ACTIONS(1741), - [aux_sym_cmd_identifier_token20] = ACTIONS(1741), - [aux_sym_cmd_identifier_token21] = ACTIONS(1741), - [aux_sym_cmd_identifier_token22] = ACTIONS(1741), - [aux_sym_cmd_identifier_token23] = ACTIONS(1741), - [aux_sym_cmd_identifier_token24] = ACTIONS(1741), - [aux_sym_cmd_identifier_token25] = ACTIONS(1741), - [aux_sym_cmd_identifier_token26] = ACTIONS(1741), - [aux_sym_cmd_identifier_token27] = ACTIONS(1741), - [aux_sym_cmd_identifier_token28] = ACTIONS(1741), - [aux_sym_cmd_identifier_token29] = ACTIONS(1741), - [aux_sym_cmd_identifier_token30] = ACTIONS(1741), - [aux_sym_cmd_identifier_token31] = ACTIONS(1741), - [aux_sym_cmd_identifier_token32] = ACTIONS(1741), - [aux_sym_cmd_identifier_token33] = ACTIONS(1741), - [aux_sym_cmd_identifier_token34] = ACTIONS(1739), - [aux_sym_cmd_identifier_token35] = ACTIONS(1741), - [aux_sym_cmd_identifier_token36] = ACTIONS(1741), - [aux_sym_cmd_identifier_token37] = ACTIONS(1741), - [aux_sym_cmd_identifier_token38] = ACTIONS(1739), - [aux_sym_cmd_identifier_token39] = ACTIONS(1741), - [aux_sym_cmd_identifier_token40] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_export_DASHenv] = ACTIONS(1739), - [anon_sym_extern] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_use] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1739), - [anon_sym_loop] = ACTIONS(1739), - [anon_sym_make] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_catch] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_source] = ACTIONS(1739), - [anon_sym_source_DASHenv] = ACTIONS(1739), - [anon_sym_register] = ACTIONS(1739), - [anon_sym_hide] = ACTIONS(1739), - [anon_sym_hide_DASHenv] = ACTIONS(1739), - [anon_sym_overlay] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1739), - [aux_sym__val_number_token5] = ACTIONS(1739), - [aux_sym__val_number_token6] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1741), + [aux_sym_cell_path_repeat1] = STATE(361), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(941), + [aux_sym_cmd_identifier_token3] = ACTIONS(941), + [aux_sym_cmd_identifier_token4] = ACTIONS(941), + [aux_sym_cmd_identifier_token5] = ACTIONS(941), + [aux_sym_cmd_identifier_token6] = ACTIONS(941), + [aux_sym_cmd_identifier_token7] = ACTIONS(941), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(941), + [aux_sym_cmd_identifier_token11] = ACTIONS(941), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(941), + [aux_sym_cmd_identifier_token17] = ACTIONS(941), + [aux_sym_cmd_identifier_token18] = ACTIONS(941), + [aux_sym_cmd_identifier_token19] = ACTIONS(941), + [aux_sym_cmd_identifier_token20] = ACTIONS(941), + [aux_sym_cmd_identifier_token21] = ACTIONS(941), + [aux_sym_cmd_identifier_token22] = ACTIONS(941), + [aux_sym_cmd_identifier_token23] = ACTIONS(941), + [aux_sym_cmd_identifier_token24] = ACTIONS(941), + [aux_sym_cmd_identifier_token25] = ACTIONS(941), + [aux_sym_cmd_identifier_token26] = ACTIONS(941), + [aux_sym_cmd_identifier_token27] = ACTIONS(941), + [aux_sym_cmd_identifier_token28] = ACTIONS(941), + [aux_sym_cmd_identifier_token29] = ACTIONS(941), + [aux_sym_cmd_identifier_token30] = ACTIONS(941), + [aux_sym_cmd_identifier_token31] = ACTIONS(941), + [aux_sym_cmd_identifier_token32] = ACTIONS(941), + [aux_sym_cmd_identifier_token33] = ACTIONS(941), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(941), + [aux_sym_cmd_identifier_token36] = ACTIONS(941), + [aux_sym_cmd_identifier_token37] = ACTIONS(941), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(941), + [aux_sym_cmd_identifier_token40] = ACTIONS(941), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(941), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(941), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(941), + [aux_sym__val_number_decimal_token3] = ACTIONS(941), + [aux_sym__val_number_decimal_token4] = ACTIONS(941), + [aux_sym__val_number_token1] = ACTIONS(941), + [aux_sym__val_number_token2] = ACTIONS(941), + [aux_sym__val_number_token3] = ACTIONS(941), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym__str_single_quotes] = ACTIONS(941), + [sym__str_back_ticks] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(941), + [sym__entry_separator] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(943), }, [362] = { - [sym__expr_parenthesized_immediate] = STATE(722), - [sym__immediate_decimal] = STATE(724), - [sym_val_variable] = STATE(722), [sym_comment] = STATE(362), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [aux_sym_cmd_identifier_token37] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_export] = ACTIONS(1599), + [anon_sym_alias] = ACTIONS(1599), + [anon_sym_let] = ACTIONS(1599), + [anon_sym_let_DASHenv] = ACTIONS(1599), + [anon_sym_mut] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [aux_sym_cmd_identifier_token1] = ACTIONS(1599), + [aux_sym_cmd_identifier_token2] = ACTIONS(1601), + [aux_sym_cmd_identifier_token3] = ACTIONS(1601), + [aux_sym_cmd_identifier_token4] = ACTIONS(1601), + [aux_sym_cmd_identifier_token5] = ACTIONS(1601), + [aux_sym_cmd_identifier_token6] = ACTIONS(1601), + [aux_sym_cmd_identifier_token7] = ACTIONS(1601), + [aux_sym_cmd_identifier_token8] = ACTIONS(1599), + [aux_sym_cmd_identifier_token9] = ACTIONS(1599), + [aux_sym_cmd_identifier_token10] = ACTIONS(1601), + [aux_sym_cmd_identifier_token11] = ACTIONS(1601), + [aux_sym_cmd_identifier_token12] = ACTIONS(1599), + [aux_sym_cmd_identifier_token13] = ACTIONS(1599), + [aux_sym_cmd_identifier_token14] = ACTIONS(1599), + [aux_sym_cmd_identifier_token15] = ACTIONS(1599), + [aux_sym_cmd_identifier_token16] = ACTIONS(1601), + [aux_sym_cmd_identifier_token17] = ACTIONS(1601), + [aux_sym_cmd_identifier_token18] = ACTIONS(1601), + [aux_sym_cmd_identifier_token19] = ACTIONS(1601), + [aux_sym_cmd_identifier_token20] = ACTIONS(1601), + [aux_sym_cmd_identifier_token21] = ACTIONS(1601), + [aux_sym_cmd_identifier_token22] = ACTIONS(1601), + [aux_sym_cmd_identifier_token23] = ACTIONS(1601), + [aux_sym_cmd_identifier_token24] = ACTIONS(1601), + [aux_sym_cmd_identifier_token25] = ACTIONS(1601), + [aux_sym_cmd_identifier_token26] = ACTIONS(1601), + [aux_sym_cmd_identifier_token27] = ACTIONS(1601), + [aux_sym_cmd_identifier_token28] = ACTIONS(1601), + [aux_sym_cmd_identifier_token29] = ACTIONS(1601), + [aux_sym_cmd_identifier_token30] = ACTIONS(1601), + [aux_sym_cmd_identifier_token31] = ACTIONS(1601), + [aux_sym_cmd_identifier_token32] = ACTIONS(1601), + [aux_sym_cmd_identifier_token33] = ACTIONS(1601), + [aux_sym_cmd_identifier_token34] = ACTIONS(1599), + [aux_sym_cmd_identifier_token35] = ACTIONS(1601), + [aux_sym_cmd_identifier_token36] = ACTIONS(1601), + [aux_sym_cmd_identifier_token37] = ACTIONS(1601), + [aux_sym_cmd_identifier_token38] = ACTIONS(1599), + [aux_sym_cmd_identifier_token39] = ACTIONS(1601), + [aux_sym_cmd_identifier_token40] = ACTIONS(1601), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_export_DASHenv] = ACTIONS(1599), + [anon_sym_extern] = ACTIONS(1599), + [anon_sym_module] = ACTIONS(1599), + [anon_sym_use] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1601), + [anon_sym_error] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_loop] = ACTIONS(1599), + [anon_sym_make] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_do] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_source] = ACTIONS(1599), + [anon_sym_source_DASHenv] = ACTIONS(1599), + [anon_sym_register] = ACTIONS(1599), + [anon_sym_hide] = ACTIONS(1599), + [anon_sym_hide_DASHenv] = ACTIONS(1599), + [anon_sym_overlay] = ACTIONS(1599), + [anon_sym_as] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1601), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [363] = { - [sym__expr_parenthesized_immediate] = STATE(763), - [sym__immediate_decimal] = STATE(719), - [sym_val_variable] = STATE(763), + [sym_path] = STATE(400), [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(1677), - [anon_sym_alias] = ACTIONS(1677), - [anon_sym_let] = ACTIONS(1677), - [anon_sym_let_DASHenv] = ACTIONS(1677), - [anon_sym_mut] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [aux_sym_cmd_identifier_token1] = ACTIONS(1677), - [aux_sym_cmd_identifier_token2] = ACTIONS(1685), - [aux_sym_cmd_identifier_token3] = ACTIONS(1685), - [aux_sym_cmd_identifier_token4] = ACTIONS(1685), - [aux_sym_cmd_identifier_token5] = ACTIONS(1685), - [aux_sym_cmd_identifier_token6] = ACTIONS(1685), - [aux_sym_cmd_identifier_token7] = ACTIONS(1685), - [aux_sym_cmd_identifier_token8] = ACTIONS(1677), - [aux_sym_cmd_identifier_token9] = ACTIONS(1677), - [aux_sym_cmd_identifier_token10] = ACTIONS(1685), - [aux_sym_cmd_identifier_token11] = ACTIONS(1685), - [aux_sym_cmd_identifier_token12] = ACTIONS(1677), - [aux_sym_cmd_identifier_token13] = ACTIONS(1677), - [aux_sym_cmd_identifier_token14] = ACTIONS(1677), - [aux_sym_cmd_identifier_token15] = ACTIONS(1677), - [aux_sym_cmd_identifier_token16] = ACTIONS(1685), - [aux_sym_cmd_identifier_token17] = ACTIONS(1685), - [aux_sym_cmd_identifier_token18] = ACTIONS(1685), - [aux_sym_cmd_identifier_token19] = ACTIONS(1685), - [aux_sym_cmd_identifier_token20] = ACTIONS(1685), - [aux_sym_cmd_identifier_token21] = ACTIONS(1685), - [aux_sym_cmd_identifier_token22] = ACTIONS(1685), - [aux_sym_cmd_identifier_token23] = ACTIONS(1685), - [aux_sym_cmd_identifier_token24] = ACTIONS(1685), - [aux_sym_cmd_identifier_token25] = ACTIONS(1685), - [aux_sym_cmd_identifier_token26] = ACTIONS(1685), - [aux_sym_cmd_identifier_token27] = ACTIONS(1685), - [aux_sym_cmd_identifier_token28] = ACTIONS(1685), - [aux_sym_cmd_identifier_token29] = ACTIONS(1685), - [aux_sym_cmd_identifier_token30] = ACTIONS(1685), - [aux_sym_cmd_identifier_token31] = ACTIONS(1685), - [aux_sym_cmd_identifier_token32] = ACTIONS(1685), - [aux_sym_cmd_identifier_token33] = ACTIONS(1685), - [aux_sym_cmd_identifier_token34] = ACTIONS(1677), - [aux_sym_cmd_identifier_token35] = ACTIONS(1685), - [aux_sym_cmd_identifier_token36] = ACTIONS(1685), - [aux_sym_cmd_identifier_token37] = ACTIONS(1685), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1685), - [aux_sym_cmd_identifier_token40] = ACTIONS(1685), - [anon_sym_def] = ACTIONS(1677), - [anon_sym_export_DASHenv] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym_module] = ACTIONS(1677), - [anon_sym_use] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_in2] = ACTIONS(1677), - [anon_sym_loop] = ACTIONS(1677), - [anon_sym_make] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_match] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_try] = ACTIONS(1677), - [anon_sym_catch] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_source] = ACTIONS(1677), - [anon_sym_source_DASHenv] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_hide] = ACTIONS(1677), - [anon_sym_hide_DASHenv] = ACTIONS(1677), - [anon_sym_overlay] = ACTIONS(1677), - [anon_sym_as] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1685), - [aux_sym__immediate_decimal_token1] = ACTIONS(1747), - [aux_sym__immediate_decimal_token3] = ACTIONS(1749), - [aux_sym__immediate_decimal_token4] = ACTIONS(1751), - [aux_sym__immediate_decimal_token5] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1685), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1685), - [aux_sym__val_number_token2] = ACTIONS(1685), - [aux_sym__val_number_token3] = ACTIONS(1685), - [aux_sym__val_number_token4] = ACTIONS(1677), - [aux_sym__val_number_token5] = ACTIONS(1677), - [aux_sym__val_number_token6] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym__str_single_quotes] = ACTIONS(1685), - [sym__str_back_ticks] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1685), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1685), + [aux_sym_cell_path_repeat1] = STATE(361), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(948), + [aux_sym_cmd_identifier_token3] = ACTIONS(948), + [aux_sym_cmd_identifier_token4] = ACTIONS(948), + [aux_sym_cmd_identifier_token5] = ACTIONS(948), + [aux_sym_cmd_identifier_token6] = ACTIONS(948), + [aux_sym_cmd_identifier_token7] = ACTIONS(948), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(948), + [aux_sym_cmd_identifier_token17] = ACTIONS(948), + [aux_sym_cmd_identifier_token18] = ACTIONS(948), + [aux_sym_cmd_identifier_token19] = ACTIONS(948), + [aux_sym_cmd_identifier_token20] = ACTIONS(948), + [aux_sym_cmd_identifier_token21] = ACTIONS(948), + [aux_sym_cmd_identifier_token22] = ACTIONS(948), + [aux_sym_cmd_identifier_token23] = ACTIONS(948), + [aux_sym_cmd_identifier_token24] = ACTIONS(948), + [aux_sym_cmd_identifier_token25] = ACTIONS(948), + [aux_sym_cmd_identifier_token26] = ACTIONS(948), + [aux_sym_cmd_identifier_token27] = ACTIONS(948), + [aux_sym_cmd_identifier_token28] = ACTIONS(948), + [aux_sym_cmd_identifier_token29] = ACTIONS(948), + [aux_sym_cmd_identifier_token30] = ACTIONS(948), + [aux_sym_cmd_identifier_token31] = ACTIONS(948), + [aux_sym_cmd_identifier_token32] = ACTIONS(948), + [aux_sym_cmd_identifier_token33] = ACTIONS(948), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [sym__entry_separator] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(950), }, [364] = { - [sym__expr_parenthesized_immediate] = STATE(7982), + [sym_cell_path] = STATE(512), + [sym_path] = STATE(443), [sym_comment] = STATE(364), - [anon_sym_export] = ACTIONS(1687), - [anon_sym_alias] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_let_DASHenv] = ACTIONS(1687), - [anon_sym_mut] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1687), - [aux_sym_cmd_identifier_token2] = ACTIONS(1699), - [aux_sym_cmd_identifier_token3] = ACTIONS(1699), - [aux_sym_cmd_identifier_token4] = ACTIONS(1699), - [aux_sym_cmd_identifier_token5] = ACTIONS(1699), - [aux_sym_cmd_identifier_token6] = ACTIONS(1699), - [aux_sym_cmd_identifier_token7] = ACTIONS(1699), - [aux_sym_cmd_identifier_token8] = ACTIONS(1687), - [aux_sym_cmd_identifier_token9] = ACTIONS(1687), - [aux_sym_cmd_identifier_token10] = ACTIONS(1699), - [aux_sym_cmd_identifier_token11] = ACTIONS(1699), - [aux_sym_cmd_identifier_token12] = ACTIONS(1687), - [aux_sym_cmd_identifier_token13] = ACTIONS(1687), - [aux_sym_cmd_identifier_token14] = ACTIONS(1687), - [aux_sym_cmd_identifier_token15] = ACTIONS(1687), - [aux_sym_cmd_identifier_token16] = ACTIONS(1699), - [aux_sym_cmd_identifier_token17] = ACTIONS(1699), - [aux_sym_cmd_identifier_token18] = ACTIONS(1699), - [aux_sym_cmd_identifier_token19] = ACTIONS(1699), - [aux_sym_cmd_identifier_token20] = ACTIONS(1699), - [aux_sym_cmd_identifier_token21] = ACTIONS(1699), - [aux_sym_cmd_identifier_token22] = ACTIONS(1699), - [aux_sym_cmd_identifier_token23] = ACTIONS(1699), - [aux_sym_cmd_identifier_token24] = ACTIONS(1699), - [aux_sym_cmd_identifier_token25] = ACTIONS(1699), - [aux_sym_cmd_identifier_token26] = ACTIONS(1699), - [aux_sym_cmd_identifier_token27] = ACTIONS(1699), - [aux_sym_cmd_identifier_token28] = ACTIONS(1699), - [aux_sym_cmd_identifier_token29] = ACTIONS(1699), - [aux_sym_cmd_identifier_token30] = ACTIONS(1699), - [aux_sym_cmd_identifier_token31] = ACTIONS(1699), - [aux_sym_cmd_identifier_token32] = ACTIONS(1699), - [aux_sym_cmd_identifier_token33] = ACTIONS(1699), - [aux_sym_cmd_identifier_token34] = ACTIONS(1687), - [aux_sym_cmd_identifier_token35] = ACTIONS(1699), - [aux_sym_cmd_identifier_token36] = ACTIONS(1699), - [aux_sym_cmd_identifier_token37] = ACTIONS(1699), - [aux_sym_cmd_identifier_token38] = ACTIONS(1687), - [aux_sym_cmd_identifier_token39] = ACTIONS(1699), - [aux_sym_cmd_identifier_token40] = ACTIONS(1699), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_export_DASHenv] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_module] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1699), - [anon_sym_error] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_make] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_catch] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_source] = ACTIONS(1687), - [anon_sym_source_DASHenv] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_hide] = ACTIONS(1687), - [anon_sym_hide_DASHenv] = ACTIONS(1687), - [anon_sym_overlay] = ACTIONS(1687), - [anon_sym_as] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1789), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1789), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1687), - [aux_sym__val_number_token5] = ACTIONS(1687), - [aux_sym__val_number_token6] = ACTIONS(1687), - [sym_filesize_unit] = ACTIONS(1791), - [sym_duration_unit] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [aux_sym_cell_path_repeat1] = STATE(374), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_alias] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_let_DASHenv] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [aux_sym_cmd_identifier_token1] = ACTIONS(1717), + [aux_sym_cmd_identifier_token2] = ACTIONS(1719), + [aux_sym_cmd_identifier_token3] = ACTIONS(1719), + [aux_sym_cmd_identifier_token4] = ACTIONS(1719), + [aux_sym_cmd_identifier_token5] = ACTIONS(1719), + [aux_sym_cmd_identifier_token6] = ACTIONS(1719), + [aux_sym_cmd_identifier_token7] = ACTIONS(1719), + [aux_sym_cmd_identifier_token8] = ACTIONS(1717), + [aux_sym_cmd_identifier_token9] = ACTIONS(1717), + [aux_sym_cmd_identifier_token10] = ACTIONS(1719), + [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token12] = ACTIONS(1717), + [aux_sym_cmd_identifier_token13] = ACTIONS(1717), + [aux_sym_cmd_identifier_token14] = ACTIONS(1717), + [aux_sym_cmd_identifier_token15] = ACTIONS(1717), + [aux_sym_cmd_identifier_token16] = ACTIONS(1719), + [aux_sym_cmd_identifier_token17] = ACTIONS(1719), + [aux_sym_cmd_identifier_token18] = ACTIONS(1719), + [aux_sym_cmd_identifier_token19] = ACTIONS(1719), + [aux_sym_cmd_identifier_token20] = ACTIONS(1719), + [aux_sym_cmd_identifier_token21] = ACTIONS(1719), + [aux_sym_cmd_identifier_token22] = ACTIONS(1719), + [aux_sym_cmd_identifier_token23] = ACTIONS(1719), + [aux_sym_cmd_identifier_token24] = ACTIONS(1719), + [aux_sym_cmd_identifier_token25] = ACTIONS(1719), + [aux_sym_cmd_identifier_token26] = ACTIONS(1719), + [aux_sym_cmd_identifier_token27] = ACTIONS(1719), + [aux_sym_cmd_identifier_token28] = ACTIONS(1719), + [aux_sym_cmd_identifier_token29] = ACTIONS(1719), + [aux_sym_cmd_identifier_token30] = ACTIONS(1719), + [aux_sym_cmd_identifier_token31] = ACTIONS(1719), + [aux_sym_cmd_identifier_token32] = ACTIONS(1719), + [aux_sym_cmd_identifier_token33] = ACTIONS(1719), + [aux_sym_cmd_identifier_token34] = ACTIONS(1717), + [aux_sym_cmd_identifier_token35] = ACTIONS(1719), + [aux_sym_cmd_identifier_token36] = ACTIONS(1719), + [aux_sym_cmd_identifier_token37] = ACTIONS(1719), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1719), + [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_export_DASHenv] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_error] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_in2] = ACTIONS(1717), + [anon_sym_loop] = ACTIONS(1717), + [anon_sym_make] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_catch] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_source] = ACTIONS(1717), + [anon_sym_source_DASHenv] = ACTIONS(1717), + [anon_sym_register] = ACTIONS(1717), + [anon_sym_hide] = ACTIONS(1717), + [anon_sym_hide_DASHenv] = ACTIONS(1717), + [anon_sym_overlay] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1717), + [aux_sym__val_number_token5] = ACTIONS(1717), + [aux_sym__val_number_token6] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), + [anon_sym_DOT2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1719), }, [365] = { - [sym_cell_path] = STATE(528), - [sym_path] = STATE(472), [sym_comment] = STATE(365), - [aux_sym_cell_path_repeat1] = STATE(391), - [anon_sym_export] = ACTIONS(969), - [anon_sym_alias] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_let_DASHenv] = ACTIONS(969), - [anon_sym_mut] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [aux_sym_cmd_identifier_token1] = ACTIONS(969), - [aux_sym_cmd_identifier_token2] = ACTIONS(971), - [aux_sym_cmd_identifier_token3] = ACTIONS(971), - [aux_sym_cmd_identifier_token4] = ACTIONS(971), - [aux_sym_cmd_identifier_token5] = ACTIONS(971), - [aux_sym_cmd_identifier_token6] = ACTIONS(971), - [aux_sym_cmd_identifier_token7] = ACTIONS(971), - [aux_sym_cmd_identifier_token8] = ACTIONS(969), - [aux_sym_cmd_identifier_token9] = ACTIONS(969), - [aux_sym_cmd_identifier_token10] = ACTIONS(971), - [aux_sym_cmd_identifier_token11] = ACTIONS(971), - [aux_sym_cmd_identifier_token12] = ACTIONS(969), - [aux_sym_cmd_identifier_token13] = ACTIONS(969), - [aux_sym_cmd_identifier_token14] = ACTIONS(969), - [aux_sym_cmd_identifier_token15] = ACTIONS(969), - [aux_sym_cmd_identifier_token16] = ACTIONS(971), - [aux_sym_cmd_identifier_token17] = ACTIONS(971), - [aux_sym_cmd_identifier_token18] = ACTIONS(971), - [aux_sym_cmd_identifier_token19] = ACTIONS(971), - [aux_sym_cmd_identifier_token20] = ACTIONS(971), - [aux_sym_cmd_identifier_token21] = ACTIONS(971), - [aux_sym_cmd_identifier_token22] = ACTIONS(971), - [aux_sym_cmd_identifier_token23] = ACTIONS(971), - [aux_sym_cmd_identifier_token24] = ACTIONS(971), - [aux_sym_cmd_identifier_token25] = ACTIONS(971), - [aux_sym_cmd_identifier_token26] = ACTIONS(971), - [aux_sym_cmd_identifier_token27] = ACTIONS(971), - [aux_sym_cmd_identifier_token28] = ACTIONS(971), - [aux_sym_cmd_identifier_token29] = ACTIONS(971), - [aux_sym_cmd_identifier_token30] = ACTIONS(971), - [aux_sym_cmd_identifier_token31] = ACTIONS(971), - [aux_sym_cmd_identifier_token32] = ACTIONS(971), - [aux_sym_cmd_identifier_token33] = ACTIONS(971), - [aux_sym_cmd_identifier_token34] = ACTIONS(969), - [aux_sym_cmd_identifier_token35] = ACTIONS(971), - [aux_sym_cmd_identifier_token36] = ACTIONS(971), - [aux_sym_cmd_identifier_token37] = ACTIONS(971), - [aux_sym_cmd_identifier_token38] = ACTIONS(969), - [aux_sym_cmd_identifier_token39] = ACTIONS(971), - [aux_sym_cmd_identifier_token40] = ACTIONS(971), - [anon_sym_def] = ACTIONS(969), - [anon_sym_export_DASHenv] = ACTIONS(969), - [anon_sym_extern] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_make] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_source] = ACTIONS(969), - [anon_sym_source_DASHenv] = ACTIONS(969), - [anon_sym_register] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_hide_DASHenv] = ACTIONS(969), - [anon_sym_overlay] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), - }, - [366] = { - [sym_cell_path] = STATE(519), - [sym_path] = STATE(472), - [sym_comment] = STATE(366), - [aux_sym_cell_path_repeat1] = STATE(391), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [aux_sym_cmd_identifier_token1] = ACTIONS(1763), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1763), - [aux_sym_cmd_identifier_token9] = ACTIONS(1763), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1763), - [aux_sym_cmd_identifier_token13] = ACTIONS(1763), - [aux_sym_cmd_identifier_token14] = ACTIONS(1763), - [aux_sym_cmd_identifier_token15] = ACTIONS(1763), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1763), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1763), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_make] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_catch] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1765), - }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_alias] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_let_DASHenv] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [aux_sym_cmd_identifier_token1] = ACTIONS(1661), - [aux_sym_cmd_identifier_token2] = ACTIONS(1663), - [aux_sym_cmd_identifier_token3] = ACTIONS(1663), - [aux_sym_cmd_identifier_token4] = ACTIONS(1663), - [aux_sym_cmd_identifier_token5] = ACTIONS(1663), - [aux_sym_cmd_identifier_token6] = ACTIONS(1663), - [aux_sym_cmd_identifier_token7] = ACTIONS(1663), - [aux_sym_cmd_identifier_token8] = ACTIONS(1661), - [aux_sym_cmd_identifier_token9] = ACTIONS(1661), - [aux_sym_cmd_identifier_token10] = ACTIONS(1663), - [aux_sym_cmd_identifier_token11] = ACTIONS(1663), - [aux_sym_cmd_identifier_token12] = ACTIONS(1661), - [aux_sym_cmd_identifier_token13] = ACTIONS(1661), - [aux_sym_cmd_identifier_token14] = ACTIONS(1661), - [aux_sym_cmd_identifier_token15] = ACTIONS(1661), - [aux_sym_cmd_identifier_token16] = ACTIONS(1663), - [aux_sym_cmd_identifier_token17] = ACTIONS(1663), - [aux_sym_cmd_identifier_token18] = ACTIONS(1663), - [aux_sym_cmd_identifier_token19] = ACTIONS(1663), - [aux_sym_cmd_identifier_token20] = ACTIONS(1663), - [aux_sym_cmd_identifier_token21] = ACTIONS(1663), - [aux_sym_cmd_identifier_token22] = ACTIONS(1663), - [aux_sym_cmd_identifier_token23] = ACTIONS(1663), - [aux_sym_cmd_identifier_token24] = ACTIONS(1663), - [aux_sym_cmd_identifier_token25] = ACTIONS(1663), - [aux_sym_cmd_identifier_token26] = ACTIONS(1663), - [aux_sym_cmd_identifier_token27] = ACTIONS(1663), - [aux_sym_cmd_identifier_token28] = ACTIONS(1663), - [aux_sym_cmd_identifier_token29] = ACTIONS(1663), - [aux_sym_cmd_identifier_token30] = ACTIONS(1663), - [aux_sym_cmd_identifier_token31] = ACTIONS(1663), - [aux_sym_cmd_identifier_token32] = ACTIONS(1663), - [aux_sym_cmd_identifier_token33] = ACTIONS(1663), - [aux_sym_cmd_identifier_token34] = ACTIONS(1661), - [aux_sym_cmd_identifier_token35] = ACTIONS(1663), - [aux_sym_cmd_identifier_token36] = ACTIONS(1663), - [aux_sym_cmd_identifier_token37] = ACTIONS(1663), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1663), - [aux_sym_cmd_identifier_token40] = ACTIONS(1663), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_export_DASHenv] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1663), - [anon_sym_error] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_make] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_source] = ACTIONS(1661), - [anon_sym_source_DASHenv] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_hide_DASHenv] = ACTIONS(1661), - [anon_sym_overlay] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1661), - [aux_sym__val_number_token5] = ACTIONS(1661), - [aux_sym__val_number_token6] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), - }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_alias] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_let_DASHenv] = ACTIONS(1767), - [anon_sym_mut] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [aux_sym_cmd_identifier_token1] = ACTIONS(1767), - [aux_sym_cmd_identifier_token2] = ACTIONS(1769), - [aux_sym_cmd_identifier_token3] = ACTIONS(1769), - [aux_sym_cmd_identifier_token4] = ACTIONS(1769), - [aux_sym_cmd_identifier_token5] = ACTIONS(1769), - [aux_sym_cmd_identifier_token6] = ACTIONS(1769), - [aux_sym_cmd_identifier_token7] = ACTIONS(1769), - [aux_sym_cmd_identifier_token8] = ACTIONS(1767), - [aux_sym_cmd_identifier_token9] = ACTIONS(1767), - [aux_sym_cmd_identifier_token10] = ACTIONS(1769), - [aux_sym_cmd_identifier_token11] = ACTIONS(1769), - [aux_sym_cmd_identifier_token12] = ACTIONS(1767), - [aux_sym_cmd_identifier_token13] = ACTIONS(1767), - [aux_sym_cmd_identifier_token14] = ACTIONS(1767), - [aux_sym_cmd_identifier_token15] = ACTIONS(1767), - [aux_sym_cmd_identifier_token16] = ACTIONS(1769), - [aux_sym_cmd_identifier_token17] = ACTIONS(1769), - [aux_sym_cmd_identifier_token18] = ACTIONS(1769), - [aux_sym_cmd_identifier_token19] = ACTIONS(1769), - [aux_sym_cmd_identifier_token20] = ACTIONS(1769), - [aux_sym_cmd_identifier_token21] = ACTIONS(1769), - [aux_sym_cmd_identifier_token22] = ACTIONS(1769), - [aux_sym_cmd_identifier_token23] = ACTIONS(1769), - [aux_sym_cmd_identifier_token24] = ACTIONS(1769), - [aux_sym_cmd_identifier_token25] = ACTIONS(1769), - [aux_sym_cmd_identifier_token26] = ACTIONS(1769), - [aux_sym_cmd_identifier_token27] = ACTIONS(1769), - [aux_sym_cmd_identifier_token28] = ACTIONS(1769), - [aux_sym_cmd_identifier_token29] = ACTIONS(1769), - [aux_sym_cmd_identifier_token30] = ACTIONS(1769), - [aux_sym_cmd_identifier_token31] = ACTIONS(1769), - [aux_sym_cmd_identifier_token32] = ACTIONS(1769), - [aux_sym_cmd_identifier_token33] = ACTIONS(1769), - [aux_sym_cmd_identifier_token34] = ACTIONS(1767), - [aux_sym_cmd_identifier_token35] = ACTIONS(1769), - [aux_sym_cmd_identifier_token36] = ACTIONS(1769), - [aux_sym_cmd_identifier_token37] = ACTIONS(1769), - [aux_sym_cmd_identifier_token38] = ACTIONS(1767), - [aux_sym_cmd_identifier_token39] = ACTIONS(1769), - [aux_sym_cmd_identifier_token40] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1767), - [anon_sym_export_DASHenv] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_use] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1769), - [anon_sym_error] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_loop] = ACTIONS(1767), - [anon_sym_make] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_else] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_catch] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_source] = ACTIONS(1767), - [anon_sym_source_DASHenv] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_hide] = ACTIONS(1767), - [anon_sym_hide_DASHenv] = ACTIONS(1767), - [anon_sym_overlay] = ACTIONS(1767), - [anon_sym_as] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1767), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1769), - }, - [371] = { - [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [372] = { - [sym_path] = STATE(429), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(372), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [aux_sym_cmd_identifier_token1] = ACTIONS(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(975), - [aux_sym_cmd_identifier_token3] = ACTIONS(975), - [aux_sym_cmd_identifier_token4] = ACTIONS(975), - [aux_sym_cmd_identifier_token5] = ACTIONS(975), - [aux_sym_cmd_identifier_token6] = ACTIONS(975), - [aux_sym_cmd_identifier_token7] = ACTIONS(975), - [aux_sym_cmd_identifier_token8] = ACTIONS(975), - [aux_sym_cmd_identifier_token9] = ACTIONS(975), - [aux_sym_cmd_identifier_token10] = ACTIONS(975), - [aux_sym_cmd_identifier_token11] = ACTIONS(975), - [aux_sym_cmd_identifier_token12] = ACTIONS(975), - [aux_sym_cmd_identifier_token13] = ACTIONS(975), - [aux_sym_cmd_identifier_token14] = ACTIONS(975), - [aux_sym_cmd_identifier_token15] = ACTIONS(975), - [aux_sym_cmd_identifier_token16] = ACTIONS(975), - [aux_sym_cmd_identifier_token17] = ACTIONS(975), - [aux_sym_cmd_identifier_token18] = ACTIONS(975), - [aux_sym_cmd_identifier_token19] = ACTIONS(975), - [aux_sym_cmd_identifier_token20] = ACTIONS(975), - [aux_sym_cmd_identifier_token21] = ACTIONS(975), - [aux_sym_cmd_identifier_token22] = ACTIONS(975), - [aux_sym_cmd_identifier_token23] = ACTIONS(975), - [aux_sym_cmd_identifier_token24] = ACTIONS(975), - [aux_sym_cmd_identifier_token25] = ACTIONS(975), - [aux_sym_cmd_identifier_token26] = ACTIONS(975), - [aux_sym_cmd_identifier_token27] = ACTIONS(975), - [aux_sym_cmd_identifier_token28] = ACTIONS(975), - [aux_sym_cmd_identifier_token29] = ACTIONS(975), - [aux_sym_cmd_identifier_token30] = ACTIONS(975), - [aux_sym_cmd_identifier_token31] = ACTIONS(975), - [aux_sym_cmd_identifier_token32] = ACTIONS(975), - [aux_sym_cmd_identifier_token33] = ACTIONS(975), - [aux_sym_cmd_identifier_token34] = ACTIONS(975), - [aux_sym_cmd_identifier_token35] = ACTIONS(975), - [aux_sym_cmd_identifier_token36] = ACTIONS(975), - [aux_sym_cmd_identifier_token37] = ACTIONS(975), - [aux_sym_cmd_identifier_token38] = ACTIONS(975), - [aux_sym_cmd_identifier_token39] = ACTIONS(975), - [aux_sym_cmd_identifier_token40] = ACTIONS(975), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), - [sym__entry_separator] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(977), - }, - [373] = { - [sym_cell_path] = STATE(516), - [sym_path] = STATE(472), - [sym_comment] = STATE(373), - [aux_sym_cell_path_repeat1] = STATE(391), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1761), - [aux_sym_cmd_identifier_token3] = ACTIONS(1761), - [aux_sym_cmd_identifier_token4] = ACTIONS(1761), - [aux_sym_cmd_identifier_token5] = ACTIONS(1761), - [aux_sym_cmd_identifier_token6] = ACTIONS(1761), - [aux_sym_cmd_identifier_token7] = ACTIONS(1761), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1761), - [aux_sym_cmd_identifier_token11] = ACTIONS(1761), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1761), - [aux_sym_cmd_identifier_token17] = ACTIONS(1761), - [aux_sym_cmd_identifier_token18] = ACTIONS(1761), - [aux_sym_cmd_identifier_token19] = ACTIONS(1761), - [aux_sym_cmd_identifier_token20] = ACTIONS(1761), - [aux_sym_cmd_identifier_token21] = ACTIONS(1761), - [aux_sym_cmd_identifier_token22] = ACTIONS(1761), - [aux_sym_cmd_identifier_token23] = ACTIONS(1761), - [aux_sym_cmd_identifier_token24] = ACTIONS(1761), - [aux_sym_cmd_identifier_token25] = ACTIONS(1761), - [aux_sym_cmd_identifier_token26] = ACTIONS(1761), - [aux_sym_cmd_identifier_token27] = ACTIONS(1761), - [aux_sym_cmd_identifier_token28] = ACTIONS(1761), - [aux_sym_cmd_identifier_token29] = ACTIONS(1761), - [aux_sym_cmd_identifier_token30] = ACTIONS(1761), - [aux_sym_cmd_identifier_token31] = ACTIONS(1761), - [aux_sym_cmd_identifier_token32] = ACTIONS(1761), - [aux_sym_cmd_identifier_token33] = ACTIONS(1761), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1761), - [aux_sym_cmd_identifier_token36] = ACTIONS(1761), - [aux_sym_cmd_identifier_token37] = ACTIONS(1761), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1761), - [aux_sym_cmd_identifier_token40] = ACTIONS(1761), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1761), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1761), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1761), - [aux_sym__val_number_decimal_token3] = ACTIONS(1761), - [aux_sym__val_number_decimal_token4] = ACTIONS(1761), - [aux_sym__val_number_token1] = ACTIONS(1761), - [aux_sym__val_number_token2] = ACTIONS(1761), - [aux_sym__val_number_token3] = ACTIONS(1761), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym__str_single_quotes] = ACTIONS(1761), - [sym__str_back_ticks] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1761), - }, - [374] = { - [sym_comment] = STATE(374), - [anon_sym_export] = ACTIONS(1669), - [anon_sym_alias] = ACTIONS(1669), - [anon_sym_let] = ACTIONS(1669), - [anon_sym_let_DASHenv] = ACTIONS(1669), - [anon_sym_mut] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [aux_sym_cmd_identifier_token1] = ACTIONS(1669), - [aux_sym_cmd_identifier_token2] = ACTIONS(1671), - [aux_sym_cmd_identifier_token3] = ACTIONS(1671), - [aux_sym_cmd_identifier_token4] = ACTIONS(1671), - [aux_sym_cmd_identifier_token5] = ACTIONS(1671), - [aux_sym_cmd_identifier_token6] = ACTIONS(1671), - [aux_sym_cmd_identifier_token7] = ACTIONS(1671), - [aux_sym_cmd_identifier_token8] = ACTIONS(1669), - [aux_sym_cmd_identifier_token9] = ACTIONS(1669), - [aux_sym_cmd_identifier_token10] = ACTIONS(1671), - [aux_sym_cmd_identifier_token11] = ACTIONS(1671), - [aux_sym_cmd_identifier_token12] = ACTIONS(1669), - [aux_sym_cmd_identifier_token13] = ACTIONS(1669), - [aux_sym_cmd_identifier_token14] = ACTIONS(1669), - [aux_sym_cmd_identifier_token15] = ACTIONS(1669), - [aux_sym_cmd_identifier_token16] = ACTIONS(1671), - [aux_sym_cmd_identifier_token17] = ACTIONS(1671), - [aux_sym_cmd_identifier_token18] = ACTIONS(1671), - [aux_sym_cmd_identifier_token19] = ACTIONS(1671), - [aux_sym_cmd_identifier_token20] = ACTIONS(1671), - [aux_sym_cmd_identifier_token21] = ACTIONS(1671), - [aux_sym_cmd_identifier_token22] = ACTIONS(1671), - [aux_sym_cmd_identifier_token23] = ACTIONS(1671), - [aux_sym_cmd_identifier_token24] = ACTIONS(1671), - [aux_sym_cmd_identifier_token25] = ACTIONS(1671), - [aux_sym_cmd_identifier_token26] = ACTIONS(1671), - [aux_sym_cmd_identifier_token27] = ACTIONS(1671), - [aux_sym_cmd_identifier_token28] = ACTIONS(1671), - [aux_sym_cmd_identifier_token29] = ACTIONS(1671), - [aux_sym_cmd_identifier_token30] = ACTIONS(1671), - [aux_sym_cmd_identifier_token31] = ACTIONS(1671), - [aux_sym_cmd_identifier_token32] = ACTIONS(1671), - [aux_sym_cmd_identifier_token33] = ACTIONS(1671), - [aux_sym_cmd_identifier_token34] = ACTIONS(1669), - [aux_sym_cmd_identifier_token35] = ACTIONS(1671), - [aux_sym_cmd_identifier_token36] = ACTIONS(1671), - [aux_sym_cmd_identifier_token37] = ACTIONS(1671), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1671), - [aux_sym_cmd_identifier_token40] = ACTIONS(1671), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_export_DASHenv] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_module] = ACTIONS(1669), - [anon_sym_use] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_error] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_loop] = ACTIONS(1669), - [anon_sym_make] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_catch] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_source] = ACTIONS(1669), - [anon_sym_source_DASHenv] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_hide] = ACTIONS(1669), - [anon_sym_hide_DASHenv] = ACTIONS(1669), - [anon_sym_overlay] = ACTIONS(1669), - [anon_sym_as] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1671), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), - }, - [375] = { - [sym_path] = STATE(429), - [sym_comment] = STATE(375), - [aux_sym_cell_path_repeat1] = STATE(372), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [sym__entry_separator] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(984), - }, - [376] = { - [sym_comment] = STATE(376), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [377] = { - [sym_comment] = STATE(377), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -127291,8 +120709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(1812), - [aux_sym__immediate_decimal_token2] = ACTIONS(1814), + [aux_sym__immediate_decimal_token2] = ACTIONS(1784), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1773), @@ -127312,113 +120729,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [378] = { - [sym_comment] = STATE(378), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [366] = { + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(1729), }, - [379] = { - [sym_comment] = STATE(379), + [367] = { + [sym_comment] = STATE(367), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [368] = { + [sym_comment] = STATE(368), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -127522,533 +121044,1999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1773), }, + [369] = { + [sym_comment] = STATE(369), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [sym__entry_separator] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1788), + }, + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(1790), + [aux_sym__immediate_decimal_token2] = ACTIONS(1792), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_alias] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_let_DASHenv] = ACTIONS(1794), + [anon_sym_mut] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [aux_sym_cmd_identifier_token1] = ACTIONS(1794), + [aux_sym_cmd_identifier_token2] = ACTIONS(1794), + [aux_sym_cmd_identifier_token3] = ACTIONS(1794), + [aux_sym_cmd_identifier_token4] = ACTIONS(1794), + [aux_sym_cmd_identifier_token5] = ACTIONS(1794), + [aux_sym_cmd_identifier_token6] = ACTIONS(1794), + [aux_sym_cmd_identifier_token7] = ACTIONS(1794), + [aux_sym_cmd_identifier_token8] = ACTIONS(1794), + [aux_sym_cmd_identifier_token9] = ACTIONS(1794), + [aux_sym_cmd_identifier_token10] = ACTIONS(1794), + [aux_sym_cmd_identifier_token11] = ACTIONS(1794), + [aux_sym_cmd_identifier_token12] = ACTIONS(1794), + [aux_sym_cmd_identifier_token13] = ACTIONS(1794), + [aux_sym_cmd_identifier_token14] = ACTIONS(1794), + [aux_sym_cmd_identifier_token15] = ACTIONS(1794), + [aux_sym_cmd_identifier_token16] = ACTIONS(1794), + [aux_sym_cmd_identifier_token17] = ACTIONS(1794), + [aux_sym_cmd_identifier_token18] = ACTIONS(1794), + [aux_sym_cmd_identifier_token19] = ACTIONS(1794), + [aux_sym_cmd_identifier_token20] = ACTIONS(1794), + [aux_sym_cmd_identifier_token21] = ACTIONS(1794), + [aux_sym_cmd_identifier_token22] = ACTIONS(1794), + [aux_sym_cmd_identifier_token23] = ACTIONS(1794), + [aux_sym_cmd_identifier_token24] = ACTIONS(1794), + [aux_sym_cmd_identifier_token25] = ACTIONS(1794), + [aux_sym_cmd_identifier_token26] = ACTIONS(1794), + [aux_sym_cmd_identifier_token27] = ACTIONS(1794), + [aux_sym_cmd_identifier_token28] = ACTIONS(1794), + [aux_sym_cmd_identifier_token29] = ACTIONS(1794), + [aux_sym_cmd_identifier_token30] = ACTIONS(1794), + [aux_sym_cmd_identifier_token31] = ACTIONS(1794), + [aux_sym_cmd_identifier_token32] = ACTIONS(1794), + [aux_sym_cmd_identifier_token33] = ACTIONS(1794), + [aux_sym_cmd_identifier_token34] = ACTIONS(1794), + [aux_sym_cmd_identifier_token35] = ACTIONS(1794), + [aux_sym_cmd_identifier_token36] = ACTIONS(1794), + [aux_sym_cmd_identifier_token37] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [anon_sym_def] = ACTIONS(1794), + [anon_sym_export_DASHenv] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_error] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_in2] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_make] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_try] = ACTIONS(1794), + [anon_sym_catch] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_source] = ACTIONS(1794), + [anon_sym_source_DASHenv] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1794), + [anon_sym_hide] = ACTIONS(1794), + [anon_sym_hide_DASHenv] = ACTIONS(1794), + [anon_sym_overlay] = ACTIONS(1794), + [anon_sym_as] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_PLUS2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), + [anon_sym_DOT_DOT2] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [sym__entry_separator] = ACTIONS(1802), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), + }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(978), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1806), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1808), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [374] = { + [sym_path] = STATE(443), + [sym_comment] = STATE(374), + [aux_sym_cell_path_repeat1] = STATE(375), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [375] = { + [sym_path] = STATE(443), + [sym_comment] = STATE(375), + [aux_sym_cell_path_repeat1] = STATE(375), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(943), + [aux_sym_cmd_identifier_token3] = ACTIONS(943), + [aux_sym_cmd_identifier_token4] = ACTIONS(943), + [aux_sym_cmd_identifier_token5] = ACTIONS(943), + [aux_sym_cmd_identifier_token6] = ACTIONS(943), + [aux_sym_cmd_identifier_token7] = ACTIONS(943), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(943), + [aux_sym_cmd_identifier_token11] = ACTIONS(943), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(943), + [aux_sym_cmd_identifier_token17] = ACTIONS(943), + [aux_sym_cmd_identifier_token18] = ACTIONS(943), + [aux_sym_cmd_identifier_token19] = ACTIONS(943), + [aux_sym_cmd_identifier_token20] = ACTIONS(943), + [aux_sym_cmd_identifier_token21] = ACTIONS(943), + [aux_sym_cmd_identifier_token22] = ACTIONS(943), + [aux_sym_cmd_identifier_token23] = ACTIONS(943), + [aux_sym_cmd_identifier_token24] = ACTIONS(943), + [aux_sym_cmd_identifier_token25] = ACTIONS(943), + [aux_sym_cmd_identifier_token26] = ACTIONS(943), + [aux_sym_cmd_identifier_token27] = ACTIONS(943), + [aux_sym_cmd_identifier_token28] = ACTIONS(943), + [aux_sym_cmd_identifier_token29] = ACTIONS(943), + [aux_sym_cmd_identifier_token30] = ACTIONS(943), + [aux_sym_cmd_identifier_token31] = ACTIONS(943), + [aux_sym_cmd_identifier_token32] = ACTIONS(943), + [aux_sym_cmd_identifier_token33] = ACTIONS(943), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(943), + [aux_sym_cmd_identifier_token36] = ACTIONS(943), + [aux_sym_cmd_identifier_token37] = ACTIONS(943), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(943), + [aux_sym_cmd_identifier_token40] = ACTIONS(943), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), + }, + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [aux_sym_cmd_identifier_token37] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(962), + [aux_sym__val_number_decimal_token4] = ACTIONS(962), + [aux_sym__val_number_token1] = ACTIONS(962), + [aux_sym__val_number_token2] = ACTIONS(962), + [aux_sym__val_number_token3] = ACTIONS(962), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [sym__entry_separator] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(964), + }, + [377] = { + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(1813), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(968), + }, + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(1815), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [sym__entry_separator] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(954), + }, + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(972), + [aux_sym_cmd_identifier_token3] = ACTIONS(972), + [aux_sym_cmd_identifier_token4] = ACTIONS(972), + [aux_sym_cmd_identifier_token5] = ACTIONS(972), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [aux_sym_cmd_identifier_token7] = ACTIONS(972), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(972), + [aux_sym_cmd_identifier_token11] = ACTIONS(972), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(972), + [aux_sym_cmd_identifier_token17] = ACTIONS(972), + [aux_sym_cmd_identifier_token18] = ACTIONS(972), + [aux_sym_cmd_identifier_token19] = ACTIONS(972), + [aux_sym_cmd_identifier_token20] = ACTIONS(972), + [aux_sym_cmd_identifier_token21] = ACTIONS(972), + [aux_sym_cmd_identifier_token22] = ACTIONS(972), + [aux_sym_cmd_identifier_token23] = ACTIONS(972), + [aux_sym_cmd_identifier_token24] = ACTIONS(972), + [aux_sym_cmd_identifier_token25] = ACTIONS(972), + [aux_sym_cmd_identifier_token26] = ACTIONS(972), + [aux_sym_cmd_identifier_token27] = ACTIONS(972), + [aux_sym_cmd_identifier_token28] = ACTIONS(972), + [aux_sym_cmd_identifier_token29] = ACTIONS(972), + [aux_sym_cmd_identifier_token30] = ACTIONS(972), + [aux_sym_cmd_identifier_token31] = ACTIONS(972), + [aux_sym_cmd_identifier_token32] = ACTIONS(972), + [aux_sym_cmd_identifier_token33] = ACTIONS(972), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(972), + [aux_sym_cmd_identifier_token36] = ACTIONS(972), + [aux_sym_cmd_identifier_token37] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(972), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [sym__entry_separator] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(974), + }, [380] = { [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1008), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1816), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [sym__entry_separator] = ACTIONS(1010), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [sym__entry_separator] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1010), + [sym_raw_string_begin] = ACTIONS(960), }, [381] = { [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [382] = { + [sym_cell_path] = STATE(567), + [sym_path] = STATE(513), [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1818), - [aux_sym_cmd_identifier_token3] = ACTIONS(1818), - [aux_sym_cmd_identifier_token4] = ACTIONS(1818), - [aux_sym_cmd_identifier_token5] = ACTIONS(1818), - [aux_sym_cmd_identifier_token6] = ACTIONS(1818), - [aux_sym_cmd_identifier_token7] = ACTIONS(1818), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1818), - [aux_sym_cmd_identifier_token11] = ACTIONS(1818), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1818), - [aux_sym_cmd_identifier_token17] = ACTIONS(1818), - [aux_sym_cmd_identifier_token18] = ACTIONS(1818), - [aux_sym_cmd_identifier_token19] = ACTIONS(1818), - [aux_sym_cmd_identifier_token20] = ACTIONS(1818), - [aux_sym_cmd_identifier_token21] = ACTIONS(1818), - [aux_sym_cmd_identifier_token22] = ACTIONS(1818), - [aux_sym_cmd_identifier_token23] = ACTIONS(1818), - [aux_sym_cmd_identifier_token24] = ACTIONS(1818), - [aux_sym_cmd_identifier_token25] = ACTIONS(1818), - [aux_sym_cmd_identifier_token26] = ACTIONS(1818), - [aux_sym_cmd_identifier_token27] = ACTIONS(1818), - [aux_sym_cmd_identifier_token28] = ACTIONS(1818), - [aux_sym_cmd_identifier_token29] = ACTIONS(1818), - [aux_sym_cmd_identifier_token30] = ACTIONS(1818), - [aux_sym_cmd_identifier_token31] = ACTIONS(1818), - [aux_sym_cmd_identifier_token32] = ACTIONS(1818), - [aux_sym_cmd_identifier_token33] = ACTIONS(1818), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1818), - [aux_sym_cmd_identifier_token36] = ACTIONS(1818), - [aux_sym_cmd_identifier_token37] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_decimal_token4] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), - [sym__entry_separator] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1820), + [aux_sym_cell_path_repeat1] = STATE(397), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), }, [383] = { [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1819), + [anon_sym_alias] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_let_DASHenv] = ACTIONS(1819), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [aux_sym_cmd_identifier_token1] = ACTIONS(1819), + [aux_sym_cmd_identifier_token2] = ACTIONS(1819), + [aux_sym_cmd_identifier_token3] = ACTIONS(1819), + [aux_sym_cmd_identifier_token4] = ACTIONS(1819), + [aux_sym_cmd_identifier_token5] = ACTIONS(1819), + [aux_sym_cmd_identifier_token6] = ACTIONS(1819), + [aux_sym_cmd_identifier_token7] = ACTIONS(1819), + [aux_sym_cmd_identifier_token8] = ACTIONS(1819), + [aux_sym_cmd_identifier_token9] = ACTIONS(1819), + [aux_sym_cmd_identifier_token10] = ACTIONS(1819), + [aux_sym_cmd_identifier_token11] = ACTIONS(1819), + [aux_sym_cmd_identifier_token12] = ACTIONS(1819), + [aux_sym_cmd_identifier_token13] = ACTIONS(1819), + [aux_sym_cmd_identifier_token14] = ACTIONS(1819), + [aux_sym_cmd_identifier_token15] = ACTIONS(1819), + [aux_sym_cmd_identifier_token16] = ACTIONS(1819), + [aux_sym_cmd_identifier_token17] = ACTIONS(1819), + [aux_sym_cmd_identifier_token18] = ACTIONS(1819), + [aux_sym_cmd_identifier_token19] = ACTIONS(1819), + [aux_sym_cmd_identifier_token20] = ACTIONS(1819), + [aux_sym_cmd_identifier_token21] = ACTIONS(1819), + [aux_sym_cmd_identifier_token22] = ACTIONS(1819), + [aux_sym_cmd_identifier_token23] = ACTIONS(1819), + [aux_sym_cmd_identifier_token24] = ACTIONS(1819), + [aux_sym_cmd_identifier_token25] = ACTIONS(1819), + [aux_sym_cmd_identifier_token26] = ACTIONS(1819), + [aux_sym_cmd_identifier_token27] = ACTIONS(1819), + [aux_sym_cmd_identifier_token28] = ACTIONS(1819), + [aux_sym_cmd_identifier_token29] = ACTIONS(1819), + [aux_sym_cmd_identifier_token30] = ACTIONS(1819), + [aux_sym_cmd_identifier_token31] = ACTIONS(1819), + [aux_sym_cmd_identifier_token32] = ACTIONS(1819), + [aux_sym_cmd_identifier_token33] = ACTIONS(1819), + [aux_sym_cmd_identifier_token34] = ACTIONS(1819), + [aux_sym_cmd_identifier_token35] = ACTIONS(1819), + [aux_sym_cmd_identifier_token36] = ACTIONS(1819), + [aux_sym_cmd_identifier_token37] = ACTIONS(1819), + [aux_sym_cmd_identifier_token38] = ACTIONS(1819), + [aux_sym_cmd_identifier_token39] = ACTIONS(1819), + [aux_sym_cmd_identifier_token40] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_export_DASHenv] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_module] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_in2] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_make] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_do] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_else] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_catch] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_source] = ACTIONS(1819), + [anon_sym_source_DASHenv] = ACTIONS(1819), + [anon_sym_register] = ACTIONS(1819), + [anon_sym_hide] = ACTIONS(1819), + [anon_sym_hide_DASHenv] = ACTIONS(1819), + [anon_sym_overlay] = ACTIONS(1819), + [anon_sym_as] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), + [anon_sym_DOT_DOT2] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1825), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), + [sym__entry_separator] = ACTIONS(1827), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1827), }, [384] = { + [sym_cell_path] = STATE(618), + [sym_path] = STATE(575), [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1829), + [aux_sym_cmd_identifier_token3] = ACTIONS(1829), + [aux_sym_cmd_identifier_token4] = ACTIONS(1829), + [aux_sym_cmd_identifier_token5] = ACTIONS(1829), + [aux_sym_cmd_identifier_token6] = ACTIONS(1829), + [aux_sym_cmd_identifier_token7] = ACTIONS(1829), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1829), + [aux_sym_cmd_identifier_token11] = ACTIONS(1829), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1829), + [aux_sym_cmd_identifier_token17] = ACTIONS(1829), + [aux_sym_cmd_identifier_token18] = ACTIONS(1829), + [aux_sym_cmd_identifier_token19] = ACTIONS(1829), + [aux_sym_cmd_identifier_token20] = ACTIONS(1829), + [aux_sym_cmd_identifier_token21] = ACTIONS(1829), + [aux_sym_cmd_identifier_token22] = ACTIONS(1829), + [aux_sym_cmd_identifier_token23] = ACTIONS(1829), + [aux_sym_cmd_identifier_token24] = ACTIONS(1829), + [aux_sym_cmd_identifier_token25] = ACTIONS(1829), + [aux_sym_cmd_identifier_token26] = ACTIONS(1829), + [aux_sym_cmd_identifier_token27] = ACTIONS(1829), + [aux_sym_cmd_identifier_token28] = ACTIONS(1829), + [aux_sym_cmd_identifier_token29] = ACTIONS(1829), + [aux_sym_cmd_identifier_token30] = ACTIONS(1829), + [aux_sym_cmd_identifier_token31] = ACTIONS(1829), + [aux_sym_cmd_identifier_token32] = ACTIONS(1829), + [aux_sym_cmd_identifier_token33] = ACTIONS(1829), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1829), + [aux_sym_cmd_identifier_token36] = ACTIONS(1829), + [aux_sym_cmd_identifier_token37] = ACTIONS(1829), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), + [aux_sym_cmd_identifier_token39] = ACTIONS(1829), + [aux_sym_cmd_identifier_token40] = ACTIONS(1829), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in2] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_register] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1829), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1829), + [aux_sym__val_number_decimal_token3] = ACTIONS(1829), + [aux_sym__val_number_decimal_token4] = ACTIONS(1829), + [aux_sym__val_number_token1] = ACTIONS(1829), + [aux_sym__val_number_token2] = ACTIONS(1829), + [aux_sym__val_number_token3] = ACTIONS(1829), + [aux_sym__val_number_token4] = ACTIONS(1829), + [aux_sym__val_number_token5] = ACTIONS(1829), + [aux_sym__val_number_token6] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [sym__str_single_quotes] = ACTIONS(1829), + [sym__str_back_ticks] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1829), + [sym__entry_separator] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), + [sym_raw_string_begin] = ACTIONS(1831), }, [385] = { [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [aux_sym__immediate_decimal_token1] = ACTIONS(1835), + [aux_sym__immediate_decimal_token2] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1808), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [387] = { + [sym_expr_parenthesized] = STATE(4081), + [sym__spread_parenthesized] = STATE(4413), + [sym_val_range] = STATE(4414), + [sym__val_range] = STATE(7475), + [sym__val_range_with_end] = STATE(7208), + [sym__value] = STATE(4414), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym__spread_variable] = STATE(4417), + [sym_val_variable] = STATE(4087), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3822), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym__spread_list] = STATE(4413), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym__cmd_arg] = STATE(4418), + [sym_redirection] = STATE(4419), + [sym_short_flag] = STATE(4420), + [sym_long_flag] = STATE(4420), + [sym_unquoted] = STATE(4138), + [sym__unquoted_with_expr] = STATE(4421), + [sym__unquoted_anonymous_prefix] = STATE(6991), + [sym_comment] = STATE(387), + [sym__newline] = ACTIONS(1839), + [sym__space] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_err_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_GT_PIPE] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_LT] = ACTIONS(1859), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1891), + [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(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1897), + }, + [388] = { + [sym_comment] = STATE(388), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -128131,8 +123119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(1824), - [aux_sym__immediate_decimal_token2] = ACTIONS(1826), + [aux_sym__immediate_decimal_token2] = ACTIONS(1899), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1771), @@ -128152,3246 +123139,1363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1773), }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [sym__entry_separator] = ACTIONS(998), + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [390] = { + [sym_comment] = STATE(390), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [391] = { + [sym_comment] = STATE(391), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1905), + [aux_sym__immediate_decimal_token2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(998), + [sym_raw_string_begin] = ACTIONS(1737), }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(1828), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), + [392] = { + [sym_comment] = STATE(392), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), + }, + [393] = { + [sym_comment] = STATE(393), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(1909), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), + }, + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(1911), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), + }, + [395] = { + [sym_expr_parenthesized] = STATE(4081), + [sym__spread_parenthesized] = STATE(4413), + [sym_val_range] = STATE(4414), + [sym__val_range] = STATE(7475), + [sym__val_range_with_end] = STATE(7208), + [sym__value] = STATE(4414), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym__spread_variable] = STATE(4417), + [sym_val_variable] = STATE(4087), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3822), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym__spread_list] = STATE(4413), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym__cmd_arg] = STATE(4418), + [sym_redirection] = STATE(4419), + [sym_short_flag] = STATE(4420), + [sym_long_flag] = STATE(4420), + [sym_unquoted] = STATE(4138), + [sym__unquoted_with_expr] = STATE(4421), + [sym__unquoted_anonymous_prefix] = STATE(6991), + [sym_comment] = STATE(395), + [sym__newline] = ACTIONS(1913), + [sym__space] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_err_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_GT_PIPE] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_LT] = ACTIONS(1859), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1891), + [anon_sym_COLON2] = ACTIONS(1916), + [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(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), - }, - [388] = { - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(988), - }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1830), - [anon_sym_alias] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_let_DASHenv] = ACTIONS(1830), - [anon_sym_mut] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [aux_sym_cmd_identifier_token1] = ACTIONS(1830), - [aux_sym_cmd_identifier_token2] = ACTIONS(1830), - [aux_sym_cmd_identifier_token3] = ACTIONS(1830), - [aux_sym_cmd_identifier_token4] = ACTIONS(1830), - [aux_sym_cmd_identifier_token5] = ACTIONS(1830), - [aux_sym_cmd_identifier_token6] = ACTIONS(1830), - [aux_sym_cmd_identifier_token7] = ACTIONS(1830), - [aux_sym_cmd_identifier_token8] = ACTIONS(1830), - [aux_sym_cmd_identifier_token9] = ACTIONS(1830), - [aux_sym_cmd_identifier_token10] = ACTIONS(1830), - [aux_sym_cmd_identifier_token11] = ACTIONS(1830), - [aux_sym_cmd_identifier_token12] = ACTIONS(1830), - [aux_sym_cmd_identifier_token13] = ACTIONS(1830), - [aux_sym_cmd_identifier_token14] = ACTIONS(1830), - [aux_sym_cmd_identifier_token15] = ACTIONS(1830), - [aux_sym_cmd_identifier_token16] = ACTIONS(1830), - [aux_sym_cmd_identifier_token17] = ACTIONS(1830), - [aux_sym_cmd_identifier_token18] = ACTIONS(1830), - [aux_sym_cmd_identifier_token19] = ACTIONS(1830), - [aux_sym_cmd_identifier_token20] = ACTIONS(1830), - [aux_sym_cmd_identifier_token21] = ACTIONS(1830), - [aux_sym_cmd_identifier_token22] = ACTIONS(1830), - [aux_sym_cmd_identifier_token23] = ACTIONS(1830), - [aux_sym_cmd_identifier_token24] = ACTIONS(1830), - [aux_sym_cmd_identifier_token25] = ACTIONS(1830), - [aux_sym_cmd_identifier_token26] = ACTIONS(1830), - [aux_sym_cmd_identifier_token27] = ACTIONS(1830), - [aux_sym_cmd_identifier_token28] = ACTIONS(1830), - [aux_sym_cmd_identifier_token29] = ACTIONS(1830), - [aux_sym_cmd_identifier_token30] = ACTIONS(1830), - [aux_sym_cmd_identifier_token31] = ACTIONS(1830), - [aux_sym_cmd_identifier_token32] = ACTIONS(1830), - [aux_sym_cmd_identifier_token33] = ACTIONS(1830), - [aux_sym_cmd_identifier_token34] = ACTIONS(1830), - [aux_sym_cmd_identifier_token35] = ACTIONS(1830), - [aux_sym_cmd_identifier_token36] = ACTIONS(1830), - [aux_sym_cmd_identifier_token37] = ACTIONS(1830), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1830), - [aux_sym_cmd_identifier_token40] = ACTIONS(1830), - [anon_sym_def] = ACTIONS(1830), - [anon_sym_export_DASHenv] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_error] = ACTIONS(1830), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_in2] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_make] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_catch] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_source] = ACTIONS(1830), - [anon_sym_source_DASHenv] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_hide] = ACTIONS(1830), - [anon_sym_hide_DASHenv] = ACTIONS(1830), - [anon_sym_overlay] = ACTIONS(1830), - [anon_sym_as] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1830), - [anon_sym_DOT_DOT2] = ACTIONS(1834), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1836), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1830), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1830), - [aux_sym__val_number_decimal_token4] = ACTIONS(1830), - [aux_sym__val_number_token1] = ACTIONS(1830), - [aux_sym__val_number_token2] = ACTIONS(1830), - [aux_sym__val_number_token3] = ACTIONS(1830), - [aux_sym__val_number_token4] = ACTIONS(1830), - [aux_sym__val_number_token5] = ACTIONS(1830), - [aux_sym__val_number_token6] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1830), - [sym__entry_separator] = ACTIONS(1838), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1838), - }, - [390] = { - [sym_comment] = STATE(390), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_alias] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_let_DASHenv] = ACTIONS(1840), - [anon_sym_mut] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [aux_sym_cmd_identifier_token1] = ACTIONS(1840), - [aux_sym_cmd_identifier_token2] = ACTIONS(1840), - [aux_sym_cmd_identifier_token3] = ACTIONS(1840), - [aux_sym_cmd_identifier_token4] = ACTIONS(1840), - [aux_sym_cmd_identifier_token5] = ACTIONS(1840), - [aux_sym_cmd_identifier_token6] = ACTIONS(1840), - [aux_sym_cmd_identifier_token7] = ACTIONS(1840), - [aux_sym_cmd_identifier_token8] = ACTIONS(1840), - [aux_sym_cmd_identifier_token9] = ACTIONS(1840), - [aux_sym_cmd_identifier_token10] = ACTIONS(1840), - [aux_sym_cmd_identifier_token11] = ACTIONS(1840), - [aux_sym_cmd_identifier_token12] = ACTIONS(1840), - [aux_sym_cmd_identifier_token13] = ACTIONS(1840), - [aux_sym_cmd_identifier_token14] = ACTIONS(1840), - [aux_sym_cmd_identifier_token15] = ACTIONS(1840), - [aux_sym_cmd_identifier_token16] = ACTIONS(1840), - [aux_sym_cmd_identifier_token17] = ACTIONS(1840), - [aux_sym_cmd_identifier_token18] = ACTIONS(1840), - [aux_sym_cmd_identifier_token19] = ACTIONS(1840), - [aux_sym_cmd_identifier_token20] = ACTIONS(1840), - [aux_sym_cmd_identifier_token21] = ACTIONS(1840), - [aux_sym_cmd_identifier_token22] = ACTIONS(1840), - [aux_sym_cmd_identifier_token23] = ACTIONS(1840), - [aux_sym_cmd_identifier_token24] = ACTIONS(1840), - [aux_sym_cmd_identifier_token25] = ACTIONS(1840), - [aux_sym_cmd_identifier_token26] = ACTIONS(1840), - [aux_sym_cmd_identifier_token27] = ACTIONS(1840), - [aux_sym_cmd_identifier_token28] = ACTIONS(1840), - [aux_sym_cmd_identifier_token29] = ACTIONS(1840), - [aux_sym_cmd_identifier_token30] = ACTIONS(1840), - [aux_sym_cmd_identifier_token31] = ACTIONS(1840), - [aux_sym_cmd_identifier_token32] = ACTIONS(1840), - [aux_sym_cmd_identifier_token33] = ACTIONS(1840), - [aux_sym_cmd_identifier_token34] = ACTIONS(1840), - [aux_sym_cmd_identifier_token35] = ACTIONS(1840), - [aux_sym_cmd_identifier_token36] = ACTIONS(1840), - [aux_sym_cmd_identifier_token37] = ACTIONS(1840), - [aux_sym_cmd_identifier_token38] = ACTIONS(1840), - [aux_sym_cmd_identifier_token39] = ACTIONS(1840), - [aux_sym_cmd_identifier_token40] = ACTIONS(1840), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_export_DASHenv] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_error] = ACTIONS(1840), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_in2] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_make] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_do] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_else] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_catch] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_source] = ACTIONS(1840), - [anon_sym_source_DASHenv] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_hide] = ACTIONS(1840), - [anon_sym_hide_DASHenv] = ACTIONS(1840), - [anon_sym_overlay] = ACTIONS(1840), - [anon_sym_as] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1840), - [anon_sym_DOT_DOT2] = ACTIONS(1844), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1846), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1840), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1840), - [aux_sym__val_number_decimal_token3] = ACTIONS(1840), - [aux_sym__val_number_decimal_token4] = ACTIONS(1840), - [aux_sym__val_number_token1] = ACTIONS(1840), - [aux_sym__val_number_token2] = ACTIONS(1840), - [aux_sym__val_number_token3] = ACTIONS(1840), - [aux_sym__val_number_token4] = ACTIONS(1840), - [aux_sym__val_number_token5] = ACTIONS(1840), - [aux_sym__val_number_token6] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym__str_single_quotes] = ACTIONS(1840), - [sym__str_back_ticks] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1840), - [sym__entry_separator] = ACTIONS(1848), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1848), - }, - [391] = { - [sym_path] = STATE(472), - [sym_comment] = STATE(391), - [aux_sym_cell_path_repeat1] = STATE(396), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), - }, - [392] = { - [sym_comment] = STATE(392), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [393] = { - [sym_cell_path] = STATE(580), - [sym_path] = STATE(529), - [sym_comment] = STATE(393), - [aux_sym_cell_path_repeat1] = STATE(420), - [anon_sym_export] = ACTIONS(969), - [anon_sym_alias] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_let_DASHenv] = ACTIONS(969), - [anon_sym_mut] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [aux_sym_cmd_identifier_token1] = ACTIONS(969), - [aux_sym_cmd_identifier_token2] = ACTIONS(971), - [aux_sym_cmd_identifier_token3] = ACTIONS(971), - [aux_sym_cmd_identifier_token4] = ACTIONS(971), - [aux_sym_cmd_identifier_token5] = ACTIONS(971), - [aux_sym_cmd_identifier_token6] = ACTIONS(971), - [aux_sym_cmd_identifier_token7] = ACTIONS(971), - [aux_sym_cmd_identifier_token8] = ACTIONS(969), - [aux_sym_cmd_identifier_token9] = ACTIONS(969), - [aux_sym_cmd_identifier_token10] = ACTIONS(971), - [aux_sym_cmd_identifier_token11] = ACTIONS(971), - [aux_sym_cmd_identifier_token12] = ACTIONS(969), - [aux_sym_cmd_identifier_token13] = ACTIONS(969), - [aux_sym_cmd_identifier_token14] = ACTIONS(969), - [aux_sym_cmd_identifier_token15] = ACTIONS(969), - [aux_sym_cmd_identifier_token16] = ACTIONS(971), - [aux_sym_cmd_identifier_token17] = ACTIONS(971), - [aux_sym_cmd_identifier_token18] = ACTIONS(971), - [aux_sym_cmd_identifier_token19] = ACTIONS(971), - [aux_sym_cmd_identifier_token20] = ACTIONS(971), - [aux_sym_cmd_identifier_token21] = ACTIONS(971), - [aux_sym_cmd_identifier_token22] = ACTIONS(971), - [aux_sym_cmd_identifier_token23] = ACTIONS(971), - [aux_sym_cmd_identifier_token24] = ACTIONS(971), - [aux_sym_cmd_identifier_token25] = ACTIONS(971), - [aux_sym_cmd_identifier_token26] = ACTIONS(971), - [aux_sym_cmd_identifier_token27] = ACTIONS(971), - [aux_sym_cmd_identifier_token28] = ACTIONS(971), - [aux_sym_cmd_identifier_token29] = ACTIONS(971), - [aux_sym_cmd_identifier_token30] = ACTIONS(971), - [aux_sym_cmd_identifier_token31] = ACTIONS(971), - [aux_sym_cmd_identifier_token32] = ACTIONS(971), - [aux_sym_cmd_identifier_token33] = ACTIONS(971), - [aux_sym_cmd_identifier_token34] = ACTIONS(969), - [aux_sym_cmd_identifier_token35] = ACTIONS(971), - [aux_sym_cmd_identifier_token36] = ACTIONS(971), - [aux_sym_cmd_identifier_token37] = ACTIONS(971), - [aux_sym_cmd_identifier_token38] = ACTIONS(969), - [aux_sym_cmd_identifier_token39] = ACTIONS(971), - [aux_sym_cmd_identifier_token40] = ACTIONS(971), - [anon_sym_def] = ACTIONS(969), - [anon_sym_export_DASHenv] = ACTIONS(969), - [anon_sym_extern] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_make] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_source] = ACTIONS(969), - [anon_sym_source_DASHenv] = ACTIONS(969), - [anon_sym_register] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_hide_DASHenv] = ACTIONS(969), - [anon_sym_overlay] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1852), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), - [aux_sym_record_entry_token1] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), - }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(1897), }, [396] = { - [sym_path] = STATE(472), + [sym_cell_path] = STATE(681), + [sym_path] = STATE(575), [sym_comment] = STATE(396), - [aux_sym_cell_path_repeat1] = STATE(396), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [aux_sym_cmd_identifier_token1] = ACTIONS(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(977), - [aux_sym_cmd_identifier_token3] = ACTIONS(977), - [aux_sym_cmd_identifier_token4] = ACTIONS(977), - [aux_sym_cmd_identifier_token5] = ACTIONS(977), - [aux_sym_cmd_identifier_token6] = ACTIONS(977), - [aux_sym_cmd_identifier_token7] = ACTIONS(977), - [aux_sym_cmd_identifier_token8] = ACTIONS(975), - [aux_sym_cmd_identifier_token9] = ACTIONS(975), - [aux_sym_cmd_identifier_token10] = ACTIONS(977), - [aux_sym_cmd_identifier_token11] = ACTIONS(977), - [aux_sym_cmd_identifier_token12] = ACTIONS(975), - [aux_sym_cmd_identifier_token13] = ACTIONS(975), - [aux_sym_cmd_identifier_token14] = ACTIONS(975), - [aux_sym_cmd_identifier_token15] = ACTIONS(975), - [aux_sym_cmd_identifier_token16] = ACTIONS(977), - [aux_sym_cmd_identifier_token17] = ACTIONS(977), - [aux_sym_cmd_identifier_token18] = ACTIONS(977), - [aux_sym_cmd_identifier_token19] = ACTIONS(977), - [aux_sym_cmd_identifier_token20] = ACTIONS(977), - [aux_sym_cmd_identifier_token21] = ACTIONS(977), - [aux_sym_cmd_identifier_token22] = ACTIONS(977), - [aux_sym_cmd_identifier_token23] = ACTIONS(977), - [aux_sym_cmd_identifier_token24] = ACTIONS(977), - [aux_sym_cmd_identifier_token25] = ACTIONS(977), - [aux_sym_cmd_identifier_token26] = ACTIONS(977), - [aux_sym_cmd_identifier_token27] = ACTIONS(977), - [aux_sym_cmd_identifier_token28] = ACTIONS(977), - [aux_sym_cmd_identifier_token29] = ACTIONS(977), - [aux_sym_cmd_identifier_token30] = ACTIONS(977), - [aux_sym_cmd_identifier_token31] = ACTIONS(977), - [aux_sym_cmd_identifier_token32] = ACTIONS(977), - [aux_sym_cmd_identifier_token33] = ACTIONS(977), - [aux_sym_cmd_identifier_token34] = ACTIONS(975), - [aux_sym_cmd_identifier_token35] = ACTIONS(977), - [aux_sym_cmd_identifier_token36] = ACTIONS(977), - [aux_sym_cmd_identifier_token37] = ACTIONS(977), - [aux_sym_cmd_identifier_token38] = ACTIONS(975), - [aux_sym_cmd_identifier_token39] = ACTIONS(977), - [aux_sym_cmd_identifier_token40] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(1858), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1918), + [anon_sym_alias] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_let_DASHenv] = ACTIONS(1918), + [anon_sym_mut] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [aux_sym_cmd_identifier_token1] = ACTIONS(1918), + [aux_sym_cmd_identifier_token2] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [aux_sym_cmd_identifier_token6] = ACTIONS(1918), + [aux_sym_cmd_identifier_token7] = ACTIONS(1918), + [aux_sym_cmd_identifier_token8] = ACTIONS(1918), + [aux_sym_cmd_identifier_token9] = ACTIONS(1918), + [aux_sym_cmd_identifier_token10] = ACTIONS(1918), + [aux_sym_cmd_identifier_token11] = ACTIONS(1918), + [aux_sym_cmd_identifier_token12] = ACTIONS(1918), + [aux_sym_cmd_identifier_token13] = ACTIONS(1918), + [aux_sym_cmd_identifier_token14] = ACTIONS(1918), + [aux_sym_cmd_identifier_token15] = ACTIONS(1918), + [aux_sym_cmd_identifier_token16] = ACTIONS(1918), + [aux_sym_cmd_identifier_token17] = ACTIONS(1918), + [aux_sym_cmd_identifier_token18] = ACTIONS(1918), + [aux_sym_cmd_identifier_token19] = ACTIONS(1918), + [aux_sym_cmd_identifier_token20] = ACTIONS(1918), + [aux_sym_cmd_identifier_token21] = ACTIONS(1918), + [aux_sym_cmd_identifier_token22] = ACTIONS(1918), + [aux_sym_cmd_identifier_token23] = ACTIONS(1918), + [aux_sym_cmd_identifier_token24] = ACTIONS(1918), + [aux_sym_cmd_identifier_token25] = ACTIONS(1918), + [aux_sym_cmd_identifier_token26] = ACTIONS(1918), + [aux_sym_cmd_identifier_token27] = ACTIONS(1918), + [aux_sym_cmd_identifier_token28] = ACTIONS(1918), + [aux_sym_cmd_identifier_token29] = ACTIONS(1918), + [aux_sym_cmd_identifier_token30] = ACTIONS(1918), + [aux_sym_cmd_identifier_token31] = ACTIONS(1918), + [aux_sym_cmd_identifier_token32] = ACTIONS(1918), + [aux_sym_cmd_identifier_token33] = ACTIONS(1918), + [aux_sym_cmd_identifier_token34] = ACTIONS(1918), + [aux_sym_cmd_identifier_token35] = ACTIONS(1918), + [aux_sym_cmd_identifier_token36] = ACTIONS(1918), + [aux_sym_cmd_identifier_token37] = ACTIONS(1918), + [aux_sym_cmd_identifier_token38] = ACTIONS(1918), + [aux_sym_cmd_identifier_token39] = ACTIONS(1918), + [aux_sym_cmd_identifier_token40] = ACTIONS(1918), + [anon_sym_def] = ACTIONS(1918), + [anon_sym_export_DASHenv] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_module] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_error] = ACTIONS(1918), + [anon_sym_DASH2] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_in2] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_make] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_else] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1918), + [anon_sym_catch] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_source] = ACTIONS(1918), + [anon_sym_source_DASHenv] = ACTIONS(1918), + [anon_sym_register] = ACTIONS(1918), + [anon_sym_hide] = ACTIONS(1918), + [anon_sym_hide_DASHenv] = ACTIONS(1918), + [anon_sym_overlay] = ACTIONS(1918), + [anon_sym_as] = ACTIONS(1918), + [anon_sym_PLUS2] = ACTIONS(1918), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1918), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1918), + [aux_sym__val_number_decimal_token1] = ACTIONS(1918), + [aux_sym__val_number_decimal_token2] = ACTIONS(1918), + [aux_sym__val_number_decimal_token3] = ACTIONS(1918), + [aux_sym__val_number_decimal_token4] = ACTIONS(1918), + [aux_sym__val_number_token1] = ACTIONS(1918), + [aux_sym__val_number_token2] = ACTIONS(1918), + [aux_sym__val_number_token3] = ACTIONS(1918), + [aux_sym__val_number_token4] = ACTIONS(1918), + [aux_sym__val_number_token5] = ACTIONS(1918), + [aux_sym__val_number_token6] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym__str_single_quotes] = ACTIONS(1918), + [sym__str_back_ticks] = ACTIONS(1918), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1918), + [sym__entry_separator] = ACTIONS(1920), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1920), }, [397] = { - [sym_cell_path] = STATE(690), - [sym_path] = STATE(595), + [sym_path] = STATE(513), [sym_comment] = STATE(397), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [sym__entry_separator] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1865), + [aux_sym_cell_path_repeat1] = STATE(399), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), }, [398] = { + [sym_cell_path] = STATE(684), + [sym_path] = STATE(575), [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_alias] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_let_DASHenv] = ACTIONS(1922), + [anon_sym_mut] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [aux_sym_cmd_identifier_token1] = ACTIONS(1922), + [aux_sym_cmd_identifier_token2] = ACTIONS(1922), + [aux_sym_cmd_identifier_token3] = ACTIONS(1922), + [aux_sym_cmd_identifier_token4] = ACTIONS(1922), + [aux_sym_cmd_identifier_token5] = ACTIONS(1922), + [aux_sym_cmd_identifier_token6] = ACTIONS(1922), + [aux_sym_cmd_identifier_token7] = ACTIONS(1922), + [aux_sym_cmd_identifier_token8] = ACTIONS(1922), + [aux_sym_cmd_identifier_token9] = ACTIONS(1922), + [aux_sym_cmd_identifier_token10] = ACTIONS(1922), + [aux_sym_cmd_identifier_token11] = ACTIONS(1922), + [aux_sym_cmd_identifier_token12] = ACTIONS(1922), + [aux_sym_cmd_identifier_token13] = ACTIONS(1922), + [aux_sym_cmd_identifier_token14] = ACTIONS(1922), + [aux_sym_cmd_identifier_token15] = ACTIONS(1922), + [aux_sym_cmd_identifier_token16] = ACTIONS(1922), + [aux_sym_cmd_identifier_token17] = ACTIONS(1922), + [aux_sym_cmd_identifier_token18] = ACTIONS(1922), + [aux_sym_cmd_identifier_token19] = ACTIONS(1922), + [aux_sym_cmd_identifier_token20] = ACTIONS(1922), + [aux_sym_cmd_identifier_token21] = ACTIONS(1922), + [aux_sym_cmd_identifier_token22] = ACTIONS(1922), + [aux_sym_cmd_identifier_token23] = ACTIONS(1922), + [aux_sym_cmd_identifier_token24] = ACTIONS(1922), + [aux_sym_cmd_identifier_token25] = ACTIONS(1922), + [aux_sym_cmd_identifier_token26] = ACTIONS(1922), + [aux_sym_cmd_identifier_token27] = ACTIONS(1922), + [aux_sym_cmd_identifier_token28] = ACTIONS(1922), + [aux_sym_cmd_identifier_token29] = ACTIONS(1922), + [aux_sym_cmd_identifier_token30] = ACTIONS(1922), + [aux_sym_cmd_identifier_token31] = ACTIONS(1922), + [aux_sym_cmd_identifier_token32] = ACTIONS(1922), + [aux_sym_cmd_identifier_token33] = ACTIONS(1922), + [aux_sym_cmd_identifier_token34] = ACTIONS(1922), + [aux_sym_cmd_identifier_token35] = ACTIONS(1922), + [aux_sym_cmd_identifier_token36] = ACTIONS(1922), + [aux_sym_cmd_identifier_token37] = ACTIONS(1922), + [aux_sym_cmd_identifier_token38] = ACTIONS(1922), + [aux_sym_cmd_identifier_token39] = ACTIONS(1922), + [aux_sym_cmd_identifier_token40] = ACTIONS(1922), + [anon_sym_def] = ACTIONS(1922), + [anon_sym_export_DASHenv] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_error] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_in2] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_make] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_else] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_try] = ACTIONS(1922), + [anon_sym_catch] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_source] = ACTIONS(1922), + [anon_sym_source_DASHenv] = ACTIONS(1922), + [anon_sym_register] = ACTIONS(1922), + [anon_sym_hide] = ACTIONS(1922), + [anon_sym_hide_DASHenv] = ACTIONS(1922), + [anon_sym_overlay] = ACTIONS(1922), + [anon_sym_as] = ACTIONS(1922), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1922), + [aux_sym__val_number_decimal_token2] = ACTIONS(1922), + [aux_sym__val_number_decimal_token3] = ACTIONS(1922), + [aux_sym__val_number_decimal_token4] = ACTIONS(1922), + [aux_sym__val_number_token1] = ACTIONS(1922), + [aux_sym__val_number_token2] = ACTIONS(1922), + [aux_sym__val_number_token3] = ACTIONS(1922), + [aux_sym__val_number_token4] = ACTIONS(1922), + [aux_sym__val_number_token5] = ACTIONS(1922), + [aux_sym__val_number_token6] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [sym__str_single_quotes] = ACTIONS(1922), + [sym__str_back_ticks] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1922), + [sym__entry_separator] = ACTIONS(1924), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1924), }, [399] = { + [sym_path] = STATE(513), [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [aux_sym_cell_path_repeat1] = STATE(399), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(943), + [aux_sym_cmd_identifier_token3] = ACTIONS(943), + [aux_sym_cmd_identifier_token4] = ACTIONS(943), + [aux_sym_cmd_identifier_token5] = ACTIONS(943), + [aux_sym_cmd_identifier_token6] = ACTIONS(943), + [aux_sym_cmd_identifier_token7] = ACTIONS(943), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(943), + [aux_sym_cmd_identifier_token11] = ACTIONS(943), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(943), + [aux_sym_cmd_identifier_token17] = ACTIONS(943), + [aux_sym_cmd_identifier_token18] = ACTIONS(943), + [aux_sym_cmd_identifier_token19] = ACTIONS(943), + [aux_sym_cmd_identifier_token20] = ACTIONS(943), + [aux_sym_cmd_identifier_token21] = ACTIONS(943), + [aux_sym_cmd_identifier_token22] = ACTIONS(943), + [aux_sym_cmd_identifier_token23] = ACTIONS(943), + [aux_sym_cmd_identifier_token24] = ACTIONS(943), + [aux_sym_cmd_identifier_token25] = ACTIONS(943), + [aux_sym_cmd_identifier_token26] = ACTIONS(943), + [aux_sym_cmd_identifier_token27] = ACTIONS(943), + [aux_sym_cmd_identifier_token28] = ACTIONS(943), + [aux_sym_cmd_identifier_token29] = ACTIONS(943), + [aux_sym_cmd_identifier_token30] = ACTIONS(943), + [aux_sym_cmd_identifier_token31] = ACTIONS(943), + [aux_sym_cmd_identifier_token32] = ACTIONS(943), + [aux_sym_cmd_identifier_token33] = ACTIONS(943), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(943), + [aux_sym_cmd_identifier_token36] = ACTIONS(943), + [aux_sym_cmd_identifier_token37] = ACTIONS(943), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(943), + [aux_sym_cmd_identifier_token40] = ACTIONS(943), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), }, [400] = { [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1773), - [aux_sym_cmd_identifier_token3] = ACTIONS(1773), - [aux_sym_cmd_identifier_token4] = ACTIONS(1773), - [aux_sym_cmd_identifier_token5] = ACTIONS(1773), - [aux_sym_cmd_identifier_token6] = ACTIONS(1773), - [aux_sym_cmd_identifier_token7] = ACTIONS(1773), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1773), - [aux_sym_cmd_identifier_token11] = ACTIONS(1773), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1773), - [aux_sym_cmd_identifier_token17] = ACTIONS(1773), - [aux_sym_cmd_identifier_token18] = ACTIONS(1773), - [aux_sym_cmd_identifier_token19] = ACTIONS(1773), - [aux_sym_cmd_identifier_token20] = ACTIONS(1773), - [aux_sym_cmd_identifier_token21] = ACTIONS(1773), - [aux_sym_cmd_identifier_token22] = ACTIONS(1773), - [aux_sym_cmd_identifier_token23] = ACTIONS(1773), - [aux_sym_cmd_identifier_token24] = ACTIONS(1773), - [aux_sym_cmd_identifier_token25] = ACTIONS(1773), - [aux_sym_cmd_identifier_token26] = ACTIONS(1773), - [aux_sym_cmd_identifier_token27] = ACTIONS(1773), - [aux_sym_cmd_identifier_token28] = ACTIONS(1773), - [aux_sym_cmd_identifier_token29] = ACTIONS(1773), - [aux_sym_cmd_identifier_token30] = ACTIONS(1773), - [aux_sym_cmd_identifier_token31] = ACTIONS(1773), - [aux_sym_cmd_identifier_token32] = ACTIONS(1773), - [aux_sym_cmd_identifier_token33] = ACTIONS(1773), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1773), - [aux_sym_cmd_identifier_token36] = ACTIONS(1773), - [aux_sym_cmd_identifier_token37] = ACTIONS(1773), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1773), - [aux_sym_cmd_identifier_token40] = ACTIONS(1773), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(1867), - [aux_sym__immediate_decimal_token2] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [sym__entry_separator] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(990), }, [401] = { - [sym_cell_path] = STATE(679), - [sym_path] = STATE(595), [sym_comment] = STATE(401), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1871), - [aux_sym_cmd_identifier_token3] = ACTIONS(1871), - [aux_sym_cmd_identifier_token4] = ACTIONS(1871), - [aux_sym_cmd_identifier_token5] = ACTIONS(1871), - [aux_sym_cmd_identifier_token6] = ACTIONS(1871), - [aux_sym_cmd_identifier_token7] = ACTIONS(1871), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1871), - [aux_sym_cmd_identifier_token11] = ACTIONS(1871), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1871), - [aux_sym_cmd_identifier_token17] = ACTIONS(1871), - [aux_sym_cmd_identifier_token18] = ACTIONS(1871), - [aux_sym_cmd_identifier_token19] = ACTIONS(1871), - [aux_sym_cmd_identifier_token20] = ACTIONS(1871), - [aux_sym_cmd_identifier_token21] = ACTIONS(1871), - [aux_sym_cmd_identifier_token22] = ACTIONS(1871), - [aux_sym_cmd_identifier_token23] = ACTIONS(1871), - [aux_sym_cmd_identifier_token24] = ACTIONS(1871), - [aux_sym_cmd_identifier_token25] = ACTIONS(1871), - [aux_sym_cmd_identifier_token26] = ACTIONS(1871), - [aux_sym_cmd_identifier_token27] = ACTIONS(1871), - [aux_sym_cmd_identifier_token28] = ACTIONS(1871), - [aux_sym_cmd_identifier_token29] = ACTIONS(1871), - [aux_sym_cmd_identifier_token30] = ACTIONS(1871), - [aux_sym_cmd_identifier_token31] = ACTIONS(1871), - [aux_sym_cmd_identifier_token32] = ACTIONS(1871), - [aux_sym_cmd_identifier_token33] = ACTIONS(1871), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1871), - [aux_sym_cmd_identifier_token36] = ACTIONS(1871), - [aux_sym_cmd_identifier_token37] = ACTIONS(1871), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1871), - [aux_sym_cmd_identifier_token40] = ACTIONS(1871), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in2] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS2] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1871), - [aux_sym__val_number_decimal_token3] = ACTIONS(1871), - [aux_sym__val_number_decimal_token4] = ACTIONS(1871), - [aux_sym__val_number_token1] = ACTIONS(1871), - [aux_sym__val_number_token2] = ACTIONS(1871), - [aux_sym__val_number_token3] = ACTIONS(1871), - [aux_sym__val_number_token4] = ACTIONS(1871), - [aux_sym__val_number_token5] = ACTIONS(1871), - [aux_sym__val_number_token6] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [sym__str_single_quotes] = ACTIONS(1871), - [sym__str_back_ticks] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), - [sym__entry_separator] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [402] = { - [sym_cell_path] = STATE(691), - [sym_path] = STATE(595), + [sym_cell_path] = STATE(655), + [sym_path] = STATE(575), [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_alias] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_let_DASHenv] = ACTIONS(1875), - [anon_sym_mut] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [aux_sym_cmd_identifier_token1] = ACTIONS(1875), - [aux_sym_cmd_identifier_token2] = ACTIONS(1875), - [aux_sym_cmd_identifier_token3] = ACTIONS(1875), - [aux_sym_cmd_identifier_token4] = ACTIONS(1875), - [aux_sym_cmd_identifier_token5] = ACTIONS(1875), - [aux_sym_cmd_identifier_token6] = ACTIONS(1875), - [aux_sym_cmd_identifier_token7] = ACTIONS(1875), - [aux_sym_cmd_identifier_token8] = ACTIONS(1875), - [aux_sym_cmd_identifier_token9] = ACTIONS(1875), - [aux_sym_cmd_identifier_token10] = ACTIONS(1875), - [aux_sym_cmd_identifier_token11] = ACTIONS(1875), - [aux_sym_cmd_identifier_token12] = ACTIONS(1875), - [aux_sym_cmd_identifier_token13] = ACTIONS(1875), - [aux_sym_cmd_identifier_token14] = ACTIONS(1875), - [aux_sym_cmd_identifier_token15] = ACTIONS(1875), - [aux_sym_cmd_identifier_token16] = ACTIONS(1875), - [aux_sym_cmd_identifier_token17] = ACTIONS(1875), - [aux_sym_cmd_identifier_token18] = ACTIONS(1875), - [aux_sym_cmd_identifier_token19] = ACTIONS(1875), - [aux_sym_cmd_identifier_token20] = ACTIONS(1875), - [aux_sym_cmd_identifier_token21] = ACTIONS(1875), - [aux_sym_cmd_identifier_token22] = ACTIONS(1875), - [aux_sym_cmd_identifier_token23] = ACTIONS(1875), - [aux_sym_cmd_identifier_token24] = ACTIONS(1875), - [aux_sym_cmd_identifier_token25] = ACTIONS(1875), - [aux_sym_cmd_identifier_token26] = ACTIONS(1875), - [aux_sym_cmd_identifier_token27] = ACTIONS(1875), - [aux_sym_cmd_identifier_token28] = ACTIONS(1875), - [aux_sym_cmd_identifier_token29] = ACTIONS(1875), - [aux_sym_cmd_identifier_token30] = ACTIONS(1875), - [aux_sym_cmd_identifier_token31] = ACTIONS(1875), - [aux_sym_cmd_identifier_token32] = ACTIONS(1875), - [aux_sym_cmd_identifier_token33] = ACTIONS(1875), - [aux_sym_cmd_identifier_token34] = ACTIONS(1875), - [aux_sym_cmd_identifier_token35] = ACTIONS(1875), - [aux_sym_cmd_identifier_token36] = ACTIONS(1875), - [aux_sym_cmd_identifier_token37] = ACTIONS(1875), - [aux_sym_cmd_identifier_token38] = ACTIONS(1875), - [aux_sym_cmd_identifier_token39] = ACTIONS(1875), - [aux_sym_cmd_identifier_token40] = ACTIONS(1875), - [anon_sym_def] = ACTIONS(1875), - [anon_sym_export_DASHenv] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_use] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in2] = ACTIONS(1875), - [anon_sym_loop] = ACTIONS(1875), - [anon_sym_make] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_source] = ACTIONS(1875), - [anon_sym_source_DASHenv] = ACTIONS(1875), - [anon_sym_register] = ACTIONS(1875), - [anon_sym_hide] = ACTIONS(1875), - [anon_sym_hide_DASHenv] = ACTIONS(1875), - [anon_sym_overlay] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1875), - [aux_sym__val_number_decimal_token3] = ACTIONS(1875), - [aux_sym__val_number_decimal_token4] = ACTIONS(1875), - [aux_sym__val_number_token1] = ACTIONS(1875), - [aux_sym__val_number_token2] = ACTIONS(1875), - [aux_sym__val_number_token3] = ACTIONS(1875), - [aux_sym__val_number_token4] = ACTIONS(1875), - [aux_sym__val_number_token5] = ACTIONS(1875), - [aux_sym__val_number_token6] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [sym__str_single_quotes] = ACTIONS(1875), - [sym__str_back_ticks] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), - [sym__entry_separator] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1877), - }, - [403] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(595), - [sym_comment] = STATE(403), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1879), - [aux_sym_cmd_identifier_token3] = ACTIONS(1879), - [aux_sym_cmd_identifier_token4] = ACTIONS(1879), - [aux_sym_cmd_identifier_token5] = ACTIONS(1879), - [aux_sym_cmd_identifier_token6] = ACTIONS(1879), - [aux_sym_cmd_identifier_token7] = ACTIONS(1879), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1879), - [aux_sym_cmd_identifier_token11] = ACTIONS(1879), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1879), - [aux_sym_cmd_identifier_token17] = ACTIONS(1879), - [aux_sym_cmd_identifier_token18] = ACTIONS(1879), - [aux_sym_cmd_identifier_token19] = ACTIONS(1879), - [aux_sym_cmd_identifier_token20] = ACTIONS(1879), - [aux_sym_cmd_identifier_token21] = ACTIONS(1879), - [aux_sym_cmd_identifier_token22] = ACTIONS(1879), - [aux_sym_cmd_identifier_token23] = ACTIONS(1879), - [aux_sym_cmd_identifier_token24] = ACTIONS(1879), - [aux_sym_cmd_identifier_token25] = ACTIONS(1879), - [aux_sym_cmd_identifier_token26] = ACTIONS(1879), - [aux_sym_cmd_identifier_token27] = ACTIONS(1879), - [aux_sym_cmd_identifier_token28] = ACTIONS(1879), - [aux_sym_cmd_identifier_token29] = ACTIONS(1879), - [aux_sym_cmd_identifier_token30] = ACTIONS(1879), - [aux_sym_cmd_identifier_token31] = ACTIONS(1879), - [aux_sym_cmd_identifier_token32] = ACTIONS(1879), - [aux_sym_cmd_identifier_token33] = ACTIONS(1879), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1879), - [aux_sym_cmd_identifier_token36] = ACTIONS(1879), - [aux_sym_cmd_identifier_token37] = ACTIONS(1879), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1879), - [aux_sym_cmd_identifier_token40] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in2] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1879), - [aux_sym__val_number_decimal_token3] = ACTIONS(1879), - [aux_sym__val_number_decimal_token4] = ACTIONS(1879), - [aux_sym__val_number_token1] = ACTIONS(1879), - [aux_sym__val_number_token2] = ACTIONS(1879), - [aux_sym__val_number_token3] = ACTIONS(1879), - [aux_sym__val_number_token4] = ACTIONS(1879), - [aux_sym__val_number_token5] = ACTIONS(1879), - [aux_sym__val_number_token6] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [sym__str_single_quotes] = ACTIONS(1879), - [sym__str_back_ticks] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1881), - }, - [404] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(595), - [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1883), - [aux_sym_cmd_identifier_token3] = ACTIONS(1883), - [aux_sym_cmd_identifier_token4] = ACTIONS(1883), - [aux_sym_cmd_identifier_token5] = ACTIONS(1883), - [aux_sym_cmd_identifier_token6] = ACTIONS(1883), - [aux_sym_cmd_identifier_token7] = ACTIONS(1883), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1883), - [aux_sym_cmd_identifier_token11] = ACTIONS(1883), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1883), - [aux_sym_cmd_identifier_token17] = ACTIONS(1883), - [aux_sym_cmd_identifier_token18] = ACTIONS(1883), - [aux_sym_cmd_identifier_token19] = ACTIONS(1883), - [aux_sym_cmd_identifier_token20] = ACTIONS(1883), - [aux_sym_cmd_identifier_token21] = ACTIONS(1883), - [aux_sym_cmd_identifier_token22] = ACTIONS(1883), - [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), - [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), - [aux_sym_cmd_identifier_token27] = ACTIONS(1883), - [aux_sym_cmd_identifier_token28] = ACTIONS(1883), - [aux_sym_cmd_identifier_token29] = ACTIONS(1883), - [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), - [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [aux_sym_cmd_identifier_token37] = ACTIONS(1883), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1883), - [aux_sym_cmd_identifier_token40] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in2] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1883), - [aux_sym__val_number_decimal_token3] = ACTIONS(1883), - [aux_sym__val_number_decimal_token4] = ACTIONS(1883), - [aux_sym__val_number_token1] = ACTIONS(1883), - [aux_sym__val_number_token2] = ACTIONS(1883), - [aux_sym__val_number_token3] = ACTIONS(1883), - [aux_sym__val_number_token4] = ACTIONS(1883), - [aux_sym__val_number_token5] = ACTIONS(1883), - [aux_sym__val_number_token6] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1883), - [sym__str_single_quotes] = ACTIONS(1883), - [sym__str_back_ticks] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), - [sym__entry_separator] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [405] = { - [sym_cell_path] = STATE(612), - [sym_path] = STATE(595), - [sym_comment] = STATE(405), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_alias] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_let_DASHenv] = ACTIONS(1887), - [anon_sym_mut] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [aux_sym_cmd_identifier_token1] = ACTIONS(1887), - [aux_sym_cmd_identifier_token2] = ACTIONS(1887), - [aux_sym_cmd_identifier_token3] = ACTIONS(1887), - [aux_sym_cmd_identifier_token4] = ACTIONS(1887), - [aux_sym_cmd_identifier_token5] = ACTIONS(1887), - [aux_sym_cmd_identifier_token6] = ACTIONS(1887), - [aux_sym_cmd_identifier_token7] = ACTIONS(1887), - [aux_sym_cmd_identifier_token8] = ACTIONS(1887), - [aux_sym_cmd_identifier_token9] = ACTIONS(1887), - [aux_sym_cmd_identifier_token10] = ACTIONS(1887), - [aux_sym_cmd_identifier_token11] = ACTIONS(1887), - [aux_sym_cmd_identifier_token12] = ACTIONS(1887), - [aux_sym_cmd_identifier_token13] = ACTIONS(1887), - [aux_sym_cmd_identifier_token14] = ACTIONS(1887), - [aux_sym_cmd_identifier_token15] = ACTIONS(1887), - [aux_sym_cmd_identifier_token16] = ACTIONS(1887), - [aux_sym_cmd_identifier_token17] = ACTIONS(1887), - [aux_sym_cmd_identifier_token18] = ACTIONS(1887), - [aux_sym_cmd_identifier_token19] = ACTIONS(1887), - [aux_sym_cmd_identifier_token20] = ACTIONS(1887), - [aux_sym_cmd_identifier_token21] = ACTIONS(1887), - [aux_sym_cmd_identifier_token22] = ACTIONS(1887), - [aux_sym_cmd_identifier_token23] = ACTIONS(1887), - [aux_sym_cmd_identifier_token24] = ACTIONS(1887), - [aux_sym_cmd_identifier_token25] = ACTIONS(1887), - [aux_sym_cmd_identifier_token26] = ACTIONS(1887), - [aux_sym_cmd_identifier_token27] = ACTIONS(1887), - [aux_sym_cmd_identifier_token28] = ACTIONS(1887), - [aux_sym_cmd_identifier_token29] = ACTIONS(1887), - [aux_sym_cmd_identifier_token30] = ACTIONS(1887), - [aux_sym_cmd_identifier_token31] = ACTIONS(1887), - [aux_sym_cmd_identifier_token32] = ACTIONS(1887), - [aux_sym_cmd_identifier_token33] = ACTIONS(1887), - [aux_sym_cmd_identifier_token34] = ACTIONS(1887), - [aux_sym_cmd_identifier_token35] = ACTIONS(1887), - [aux_sym_cmd_identifier_token36] = ACTIONS(1887), - [aux_sym_cmd_identifier_token37] = ACTIONS(1887), - [aux_sym_cmd_identifier_token38] = ACTIONS(1887), - [aux_sym_cmd_identifier_token39] = ACTIONS(1887), - [aux_sym_cmd_identifier_token40] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_export_DASHenv] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_error] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_make] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_source] = ACTIONS(1887), - [anon_sym_source_DASHenv] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_hide_DASHenv] = ACTIONS(1887), - [anon_sym_overlay] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1887), - [aux_sym__val_number_decimal_token3] = ACTIONS(1887), - [aux_sym__val_number_decimal_token4] = ACTIONS(1887), - [aux_sym__val_number_token1] = ACTIONS(1887), - [aux_sym__val_number_token2] = ACTIONS(1887), - [aux_sym__val_number_token3] = ACTIONS(1887), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [sym__str_single_quotes] = ACTIONS(1887), - [sym__str_back_ticks] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), - [sym__entry_separator] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1889), - }, - [406] = { - [sym_cell_path] = STATE(613), - [sym_path] = STATE(595), - [sym_comment] = STATE(406), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_alias] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_let_DASHenv] = ACTIONS(1891), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [aux_sym_cmd_identifier_token37] = ACTIONS(1891), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1891), - [aux_sym_cmd_identifier_token40] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_export_DASHenv] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_source] = ACTIONS(1891), - [anon_sym_source_DASHenv] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_hide_DASHenv] = ACTIONS(1891), - [anon_sym_overlay] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [407] = { - [sym_cell_path] = STATE(614), - [sym_path] = STATE(595), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_alias] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_let_DASHenv] = ACTIONS(1895), - [anon_sym_mut] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1895), - [aux_sym_cmd_identifier_token3] = ACTIONS(1895), - [aux_sym_cmd_identifier_token4] = ACTIONS(1895), - [aux_sym_cmd_identifier_token5] = ACTIONS(1895), - [aux_sym_cmd_identifier_token6] = ACTIONS(1895), - [aux_sym_cmd_identifier_token7] = ACTIONS(1895), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1895), - [aux_sym_cmd_identifier_token11] = ACTIONS(1895), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1895), - [aux_sym_cmd_identifier_token17] = ACTIONS(1895), - [aux_sym_cmd_identifier_token18] = ACTIONS(1895), - [aux_sym_cmd_identifier_token19] = ACTIONS(1895), - [aux_sym_cmd_identifier_token20] = ACTIONS(1895), - [aux_sym_cmd_identifier_token21] = ACTIONS(1895), - [aux_sym_cmd_identifier_token22] = ACTIONS(1895), - [aux_sym_cmd_identifier_token23] = ACTIONS(1895), - [aux_sym_cmd_identifier_token24] = ACTIONS(1895), - [aux_sym_cmd_identifier_token25] = ACTIONS(1895), - [aux_sym_cmd_identifier_token26] = ACTIONS(1895), - [aux_sym_cmd_identifier_token27] = ACTIONS(1895), - [aux_sym_cmd_identifier_token28] = ACTIONS(1895), - [aux_sym_cmd_identifier_token29] = ACTIONS(1895), - [aux_sym_cmd_identifier_token30] = ACTIONS(1895), - [aux_sym_cmd_identifier_token31] = ACTIONS(1895), - [aux_sym_cmd_identifier_token32] = ACTIONS(1895), - [aux_sym_cmd_identifier_token33] = ACTIONS(1895), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1895), - [aux_sym_cmd_identifier_token36] = ACTIONS(1895), - [aux_sym_cmd_identifier_token37] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_export_DASHenv] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_source] = ACTIONS(1895), - [anon_sym_source_DASHenv] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_hide_DASHenv] = ACTIONS(1895), - [anon_sym_overlay] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [sym__entry_separator] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1897), - }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1771), - [aux_sym_cmd_identifier_token3] = ACTIONS(1771), - [aux_sym_cmd_identifier_token4] = ACTIONS(1771), - [aux_sym_cmd_identifier_token5] = ACTIONS(1771), - [aux_sym_cmd_identifier_token6] = ACTIONS(1771), - [aux_sym_cmd_identifier_token7] = ACTIONS(1771), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1771), - [aux_sym_cmd_identifier_token11] = ACTIONS(1771), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1771), - [aux_sym_cmd_identifier_token17] = ACTIONS(1771), - [aux_sym_cmd_identifier_token18] = ACTIONS(1771), - [aux_sym_cmd_identifier_token19] = ACTIONS(1771), - [aux_sym_cmd_identifier_token20] = ACTIONS(1771), - [aux_sym_cmd_identifier_token21] = ACTIONS(1771), - [aux_sym_cmd_identifier_token22] = ACTIONS(1771), - [aux_sym_cmd_identifier_token23] = ACTIONS(1771), - [aux_sym_cmd_identifier_token24] = ACTIONS(1771), - [aux_sym_cmd_identifier_token25] = ACTIONS(1771), - [aux_sym_cmd_identifier_token26] = ACTIONS(1771), - [aux_sym_cmd_identifier_token27] = ACTIONS(1771), - [aux_sym_cmd_identifier_token28] = ACTIONS(1771), - [aux_sym_cmd_identifier_token29] = ACTIONS(1771), - [aux_sym_cmd_identifier_token30] = ACTIONS(1771), - [aux_sym_cmd_identifier_token31] = ACTIONS(1771), - [aux_sym_cmd_identifier_token32] = ACTIONS(1771), - [aux_sym_cmd_identifier_token33] = ACTIONS(1771), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1771), - [aux_sym_cmd_identifier_token36] = ACTIONS(1771), - [aux_sym_cmd_identifier_token37] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [aux_sym__immediate_decimal_token1] = ACTIONS(1899), - [aux_sym__immediate_decimal_token2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [sym__entry_separator] = ACTIONS(1773), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1773), - }, - [409] = { - [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [410] = { - [sym_cell_path] = STATE(615), - [sym_path] = STATE(595), - [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_alias] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_let_DASHenv] = ACTIONS(1903), - [anon_sym_mut] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [aux_sym_cmd_identifier_token1] = ACTIONS(1903), - [aux_sym_cmd_identifier_token2] = ACTIONS(1903), - [aux_sym_cmd_identifier_token3] = ACTIONS(1903), - [aux_sym_cmd_identifier_token4] = ACTIONS(1903), - [aux_sym_cmd_identifier_token5] = ACTIONS(1903), - [aux_sym_cmd_identifier_token6] = ACTIONS(1903), - [aux_sym_cmd_identifier_token7] = ACTIONS(1903), - [aux_sym_cmd_identifier_token8] = ACTIONS(1903), - [aux_sym_cmd_identifier_token9] = ACTIONS(1903), - [aux_sym_cmd_identifier_token10] = ACTIONS(1903), - [aux_sym_cmd_identifier_token11] = ACTIONS(1903), - [aux_sym_cmd_identifier_token12] = ACTIONS(1903), - [aux_sym_cmd_identifier_token13] = ACTIONS(1903), - [aux_sym_cmd_identifier_token14] = ACTIONS(1903), - [aux_sym_cmd_identifier_token15] = ACTIONS(1903), - [aux_sym_cmd_identifier_token16] = ACTIONS(1903), - [aux_sym_cmd_identifier_token17] = ACTIONS(1903), - [aux_sym_cmd_identifier_token18] = ACTIONS(1903), - [aux_sym_cmd_identifier_token19] = ACTIONS(1903), - [aux_sym_cmd_identifier_token20] = ACTIONS(1903), - [aux_sym_cmd_identifier_token21] = ACTIONS(1903), - [aux_sym_cmd_identifier_token22] = ACTIONS(1903), - [aux_sym_cmd_identifier_token23] = ACTIONS(1903), - [aux_sym_cmd_identifier_token24] = ACTIONS(1903), - [aux_sym_cmd_identifier_token25] = ACTIONS(1903), - [aux_sym_cmd_identifier_token26] = ACTIONS(1903), - [aux_sym_cmd_identifier_token27] = ACTIONS(1903), - [aux_sym_cmd_identifier_token28] = ACTIONS(1903), - [aux_sym_cmd_identifier_token29] = ACTIONS(1903), - [aux_sym_cmd_identifier_token30] = ACTIONS(1903), - [aux_sym_cmd_identifier_token31] = ACTIONS(1903), - [aux_sym_cmd_identifier_token32] = ACTIONS(1903), - [aux_sym_cmd_identifier_token33] = ACTIONS(1903), - [aux_sym_cmd_identifier_token34] = ACTIONS(1903), - [aux_sym_cmd_identifier_token35] = ACTIONS(1903), - [aux_sym_cmd_identifier_token36] = ACTIONS(1903), - [aux_sym_cmd_identifier_token37] = ACTIONS(1903), - [aux_sym_cmd_identifier_token38] = ACTIONS(1903), - [aux_sym_cmd_identifier_token39] = ACTIONS(1903), - [aux_sym_cmd_identifier_token40] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1903), - [anon_sym_export_DASHenv] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_use] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1903), - [anon_sym_error] = ACTIONS(1903), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_in2] = ACTIONS(1903), - [anon_sym_loop] = ACTIONS(1903), - [anon_sym_make] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_catch] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_source] = ACTIONS(1903), - [anon_sym_source_DASHenv] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1903), - [anon_sym_hide] = ACTIONS(1903), - [anon_sym_hide_DASHenv] = ACTIONS(1903), - [anon_sym_overlay] = ACTIONS(1903), - [anon_sym_as] = ACTIONS(1903), - [anon_sym_PLUS2] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1903), - [aux_sym__val_number_decimal_token2] = ACTIONS(1903), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_decimal_token4] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(1903), - [aux_sym__val_number_token2] = ACTIONS(1903), - [aux_sym__val_number_token3] = ACTIONS(1903), - [aux_sym__val_number_token4] = ACTIONS(1903), - [aux_sym__val_number_token5] = ACTIONS(1903), - [aux_sym__val_number_token6] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1903), - [sym__str_single_quotes] = ACTIONS(1903), - [sym__str_back_ticks] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), - [sym__entry_separator] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1905), - }, - [411] = { - [sym_comment] = STATE(411), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [412] = { - [sym_cell_path] = STATE(616), - [sym_path] = STATE(595), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1909), - [aux_sym_cmd_identifier_token3] = ACTIONS(1909), - [aux_sym_cmd_identifier_token4] = ACTIONS(1909), - [aux_sym_cmd_identifier_token5] = ACTIONS(1909), - [aux_sym_cmd_identifier_token6] = ACTIONS(1909), - [aux_sym_cmd_identifier_token7] = ACTIONS(1909), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1909), - [aux_sym_cmd_identifier_token11] = ACTIONS(1909), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1909), - [aux_sym_cmd_identifier_token17] = ACTIONS(1909), - [aux_sym_cmd_identifier_token18] = ACTIONS(1909), - [aux_sym_cmd_identifier_token19] = ACTIONS(1909), - [aux_sym_cmd_identifier_token20] = ACTIONS(1909), - [aux_sym_cmd_identifier_token21] = ACTIONS(1909), - [aux_sym_cmd_identifier_token22] = ACTIONS(1909), - [aux_sym_cmd_identifier_token23] = ACTIONS(1909), - [aux_sym_cmd_identifier_token24] = ACTIONS(1909), - [aux_sym_cmd_identifier_token25] = ACTIONS(1909), - [aux_sym_cmd_identifier_token26] = ACTIONS(1909), - [aux_sym_cmd_identifier_token27] = ACTIONS(1909), - [aux_sym_cmd_identifier_token28] = ACTIONS(1909), - [aux_sym_cmd_identifier_token29] = ACTIONS(1909), - [aux_sym_cmd_identifier_token30] = ACTIONS(1909), - [aux_sym_cmd_identifier_token31] = ACTIONS(1909), - [aux_sym_cmd_identifier_token32] = ACTIONS(1909), - [aux_sym_cmd_identifier_token33] = ACTIONS(1909), - [aux_sym_cmd_identifier_token34] = ACTIONS(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1909), - [aux_sym_cmd_identifier_token36] = ACTIONS(1909), - [aux_sym_cmd_identifier_token37] = ACTIONS(1909), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1909), - [aux_sym_cmd_identifier_token40] = ACTIONS(1909), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in2] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1909), - [aux_sym__val_number_decimal_token3] = ACTIONS(1909), - [aux_sym__val_number_decimal_token4] = ACTIONS(1909), - [aux_sym__val_number_token1] = ACTIONS(1909), - [aux_sym__val_number_token2] = ACTIONS(1909), - [aux_sym__val_number_token3] = ACTIONS(1909), - [aux_sym__val_number_token4] = ACTIONS(1909), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), - [sym__entry_separator] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1911), - }, - [413] = { - [sym_comment] = STATE(413), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [414] = { - [sym_cell_path] = STATE(617), - [sym_path] = STATE(595), - [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [aux_sym_cmd_identifier_token37] = ACTIONS(1917), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1917), - [aux_sym_cmd_identifier_token40] = ACTIONS(1917), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), - [sym__entry_separator] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1919), - }, - [415] = { - [sym_comment] = STATE(415), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1921), - [aux_sym__immediate_decimal_token2] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [416] = { - [sym_cell_path] = STATE(618), - [sym_path] = STATE(595), - [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1925), - [aux_sym_cmd_identifier_token4] = ACTIONS(1925), - [aux_sym_cmd_identifier_token5] = ACTIONS(1925), - [aux_sym_cmd_identifier_token6] = ACTIONS(1925), - [aux_sym_cmd_identifier_token7] = ACTIONS(1925), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1925), - [aux_sym_cmd_identifier_token11] = ACTIONS(1925), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1925), - [aux_sym_cmd_identifier_token17] = ACTIONS(1925), - [aux_sym_cmd_identifier_token18] = ACTIONS(1925), - [aux_sym_cmd_identifier_token19] = ACTIONS(1925), - [aux_sym_cmd_identifier_token20] = ACTIONS(1925), - [aux_sym_cmd_identifier_token21] = ACTIONS(1925), - [aux_sym_cmd_identifier_token22] = ACTIONS(1925), - [aux_sym_cmd_identifier_token23] = ACTIONS(1925), - [aux_sym_cmd_identifier_token24] = ACTIONS(1925), - [aux_sym_cmd_identifier_token25] = ACTIONS(1925), - [aux_sym_cmd_identifier_token26] = ACTIONS(1925), - [aux_sym_cmd_identifier_token27] = ACTIONS(1925), - [aux_sym_cmd_identifier_token28] = ACTIONS(1925), - [aux_sym_cmd_identifier_token29] = ACTIONS(1925), - [aux_sym_cmd_identifier_token30] = ACTIONS(1925), - [aux_sym_cmd_identifier_token31] = ACTIONS(1925), - [aux_sym_cmd_identifier_token32] = ACTIONS(1925), - [aux_sym_cmd_identifier_token33] = ACTIONS(1925), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1925), - [aux_sym_cmd_identifier_token36] = ACTIONS(1925), - [aux_sym_cmd_identifier_token37] = ACTIONS(1925), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1925), - [aux_sym_cmd_identifier_token40] = ACTIONS(1925), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1925), - [aux_sym__val_number_decimal_token3] = ACTIONS(1925), - [aux_sym__val_number_decimal_token4] = ACTIONS(1925), - [aux_sym__val_number_token1] = ACTIONS(1925), - [aux_sym__val_number_token2] = ACTIONS(1925), - [aux_sym__val_number_token3] = ACTIONS(1925), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), - [sym__entry_separator] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [417] = { - [sym_cell_path] = STATE(619), - [sym_path] = STATE(595), - [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(1929), [anon_sym_alias] = ACTIONS(1929), [anon_sym_let] = ACTIONS(1929), @@ -131471,7 +124575,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1929), [anon_sym_PLUS2] = ACTIONS(1929), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), [aux_sym__val_number_decimal_token1] = ACTIONS(1929), [aux_sym__val_number_decimal_token2] = ACTIONS(1929), @@ -131488,14 +124591,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1929), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), [sym__entry_separator] = ACTIONS(1931), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1931), }, - [418] = { - [sym_cell_path] = STATE(620), - [sym_path] = STATE(595), - [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(470), + [403] = { + [sym_cell_path] = STATE(673), + [sym_path] = STATE(575), + [sym_comment] = STATE(403), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(1933), [anon_sym_alias] = ACTIONS(1933), [anon_sym_let] = ACTIONS(1933), @@ -131575,7 +124679,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1933), [anon_sym_PLUS2] = ACTIONS(1933), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), [aux_sym__val_number_decimal_token1] = ACTIONS(1933), [aux_sym__val_number_decimal_token2] = ACTIONS(1933), @@ -131592,14 +124695,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1933), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), [sym__entry_separator] = ACTIONS(1935), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1935), }, - [419] = { - [sym_cell_path] = STATE(621), - [sym_path] = STATE(595), - [sym_comment] = STATE(419), - [aux_sym_cell_path_repeat1] = STATE(470), + [404] = { + [sym_cell_path] = STATE(675), + [sym_path] = STATE(575), + [sym_comment] = STATE(404), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(1937), [anon_sym_alias] = ACTIONS(1937), [anon_sym_let] = ACTIONS(1937), @@ -131679,7 +124783,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1937), [anon_sym_PLUS2] = ACTIONS(1937), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), [aux_sym__val_number_decimal_token1] = ACTIONS(1937), [aux_sym__val_number_decimal_token2] = ACTIONS(1937), @@ -131696,34 +124799,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1937), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), [sym__entry_separator] = ACTIONS(1939), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1939), }, - [420] = { - [sym_path] = STATE(529), - [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(448), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [405] = { + [sym_comment] = STATE(405), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [406] = { + [sym_comment] = STATE(406), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), + }, + [407] = { + [sym_comment] = STATE(407), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), [aux_sym_cmd_identifier_token2] = ACTIONS(984), [aux_sym_cmd_identifier_token3] = ACTIONS(984), [aux_sym_cmd_identifier_token4] = ACTIONS(984), [aux_sym_cmd_identifier_token5] = ACTIONS(984), [aux_sym_cmd_identifier_token6] = ACTIONS(984), [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), [aux_sym_cmd_identifier_token10] = ACTIONS(984), [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), [aux_sym_cmd_identifier_token16] = ACTIONS(984), [aux_sym_cmd_identifier_token17] = ACTIONS(984), [aux_sym_cmd_identifier_token18] = ACTIONS(984), @@ -131742,176 +125052,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(984), [aux_sym_cmd_identifier_token32] = ACTIONS(984), [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), [aux_sym_cmd_identifier_token35] = ACTIONS(984), [aux_sym_cmd_identifier_token36] = ACTIONS(984), [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), [aux_sym_cmd_identifier_token39] = ACTIONS(984), [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), [aux_sym__val_number_decimal_token2] = ACTIONS(984), [aux_sym__val_number_decimal_token3] = ACTIONS(984), [aux_sym__val_number_decimal_token4] = ACTIONS(984), [aux_sym__val_number_token1] = ACTIONS(984), [aux_sym__val_number_token2] = ACTIONS(984), [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), [anon_sym_DQUOTE] = ACTIONS(984), [sym__str_single_quotes] = ACTIONS(984), [sym__str_back_ticks] = ACTIONS(984), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [aux_sym_record_entry_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), + [sym__entry_separator] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(986), }, - [421] = { - [sym_cell_path] = STATE(678), - [sym_path] = STATE(595), - [sym_comment] = STATE(421), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1941), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [aux_sym_cmd_identifier_token6] = ACTIONS(1941), - [aux_sym_cmd_identifier_token7] = ACTIONS(1941), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1941), - [aux_sym_cmd_identifier_token11] = ACTIONS(1941), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1941), - [aux_sym_cmd_identifier_token17] = ACTIONS(1941), - [aux_sym_cmd_identifier_token18] = ACTIONS(1941), - [aux_sym_cmd_identifier_token19] = ACTIONS(1941), - [aux_sym_cmd_identifier_token20] = ACTIONS(1941), - [aux_sym_cmd_identifier_token21] = ACTIONS(1941), - [aux_sym_cmd_identifier_token22] = ACTIONS(1941), - [aux_sym_cmd_identifier_token23] = ACTIONS(1941), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1941), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1941), - [aux_sym_cmd_identifier_token28] = ACTIONS(1941), - [aux_sym_cmd_identifier_token29] = ACTIONS(1941), - [aux_sym_cmd_identifier_token30] = ACTIONS(1941), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1941), - [aux_sym_cmd_identifier_token37] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [sym__entry_separator] = ACTIONS(1943), + [408] = { + [sym_comment] = STATE(408), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(1941), + [aux_sym__immediate_decimal_token2] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [409] = { + [sym_comment] = STATE(409), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [sym__entry_separator] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1943), + [sym_raw_string_begin] = ACTIONS(982), }, - [422] = { - [sym_cell_path] = STATE(608), - [sym_path] = STATE(595), - [sym_comment] = STATE(422), - [aux_sym_cell_path_repeat1] = STATE(470), + [410] = { + [sym_cell_path] = STATE(635), + [sym_path] = STATE(575), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(935), + [aux_sym_cmd_identifier_token3] = ACTIONS(935), + [aux_sym_cmd_identifier_token4] = ACTIONS(935), + [aux_sym_cmd_identifier_token5] = ACTIONS(935), + [aux_sym_cmd_identifier_token6] = ACTIONS(935), + [aux_sym_cmd_identifier_token7] = ACTIONS(935), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(935), + [aux_sym_cmd_identifier_token11] = ACTIONS(935), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(935), + [aux_sym_cmd_identifier_token17] = ACTIONS(935), + [aux_sym_cmd_identifier_token18] = ACTIONS(935), + [aux_sym_cmd_identifier_token19] = ACTIONS(935), + [aux_sym_cmd_identifier_token20] = ACTIONS(935), + [aux_sym_cmd_identifier_token21] = ACTIONS(935), + [aux_sym_cmd_identifier_token22] = ACTIONS(935), + [aux_sym_cmd_identifier_token23] = ACTIONS(935), + [aux_sym_cmd_identifier_token24] = ACTIONS(935), + [aux_sym_cmd_identifier_token25] = ACTIONS(935), + [aux_sym_cmd_identifier_token26] = ACTIONS(935), + [aux_sym_cmd_identifier_token27] = ACTIONS(935), + [aux_sym_cmd_identifier_token28] = ACTIONS(935), + [aux_sym_cmd_identifier_token29] = ACTIONS(935), + [aux_sym_cmd_identifier_token30] = ACTIONS(935), + [aux_sym_cmd_identifier_token31] = ACTIONS(935), + [aux_sym_cmd_identifier_token32] = ACTIONS(935), + [aux_sym_cmd_identifier_token33] = ACTIONS(935), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(935), + [aux_sym_cmd_identifier_token36] = ACTIONS(935), + [aux_sym_cmd_identifier_token37] = ACTIONS(935), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(935), + [aux_sym_cmd_identifier_token40] = ACTIONS(935), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(935), + [aux_sym__val_number_decimal_token3] = ACTIONS(935), + [aux_sym__val_number_decimal_token4] = ACTIONS(935), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), + [sym__entry_separator] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(937), + }, + [411] = { + [sym_comment] = STATE(411), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), + }, + [412] = { + [sym_cell_path] = STATE(649), + [sym_path] = STATE(575), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(1945), [anon_sym_alias] = ACTIONS(1945), [anon_sym_let] = ACTIONS(1945), @@ -131991,7 +125615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1945), [anon_sym_PLUS2] = ACTIONS(1945), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), [aux_sym__val_number_decimal_token1] = ACTIONS(1945), [aux_sym__val_number_decimal_token2] = ACTIONS(1945), @@ -132008,14 +125631,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1945), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), [sym__entry_separator] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1947), }, - [423] = { - [sym_cell_path] = STATE(656), - [sym_path] = STATE(595), - [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(470), + [413] = { + [sym_cell_path] = STATE(672), + [sym_path] = STATE(575), + [sym_comment] = STATE(413), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(1949), [anon_sym_alias] = ACTIONS(1949), [anon_sym_let] = ACTIONS(1949), @@ -132095,7 +125719,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1949), [anon_sym_PLUS2] = ACTIONS(1949), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), [aux_sym__val_number_decimal_token1] = ACTIONS(1949), [aux_sym__val_number_decimal_token2] = ACTIONS(1949), @@ -132112,222 +125735,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1949), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), [sym__entry_separator] = ACTIONS(1951), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1951), }, - [424] = { - [sym_cell_path] = STATE(664), - [sym_path] = STATE(595), - [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(969), - [anon_sym_alias] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_let_DASHenv] = ACTIONS(969), - [anon_sym_mut] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [aux_sym_cmd_identifier_token1] = ACTIONS(969), - [aux_sym_cmd_identifier_token2] = ACTIONS(969), - [aux_sym_cmd_identifier_token3] = ACTIONS(969), - [aux_sym_cmd_identifier_token4] = ACTIONS(969), - [aux_sym_cmd_identifier_token5] = ACTIONS(969), - [aux_sym_cmd_identifier_token6] = ACTIONS(969), - [aux_sym_cmd_identifier_token7] = ACTIONS(969), - [aux_sym_cmd_identifier_token8] = ACTIONS(969), - [aux_sym_cmd_identifier_token9] = ACTIONS(969), - [aux_sym_cmd_identifier_token10] = ACTIONS(969), - [aux_sym_cmd_identifier_token11] = ACTIONS(969), - [aux_sym_cmd_identifier_token12] = ACTIONS(969), - [aux_sym_cmd_identifier_token13] = ACTIONS(969), - [aux_sym_cmd_identifier_token14] = ACTIONS(969), - [aux_sym_cmd_identifier_token15] = ACTIONS(969), - [aux_sym_cmd_identifier_token16] = ACTIONS(969), - [aux_sym_cmd_identifier_token17] = ACTIONS(969), - [aux_sym_cmd_identifier_token18] = ACTIONS(969), - [aux_sym_cmd_identifier_token19] = ACTIONS(969), - [aux_sym_cmd_identifier_token20] = ACTIONS(969), - [aux_sym_cmd_identifier_token21] = ACTIONS(969), - [aux_sym_cmd_identifier_token22] = ACTIONS(969), - [aux_sym_cmd_identifier_token23] = ACTIONS(969), - [aux_sym_cmd_identifier_token24] = ACTIONS(969), - [aux_sym_cmd_identifier_token25] = ACTIONS(969), - [aux_sym_cmd_identifier_token26] = ACTIONS(969), - [aux_sym_cmd_identifier_token27] = ACTIONS(969), - [aux_sym_cmd_identifier_token28] = ACTIONS(969), - [aux_sym_cmd_identifier_token29] = ACTIONS(969), - [aux_sym_cmd_identifier_token30] = ACTIONS(969), - [aux_sym_cmd_identifier_token31] = ACTIONS(969), - [aux_sym_cmd_identifier_token32] = ACTIONS(969), - [aux_sym_cmd_identifier_token33] = ACTIONS(969), - [aux_sym_cmd_identifier_token34] = ACTIONS(969), - [aux_sym_cmd_identifier_token35] = ACTIONS(969), - [aux_sym_cmd_identifier_token36] = ACTIONS(969), - [aux_sym_cmd_identifier_token37] = ACTIONS(969), - [aux_sym_cmd_identifier_token38] = ACTIONS(969), - [aux_sym_cmd_identifier_token39] = ACTIONS(969), - [aux_sym_cmd_identifier_token40] = ACTIONS(969), - [anon_sym_def] = ACTIONS(969), - [anon_sym_export_DASHenv] = ACTIONS(969), - [anon_sym_extern] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_error] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_make] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_try] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_source] = ACTIONS(969), - [anon_sym_source_DASHenv] = ACTIONS(969), - [anon_sym_register] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_hide_DASHenv] = ACTIONS(969), - [anon_sym_overlay] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(969), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(969), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(969), - [aux_sym__val_number_token1] = ACTIONS(969), - [aux_sym__val_number_token2] = ACTIONS(969), - [aux_sym__val_number_token3] = ACTIONS(969), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym__str_single_quotes] = ACTIONS(969), - [sym__str_back_ticks] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(969), - [sym__entry_separator] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(971), - }, - [425] = { - [sym_cell_path] = STATE(675), - [sym_path] = STATE(595), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1953), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [aux_sym_cmd_identifier_token6] = ACTIONS(1953), - [aux_sym_cmd_identifier_token7] = ACTIONS(1953), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1953), - [aux_sym_cmd_identifier_token11] = ACTIONS(1953), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1953), - [aux_sym_cmd_identifier_token17] = ACTIONS(1953), - [aux_sym_cmd_identifier_token18] = ACTIONS(1953), - [aux_sym_cmd_identifier_token19] = ACTIONS(1953), - [aux_sym_cmd_identifier_token20] = ACTIONS(1953), - [aux_sym_cmd_identifier_token21] = ACTIONS(1953), - [aux_sym_cmd_identifier_token22] = ACTIONS(1953), - [aux_sym_cmd_identifier_token23] = ACTIONS(1953), - [aux_sym_cmd_identifier_token24] = ACTIONS(1953), - [aux_sym_cmd_identifier_token25] = ACTIONS(1953), - [aux_sym_cmd_identifier_token26] = ACTIONS(1953), - [aux_sym_cmd_identifier_token27] = ACTIONS(1953), - [aux_sym_cmd_identifier_token28] = ACTIONS(1953), - [aux_sym_cmd_identifier_token29] = ACTIONS(1953), - [aux_sym_cmd_identifier_token30] = ACTIONS(1953), - [aux_sym_cmd_identifier_token31] = ACTIONS(1953), - [aux_sym_cmd_identifier_token32] = ACTIONS(1953), - [aux_sym_cmd_identifier_token33] = ACTIONS(1953), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1953), - [aux_sym_cmd_identifier_token36] = ACTIONS(1953), - [aux_sym_cmd_identifier_token37] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_decimal_token4] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [sym__entry_separator] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), + [414] = { + [sym_comment] = STATE(414), + [anon_sym_export] = ACTIONS(1819), + [anon_sym_alias] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_let_DASHenv] = ACTIONS(1819), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [aux_sym_cmd_identifier_token1] = ACTIONS(1819), + [aux_sym_cmd_identifier_token2] = ACTIONS(1827), + [aux_sym_cmd_identifier_token3] = ACTIONS(1827), + [aux_sym_cmd_identifier_token4] = ACTIONS(1827), + [aux_sym_cmd_identifier_token5] = ACTIONS(1827), + [aux_sym_cmd_identifier_token6] = ACTIONS(1827), + [aux_sym_cmd_identifier_token7] = ACTIONS(1827), + [aux_sym_cmd_identifier_token8] = ACTIONS(1819), + [aux_sym_cmd_identifier_token9] = ACTIONS(1819), + [aux_sym_cmd_identifier_token10] = ACTIONS(1827), + [aux_sym_cmd_identifier_token11] = ACTIONS(1827), + [aux_sym_cmd_identifier_token12] = ACTIONS(1819), + [aux_sym_cmd_identifier_token13] = ACTIONS(1819), + [aux_sym_cmd_identifier_token14] = ACTIONS(1819), + [aux_sym_cmd_identifier_token15] = ACTIONS(1819), + [aux_sym_cmd_identifier_token16] = ACTIONS(1827), + [aux_sym_cmd_identifier_token17] = ACTIONS(1827), + [aux_sym_cmd_identifier_token18] = ACTIONS(1827), + [aux_sym_cmd_identifier_token19] = ACTIONS(1827), + [aux_sym_cmd_identifier_token20] = ACTIONS(1827), + [aux_sym_cmd_identifier_token21] = ACTIONS(1827), + [aux_sym_cmd_identifier_token22] = ACTIONS(1827), + [aux_sym_cmd_identifier_token23] = ACTIONS(1827), + [aux_sym_cmd_identifier_token24] = ACTIONS(1827), + [aux_sym_cmd_identifier_token25] = ACTIONS(1827), + [aux_sym_cmd_identifier_token26] = ACTIONS(1827), + [aux_sym_cmd_identifier_token27] = ACTIONS(1827), + [aux_sym_cmd_identifier_token28] = ACTIONS(1827), + [aux_sym_cmd_identifier_token29] = ACTIONS(1827), + [aux_sym_cmd_identifier_token30] = ACTIONS(1827), + [aux_sym_cmd_identifier_token31] = ACTIONS(1827), + [aux_sym_cmd_identifier_token32] = ACTIONS(1827), + [aux_sym_cmd_identifier_token33] = ACTIONS(1827), + [aux_sym_cmd_identifier_token34] = ACTIONS(1819), + [aux_sym_cmd_identifier_token35] = ACTIONS(1827), + [aux_sym_cmd_identifier_token36] = ACTIONS(1827), + [aux_sym_cmd_identifier_token37] = ACTIONS(1827), + [aux_sym_cmd_identifier_token38] = ACTIONS(1819), + [aux_sym_cmd_identifier_token39] = ACTIONS(1827), + [aux_sym_cmd_identifier_token40] = ACTIONS(1827), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_export_DASHenv] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_module] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_error] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_in2] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_make] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_do] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_else] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_catch] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_source] = ACTIONS(1819), + [anon_sym_source_DASHenv] = ACTIONS(1819), + [anon_sym_register] = ACTIONS(1819), + [anon_sym_hide] = ACTIONS(1819), + [anon_sym_hide_DASHenv] = ACTIONS(1819), + [anon_sym_overlay] = ACTIONS(1819), + [anon_sym_as] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1827), + [anon_sym_DOT_DOT2] = ACTIONS(1953), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1827), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), }, - [426] = { - [sym_cell_path] = STATE(687), - [sym_path] = STATE(595), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(470), + [415] = { + [sym_cell_path] = STATE(674), + [sym_path] = STATE(575), + [sym_comment] = STATE(415), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(1957), [anon_sym_alias] = ACTIONS(1957), [anon_sym_let] = ACTIONS(1957), @@ -132407,7 +125927,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1957), [anon_sym_PLUS2] = ACTIONS(1957), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), [aux_sym__val_number_decimal_token1] = ACTIONS(1957), [aux_sym__val_number_decimal_token2] = ACTIONS(1957), @@ -132424,1262 +125943,2095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1957), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), [sym__entry_separator] = ACTIONS(1959), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1959), }, + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_alias] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_let_DASHenv] = ACTIONS(1794), + [anon_sym_mut] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [aux_sym_cmd_identifier_token1] = ACTIONS(1794), + [aux_sym_cmd_identifier_token2] = ACTIONS(1802), + [aux_sym_cmd_identifier_token3] = ACTIONS(1802), + [aux_sym_cmd_identifier_token4] = ACTIONS(1802), + [aux_sym_cmd_identifier_token5] = ACTIONS(1802), + [aux_sym_cmd_identifier_token6] = ACTIONS(1802), + [aux_sym_cmd_identifier_token7] = ACTIONS(1802), + [aux_sym_cmd_identifier_token8] = ACTIONS(1794), + [aux_sym_cmd_identifier_token9] = ACTIONS(1794), + [aux_sym_cmd_identifier_token10] = ACTIONS(1802), + [aux_sym_cmd_identifier_token11] = ACTIONS(1802), + [aux_sym_cmd_identifier_token12] = ACTIONS(1794), + [aux_sym_cmd_identifier_token13] = ACTIONS(1794), + [aux_sym_cmd_identifier_token14] = ACTIONS(1794), + [aux_sym_cmd_identifier_token15] = ACTIONS(1794), + [aux_sym_cmd_identifier_token16] = ACTIONS(1802), + [aux_sym_cmd_identifier_token17] = ACTIONS(1802), + [aux_sym_cmd_identifier_token18] = ACTIONS(1802), + [aux_sym_cmd_identifier_token19] = ACTIONS(1802), + [aux_sym_cmd_identifier_token20] = ACTIONS(1802), + [aux_sym_cmd_identifier_token21] = ACTIONS(1802), + [aux_sym_cmd_identifier_token22] = ACTIONS(1802), + [aux_sym_cmd_identifier_token23] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token25] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token27] = ACTIONS(1802), + [aux_sym_cmd_identifier_token28] = ACTIONS(1802), + [aux_sym_cmd_identifier_token29] = ACTIONS(1802), + [aux_sym_cmd_identifier_token30] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1794), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token36] = ACTIONS(1802), + [aux_sym_cmd_identifier_token37] = ACTIONS(1802), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [anon_sym_def] = ACTIONS(1794), + [anon_sym_export_DASHenv] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_error] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_in2] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_make] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1794), + [anon_sym_catch] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_source] = ACTIONS(1794), + [anon_sym_source_DASHenv] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1794), + [anon_sym_hide] = ACTIONS(1794), + [anon_sym_hide_DASHenv] = ACTIONS(1794), + [anon_sym_overlay] = ACTIONS(1794), + [anon_sym_as] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_PLUS2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), + [anon_sym_DOT_DOT2] = ACTIONS(1961), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1963), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1802), + }, + [417] = { + [sym_cell_path] = STATE(612), + [sym_path] = STATE(575), + [sym_comment] = STATE(417), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1965), + [aux_sym_cmd_identifier_token3] = ACTIONS(1965), + [aux_sym_cmd_identifier_token4] = ACTIONS(1965), + [aux_sym_cmd_identifier_token5] = ACTIONS(1965), + [aux_sym_cmd_identifier_token6] = ACTIONS(1965), + [aux_sym_cmd_identifier_token7] = ACTIONS(1965), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1965), + [aux_sym_cmd_identifier_token11] = ACTIONS(1965), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1965), + [aux_sym_cmd_identifier_token17] = ACTIONS(1965), + [aux_sym_cmd_identifier_token18] = ACTIONS(1965), + [aux_sym_cmd_identifier_token19] = ACTIONS(1965), + [aux_sym_cmd_identifier_token20] = ACTIONS(1965), + [aux_sym_cmd_identifier_token21] = ACTIONS(1965), + [aux_sym_cmd_identifier_token22] = ACTIONS(1965), + [aux_sym_cmd_identifier_token23] = ACTIONS(1965), + [aux_sym_cmd_identifier_token24] = ACTIONS(1965), + [aux_sym_cmd_identifier_token25] = ACTIONS(1965), + [aux_sym_cmd_identifier_token26] = ACTIONS(1965), + [aux_sym_cmd_identifier_token27] = ACTIONS(1965), + [aux_sym_cmd_identifier_token28] = ACTIONS(1965), + [aux_sym_cmd_identifier_token29] = ACTIONS(1965), + [aux_sym_cmd_identifier_token30] = ACTIONS(1965), + [aux_sym_cmd_identifier_token31] = ACTIONS(1965), + [aux_sym_cmd_identifier_token32] = ACTIONS(1965), + [aux_sym_cmd_identifier_token33] = ACTIONS(1965), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1965), + [aux_sym_cmd_identifier_token36] = ACTIONS(1965), + [aux_sym_cmd_identifier_token37] = ACTIONS(1965), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1965), + [aux_sym_cmd_identifier_token40] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in2] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [aux_sym__val_number_token4] = ACTIONS(1965), + [aux_sym__val_number_token5] = ACTIONS(1965), + [aux_sym__val_number_token6] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [sym__str_single_quotes] = ACTIONS(1965), + [sym__str_back_ticks] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), + [sym__entry_separator] = ACTIONS(1967), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1967), + }, + [418] = { + [sym_cell_path] = STATE(613), + [sym_path] = STATE(575), + [sym_comment] = STATE(418), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [aux_sym_cmd_identifier_token1] = ACTIONS(1969), + [aux_sym_cmd_identifier_token2] = ACTIONS(1969), + [aux_sym_cmd_identifier_token3] = ACTIONS(1969), + [aux_sym_cmd_identifier_token4] = ACTIONS(1969), + [aux_sym_cmd_identifier_token5] = ACTIONS(1969), + [aux_sym_cmd_identifier_token6] = ACTIONS(1969), + [aux_sym_cmd_identifier_token7] = ACTIONS(1969), + [aux_sym_cmd_identifier_token8] = ACTIONS(1969), + [aux_sym_cmd_identifier_token9] = ACTIONS(1969), + [aux_sym_cmd_identifier_token10] = ACTIONS(1969), + [aux_sym_cmd_identifier_token11] = ACTIONS(1969), + [aux_sym_cmd_identifier_token12] = ACTIONS(1969), + [aux_sym_cmd_identifier_token13] = ACTIONS(1969), + [aux_sym_cmd_identifier_token14] = ACTIONS(1969), + [aux_sym_cmd_identifier_token15] = ACTIONS(1969), + [aux_sym_cmd_identifier_token16] = ACTIONS(1969), + [aux_sym_cmd_identifier_token17] = ACTIONS(1969), + [aux_sym_cmd_identifier_token18] = ACTIONS(1969), + [aux_sym_cmd_identifier_token19] = ACTIONS(1969), + [aux_sym_cmd_identifier_token20] = ACTIONS(1969), + [aux_sym_cmd_identifier_token21] = ACTIONS(1969), + [aux_sym_cmd_identifier_token22] = ACTIONS(1969), + [aux_sym_cmd_identifier_token23] = ACTIONS(1969), + [aux_sym_cmd_identifier_token24] = ACTIONS(1969), + [aux_sym_cmd_identifier_token25] = ACTIONS(1969), + [aux_sym_cmd_identifier_token26] = ACTIONS(1969), + [aux_sym_cmd_identifier_token27] = ACTIONS(1969), + [aux_sym_cmd_identifier_token28] = ACTIONS(1969), + [aux_sym_cmd_identifier_token29] = ACTIONS(1969), + [aux_sym_cmd_identifier_token30] = ACTIONS(1969), + [aux_sym_cmd_identifier_token31] = ACTIONS(1969), + [aux_sym_cmd_identifier_token32] = ACTIONS(1969), + [aux_sym_cmd_identifier_token33] = ACTIONS(1969), + [aux_sym_cmd_identifier_token34] = ACTIONS(1969), + [aux_sym_cmd_identifier_token35] = ACTIONS(1969), + [aux_sym_cmd_identifier_token36] = ACTIONS(1969), + [aux_sym_cmd_identifier_token37] = ACTIONS(1969), + [aux_sym_cmd_identifier_token38] = ACTIONS(1969), + [aux_sym_cmd_identifier_token39] = ACTIONS(1969), + [aux_sym_cmd_identifier_token40] = ACTIONS(1969), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_in2] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_make] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_as] = ACTIONS(1969), + [anon_sym_PLUS2] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1969), + [aux_sym__val_number_decimal_token3] = ACTIONS(1969), + [aux_sym__val_number_decimal_token4] = ACTIONS(1969), + [aux_sym__val_number_token1] = ACTIONS(1969), + [aux_sym__val_number_token2] = ACTIONS(1969), + [aux_sym__val_number_token3] = ACTIONS(1969), + [aux_sym__val_number_token4] = ACTIONS(1969), + [aux_sym__val_number_token5] = ACTIONS(1969), + [aux_sym__val_number_token6] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [sym__str_single_quotes] = ACTIONS(1969), + [sym__str_back_ticks] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), + [sym__entry_separator] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1971), + }, + [419] = { + [sym_cell_path] = STATE(614), + [sym_path] = STATE(575), + [sym_comment] = STATE(419), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1973), + [aux_sym_cmd_identifier_token4] = ACTIONS(1973), + [aux_sym_cmd_identifier_token5] = ACTIONS(1973), + [aux_sym_cmd_identifier_token6] = ACTIONS(1973), + [aux_sym_cmd_identifier_token7] = ACTIONS(1973), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1973), + [aux_sym_cmd_identifier_token11] = ACTIONS(1973), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1973), + [aux_sym_cmd_identifier_token17] = ACTIONS(1973), + [aux_sym_cmd_identifier_token18] = ACTIONS(1973), + [aux_sym_cmd_identifier_token19] = ACTIONS(1973), + [aux_sym_cmd_identifier_token20] = ACTIONS(1973), + [aux_sym_cmd_identifier_token21] = ACTIONS(1973), + [aux_sym_cmd_identifier_token22] = ACTIONS(1973), + [aux_sym_cmd_identifier_token23] = ACTIONS(1973), + [aux_sym_cmd_identifier_token24] = ACTIONS(1973), + [aux_sym_cmd_identifier_token25] = ACTIONS(1973), + [aux_sym_cmd_identifier_token26] = ACTIONS(1973), + [aux_sym_cmd_identifier_token27] = ACTIONS(1973), + [aux_sym_cmd_identifier_token28] = ACTIONS(1973), + [aux_sym_cmd_identifier_token29] = ACTIONS(1973), + [aux_sym_cmd_identifier_token30] = ACTIONS(1973), + [aux_sym_cmd_identifier_token31] = ACTIONS(1973), + [aux_sym_cmd_identifier_token32] = ACTIONS(1973), + [aux_sym_cmd_identifier_token33] = ACTIONS(1973), + [aux_sym_cmd_identifier_token34] = ACTIONS(1973), + [aux_sym_cmd_identifier_token35] = ACTIONS(1973), + [aux_sym_cmd_identifier_token36] = ACTIONS(1973), + [aux_sym_cmd_identifier_token37] = ACTIONS(1973), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1973), + [aux_sym_cmd_identifier_token40] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_in2] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_make] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1973), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1973), + [aux_sym__val_number_decimal_token3] = ACTIONS(1973), + [aux_sym__val_number_decimal_token4] = ACTIONS(1973), + [aux_sym__val_number_token1] = ACTIONS(1973), + [aux_sym__val_number_token2] = ACTIONS(1973), + [aux_sym__val_number_token3] = ACTIONS(1973), + [aux_sym__val_number_token4] = ACTIONS(1973), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__str_single_quotes] = ACTIONS(1973), + [sym__str_back_ticks] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1973), + [sym__entry_separator] = ACTIONS(1975), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1975), + }, + [420] = { + [sym_cell_path] = STATE(615), + [sym_path] = STATE(575), + [sym_comment] = STATE(420), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1977), + [aux_sym_cmd_identifier_token4] = ACTIONS(1977), + [aux_sym_cmd_identifier_token5] = ACTIONS(1977), + [aux_sym_cmd_identifier_token6] = ACTIONS(1977), + [aux_sym_cmd_identifier_token7] = ACTIONS(1977), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1977), + [aux_sym_cmd_identifier_token11] = ACTIONS(1977), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1977), + [aux_sym_cmd_identifier_token17] = ACTIONS(1977), + [aux_sym_cmd_identifier_token18] = ACTIONS(1977), + [aux_sym_cmd_identifier_token19] = ACTIONS(1977), + [aux_sym_cmd_identifier_token20] = ACTIONS(1977), + [aux_sym_cmd_identifier_token21] = ACTIONS(1977), + [aux_sym_cmd_identifier_token22] = ACTIONS(1977), + [aux_sym_cmd_identifier_token23] = ACTIONS(1977), + [aux_sym_cmd_identifier_token24] = ACTIONS(1977), + [aux_sym_cmd_identifier_token25] = ACTIONS(1977), + [aux_sym_cmd_identifier_token26] = ACTIONS(1977), + [aux_sym_cmd_identifier_token27] = ACTIONS(1977), + [aux_sym_cmd_identifier_token28] = ACTIONS(1977), + [aux_sym_cmd_identifier_token29] = ACTIONS(1977), + [aux_sym_cmd_identifier_token30] = ACTIONS(1977), + [aux_sym_cmd_identifier_token31] = ACTIONS(1977), + [aux_sym_cmd_identifier_token32] = ACTIONS(1977), + [aux_sym_cmd_identifier_token33] = ACTIONS(1977), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1977), + [aux_sym_cmd_identifier_token36] = ACTIONS(1977), + [aux_sym_cmd_identifier_token37] = ACTIONS(1977), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1977), + [aux_sym_cmd_identifier_token40] = ACTIONS(1977), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1977), + [aux_sym__val_number_decimal_token3] = ACTIONS(1977), + [aux_sym__val_number_decimal_token4] = ACTIONS(1977), + [aux_sym__val_number_token1] = ACTIONS(1977), + [aux_sym__val_number_token2] = ACTIONS(1977), + [aux_sym__val_number_token3] = ACTIONS(1977), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__str_single_quotes] = ACTIONS(1977), + [sym__str_back_ticks] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), + [sym__entry_separator] = ACTIONS(1979), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [421] = { + [sym_cell_path] = STATE(616), + [sym_path] = STATE(575), + [sym_comment] = STATE(421), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1981), + [aux_sym_cmd_identifier_token3] = ACTIONS(1981), + [aux_sym_cmd_identifier_token4] = ACTIONS(1981), + [aux_sym_cmd_identifier_token5] = ACTIONS(1981), + [aux_sym_cmd_identifier_token6] = ACTIONS(1981), + [aux_sym_cmd_identifier_token7] = ACTIONS(1981), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1981), + [aux_sym_cmd_identifier_token11] = ACTIONS(1981), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1981), + [aux_sym_cmd_identifier_token17] = ACTIONS(1981), + [aux_sym_cmd_identifier_token18] = ACTIONS(1981), + [aux_sym_cmd_identifier_token19] = ACTIONS(1981), + [aux_sym_cmd_identifier_token20] = ACTIONS(1981), + [aux_sym_cmd_identifier_token21] = ACTIONS(1981), + [aux_sym_cmd_identifier_token22] = ACTIONS(1981), + [aux_sym_cmd_identifier_token23] = ACTIONS(1981), + [aux_sym_cmd_identifier_token24] = ACTIONS(1981), + [aux_sym_cmd_identifier_token25] = ACTIONS(1981), + [aux_sym_cmd_identifier_token26] = ACTIONS(1981), + [aux_sym_cmd_identifier_token27] = ACTIONS(1981), + [aux_sym_cmd_identifier_token28] = ACTIONS(1981), + [aux_sym_cmd_identifier_token29] = ACTIONS(1981), + [aux_sym_cmd_identifier_token30] = ACTIONS(1981), + [aux_sym_cmd_identifier_token31] = ACTIONS(1981), + [aux_sym_cmd_identifier_token32] = ACTIONS(1981), + [aux_sym_cmd_identifier_token33] = ACTIONS(1981), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1981), + [aux_sym_cmd_identifier_token36] = ACTIONS(1981), + [aux_sym_cmd_identifier_token37] = ACTIONS(1981), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1981), + [aux_sym_cmd_identifier_token40] = ACTIONS(1981), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_DASH2] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in2] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_PLUS2] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1981), + [aux_sym__val_number_decimal_token3] = ACTIONS(1981), + [aux_sym__val_number_decimal_token4] = ACTIONS(1981), + [aux_sym__val_number_token1] = ACTIONS(1981), + [aux_sym__val_number_token2] = ACTIONS(1981), + [aux_sym__val_number_token3] = ACTIONS(1981), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), + [sym__entry_separator] = ACTIONS(1983), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1983), + }, + [422] = { + [sym_cell_path] = STATE(617), + [sym_path] = STATE(575), + [sym_comment] = STATE(422), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1985), + [anon_sym_alias] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_let_DASHenv] = ACTIONS(1985), + [anon_sym_mut] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [aux_sym_cmd_identifier_token1] = ACTIONS(1985), + [aux_sym_cmd_identifier_token2] = ACTIONS(1985), + [aux_sym_cmd_identifier_token3] = ACTIONS(1985), + [aux_sym_cmd_identifier_token4] = ACTIONS(1985), + [aux_sym_cmd_identifier_token5] = ACTIONS(1985), + [aux_sym_cmd_identifier_token6] = ACTIONS(1985), + [aux_sym_cmd_identifier_token7] = ACTIONS(1985), + [aux_sym_cmd_identifier_token8] = ACTIONS(1985), + [aux_sym_cmd_identifier_token9] = ACTIONS(1985), + [aux_sym_cmd_identifier_token10] = ACTIONS(1985), + [aux_sym_cmd_identifier_token11] = ACTIONS(1985), + [aux_sym_cmd_identifier_token12] = ACTIONS(1985), + [aux_sym_cmd_identifier_token13] = ACTIONS(1985), + [aux_sym_cmd_identifier_token14] = ACTIONS(1985), + [aux_sym_cmd_identifier_token15] = ACTIONS(1985), + [aux_sym_cmd_identifier_token16] = ACTIONS(1985), + [aux_sym_cmd_identifier_token17] = ACTIONS(1985), + [aux_sym_cmd_identifier_token18] = ACTIONS(1985), + [aux_sym_cmd_identifier_token19] = ACTIONS(1985), + [aux_sym_cmd_identifier_token20] = ACTIONS(1985), + [aux_sym_cmd_identifier_token21] = ACTIONS(1985), + [aux_sym_cmd_identifier_token22] = ACTIONS(1985), + [aux_sym_cmd_identifier_token23] = ACTIONS(1985), + [aux_sym_cmd_identifier_token24] = ACTIONS(1985), + [aux_sym_cmd_identifier_token25] = ACTIONS(1985), + [aux_sym_cmd_identifier_token26] = ACTIONS(1985), + [aux_sym_cmd_identifier_token27] = ACTIONS(1985), + [aux_sym_cmd_identifier_token28] = ACTIONS(1985), + [aux_sym_cmd_identifier_token29] = ACTIONS(1985), + [aux_sym_cmd_identifier_token30] = ACTIONS(1985), + [aux_sym_cmd_identifier_token31] = ACTIONS(1985), + [aux_sym_cmd_identifier_token32] = ACTIONS(1985), + [aux_sym_cmd_identifier_token33] = ACTIONS(1985), + [aux_sym_cmd_identifier_token34] = ACTIONS(1985), + [aux_sym_cmd_identifier_token35] = ACTIONS(1985), + [aux_sym_cmd_identifier_token36] = ACTIONS(1985), + [aux_sym_cmd_identifier_token37] = ACTIONS(1985), + [aux_sym_cmd_identifier_token38] = ACTIONS(1985), + [aux_sym_cmd_identifier_token39] = ACTIONS(1985), + [aux_sym_cmd_identifier_token40] = ACTIONS(1985), + [anon_sym_def] = ACTIONS(1985), + [anon_sym_export_DASHenv] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_module] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_error] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_in2] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_make] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1985), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_source] = ACTIONS(1985), + [anon_sym_source_DASHenv] = ACTIONS(1985), + [anon_sym_register] = ACTIONS(1985), + [anon_sym_hide] = ACTIONS(1985), + [anon_sym_hide_DASHenv] = ACTIONS(1985), + [anon_sym_overlay] = ACTIONS(1985), + [anon_sym_as] = ACTIONS(1985), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1985), + [aux_sym__val_number_decimal_token3] = ACTIONS(1985), + [aux_sym__val_number_decimal_token4] = ACTIONS(1985), + [aux_sym__val_number_token1] = ACTIONS(1985), + [aux_sym__val_number_token2] = ACTIONS(1985), + [aux_sym__val_number_token3] = ACTIONS(1985), + [aux_sym__val_number_token4] = ACTIONS(1985), + [aux_sym__val_number_token5] = ACTIONS(1985), + [aux_sym__val_number_token6] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(1985), + [sym__str_single_quotes] = ACTIONS(1985), + [sym__str_back_ticks] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), + [sym__entry_separator] = ACTIONS(1987), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1987), + }, + [423] = { + [sym_cell_path] = STATE(619), + [sym_path] = STATE(575), + [sym_comment] = STATE(423), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1989), + [anon_sym_alias] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_let_DASHenv] = ACTIONS(1989), + [anon_sym_mut] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [aux_sym_cmd_identifier_token1] = ACTIONS(1989), + [aux_sym_cmd_identifier_token2] = ACTIONS(1989), + [aux_sym_cmd_identifier_token3] = ACTIONS(1989), + [aux_sym_cmd_identifier_token4] = ACTIONS(1989), + [aux_sym_cmd_identifier_token5] = ACTIONS(1989), + [aux_sym_cmd_identifier_token6] = ACTIONS(1989), + [aux_sym_cmd_identifier_token7] = ACTIONS(1989), + [aux_sym_cmd_identifier_token8] = ACTIONS(1989), + [aux_sym_cmd_identifier_token9] = ACTIONS(1989), + [aux_sym_cmd_identifier_token10] = ACTIONS(1989), + [aux_sym_cmd_identifier_token11] = ACTIONS(1989), + [aux_sym_cmd_identifier_token12] = ACTIONS(1989), + [aux_sym_cmd_identifier_token13] = ACTIONS(1989), + [aux_sym_cmd_identifier_token14] = ACTIONS(1989), + [aux_sym_cmd_identifier_token15] = ACTIONS(1989), + [aux_sym_cmd_identifier_token16] = ACTIONS(1989), + [aux_sym_cmd_identifier_token17] = ACTIONS(1989), + [aux_sym_cmd_identifier_token18] = ACTIONS(1989), + [aux_sym_cmd_identifier_token19] = ACTIONS(1989), + [aux_sym_cmd_identifier_token20] = ACTIONS(1989), + [aux_sym_cmd_identifier_token21] = ACTIONS(1989), + [aux_sym_cmd_identifier_token22] = ACTIONS(1989), + [aux_sym_cmd_identifier_token23] = ACTIONS(1989), + [aux_sym_cmd_identifier_token24] = ACTIONS(1989), + [aux_sym_cmd_identifier_token25] = ACTIONS(1989), + [aux_sym_cmd_identifier_token26] = ACTIONS(1989), + [aux_sym_cmd_identifier_token27] = ACTIONS(1989), + [aux_sym_cmd_identifier_token28] = ACTIONS(1989), + [aux_sym_cmd_identifier_token29] = ACTIONS(1989), + [aux_sym_cmd_identifier_token30] = ACTIONS(1989), + [aux_sym_cmd_identifier_token31] = ACTIONS(1989), + [aux_sym_cmd_identifier_token32] = ACTIONS(1989), + [aux_sym_cmd_identifier_token33] = ACTIONS(1989), + [aux_sym_cmd_identifier_token34] = ACTIONS(1989), + [aux_sym_cmd_identifier_token35] = ACTIONS(1989), + [aux_sym_cmd_identifier_token36] = ACTIONS(1989), + [aux_sym_cmd_identifier_token37] = ACTIONS(1989), + [aux_sym_cmd_identifier_token38] = ACTIONS(1989), + [aux_sym_cmd_identifier_token39] = ACTIONS(1989), + [aux_sym_cmd_identifier_token40] = ACTIONS(1989), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_export_DASHenv] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_module] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_error] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_in2] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_make] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_catch] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_source] = ACTIONS(1989), + [anon_sym_source_DASHenv] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1989), + [anon_sym_hide] = ACTIONS(1989), + [anon_sym_hide_DASHenv] = ACTIONS(1989), + [anon_sym_overlay] = ACTIONS(1989), + [anon_sym_as] = ACTIONS(1989), + [anon_sym_PLUS2] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), + [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token2] = ACTIONS(1989), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(1989), + [aux_sym__val_number_token2] = ACTIONS(1989), + [aux_sym__val_number_token3] = ACTIONS(1989), + [aux_sym__val_number_token4] = ACTIONS(1989), + [aux_sym__val_number_token5] = ACTIONS(1989), + [aux_sym__val_number_token6] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1989), + [sym__str_single_quotes] = ACTIONS(1989), + [sym__str_back_ticks] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), + [sym__entry_separator] = ACTIONS(1991), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [424] = { + [sym_cell_path] = STATE(620), + [sym_path] = STATE(575), + [sym_comment] = STATE(424), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [aux_sym_cmd_identifier_token37] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in2] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [aux_sym__val_number_token4] = ACTIONS(1993), + [aux_sym__val_number_token5] = ACTIONS(1993), + [aux_sym__val_number_token6] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1995), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1995), + }, + [425] = { + [sym_cell_path] = STATE(621), + [sym_path] = STATE(575), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [aux_sym_cmd_identifier_token37] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [426] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(575), + [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [aux_sym_cmd_identifier_token37] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2003), + }, [427] = { + [sym_cell_path] = STATE(623), + [sym_path] = STATE(575), [sym_comment] = STATE(427), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1008), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2005), + [anon_sym_alias] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_let_DASHenv] = ACTIONS(2005), + [anon_sym_mut] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [aux_sym_cmd_identifier_token1] = ACTIONS(2005), + [aux_sym_cmd_identifier_token2] = ACTIONS(2005), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [aux_sym_cmd_identifier_token6] = ACTIONS(2005), + [aux_sym_cmd_identifier_token7] = ACTIONS(2005), + [aux_sym_cmd_identifier_token8] = ACTIONS(2005), + [aux_sym_cmd_identifier_token9] = ACTIONS(2005), + [aux_sym_cmd_identifier_token10] = ACTIONS(2005), + [aux_sym_cmd_identifier_token11] = ACTIONS(2005), + [aux_sym_cmd_identifier_token12] = ACTIONS(2005), + [aux_sym_cmd_identifier_token13] = ACTIONS(2005), + [aux_sym_cmd_identifier_token14] = ACTIONS(2005), + [aux_sym_cmd_identifier_token15] = ACTIONS(2005), + [aux_sym_cmd_identifier_token16] = ACTIONS(2005), + [aux_sym_cmd_identifier_token17] = ACTIONS(2005), + [aux_sym_cmd_identifier_token18] = ACTIONS(2005), + [aux_sym_cmd_identifier_token19] = ACTIONS(2005), + [aux_sym_cmd_identifier_token20] = ACTIONS(2005), + [aux_sym_cmd_identifier_token21] = ACTIONS(2005), + [aux_sym_cmd_identifier_token22] = ACTIONS(2005), + [aux_sym_cmd_identifier_token23] = ACTIONS(2005), + [aux_sym_cmd_identifier_token24] = ACTIONS(2005), + [aux_sym_cmd_identifier_token25] = ACTIONS(2005), + [aux_sym_cmd_identifier_token26] = ACTIONS(2005), + [aux_sym_cmd_identifier_token27] = ACTIONS(2005), + [aux_sym_cmd_identifier_token28] = ACTIONS(2005), + [aux_sym_cmd_identifier_token29] = ACTIONS(2005), + [aux_sym_cmd_identifier_token30] = ACTIONS(2005), + [aux_sym_cmd_identifier_token31] = ACTIONS(2005), + [aux_sym_cmd_identifier_token32] = ACTIONS(2005), + [aux_sym_cmd_identifier_token33] = ACTIONS(2005), + [aux_sym_cmd_identifier_token34] = ACTIONS(2005), + [aux_sym_cmd_identifier_token35] = ACTIONS(2005), + [aux_sym_cmd_identifier_token36] = ACTIONS(2005), + [aux_sym_cmd_identifier_token37] = ACTIONS(2005), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2005), + [aux_sym_cmd_identifier_token40] = ACTIONS(2005), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_export_DASHenv] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_module] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_error] = ACTIONS(2005), + [anon_sym_DASH2] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_in2] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_make] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_do] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_catch] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_source] = ACTIONS(2005), + [anon_sym_source_DASHenv] = ACTIONS(2005), + [anon_sym_register] = ACTIONS(2005), + [anon_sym_hide] = ACTIONS(2005), + [anon_sym_hide_DASHenv] = ACTIONS(2005), + [anon_sym_overlay] = ACTIONS(2005), + [anon_sym_as] = ACTIONS(2005), + [anon_sym_PLUS2] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2005), + [aux_sym__val_number_decimal_token4] = ACTIONS(2005), + [aux_sym__val_number_token1] = ACTIONS(2005), + [aux_sym__val_number_token2] = ACTIONS(2005), + [aux_sym__val_number_token3] = ACTIONS(2005), + [aux_sym__val_number_token4] = ACTIONS(2005), + [aux_sym__val_number_token5] = ACTIONS(2005), + [aux_sym__val_number_token6] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), + [sym__entry_separator] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2007), }, [428] = { + [sym_cell_path] = STATE(624), + [sym_path] = STATE(575), [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2009), + [anon_sym_alias] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_let_DASHenv] = ACTIONS(2009), + [anon_sym_mut] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [aux_sym_cmd_identifier_token1] = ACTIONS(2009), + [aux_sym_cmd_identifier_token2] = ACTIONS(2009), + [aux_sym_cmd_identifier_token3] = ACTIONS(2009), + [aux_sym_cmd_identifier_token4] = ACTIONS(2009), + [aux_sym_cmd_identifier_token5] = ACTIONS(2009), + [aux_sym_cmd_identifier_token6] = ACTIONS(2009), + [aux_sym_cmd_identifier_token7] = ACTIONS(2009), + [aux_sym_cmd_identifier_token8] = ACTIONS(2009), + [aux_sym_cmd_identifier_token9] = ACTIONS(2009), + [aux_sym_cmd_identifier_token10] = ACTIONS(2009), + [aux_sym_cmd_identifier_token11] = ACTIONS(2009), + [aux_sym_cmd_identifier_token12] = ACTIONS(2009), + [aux_sym_cmd_identifier_token13] = ACTIONS(2009), + [aux_sym_cmd_identifier_token14] = ACTIONS(2009), + [aux_sym_cmd_identifier_token15] = ACTIONS(2009), + [aux_sym_cmd_identifier_token16] = ACTIONS(2009), + [aux_sym_cmd_identifier_token17] = ACTIONS(2009), + [aux_sym_cmd_identifier_token18] = ACTIONS(2009), + [aux_sym_cmd_identifier_token19] = ACTIONS(2009), + [aux_sym_cmd_identifier_token20] = ACTIONS(2009), + [aux_sym_cmd_identifier_token21] = ACTIONS(2009), + [aux_sym_cmd_identifier_token22] = ACTIONS(2009), + [aux_sym_cmd_identifier_token23] = ACTIONS(2009), + [aux_sym_cmd_identifier_token24] = ACTIONS(2009), + [aux_sym_cmd_identifier_token25] = ACTIONS(2009), + [aux_sym_cmd_identifier_token26] = ACTIONS(2009), + [aux_sym_cmd_identifier_token27] = ACTIONS(2009), + [aux_sym_cmd_identifier_token28] = ACTIONS(2009), + [aux_sym_cmd_identifier_token29] = ACTIONS(2009), + [aux_sym_cmd_identifier_token30] = ACTIONS(2009), + [aux_sym_cmd_identifier_token31] = ACTIONS(2009), + [aux_sym_cmd_identifier_token32] = ACTIONS(2009), + [aux_sym_cmd_identifier_token33] = ACTIONS(2009), + [aux_sym_cmd_identifier_token34] = ACTIONS(2009), + [aux_sym_cmd_identifier_token35] = ACTIONS(2009), + [aux_sym_cmd_identifier_token36] = ACTIONS(2009), + [aux_sym_cmd_identifier_token37] = ACTIONS(2009), + [aux_sym_cmd_identifier_token38] = ACTIONS(2009), + [aux_sym_cmd_identifier_token39] = ACTIONS(2009), + [aux_sym_cmd_identifier_token40] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_export_DASHenv] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_error] = ACTIONS(2009), + [anon_sym_DASH2] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_in2] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_make] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_else] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_catch] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_source] = ACTIONS(2009), + [anon_sym_source_DASHenv] = ACTIONS(2009), + [anon_sym_register] = ACTIONS(2009), + [anon_sym_hide] = ACTIONS(2009), + [anon_sym_hide_DASHenv] = ACTIONS(2009), + [anon_sym_overlay] = ACTIONS(2009), + [anon_sym_as] = ACTIONS(2009), + [anon_sym_PLUS2] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2009), + [aux_sym__val_number_decimal_token3] = ACTIONS(2009), + [aux_sym__val_number_decimal_token4] = ACTIONS(2009), + [aux_sym__val_number_token1] = ACTIONS(2009), + [aux_sym__val_number_token2] = ACTIONS(2009), + [aux_sym__val_number_token3] = ACTIONS(2009), + [aux_sym__val_number_token4] = ACTIONS(2009), + [aux_sym__val_number_token5] = ACTIONS(2009), + [aux_sym__val_number_token6] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(2009), + [sym__str_single_quotes] = ACTIONS(2009), + [sym__str_back_ticks] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), + [sym__entry_separator] = ACTIONS(2011), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2011), }, [429] = { + [sym_cell_path] = STATE(625), + [sym_path] = STATE(575), [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [aux_sym_cmd_identifier_token37] = ACTIONS(1022), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1022), - [aux_sym_cmd_identifier_token40] = ACTIONS(1022), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1022), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(1022), - [aux_sym__val_number_token2] = ACTIONS(1022), - [aux_sym__val_number_token3] = ACTIONS(1022), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym__str_single_quotes] = ACTIONS(1022), - [sym__str_back_ticks] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), - [sym__entry_separator] = ACTIONS(1024), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [aux_sym_cmd_identifier_token1] = ACTIONS(2013), + [aux_sym_cmd_identifier_token2] = ACTIONS(2013), + [aux_sym_cmd_identifier_token3] = ACTIONS(2013), + [aux_sym_cmd_identifier_token4] = ACTIONS(2013), + [aux_sym_cmd_identifier_token5] = ACTIONS(2013), + [aux_sym_cmd_identifier_token6] = ACTIONS(2013), + [aux_sym_cmd_identifier_token7] = ACTIONS(2013), + [aux_sym_cmd_identifier_token8] = ACTIONS(2013), + [aux_sym_cmd_identifier_token9] = ACTIONS(2013), + [aux_sym_cmd_identifier_token10] = ACTIONS(2013), + [aux_sym_cmd_identifier_token11] = ACTIONS(2013), + [aux_sym_cmd_identifier_token12] = ACTIONS(2013), + [aux_sym_cmd_identifier_token13] = ACTIONS(2013), + [aux_sym_cmd_identifier_token14] = ACTIONS(2013), + [aux_sym_cmd_identifier_token15] = ACTIONS(2013), + [aux_sym_cmd_identifier_token16] = ACTIONS(2013), + [aux_sym_cmd_identifier_token17] = ACTIONS(2013), + [aux_sym_cmd_identifier_token18] = ACTIONS(2013), + [aux_sym_cmd_identifier_token19] = ACTIONS(2013), + [aux_sym_cmd_identifier_token20] = ACTIONS(2013), + [aux_sym_cmd_identifier_token21] = ACTIONS(2013), + [aux_sym_cmd_identifier_token22] = ACTIONS(2013), + [aux_sym_cmd_identifier_token23] = ACTIONS(2013), + [aux_sym_cmd_identifier_token24] = ACTIONS(2013), + [aux_sym_cmd_identifier_token25] = ACTIONS(2013), + [aux_sym_cmd_identifier_token26] = ACTIONS(2013), + [aux_sym_cmd_identifier_token27] = ACTIONS(2013), + [aux_sym_cmd_identifier_token28] = ACTIONS(2013), + [aux_sym_cmd_identifier_token29] = ACTIONS(2013), + [aux_sym_cmd_identifier_token30] = ACTIONS(2013), + [aux_sym_cmd_identifier_token31] = ACTIONS(2013), + [aux_sym_cmd_identifier_token32] = ACTIONS(2013), + [aux_sym_cmd_identifier_token33] = ACTIONS(2013), + [aux_sym_cmd_identifier_token34] = ACTIONS(2013), + [aux_sym_cmd_identifier_token35] = ACTIONS(2013), + [aux_sym_cmd_identifier_token36] = ACTIONS(2013), + [aux_sym_cmd_identifier_token37] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_in2] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_make] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_catch] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [aux_sym__val_number_token4] = ACTIONS(2013), + [aux_sym__val_number_token5] = ACTIONS(2013), + [aux_sym__val_number_token6] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), + [sym__entry_separator] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1024), + [sym_raw_string_begin] = ACTIONS(2015), }, [430] = { + [sym_cell_path] = STATE(626), + [sym_path] = STATE(575), [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1018), - [aux_sym_cmd_identifier_token3] = ACTIONS(1018), - [aux_sym_cmd_identifier_token4] = ACTIONS(1018), - [aux_sym_cmd_identifier_token5] = ACTIONS(1018), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [aux_sym_cmd_identifier_token7] = ACTIONS(1018), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1018), - [aux_sym_cmd_identifier_token11] = ACTIONS(1018), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1018), - [aux_sym_cmd_identifier_token17] = ACTIONS(1018), - [aux_sym_cmd_identifier_token18] = ACTIONS(1018), - [aux_sym_cmd_identifier_token19] = ACTIONS(1018), - [aux_sym_cmd_identifier_token20] = ACTIONS(1018), - [aux_sym_cmd_identifier_token21] = ACTIONS(1018), - [aux_sym_cmd_identifier_token22] = ACTIONS(1018), - [aux_sym_cmd_identifier_token23] = ACTIONS(1018), - [aux_sym_cmd_identifier_token24] = ACTIONS(1018), - [aux_sym_cmd_identifier_token25] = ACTIONS(1018), - [aux_sym_cmd_identifier_token26] = ACTIONS(1018), - [aux_sym_cmd_identifier_token27] = ACTIONS(1018), - [aux_sym_cmd_identifier_token28] = ACTIONS(1018), - [aux_sym_cmd_identifier_token29] = ACTIONS(1018), - [aux_sym_cmd_identifier_token30] = ACTIONS(1018), - [aux_sym_cmd_identifier_token31] = ACTIONS(1018), - [aux_sym_cmd_identifier_token32] = ACTIONS(1018), - [aux_sym_cmd_identifier_token33] = ACTIONS(1018), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1018), - [aux_sym_cmd_identifier_token36] = ACTIONS(1018), - [aux_sym_cmd_identifier_token37] = ACTIONS(1018), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1018), - [aux_sym_cmd_identifier_token40] = ACTIONS(1018), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1018), - [aux_sym__val_number_decimal_token3] = ACTIONS(1018), - [aux_sym__val_number_decimal_token4] = ACTIONS(1018), - [aux_sym__val_number_token1] = ACTIONS(1018), - [aux_sym__val_number_token2] = ACTIONS(1018), - [aux_sym__val_number_token3] = ACTIONS(1018), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), - [sym__entry_separator] = ACTIONS(1020), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2017), + [aux_sym_cmd_identifier_token4] = ACTIONS(2017), + [aux_sym_cmd_identifier_token5] = ACTIONS(2017), + [aux_sym_cmd_identifier_token6] = ACTIONS(2017), + [aux_sym_cmd_identifier_token7] = ACTIONS(2017), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2017), + [aux_sym_cmd_identifier_token11] = ACTIONS(2017), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2017), + [aux_sym_cmd_identifier_token17] = ACTIONS(2017), + [aux_sym_cmd_identifier_token18] = ACTIONS(2017), + [aux_sym_cmd_identifier_token19] = ACTIONS(2017), + [aux_sym_cmd_identifier_token20] = ACTIONS(2017), + [aux_sym_cmd_identifier_token21] = ACTIONS(2017), + [aux_sym_cmd_identifier_token22] = ACTIONS(2017), + [aux_sym_cmd_identifier_token23] = ACTIONS(2017), + [aux_sym_cmd_identifier_token24] = ACTIONS(2017), + [aux_sym_cmd_identifier_token25] = ACTIONS(2017), + [aux_sym_cmd_identifier_token26] = ACTIONS(2017), + [aux_sym_cmd_identifier_token27] = ACTIONS(2017), + [aux_sym_cmd_identifier_token28] = ACTIONS(2017), + [aux_sym_cmd_identifier_token29] = ACTIONS(2017), + [aux_sym_cmd_identifier_token30] = ACTIONS(2017), + [aux_sym_cmd_identifier_token31] = ACTIONS(2017), + [aux_sym_cmd_identifier_token32] = ACTIONS(2017), + [aux_sym_cmd_identifier_token33] = ACTIONS(2017), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2017), + [aux_sym_cmd_identifier_token36] = ACTIONS(2017), + [aux_sym_cmd_identifier_token37] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_DASH2] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in2] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_PLUS2] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [aux_sym__val_number_token4] = ACTIONS(2017), + [aux_sym__val_number_token5] = ACTIONS(2017), + [aux_sym__val_number_token6] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [sym__entry_separator] = ACTIONS(2019), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1020), + [sym_raw_string_begin] = ACTIONS(2019), }, [431] = { + [sym_cell_path] = STATE(627), + [sym_path] = STATE(575), [sym_comment] = STATE(431), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1014), - [aux_sym_cmd_identifier_token3] = ACTIONS(1014), - [aux_sym_cmd_identifier_token4] = ACTIONS(1014), - [aux_sym_cmd_identifier_token5] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [aux_sym_cmd_identifier_token7] = ACTIONS(1014), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1014), - [aux_sym_cmd_identifier_token17] = ACTIONS(1014), - [aux_sym_cmd_identifier_token18] = ACTIONS(1014), - [aux_sym_cmd_identifier_token19] = ACTIONS(1014), - [aux_sym_cmd_identifier_token20] = ACTIONS(1014), - [aux_sym_cmd_identifier_token21] = ACTIONS(1014), - [aux_sym_cmd_identifier_token22] = ACTIONS(1014), - [aux_sym_cmd_identifier_token23] = ACTIONS(1014), - [aux_sym_cmd_identifier_token24] = ACTIONS(1014), - [aux_sym_cmd_identifier_token25] = ACTIONS(1014), - [aux_sym_cmd_identifier_token26] = ACTIONS(1014), - [aux_sym_cmd_identifier_token27] = ACTIONS(1014), - [aux_sym_cmd_identifier_token28] = ACTIONS(1014), - [aux_sym_cmd_identifier_token29] = ACTIONS(1014), - [aux_sym_cmd_identifier_token30] = ACTIONS(1014), - [aux_sym_cmd_identifier_token31] = ACTIONS(1014), - [aux_sym_cmd_identifier_token32] = ACTIONS(1014), - [aux_sym_cmd_identifier_token33] = ACTIONS(1014), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1014), - [aux_sym_cmd_identifier_token36] = ACTIONS(1014), - [aux_sym_cmd_identifier_token37] = ACTIONS(1014), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1014), - [aux_sym__val_number_decimal_token4] = ACTIONS(1014), - [aux_sym__val_number_token1] = ACTIONS(1014), - [aux_sym__val_number_token2] = ACTIONS(1014), - [aux_sym__val_number_token3] = ACTIONS(1014), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), - [sym__entry_separator] = ACTIONS(1016), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2021), + [anon_sym_alias] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_let_DASHenv] = ACTIONS(2021), + [anon_sym_mut] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [aux_sym_cmd_identifier_token1] = ACTIONS(2021), + [aux_sym_cmd_identifier_token2] = ACTIONS(2021), + [aux_sym_cmd_identifier_token3] = ACTIONS(2021), + [aux_sym_cmd_identifier_token4] = ACTIONS(2021), + [aux_sym_cmd_identifier_token5] = ACTIONS(2021), + [aux_sym_cmd_identifier_token6] = ACTIONS(2021), + [aux_sym_cmd_identifier_token7] = ACTIONS(2021), + [aux_sym_cmd_identifier_token8] = ACTIONS(2021), + [aux_sym_cmd_identifier_token9] = ACTIONS(2021), + [aux_sym_cmd_identifier_token10] = ACTIONS(2021), + [aux_sym_cmd_identifier_token11] = ACTIONS(2021), + [aux_sym_cmd_identifier_token12] = ACTIONS(2021), + [aux_sym_cmd_identifier_token13] = ACTIONS(2021), + [aux_sym_cmd_identifier_token14] = ACTIONS(2021), + [aux_sym_cmd_identifier_token15] = ACTIONS(2021), + [aux_sym_cmd_identifier_token16] = ACTIONS(2021), + [aux_sym_cmd_identifier_token17] = ACTIONS(2021), + [aux_sym_cmd_identifier_token18] = ACTIONS(2021), + [aux_sym_cmd_identifier_token19] = ACTIONS(2021), + [aux_sym_cmd_identifier_token20] = ACTIONS(2021), + [aux_sym_cmd_identifier_token21] = ACTIONS(2021), + [aux_sym_cmd_identifier_token22] = ACTIONS(2021), + [aux_sym_cmd_identifier_token23] = ACTIONS(2021), + [aux_sym_cmd_identifier_token24] = ACTIONS(2021), + [aux_sym_cmd_identifier_token25] = ACTIONS(2021), + [aux_sym_cmd_identifier_token26] = ACTIONS(2021), + [aux_sym_cmd_identifier_token27] = ACTIONS(2021), + [aux_sym_cmd_identifier_token28] = ACTIONS(2021), + [aux_sym_cmd_identifier_token29] = ACTIONS(2021), + [aux_sym_cmd_identifier_token30] = ACTIONS(2021), + [aux_sym_cmd_identifier_token31] = ACTIONS(2021), + [aux_sym_cmd_identifier_token32] = ACTIONS(2021), + [aux_sym_cmd_identifier_token33] = ACTIONS(2021), + [aux_sym_cmd_identifier_token34] = ACTIONS(2021), + [aux_sym_cmd_identifier_token35] = ACTIONS(2021), + [aux_sym_cmd_identifier_token36] = ACTIONS(2021), + [aux_sym_cmd_identifier_token37] = ACTIONS(2021), + [aux_sym_cmd_identifier_token38] = ACTIONS(2021), + [aux_sym_cmd_identifier_token39] = ACTIONS(2021), + [aux_sym_cmd_identifier_token40] = ACTIONS(2021), + [anon_sym_def] = ACTIONS(2021), + [anon_sym_export_DASHenv] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_module] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_error] = ACTIONS(2021), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_in2] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_make] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_do] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [anon_sym_catch] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_source] = ACTIONS(2021), + [anon_sym_source_DASHenv] = ACTIONS(2021), + [anon_sym_register] = ACTIONS(2021), + [anon_sym_hide] = ACTIONS(2021), + [anon_sym_hide_DASHenv] = ACTIONS(2021), + [anon_sym_overlay] = ACTIONS(2021), + [anon_sym_as] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2021), + [aux_sym__val_number_decimal_token4] = ACTIONS(2021), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [aux_sym__val_number_token4] = ACTIONS(2021), + [aux_sym__val_number_token5] = ACTIONS(2021), + [aux_sym__val_number_token6] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__str_single_quotes] = ACTIONS(2021), + [sym__str_back_ticks] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), + [sym__entry_separator] = ACTIONS(2023), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1016), + [sym_raw_string_begin] = ACTIONS(2023), }, [432] = { + [sym_cell_path] = STATE(628), + [sym_path] = STATE(575), [sym_comment] = STATE(432), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2025), + [anon_sym_alias] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_let_DASHenv] = ACTIONS(2025), + [anon_sym_mut] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [aux_sym_cmd_identifier_token1] = ACTIONS(2025), + [aux_sym_cmd_identifier_token2] = ACTIONS(2025), + [aux_sym_cmd_identifier_token3] = ACTIONS(2025), + [aux_sym_cmd_identifier_token4] = ACTIONS(2025), + [aux_sym_cmd_identifier_token5] = ACTIONS(2025), + [aux_sym_cmd_identifier_token6] = ACTIONS(2025), + [aux_sym_cmd_identifier_token7] = ACTIONS(2025), + [aux_sym_cmd_identifier_token8] = ACTIONS(2025), + [aux_sym_cmd_identifier_token9] = ACTIONS(2025), + [aux_sym_cmd_identifier_token10] = ACTIONS(2025), + [aux_sym_cmd_identifier_token11] = ACTIONS(2025), + [aux_sym_cmd_identifier_token12] = ACTIONS(2025), + [aux_sym_cmd_identifier_token13] = ACTIONS(2025), + [aux_sym_cmd_identifier_token14] = ACTIONS(2025), + [aux_sym_cmd_identifier_token15] = ACTIONS(2025), + [aux_sym_cmd_identifier_token16] = ACTIONS(2025), + [aux_sym_cmd_identifier_token17] = ACTIONS(2025), + [aux_sym_cmd_identifier_token18] = ACTIONS(2025), + [aux_sym_cmd_identifier_token19] = ACTIONS(2025), + [aux_sym_cmd_identifier_token20] = ACTIONS(2025), + [aux_sym_cmd_identifier_token21] = ACTIONS(2025), + [aux_sym_cmd_identifier_token22] = ACTIONS(2025), + [aux_sym_cmd_identifier_token23] = ACTIONS(2025), + [aux_sym_cmd_identifier_token24] = ACTIONS(2025), + [aux_sym_cmd_identifier_token25] = ACTIONS(2025), + [aux_sym_cmd_identifier_token26] = ACTIONS(2025), + [aux_sym_cmd_identifier_token27] = ACTIONS(2025), + [aux_sym_cmd_identifier_token28] = ACTIONS(2025), + [aux_sym_cmd_identifier_token29] = ACTIONS(2025), + [aux_sym_cmd_identifier_token30] = ACTIONS(2025), + [aux_sym_cmd_identifier_token31] = ACTIONS(2025), + [aux_sym_cmd_identifier_token32] = ACTIONS(2025), + [aux_sym_cmd_identifier_token33] = ACTIONS(2025), + [aux_sym_cmd_identifier_token34] = ACTIONS(2025), + [aux_sym_cmd_identifier_token35] = ACTIONS(2025), + [aux_sym_cmd_identifier_token36] = ACTIONS(2025), + [aux_sym_cmd_identifier_token37] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2025), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2025), + [anon_sym_export_DASHenv] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_module] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2025), + [anon_sym_DASH2] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_in2] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_make] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_do] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_else] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [anon_sym_catch] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_source] = ACTIONS(2025), + [anon_sym_source_DASHenv] = ACTIONS(2025), + [anon_sym_register] = ACTIONS(2025), + [anon_sym_hide] = ACTIONS(2025), + [anon_sym_hide_DASHenv] = ACTIONS(2025), + [anon_sym_overlay] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(2025), + [anon_sym_PLUS2] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2025), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [aux_sym__val_number_token4] = ACTIONS(2025), + [aux_sym__val_number_token5] = ACTIONS(2025), + [aux_sym__val_number_token6] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [sym__entry_separator] = ACTIONS(2027), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2027), }, [433] = { + [sym_cell_path] = STATE(629), + [sym_path] = STATE(575), [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), + [aux_sym_cell_path_repeat1] = STATE(452), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2029), + [aux_sym_cmd_identifier_token3] = ACTIONS(2029), + [aux_sym_cmd_identifier_token4] = ACTIONS(2029), + [aux_sym_cmd_identifier_token5] = ACTIONS(2029), + [aux_sym_cmd_identifier_token6] = ACTIONS(2029), + [aux_sym_cmd_identifier_token7] = ACTIONS(2029), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2029), + [aux_sym_cmd_identifier_token11] = ACTIONS(2029), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2029), + [aux_sym_cmd_identifier_token17] = ACTIONS(2029), + [aux_sym_cmd_identifier_token18] = ACTIONS(2029), + [aux_sym_cmd_identifier_token19] = ACTIONS(2029), + [aux_sym_cmd_identifier_token20] = ACTIONS(2029), + [aux_sym_cmd_identifier_token21] = ACTIONS(2029), + [aux_sym_cmd_identifier_token22] = ACTIONS(2029), + [aux_sym_cmd_identifier_token23] = ACTIONS(2029), + [aux_sym_cmd_identifier_token24] = ACTIONS(2029), + [aux_sym_cmd_identifier_token25] = ACTIONS(2029), + [aux_sym_cmd_identifier_token26] = ACTIONS(2029), + [aux_sym_cmd_identifier_token27] = ACTIONS(2029), + [aux_sym_cmd_identifier_token28] = ACTIONS(2029), + [aux_sym_cmd_identifier_token29] = ACTIONS(2029), + [aux_sym_cmd_identifier_token30] = ACTIONS(2029), + [aux_sym_cmd_identifier_token31] = ACTIONS(2029), + [aux_sym_cmd_identifier_token32] = ACTIONS(2029), + [aux_sym_cmd_identifier_token33] = ACTIONS(2029), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2029), + [aux_sym_cmd_identifier_token36] = ACTIONS(2029), + [aux_sym_cmd_identifier_token37] = ACTIONS(2029), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2029), + [aux_sym_cmd_identifier_token40] = ACTIONS(2029), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_DASH2] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in2] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_PLUS2] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2029), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2029), + [aux_sym__val_number_decimal_token3] = ACTIONS(2029), + [aux_sym__val_number_decimal_token4] = ACTIONS(2029), + [aux_sym__val_number_token1] = ACTIONS(2029), + [aux_sym__val_number_token2] = ACTIONS(2029), + [aux_sym__val_number_token3] = ACTIONS(2029), + [aux_sym__val_number_token4] = ACTIONS(2029), + [aux_sym__val_number_token5] = ACTIONS(2029), + [aux_sym__val_number_token6] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [sym__str_single_quotes] = ACTIONS(2029), + [sym__str_back_ticks] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2029), + [sym__entry_separator] = ACTIONS(2031), + [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2031), }, [434] = { [sym_comment] = STATE(434), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), }, [435] = { [sym_comment] = STATE(435), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, [436] = { + [sym_cell_path] = STATE(638), + [sym_path] = STATE(575), [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(1830), - [anon_sym_alias] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_let_DASHenv] = ACTIONS(1830), - [anon_sym_mut] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [aux_sym_cmd_identifier_token1] = ACTIONS(1830), - [aux_sym_cmd_identifier_token2] = ACTIONS(1838), - [aux_sym_cmd_identifier_token3] = ACTIONS(1838), - [aux_sym_cmd_identifier_token4] = ACTIONS(1838), - [aux_sym_cmd_identifier_token5] = ACTIONS(1838), - [aux_sym_cmd_identifier_token6] = ACTIONS(1838), - [aux_sym_cmd_identifier_token7] = ACTIONS(1838), - [aux_sym_cmd_identifier_token8] = ACTIONS(1830), - [aux_sym_cmd_identifier_token9] = ACTIONS(1830), - [aux_sym_cmd_identifier_token10] = ACTIONS(1838), - [aux_sym_cmd_identifier_token11] = ACTIONS(1838), - [aux_sym_cmd_identifier_token12] = ACTIONS(1830), - [aux_sym_cmd_identifier_token13] = ACTIONS(1830), - [aux_sym_cmd_identifier_token14] = ACTIONS(1830), - [aux_sym_cmd_identifier_token15] = ACTIONS(1830), - [aux_sym_cmd_identifier_token16] = ACTIONS(1838), - [aux_sym_cmd_identifier_token17] = ACTIONS(1838), - [aux_sym_cmd_identifier_token18] = ACTIONS(1838), - [aux_sym_cmd_identifier_token19] = ACTIONS(1838), - [aux_sym_cmd_identifier_token20] = ACTIONS(1838), - [aux_sym_cmd_identifier_token21] = ACTIONS(1838), - [aux_sym_cmd_identifier_token22] = ACTIONS(1838), - [aux_sym_cmd_identifier_token23] = ACTIONS(1838), - [aux_sym_cmd_identifier_token24] = ACTIONS(1838), - [aux_sym_cmd_identifier_token25] = ACTIONS(1838), - [aux_sym_cmd_identifier_token26] = ACTIONS(1838), - [aux_sym_cmd_identifier_token27] = ACTIONS(1838), - [aux_sym_cmd_identifier_token28] = ACTIONS(1838), - [aux_sym_cmd_identifier_token29] = ACTIONS(1838), - [aux_sym_cmd_identifier_token30] = ACTIONS(1838), - [aux_sym_cmd_identifier_token31] = ACTIONS(1838), - [aux_sym_cmd_identifier_token32] = ACTIONS(1838), - [aux_sym_cmd_identifier_token33] = ACTIONS(1838), - [aux_sym_cmd_identifier_token34] = ACTIONS(1830), - [aux_sym_cmd_identifier_token35] = ACTIONS(1838), - [aux_sym_cmd_identifier_token36] = ACTIONS(1838), - [aux_sym_cmd_identifier_token37] = ACTIONS(1838), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1838), - [aux_sym_cmd_identifier_token40] = ACTIONS(1838), - [anon_sym_def] = ACTIONS(1830), - [anon_sym_export_DASHenv] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_error] = ACTIONS(1830), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_in2] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_make] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_catch] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_source] = ACTIONS(1830), - [anon_sym_source_DASHenv] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_hide] = ACTIONS(1830), - [anon_sym_hide_DASHenv] = ACTIONS(1830), - [anon_sym_overlay] = ACTIONS(1830), - [anon_sym_as] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1838), - [anon_sym_DOT_DOT2] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [aux_sym__val_number_token4] = ACTIONS(1830), - [aux_sym__val_number_token5] = ACTIONS(1830), - [aux_sym__val_number_token6] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1838), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1838), - }, - [437] = { - [sym_expr_parenthesized] = STATE(4520), - [sym__spread_parenthesized] = STATE(4974), - [sym_val_range] = STATE(4975), - [sym__val_range] = STATE(8671), - [sym__val_range_with_end] = STATE(8119), - [sym__value] = STATE(4975), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4583), - [sym__spread_variable] = STATE(4976), - [sym_val_variable] = STATE(4532), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4283), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym__spread_list] = STATE(4974), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym__cmd_arg] = STATE(5057), - [sym_redirection] = STATE(4979), - [sym_short_flag] = STATE(4980), - [sym_long_flag] = STATE(4980), - [sym_unquoted] = STATE(4666), - [sym__unquoted_with_expr] = STATE(4984), - [sym__unquoted_anonymous_prefix] = STATE(7799), - [sym_comment] = STATE(437), - [sym__newline] = ACTIONS(1969), - [sym__space] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_err_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_GT_PIPE] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), - [anon_sym_DOT_DOT_LT] = ACTIONS(1989), - [anon_sym_null] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2005), - [aux_sym__val_number_token5] = ACTIONS(2005), - [aux_sym__val_number_token6] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2027), - }, - [438] = { - [sym_comment] = STATE(438), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_alias] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_let_DASHenv] = ACTIONS(1840), - [anon_sym_mut] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [aux_sym_cmd_identifier_token1] = ACTIONS(1840), - [aux_sym_cmd_identifier_token2] = ACTIONS(1848), - [aux_sym_cmd_identifier_token3] = ACTIONS(1848), - [aux_sym_cmd_identifier_token4] = ACTIONS(1848), - [aux_sym_cmd_identifier_token5] = ACTIONS(1848), - [aux_sym_cmd_identifier_token6] = ACTIONS(1848), - [aux_sym_cmd_identifier_token7] = ACTIONS(1848), - [aux_sym_cmd_identifier_token8] = ACTIONS(1840), - [aux_sym_cmd_identifier_token9] = ACTIONS(1840), - [aux_sym_cmd_identifier_token10] = ACTIONS(1848), - [aux_sym_cmd_identifier_token11] = ACTIONS(1848), - [aux_sym_cmd_identifier_token12] = ACTIONS(1840), - [aux_sym_cmd_identifier_token13] = ACTIONS(1840), - [aux_sym_cmd_identifier_token14] = ACTIONS(1840), - [aux_sym_cmd_identifier_token15] = ACTIONS(1840), - [aux_sym_cmd_identifier_token16] = ACTIONS(1848), - [aux_sym_cmd_identifier_token17] = ACTIONS(1848), - [aux_sym_cmd_identifier_token18] = ACTIONS(1848), - [aux_sym_cmd_identifier_token19] = ACTIONS(1848), - [aux_sym_cmd_identifier_token20] = ACTIONS(1848), - [aux_sym_cmd_identifier_token21] = ACTIONS(1848), - [aux_sym_cmd_identifier_token22] = ACTIONS(1848), - [aux_sym_cmd_identifier_token23] = ACTIONS(1848), - [aux_sym_cmd_identifier_token24] = ACTIONS(1848), - [aux_sym_cmd_identifier_token25] = ACTIONS(1848), - [aux_sym_cmd_identifier_token26] = ACTIONS(1848), - [aux_sym_cmd_identifier_token27] = ACTIONS(1848), - [aux_sym_cmd_identifier_token28] = ACTIONS(1848), - [aux_sym_cmd_identifier_token29] = ACTIONS(1848), - [aux_sym_cmd_identifier_token30] = ACTIONS(1848), - [aux_sym_cmd_identifier_token31] = ACTIONS(1848), - [aux_sym_cmd_identifier_token32] = ACTIONS(1848), - [aux_sym_cmd_identifier_token33] = ACTIONS(1848), - [aux_sym_cmd_identifier_token34] = ACTIONS(1840), - [aux_sym_cmd_identifier_token35] = ACTIONS(1848), - [aux_sym_cmd_identifier_token36] = ACTIONS(1848), - [aux_sym_cmd_identifier_token37] = ACTIONS(1848), - [aux_sym_cmd_identifier_token38] = ACTIONS(1840), - [aux_sym_cmd_identifier_token39] = ACTIONS(1848), - [aux_sym_cmd_identifier_token40] = ACTIONS(1848), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_export_DASHenv] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1848), - [anon_sym_error] = ACTIONS(1840), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_in2] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_make] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_do] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_else] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_catch] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_source] = ACTIONS(1840), - [anon_sym_source_DASHenv] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_hide] = ACTIONS(1840), - [anon_sym_hide_DASHenv] = ACTIONS(1840), - [anon_sym_overlay] = ACTIONS(1840), - [anon_sym_as] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), - [anon_sym_DOT_DOT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [aux_sym__val_number_token4] = ACTIONS(1840), - [aux_sym__val_number_token5] = ACTIONS(1840), - [aux_sym__val_number_token6] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1848), - }, - [439] = { - [sym_cell_path] = STATE(668), - [sym_path] = STATE(595), - [sym_comment] = STATE(439), - [aux_sym_cell_path_repeat1] = STATE(470), + [aux_sym_cell_path_repeat1] = STATE(452), [anon_sym_export] = ACTIONS(2033), [anon_sym_alias] = ACTIONS(2033), [anon_sym_let] = ACTIONS(2033), @@ -133759,7 +128111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2033), [anon_sym_PLUS2] = ACTIONS(2033), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), [aux_sym__val_number_decimal_token1] = ACTIONS(2033), [aux_sym__val_number_decimal_token2] = ACTIONS(2033), @@ -133776,635 +128127,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2033), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), [sym__entry_separator] = ACTIONS(2035), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2035), }, - [440] = { - [sym_cell_path] = STATE(685), - [sym_path] = STATE(595), - [sym_comment] = STATE(440), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(2037), - [anon_sym_alias] = ACTIONS(2037), - [anon_sym_let] = ACTIONS(2037), - [anon_sym_let_DASHenv] = ACTIONS(2037), - [anon_sym_mut] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2037), - [aux_sym_cmd_identifier_token1] = ACTIONS(2037), - [aux_sym_cmd_identifier_token2] = ACTIONS(2037), - [aux_sym_cmd_identifier_token3] = ACTIONS(2037), - [aux_sym_cmd_identifier_token4] = ACTIONS(2037), - [aux_sym_cmd_identifier_token5] = ACTIONS(2037), - [aux_sym_cmd_identifier_token6] = ACTIONS(2037), - [aux_sym_cmd_identifier_token7] = ACTIONS(2037), - [aux_sym_cmd_identifier_token8] = ACTIONS(2037), - [aux_sym_cmd_identifier_token9] = ACTIONS(2037), - [aux_sym_cmd_identifier_token10] = ACTIONS(2037), - [aux_sym_cmd_identifier_token11] = ACTIONS(2037), - [aux_sym_cmd_identifier_token12] = ACTIONS(2037), - [aux_sym_cmd_identifier_token13] = ACTIONS(2037), - [aux_sym_cmd_identifier_token14] = ACTIONS(2037), - [aux_sym_cmd_identifier_token15] = ACTIONS(2037), - [aux_sym_cmd_identifier_token16] = ACTIONS(2037), - [aux_sym_cmd_identifier_token17] = ACTIONS(2037), - [aux_sym_cmd_identifier_token18] = ACTIONS(2037), - [aux_sym_cmd_identifier_token19] = ACTIONS(2037), - [aux_sym_cmd_identifier_token20] = ACTIONS(2037), - [aux_sym_cmd_identifier_token21] = ACTIONS(2037), - [aux_sym_cmd_identifier_token22] = ACTIONS(2037), - [aux_sym_cmd_identifier_token23] = ACTIONS(2037), - [aux_sym_cmd_identifier_token24] = ACTIONS(2037), - [aux_sym_cmd_identifier_token25] = ACTIONS(2037), - [aux_sym_cmd_identifier_token26] = ACTIONS(2037), - [aux_sym_cmd_identifier_token27] = ACTIONS(2037), - [aux_sym_cmd_identifier_token28] = ACTIONS(2037), - [aux_sym_cmd_identifier_token29] = ACTIONS(2037), - [aux_sym_cmd_identifier_token30] = ACTIONS(2037), - [aux_sym_cmd_identifier_token31] = ACTIONS(2037), - [aux_sym_cmd_identifier_token32] = ACTIONS(2037), - [aux_sym_cmd_identifier_token33] = ACTIONS(2037), - [aux_sym_cmd_identifier_token34] = ACTIONS(2037), - [aux_sym_cmd_identifier_token35] = ACTIONS(2037), - [aux_sym_cmd_identifier_token36] = ACTIONS(2037), - [aux_sym_cmd_identifier_token37] = ACTIONS(2037), - [aux_sym_cmd_identifier_token38] = ACTIONS(2037), - [aux_sym_cmd_identifier_token39] = ACTIONS(2037), - [aux_sym_cmd_identifier_token40] = ACTIONS(2037), - [anon_sym_def] = ACTIONS(2037), - [anon_sym_export_DASHenv] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2037), - [anon_sym_module] = ACTIONS(2037), - [anon_sym_use] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_DOLLAR] = ACTIONS(2037), - [anon_sym_error] = ACTIONS(2037), - [anon_sym_DASH2] = ACTIONS(2037), - [anon_sym_break] = ACTIONS(2037), - [anon_sym_continue] = ACTIONS(2037), - [anon_sym_for] = ACTIONS(2037), - [anon_sym_in2] = ACTIONS(2037), - [anon_sym_loop] = ACTIONS(2037), - [anon_sym_make] = ACTIONS(2037), - [anon_sym_while] = ACTIONS(2037), - [anon_sym_do] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2037), - [anon_sym_else] = ACTIONS(2037), - [anon_sym_match] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_try] = ACTIONS(2037), - [anon_sym_catch] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2037), - [anon_sym_source] = ACTIONS(2037), - [anon_sym_source_DASHenv] = ACTIONS(2037), - [anon_sym_register] = ACTIONS(2037), - [anon_sym_hide] = ACTIONS(2037), - [anon_sym_hide_DASHenv] = ACTIONS(2037), - [anon_sym_overlay] = ACTIONS(2037), - [anon_sym_as] = ACTIONS(2037), - [anon_sym_PLUS2] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2037), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2037), - [aux_sym__val_number_decimal_token1] = ACTIONS(2037), - [aux_sym__val_number_decimal_token2] = ACTIONS(2037), - [aux_sym__val_number_decimal_token3] = ACTIONS(2037), - [aux_sym__val_number_decimal_token4] = ACTIONS(2037), - [aux_sym__val_number_token1] = ACTIONS(2037), - [aux_sym__val_number_token2] = ACTIONS(2037), - [aux_sym__val_number_token3] = ACTIONS(2037), - [aux_sym__val_number_token4] = ACTIONS(2037), - [aux_sym__val_number_token5] = ACTIONS(2037), - [aux_sym__val_number_token6] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2037), - [sym__str_single_quotes] = ACTIONS(2037), - [sym__str_back_ticks] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2037), - [sym__entry_separator] = ACTIONS(2039), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2039), - }, - [441] = { - [sym_cell_path] = STATE(669), - [sym_path] = STATE(595), - [sym_comment] = STATE(441), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_alias] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_let_DASHenv] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [aux_sym_cmd_identifier_token1] = ACTIONS(2041), - [aux_sym_cmd_identifier_token2] = ACTIONS(2041), - [aux_sym_cmd_identifier_token3] = ACTIONS(2041), - [aux_sym_cmd_identifier_token4] = ACTIONS(2041), - [aux_sym_cmd_identifier_token5] = ACTIONS(2041), - [aux_sym_cmd_identifier_token6] = ACTIONS(2041), - [aux_sym_cmd_identifier_token7] = ACTIONS(2041), - [aux_sym_cmd_identifier_token8] = ACTIONS(2041), - [aux_sym_cmd_identifier_token9] = ACTIONS(2041), - [aux_sym_cmd_identifier_token10] = ACTIONS(2041), - [aux_sym_cmd_identifier_token11] = ACTIONS(2041), - [aux_sym_cmd_identifier_token12] = ACTIONS(2041), - [aux_sym_cmd_identifier_token13] = ACTIONS(2041), - [aux_sym_cmd_identifier_token14] = ACTIONS(2041), - [aux_sym_cmd_identifier_token15] = ACTIONS(2041), - [aux_sym_cmd_identifier_token16] = ACTIONS(2041), - [aux_sym_cmd_identifier_token17] = ACTIONS(2041), - [aux_sym_cmd_identifier_token18] = ACTIONS(2041), - [aux_sym_cmd_identifier_token19] = ACTIONS(2041), - [aux_sym_cmd_identifier_token20] = ACTIONS(2041), - [aux_sym_cmd_identifier_token21] = ACTIONS(2041), - [aux_sym_cmd_identifier_token22] = ACTIONS(2041), - [aux_sym_cmd_identifier_token23] = ACTIONS(2041), - [aux_sym_cmd_identifier_token24] = ACTIONS(2041), - [aux_sym_cmd_identifier_token25] = ACTIONS(2041), - [aux_sym_cmd_identifier_token26] = ACTIONS(2041), - [aux_sym_cmd_identifier_token27] = ACTIONS(2041), - [aux_sym_cmd_identifier_token28] = ACTIONS(2041), - [aux_sym_cmd_identifier_token29] = ACTIONS(2041), - [aux_sym_cmd_identifier_token30] = ACTIONS(2041), - [aux_sym_cmd_identifier_token31] = ACTIONS(2041), - [aux_sym_cmd_identifier_token32] = ACTIONS(2041), - [aux_sym_cmd_identifier_token33] = ACTIONS(2041), - [aux_sym_cmd_identifier_token34] = ACTIONS(2041), - [aux_sym_cmd_identifier_token35] = ACTIONS(2041), - [aux_sym_cmd_identifier_token36] = ACTIONS(2041), - [aux_sym_cmd_identifier_token37] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2041), - [anon_sym_export_DASHenv] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_error] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_in2] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_make] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_source] = ACTIONS(2041), - [anon_sym_source_DASHenv] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_hide] = ACTIONS(2041), - [anon_sym_hide_DASHenv] = ACTIONS(2041), - [anon_sym_overlay] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [sym__entry_separator] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2043), - }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [443] = { - [sym_cell_path] = STATE(689), - [sym_path] = STATE(595), - [sym_comment] = STATE(443), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_alias] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_let_DASHenv] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [aux_sym_cmd_identifier_token1] = ACTIONS(2045), - [aux_sym_cmd_identifier_token2] = ACTIONS(2045), - [aux_sym_cmd_identifier_token3] = ACTIONS(2045), - [aux_sym_cmd_identifier_token4] = ACTIONS(2045), - [aux_sym_cmd_identifier_token5] = ACTIONS(2045), - [aux_sym_cmd_identifier_token6] = ACTIONS(2045), - [aux_sym_cmd_identifier_token7] = ACTIONS(2045), - [aux_sym_cmd_identifier_token8] = ACTIONS(2045), - [aux_sym_cmd_identifier_token9] = ACTIONS(2045), - [aux_sym_cmd_identifier_token10] = ACTIONS(2045), - [aux_sym_cmd_identifier_token11] = ACTIONS(2045), - [aux_sym_cmd_identifier_token12] = ACTIONS(2045), - [aux_sym_cmd_identifier_token13] = ACTIONS(2045), - [aux_sym_cmd_identifier_token14] = ACTIONS(2045), - [aux_sym_cmd_identifier_token15] = ACTIONS(2045), - [aux_sym_cmd_identifier_token16] = ACTIONS(2045), - [aux_sym_cmd_identifier_token17] = ACTIONS(2045), - [aux_sym_cmd_identifier_token18] = ACTIONS(2045), - [aux_sym_cmd_identifier_token19] = ACTIONS(2045), - [aux_sym_cmd_identifier_token20] = ACTIONS(2045), - [aux_sym_cmd_identifier_token21] = ACTIONS(2045), - [aux_sym_cmd_identifier_token22] = ACTIONS(2045), - [aux_sym_cmd_identifier_token23] = ACTIONS(2045), - [aux_sym_cmd_identifier_token24] = ACTIONS(2045), - [aux_sym_cmd_identifier_token25] = ACTIONS(2045), - [aux_sym_cmd_identifier_token26] = ACTIONS(2045), - [aux_sym_cmd_identifier_token27] = ACTIONS(2045), - [aux_sym_cmd_identifier_token28] = ACTIONS(2045), - [aux_sym_cmd_identifier_token29] = ACTIONS(2045), - [aux_sym_cmd_identifier_token30] = ACTIONS(2045), - [aux_sym_cmd_identifier_token31] = ACTIONS(2045), - [aux_sym_cmd_identifier_token32] = ACTIONS(2045), - [aux_sym_cmd_identifier_token33] = ACTIONS(2045), - [aux_sym_cmd_identifier_token34] = ACTIONS(2045), - [aux_sym_cmd_identifier_token35] = ACTIONS(2045), - [aux_sym_cmd_identifier_token36] = ACTIONS(2045), - [aux_sym_cmd_identifier_token37] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2045), - [anon_sym_export_DASHenv] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_module] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_error] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_in2] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_make] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_source] = ACTIONS(2045), - [anon_sym_source_DASHenv] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_hide] = ACTIONS(2045), - [anon_sym_hide_DASHenv] = ACTIONS(2045), - [anon_sym_overlay] = ACTIONS(2045), - [anon_sym_as] = ACTIONS(2045), - [anon_sym_PLUS2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), - [sym__entry_separator] = ACTIONS(2047), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), + [437] = { + [sym_cell_path] = STATE(765), + [sym_path] = STATE(631), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_alias] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_let_DASHenv] = ACTIONS(1929), + [anon_sym_mut] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [aux_sym_cmd_identifier_token1] = ACTIONS(1929), + [aux_sym_cmd_identifier_token2] = ACTIONS(1931), + [aux_sym_cmd_identifier_token3] = ACTIONS(1931), + [aux_sym_cmd_identifier_token4] = ACTIONS(1931), + [aux_sym_cmd_identifier_token5] = ACTIONS(1931), + [aux_sym_cmd_identifier_token6] = ACTIONS(1931), + [aux_sym_cmd_identifier_token7] = ACTIONS(1931), + [aux_sym_cmd_identifier_token8] = ACTIONS(1929), + [aux_sym_cmd_identifier_token9] = ACTIONS(1929), + [aux_sym_cmd_identifier_token10] = ACTIONS(1931), + [aux_sym_cmd_identifier_token11] = ACTIONS(1931), + [aux_sym_cmd_identifier_token12] = ACTIONS(1929), + [aux_sym_cmd_identifier_token13] = ACTIONS(1929), + [aux_sym_cmd_identifier_token14] = ACTIONS(1929), + [aux_sym_cmd_identifier_token15] = ACTIONS(1929), + [aux_sym_cmd_identifier_token16] = ACTIONS(1931), + [aux_sym_cmd_identifier_token17] = ACTIONS(1931), + [aux_sym_cmd_identifier_token18] = ACTIONS(1931), + [aux_sym_cmd_identifier_token19] = ACTIONS(1931), + [aux_sym_cmd_identifier_token20] = ACTIONS(1931), + [aux_sym_cmd_identifier_token21] = ACTIONS(1931), + [aux_sym_cmd_identifier_token22] = ACTIONS(1931), + [aux_sym_cmd_identifier_token23] = ACTIONS(1931), + [aux_sym_cmd_identifier_token24] = ACTIONS(1931), + [aux_sym_cmd_identifier_token25] = ACTIONS(1931), + [aux_sym_cmd_identifier_token26] = ACTIONS(1931), + [aux_sym_cmd_identifier_token27] = ACTIONS(1931), + [aux_sym_cmd_identifier_token28] = ACTIONS(1931), + [aux_sym_cmd_identifier_token29] = ACTIONS(1931), + [aux_sym_cmd_identifier_token30] = ACTIONS(1931), + [aux_sym_cmd_identifier_token31] = ACTIONS(1931), + [aux_sym_cmd_identifier_token32] = ACTIONS(1931), + [aux_sym_cmd_identifier_token33] = ACTIONS(1931), + [aux_sym_cmd_identifier_token34] = ACTIONS(1929), + [aux_sym_cmd_identifier_token35] = ACTIONS(1931), + [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [aux_sym_cmd_identifier_token37] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1929), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1929), + [anon_sym_export_DASHenv] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1929), + [anon_sym_DASH2] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_in2] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_make] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_do] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1929), + [anon_sym_catch] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_source] = ACTIONS(1929), + [anon_sym_source_DASHenv] = ACTIONS(1929), + [anon_sym_register] = ACTIONS(1929), + [anon_sym_hide] = ACTIONS(1929), + [anon_sym_hide_DASHenv] = ACTIONS(1929), + [anon_sym_overlay] = ACTIONS(1929), + [anon_sym_as] = ACTIONS(1929), + [anon_sym_PLUS2] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1929), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [aux_sym__val_number_token4] = ACTIONS(1929), + [aux_sym__val_number_token5] = ACTIONS(1929), + [aux_sym__val_number_token6] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1931), }, - [444] = { - [sym_cell_path] = STATE(670), - [sym_path] = STATE(595), - [sym_comment] = STATE(444), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_alias] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_let_DASHenv] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [aux_sym_cmd_identifier_token1] = ACTIONS(2049), - [aux_sym_cmd_identifier_token2] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2049), - [aux_sym_cmd_identifier_token4] = ACTIONS(2049), - [aux_sym_cmd_identifier_token5] = ACTIONS(2049), - [aux_sym_cmd_identifier_token6] = ACTIONS(2049), - [aux_sym_cmd_identifier_token7] = ACTIONS(2049), - [aux_sym_cmd_identifier_token8] = ACTIONS(2049), - [aux_sym_cmd_identifier_token9] = ACTIONS(2049), - [aux_sym_cmd_identifier_token10] = ACTIONS(2049), - [aux_sym_cmd_identifier_token11] = ACTIONS(2049), - [aux_sym_cmd_identifier_token12] = ACTIONS(2049), - [aux_sym_cmd_identifier_token13] = ACTIONS(2049), - [aux_sym_cmd_identifier_token14] = ACTIONS(2049), - [aux_sym_cmd_identifier_token15] = ACTIONS(2049), - [aux_sym_cmd_identifier_token16] = ACTIONS(2049), - [aux_sym_cmd_identifier_token17] = ACTIONS(2049), - [aux_sym_cmd_identifier_token18] = ACTIONS(2049), - [aux_sym_cmd_identifier_token19] = ACTIONS(2049), - [aux_sym_cmd_identifier_token20] = ACTIONS(2049), - [aux_sym_cmd_identifier_token21] = ACTIONS(2049), - [aux_sym_cmd_identifier_token22] = ACTIONS(2049), - [aux_sym_cmd_identifier_token23] = ACTIONS(2049), - [aux_sym_cmd_identifier_token24] = ACTIONS(2049), - [aux_sym_cmd_identifier_token25] = ACTIONS(2049), - [aux_sym_cmd_identifier_token26] = ACTIONS(2049), - [aux_sym_cmd_identifier_token27] = ACTIONS(2049), - [aux_sym_cmd_identifier_token28] = ACTIONS(2049), - [aux_sym_cmd_identifier_token29] = ACTIONS(2049), - [aux_sym_cmd_identifier_token30] = ACTIONS(2049), - [aux_sym_cmd_identifier_token31] = ACTIONS(2049), - [aux_sym_cmd_identifier_token32] = ACTIONS(2049), - [aux_sym_cmd_identifier_token33] = ACTIONS(2049), - [aux_sym_cmd_identifier_token34] = ACTIONS(2049), - [aux_sym_cmd_identifier_token35] = ACTIONS(2049), - [aux_sym_cmd_identifier_token36] = ACTIONS(2049), - [aux_sym_cmd_identifier_token37] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2049), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2049), - [anon_sym_export_DASHenv] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_in2] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_make] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_source] = ACTIONS(2049), - [anon_sym_source_DASHenv] = ACTIONS(2049), - [anon_sym_register] = ACTIONS(2049), - [anon_sym_hide] = ACTIONS(2049), - [anon_sym_hide_DASHenv] = ACTIONS(2049), - [anon_sym_overlay] = ACTIONS(2049), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_PLUS2] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [aux_sym__val_number_token4] = ACTIONS(2049), - [aux_sym__val_number_token5] = ACTIONS(2049), - [aux_sym__val_number_token6] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), - [sym__entry_separator] = ACTIONS(2051), + [438] = { + [sym_comment] = STATE(438), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1771), + [aux_sym_cmd_identifier_token3] = ACTIONS(1771), + [aux_sym_cmd_identifier_token4] = ACTIONS(1771), + [aux_sym_cmd_identifier_token5] = ACTIONS(1771), + [aux_sym_cmd_identifier_token6] = ACTIONS(1771), + [aux_sym_cmd_identifier_token7] = ACTIONS(1771), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1771), + [aux_sym_cmd_identifier_token17] = ACTIONS(1771), + [aux_sym_cmd_identifier_token18] = ACTIONS(1771), + [aux_sym_cmd_identifier_token19] = ACTIONS(1771), + [aux_sym_cmd_identifier_token20] = ACTIONS(1771), + [aux_sym_cmd_identifier_token21] = ACTIONS(1771), + [aux_sym_cmd_identifier_token22] = ACTIONS(1771), + [aux_sym_cmd_identifier_token23] = ACTIONS(1771), + [aux_sym_cmd_identifier_token24] = ACTIONS(1771), + [aux_sym_cmd_identifier_token25] = ACTIONS(1771), + [aux_sym_cmd_identifier_token26] = ACTIONS(1771), + [aux_sym_cmd_identifier_token27] = ACTIONS(1771), + [aux_sym_cmd_identifier_token28] = ACTIONS(1771), + [aux_sym_cmd_identifier_token29] = ACTIONS(1771), + [aux_sym_cmd_identifier_token30] = ACTIONS(1771), + [aux_sym_cmd_identifier_token31] = ACTIONS(1771), + [aux_sym_cmd_identifier_token32] = ACTIONS(1771), + [aux_sym_cmd_identifier_token33] = ACTIONS(1771), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1771), + [aux_sym_cmd_identifier_token36] = ACTIONS(1771), + [aux_sym_cmd_identifier_token37] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [sym__entry_separator] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2051), + [sym_raw_string_begin] = ACTIONS(1773), }, - [445] = { - [sym_cell_path] = STATE(677), - [sym_path] = STATE(595), - [sym_comment] = STATE(445), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(2053), - [anon_sym_alias] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_let_DASHenv] = ACTIONS(2053), - [anon_sym_mut] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [aux_sym_cmd_identifier_token1] = ACTIONS(2053), - [aux_sym_cmd_identifier_token2] = ACTIONS(2053), - [aux_sym_cmd_identifier_token3] = ACTIONS(2053), - [aux_sym_cmd_identifier_token4] = ACTIONS(2053), - [aux_sym_cmd_identifier_token5] = ACTIONS(2053), - [aux_sym_cmd_identifier_token6] = ACTIONS(2053), - [aux_sym_cmd_identifier_token7] = ACTIONS(2053), - [aux_sym_cmd_identifier_token8] = ACTIONS(2053), - [aux_sym_cmd_identifier_token9] = ACTIONS(2053), - [aux_sym_cmd_identifier_token10] = ACTIONS(2053), - [aux_sym_cmd_identifier_token11] = ACTIONS(2053), - [aux_sym_cmd_identifier_token12] = ACTIONS(2053), - [aux_sym_cmd_identifier_token13] = ACTIONS(2053), - [aux_sym_cmd_identifier_token14] = ACTIONS(2053), - [aux_sym_cmd_identifier_token15] = ACTIONS(2053), - [aux_sym_cmd_identifier_token16] = ACTIONS(2053), - [aux_sym_cmd_identifier_token17] = ACTIONS(2053), - [aux_sym_cmd_identifier_token18] = ACTIONS(2053), - [aux_sym_cmd_identifier_token19] = ACTIONS(2053), - [aux_sym_cmd_identifier_token20] = ACTIONS(2053), - [aux_sym_cmd_identifier_token21] = ACTIONS(2053), - [aux_sym_cmd_identifier_token22] = ACTIONS(2053), - [aux_sym_cmd_identifier_token23] = ACTIONS(2053), - [aux_sym_cmd_identifier_token24] = ACTIONS(2053), - [aux_sym_cmd_identifier_token25] = ACTIONS(2053), - [aux_sym_cmd_identifier_token26] = ACTIONS(2053), - [aux_sym_cmd_identifier_token27] = ACTIONS(2053), - [aux_sym_cmd_identifier_token28] = ACTIONS(2053), - [aux_sym_cmd_identifier_token29] = ACTIONS(2053), - [aux_sym_cmd_identifier_token30] = ACTIONS(2053), - [aux_sym_cmd_identifier_token31] = ACTIONS(2053), - [aux_sym_cmd_identifier_token32] = ACTIONS(2053), - [aux_sym_cmd_identifier_token33] = ACTIONS(2053), - [aux_sym_cmd_identifier_token34] = ACTIONS(2053), - [aux_sym_cmd_identifier_token35] = ACTIONS(2053), - [aux_sym_cmd_identifier_token36] = ACTIONS(2053), - [aux_sym_cmd_identifier_token37] = ACTIONS(2053), - [aux_sym_cmd_identifier_token38] = ACTIONS(2053), - [aux_sym_cmd_identifier_token39] = ACTIONS(2053), - [aux_sym_cmd_identifier_token40] = ACTIONS(2053), - [anon_sym_def] = ACTIONS(2053), - [anon_sym_export_DASHenv] = ACTIONS(2053), - [anon_sym_extern] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2053), - [anon_sym_error] = ACTIONS(2053), - [anon_sym_DASH2] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_in2] = ACTIONS(2053), - [anon_sym_loop] = ACTIONS(2053), - [anon_sym_make] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_else] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_source] = ACTIONS(2053), - [anon_sym_source_DASHenv] = ACTIONS(2053), - [anon_sym_register] = ACTIONS(2053), - [anon_sym_hide] = ACTIONS(2053), - [anon_sym_hide_DASHenv] = ACTIONS(2053), - [anon_sym_overlay] = ACTIONS(2053), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [aux_sym__val_number_token4] = ACTIONS(2053), - [aux_sym__val_number_token5] = ACTIONS(2053), - [aux_sym__val_number_token6] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), - [sym__entry_separator] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2055), + [439] = { + [sym_cell_path] = STATE(750), + [sym_path] = STATE(631), + [sym_comment] = STATE(439), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [aux_sym_cmd_identifier_token37] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in2] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1945), + [aux_sym__val_number_token5] = ACTIONS(1945), + [aux_sym__val_number_token6] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1947), }, - [446] = { - [sym_comment] = STATE(446), + [440] = { + [sym_comment] = STATE(440), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -134456,7 +128493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1771), [anon_sym_module] = ACTIONS(1771), [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), [anon_sym_DOLLAR] = ACTIONS(1773), [anon_sym_error] = ACTIONS(1771), [anon_sym_DASH2] = ACTIONS(1771), @@ -134482,12 +128519,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1771), [anon_sym_overlay] = ACTIONS(1771), [anon_sym_as] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_PLUS2] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), [anon_sym_DOT_DOT2] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(2041), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1773), @@ -134503,429 +128540,838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1773), [sym__str_back_ticks] = ACTIONS(1773), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, + [441] = { + [sym_cell_path] = STATE(761), + [sym_path] = STATE(631), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), + }, + [442] = { + [sym_comment] = STATE(442), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), + }, + [443] = { + [sym_comment] = STATE(443), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), + }, + [444] = { + [sym_comment] = STATE(444), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [aux_sym__immediate_decimal_token2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [445] = { + [sym_comment] = STATE(445), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_alias] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_let_DASHenv] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [aux_sym_cmd_identifier_token1] = ACTIONS(1717), + [aux_sym_cmd_identifier_token2] = ACTIONS(1717), + [aux_sym_cmd_identifier_token3] = ACTIONS(1717), + [aux_sym_cmd_identifier_token4] = ACTIONS(1717), + [aux_sym_cmd_identifier_token5] = ACTIONS(1717), + [aux_sym_cmd_identifier_token6] = ACTIONS(1717), + [aux_sym_cmd_identifier_token7] = ACTIONS(1717), + [aux_sym_cmd_identifier_token8] = ACTIONS(1717), + [aux_sym_cmd_identifier_token9] = ACTIONS(1717), + [aux_sym_cmd_identifier_token10] = ACTIONS(1717), + [aux_sym_cmd_identifier_token11] = ACTIONS(1717), + [aux_sym_cmd_identifier_token12] = ACTIONS(1717), + [aux_sym_cmd_identifier_token13] = ACTIONS(1717), + [aux_sym_cmd_identifier_token14] = ACTIONS(1717), + [aux_sym_cmd_identifier_token15] = ACTIONS(1717), + [aux_sym_cmd_identifier_token16] = ACTIONS(1717), + [aux_sym_cmd_identifier_token17] = ACTIONS(1717), + [aux_sym_cmd_identifier_token18] = ACTIONS(1717), + [aux_sym_cmd_identifier_token19] = ACTIONS(1717), + [aux_sym_cmd_identifier_token20] = ACTIONS(1717), + [aux_sym_cmd_identifier_token21] = ACTIONS(1717), + [aux_sym_cmd_identifier_token22] = ACTIONS(1717), + [aux_sym_cmd_identifier_token23] = ACTIONS(1717), + [aux_sym_cmd_identifier_token24] = ACTIONS(1717), + [aux_sym_cmd_identifier_token25] = ACTIONS(1717), + [aux_sym_cmd_identifier_token26] = ACTIONS(1717), + [aux_sym_cmd_identifier_token27] = ACTIONS(1717), + [aux_sym_cmd_identifier_token28] = ACTIONS(1717), + [aux_sym_cmd_identifier_token29] = ACTIONS(1717), + [aux_sym_cmd_identifier_token30] = ACTIONS(1717), + [aux_sym_cmd_identifier_token31] = ACTIONS(1717), + [aux_sym_cmd_identifier_token32] = ACTIONS(1717), + [aux_sym_cmd_identifier_token33] = ACTIONS(1717), + [aux_sym_cmd_identifier_token34] = ACTIONS(1717), + [aux_sym_cmd_identifier_token35] = ACTIONS(1717), + [aux_sym_cmd_identifier_token36] = ACTIONS(1717), + [aux_sym_cmd_identifier_token37] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_export_DASHenv] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_in2] = ACTIONS(1717), + [anon_sym_loop] = ACTIONS(1717), + [anon_sym_make] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_catch] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_source] = ACTIONS(1717), + [anon_sym_source_DASHenv] = ACTIONS(1717), + [anon_sym_register] = ACTIONS(1717), + [anon_sym_hide] = ACTIONS(1717), + [anon_sym_hide_DASHenv] = ACTIONS(1717), + [anon_sym_overlay] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [aux_sym__val_number_token4] = ACTIONS(1717), + [aux_sym__val_number_token5] = ACTIONS(1717), + [aux_sym__val_number_token6] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [sym__entry_separator] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1719), + }, + [446] = { + [sym_comment] = STATE(446), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2049), + }, [447] = { - [sym_cell_path] = STATE(649), - [sym_path] = STATE(595), [sym_comment] = STATE(447), - [aux_sym_cell_path_repeat1] = STATE(470), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2057), - [aux_sym_cmd_identifier_token3] = ACTIONS(2057), - [aux_sym_cmd_identifier_token4] = ACTIONS(2057), - [aux_sym_cmd_identifier_token5] = ACTIONS(2057), - [aux_sym_cmd_identifier_token6] = ACTIONS(2057), - [aux_sym_cmd_identifier_token7] = ACTIONS(2057), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2057), - [aux_sym_cmd_identifier_token11] = ACTIONS(2057), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2057), - [aux_sym_cmd_identifier_token17] = ACTIONS(2057), - [aux_sym_cmd_identifier_token18] = ACTIONS(2057), - [aux_sym_cmd_identifier_token19] = ACTIONS(2057), - [aux_sym_cmd_identifier_token20] = ACTIONS(2057), - [aux_sym_cmd_identifier_token21] = ACTIONS(2057), - [aux_sym_cmd_identifier_token22] = ACTIONS(2057), - [aux_sym_cmd_identifier_token23] = ACTIONS(2057), - [aux_sym_cmd_identifier_token24] = ACTIONS(2057), - [aux_sym_cmd_identifier_token25] = ACTIONS(2057), - [aux_sym_cmd_identifier_token26] = ACTIONS(2057), - [aux_sym_cmd_identifier_token27] = ACTIONS(2057), - [aux_sym_cmd_identifier_token28] = ACTIONS(2057), - [aux_sym_cmd_identifier_token29] = ACTIONS(2057), - [aux_sym_cmd_identifier_token30] = ACTIONS(2057), - [aux_sym_cmd_identifier_token31] = ACTIONS(2057), - [aux_sym_cmd_identifier_token32] = ACTIONS(2057), - [aux_sym_cmd_identifier_token33] = ACTIONS(2057), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2057), - [aux_sym_cmd_identifier_token36] = ACTIONS(2057), - [aux_sym_cmd_identifier_token37] = ACTIONS(2057), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2057), - [aux_sym_cmd_identifier_token40] = ACTIONS(2057), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_DOLLAR] = ACTIONS(2057), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2057), - [aux_sym__val_number_decimal_token3] = ACTIONS(2057), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2057), - [aux_sym__val_number_token2] = ACTIONS(2057), - [aux_sym__val_number_token3] = ACTIONS(2057), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2057), - [sym__str_single_quotes] = ACTIONS(2057), - [sym__str_back_ticks] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), - [sym__entry_separator] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [aux_sym_cmd_identifier_token37] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT_DOT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2051), + [aux_sym__val_number_decimal_token3] = ACTIONS(2051), + [aux_sym__val_number_decimal_token4] = ACTIONS(2051), + [aux_sym__val_number_token1] = ACTIONS(2051), + [aux_sym__val_number_token2] = ACTIONS(2051), + [aux_sym__val_number_token3] = ACTIONS(2051), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), + [sym__entry_separator] = ACTIONS(2053), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2059), + [sym_raw_string_begin] = ACTIONS(2053), }, [448] = { - [sym_path] = STATE(529), [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(448), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [aux_sym_cmd_identifier_token1] = ACTIONS(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(977), - [aux_sym_cmd_identifier_token3] = ACTIONS(977), - [aux_sym_cmd_identifier_token4] = ACTIONS(977), - [aux_sym_cmd_identifier_token5] = ACTIONS(977), - [aux_sym_cmd_identifier_token6] = ACTIONS(977), - [aux_sym_cmd_identifier_token7] = ACTIONS(977), - [aux_sym_cmd_identifier_token8] = ACTIONS(975), - [aux_sym_cmd_identifier_token9] = ACTIONS(975), - [aux_sym_cmd_identifier_token10] = ACTIONS(977), - [aux_sym_cmd_identifier_token11] = ACTIONS(977), - [aux_sym_cmd_identifier_token12] = ACTIONS(975), - [aux_sym_cmd_identifier_token13] = ACTIONS(975), - [aux_sym_cmd_identifier_token14] = ACTIONS(975), - [aux_sym_cmd_identifier_token15] = ACTIONS(975), - [aux_sym_cmd_identifier_token16] = ACTIONS(977), - [aux_sym_cmd_identifier_token17] = ACTIONS(977), - [aux_sym_cmd_identifier_token18] = ACTIONS(977), - [aux_sym_cmd_identifier_token19] = ACTIONS(977), - [aux_sym_cmd_identifier_token20] = ACTIONS(977), - [aux_sym_cmd_identifier_token21] = ACTIONS(977), - [aux_sym_cmd_identifier_token22] = ACTIONS(977), - [aux_sym_cmd_identifier_token23] = ACTIONS(977), - [aux_sym_cmd_identifier_token24] = ACTIONS(977), - [aux_sym_cmd_identifier_token25] = ACTIONS(977), - [aux_sym_cmd_identifier_token26] = ACTIONS(977), - [aux_sym_cmd_identifier_token27] = ACTIONS(977), - [aux_sym_cmd_identifier_token28] = ACTIONS(977), - [aux_sym_cmd_identifier_token29] = ACTIONS(977), - [aux_sym_cmd_identifier_token30] = ACTIONS(977), - [aux_sym_cmd_identifier_token31] = ACTIONS(977), - [aux_sym_cmd_identifier_token32] = ACTIONS(977), - [aux_sym_cmd_identifier_token33] = ACTIONS(977), - [aux_sym_cmd_identifier_token34] = ACTIONS(975), - [aux_sym_cmd_identifier_token35] = ACTIONS(977), - [aux_sym_cmd_identifier_token36] = ACTIONS(977), - [aux_sym_cmd_identifier_token37] = ACTIONS(977), - [aux_sym_cmd_identifier_token38] = ACTIONS(975), - [aux_sym_cmd_identifier_token39] = ACTIONS(977), - [aux_sym_cmd_identifier_token40] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), - [aux_sym_record_entry_token1] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [aux_sym_cmd_identifier_token1] = ACTIONS(2055), + [aux_sym_cmd_identifier_token2] = ACTIONS(2055), + [aux_sym_cmd_identifier_token3] = ACTIONS(2055), + [aux_sym_cmd_identifier_token4] = ACTIONS(2055), + [aux_sym_cmd_identifier_token5] = ACTIONS(2055), + [aux_sym_cmd_identifier_token6] = ACTIONS(2055), + [aux_sym_cmd_identifier_token7] = ACTIONS(2055), + [aux_sym_cmd_identifier_token8] = ACTIONS(2055), + [aux_sym_cmd_identifier_token9] = ACTIONS(2055), + [aux_sym_cmd_identifier_token10] = ACTIONS(2055), + [aux_sym_cmd_identifier_token11] = ACTIONS(2055), + [aux_sym_cmd_identifier_token12] = ACTIONS(2055), + [aux_sym_cmd_identifier_token13] = ACTIONS(2055), + [aux_sym_cmd_identifier_token14] = ACTIONS(2055), + [aux_sym_cmd_identifier_token15] = ACTIONS(2055), + [aux_sym_cmd_identifier_token16] = ACTIONS(2055), + [aux_sym_cmd_identifier_token17] = ACTIONS(2055), + [aux_sym_cmd_identifier_token18] = ACTIONS(2055), + [aux_sym_cmd_identifier_token19] = ACTIONS(2055), + [aux_sym_cmd_identifier_token20] = ACTIONS(2055), + [aux_sym_cmd_identifier_token21] = ACTIONS(2055), + [aux_sym_cmd_identifier_token22] = ACTIONS(2055), + [aux_sym_cmd_identifier_token23] = ACTIONS(2055), + [aux_sym_cmd_identifier_token24] = ACTIONS(2055), + [aux_sym_cmd_identifier_token25] = ACTIONS(2055), + [aux_sym_cmd_identifier_token26] = ACTIONS(2055), + [aux_sym_cmd_identifier_token27] = ACTIONS(2055), + [aux_sym_cmd_identifier_token28] = ACTIONS(2055), + [aux_sym_cmd_identifier_token29] = ACTIONS(2055), + [aux_sym_cmd_identifier_token30] = ACTIONS(2055), + [aux_sym_cmd_identifier_token31] = ACTIONS(2055), + [aux_sym_cmd_identifier_token32] = ACTIONS(2055), + [aux_sym_cmd_identifier_token33] = ACTIONS(2055), + [aux_sym_cmd_identifier_token34] = ACTIONS(2055), + [aux_sym_cmd_identifier_token35] = ACTIONS(2055), + [aux_sym_cmd_identifier_token36] = ACTIONS(2055), + [aux_sym_cmd_identifier_token37] = ACTIONS(2055), + [aux_sym_cmd_identifier_token38] = ACTIONS(2055), + [aux_sym_cmd_identifier_token39] = ACTIONS(2055), + [aux_sym_cmd_identifier_token40] = ACTIONS(2055), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_DASH2] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_in2] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_make] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_else] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_catch] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_PLUS2] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), + [anon_sym_DOT_DOT2] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2055), + [aux_sym__val_number_decimal_token3] = ACTIONS(2055), + [aux_sym__val_number_decimal_token4] = ACTIONS(2055), + [aux_sym__val_number_token1] = ACTIONS(2055), + [aux_sym__val_number_token2] = ACTIONS(2055), + [aux_sym__val_number_token3] = ACTIONS(2055), + [aux_sym__val_number_token4] = ACTIONS(2055), + [aux_sym__val_number_token5] = ACTIONS(2055), + [aux_sym__val_number_token6] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), + [sym__entry_separator] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2057), }, [449] = { + [sym_cell_path] = STATE(699), + [sym_path] = STATE(631), [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2064), - [aux_sym_cmd_identifier_token3] = ACTIONS(2064), - [aux_sym_cmd_identifier_token4] = ACTIONS(2064), - [aux_sym_cmd_identifier_token5] = ACTIONS(2064), - [aux_sym_cmd_identifier_token6] = ACTIONS(2064), - [aux_sym_cmd_identifier_token7] = ACTIONS(2064), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2064), - [aux_sym_cmd_identifier_token11] = ACTIONS(2064), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2064), - [aux_sym_cmd_identifier_token17] = ACTIONS(2064), - [aux_sym_cmd_identifier_token18] = ACTIONS(2064), - [aux_sym_cmd_identifier_token19] = ACTIONS(2064), - [aux_sym_cmd_identifier_token20] = ACTIONS(2064), - [aux_sym_cmd_identifier_token21] = ACTIONS(2064), - [aux_sym_cmd_identifier_token22] = ACTIONS(2064), - [aux_sym_cmd_identifier_token23] = ACTIONS(2064), - [aux_sym_cmd_identifier_token24] = ACTIONS(2064), - [aux_sym_cmd_identifier_token25] = ACTIONS(2064), - [aux_sym_cmd_identifier_token26] = ACTIONS(2064), - [aux_sym_cmd_identifier_token27] = ACTIONS(2064), - [aux_sym_cmd_identifier_token28] = ACTIONS(2064), - [aux_sym_cmd_identifier_token29] = ACTIONS(2064), - [aux_sym_cmd_identifier_token30] = ACTIONS(2064), - [aux_sym_cmd_identifier_token31] = ACTIONS(2064), - [aux_sym_cmd_identifier_token32] = ACTIONS(2064), - [aux_sym_cmd_identifier_token33] = ACTIONS(2064), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2064), - [aux_sym_cmd_identifier_token36] = ACTIONS(2064), - [aux_sym_cmd_identifier_token37] = ACTIONS(2064), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2064), - [aux_sym_cmd_identifier_token40] = ACTIONS(2064), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), - [anon_sym_DOT_DOT2] = ACTIONS(2066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2064), - [aux_sym__val_number_decimal_token3] = ACTIONS(2064), - [aux_sym__val_number_decimal_token4] = ACTIONS(2064), - [aux_sym__val_number_token1] = ACTIONS(2064), - [aux_sym__val_number_token2] = ACTIONS(2064), - [aux_sym__val_number_token3] = ACTIONS(2064), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym__str_single_quotes] = ACTIONS(2064), - [sym__str_back_ticks] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), - [sym__entry_separator] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [450] = { - [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_alias] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_let_DASHenv] = ACTIONS(2072), - [anon_sym_mut] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [aux_sym_cmd_identifier_token1] = ACTIONS(2072), - [aux_sym_cmd_identifier_token2] = ACTIONS(2072), - [aux_sym_cmd_identifier_token3] = ACTIONS(2072), - [aux_sym_cmd_identifier_token4] = ACTIONS(2072), - [aux_sym_cmd_identifier_token5] = ACTIONS(2072), - [aux_sym_cmd_identifier_token6] = ACTIONS(2072), - [aux_sym_cmd_identifier_token7] = ACTIONS(2072), - [aux_sym_cmd_identifier_token8] = ACTIONS(2072), - [aux_sym_cmd_identifier_token9] = ACTIONS(2072), - [aux_sym_cmd_identifier_token10] = ACTIONS(2072), - [aux_sym_cmd_identifier_token11] = ACTIONS(2072), - [aux_sym_cmd_identifier_token12] = ACTIONS(2072), - [aux_sym_cmd_identifier_token13] = ACTIONS(2072), - [aux_sym_cmd_identifier_token14] = ACTIONS(2072), - [aux_sym_cmd_identifier_token15] = ACTIONS(2072), - [aux_sym_cmd_identifier_token16] = ACTIONS(2072), - [aux_sym_cmd_identifier_token17] = ACTIONS(2072), - [aux_sym_cmd_identifier_token18] = ACTIONS(2072), - [aux_sym_cmd_identifier_token19] = ACTIONS(2072), - [aux_sym_cmd_identifier_token20] = ACTIONS(2072), - [aux_sym_cmd_identifier_token21] = ACTIONS(2072), - [aux_sym_cmd_identifier_token22] = ACTIONS(2072), - [aux_sym_cmd_identifier_token23] = ACTIONS(2072), - [aux_sym_cmd_identifier_token24] = ACTIONS(2072), - [aux_sym_cmd_identifier_token25] = ACTIONS(2072), - [aux_sym_cmd_identifier_token26] = ACTIONS(2072), - [aux_sym_cmd_identifier_token27] = ACTIONS(2072), - [aux_sym_cmd_identifier_token28] = ACTIONS(2072), - [aux_sym_cmd_identifier_token29] = ACTIONS(2072), - [aux_sym_cmd_identifier_token30] = ACTIONS(2072), - [aux_sym_cmd_identifier_token31] = ACTIONS(2072), - [aux_sym_cmd_identifier_token32] = ACTIONS(2072), - [aux_sym_cmd_identifier_token33] = ACTIONS(2072), - [aux_sym_cmd_identifier_token34] = ACTIONS(2072), - [aux_sym_cmd_identifier_token35] = ACTIONS(2072), - [aux_sym_cmd_identifier_token36] = ACTIONS(2072), - [aux_sym_cmd_identifier_token37] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_export_DASHenv] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_error] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_in2] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_make] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_catch] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_source] = ACTIONS(2072), - [anon_sym_source_DASHenv] = ACTIONS(2072), - [anon_sym_register] = ACTIONS(2072), - [anon_sym_hide] = ACTIONS(2072), - [anon_sym_hide_DASHenv] = ACTIONS(2072), - [anon_sym_overlay] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), - [anon_sym_DOT_DOT2] = ACTIONS(2074), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2076), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2076), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [aux_sym__val_number_token4] = ACTIONS(2072), - [aux_sym__val_number_token5] = ACTIONS(2072), - [aux_sym__val_number_token6] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), - [sym__entry_separator] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2078), - }, - [451] = { - [sym_cell_path] = STATE(727), - [sym_path] = STATE(659), - [sym_comment] = STATE(451), - [aux_sym_cell_path_repeat1] = STATE(521), + [aux_sym_cell_path_repeat1] = STATE(522), [anon_sym_export] = ACTIONS(1949), [anon_sym_alias] = ACTIONS(1949), [anon_sym_let] = ACTIONS(1949), @@ -135005,7 +129451,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1949), [anon_sym_PLUS2] = ACTIONS(1949), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(2080), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), [aux_sym__val_number_decimal_token1] = ACTIONS(1949), [aux_sym__val_number_decimal_token2] = ACTIONS(1951), @@ -135021,1888 +129466,2196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1951), [sym__str_back_ticks] = ACTIONS(1951), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), + [anon_sym_DOT2] = ACTIONS(2037), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1951), }, + [450] = { + [sym_expr_parenthesized] = STATE(4116), + [sym__spread_parenthesized] = STATE(4649), + [sym_val_range] = STATE(4615), + [sym__val_range] = STATE(7680), + [sym__val_range_with_end] = STATE(7253), + [sym__value] = STATE(4615), + [sym_val_nothing] = STATE(4586), + [sym_val_bool] = STATE(4323), + [sym__spread_variable] = STATE(4636), + [sym_val_variable] = STATE(4238), + [sym_val_number] = STATE(4586), + [sym__val_number_decimal] = STATE(3859), + [sym__val_number] = STATE(4589), + [sym_val_duration] = STATE(4586), + [sym_val_filesize] = STATE(4586), + [sym_val_binary] = STATE(4586), + [sym_val_string] = STATE(4586), + [sym__raw_str] = STATE(3998), + [sym__str_double_quotes] = STATE(3998), + [sym_val_interpolated] = STATE(4586), + [sym__inter_single_quotes] = STATE(4590), + [sym__inter_double_quotes] = STATE(4591), + [sym_val_list] = STATE(4586), + [sym__spread_list] = STATE(4649), + [sym_val_record] = STATE(4586), + [sym_val_table] = STATE(4586), + [sym_val_closure] = STATE(4586), + [sym__cmd_arg] = STATE(4635), + [sym_redirection] = STATE(4642), + [sym_short_flag] = STATE(4688), + [sym_long_flag] = STATE(4688), + [sym_unquoted] = STATE(4355), + [sym__unquoted_with_expr] = STATE(4723), + [sym__unquoted_anonymous_prefix] = STATE(6984), + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym__newline] = ACTIONS(1839), + [sym__space] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_err_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_GT_PIPE] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2073), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2075), + [anon_sym_DOT_DOT_LT] = ACTIONS(2075), + [anon_sym_null] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(2083), + [aux_sym__val_number_decimal_token3] = ACTIONS(2085), + [aux_sym__val_number_decimal_token4] = ACTIONS(2087), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [aux_sym__val_number_token4] = ACTIONS(2091), + [aux_sym__val_number_token5] = ACTIONS(2091), + [aux_sym__val_number_token6] = ACTIONS(2091), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym__str_single_quotes] = ACTIONS(2101), + [sym__str_back_ticks] = ACTIONS(2101), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2109), + [anon_sym_out_GT] = ACTIONS(2109), + [anon_sym_e_GT] = ACTIONS(2109), + [anon_sym_o_GT] = ACTIONS(2109), + [anon_sym_err_PLUSout_GT] = ACTIONS(2109), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2109), + [anon_sym_o_PLUSe_GT] = ACTIONS(2109), + [anon_sym_e_PLUSo_GT] = ACTIONS(2109), + [anon_sym_err_GT_GT] = ACTIONS(2109), + [anon_sym_out_GT_GT] = ACTIONS(2109), + [anon_sym_e_GT_GT] = ACTIONS(2109), + [anon_sym_o_GT_GT] = ACTIONS(2109), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2109), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2109), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2109), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2109), + [aux_sym_unquoted_token1] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2113), + }, + [451] = { + [sym_cell_path] = STATE(707), + [sym_path] = STATE(631), + [sym_comment] = STATE(451), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1959), + [aux_sym_cmd_identifier_token3] = ACTIONS(1959), + [aux_sym_cmd_identifier_token4] = ACTIONS(1959), + [aux_sym_cmd_identifier_token5] = ACTIONS(1959), + [aux_sym_cmd_identifier_token6] = ACTIONS(1959), + [aux_sym_cmd_identifier_token7] = ACTIONS(1959), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1959), + [aux_sym_cmd_identifier_token11] = ACTIONS(1959), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1959), + [aux_sym_cmd_identifier_token17] = ACTIONS(1959), + [aux_sym_cmd_identifier_token18] = ACTIONS(1959), + [aux_sym_cmd_identifier_token19] = ACTIONS(1959), + [aux_sym_cmd_identifier_token20] = ACTIONS(1959), + [aux_sym_cmd_identifier_token21] = ACTIONS(1959), + [aux_sym_cmd_identifier_token22] = ACTIONS(1959), + [aux_sym_cmd_identifier_token23] = ACTIONS(1959), + [aux_sym_cmd_identifier_token24] = ACTIONS(1959), + [aux_sym_cmd_identifier_token25] = ACTIONS(1959), + [aux_sym_cmd_identifier_token26] = ACTIONS(1959), + [aux_sym_cmd_identifier_token27] = ACTIONS(1959), + [aux_sym_cmd_identifier_token28] = ACTIONS(1959), + [aux_sym_cmd_identifier_token29] = ACTIONS(1959), + [aux_sym_cmd_identifier_token30] = ACTIONS(1959), + [aux_sym_cmd_identifier_token31] = ACTIONS(1959), + [aux_sym_cmd_identifier_token32] = ACTIONS(1959), + [aux_sym_cmd_identifier_token33] = ACTIONS(1959), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1959), + [aux_sym_cmd_identifier_token36] = ACTIONS(1959), + [aux_sym_cmd_identifier_token37] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1959), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1959), + }, [452] = { + [sym_path] = STATE(575), [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [aux_sym_cmd_identifier_token37] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT_DOT2] = ACTIONS(2066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), + [aux_sym_cell_path_repeat1] = STATE(482), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(948), + [aux_sym_cmd_identifier_token3] = ACTIONS(948), + [aux_sym_cmd_identifier_token4] = ACTIONS(948), + [aux_sym_cmd_identifier_token5] = ACTIONS(948), + [aux_sym_cmd_identifier_token6] = ACTIONS(948), + [aux_sym_cmd_identifier_token7] = ACTIONS(948), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(948), + [aux_sym_cmd_identifier_token17] = ACTIONS(948), + [aux_sym_cmd_identifier_token18] = ACTIONS(948), + [aux_sym_cmd_identifier_token19] = ACTIONS(948), + [aux_sym_cmd_identifier_token20] = ACTIONS(948), + [aux_sym_cmd_identifier_token21] = ACTIONS(948), + [aux_sym_cmd_identifier_token22] = ACTIONS(948), + [aux_sym_cmd_identifier_token23] = ACTIONS(948), + [aux_sym_cmd_identifier_token24] = ACTIONS(948), + [aux_sym_cmd_identifier_token25] = ACTIONS(948), + [aux_sym_cmd_identifier_token26] = ACTIONS(948), + [aux_sym_cmd_identifier_token27] = ACTIONS(948), + [aux_sym_cmd_identifier_token28] = ACTIONS(948), + [aux_sym_cmd_identifier_token29] = ACTIONS(948), + [aux_sym_cmd_identifier_token30] = ACTIONS(948), + [aux_sym_cmd_identifier_token31] = ACTIONS(948), + [aux_sym_cmd_identifier_token32] = ACTIONS(948), + [aux_sym_cmd_identifier_token33] = ACTIONS(948), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [sym__entry_separator] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), + [sym_raw_string_begin] = ACTIONS(950), }, [453] = { + [sym_cell_path] = STATE(758), + [sym_path] = STATE(631), [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_alias] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_let_DASHenv] = ACTIONS(2082), - [anon_sym_mut] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [aux_sym_cmd_identifier_token1] = ACTIONS(2082), - [aux_sym_cmd_identifier_token2] = ACTIONS(2082), - [aux_sym_cmd_identifier_token3] = ACTIONS(2082), - [aux_sym_cmd_identifier_token4] = ACTIONS(2082), - [aux_sym_cmd_identifier_token5] = ACTIONS(2082), - [aux_sym_cmd_identifier_token6] = ACTIONS(2082), - [aux_sym_cmd_identifier_token7] = ACTIONS(2082), - [aux_sym_cmd_identifier_token8] = ACTIONS(2082), - [aux_sym_cmd_identifier_token9] = ACTIONS(2082), - [aux_sym_cmd_identifier_token10] = ACTIONS(2082), - [aux_sym_cmd_identifier_token11] = ACTIONS(2082), - [aux_sym_cmd_identifier_token12] = ACTIONS(2082), - [aux_sym_cmd_identifier_token13] = ACTIONS(2082), - [aux_sym_cmd_identifier_token14] = ACTIONS(2082), - [aux_sym_cmd_identifier_token15] = ACTIONS(2082), - [aux_sym_cmd_identifier_token16] = ACTIONS(2082), - [aux_sym_cmd_identifier_token17] = ACTIONS(2082), - [aux_sym_cmd_identifier_token18] = ACTIONS(2082), - [aux_sym_cmd_identifier_token19] = ACTIONS(2082), - [aux_sym_cmd_identifier_token20] = ACTIONS(2082), - [aux_sym_cmd_identifier_token21] = ACTIONS(2082), - [aux_sym_cmd_identifier_token22] = ACTIONS(2082), - [aux_sym_cmd_identifier_token23] = ACTIONS(2082), - [aux_sym_cmd_identifier_token24] = ACTIONS(2082), - [aux_sym_cmd_identifier_token25] = ACTIONS(2082), - [aux_sym_cmd_identifier_token26] = ACTIONS(2082), - [aux_sym_cmd_identifier_token27] = ACTIONS(2082), - [aux_sym_cmd_identifier_token28] = ACTIONS(2082), - [aux_sym_cmd_identifier_token29] = ACTIONS(2082), - [aux_sym_cmd_identifier_token30] = ACTIONS(2082), - [aux_sym_cmd_identifier_token31] = ACTIONS(2082), - [aux_sym_cmd_identifier_token32] = ACTIONS(2082), - [aux_sym_cmd_identifier_token33] = ACTIONS(2082), - [aux_sym_cmd_identifier_token34] = ACTIONS(2082), - [aux_sym_cmd_identifier_token35] = ACTIONS(2082), - [aux_sym_cmd_identifier_token36] = ACTIONS(2082), - [aux_sym_cmd_identifier_token37] = ACTIONS(2082), - [aux_sym_cmd_identifier_token38] = ACTIONS(2082), - [aux_sym_cmd_identifier_token39] = ACTIONS(2082), - [aux_sym_cmd_identifier_token40] = ACTIONS(2082), - [anon_sym_def] = ACTIONS(2082), - [anon_sym_export_DASHenv] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_error] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_in2] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_make] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_source] = ACTIONS(2082), - [anon_sym_source_DASHenv] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_hide] = ACTIONS(2082), - [anon_sym_hide_DASHenv] = ACTIONS(2082), - [anon_sym_overlay] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2082), - [anon_sym_DOT_DOT2] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2082), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2082), - [aux_sym__val_number_decimal_token3] = ACTIONS(2082), - [aux_sym__val_number_decimal_token4] = ACTIONS(2082), - [aux_sym__val_number_token1] = ACTIONS(2082), - [aux_sym__val_number_token2] = ACTIONS(2082), - [aux_sym__val_number_token3] = ACTIONS(2082), - [aux_sym__val_number_token4] = ACTIONS(2082), - [aux_sym__val_number_token5] = ACTIONS(2082), - [aux_sym__val_number_token6] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2082), - [sym__str_single_quotes] = ACTIONS(2082), - [sym__str_back_ticks] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2082), - [sym__entry_separator] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2084), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1967), + [aux_sym_cmd_identifier_token3] = ACTIONS(1967), + [aux_sym_cmd_identifier_token4] = ACTIONS(1967), + [aux_sym_cmd_identifier_token5] = ACTIONS(1967), + [aux_sym_cmd_identifier_token6] = ACTIONS(1967), + [aux_sym_cmd_identifier_token7] = ACTIONS(1967), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1967), + [aux_sym_cmd_identifier_token11] = ACTIONS(1967), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1967), + [aux_sym_cmd_identifier_token17] = ACTIONS(1967), + [aux_sym_cmd_identifier_token18] = ACTIONS(1967), + [aux_sym_cmd_identifier_token19] = ACTIONS(1967), + [aux_sym_cmd_identifier_token20] = ACTIONS(1967), + [aux_sym_cmd_identifier_token21] = ACTIONS(1967), + [aux_sym_cmd_identifier_token22] = ACTIONS(1967), + [aux_sym_cmd_identifier_token23] = ACTIONS(1967), + [aux_sym_cmd_identifier_token24] = ACTIONS(1967), + [aux_sym_cmd_identifier_token25] = ACTIONS(1967), + [aux_sym_cmd_identifier_token26] = ACTIONS(1967), + [aux_sym_cmd_identifier_token27] = ACTIONS(1967), + [aux_sym_cmd_identifier_token28] = ACTIONS(1967), + [aux_sym_cmd_identifier_token29] = ACTIONS(1967), + [aux_sym_cmd_identifier_token30] = ACTIONS(1967), + [aux_sym_cmd_identifier_token31] = ACTIONS(1967), + [aux_sym_cmd_identifier_token32] = ACTIONS(1967), + [aux_sym_cmd_identifier_token33] = ACTIONS(1967), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1967), + [aux_sym_cmd_identifier_token36] = ACTIONS(1967), + [aux_sym_cmd_identifier_token37] = ACTIONS(1967), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1967), + [aux_sym_cmd_identifier_token40] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1967), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in2] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1967), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1967), + [aux_sym__val_number_token2] = ACTIONS(1967), + [aux_sym__val_number_token3] = ACTIONS(1967), + [aux_sym__val_number_token4] = ACTIONS(1965), + [aux_sym__val_number_token5] = ACTIONS(1965), + [aux_sym__val_number_token6] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym__str_single_quotes] = ACTIONS(1967), + [sym__str_back_ticks] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1967), }, [454] = { + [sym_cell_path] = STATE(762), + [sym_path] = STATE(631), [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2086), - [aux_sym_cmd_identifier_token3] = ACTIONS(2086), - [aux_sym_cmd_identifier_token4] = ACTIONS(2086), - [aux_sym_cmd_identifier_token5] = ACTIONS(2086), - [aux_sym_cmd_identifier_token6] = ACTIONS(2086), - [aux_sym_cmd_identifier_token7] = ACTIONS(2086), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2086), - [aux_sym_cmd_identifier_token11] = ACTIONS(2086), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2086), - [aux_sym_cmd_identifier_token17] = ACTIONS(2086), - [aux_sym_cmd_identifier_token18] = ACTIONS(2086), - [aux_sym_cmd_identifier_token19] = ACTIONS(2086), - [aux_sym_cmd_identifier_token20] = ACTIONS(2086), - [aux_sym_cmd_identifier_token21] = ACTIONS(2086), - [aux_sym_cmd_identifier_token22] = ACTIONS(2086), - [aux_sym_cmd_identifier_token23] = ACTIONS(2086), - [aux_sym_cmd_identifier_token24] = ACTIONS(2086), - [aux_sym_cmd_identifier_token25] = ACTIONS(2086), - [aux_sym_cmd_identifier_token26] = ACTIONS(2086), - [aux_sym_cmd_identifier_token27] = ACTIONS(2086), - [aux_sym_cmd_identifier_token28] = ACTIONS(2086), - [aux_sym_cmd_identifier_token29] = ACTIONS(2086), - [aux_sym_cmd_identifier_token30] = ACTIONS(2086), - [aux_sym_cmd_identifier_token31] = ACTIONS(2086), - [aux_sym_cmd_identifier_token32] = ACTIONS(2086), - [aux_sym_cmd_identifier_token33] = ACTIONS(2086), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2086), - [aux_sym_cmd_identifier_token36] = ACTIONS(2086), - [aux_sym_cmd_identifier_token37] = ACTIONS(2086), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2086), - [aux_sym_cmd_identifier_token40] = ACTIONS(2086), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), - [anon_sym_DOT_DOT2] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2086), - [aux_sym__val_number_decimal_token3] = ACTIONS(2086), - [aux_sym__val_number_decimal_token4] = ACTIONS(2086), - [aux_sym__val_number_token1] = ACTIONS(2086), - [aux_sym__val_number_token2] = ACTIONS(2086), - [aux_sym__val_number_token3] = ACTIONS(2086), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2086), - [sym__str_single_quotes] = ACTIONS(2086), - [sym__str_back_ticks] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), - [sym__entry_separator] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2088), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [aux_sym_cmd_identifier_token1] = ACTIONS(1969), + [aux_sym_cmd_identifier_token2] = ACTIONS(1971), + [aux_sym_cmd_identifier_token3] = ACTIONS(1971), + [aux_sym_cmd_identifier_token4] = ACTIONS(1971), + [aux_sym_cmd_identifier_token5] = ACTIONS(1971), + [aux_sym_cmd_identifier_token6] = ACTIONS(1971), + [aux_sym_cmd_identifier_token7] = ACTIONS(1971), + [aux_sym_cmd_identifier_token8] = ACTIONS(1969), + [aux_sym_cmd_identifier_token9] = ACTIONS(1969), + [aux_sym_cmd_identifier_token10] = ACTIONS(1971), + [aux_sym_cmd_identifier_token11] = ACTIONS(1971), + [aux_sym_cmd_identifier_token12] = ACTIONS(1969), + [aux_sym_cmd_identifier_token13] = ACTIONS(1969), + [aux_sym_cmd_identifier_token14] = ACTIONS(1969), + [aux_sym_cmd_identifier_token15] = ACTIONS(1969), + [aux_sym_cmd_identifier_token16] = ACTIONS(1971), + [aux_sym_cmd_identifier_token17] = ACTIONS(1971), + [aux_sym_cmd_identifier_token18] = ACTIONS(1971), + [aux_sym_cmd_identifier_token19] = ACTIONS(1971), + [aux_sym_cmd_identifier_token20] = ACTIONS(1971), + [aux_sym_cmd_identifier_token21] = ACTIONS(1971), + [aux_sym_cmd_identifier_token22] = ACTIONS(1971), + [aux_sym_cmd_identifier_token23] = ACTIONS(1971), + [aux_sym_cmd_identifier_token24] = ACTIONS(1971), + [aux_sym_cmd_identifier_token25] = ACTIONS(1971), + [aux_sym_cmd_identifier_token26] = ACTIONS(1971), + [aux_sym_cmd_identifier_token27] = ACTIONS(1971), + [aux_sym_cmd_identifier_token28] = ACTIONS(1971), + [aux_sym_cmd_identifier_token29] = ACTIONS(1971), + [aux_sym_cmd_identifier_token30] = ACTIONS(1971), + [aux_sym_cmd_identifier_token31] = ACTIONS(1971), + [aux_sym_cmd_identifier_token32] = ACTIONS(1971), + [aux_sym_cmd_identifier_token33] = ACTIONS(1971), + [aux_sym_cmd_identifier_token34] = ACTIONS(1969), + [aux_sym_cmd_identifier_token35] = ACTIONS(1971), + [aux_sym_cmd_identifier_token36] = ACTIONS(1971), + [aux_sym_cmd_identifier_token37] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1969), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1971), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_in2] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_make] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_as] = ACTIONS(1969), + [anon_sym_PLUS2] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1969), + [aux_sym__val_number_token5] = ACTIONS(1969), + [aux_sym__val_number_token6] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1971), }, [455] = { + [sym_cell_path] = STATE(763), + [sym_path] = STATE(631), [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2090), - [aux_sym_cmd_identifier_token3] = ACTIONS(2090), - [aux_sym_cmd_identifier_token4] = ACTIONS(2090), - [aux_sym_cmd_identifier_token5] = ACTIONS(2090), - [aux_sym_cmd_identifier_token6] = ACTIONS(2090), - [aux_sym_cmd_identifier_token7] = ACTIONS(2090), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2090), - [aux_sym_cmd_identifier_token11] = ACTIONS(2090), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2090), - [aux_sym_cmd_identifier_token17] = ACTIONS(2090), - [aux_sym_cmd_identifier_token18] = ACTIONS(2090), - [aux_sym_cmd_identifier_token19] = ACTIONS(2090), - [aux_sym_cmd_identifier_token20] = ACTIONS(2090), - [aux_sym_cmd_identifier_token21] = ACTIONS(2090), - [aux_sym_cmd_identifier_token22] = ACTIONS(2090), - [aux_sym_cmd_identifier_token23] = ACTIONS(2090), - [aux_sym_cmd_identifier_token24] = ACTIONS(2090), - [aux_sym_cmd_identifier_token25] = ACTIONS(2090), - [aux_sym_cmd_identifier_token26] = ACTIONS(2090), - [aux_sym_cmd_identifier_token27] = ACTIONS(2090), - [aux_sym_cmd_identifier_token28] = ACTIONS(2090), - [aux_sym_cmd_identifier_token29] = ACTIONS(2090), - [aux_sym_cmd_identifier_token30] = ACTIONS(2090), - [aux_sym_cmd_identifier_token31] = ACTIONS(2090), - [aux_sym_cmd_identifier_token32] = ACTIONS(2090), - [aux_sym_cmd_identifier_token33] = ACTIONS(2090), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2090), - [aux_sym_cmd_identifier_token36] = ACTIONS(2090), - [aux_sym_cmd_identifier_token37] = ACTIONS(2090), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2090), - [aux_sym_cmd_identifier_token40] = ACTIONS(2090), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2090), - [anon_sym_DOT_DOT2] = ACTIONS(2092), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2094), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2094), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2090), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2090), - [aux_sym__val_number_decimal_token3] = ACTIONS(2090), - [aux_sym__val_number_decimal_token4] = ACTIONS(2090), - [aux_sym__val_number_token1] = ACTIONS(2090), - [aux_sym__val_number_token2] = ACTIONS(2090), - [aux_sym__val_number_token3] = ACTIONS(2090), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [sym__str_single_quotes] = ACTIONS(2090), - [sym__str_back_ticks] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2090), - [sym__entry_separator] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1975), + [aux_sym_cmd_identifier_token3] = ACTIONS(1975), + [aux_sym_cmd_identifier_token4] = ACTIONS(1975), + [aux_sym_cmd_identifier_token5] = ACTIONS(1975), + [aux_sym_cmd_identifier_token6] = ACTIONS(1975), + [aux_sym_cmd_identifier_token7] = ACTIONS(1975), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1975), + [aux_sym_cmd_identifier_token11] = ACTIONS(1975), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1975), + [aux_sym_cmd_identifier_token17] = ACTIONS(1975), + [aux_sym_cmd_identifier_token18] = ACTIONS(1975), + [aux_sym_cmd_identifier_token19] = ACTIONS(1975), + [aux_sym_cmd_identifier_token20] = ACTIONS(1975), + [aux_sym_cmd_identifier_token21] = ACTIONS(1975), + [aux_sym_cmd_identifier_token22] = ACTIONS(1975), + [aux_sym_cmd_identifier_token23] = ACTIONS(1975), + [aux_sym_cmd_identifier_token24] = ACTIONS(1975), + [aux_sym_cmd_identifier_token25] = ACTIONS(1975), + [aux_sym_cmd_identifier_token26] = ACTIONS(1975), + [aux_sym_cmd_identifier_token27] = ACTIONS(1975), + [aux_sym_cmd_identifier_token28] = ACTIONS(1975), + [aux_sym_cmd_identifier_token29] = ACTIONS(1975), + [aux_sym_cmd_identifier_token30] = ACTIONS(1975), + [aux_sym_cmd_identifier_token31] = ACTIONS(1975), + [aux_sym_cmd_identifier_token32] = ACTIONS(1975), + [aux_sym_cmd_identifier_token33] = ACTIONS(1975), + [aux_sym_cmd_identifier_token34] = ACTIONS(1973), + [aux_sym_cmd_identifier_token35] = ACTIONS(1975), + [aux_sym_cmd_identifier_token36] = ACTIONS(1975), + [aux_sym_cmd_identifier_token37] = ACTIONS(1975), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1975), + [aux_sym_cmd_identifier_token40] = ACTIONS(1975), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1975), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_in2] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_make] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1975), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1975), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1975), + [aux_sym__val_number_decimal_token3] = ACTIONS(1975), + [aux_sym__val_number_decimal_token4] = ACTIONS(1975), + [aux_sym__val_number_token1] = ACTIONS(1975), + [aux_sym__val_number_token2] = ACTIONS(1975), + [aux_sym__val_number_token3] = ACTIONS(1975), + [aux_sym__val_number_token4] = ACTIONS(1973), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym__str_single_quotes] = ACTIONS(1975), + [sym__str_back_ticks] = ACTIONS(1975), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1975), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1975), }, [456] = { + [sym_cell_path] = STATE(764), + [sym_path] = STATE(631), [sym_comment] = STATE(456), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_let_DASHenv] = ACTIONS(2098), - [anon_sym_mut] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2098), - [aux_sym_cmd_identifier_token3] = ACTIONS(2098), - [aux_sym_cmd_identifier_token4] = ACTIONS(2098), - [aux_sym_cmd_identifier_token5] = ACTIONS(2098), - [aux_sym_cmd_identifier_token6] = ACTIONS(2098), - [aux_sym_cmd_identifier_token7] = ACTIONS(2098), - [aux_sym_cmd_identifier_token8] = ACTIONS(2098), - [aux_sym_cmd_identifier_token9] = ACTIONS(2098), - [aux_sym_cmd_identifier_token10] = ACTIONS(2098), - [aux_sym_cmd_identifier_token11] = ACTIONS(2098), - [aux_sym_cmd_identifier_token12] = ACTIONS(2098), - [aux_sym_cmd_identifier_token13] = ACTIONS(2098), - [aux_sym_cmd_identifier_token14] = ACTIONS(2098), - [aux_sym_cmd_identifier_token15] = ACTIONS(2098), - [aux_sym_cmd_identifier_token16] = ACTIONS(2098), - [aux_sym_cmd_identifier_token17] = ACTIONS(2098), - [aux_sym_cmd_identifier_token18] = ACTIONS(2098), - [aux_sym_cmd_identifier_token19] = ACTIONS(2098), - [aux_sym_cmd_identifier_token20] = ACTIONS(2098), - [aux_sym_cmd_identifier_token21] = ACTIONS(2098), - [aux_sym_cmd_identifier_token22] = ACTIONS(2098), - [aux_sym_cmd_identifier_token23] = ACTIONS(2098), - [aux_sym_cmd_identifier_token24] = ACTIONS(2098), - [aux_sym_cmd_identifier_token25] = ACTIONS(2098), - [aux_sym_cmd_identifier_token26] = ACTIONS(2098), - [aux_sym_cmd_identifier_token27] = ACTIONS(2098), - [aux_sym_cmd_identifier_token28] = ACTIONS(2098), - [aux_sym_cmd_identifier_token29] = ACTIONS(2098), - [aux_sym_cmd_identifier_token30] = ACTIONS(2098), - [aux_sym_cmd_identifier_token31] = ACTIONS(2098), - [aux_sym_cmd_identifier_token32] = ACTIONS(2098), - [aux_sym_cmd_identifier_token33] = ACTIONS(2098), - [aux_sym_cmd_identifier_token34] = ACTIONS(2098), - [aux_sym_cmd_identifier_token35] = ACTIONS(2098), - [aux_sym_cmd_identifier_token36] = ACTIONS(2098), - [aux_sym_cmd_identifier_token37] = ACTIONS(2098), - [aux_sym_cmd_identifier_token38] = ACTIONS(2098), - [aux_sym_cmd_identifier_token39] = ACTIONS(2098), - [aux_sym_cmd_identifier_token40] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2098), - [anon_sym_export_DASHenv] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_error] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_in2] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_make] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_source] = ACTIONS(2098), - [anon_sym_source_DASHenv] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_hide] = ACTIONS(2098), - [anon_sym_hide_DASHenv] = ACTIONS(2098), - [anon_sym_overlay] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(2100), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2102), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2098), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2098), - [aux_sym__val_number_decimal_token3] = ACTIONS(2098), - [aux_sym__val_number_decimal_token4] = ACTIONS(2098), - [aux_sym__val_number_token1] = ACTIONS(2098), - [aux_sym__val_number_token2] = ACTIONS(2098), - [aux_sym__val_number_token3] = ACTIONS(2098), - [aux_sym__val_number_token4] = ACTIONS(2098), - [aux_sym__val_number_token5] = ACTIONS(2098), - [aux_sym__val_number_token6] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2098), - [sym__str_single_quotes] = ACTIONS(2098), - [sym__str_back_ticks] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2098), - [sym__entry_separator] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2104), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1979), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [aux_sym_cmd_identifier_token6] = ACTIONS(1979), + [aux_sym_cmd_identifier_token7] = ACTIONS(1979), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1979), + [aux_sym_cmd_identifier_token11] = ACTIONS(1979), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1979), + [aux_sym_cmd_identifier_token17] = ACTIONS(1979), + [aux_sym_cmd_identifier_token18] = ACTIONS(1979), + [aux_sym_cmd_identifier_token19] = ACTIONS(1979), + [aux_sym_cmd_identifier_token20] = ACTIONS(1979), + [aux_sym_cmd_identifier_token21] = ACTIONS(1979), + [aux_sym_cmd_identifier_token22] = ACTIONS(1979), + [aux_sym_cmd_identifier_token23] = ACTIONS(1979), + [aux_sym_cmd_identifier_token24] = ACTIONS(1979), + [aux_sym_cmd_identifier_token25] = ACTIONS(1979), + [aux_sym_cmd_identifier_token26] = ACTIONS(1979), + [aux_sym_cmd_identifier_token27] = ACTIONS(1979), + [aux_sym_cmd_identifier_token28] = ACTIONS(1979), + [aux_sym_cmd_identifier_token29] = ACTIONS(1979), + [aux_sym_cmd_identifier_token30] = ACTIONS(1979), + [aux_sym_cmd_identifier_token31] = ACTIONS(1979), + [aux_sym_cmd_identifier_token32] = ACTIONS(1979), + [aux_sym_cmd_identifier_token33] = ACTIONS(1979), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1979), + [aux_sym_cmd_identifier_token36] = ACTIONS(1979), + [aux_sym_cmd_identifier_token37] = ACTIONS(1979), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1979), + [aux_sym_cmd_identifier_token40] = ACTIONS(1979), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1979), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1979), }, [457] = { - [sym_cell_path] = STATE(702), - [sym_path] = STATE(659), + [sym_cell_path] = STATE(708), + [sym_path] = STATE(631), [sym_comment] = STATE(457), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [aux_sym_cmd_identifier_token37] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [aux_sym_cmd_identifier_token1] = ACTIONS(1981), + [aux_sym_cmd_identifier_token2] = ACTIONS(1983), + [aux_sym_cmd_identifier_token3] = ACTIONS(1983), + [aux_sym_cmd_identifier_token4] = ACTIONS(1983), + [aux_sym_cmd_identifier_token5] = ACTIONS(1983), + [aux_sym_cmd_identifier_token6] = ACTIONS(1983), + [aux_sym_cmd_identifier_token7] = ACTIONS(1983), + [aux_sym_cmd_identifier_token8] = ACTIONS(1981), + [aux_sym_cmd_identifier_token9] = ACTIONS(1981), + [aux_sym_cmd_identifier_token10] = ACTIONS(1983), + [aux_sym_cmd_identifier_token11] = ACTIONS(1983), + [aux_sym_cmd_identifier_token12] = ACTIONS(1981), + [aux_sym_cmd_identifier_token13] = ACTIONS(1981), + [aux_sym_cmd_identifier_token14] = ACTIONS(1981), + [aux_sym_cmd_identifier_token15] = ACTIONS(1981), + [aux_sym_cmd_identifier_token16] = ACTIONS(1983), + [aux_sym_cmd_identifier_token17] = ACTIONS(1983), + [aux_sym_cmd_identifier_token18] = ACTIONS(1983), + [aux_sym_cmd_identifier_token19] = ACTIONS(1983), + [aux_sym_cmd_identifier_token20] = ACTIONS(1983), + [aux_sym_cmd_identifier_token21] = ACTIONS(1983), + [aux_sym_cmd_identifier_token22] = ACTIONS(1983), + [aux_sym_cmd_identifier_token23] = ACTIONS(1983), + [aux_sym_cmd_identifier_token24] = ACTIONS(1983), + [aux_sym_cmd_identifier_token25] = ACTIONS(1983), + [aux_sym_cmd_identifier_token26] = ACTIONS(1983), + [aux_sym_cmd_identifier_token27] = ACTIONS(1983), + [aux_sym_cmd_identifier_token28] = ACTIONS(1983), + [aux_sym_cmd_identifier_token29] = ACTIONS(1983), + [aux_sym_cmd_identifier_token30] = ACTIONS(1983), + [aux_sym_cmd_identifier_token31] = ACTIONS(1983), + [aux_sym_cmd_identifier_token32] = ACTIONS(1983), + [aux_sym_cmd_identifier_token33] = ACTIONS(1983), + [aux_sym_cmd_identifier_token34] = ACTIONS(1981), + [aux_sym_cmd_identifier_token35] = ACTIONS(1983), + [aux_sym_cmd_identifier_token36] = ACTIONS(1983), + [aux_sym_cmd_identifier_token37] = ACTIONS(1983), + [aux_sym_cmd_identifier_token38] = ACTIONS(1981), + [aux_sym_cmd_identifier_token39] = ACTIONS(1983), + [aux_sym_cmd_identifier_token40] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1983), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_DASH2] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_in2] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_make] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_as] = ACTIONS(1981), + [anon_sym_PLUS2] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1981), + [aux_sym__val_number_token5] = ACTIONS(1981), + [aux_sym__val_number_token6] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1983), }, [458] = { + [sym_cell_path] = STATE(722), + [sym_path] = STATE(631), [sym_comment] = STATE(458), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1008), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(2106), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [aux_sym_record_entry_token1] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1985), + [anon_sym_alias] = ACTIONS(1985), + [anon_sym_let] = ACTIONS(1985), + [anon_sym_let_DASHenv] = ACTIONS(1985), + [anon_sym_mut] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1985), + [aux_sym_cmd_identifier_token1] = ACTIONS(1985), + [aux_sym_cmd_identifier_token2] = ACTIONS(1987), + [aux_sym_cmd_identifier_token3] = ACTIONS(1987), + [aux_sym_cmd_identifier_token4] = ACTIONS(1987), + [aux_sym_cmd_identifier_token5] = ACTIONS(1987), + [aux_sym_cmd_identifier_token6] = ACTIONS(1987), + [aux_sym_cmd_identifier_token7] = ACTIONS(1987), + [aux_sym_cmd_identifier_token8] = ACTIONS(1985), + [aux_sym_cmd_identifier_token9] = ACTIONS(1985), + [aux_sym_cmd_identifier_token10] = ACTIONS(1987), + [aux_sym_cmd_identifier_token11] = ACTIONS(1987), + [aux_sym_cmd_identifier_token12] = ACTIONS(1985), + [aux_sym_cmd_identifier_token13] = ACTIONS(1985), + [aux_sym_cmd_identifier_token14] = ACTIONS(1985), + [aux_sym_cmd_identifier_token15] = ACTIONS(1985), + [aux_sym_cmd_identifier_token16] = ACTIONS(1987), + [aux_sym_cmd_identifier_token17] = ACTIONS(1987), + [aux_sym_cmd_identifier_token18] = ACTIONS(1987), + [aux_sym_cmd_identifier_token19] = ACTIONS(1987), + [aux_sym_cmd_identifier_token20] = ACTIONS(1987), + [aux_sym_cmd_identifier_token21] = ACTIONS(1987), + [aux_sym_cmd_identifier_token22] = ACTIONS(1987), + [aux_sym_cmd_identifier_token23] = ACTIONS(1987), + [aux_sym_cmd_identifier_token24] = ACTIONS(1987), + [aux_sym_cmd_identifier_token25] = ACTIONS(1987), + [aux_sym_cmd_identifier_token26] = ACTIONS(1987), + [aux_sym_cmd_identifier_token27] = ACTIONS(1987), + [aux_sym_cmd_identifier_token28] = ACTIONS(1987), + [aux_sym_cmd_identifier_token29] = ACTIONS(1987), + [aux_sym_cmd_identifier_token30] = ACTIONS(1987), + [aux_sym_cmd_identifier_token31] = ACTIONS(1987), + [aux_sym_cmd_identifier_token32] = ACTIONS(1987), + [aux_sym_cmd_identifier_token33] = ACTIONS(1987), + [aux_sym_cmd_identifier_token34] = ACTIONS(1985), + [aux_sym_cmd_identifier_token35] = ACTIONS(1987), + [aux_sym_cmd_identifier_token36] = ACTIONS(1987), + [aux_sym_cmd_identifier_token37] = ACTIONS(1987), + [aux_sym_cmd_identifier_token38] = ACTIONS(1985), + [aux_sym_cmd_identifier_token39] = ACTIONS(1987), + [aux_sym_cmd_identifier_token40] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1985), + [anon_sym_export_DASHenv] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_module] = ACTIONS(1985), + [anon_sym_use] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_in2] = ACTIONS(1985), + [anon_sym_loop] = ACTIONS(1985), + [anon_sym_make] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_match] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_source] = ACTIONS(1985), + [anon_sym_source_DASHenv] = ACTIONS(1985), + [anon_sym_register] = ACTIONS(1985), + [anon_sym_hide] = ACTIONS(1985), + [anon_sym_hide_DASHenv] = ACTIONS(1985), + [anon_sym_overlay] = ACTIONS(1985), + [anon_sym_as] = ACTIONS(1985), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [aux_sym__val_number_token4] = ACTIONS(1985), + [aux_sym__val_number_token5] = ACTIONS(1985), + [aux_sym__val_number_token6] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1987), }, [459] = { + [sym_cell_path] = STATE(706), + [sym_path] = STATE(631), [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(2108), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1831), + [aux_sym_cmd_identifier_token3] = ACTIONS(1831), + [aux_sym_cmd_identifier_token4] = ACTIONS(1831), + [aux_sym_cmd_identifier_token5] = ACTIONS(1831), + [aux_sym_cmd_identifier_token6] = ACTIONS(1831), + [aux_sym_cmd_identifier_token7] = ACTIONS(1831), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1831), + [aux_sym_cmd_identifier_token11] = ACTIONS(1831), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1831), + [aux_sym_cmd_identifier_token17] = ACTIONS(1831), + [aux_sym_cmd_identifier_token18] = ACTIONS(1831), + [aux_sym_cmd_identifier_token19] = ACTIONS(1831), + [aux_sym_cmd_identifier_token20] = ACTIONS(1831), + [aux_sym_cmd_identifier_token21] = ACTIONS(1831), + [aux_sym_cmd_identifier_token22] = ACTIONS(1831), + [aux_sym_cmd_identifier_token23] = ACTIONS(1831), + [aux_sym_cmd_identifier_token24] = ACTIONS(1831), + [aux_sym_cmd_identifier_token25] = ACTIONS(1831), + [aux_sym_cmd_identifier_token26] = ACTIONS(1831), + [aux_sym_cmd_identifier_token27] = ACTIONS(1831), + [aux_sym_cmd_identifier_token28] = ACTIONS(1831), + [aux_sym_cmd_identifier_token29] = ACTIONS(1831), + [aux_sym_cmd_identifier_token30] = ACTIONS(1831), + [aux_sym_cmd_identifier_token31] = ACTIONS(1831), + [aux_sym_cmd_identifier_token32] = ACTIONS(1831), + [aux_sym_cmd_identifier_token33] = ACTIONS(1831), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1831), + [aux_sym_cmd_identifier_token36] = ACTIONS(1831), + [aux_sym_cmd_identifier_token37] = ACTIONS(1831), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), + [aux_sym_cmd_identifier_token39] = ACTIONS(1831), + [aux_sym_cmd_identifier_token40] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in2] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_register] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1829), + [aux_sym__val_number_token5] = ACTIONS(1829), + [aux_sym__val_number_token6] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1831), }, [460] = { + [sym_cell_path] = STATE(724), + [sym_path] = STATE(631), [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [aux_sym__immediate_decimal_token2] = ACTIONS(2110), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1989), + [anon_sym_alias] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_let_DASHenv] = ACTIONS(1989), + [anon_sym_mut] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [aux_sym_cmd_identifier_token1] = ACTIONS(1989), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1989), + [aux_sym_cmd_identifier_token9] = ACTIONS(1989), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1989), + [aux_sym_cmd_identifier_token13] = ACTIONS(1989), + [aux_sym_cmd_identifier_token14] = ACTIONS(1989), + [aux_sym_cmd_identifier_token15] = ACTIONS(1989), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1989), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [aux_sym_cmd_identifier_token37] = ACTIONS(1991), + [aux_sym_cmd_identifier_token38] = ACTIONS(1989), + [aux_sym_cmd_identifier_token39] = ACTIONS(1991), + [aux_sym_cmd_identifier_token40] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_export_DASHenv] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_module] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_error] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_in2] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_make] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_catch] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_source] = ACTIONS(1989), + [anon_sym_source_DASHenv] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1989), + [anon_sym_hide] = ACTIONS(1989), + [anon_sym_hide_DASHenv] = ACTIONS(1989), + [anon_sym_overlay] = ACTIONS(1989), + [anon_sym_as] = ACTIONS(1989), + [anon_sym_PLUS2] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1989), + [aux_sym__val_number_token5] = ACTIONS(1989), + [aux_sym__val_number_token6] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1991), }, [461] = { + [sym_cell_path] = STATE(739), + [sym_path] = STATE(631), [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [aux_sym_cmd_identifier_token37] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [aux_sym__val_number_token4] = ACTIONS(1052), - [aux_sym__val_number_token5] = ACTIONS(1052), - [aux_sym__val_number_token6] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [sym__entry_separator] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1054), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1995), + [aux_sym_cmd_identifier_token3] = ACTIONS(1995), + [aux_sym_cmd_identifier_token4] = ACTIONS(1995), + [aux_sym_cmd_identifier_token5] = ACTIONS(1995), + [aux_sym_cmd_identifier_token6] = ACTIONS(1995), + [aux_sym_cmd_identifier_token7] = ACTIONS(1995), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1995), + [aux_sym_cmd_identifier_token11] = ACTIONS(1995), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1995), + [aux_sym_cmd_identifier_token17] = ACTIONS(1995), + [aux_sym_cmd_identifier_token18] = ACTIONS(1995), + [aux_sym_cmd_identifier_token19] = ACTIONS(1995), + [aux_sym_cmd_identifier_token20] = ACTIONS(1995), + [aux_sym_cmd_identifier_token21] = ACTIONS(1995), + [aux_sym_cmd_identifier_token22] = ACTIONS(1995), + [aux_sym_cmd_identifier_token23] = ACTIONS(1995), + [aux_sym_cmd_identifier_token24] = ACTIONS(1995), + [aux_sym_cmd_identifier_token25] = ACTIONS(1995), + [aux_sym_cmd_identifier_token26] = ACTIONS(1995), + [aux_sym_cmd_identifier_token27] = ACTIONS(1995), + [aux_sym_cmd_identifier_token28] = ACTIONS(1995), + [aux_sym_cmd_identifier_token29] = ACTIONS(1995), + [aux_sym_cmd_identifier_token30] = ACTIONS(1995), + [aux_sym_cmd_identifier_token31] = ACTIONS(1995), + [aux_sym_cmd_identifier_token32] = ACTIONS(1995), + [aux_sym_cmd_identifier_token33] = ACTIONS(1995), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1995), + [aux_sym_cmd_identifier_token36] = ACTIONS(1995), + [aux_sym_cmd_identifier_token37] = ACTIONS(1995), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1995), + [aux_sym_cmd_identifier_token40] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1995), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in2] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1993), + [aux_sym__val_number_token5] = ACTIONS(1993), + [aux_sym__val_number_token6] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1995), }, [462] = { + [sym_cell_path] = STATE(751), + [sym_path] = STATE(631), [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [aux_sym_record_entry_token1] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [aux_sym_cmd_identifier_token37] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1999), }, [463] = { + [sym_cell_path] = STATE(752), + [sym_path] = STATE(631), [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [aux_sym_record_entry_token1] = ACTIONS(1006), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2003), + [aux_sym_cmd_identifier_token4] = ACTIONS(2003), + [aux_sym_cmd_identifier_token5] = ACTIONS(2003), + [aux_sym_cmd_identifier_token6] = ACTIONS(2003), + [aux_sym_cmd_identifier_token7] = ACTIONS(2003), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2003), + [aux_sym_cmd_identifier_token11] = ACTIONS(2003), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2003), + [aux_sym_cmd_identifier_token17] = ACTIONS(2003), + [aux_sym_cmd_identifier_token18] = ACTIONS(2003), + [aux_sym_cmd_identifier_token19] = ACTIONS(2003), + [aux_sym_cmd_identifier_token20] = ACTIONS(2003), + [aux_sym_cmd_identifier_token21] = ACTIONS(2003), + [aux_sym_cmd_identifier_token22] = ACTIONS(2003), + [aux_sym_cmd_identifier_token23] = ACTIONS(2003), + [aux_sym_cmd_identifier_token24] = ACTIONS(2003), + [aux_sym_cmd_identifier_token25] = ACTIONS(2003), + [aux_sym_cmd_identifier_token26] = ACTIONS(2003), + [aux_sym_cmd_identifier_token27] = ACTIONS(2003), + [aux_sym_cmd_identifier_token28] = ACTIONS(2003), + [aux_sym_cmd_identifier_token29] = ACTIONS(2003), + [aux_sym_cmd_identifier_token30] = ACTIONS(2003), + [aux_sym_cmd_identifier_token31] = ACTIONS(2003), + [aux_sym_cmd_identifier_token32] = ACTIONS(2003), + [aux_sym_cmd_identifier_token33] = ACTIONS(2003), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2003), + [aux_sym_cmd_identifier_token36] = ACTIONS(2003), + [aux_sym_cmd_identifier_token37] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), + [anon_sym_DOT2] = ACTIONS(2037), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), + [sym_raw_string_begin] = ACTIONS(2003), }, [464] = { + [sym_cell_path] = STATE(697), + [sym_path] = STATE(631), [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [aux_sym_record_entry_token1] = ACTIONS(998), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2005), + [anon_sym_alias] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_let_DASHenv] = ACTIONS(2005), + [anon_sym_mut] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [aux_sym_cmd_identifier_token1] = ACTIONS(2005), + [aux_sym_cmd_identifier_token2] = ACTIONS(2007), + [aux_sym_cmd_identifier_token3] = ACTIONS(2007), + [aux_sym_cmd_identifier_token4] = ACTIONS(2007), + [aux_sym_cmd_identifier_token5] = ACTIONS(2007), + [aux_sym_cmd_identifier_token6] = ACTIONS(2007), + [aux_sym_cmd_identifier_token7] = ACTIONS(2007), + [aux_sym_cmd_identifier_token8] = ACTIONS(2005), + [aux_sym_cmd_identifier_token9] = ACTIONS(2005), + [aux_sym_cmd_identifier_token10] = ACTIONS(2007), + [aux_sym_cmd_identifier_token11] = ACTIONS(2007), + [aux_sym_cmd_identifier_token12] = ACTIONS(2005), + [aux_sym_cmd_identifier_token13] = ACTIONS(2005), + [aux_sym_cmd_identifier_token14] = ACTIONS(2005), + [aux_sym_cmd_identifier_token15] = ACTIONS(2005), + [aux_sym_cmd_identifier_token16] = ACTIONS(2007), + [aux_sym_cmd_identifier_token17] = ACTIONS(2007), + [aux_sym_cmd_identifier_token18] = ACTIONS(2007), + [aux_sym_cmd_identifier_token19] = ACTIONS(2007), + [aux_sym_cmd_identifier_token20] = ACTIONS(2007), + [aux_sym_cmd_identifier_token21] = ACTIONS(2007), + [aux_sym_cmd_identifier_token22] = ACTIONS(2007), + [aux_sym_cmd_identifier_token23] = ACTIONS(2007), + [aux_sym_cmd_identifier_token24] = ACTIONS(2007), + [aux_sym_cmd_identifier_token25] = ACTIONS(2007), + [aux_sym_cmd_identifier_token26] = ACTIONS(2007), + [aux_sym_cmd_identifier_token27] = ACTIONS(2007), + [aux_sym_cmd_identifier_token28] = ACTIONS(2007), + [aux_sym_cmd_identifier_token29] = ACTIONS(2007), + [aux_sym_cmd_identifier_token30] = ACTIONS(2007), + [aux_sym_cmd_identifier_token31] = ACTIONS(2007), + [aux_sym_cmd_identifier_token32] = ACTIONS(2007), + [aux_sym_cmd_identifier_token33] = ACTIONS(2007), + [aux_sym_cmd_identifier_token34] = ACTIONS(2005), + [aux_sym_cmd_identifier_token35] = ACTIONS(2007), + [aux_sym_cmd_identifier_token36] = ACTIONS(2007), + [aux_sym_cmd_identifier_token37] = ACTIONS(2007), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2007), + [aux_sym_cmd_identifier_token40] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_export_DASHenv] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_module] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_error] = ACTIONS(2005), + [anon_sym_DASH2] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_in2] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_make] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_do] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_catch] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_source] = ACTIONS(2005), + [anon_sym_source_DASHenv] = ACTIONS(2005), + [anon_sym_register] = ACTIONS(2005), + [anon_sym_hide] = ACTIONS(2005), + [anon_sym_hide_DASHenv] = ACTIONS(2005), + [anon_sym_overlay] = ACTIONS(2005), + [anon_sym_as] = ACTIONS(2005), + [anon_sym_PLUS2] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2005), + [aux_sym__val_number_token5] = ACTIONS(2005), + [aux_sym__val_number_token6] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(2037), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), + [sym_raw_string_begin] = ACTIONS(2007), }, [465] = { [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), + [sym_raw_string_begin] = ACTIONS(986), }, [466] = { - [sym_cell_path] = STATE(707), - [sym_path] = STATE(659), + [sym_cell_path] = STATE(701), + [sym_path] = STATE(631), [sym_comment] = STATE(466), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(969), - [anon_sym_alias] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_let_DASHenv] = ACTIONS(969), - [anon_sym_mut] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [aux_sym_cmd_identifier_token1] = ACTIONS(969), - [aux_sym_cmd_identifier_token2] = ACTIONS(971), - [aux_sym_cmd_identifier_token3] = ACTIONS(971), - [aux_sym_cmd_identifier_token4] = ACTIONS(971), - [aux_sym_cmd_identifier_token5] = ACTIONS(971), - [aux_sym_cmd_identifier_token6] = ACTIONS(971), - [aux_sym_cmd_identifier_token7] = ACTIONS(971), - [aux_sym_cmd_identifier_token8] = ACTIONS(969), - [aux_sym_cmd_identifier_token9] = ACTIONS(969), - [aux_sym_cmd_identifier_token10] = ACTIONS(971), - [aux_sym_cmd_identifier_token11] = ACTIONS(971), - [aux_sym_cmd_identifier_token12] = ACTIONS(969), - [aux_sym_cmd_identifier_token13] = ACTIONS(969), - [aux_sym_cmd_identifier_token14] = ACTIONS(969), - [aux_sym_cmd_identifier_token15] = ACTIONS(969), - [aux_sym_cmd_identifier_token16] = ACTIONS(971), - [aux_sym_cmd_identifier_token17] = ACTIONS(971), - [aux_sym_cmd_identifier_token18] = ACTIONS(971), - [aux_sym_cmd_identifier_token19] = ACTIONS(971), - [aux_sym_cmd_identifier_token20] = ACTIONS(971), - [aux_sym_cmd_identifier_token21] = ACTIONS(971), - [aux_sym_cmd_identifier_token22] = ACTIONS(971), - [aux_sym_cmd_identifier_token23] = ACTIONS(971), - [aux_sym_cmd_identifier_token24] = ACTIONS(971), - [aux_sym_cmd_identifier_token25] = ACTIONS(971), - [aux_sym_cmd_identifier_token26] = ACTIONS(971), - [aux_sym_cmd_identifier_token27] = ACTIONS(971), - [aux_sym_cmd_identifier_token28] = ACTIONS(971), - [aux_sym_cmd_identifier_token29] = ACTIONS(971), - [aux_sym_cmd_identifier_token30] = ACTIONS(971), - [aux_sym_cmd_identifier_token31] = ACTIONS(971), - [aux_sym_cmd_identifier_token32] = ACTIONS(971), - [aux_sym_cmd_identifier_token33] = ACTIONS(971), - [aux_sym_cmd_identifier_token34] = ACTIONS(969), - [aux_sym_cmd_identifier_token35] = ACTIONS(971), - [aux_sym_cmd_identifier_token36] = ACTIONS(971), - [aux_sym_cmd_identifier_token37] = ACTIONS(971), - [aux_sym_cmd_identifier_token38] = ACTIONS(969), - [aux_sym_cmd_identifier_token39] = ACTIONS(971), - [aux_sym_cmd_identifier_token40] = ACTIONS(971), - [anon_sym_def] = ACTIONS(969), - [anon_sym_export_DASHenv] = ACTIONS(969), - [anon_sym_extern] = ACTIONS(969), - [anon_sym_module] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_error] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_make] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [anon_sym_do] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_try] = ACTIONS(969), - [anon_sym_catch] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_source] = ACTIONS(969), - [anon_sym_source_DASHenv] = ACTIONS(969), - [anon_sym_register] = ACTIONS(969), - [anon_sym_hide] = ACTIONS(969), - [anon_sym_hide_DASHenv] = ACTIONS(969), - [anon_sym_overlay] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(969), - [aux_sym__val_number_token5] = ACTIONS(969), - [aux_sym__val_number_token6] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [aux_sym_cmd_identifier_token1] = ACTIONS(2013), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2013), + [aux_sym_cmd_identifier_token9] = ACTIONS(2013), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2013), + [aux_sym_cmd_identifier_token13] = ACTIONS(2013), + [aux_sym_cmd_identifier_token14] = ACTIONS(2013), + [aux_sym_cmd_identifier_token15] = ACTIONS(2013), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2013), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [aux_sym_cmd_identifier_token37] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2015), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_in2] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_make] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_catch] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2013), + [aux_sym__val_number_token5] = ACTIONS(2013), + [aux_sym__val_number_token6] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2015), }, [467] = { - [sym_expr_parenthesized] = STATE(4520), - [sym__spread_parenthesized] = STATE(4974), - [sym_val_range] = STATE(4975), - [sym__val_range] = STATE(8671), - [sym__val_range_with_end] = STATE(8119), - [sym__value] = STATE(4975), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4583), - [sym__spread_variable] = STATE(4976), - [sym_val_variable] = STATE(4532), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4283), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym__spread_list] = STATE(4974), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym__cmd_arg] = STATE(5207), - [sym_redirection] = STATE(4979), - [sym_short_flag] = STATE(4980), - [sym_long_flag] = STATE(4980), - [sym_unquoted] = STATE(4666), - [sym__unquoted_with_expr] = STATE(4984), - [sym__unquoted_anonymous_prefix] = STATE(7799), + [sym_cell_path] = STATE(702), + [sym_path] = STATE(631), [sym_comment] = STATE(467), - [sym__newline] = ACTIONS(2112), - [sym__space] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_err_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_GT_PIPE] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1989), - [anon_sym_DOT_DOT_LT] = ACTIONS(1989), - [anon_sym_null] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1993), - [anon_sym_false] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2005), - [aux_sym__val_number_token5] = ACTIONS(2005), - [aux_sym__val_number_token6] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2021), - [anon_sym_err_GT] = ACTIONS(2023), - [anon_sym_out_GT] = ACTIONS(2023), - [anon_sym_e_GT] = ACTIONS(2023), - [anon_sym_o_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT] = ACTIONS(2023), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2027), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [aux_sym_cmd_identifier_token37] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_DASH2] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in2] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_PLUS2] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [aux_sym__val_number_token4] = ACTIONS(2017), + [aux_sym__val_number_token5] = ACTIONS(2017), + [aux_sym__val_number_token6] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2019), }, [468] = { - [sym_cell_path] = STATE(708), - [sym_path] = STATE(659), + [sym_cell_path] = STATE(703), + [sym_path] = STATE(631), [sym_comment] = STATE(468), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2021), + [anon_sym_alias] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_let_DASHenv] = ACTIONS(2021), + [anon_sym_mut] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [aux_sym_cmd_identifier_token1] = ACTIONS(2021), + [aux_sym_cmd_identifier_token2] = ACTIONS(2023), + [aux_sym_cmd_identifier_token3] = ACTIONS(2023), + [aux_sym_cmd_identifier_token4] = ACTIONS(2023), + [aux_sym_cmd_identifier_token5] = ACTIONS(2023), + [aux_sym_cmd_identifier_token6] = ACTIONS(2023), + [aux_sym_cmd_identifier_token7] = ACTIONS(2023), + [aux_sym_cmd_identifier_token8] = ACTIONS(2021), + [aux_sym_cmd_identifier_token9] = ACTIONS(2021), + [aux_sym_cmd_identifier_token10] = ACTIONS(2023), + [aux_sym_cmd_identifier_token11] = ACTIONS(2023), + [aux_sym_cmd_identifier_token12] = ACTIONS(2021), + [aux_sym_cmd_identifier_token13] = ACTIONS(2021), + [aux_sym_cmd_identifier_token14] = ACTIONS(2021), + [aux_sym_cmd_identifier_token15] = ACTIONS(2021), + [aux_sym_cmd_identifier_token16] = ACTIONS(2023), + [aux_sym_cmd_identifier_token17] = ACTIONS(2023), + [aux_sym_cmd_identifier_token18] = ACTIONS(2023), + [aux_sym_cmd_identifier_token19] = ACTIONS(2023), + [aux_sym_cmd_identifier_token20] = ACTIONS(2023), + [aux_sym_cmd_identifier_token21] = ACTIONS(2023), + [aux_sym_cmd_identifier_token22] = ACTIONS(2023), + [aux_sym_cmd_identifier_token23] = ACTIONS(2023), + [aux_sym_cmd_identifier_token24] = ACTIONS(2023), + [aux_sym_cmd_identifier_token25] = ACTIONS(2023), + [aux_sym_cmd_identifier_token26] = ACTIONS(2023), + [aux_sym_cmd_identifier_token27] = ACTIONS(2023), + [aux_sym_cmd_identifier_token28] = ACTIONS(2023), + [aux_sym_cmd_identifier_token29] = ACTIONS(2023), + [aux_sym_cmd_identifier_token30] = ACTIONS(2023), + [aux_sym_cmd_identifier_token31] = ACTIONS(2023), + [aux_sym_cmd_identifier_token32] = ACTIONS(2023), + [aux_sym_cmd_identifier_token33] = ACTIONS(2023), + [aux_sym_cmd_identifier_token34] = ACTIONS(2021), + [aux_sym_cmd_identifier_token35] = ACTIONS(2023), + [aux_sym_cmd_identifier_token36] = ACTIONS(2023), + [aux_sym_cmd_identifier_token37] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2021), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2021), + [anon_sym_export_DASHenv] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_module] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_error] = ACTIONS(2021), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_in2] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_make] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_do] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2021), + [anon_sym_catch] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_source] = ACTIONS(2021), + [anon_sym_source_DASHenv] = ACTIONS(2021), + [anon_sym_register] = ACTIONS(2021), + [anon_sym_hide] = ACTIONS(2021), + [anon_sym_hide_DASHenv] = ACTIONS(2021), + [anon_sym_overlay] = ACTIONS(2021), + [anon_sym_as] = ACTIONS(2021), + [anon_sym_PLUS2] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [aux_sym__val_number_token4] = ACTIONS(2021), + [aux_sym__val_number_token5] = ACTIONS(2021), + [aux_sym__val_number_token6] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2023), }, [469] = { + [sym_cell_path] = STATE(704), + [sym_path] = STATE(631), [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2025), + [anon_sym_alias] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_let_DASHenv] = ACTIONS(2025), + [anon_sym_mut] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [aux_sym_cmd_identifier_token1] = ACTIONS(2025), + [aux_sym_cmd_identifier_token2] = ACTIONS(2027), + [aux_sym_cmd_identifier_token3] = ACTIONS(2027), + [aux_sym_cmd_identifier_token4] = ACTIONS(2027), + [aux_sym_cmd_identifier_token5] = ACTIONS(2027), + [aux_sym_cmd_identifier_token6] = ACTIONS(2027), + [aux_sym_cmd_identifier_token7] = ACTIONS(2027), + [aux_sym_cmd_identifier_token8] = ACTIONS(2025), + [aux_sym_cmd_identifier_token9] = ACTIONS(2025), + [aux_sym_cmd_identifier_token10] = ACTIONS(2027), + [aux_sym_cmd_identifier_token11] = ACTIONS(2027), + [aux_sym_cmd_identifier_token12] = ACTIONS(2025), + [aux_sym_cmd_identifier_token13] = ACTIONS(2025), + [aux_sym_cmd_identifier_token14] = ACTIONS(2025), + [aux_sym_cmd_identifier_token15] = ACTIONS(2025), + [aux_sym_cmd_identifier_token16] = ACTIONS(2027), + [aux_sym_cmd_identifier_token17] = ACTIONS(2027), + [aux_sym_cmd_identifier_token18] = ACTIONS(2027), + [aux_sym_cmd_identifier_token19] = ACTIONS(2027), + [aux_sym_cmd_identifier_token20] = ACTIONS(2027), + [aux_sym_cmd_identifier_token21] = ACTIONS(2027), + [aux_sym_cmd_identifier_token22] = ACTIONS(2027), + [aux_sym_cmd_identifier_token23] = ACTIONS(2027), + [aux_sym_cmd_identifier_token24] = ACTIONS(2027), + [aux_sym_cmd_identifier_token25] = ACTIONS(2027), + [aux_sym_cmd_identifier_token26] = ACTIONS(2027), + [aux_sym_cmd_identifier_token27] = ACTIONS(2027), + [aux_sym_cmd_identifier_token28] = ACTIONS(2027), + [aux_sym_cmd_identifier_token29] = ACTIONS(2027), + [aux_sym_cmd_identifier_token30] = ACTIONS(2027), + [aux_sym_cmd_identifier_token31] = ACTIONS(2027), + [aux_sym_cmd_identifier_token32] = ACTIONS(2027), + [aux_sym_cmd_identifier_token33] = ACTIONS(2027), + [aux_sym_cmd_identifier_token34] = ACTIONS(2025), + [aux_sym_cmd_identifier_token35] = ACTIONS(2027), + [aux_sym_cmd_identifier_token36] = ACTIONS(2027), + [aux_sym_cmd_identifier_token37] = ACTIONS(2027), + [aux_sym_cmd_identifier_token38] = ACTIONS(2025), + [aux_sym_cmd_identifier_token39] = ACTIONS(2027), + [aux_sym_cmd_identifier_token40] = ACTIONS(2027), + [anon_sym_def] = ACTIONS(2025), + [anon_sym_export_DASHenv] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_module] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2027), + [anon_sym_error] = ACTIONS(2025), + [anon_sym_DASH2] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_in2] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_make] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_do] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_else] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2025), + [anon_sym_catch] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_source] = ACTIONS(2025), + [anon_sym_source_DASHenv] = ACTIONS(2025), + [anon_sym_register] = ACTIONS(2025), + [anon_sym_hide] = ACTIONS(2025), + [anon_sym_hide_DASHenv] = ACTIONS(2025), + [anon_sym_overlay] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(2025), + [anon_sym_PLUS2] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2027), + [aux_sym__val_number_decimal_token1] = ACTIONS(2025), + [aux_sym__val_number_decimal_token2] = ACTIONS(2027), + [aux_sym__val_number_decimal_token3] = ACTIONS(2027), + [aux_sym__val_number_decimal_token4] = ACTIONS(2027), + [aux_sym__val_number_token1] = ACTIONS(2027), + [aux_sym__val_number_token2] = ACTIONS(2027), + [aux_sym__val_number_token3] = ACTIONS(2027), + [aux_sym__val_number_token4] = ACTIONS(2025), + [aux_sym__val_number_token5] = ACTIONS(2025), + [aux_sym__val_number_token6] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2027), + [sym__str_single_quotes] = ACTIONS(2027), + [sym__str_back_ticks] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2027), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [470] = { - [sym_path] = STATE(595), + [sym_cell_path] = STATE(705), + [sym_path] = STATE(631), [sym_comment] = STATE(470), - [aux_sym_cell_path_repeat1] = STATE(471), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2031), + [aux_sym_cmd_identifier_token3] = ACTIONS(2031), + [aux_sym_cmd_identifier_token4] = ACTIONS(2031), + [aux_sym_cmd_identifier_token5] = ACTIONS(2031), + [aux_sym_cmd_identifier_token6] = ACTIONS(2031), + [aux_sym_cmd_identifier_token7] = ACTIONS(2031), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2031), + [aux_sym_cmd_identifier_token11] = ACTIONS(2031), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2031), + [aux_sym_cmd_identifier_token17] = ACTIONS(2031), + [aux_sym_cmd_identifier_token18] = ACTIONS(2031), + [aux_sym_cmd_identifier_token19] = ACTIONS(2031), + [aux_sym_cmd_identifier_token20] = ACTIONS(2031), + [aux_sym_cmd_identifier_token21] = ACTIONS(2031), + [aux_sym_cmd_identifier_token22] = ACTIONS(2031), + [aux_sym_cmd_identifier_token23] = ACTIONS(2031), + [aux_sym_cmd_identifier_token24] = ACTIONS(2031), + [aux_sym_cmd_identifier_token25] = ACTIONS(2031), + [aux_sym_cmd_identifier_token26] = ACTIONS(2031), + [aux_sym_cmd_identifier_token27] = ACTIONS(2031), + [aux_sym_cmd_identifier_token28] = ACTIONS(2031), + [aux_sym_cmd_identifier_token29] = ACTIONS(2031), + [aux_sym_cmd_identifier_token30] = ACTIONS(2031), + [aux_sym_cmd_identifier_token31] = ACTIONS(2031), + [aux_sym_cmd_identifier_token32] = ACTIONS(2031), + [aux_sym_cmd_identifier_token33] = ACTIONS(2031), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2031), + [aux_sym_cmd_identifier_token36] = ACTIONS(2031), + [aux_sym_cmd_identifier_token37] = ACTIONS(2031), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_DASH2] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in2] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_PLUS2] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [aux_sym__val_number_token4] = ACTIONS(2029), + [aux_sym__val_number_token5] = ACTIONS(2029), + [aux_sym__val_number_token6] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2031), + }, + [471] = { + [sym_comment] = STATE(471), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), [aux_sym_cmd_identifier_token2] = ACTIONS(982), [aux_sym_cmd_identifier_token3] = ACTIONS(982), [aux_sym_cmd_identifier_token4] = ACTIONS(982), [aux_sym_cmd_identifier_token5] = ACTIONS(982), [aux_sym_cmd_identifier_token6] = ACTIONS(982), [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), [aux_sym_cmd_identifier_token10] = ACTIONS(982), [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), [aux_sym_cmd_identifier_token16] = ACTIONS(982), [aux_sym_cmd_identifier_token17] = ACTIONS(982), [aux_sym_cmd_identifier_token18] = ACTIONS(982), @@ -136921,480 +131674,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(982), [aux_sym_cmd_identifier_token32] = ACTIONS(982), [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), [aux_sym_cmd_identifier_token35] = ACTIONS(982), [aux_sym_cmd_identifier_token36] = ACTIONS(982), [aux_sym_cmd_identifier_token37] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), [aux_sym_cmd_identifier_token39] = ACTIONS(982), [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), [anon_sym_LPAREN] = ACTIONS(982), [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), [aux_sym__val_number_decimal_token2] = ACTIONS(982), [aux_sym__val_number_decimal_token3] = ACTIONS(982), [aux_sym__val_number_decimal_token4] = ACTIONS(982), [aux_sym__val_number_token1] = ACTIONS(982), [aux_sym__val_number_token2] = ACTIONS(982), [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), [anon_sym_DQUOTE] = ACTIONS(982), [sym__str_single_quotes] = ACTIONS(982), [sym__str_back_ticks] = ACTIONS(982), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [sym__entry_separator] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(984), - }, - [471] = { - [sym_path] = STATE(595), - [sym_comment] = STATE(471), - [aux_sym_cell_path_repeat1] = STATE(471), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [aux_sym_cmd_identifier_token1] = ACTIONS(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(975), - [aux_sym_cmd_identifier_token3] = ACTIONS(975), - [aux_sym_cmd_identifier_token4] = ACTIONS(975), - [aux_sym_cmd_identifier_token5] = ACTIONS(975), - [aux_sym_cmd_identifier_token6] = ACTIONS(975), - [aux_sym_cmd_identifier_token7] = ACTIONS(975), - [aux_sym_cmd_identifier_token8] = ACTIONS(975), - [aux_sym_cmd_identifier_token9] = ACTIONS(975), - [aux_sym_cmd_identifier_token10] = ACTIONS(975), - [aux_sym_cmd_identifier_token11] = ACTIONS(975), - [aux_sym_cmd_identifier_token12] = ACTIONS(975), - [aux_sym_cmd_identifier_token13] = ACTIONS(975), - [aux_sym_cmd_identifier_token14] = ACTIONS(975), - [aux_sym_cmd_identifier_token15] = ACTIONS(975), - [aux_sym_cmd_identifier_token16] = ACTIONS(975), - [aux_sym_cmd_identifier_token17] = ACTIONS(975), - [aux_sym_cmd_identifier_token18] = ACTIONS(975), - [aux_sym_cmd_identifier_token19] = ACTIONS(975), - [aux_sym_cmd_identifier_token20] = ACTIONS(975), - [aux_sym_cmd_identifier_token21] = ACTIONS(975), - [aux_sym_cmd_identifier_token22] = ACTIONS(975), - [aux_sym_cmd_identifier_token23] = ACTIONS(975), - [aux_sym_cmd_identifier_token24] = ACTIONS(975), - [aux_sym_cmd_identifier_token25] = ACTIONS(975), - [aux_sym_cmd_identifier_token26] = ACTIONS(975), - [aux_sym_cmd_identifier_token27] = ACTIONS(975), - [aux_sym_cmd_identifier_token28] = ACTIONS(975), - [aux_sym_cmd_identifier_token29] = ACTIONS(975), - [aux_sym_cmd_identifier_token30] = ACTIONS(975), - [aux_sym_cmd_identifier_token31] = ACTIONS(975), - [aux_sym_cmd_identifier_token32] = ACTIONS(975), - [aux_sym_cmd_identifier_token33] = ACTIONS(975), - [aux_sym_cmd_identifier_token34] = ACTIONS(975), - [aux_sym_cmd_identifier_token35] = ACTIONS(975), - [aux_sym_cmd_identifier_token36] = ACTIONS(975), - [aux_sym_cmd_identifier_token37] = ACTIONS(975), - [aux_sym_cmd_identifier_token38] = ACTIONS(975), - [aux_sym_cmd_identifier_token39] = ACTIONS(975), - [aux_sym_cmd_identifier_token40] = ACTIONS(975), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(975), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(975), - [aux_sym__val_number_decimal_token3] = ACTIONS(975), - [aux_sym__val_number_decimal_token4] = ACTIONS(975), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(975), - [sym__str_single_quotes] = ACTIONS(975), - [sym__str_back_ticks] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(975), - [sym__entry_separator] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(977), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), }, [472] = { [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1024), - [aux_sym_cmd_identifier_token3] = ACTIONS(1024), - [aux_sym_cmd_identifier_token4] = ACTIONS(1024), - [aux_sym_cmd_identifier_token5] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1024), - [aux_sym_cmd_identifier_token7] = ACTIONS(1024), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1024), - [aux_sym_cmd_identifier_token11] = ACTIONS(1024), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1024), - [aux_sym_cmd_identifier_token17] = ACTIONS(1024), - [aux_sym_cmd_identifier_token18] = ACTIONS(1024), - [aux_sym_cmd_identifier_token19] = ACTIONS(1024), - [aux_sym_cmd_identifier_token20] = ACTIONS(1024), - [aux_sym_cmd_identifier_token21] = ACTIONS(1024), - [aux_sym_cmd_identifier_token22] = ACTIONS(1024), - [aux_sym_cmd_identifier_token23] = ACTIONS(1024), - [aux_sym_cmd_identifier_token24] = ACTIONS(1024), - [aux_sym_cmd_identifier_token25] = ACTIONS(1024), - [aux_sym_cmd_identifier_token26] = ACTIONS(1024), - [aux_sym_cmd_identifier_token27] = ACTIONS(1024), - [aux_sym_cmd_identifier_token28] = ACTIONS(1024), - [aux_sym_cmd_identifier_token29] = ACTIONS(1024), - [aux_sym_cmd_identifier_token30] = ACTIONS(1024), - [aux_sym_cmd_identifier_token31] = ACTIONS(1024), - [aux_sym_cmd_identifier_token32] = ACTIONS(1024), - [aux_sym_cmd_identifier_token33] = ACTIONS(1024), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1024), - [aux_sym_cmd_identifier_token36] = ACTIONS(1024), - [aux_sym_cmd_identifier_token37] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_alias] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_let_DASHenv] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [aux_sym_cmd_identifier_token1] = ACTIONS(2115), + [aux_sym_cmd_identifier_token2] = ACTIONS(2115), + [aux_sym_cmd_identifier_token3] = ACTIONS(2115), + [aux_sym_cmd_identifier_token4] = ACTIONS(2115), + [aux_sym_cmd_identifier_token5] = ACTIONS(2115), + [aux_sym_cmd_identifier_token6] = ACTIONS(2115), + [aux_sym_cmd_identifier_token7] = ACTIONS(2115), + [aux_sym_cmd_identifier_token8] = ACTIONS(2115), + [aux_sym_cmd_identifier_token9] = ACTIONS(2115), + [aux_sym_cmd_identifier_token10] = ACTIONS(2115), + [aux_sym_cmd_identifier_token11] = ACTIONS(2115), + [aux_sym_cmd_identifier_token12] = ACTIONS(2115), + [aux_sym_cmd_identifier_token13] = ACTIONS(2115), + [aux_sym_cmd_identifier_token14] = ACTIONS(2115), + [aux_sym_cmd_identifier_token15] = ACTIONS(2115), + [aux_sym_cmd_identifier_token16] = ACTIONS(2115), + [aux_sym_cmd_identifier_token17] = ACTIONS(2115), + [aux_sym_cmd_identifier_token18] = ACTIONS(2115), + [aux_sym_cmd_identifier_token19] = ACTIONS(2115), + [aux_sym_cmd_identifier_token20] = ACTIONS(2115), + [aux_sym_cmd_identifier_token21] = ACTIONS(2115), + [aux_sym_cmd_identifier_token22] = ACTIONS(2115), + [aux_sym_cmd_identifier_token23] = ACTIONS(2115), + [aux_sym_cmd_identifier_token24] = ACTIONS(2115), + [aux_sym_cmd_identifier_token25] = ACTIONS(2115), + [aux_sym_cmd_identifier_token26] = ACTIONS(2115), + [aux_sym_cmd_identifier_token27] = ACTIONS(2115), + [aux_sym_cmd_identifier_token28] = ACTIONS(2115), + [aux_sym_cmd_identifier_token29] = ACTIONS(2115), + [aux_sym_cmd_identifier_token30] = ACTIONS(2115), + [aux_sym_cmd_identifier_token31] = ACTIONS(2115), + [aux_sym_cmd_identifier_token32] = ACTIONS(2115), + [aux_sym_cmd_identifier_token33] = ACTIONS(2115), + [aux_sym_cmd_identifier_token34] = ACTIONS(2115), + [aux_sym_cmd_identifier_token35] = ACTIONS(2115), + [aux_sym_cmd_identifier_token36] = ACTIONS(2115), + [aux_sym_cmd_identifier_token37] = ACTIONS(2115), + [aux_sym_cmd_identifier_token38] = ACTIONS(2115), + [aux_sym_cmd_identifier_token39] = ACTIONS(2115), + [aux_sym_cmd_identifier_token40] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2115), + [anon_sym_export_DASHenv] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_module] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_DOLLAR] = ACTIONS(2115), + [anon_sym_error] = ACTIONS(2115), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_in2] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_make] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_do] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_catch] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_source] = ACTIONS(2115), + [anon_sym_source_DASHenv] = ACTIONS(2115), + [anon_sym_register] = ACTIONS(2115), + [anon_sym_hide] = ACTIONS(2115), + [anon_sym_hide_DASHenv] = ACTIONS(2115), + [anon_sym_overlay] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_PLUS2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2115), + [anon_sym_DOT_DOT2] = ACTIONS(2117), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2119), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2115), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2115), + [aux_sym__val_number_decimal_token3] = ACTIONS(2115), + [aux_sym__val_number_decimal_token4] = ACTIONS(2115), + [aux_sym__val_number_token1] = ACTIONS(2115), + [aux_sym__val_number_token2] = ACTIONS(2115), + [aux_sym__val_number_token3] = ACTIONS(2115), + [aux_sym__val_number_token4] = ACTIONS(2115), + [aux_sym__val_number_token5] = ACTIONS(2115), + [aux_sym__val_number_token6] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2115), + [sym__str_single_quotes] = ACTIONS(2115), + [sym__str_back_ticks] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2115), + [sym__entry_separator] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2121), }, [473] = { [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1773), - [aux_sym_cmd_identifier_token3] = ACTIONS(1773), - [aux_sym_cmd_identifier_token4] = ACTIONS(1773), - [aux_sym_cmd_identifier_token5] = ACTIONS(1773), - [aux_sym_cmd_identifier_token6] = ACTIONS(1773), - [aux_sym_cmd_identifier_token7] = ACTIONS(1773), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1773), - [aux_sym_cmd_identifier_token11] = ACTIONS(1773), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1773), - [aux_sym_cmd_identifier_token17] = ACTIONS(1773), - [aux_sym_cmd_identifier_token18] = ACTIONS(1773), - [aux_sym_cmd_identifier_token19] = ACTIONS(1773), - [aux_sym_cmd_identifier_token20] = ACTIONS(1773), - [aux_sym_cmd_identifier_token21] = ACTIONS(1773), - [aux_sym_cmd_identifier_token22] = ACTIONS(1773), - [aux_sym_cmd_identifier_token23] = ACTIONS(1773), - [aux_sym_cmd_identifier_token24] = ACTIONS(1773), - [aux_sym_cmd_identifier_token25] = ACTIONS(1773), - [aux_sym_cmd_identifier_token26] = ACTIONS(1773), - [aux_sym_cmd_identifier_token27] = ACTIONS(1773), - [aux_sym_cmd_identifier_token28] = ACTIONS(1773), - [aux_sym_cmd_identifier_token29] = ACTIONS(1773), - [aux_sym_cmd_identifier_token30] = ACTIONS(1773), - [aux_sym_cmd_identifier_token31] = ACTIONS(1773), - [aux_sym_cmd_identifier_token32] = ACTIONS(1773), - [aux_sym_cmd_identifier_token33] = ACTIONS(1773), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1773), - [aux_sym_cmd_identifier_token36] = ACTIONS(1773), - [aux_sym_cmd_identifier_token37] = ACTIONS(1773), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1773), - [aux_sym_cmd_identifier_token40] = ACTIONS(1773), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(2119), - [aux_sym__immediate_decimal_token2] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), }, [474] = { [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [aux_sym_cmd_identifier_token1] = ACTIONS(1763), - [aux_sym_cmd_identifier_token2] = ACTIONS(1763), - [aux_sym_cmd_identifier_token3] = ACTIONS(1763), - [aux_sym_cmd_identifier_token4] = ACTIONS(1763), - [aux_sym_cmd_identifier_token5] = ACTIONS(1763), - [aux_sym_cmd_identifier_token6] = ACTIONS(1763), - [aux_sym_cmd_identifier_token7] = ACTIONS(1763), - [aux_sym_cmd_identifier_token8] = ACTIONS(1763), - [aux_sym_cmd_identifier_token9] = ACTIONS(1763), - [aux_sym_cmd_identifier_token10] = ACTIONS(1763), - [aux_sym_cmd_identifier_token11] = ACTIONS(1763), - [aux_sym_cmd_identifier_token12] = ACTIONS(1763), - [aux_sym_cmd_identifier_token13] = ACTIONS(1763), - [aux_sym_cmd_identifier_token14] = ACTIONS(1763), - [aux_sym_cmd_identifier_token15] = ACTIONS(1763), - [aux_sym_cmd_identifier_token16] = ACTIONS(1763), - [aux_sym_cmd_identifier_token17] = ACTIONS(1763), - [aux_sym_cmd_identifier_token18] = ACTIONS(1763), - [aux_sym_cmd_identifier_token19] = ACTIONS(1763), - [aux_sym_cmd_identifier_token20] = ACTIONS(1763), - [aux_sym_cmd_identifier_token21] = ACTIONS(1763), - [aux_sym_cmd_identifier_token22] = ACTIONS(1763), - [aux_sym_cmd_identifier_token23] = ACTIONS(1763), - [aux_sym_cmd_identifier_token24] = ACTIONS(1763), - [aux_sym_cmd_identifier_token25] = ACTIONS(1763), - [aux_sym_cmd_identifier_token26] = ACTIONS(1763), - [aux_sym_cmd_identifier_token27] = ACTIONS(1763), - [aux_sym_cmd_identifier_token28] = ACTIONS(1763), - [aux_sym_cmd_identifier_token29] = ACTIONS(1763), - [aux_sym_cmd_identifier_token30] = ACTIONS(1763), - [aux_sym_cmd_identifier_token31] = ACTIONS(1763), - [aux_sym_cmd_identifier_token32] = ACTIONS(1763), - [aux_sym_cmd_identifier_token33] = ACTIONS(1763), - [aux_sym_cmd_identifier_token34] = ACTIONS(1763), - [aux_sym_cmd_identifier_token35] = ACTIONS(1763), - [aux_sym_cmd_identifier_token36] = ACTIONS(1763), - [aux_sym_cmd_identifier_token37] = ACTIONS(1763), - [aux_sym_cmd_identifier_token38] = ACTIONS(1763), - [aux_sym_cmd_identifier_token39] = ACTIONS(1763), - [aux_sym_cmd_identifier_token40] = ACTIONS(1763), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_make] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_catch] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1763), - [aux_sym__val_number_decimal_token3] = ACTIONS(1763), - [aux_sym__val_number_decimal_token4] = ACTIONS(1763), - [aux_sym__val_number_token1] = ACTIONS(1763), - [aux_sym__val_number_token2] = ACTIONS(1763), - [aux_sym__val_number_token3] = ACTIONS(1763), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1763), - [sym__entry_separator] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1765), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), }, [475] = { + [sym_cell_path] = STATE(729), + [sym_path] = STATE(631), [sym_comment] = STATE(475), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1933), + [anon_sym_alias] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_let_DASHenv] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [aux_sym_cmd_identifier_token1] = ACTIONS(1933), + [aux_sym_cmd_identifier_token2] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [aux_sym_cmd_identifier_token6] = ACTIONS(1935), + [aux_sym_cmd_identifier_token7] = ACTIONS(1935), + [aux_sym_cmd_identifier_token8] = ACTIONS(1933), + [aux_sym_cmd_identifier_token9] = ACTIONS(1933), + [aux_sym_cmd_identifier_token10] = ACTIONS(1935), + [aux_sym_cmd_identifier_token11] = ACTIONS(1935), + [aux_sym_cmd_identifier_token12] = ACTIONS(1933), + [aux_sym_cmd_identifier_token13] = ACTIONS(1933), + [aux_sym_cmd_identifier_token14] = ACTIONS(1933), + [aux_sym_cmd_identifier_token15] = ACTIONS(1933), + [aux_sym_cmd_identifier_token16] = ACTIONS(1935), + [aux_sym_cmd_identifier_token17] = ACTIONS(1935), + [aux_sym_cmd_identifier_token18] = ACTIONS(1935), + [aux_sym_cmd_identifier_token19] = ACTIONS(1935), + [aux_sym_cmd_identifier_token20] = ACTIONS(1935), + [aux_sym_cmd_identifier_token21] = ACTIONS(1935), + [aux_sym_cmd_identifier_token22] = ACTIONS(1935), + [aux_sym_cmd_identifier_token23] = ACTIONS(1935), + [aux_sym_cmd_identifier_token24] = ACTIONS(1935), + [aux_sym_cmd_identifier_token25] = ACTIONS(1935), + [aux_sym_cmd_identifier_token26] = ACTIONS(1935), + [aux_sym_cmd_identifier_token27] = ACTIONS(1935), + [aux_sym_cmd_identifier_token28] = ACTIONS(1935), + [aux_sym_cmd_identifier_token29] = ACTIONS(1935), + [aux_sym_cmd_identifier_token30] = ACTIONS(1935), + [aux_sym_cmd_identifier_token31] = ACTIONS(1935), + [aux_sym_cmd_identifier_token32] = ACTIONS(1935), + [aux_sym_cmd_identifier_token33] = ACTIONS(1935), + [aux_sym_cmd_identifier_token34] = ACTIONS(1933), + [aux_sym_cmd_identifier_token35] = ACTIONS(1935), + [aux_sym_cmd_identifier_token36] = ACTIONS(1935), + [aux_sym_cmd_identifier_token37] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1933), + [aux_sym_cmd_identifier_token39] = ACTIONS(1935), + [aux_sym_cmd_identifier_token40] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1933), + [anon_sym_export_DASHenv] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_module] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1935), + [anon_sym_error] = ACTIONS(1933), + [anon_sym_DASH2] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_in2] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_make] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_do] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_else] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1933), + [anon_sym_catch] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_source] = ACTIONS(1933), + [anon_sym_source_DASHenv] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_hide] = ACTIONS(1933), + [anon_sym_hide_DASHenv] = ACTIONS(1933), + [anon_sym_overlay] = ACTIONS(1933), + [anon_sym_as] = ACTIONS(1933), + [anon_sym_PLUS2] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1933), + [aux_sym__val_number_decimal_token2] = ACTIONS(1935), + [aux_sym__val_number_decimal_token3] = ACTIONS(1935), + [aux_sym__val_number_decimal_token4] = ACTIONS(1935), + [aux_sym__val_number_token1] = ACTIONS(1935), + [aux_sym__val_number_token2] = ACTIONS(1935), + [aux_sym__val_number_token3] = ACTIONS(1935), + [aux_sym__val_number_token4] = ACTIONS(1933), + [aux_sym__val_number_token5] = ACTIONS(1933), + [aux_sym__val_number_token6] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1935), + [sym__str_single_quotes] = ACTIONS(1935), + [sym__str_back_ticks] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1935), + }, + [476] = { + [sym_comment] = STATE(476), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -137496,111 +132251,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1773), }, - [476] = { - [sym_cell_path] = STATE(760), - [sym_path] = STATE(659), - [sym_comment] = STATE(476), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2035), - [aux_sym_cmd_identifier_token3] = ACTIONS(2035), - [aux_sym_cmd_identifier_token4] = ACTIONS(2035), - [aux_sym_cmd_identifier_token5] = ACTIONS(2035), - [aux_sym_cmd_identifier_token6] = ACTIONS(2035), - [aux_sym_cmd_identifier_token7] = ACTIONS(2035), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2035), - [aux_sym_cmd_identifier_token11] = ACTIONS(2035), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2035), - [aux_sym_cmd_identifier_token17] = ACTIONS(2035), - [aux_sym_cmd_identifier_token18] = ACTIONS(2035), - [aux_sym_cmd_identifier_token19] = ACTIONS(2035), - [aux_sym_cmd_identifier_token20] = ACTIONS(2035), - [aux_sym_cmd_identifier_token21] = ACTIONS(2035), - [aux_sym_cmd_identifier_token22] = ACTIONS(2035), - [aux_sym_cmd_identifier_token23] = ACTIONS(2035), - [aux_sym_cmd_identifier_token24] = ACTIONS(2035), - [aux_sym_cmd_identifier_token25] = ACTIONS(2035), - [aux_sym_cmd_identifier_token26] = ACTIONS(2035), - [aux_sym_cmd_identifier_token27] = ACTIONS(2035), - [aux_sym_cmd_identifier_token28] = ACTIONS(2035), - [aux_sym_cmd_identifier_token29] = ACTIONS(2035), - [aux_sym_cmd_identifier_token30] = ACTIONS(2035), - [aux_sym_cmd_identifier_token31] = ACTIONS(2035), - [aux_sym_cmd_identifier_token32] = ACTIONS(2035), - [aux_sym_cmd_identifier_token33] = ACTIONS(2035), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2035), - [aux_sym_cmd_identifier_token36] = ACTIONS(2035), - [aux_sym_cmd_identifier_token37] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in2] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_PLUS2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2035), - }, [477] = { [sym_comment] = STATE(477), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [sym__entry_separator] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1788), + }, + [478] = { + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), + }, + [479] = { + [sym_cell_path] = STATE(711), + [sym_path] = STATE(631), + [sym_comment] = STATE(479), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1939), + [aux_sym_cmd_identifier_token3] = ACTIONS(1939), + [aux_sym_cmd_identifier_token4] = ACTIONS(1939), + [aux_sym_cmd_identifier_token5] = ACTIONS(1939), + [aux_sym_cmd_identifier_token6] = ACTIONS(1939), + [aux_sym_cmd_identifier_token7] = ACTIONS(1939), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1939), + [aux_sym_cmd_identifier_token11] = ACTIONS(1939), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1939), + [aux_sym_cmd_identifier_token17] = ACTIONS(1939), + [aux_sym_cmd_identifier_token18] = ACTIONS(1939), + [aux_sym_cmd_identifier_token19] = ACTIONS(1939), + [aux_sym_cmd_identifier_token20] = ACTIONS(1939), + [aux_sym_cmd_identifier_token21] = ACTIONS(1939), + [aux_sym_cmd_identifier_token22] = ACTIONS(1939), + [aux_sym_cmd_identifier_token23] = ACTIONS(1939), + [aux_sym_cmd_identifier_token24] = ACTIONS(1939), + [aux_sym_cmd_identifier_token25] = ACTIONS(1939), + [aux_sym_cmd_identifier_token26] = ACTIONS(1939), + [aux_sym_cmd_identifier_token27] = ACTIONS(1939), + [aux_sym_cmd_identifier_token28] = ACTIONS(1939), + [aux_sym_cmd_identifier_token29] = ACTIONS(1939), + [aux_sym_cmd_identifier_token30] = ACTIONS(1939), + [aux_sym_cmd_identifier_token31] = ACTIONS(1939), + [aux_sym_cmd_identifier_token32] = ACTIONS(1939), + [aux_sym_cmd_identifier_token33] = ACTIONS(1939), + [aux_sym_cmd_identifier_token34] = ACTIONS(1937), + [aux_sym_cmd_identifier_token35] = ACTIONS(1939), + [aux_sym_cmd_identifier_token36] = ACTIONS(1939), + [aux_sym_cmd_identifier_token37] = ACTIONS(1939), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1939), + [aux_sym_cmd_identifier_token40] = ACTIONS(1939), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_export_DASHenv] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1937), + [anon_sym_DASH2] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_in2] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_make] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_else] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_catch] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_source] = ACTIONS(1937), + [anon_sym_source_DASHenv] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1937), + [anon_sym_hide] = ACTIONS(1937), + [anon_sym_hide_DASHenv] = ACTIONS(1937), + [anon_sym_overlay] = ACTIONS(1937), + [anon_sym_as] = ACTIONS(1937), + [anon_sym_PLUS2] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [aux_sym__val_number_token4] = ACTIONS(1937), + [aux_sym__val_number_token5] = ACTIONS(1937), + [aux_sym__val_number_token6] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1939), + }, + [480] = { + [sym_comment] = STATE(480), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -137608,52 +132569,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1018), [anon_sym_const] = ACTIONS(1018), [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token2] = ACTIONS(1018), + [aux_sym_cmd_identifier_token3] = ACTIONS(1018), + [aux_sym_cmd_identifier_token4] = ACTIONS(1018), + [aux_sym_cmd_identifier_token5] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [aux_sym_cmd_identifier_token7] = ACTIONS(1018), [aux_sym_cmd_identifier_token8] = ACTIONS(1018), [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token10] = ACTIONS(1018), + [aux_sym_cmd_identifier_token11] = ACTIONS(1018), [aux_sym_cmd_identifier_token12] = ACTIONS(1018), [aux_sym_cmd_identifier_token13] = ACTIONS(1018), [aux_sym_cmd_identifier_token14] = ACTIONS(1018), [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token16] = ACTIONS(1018), + [aux_sym_cmd_identifier_token17] = ACTIONS(1018), + [aux_sym_cmd_identifier_token18] = ACTIONS(1018), + [aux_sym_cmd_identifier_token19] = ACTIONS(1018), + [aux_sym_cmd_identifier_token20] = ACTIONS(1018), + [aux_sym_cmd_identifier_token21] = ACTIONS(1018), + [aux_sym_cmd_identifier_token22] = ACTIONS(1018), + [aux_sym_cmd_identifier_token23] = ACTIONS(1018), + [aux_sym_cmd_identifier_token24] = ACTIONS(1018), + [aux_sym_cmd_identifier_token25] = ACTIONS(1018), + [aux_sym_cmd_identifier_token26] = ACTIONS(1018), + [aux_sym_cmd_identifier_token27] = ACTIONS(1018), + [aux_sym_cmd_identifier_token28] = ACTIONS(1018), + [aux_sym_cmd_identifier_token29] = ACTIONS(1018), + [aux_sym_cmd_identifier_token30] = ACTIONS(1018), + [aux_sym_cmd_identifier_token31] = ACTIONS(1018), + [aux_sym_cmd_identifier_token32] = ACTIONS(1018), + [aux_sym_cmd_identifier_token33] = ACTIONS(1018), [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token35] = ACTIONS(1018), + [aux_sym_cmd_identifier_token36] = ACTIONS(1018), + [aux_sym_cmd_identifier_token37] = ACTIONS(1018), [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [aux_sym_cmd_identifier_token39] = ACTIONS(1018), + [aux_sym_cmd_identifier_token40] = ACTIONS(1018), [anon_sym_def] = ACTIONS(1018), [anon_sym_export_DASHenv] = ACTIONS(1018), [anon_sym_extern] = ACTIONS(1018), [anon_sym_module] = ACTIONS(1018), [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_error] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(1018), [anon_sym_break] = ACTIONS(1018), @@ -137667,7 +132628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(1018), [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1018), [anon_sym_try] = ACTIONS(1018), [anon_sym_catch] = ACTIONS(1018), [anon_sym_return] = ACTIONS(1018), @@ -137679,3839 +132640,4437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1018), [anon_sym_as] = ACTIONS(1018), [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token2] = ACTIONS(1018), + [aux_sym__val_number_decimal_token3] = ACTIONS(1018), + [aux_sym__val_number_decimal_token4] = ACTIONS(1018), + [aux_sym__val_number_token1] = ACTIONS(1018), + [aux_sym__val_number_token2] = ACTIONS(1018), + [aux_sym__val_number_token3] = ACTIONS(1018), [aux_sym__val_number_token4] = ACTIONS(1018), [aux_sym__val_number_token5] = ACTIONS(1018), [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), - }, - [478] = { - [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [479] = { - [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [480] = { - [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(2123), - [anon_sym_alias] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_let_DASHenv] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [aux_sym_cmd_identifier_token1] = ACTIONS(2123), - [aux_sym_cmd_identifier_token2] = ACTIONS(2123), - [aux_sym_cmd_identifier_token3] = ACTIONS(2123), - [aux_sym_cmd_identifier_token4] = ACTIONS(2123), - [aux_sym_cmd_identifier_token5] = ACTIONS(2123), - [aux_sym_cmd_identifier_token6] = ACTIONS(2123), - [aux_sym_cmd_identifier_token7] = ACTIONS(2123), - [aux_sym_cmd_identifier_token8] = ACTIONS(2123), - [aux_sym_cmd_identifier_token9] = ACTIONS(2123), - [aux_sym_cmd_identifier_token10] = ACTIONS(2123), - [aux_sym_cmd_identifier_token11] = ACTIONS(2123), - [aux_sym_cmd_identifier_token12] = ACTIONS(2123), - [aux_sym_cmd_identifier_token13] = ACTIONS(2123), - [aux_sym_cmd_identifier_token14] = ACTIONS(2123), - [aux_sym_cmd_identifier_token15] = ACTIONS(2123), - [aux_sym_cmd_identifier_token16] = ACTIONS(2123), - [aux_sym_cmd_identifier_token17] = ACTIONS(2123), - [aux_sym_cmd_identifier_token18] = ACTIONS(2123), - [aux_sym_cmd_identifier_token19] = ACTIONS(2123), - [aux_sym_cmd_identifier_token20] = ACTIONS(2123), - [aux_sym_cmd_identifier_token21] = ACTIONS(2123), - [aux_sym_cmd_identifier_token22] = ACTIONS(2123), - [aux_sym_cmd_identifier_token23] = ACTIONS(2123), - [aux_sym_cmd_identifier_token24] = ACTIONS(2123), - [aux_sym_cmd_identifier_token25] = ACTIONS(2123), - [aux_sym_cmd_identifier_token26] = ACTIONS(2123), - [aux_sym_cmd_identifier_token27] = ACTIONS(2123), - [aux_sym_cmd_identifier_token28] = ACTIONS(2123), - [aux_sym_cmd_identifier_token29] = ACTIONS(2123), - [aux_sym_cmd_identifier_token30] = ACTIONS(2123), - [aux_sym_cmd_identifier_token31] = ACTIONS(2123), - [aux_sym_cmd_identifier_token32] = ACTIONS(2123), - [aux_sym_cmd_identifier_token33] = ACTIONS(2123), - [aux_sym_cmd_identifier_token34] = ACTIONS(2123), - [aux_sym_cmd_identifier_token35] = ACTIONS(2123), - [aux_sym_cmd_identifier_token36] = ACTIONS(2123), - [aux_sym_cmd_identifier_token37] = ACTIONS(2123), - [aux_sym_cmd_identifier_token38] = ACTIONS(2123), - [aux_sym_cmd_identifier_token39] = ACTIONS(2123), - [aux_sym_cmd_identifier_token40] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2123), - [anon_sym_export_DASHenv] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_module] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_DOLLAR] = ACTIONS(2123), - [anon_sym_error] = ACTIONS(2123), - [anon_sym_DASH2] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_in2] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_make] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_do] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_catch] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_source] = ACTIONS(2123), - [anon_sym_source_DASHenv] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2123), - [anon_sym_hide] = ACTIONS(2123), - [anon_sym_hide_DASHenv] = ACTIONS(2123), - [anon_sym_overlay] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_PLUS2] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2123), - [anon_sym_DOT_DOT2] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2123), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2123), - [aux_sym__val_number_decimal_token3] = ACTIONS(2123), - [aux_sym__val_number_decimal_token4] = ACTIONS(2123), - [aux_sym__val_number_token1] = ACTIONS(2123), - [aux_sym__val_number_token2] = ACTIONS(2123), - [aux_sym__val_number_token3] = ACTIONS(2123), - [aux_sym__val_number_token4] = ACTIONS(2123), - [aux_sym__val_number_token5] = ACTIONS(2123), - [aux_sym__val_number_token6] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [sym__str_single_quotes] = ACTIONS(2123), - [sym__str_back_ticks] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2123), - [sym__entry_separator] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), + [sym__entry_separator] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2125), + [sym_raw_string_begin] = ACTIONS(1020), }, [481] = { - [sym_cell_path] = STATE(693), - [sym_path] = STATE(659), + [sym_cell_path] = STATE(746), + [sym_path] = STATE(631), [sym_comment] = STATE(481), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2053), - [anon_sym_alias] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_let_DASHenv] = ACTIONS(2053), - [anon_sym_mut] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [aux_sym_cmd_identifier_token1] = ACTIONS(2053), - [aux_sym_cmd_identifier_token2] = ACTIONS(2055), - [aux_sym_cmd_identifier_token3] = ACTIONS(2055), - [aux_sym_cmd_identifier_token4] = ACTIONS(2055), - [aux_sym_cmd_identifier_token5] = ACTIONS(2055), - [aux_sym_cmd_identifier_token6] = ACTIONS(2055), - [aux_sym_cmd_identifier_token7] = ACTIONS(2055), - [aux_sym_cmd_identifier_token8] = ACTIONS(2053), - [aux_sym_cmd_identifier_token9] = ACTIONS(2053), - [aux_sym_cmd_identifier_token10] = ACTIONS(2055), - [aux_sym_cmd_identifier_token11] = ACTIONS(2055), - [aux_sym_cmd_identifier_token12] = ACTIONS(2053), - [aux_sym_cmd_identifier_token13] = ACTIONS(2053), - [aux_sym_cmd_identifier_token14] = ACTIONS(2053), - [aux_sym_cmd_identifier_token15] = ACTIONS(2053), - [aux_sym_cmd_identifier_token16] = ACTIONS(2055), - [aux_sym_cmd_identifier_token17] = ACTIONS(2055), - [aux_sym_cmd_identifier_token18] = ACTIONS(2055), - [aux_sym_cmd_identifier_token19] = ACTIONS(2055), - [aux_sym_cmd_identifier_token20] = ACTIONS(2055), - [aux_sym_cmd_identifier_token21] = ACTIONS(2055), - [aux_sym_cmd_identifier_token22] = ACTIONS(2055), - [aux_sym_cmd_identifier_token23] = ACTIONS(2055), - [aux_sym_cmd_identifier_token24] = ACTIONS(2055), - [aux_sym_cmd_identifier_token25] = ACTIONS(2055), - [aux_sym_cmd_identifier_token26] = ACTIONS(2055), - [aux_sym_cmd_identifier_token27] = ACTIONS(2055), - [aux_sym_cmd_identifier_token28] = ACTIONS(2055), - [aux_sym_cmd_identifier_token29] = ACTIONS(2055), - [aux_sym_cmd_identifier_token30] = ACTIONS(2055), - [aux_sym_cmd_identifier_token31] = ACTIONS(2055), - [aux_sym_cmd_identifier_token32] = ACTIONS(2055), - [aux_sym_cmd_identifier_token33] = ACTIONS(2055), - [aux_sym_cmd_identifier_token34] = ACTIONS(2053), - [aux_sym_cmd_identifier_token35] = ACTIONS(2055), - [aux_sym_cmd_identifier_token36] = ACTIONS(2055), - [aux_sym_cmd_identifier_token37] = ACTIONS(2055), - [aux_sym_cmd_identifier_token38] = ACTIONS(2053), - [aux_sym_cmd_identifier_token39] = ACTIONS(2055), - [aux_sym_cmd_identifier_token40] = ACTIONS(2055), - [anon_sym_def] = ACTIONS(2053), - [anon_sym_export_DASHenv] = ACTIONS(2053), - [anon_sym_extern] = ACTIONS(2053), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2055), - [anon_sym_error] = ACTIONS(2053), - [anon_sym_DASH2] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_in2] = ACTIONS(2053), - [anon_sym_loop] = ACTIONS(2053), - [anon_sym_make] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_do] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_else] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2053), - [anon_sym_catch] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_source] = ACTIONS(2053), - [anon_sym_source_DASHenv] = ACTIONS(2053), - [anon_sym_register] = ACTIONS(2053), - [anon_sym_hide] = ACTIONS(2053), - [anon_sym_hide_DASHenv] = ACTIONS(2053), - [anon_sym_overlay] = ACTIONS(2053), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_decimal_token4] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [aux_sym__val_number_token4] = ACTIONS(2053), - [aux_sym__val_number_token5] = ACTIONS(2053), - [aux_sym__val_number_token6] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2055), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_alias] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_let_DASHenv] = ACTIONS(1922), + [anon_sym_mut] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [aux_sym_cmd_identifier_token1] = ACTIONS(1922), + [aux_sym_cmd_identifier_token2] = ACTIONS(1924), + [aux_sym_cmd_identifier_token3] = ACTIONS(1924), + [aux_sym_cmd_identifier_token4] = ACTIONS(1924), + [aux_sym_cmd_identifier_token5] = ACTIONS(1924), + [aux_sym_cmd_identifier_token6] = ACTIONS(1924), + [aux_sym_cmd_identifier_token7] = ACTIONS(1924), + [aux_sym_cmd_identifier_token8] = ACTIONS(1922), + [aux_sym_cmd_identifier_token9] = ACTIONS(1922), + [aux_sym_cmd_identifier_token10] = ACTIONS(1924), + [aux_sym_cmd_identifier_token11] = ACTIONS(1924), + [aux_sym_cmd_identifier_token12] = ACTIONS(1922), + [aux_sym_cmd_identifier_token13] = ACTIONS(1922), + [aux_sym_cmd_identifier_token14] = ACTIONS(1922), + [aux_sym_cmd_identifier_token15] = ACTIONS(1922), + [aux_sym_cmd_identifier_token16] = ACTIONS(1924), + [aux_sym_cmd_identifier_token17] = ACTIONS(1924), + [aux_sym_cmd_identifier_token18] = ACTIONS(1924), + [aux_sym_cmd_identifier_token19] = ACTIONS(1924), + [aux_sym_cmd_identifier_token20] = ACTIONS(1924), + [aux_sym_cmd_identifier_token21] = ACTIONS(1924), + [aux_sym_cmd_identifier_token22] = ACTIONS(1924), + [aux_sym_cmd_identifier_token23] = ACTIONS(1924), + [aux_sym_cmd_identifier_token24] = ACTIONS(1924), + [aux_sym_cmd_identifier_token25] = ACTIONS(1924), + [aux_sym_cmd_identifier_token26] = ACTIONS(1924), + [aux_sym_cmd_identifier_token27] = ACTIONS(1924), + [aux_sym_cmd_identifier_token28] = ACTIONS(1924), + [aux_sym_cmd_identifier_token29] = ACTIONS(1924), + [aux_sym_cmd_identifier_token30] = ACTIONS(1924), + [aux_sym_cmd_identifier_token31] = ACTIONS(1924), + [aux_sym_cmd_identifier_token32] = ACTIONS(1924), + [aux_sym_cmd_identifier_token33] = ACTIONS(1924), + [aux_sym_cmd_identifier_token34] = ACTIONS(1922), + [aux_sym_cmd_identifier_token35] = ACTIONS(1924), + [aux_sym_cmd_identifier_token36] = ACTIONS(1924), + [aux_sym_cmd_identifier_token37] = ACTIONS(1924), + [aux_sym_cmd_identifier_token38] = ACTIONS(1922), + [aux_sym_cmd_identifier_token39] = ACTIONS(1924), + [aux_sym_cmd_identifier_token40] = ACTIONS(1924), + [anon_sym_def] = ACTIONS(1922), + [anon_sym_export_DASHenv] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [anon_sym_error] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_in2] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_make] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_else] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1922), + [anon_sym_catch] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_source] = ACTIONS(1922), + [anon_sym_source_DASHenv] = ACTIONS(1922), + [anon_sym_register] = ACTIONS(1922), + [anon_sym_hide] = ACTIONS(1922), + [anon_sym_hide_DASHenv] = ACTIONS(1922), + [anon_sym_overlay] = ACTIONS(1922), + [anon_sym_as] = ACTIONS(1922), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1924), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1922), + [aux_sym__val_number_decimal_token2] = ACTIONS(1924), + [aux_sym__val_number_decimal_token3] = ACTIONS(1924), + [aux_sym__val_number_decimal_token4] = ACTIONS(1924), + [aux_sym__val_number_token1] = ACTIONS(1924), + [aux_sym__val_number_token2] = ACTIONS(1924), + [aux_sym__val_number_token3] = ACTIONS(1924), + [aux_sym__val_number_token4] = ACTIONS(1922), + [aux_sym__val_number_token5] = ACTIONS(1922), + [aux_sym__val_number_token6] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1924), + [sym__str_single_quotes] = ACTIONS(1924), + [sym__str_back_ticks] = ACTIONS(1924), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1924), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1924), }, [482] = { - [sym_cell_path] = STATE(767), - [sym_path] = STATE(659), + [sym_path] = STATE(575), [sym_comment] = STATE(482), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), + [aux_sym_cell_path_repeat1] = STATE(482), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(941), + [aux_sym_cmd_identifier_token3] = ACTIONS(941), + [aux_sym_cmd_identifier_token4] = ACTIONS(941), + [aux_sym_cmd_identifier_token5] = ACTIONS(941), + [aux_sym_cmd_identifier_token6] = ACTIONS(941), + [aux_sym_cmd_identifier_token7] = ACTIONS(941), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(941), + [aux_sym_cmd_identifier_token11] = ACTIONS(941), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(941), + [aux_sym_cmd_identifier_token17] = ACTIONS(941), + [aux_sym_cmd_identifier_token18] = ACTIONS(941), + [aux_sym_cmd_identifier_token19] = ACTIONS(941), + [aux_sym_cmd_identifier_token20] = ACTIONS(941), + [aux_sym_cmd_identifier_token21] = ACTIONS(941), + [aux_sym_cmd_identifier_token22] = ACTIONS(941), + [aux_sym_cmd_identifier_token23] = ACTIONS(941), + [aux_sym_cmd_identifier_token24] = ACTIONS(941), + [aux_sym_cmd_identifier_token25] = ACTIONS(941), + [aux_sym_cmd_identifier_token26] = ACTIONS(941), + [aux_sym_cmd_identifier_token27] = ACTIONS(941), + [aux_sym_cmd_identifier_token28] = ACTIONS(941), + [aux_sym_cmd_identifier_token29] = ACTIONS(941), + [aux_sym_cmd_identifier_token30] = ACTIONS(941), + [aux_sym_cmd_identifier_token31] = ACTIONS(941), + [aux_sym_cmd_identifier_token32] = ACTIONS(941), + [aux_sym_cmd_identifier_token33] = ACTIONS(941), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(941), + [aux_sym_cmd_identifier_token36] = ACTIONS(941), + [aux_sym_cmd_identifier_token37] = ACTIONS(941), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(941), + [aux_sym_cmd_identifier_token40] = ACTIONS(941), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(941), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(941), + [aux_sym__val_number_decimal_token3] = ACTIONS(941), + [aux_sym__val_number_decimal_token4] = ACTIONS(941), + [aux_sym__val_number_token1] = ACTIONS(941), + [aux_sym__val_number_token2] = ACTIONS(941), + [aux_sym__val_number_token3] = ACTIONS(941), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym__str_single_quotes] = ACTIONS(941), + [sym__str_back_ticks] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(941), + [sym__entry_separator] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(943), }, [483] = { + [sym_expr_parenthesized] = STATE(4081), + [sym__spread_parenthesized] = STATE(4413), + [sym_val_range] = STATE(4414), + [sym__val_range] = STATE(7475), + [sym__val_range_with_end] = STATE(7208), + [sym__value] = STATE(4414), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym__spread_variable] = STATE(4417), + [sym_val_variable] = STATE(4087), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3822), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym__spread_list] = STATE(4413), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym__cmd_arg] = STATE(4601), + [sym_redirection] = STATE(4419), + [sym_short_flag] = STATE(4420), + [sym_long_flag] = STATE(4420), + [sym_unquoted] = STATE(4138), + [sym__unquoted_with_expr] = STATE(4421), + [sym__unquoted_anonymous_prefix] = STATE(6991), [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1818), - [aux_sym_cmd_identifier_token3] = ACTIONS(1818), - [aux_sym_cmd_identifier_token4] = ACTIONS(1818), - [aux_sym_cmd_identifier_token5] = ACTIONS(1818), - [aux_sym_cmd_identifier_token6] = ACTIONS(1818), - [aux_sym_cmd_identifier_token7] = ACTIONS(1818), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1818), - [aux_sym_cmd_identifier_token11] = ACTIONS(1818), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1818), - [aux_sym_cmd_identifier_token17] = ACTIONS(1818), - [aux_sym_cmd_identifier_token18] = ACTIONS(1818), - [aux_sym_cmd_identifier_token19] = ACTIONS(1818), - [aux_sym_cmd_identifier_token20] = ACTIONS(1818), - [aux_sym_cmd_identifier_token21] = ACTIONS(1818), - [aux_sym_cmd_identifier_token22] = ACTIONS(1818), - [aux_sym_cmd_identifier_token23] = ACTIONS(1818), - [aux_sym_cmd_identifier_token24] = ACTIONS(1818), - [aux_sym_cmd_identifier_token25] = ACTIONS(1818), - [aux_sym_cmd_identifier_token26] = ACTIONS(1818), - [aux_sym_cmd_identifier_token27] = ACTIONS(1818), - [aux_sym_cmd_identifier_token28] = ACTIONS(1818), - [aux_sym_cmd_identifier_token29] = ACTIONS(1818), - [aux_sym_cmd_identifier_token30] = ACTIONS(1818), - [aux_sym_cmd_identifier_token31] = ACTIONS(1818), - [aux_sym_cmd_identifier_token32] = ACTIONS(1818), - [aux_sym_cmd_identifier_token33] = ACTIONS(1818), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1818), - [aux_sym_cmd_identifier_token36] = ACTIONS(1818), - [aux_sym_cmd_identifier_token37] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_decimal_token4] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), - [sym__entry_separator] = ACTIONS(1820), + [sym__newline] = ACTIONS(2126), + [sym__space] = ACTIONS(2128), + [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_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_LT] = ACTIONS(1859), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1891), + [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(1893), + [anon_sym_out_GT_GT] = ACTIONS(1893), + [anon_sym_e_GT_GT] = ACTIONS(1893), + [anon_sym_o_GT_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), + [aux_sym_unquoted_token1] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1820), + [sym_raw_string_begin] = ACTIONS(1897), }, [484] = { [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(2127), - [aux_sym__immediate_decimal_token2] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), }, [485] = { [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_COLON2] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), }, [486] = { - [sym_cell_path] = STATE(768), - [sym_path] = STATE(659), [sym_comment] = STATE(486), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_alias] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_let_DASHenv] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [aux_sym_cmd_identifier_token1] = ACTIONS(1871), - [aux_sym_cmd_identifier_token2] = ACTIONS(1873), - [aux_sym_cmd_identifier_token3] = ACTIONS(1873), - [aux_sym_cmd_identifier_token4] = ACTIONS(1873), - [aux_sym_cmd_identifier_token5] = ACTIONS(1873), - [aux_sym_cmd_identifier_token6] = ACTIONS(1873), - [aux_sym_cmd_identifier_token7] = ACTIONS(1873), - [aux_sym_cmd_identifier_token8] = ACTIONS(1871), - [aux_sym_cmd_identifier_token9] = ACTIONS(1871), - [aux_sym_cmd_identifier_token10] = ACTIONS(1873), - [aux_sym_cmd_identifier_token11] = ACTIONS(1873), - [aux_sym_cmd_identifier_token12] = ACTIONS(1871), - [aux_sym_cmd_identifier_token13] = ACTIONS(1871), - [aux_sym_cmd_identifier_token14] = ACTIONS(1871), - [aux_sym_cmd_identifier_token15] = ACTIONS(1871), - [aux_sym_cmd_identifier_token16] = ACTIONS(1873), - [aux_sym_cmd_identifier_token17] = ACTIONS(1873), - [aux_sym_cmd_identifier_token18] = ACTIONS(1873), - [aux_sym_cmd_identifier_token19] = ACTIONS(1873), - [aux_sym_cmd_identifier_token20] = ACTIONS(1873), - [aux_sym_cmd_identifier_token21] = ACTIONS(1873), - [aux_sym_cmd_identifier_token22] = ACTIONS(1873), - [aux_sym_cmd_identifier_token23] = ACTIONS(1873), - [aux_sym_cmd_identifier_token24] = ACTIONS(1873), - [aux_sym_cmd_identifier_token25] = ACTIONS(1873), - [aux_sym_cmd_identifier_token26] = ACTIONS(1873), - [aux_sym_cmd_identifier_token27] = ACTIONS(1873), - [aux_sym_cmd_identifier_token28] = ACTIONS(1873), - [aux_sym_cmd_identifier_token29] = ACTIONS(1873), - [aux_sym_cmd_identifier_token30] = ACTIONS(1873), - [aux_sym_cmd_identifier_token31] = ACTIONS(1873), - [aux_sym_cmd_identifier_token32] = ACTIONS(1873), - [aux_sym_cmd_identifier_token33] = ACTIONS(1873), - [aux_sym_cmd_identifier_token34] = ACTIONS(1871), - [aux_sym_cmd_identifier_token35] = ACTIONS(1873), - [aux_sym_cmd_identifier_token36] = ACTIONS(1873), - [aux_sym_cmd_identifier_token37] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1871), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_export_DASHenv] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1871), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_in2] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_make] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_catch] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_source] = ACTIONS(1871), - [anon_sym_source_DASHenv] = ACTIONS(1871), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_hide] = ACTIONS(1871), - [anon_sym_hide_DASHenv] = ACTIONS(1871), - [anon_sym_overlay] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_PLUS2] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1871), - [aux_sym__val_number_token5] = ACTIONS(1871), - [aux_sym__val_number_token6] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(2134), + [aux_sym__immediate_decimal_token2] = ACTIONS(2136), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [487] = { - [sym_cell_path] = STATE(769), - [sym_path] = STATE(659), [sym_comment] = STATE(487), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_alias] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_let_DASHenv] = ACTIONS(1875), - [anon_sym_mut] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [aux_sym_cmd_identifier_token1] = ACTIONS(1875), - [aux_sym_cmd_identifier_token2] = ACTIONS(1877), - [aux_sym_cmd_identifier_token3] = ACTIONS(1877), - [aux_sym_cmd_identifier_token4] = ACTIONS(1877), - [aux_sym_cmd_identifier_token5] = ACTIONS(1877), - [aux_sym_cmd_identifier_token6] = ACTIONS(1877), - [aux_sym_cmd_identifier_token7] = ACTIONS(1877), - [aux_sym_cmd_identifier_token8] = ACTIONS(1875), - [aux_sym_cmd_identifier_token9] = ACTIONS(1875), - [aux_sym_cmd_identifier_token10] = ACTIONS(1877), - [aux_sym_cmd_identifier_token11] = ACTIONS(1877), - [aux_sym_cmd_identifier_token12] = ACTIONS(1875), - [aux_sym_cmd_identifier_token13] = ACTIONS(1875), - [aux_sym_cmd_identifier_token14] = ACTIONS(1875), - [aux_sym_cmd_identifier_token15] = ACTIONS(1875), - [aux_sym_cmd_identifier_token16] = ACTIONS(1877), - [aux_sym_cmd_identifier_token17] = ACTIONS(1877), - [aux_sym_cmd_identifier_token18] = ACTIONS(1877), - [aux_sym_cmd_identifier_token19] = ACTIONS(1877), - [aux_sym_cmd_identifier_token20] = ACTIONS(1877), - [aux_sym_cmd_identifier_token21] = ACTIONS(1877), - [aux_sym_cmd_identifier_token22] = ACTIONS(1877), - [aux_sym_cmd_identifier_token23] = ACTIONS(1877), - [aux_sym_cmd_identifier_token24] = ACTIONS(1877), - [aux_sym_cmd_identifier_token25] = ACTIONS(1877), - [aux_sym_cmd_identifier_token26] = ACTIONS(1877), - [aux_sym_cmd_identifier_token27] = ACTIONS(1877), - [aux_sym_cmd_identifier_token28] = ACTIONS(1877), - [aux_sym_cmd_identifier_token29] = ACTIONS(1877), - [aux_sym_cmd_identifier_token30] = ACTIONS(1877), - [aux_sym_cmd_identifier_token31] = ACTIONS(1877), - [aux_sym_cmd_identifier_token32] = ACTIONS(1877), - [aux_sym_cmd_identifier_token33] = ACTIONS(1877), - [aux_sym_cmd_identifier_token34] = ACTIONS(1875), - [aux_sym_cmd_identifier_token35] = ACTIONS(1877), - [aux_sym_cmd_identifier_token36] = ACTIONS(1877), - [aux_sym_cmd_identifier_token37] = ACTIONS(1877), - [aux_sym_cmd_identifier_token38] = ACTIONS(1875), - [aux_sym_cmd_identifier_token39] = ACTIONS(1877), - [aux_sym_cmd_identifier_token40] = ACTIONS(1877), - [anon_sym_def] = ACTIONS(1875), - [anon_sym_export_DASHenv] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_use] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_error] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_in2] = ACTIONS(1875), - [anon_sym_loop] = ACTIONS(1875), - [anon_sym_make] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_catch] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_source] = ACTIONS(1875), - [anon_sym_source_DASHenv] = ACTIONS(1875), - [anon_sym_register] = ACTIONS(1875), - [anon_sym_hide] = ACTIONS(1875), - [anon_sym_hide_DASHenv] = ACTIONS(1875), - [anon_sym_overlay] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [aux_sym__val_number_token4] = ACTIONS(1875), - [aux_sym__val_number_token5] = ACTIONS(1875), - [aux_sym__val_number_token6] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [sym__entry_separator] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), }, [488] = { - [sym_cell_path] = STATE(770), - [sym_path] = STATE(659), [sym_comment] = STATE(488), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_alias] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_let_DASHenv] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [aux_sym_cmd_identifier_token1] = ACTIONS(1879), - [aux_sym_cmd_identifier_token2] = ACTIONS(1881), - [aux_sym_cmd_identifier_token3] = ACTIONS(1881), - [aux_sym_cmd_identifier_token4] = ACTIONS(1881), - [aux_sym_cmd_identifier_token5] = ACTIONS(1881), - [aux_sym_cmd_identifier_token6] = ACTIONS(1881), - [aux_sym_cmd_identifier_token7] = ACTIONS(1881), - [aux_sym_cmd_identifier_token8] = ACTIONS(1879), - [aux_sym_cmd_identifier_token9] = ACTIONS(1879), - [aux_sym_cmd_identifier_token10] = ACTIONS(1881), - [aux_sym_cmd_identifier_token11] = ACTIONS(1881), - [aux_sym_cmd_identifier_token12] = ACTIONS(1879), - [aux_sym_cmd_identifier_token13] = ACTIONS(1879), - [aux_sym_cmd_identifier_token14] = ACTIONS(1879), - [aux_sym_cmd_identifier_token15] = ACTIONS(1879), - [aux_sym_cmd_identifier_token16] = ACTIONS(1881), - [aux_sym_cmd_identifier_token17] = ACTIONS(1881), - [aux_sym_cmd_identifier_token18] = ACTIONS(1881), - [aux_sym_cmd_identifier_token19] = ACTIONS(1881), - [aux_sym_cmd_identifier_token20] = ACTIONS(1881), - [aux_sym_cmd_identifier_token21] = ACTIONS(1881), - [aux_sym_cmd_identifier_token22] = ACTIONS(1881), - [aux_sym_cmd_identifier_token23] = ACTIONS(1881), - [aux_sym_cmd_identifier_token24] = ACTIONS(1881), - [aux_sym_cmd_identifier_token25] = ACTIONS(1881), - [aux_sym_cmd_identifier_token26] = ACTIONS(1881), - [aux_sym_cmd_identifier_token27] = ACTIONS(1881), - [aux_sym_cmd_identifier_token28] = ACTIONS(1881), - [aux_sym_cmd_identifier_token29] = ACTIONS(1881), - [aux_sym_cmd_identifier_token30] = ACTIONS(1881), - [aux_sym_cmd_identifier_token31] = ACTIONS(1881), - [aux_sym_cmd_identifier_token32] = ACTIONS(1881), - [aux_sym_cmd_identifier_token33] = ACTIONS(1881), - [aux_sym_cmd_identifier_token34] = ACTIONS(1879), - [aux_sym_cmd_identifier_token35] = ACTIONS(1881), - [aux_sym_cmd_identifier_token36] = ACTIONS(1881), - [aux_sym_cmd_identifier_token37] = ACTIONS(1881), - [aux_sym_cmd_identifier_token38] = ACTIONS(1879), - [aux_sym_cmd_identifier_token39] = ACTIONS(1881), - [aux_sym_cmd_identifier_token40] = ACTIONS(1881), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_export_DASHenv] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_in2] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_make] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_catch] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_source] = ACTIONS(1879), - [anon_sym_source_DASHenv] = ACTIONS(1879), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_hide] = ACTIONS(1879), - [anon_sym_hide_DASHenv] = ACTIONS(1879), - [anon_sym_overlay] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [aux_sym__val_number_token4] = ACTIONS(1879), - [aux_sym__val_number_token5] = ACTIONS(1879), - [aux_sym__val_number_token6] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), }, [489] = { - [sym_cell_path] = STATE(694), - [sym_path] = STATE(659), [sym_comment] = STATE(489), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1885), - [aux_sym_cmd_identifier_token3] = ACTIONS(1885), - [aux_sym_cmd_identifier_token4] = ACTIONS(1885), - [aux_sym_cmd_identifier_token5] = ACTIONS(1885), - [aux_sym_cmd_identifier_token6] = ACTIONS(1885), - [aux_sym_cmd_identifier_token7] = ACTIONS(1885), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1885), - [aux_sym_cmd_identifier_token11] = ACTIONS(1885), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1885), - [aux_sym_cmd_identifier_token17] = ACTIONS(1885), - [aux_sym_cmd_identifier_token18] = ACTIONS(1885), - [aux_sym_cmd_identifier_token19] = ACTIONS(1885), - [aux_sym_cmd_identifier_token20] = ACTIONS(1885), - [aux_sym_cmd_identifier_token21] = ACTIONS(1885), - [aux_sym_cmd_identifier_token22] = ACTIONS(1885), - [aux_sym_cmd_identifier_token23] = ACTIONS(1885), - [aux_sym_cmd_identifier_token24] = ACTIONS(1885), - [aux_sym_cmd_identifier_token25] = ACTIONS(1885), - [aux_sym_cmd_identifier_token26] = ACTIONS(1885), - [aux_sym_cmd_identifier_token27] = ACTIONS(1885), - [aux_sym_cmd_identifier_token28] = ACTIONS(1885), - [aux_sym_cmd_identifier_token29] = ACTIONS(1885), - [aux_sym_cmd_identifier_token30] = ACTIONS(1885), - [aux_sym_cmd_identifier_token31] = ACTIONS(1885), - [aux_sym_cmd_identifier_token32] = ACTIONS(1885), - [aux_sym_cmd_identifier_token33] = ACTIONS(1885), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1885), - [aux_sym_cmd_identifier_token36] = ACTIONS(1885), - [aux_sym_cmd_identifier_token37] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in2] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1883), - [aux_sym__val_number_token5] = ACTIONS(1883), - [aux_sym__val_number_token6] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1885), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2138), + [aux_sym_cmd_identifier_token3] = ACTIONS(2138), + [aux_sym_cmd_identifier_token4] = ACTIONS(2138), + [aux_sym_cmd_identifier_token5] = ACTIONS(2138), + [aux_sym_cmd_identifier_token6] = ACTIONS(2138), + [aux_sym_cmd_identifier_token7] = ACTIONS(2138), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2138), + [aux_sym_cmd_identifier_token11] = ACTIONS(2138), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2138), + [aux_sym_cmd_identifier_token17] = ACTIONS(2138), + [aux_sym_cmd_identifier_token18] = ACTIONS(2138), + [aux_sym_cmd_identifier_token19] = ACTIONS(2138), + [aux_sym_cmd_identifier_token20] = ACTIONS(2138), + [aux_sym_cmd_identifier_token21] = ACTIONS(2138), + [aux_sym_cmd_identifier_token22] = ACTIONS(2138), + [aux_sym_cmd_identifier_token23] = ACTIONS(2138), + [aux_sym_cmd_identifier_token24] = ACTIONS(2138), + [aux_sym_cmd_identifier_token25] = ACTIONS(2138), + [aux_sym_cmd_identifier_token26] = ACTIONS(2138), + [aux_sym_cmd_identifier_token27] = ACTIONS(2138), + [aux_sym_cmd_identifier_token28] = ACTIONS(2138), + [aux_sym_cmd_identifier_token29] = ACTIONS(2138), + [aux_sym_cmd_identifier_token30] = ACTIONS(2138), + [aux_sym_cmd_identifier_token31] = ACTIONS(2138), + [aux_sym_cmd_identifier_token32] = ACTIONS(2138), + [aux_sym_cmd_identifier_token33] = ACTIONS(2138), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2138), + [aux_sym_cmd_identifier_token36] = ACTIONS(2138), + [aux_sym_cmd_identifier_token37] = ACTIONS(2138), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2138), + [aux_sym_cmd_identifier_token40] = ACTIONS(2138), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), + [anon_sym_DOT_DOT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2138), + [aux_sym__val_number_decimal_token3] = ACTIONS(2138), + [aux_sym__val_number_decimal_token4] = ACTIONS(2138), + [aux_sym__val_number_token1] = ACTIONS(2138), + [aux_sym__val_number_token2] = ACTIONS(2138), + [aux_sym__val_number_token3] = ACTIONS(2138), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [sym__str_single_quotes] = ACTIONS(2138), + [sym__str_back_ticks] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), + [sym__entry_separator] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2140), }, [490] = { - [sym_cell_path] = STATE(703), - [sym_path] = STATE(659), + [sym_cell_path] = STATE(742), + [sym_path] = STATE(631), [sym_comment] = STATE(490), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_alias] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_let_DASHenv] = ACTIONS(1887), - [anon_sym_mut] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [aux_sym_cmd_identifier_token1] = ACTIONS(1887), - [aux_sym_cmd_identifier_token2] = ACTIONS(1889), - [aux_sym_cmd_identifier_token3] = ACTIONS(1889), - [aux_sym_cmd_identifier_token4] = ACTIONS(1889), - [aux_sym_cmd_identifier_token5] = ACTIONS(1889), - [aux_sym_cmd_identifier_token6] = ACTIONS(1889), - [aux_sym_cmd_identifier_token7] = ACTIONS(1889), - [aux_sym_cmd_identifier_token8] = ACTIONS(1887), - [aux_sym_cmd_identifier_token9] = ACTIONS(1887), - [aux_sym_cmd_identifier_token10] = ACTIONS(1889), - [aux_sym_cmd_identifier_token11] = ACTIONS(1889), - [aux_sym_cmd_identifier_token12] = ACTIONS(1887), - [aux_sym_cmd_identifier_token13] = ACTIONS(1887), - [aux_sym_cmd_identifier_token14] = ACTIONS(1887), - [aux_sym_cmd_identifier_token15] = ACTIONS(1887), - [aux_sym_cmd_identifier_token16] = ACTIONS(1889), - [aux_sym_cmd_identifier_token17] = ACTIONS(1889), - [aux_sym_cmd_identifier_token18] = ACTIONS(1889), - [aux_sym_cmd_identifier_token19] = ACTIONS(1889), - [aux_sym_cmd_identifier_token20] = ACTIONS(1889), - [aux_sym_cmd_identifier_token21] = ACTIONS(1889), - [aux_sym_cmd_identifier_token22] = ACTIONS(1889), - [aux_sym_cmd_identifier_token23] = ACTIONS(1889), - [aux_sym_cmd_identifier_token24] = ACTIONS(1889), - [aux_sym_cmd_identifier_token25] = ACTIONS(1889), - [aux_sym_cmd_identifier_token26] = ACTIONS(1889), - [aux_sym_cmd_identifier_token27] = ACTIONS(1889), - [aux_sym_cmd_identifier_token28] = ACTIONS(1889), - [aux_sym_cmd_identifier_token29] = ACTIONS(1889), - [aux_sym_cmd_identifier_token30] = ACTIONS(1889), - [aux_sym_cmd_identifier_token31] = ACTIONS(1889), - [aux_sym_cmd_identifier_token32] = ACTIONS(1889), - [aux_sym_cmd_identifier_token33] = ACTIONS(1889), - [aux_sym_cmd_identifier_token34] = ACTIONS(1887), - [aux_sym_cmd_identifier_token35] = ACTIONS(1889), - [aux_sym_cmd_identifier_token36] = ACTIONS(1889), - [aux_sym_cmd_identifier_token37] = ACTIONS(1889), - [aux_sym_cmd_identifier_token38] = ACTIONS(1887), - [aux_sym_cmd_identifier_token39] = ACTIONS(1889), - [aux_sym_cmd_identifier_token40] = ACTIONS(1889), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_export_DASHenv] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1887), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_in2] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_make] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_catch] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_source] = ACTIONS(1887), - [anon_sym_source_DASHenv] = ACTIONS(1887), - [anon_sym_register] = ACTIONS(1887), - [anon_sym_hide] = ACTIONS(1887), - [anon_sym_hide_DASHenv] = ACTIONS(1887), - [anon_sym_overlay] = ACTIONS(1887), - [anon_sym_as] = ACTIONS(1887), - [anon_sym_PLUS2] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1887), - [aux_sym__val_number_token5] = ACTIONS(1887), - [aux_sym__val_number_token6] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1889), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(1918), + [anon_sym_alias] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_let_DASHenv] = ACTIONS(1918), + [anon_sym_mut] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [aux_sym_cmd_identifier_token1] = ACTIONS(1918), + [aux_sym_cmd_identifier_token2] = ACTIONS(1920), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [aux_sym_cmd_identifier_token6] = ACTIONS(1920), + [aux_sym_cmd_identifier_token7] = ACTIONS(1920), + [aux_sym_cmd_identifier_token8] = ACTIONS(1918), + [aux_sym_cmd_identifier_token9] = ACTIONS(1918), + [aux_sym_cmd_identifier_token10] = ACTIONS(1920), + [aux_sym_cmd_identifier_token11] = ACTIONS(1920), + [aux_sym_cmd_identifier_token12] = ACTIONS(1918), + [aux_sym_cmd_identifier_token13] = ACTIONS(1918), + [aux_sym_cmd_identifier_token14] = ACTIONS(1918), + [aux_sym_cmd_identifier_token15] = ACTIONS(1918), + [aux_sym_cmd_identifier_token16] = ACTIONS(1920), + [aux_sym_cmd_identifier_token17] = ACTIONS(1920), + [aux_sym_cmd_identifier_token18] = ACTIONS(1920), + [aux_sym_cmd_identifier_token19] = ACTIONS(1920), + [aux_sym_cmd_identifier_token20] = ACTIONS(1920), + [aux_sym_cmd_identifier_token21] = ACTIONS(1920), + [aux_sym_cmd_identifier_token22] = ACTIONS(1920), + [aux_sym_cmd_identifier_token23] = ACTIONS(1920), + [aux_sym_cmd_identifier_token24] = ACTIONS(1920), + [aux_sym_cmd_identifier_token25] = ACTIONS(1920), + [aux_sym_cmd_identifier_token26] = ACTIONS(1920), + [aux_sym_cmd_identifier_token27] = ACTIONS(1920), + [aux_sym_cmd_identifier_token28] = ACTIONS(1920), + [aux_sym_cmd_identifier_token29] = ACTIONS(1920), + [aux_sym_cmd_identifier_token30] = ACTIONS(1920), + [aux_sym_cmd_identifier_token31] = ACTIONS(1920), + [aux_sym_cmd_identifier_token32] = ACTIONS(1920), + [aux_sym_cmd_identifier_token33] = ACTIONS(1920), + [aux_sym_cmd_identifier_token34] = ACTIONS(1918), + [aux_sym_cmd_identifier_token35] = ACTIONS(1920), + [aux_sym_cmd_identifier_token36] = ACTIONS(1920), + [aux_sym_cmd_identifier_token37] = ACTIONS(1920), + [aux_sym_cmd_identifier_token38] = ACTIONS(1918), + [aux_sym_cmd_identifier_token39] = ACTIONS(1920), + [aux_sym_cmd_identifier_token40] = ACTIONS(1920), + [anon_sym_def] = ACTIONS(1918), + [anon_sym_export_DASHenv] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_module] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_error] = ACTIONS(1918), + [anon_sym_DASH2] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_in2] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_make] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_do] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_else] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_try] = ACTIONS(1918), + [anon_sym_catch] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_source] = ACTIONS(1918), + [anon_sym_source_DASHenv] = ACTIONS(1918), + [anon_sym_register] = ACTIONS(1918), + [anon_sym_hide] = ACTIONS(1918), + [anon_sym_hide_DASHenv] = ACTIONS(1918), + [anon_sym_overlay] = ACTIONS(1918), + [anon_sym_as] = ACTIONS(1918), + [anon_sym_PLUS2] = ACTIONS(1918), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1920), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1920), + [aux_sym__val_number_decimal_token1] = ACTIONS(1918), + [aux_sym__val_number_decimal_token2] = ACTIONS(1920), + [aux_sym__val_number_decimal_token3] = ACTIONS(1920), + [aux_sym__val_number_decimal_token4] = ACTIONS(1920), + [aux_sym__val_number_token1] = ACTIONS(1920), + [aux_sym__val_number_token2] = ACTIONS(1920), + [aux_sym__val_number_token3] = ACTIONS(1920), + [aux_sym__val_number_token4] = ACTIONS(1918), + [aux_sym__val_number_token5] = ACTIONS(1918), + [aux_sym__val_number_token6] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [sym__str_single_quotes] = ACTIONS(1920), + [sym__str_back_ticks] = ACTIONS(1920), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1920), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1920), }, [491] = { - [sym_cell_path] = STATE(766), - [sym_path] = STATE(659), [sym_comment] = STATE(491), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_alias] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_let_DASHenv] = ACTIONS(1891), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1893), - [aux_sym_cmd_identifier_token3] = ACTIONS(1893), - [aux_sym_cmd_identifier_token4] = ACTIONS(1893), - [aux_sym_cmd_identifier_token5] = ACTIONS(1893), - [aux_sym_cmd_identifier_token6] = ACTIONS(1893), - [aux_sym_cmd_identifier_token7] = ACTIONS(1893), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1893), - [aux_sym_cmd_identifier_token11] = ACTIONS(1893), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1893), - [aux_sym_cmd_identifier_token17] = ACTIONS(1893), - [aux_sym_cmd_identifier_token18] = ACTIONS(1893), - [aux_sym_cmd_identifier_token19] = ACTIONS(1893), - [aux_sym_cmd_identifier_token20] = ACTIONS(1893), - [aux_sym_cmd_identifier_token21] = ACTIONS(1893), - [aux_sym_cmd_identifier_token22] = ACTIONS(1893), - [aux_sym_cmd_identifier_token23] = ACTIONS(1893), - [aux_sym_cmd_identifier_token24] = ACTIONS(1893), - [aux_sym_cmd_identifier_token25] = ACTIONS(1893), - [aux_sym_cmd_identifier_token26] = ACTIONS(1893), - [aux_sym_cmd_identifier_token27] = ACTIONS(1893), - [aux_sym_cmd_identifier_token28] = ACTIONS(1893), - [aux_sym_cmd_identifier_token29] = ACTIONS(1893), - [aux_sym_cmd_identifier_token30] = ACTIONS(1893), - [aux_sym_cmd_identifier_token31] = ACTIONS(1893), - [aux_sym_cmd_identifier_token32] = ACTIONS(1893), - [aux_sym_cmd_identifier_token33] = ACTIONS(1893), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1893), - [aux_sym_cmd_identifier_token36] = ACTIONS(1893), - [aux_sym_cmd_identifier_token37] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_export_DASHenv] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_source] = ACTIONS(1891), - [anon_sym_source_DASHenv] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_hide_DASHenv] = ACTIONS(1891), - [anon_sym_overlay] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_alias] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_let_DASHenv] = ACTIONS(2142), + [anon_sym_mut] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [aux_sym_cmd_identifier_token1] = ACTIONS(2142), + [aux_sym_cmd_identifier_token2] = ACTIONS(2142), + [aux_sym_cmd_identifier_token3] = ACTIONS(2142), + [aux_sym_cmd_identifier_token4] = ACTIONS(2142), + [aux_sym_cmd_identifier_token5] = ACTIONS(2142), + [aux_sym_cmd_identifier_token6] = ACTIONS(2142), + [aux_sym_cmd_identifier_token7] = ACTIONS(2142), + [aux_sym_cmd_identifier_token8] = ACTIONS(2142), + [aux_sym_cmd_identifier_token9] = ACTIONS(2142), + [aux_sym_cmd_identifier_token10] = ACTIONS(2142), + [aux_sym_cmd_identifier_token11] = ACTIONS(2142), + [aux_sym_cmd_identifier_token12] = ACTIONS(2142), + [aux_sym_cmd_identifier_token13] = ACTIONS(2142), + [aux_sym_cmd_identifier_token14] = ACTIONS(2142), + [aux_sym_cmd_identifier_token15] = ACTIONS(2142), + [aux_sym_cmd_identifier_token16] = ACTIONS(2142), + [aux_sym_cmd_identifier_token17] = ACTIONS(2142), + [aux_sym_cmd_identifier_token18] = ACTIONS(2142), + [aux_sym_cmd_identifier_token19] = ACTIONS(2142), + [aux_sym_cmd_identifier_token20] = ACTIONS(2142), + [aux_sym_cmd_identifier_token21] = ACTIONS(2142), + [aux_sym_cmd_identifier_token22] = ACTIONS(2142), + [aux_sym_cmd_identifier_token23] = ACTIONS(2142), + [aux_sym_cmd_identifier_token24] = ACTIONS(2142), + [aux_sym_cmd_identifier_token25] = ACTIONS(2142), + [aux_sym_cmd_identifier_token26] = ACTIONS(2142), + [aux_sym_cmd_identifier_token27] = ACTIONS(2142), + [aux_sym_cmd_identifier_token28] = ACTIONS(2142), + [aux_sym_cmd_identifier_token29] = ACTIONS(2142), + [aux_sym_cmd_identifier_token30] = ACTIONS(2142), + [aux_sym_cmd_identifier_token31] = ACTIONS(2142), + [aux_sym_cmd_identifier_token32] = ACTIONS(2142), + [aux_sym_cmd_identifier_token33] = ACTIONS(2142), + [aux_sym_cmd_identifier_token34] = ACTIONS(2142), + [aux_sym_cmd_identifier_token35] = ACTIONS(2142), + [aux_sym_cmd_identifier_token36] = ACTIONS(2142), + [aux_sym_cmd_identifier_token37] = ACTIONS(2142), + [aux_sym_cmd_identifier_token38] = ACTIONS(2142), + [aux_sym_cmd_identifier_token39] = ACTIONS(2142), + [aux_sym_cmd_identifier_token40] = ACTIONS(2142), + [anon_sym_def] = ACTIONS(2142), + [anon_sym_export_DASHenv] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2142), + [anon_sym_error] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_in2] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_make] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_source] = ACTIONS(2142), + [anon_sym_source_DASHenv] = ACTIONS(2142), + [anon_sym_register] = ACTIONS(2142), + [anon_sym_hide] = ACTIONS(2142), + [anon_sym_hide_DASHenv] = ACTIONS(2142), + [anon_sym_overlay] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2142), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2142), + [anon_sym_DOT_DOT2] = ACTIONS(2144), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2142), + [aux_sym__val_number_decimal_token1] = ACTIONS(2142), + [aux_sym__val_number_decimal_token2] = ACTIONS(2142), + [aux_sym__val_number_decimal_token3] = ACTIONS(2142), + [aux_sym__val_number_decimal_token4] = ACTIONS(2142), + [aux_sym__val_number_token1] = ACTIONS(2142), + [aux_sym__val_number_token2] = ACTIONS(2142), + [aux_sym__val_number_token3] = ACTIONS(2142), + [aux_sym__val_number_token4] = ACTIONS(2142), + [aux_sym__val_number_token5] = ACTIONS(2142), + [aux_sym__val_number_token6] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [sym__str_single_quotes] = ACTIONS(2142), + [sym__str_back_ticks] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2142), + [sym__entry_separator] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2148), }, [492] = { - [sym_cell_path] = STATE(771), - [sym_path] = STATE(659), [sym_comment] = STATE(492), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_alias] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_let_DASHenv] = ACTIONS(1895), - [anon_sym_mut] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [aux_sym_cmd_identifier_token37] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_export_DASHenv] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_source] = ACTIONS(1895), - [anon_sym_source_DASHenv] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_hide_DASHenv] = ACTIONS(1895), - [anon_sym_overlay] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1897), + [anon_sym_export] = ACTIONS(2150), + [anon_sym_alias] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_let_DASHenv] = ACTIONS(2150), + [anon_sym_mut] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [aux_sym_cmd_identifier_token1] = ACTIONS(2150), + [aux_sym_cmd_identifier_token2] = ACTIONS(2150), + [aux_sym_cmd_identifier_token3] = ACTIONS(2150), + [aux_sym_cmd_identifier_token4] = ACTIONS(2150), + [aux_sym_cmd_identifier_token5] = ACTIONS(2150), + [aux_sym_cmd_identifier_token6] = ACTIONS(2150), + [aux_sym_cmd_identifier_token7] = ACTIONS(2150), + [aux_sym_cmd_identifier_token8] = ACTIONS(2150), + [aux_sym_cmd_identifier_token9] = ACTIONS(2150), + [aux_sym_cmd_identifier_token10] = ACTIONS(2150), + [aux_sym_cmd_identifier_token11] = ACTIONS(2150), + [aux_sym_cmd_identifier_token12] = ACTIONS(2150), + [aux_sym_cmd_identifier_token13] = ACTIONS(2150), + [aux_sym_cmd_identifier_token14] = ACTIONS(2150), + [aux_sym_cmd_identifier_token15] = ACTIONS(2150), + [aux_sym_cmd_identifier_token16] = ACTIONS(2150), + [aux_sym_cmd_identifier_token17] = ACTIONS(2150), + [aux_sym_cmd_identifier_token18] = ACTIONS(2150), + [aux_sym_cmd_identifier_token19] = ACTIONS(2150), + [aux_sym_cmd_identifier_token20] = ACTIONS(2150), + [aux_sym_cmd_identifier_token21] = ACTIONS(2150), + [aux_sym_cmd_identifier_token22] = ACTIONS(2150), + [aux_sym_cmd_identifier_token23] = ACTIONS(2150), + [aux_sym_cmd_identifier_token24] = ACTIONS(2150), + [aux_sym_cmd_identifier_token25] = ACTIONS(2150), + [aux_sym_cmd_identifier_token26] = ACTIONS(2150), + [aux_sym_cmd_identifier_token27] = ACTIONS(2150), + [aux_sym_cmd_identifier_token28] = ACTIONS(2150), + [aux_sym_cmd_identifier_token29] = ACTIONS(2150), + [aux_sym_cmd_identifier_token30] = ACTIONS(2150), + [aux_sym_cmd_identifier_token31] = ACTIONS(2150), + [aux_sym_cmd_identifier_token32] = ACTIONS(2150), + [aux_sym_cmd_identifier_token33] = ACTIONS(2150), + [aux_sym_cmd_identifier_token34] = ACTIONS(2150), + [aux_sym_cmd_identifier_token35] = ACTIONS(2150), + [aux_sym_cmd_identifier_token36] = ACTIONS(2150), + [aux_sym_cmd_identifier_token37] = ACTIONS(2150), + [aux_sym_cmd_identifier_token38] = ACTIONS(2150), + [aux_sym_cmd_identifier_token39] = ACTIONS(2150), + [aux_sym_cmd_identifier_token40] = ACTIONS(2150), + [anon_sym_def] = ACTIONS(2150), + [anon_sym_export_DASHenv] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_module] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_DOLLAR] = ACTIONS(2150), + [anon_sym_error] = ACTIONS(2150), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_in2] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_make] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [anon_sym_catch] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_source] = ACTIONS(2150), + [anon_sym_source_DASHenv] = ACTIONS(2150), + [anon_sym_register] = ACTIONS(2150), + [anon_sym_hide] = ACTIONS(2150), + [anon_sym_hide_DASHenv] = ACTIONS(2150), + [anon_sym_overlay] = ACTIONS(2150), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2150), + [anon_sym_DOT_DOT2] = ACTIONS(2152), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2154), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2154), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2150), + [aux_sym__val_number_decimal_token1] = ACTIONS(2150), + [aux_sym__val_number_decimal_token2] = ACTIONS(2150), + [aux_sym__val_number_decimal_token3] = ACTIONS(2150), + [aux_sym__val_number_decimal_token4] = ACTIONS(2150), + [aux_sym__val_number_token1] = ACTIONS(2150), + [aux_sym__val_number_token2] = ACTIONS(2150), + [aux_sym__val_number_token3] = ACTIONS(2150), + [aux_sym__val_number_token4] = ACTIONS(2150), + [aux_sym__val_number_token5] = ACTIONS(2150), + [aux_sym__val_number_token6] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym__str_single_quotes] = ACTIONS(2150), + [sym__str_back_ticks] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2150), + [sym__entry_separator] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2156), }, [493] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(659), [sym_comment] = STATE(493), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_alias] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_let_DASHenv] = ACTIONS(1903), - [anon_sym_mut] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [aux_sym_cmd_identifier_token1] = ACTIONS(1903), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1903), - [aux_sym_cmd_identifier_token9] = ACTIONS(1903), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1903), - [aux_sym_cmd_identifier_token13] = ACTIONS(1903), - [aux_sym_cmd_identifier_token14] = ACTIONS(1903), - [aux_sym_cmd_identifier_token15] = ACTIONS(1903), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1903), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [aux_sym_cmd_identifier_token37] = ACTIONS(1905), - [aux_sym_cmd_identifier_token38] = ACTIONS(1903), - [aux_sym_cmd_identifier_token39] = ACTIONS(1905), - [aux_sym_cmd_identifier_token40] = ACTIONS(1905), - [anon_sym_def] = ACTIONS(1903), - [anon_sym_export_DASHenv] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_use] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1903), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_in2] = ACTIONS(1903), - [anon_sym_loop] = ACTIONS(1903), - [anon_sym_make] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_catch] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_source] = ACTIONS(1903), - [anon_sym_source_DASHenv] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1903), - [anon_sym_hide] = ACTIONS(1903), - [anon_sym_hide_DASHenv] = ACTIONS(1903), - [anon_sym_overlay] = ACTIONS(1903), - [anon_sym_as] = ACTIONS(1903), - [anon_sym_PLUS2] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1903), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [aux_sym__val_number_token4] = ACTIONS(1903), - [aux_sym__val_number_token5] = ACTIONS(1903), - [aux_sym__val_number_token6] = ACTIONS(1903), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1905), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_alias] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_let_DASHenv] = ACTIONS(2158), + [anon_sym_mut] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [aux_sym_cmd_identifier_token1] = ACTIONS(2158), + [aux_sym_cmd_identifier_token2] = ACTIONS(2158), + [aux_sym_cmd_identifier_token3] = ACTIONS(2158), + [aux_sym_cmd_identifier_token4] = ACTIONS(2158), + [aux_sym_cmd_identifier_token5] = ACTIONS(2158), + [aux_sym_cmd_identifier_token6] = ACTIONS(2158), + [aux_sym_cmd_identifier_token7] = ACTIONS(2158), + [aux_sym_cmd_identifier_token8] = ACTIONS(2158), + [aux_sym_cmd_identifier_token9] = ACTIONS(2158), + [aux_sym_cmd_identifier_token10] = ACTIONS(2158), + [aux_sym_cmd_identifier_token11] = ACTIONS(2158), + [aux_sym_cmd_identifier_token12] = ACTIONS(2158), + [aux_sym_cmd_identifier_token13] = ACTIONS(2158), + [aux_sym_cmd_identifier_token14] = ACTIONS(2158), + [aux_sym_cmd_identifier_token15] = ACTIONS(2158), + [aux_sym_cmd_identifier_token16] = ACTIONS(2158), + [aux_sym_cmd_identifier_token17] = ACTIONS(2158), + [aux_sym_cmd_identifier_token18] = ACTIONS(2158), + [aux_sym_cmd_identifier_token19] = ACTIONS(2158), + [aux_sym_cmd_identifier_token20] = ACTIONS(2158), + [aux_sym_cmd_identifier_token21] = ACTIONS(2158), + [aux_sym_cmd_identifier_token22] = ACTIONS(2158), + [aux_sym_cmd_identifier_token23] = ACTIONS(2158), + [aux_sym_cmd_identifier_token24] = ACTIONS(2158), + [aux_sym_cmd_identifier_token25] = ACTIONS(2158), + [aux_sym_cmd_identifier_token26] = ACTIONS(2158), + [aux_sym_cmd_identifier_token27] = ACTIONS(2158), + [aux_sym_cmd_identifier_token28] = ACTIONS(2158), + [aux_sym_cmd_identifier_token29] = ACTIONS(2158), + [aux_sym_cmd_identifier_token30] = ACTIONS(2158), + [aux_sym_cmd_identifier_token31] = ACTIONS(2158), + [aux_sym_cmd_identifier_token32] = ACTIONS(2158), + [aux_sym_cmd_identifier_token33] = ACTIONS(2158), + [aux_sym_cmd_identifier_token34] = ACTIONS(2158), + [aux_sym_cmd_identifier_token35] = ACTIONS(2158), + [aux_sym_cmd_identifier_token36] = ACTIONS(2158), + [aux_sym_cmd_identifier_token37] = ACTIONS(2158), + [aux_sym_cmd_identifier_token38] = ACTIONS(2158), + [aux_sym_cmd_identifier_token39] = ACTIONS(2158), + [aux_sym_cmd_identifier_token40] = ACTIONS(2158), + [anon_sym_def] = ACTIONS(2158), + [anon_sym_export_DASHenv] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_error] = ACTIONS(2158), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_in2] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_make] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_catch] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_source] = ACTIONS(2158), + [anon_sym_source_DASHenv] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_hide] = ACTIONS(2158), + [anon_sym_hide_DASHenv] = ACTIONS(2158), + [anon_sym_overlay] = ACTIONS(2158), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), + [anon_sym_DOT_DOT2] = ACTIONS(2160), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), + [aux_sym__val_number_decimal_token1] = ACTIONS(2158), + [aux_sym__val_number_decimal_token2] = ACTIONS(2158), + [aux_sym__val_number_decimal_token3] = ACTIONS(2158), + [aux_sym__val_number_decimal_token4] = ACTIONS(2158), + [aux_sym__val_number_token1] = ACTIONS(2158), + [aux_sym__val_number_token2] = ACTIONS(2158), + [aux_sym__val_number_token3] = ACTIONS(2158), + [aux_sym__val_number_token4] = ACTIONS(2158), + [aux_sym__val_number_token5] = ACTIONS(2158), + [aux_sym__val_number_token6] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym__str_single_quotes] = ACTIONS(2158), + [sym__str_back_ticks] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), + [sym__entry_separator] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2164), }, [494] = { - [sym_cell_path] = STATE(742), - [sym_path] = STATE(659), [sym_comment] = STATE(494), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [aux_sym_cmd_identifier_token1] = ACTIONS(1909), - [aux_sym_cmd_identifier_token2] = ACTIONS(1911), - [aux_sym_cmd_identifier_token3] = ACTIONS(1911), - [aux_sym_cmd_identifier_token4] = ACTIONS(1911), - [aux_sym_cmd_identifier_token5] = ACTIONS(1911), - [aux_sym_cmd_identifier_token6] = ACTIONS(1911), - [aux_sym_cmd_identifier_token7] = ACTIONS(1911), - [aux_sym_cmd_identifier_token8] = ACTIONS(1909), - [aux_sym_cmd_identifier_token9] = ACTIONS(1909), - [aux_sym_cmd_identifier_token10] = ACTIONS(1911), - [aux_sym_cmd_identifier_token11] = ACTIONS(1911), - [aux_sym_cmd_identifier_token12] = ACTIONS(1909), - [aux_sym_cmd_identifier_token13] = ACTIONS(1909), - [aux_sym_cmd_identifier_token14] = ACTIONS(1909), - [aux_sym_cmd_identifier_token15] = ACTIONS(1909), - [aux_sym_cmd_identifier_token16] = ACTIONS(1911), - [aux_sym_cmd_identifier_token17] = ACTIONS(1911), - [aux_sym_cmd_identifier_token18] = ACTIONS(1911), - [aux_sym_cmd_identifier_token19] = ACTIONS(1911), - [aux_sym_cmd_identifier_token20] = ACTIONS(1911), - [aux_sym_cmd_identifier_token21] = ACTIONS(1911), - [aux_sym_cmd_identifier_token22] = ACTIONS(1911), - [aux_sym_cmd_identifier_token23] = ACTIONS(1911), - [aux_sym_cmd_identifier_token24] = ACTIONS(1911), - [aux_sym_cmd_identifier_token25] = ACTIONS(1911), - [aux_sym_cmd_identifier_token26] = ACTIONS(1911), - [aux_sym_cmd_identifier_token27] = ACTIONS(1911), - [aux_sym_cmd_identifier_token28] = ACTIONS(1911), - [aux_sym_cmd_identifier_token29] = ACTIONS(1911), - [aux_sym_cmd_identifier_token30] = ACTIONS(1911), - [aux_sym_cmd_identifier_token31] = ACTIONS(1911), - [aux_sym_cmd_identifier_token32] = ACTIONS(1911), - [aux_sym_cmd_identifier_token33] = ACTIONS(1911), - [aux_sym_cmd_identifier_token34] = ACTIONS(1909), - [aux_sym_cmd_identifier_token35] = ACTIONS(1911), - [aux_sym_cmd_identifier_token36] = ACTIONS(1911), - [aux_sym_cmd_identifier_token37] = ACTIONS(1911), - [aux_sym_cmd_identifier_token38] = ACTIONS(1909), - [aux_sym_cmd_identifier_token39] = ACTIONS(1911), - [aux_sym_cmd_identifier_token40] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1911), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_in2] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_make] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_catch] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_as] = ACTIONS(1909), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1909), - [aux_sym__val_number_token5] = ACTIONS(1909), - [aux_sym__val_number_token6] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(2166), + [aux_sym__immediate_decimal_token2] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [495] = { - [sym_cell_path] = STATE(754), - [sym_path] = STATE(659), [sym_comment] = STATE(495), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1919), - [aux_sym_cmd_identifier_token3] = ACTIONS(1919), - [aux_sym_cmd_identifier_token4] = ACTIONS(1919), - [aux_sym_cmd_identifier_token5] = ACTIONS(1919), - [aux_sym_cmd_identifier_token6] = ACTIONS(1919), - [aux_sym_cmd_identifier_token7] = ACTIONS(1919), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1919), - [aux_sym_cmd_identifier_token11] = ACTIONS(1919), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1919), - [aux_sym_cmd_identifier_token17] = ACTIONS(1919), - [aux_sym_cmd_identifier_token18] = ACTIONS(1919), - [aux_sym_cmd_identifier_token19] = ACTIONS(1919), - [aux_sym_cmd_identifier_token20] = ACTIONS(1919), - [aux_sym_cmd_identifier_token21] = ACTIONS(1919), - [aux_sym_cmd_identifier_token22] = ACTIONS(1919), - [aux_sym_cmd_identifier_token23] = ACTIONS(1919), - [aux_sym_cmd_identifier_token24] = ACTIONS(1919), - [aux_sym_cmd_identifier_token25] = ACTIONS(1919), - [aux_sym_cmd_identifier_token26] = ACTIONS(1919), - [aux_sym_cmd_identifier_token27] = ACTIONS(1919), - [aux_sym_cmd_identifier_token28] = ACTIONS(1919), - [aux_sym_cmd_identifier_token29] = ACTIONS(1919), - [aux_sym_cmd_identifier_token30] = ACTIONS(1919), - [aux_sym_cmd_identifier_token31] = ACTIONS(1919), - [aux_sym_cmd_identifier_token32] = ACTIONS(1919), - [aux_sym_cmd_identifier_token33] = ACTIONS(1919), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1919), - [aux_sym_cmd_identifier_token36] = ACTIONS(1919), - [aux_sym_cmd_identifier_token37] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1919), - [aux_sym_cmd_identifier_token40] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [496] = { - [sym_cell_path] = STATE(755), - [sym_path] = STATE(659), [sym_comment] = STATE(496), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1729), }, [497] = { - [sym_cell_path] = STATE(720), - [sym_path] = STATE(659), + [sym_cell_path] = STATE(715), + [sym_path] = STATE(631), [sym_comment] = STATE(497), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_alias] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_let_DASHenv] = ACTIONS(1929), - [anon_sym_mut] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [aux_sym_cmd_identifier_token1] = ACTIONS(1929), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1929), - [aux_sym_cmd_identifier_token9] = ACTIONS(1929), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1929), - [aux_sym_cmd_identifier_token13] = ACTIONS(1929), - [aux_sym_cmd_identifier_token14] = ACTIONS(1929), - [aux_sym_cmd_identifier_token15] = ACTIONS(1929), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1929), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [aux_sym_cmd_identifier_token37] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1929), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1929), - [anon_sym_export_DASHenv] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_in2] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_make] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_catch] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_source] = ACTIONS(1929), - [anon_sym_source_DASHenv] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1929), - [anon_sym_hide] = ACTIONS(1929), - [anon_sym_hide_DASHenv] = ACTIONS(1929), - [anon_sym_overlay] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_PLUS2] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1929), - [aux_sym__val_number_token5] = ACTIONS(1929), - [aux_sym__val_number_token6] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2033), + [anon_sym_alias] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_let_DASHenv] = ACTIONS(2033), + [anon_sym_mut] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [aux_sym_cmd_identifier_token1] = ACTIONS(2033), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2033), + [aux_sym_cmd_identifier_token9] = ACTIONS(2033), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2033), + [aux_sym_cmd_identifier_token13] = ACTIONS(2033), + [aux_sym_cmd_identifier_token14] = ACTIONS(2033), + [aux_sym_cmd_identifier_token15] = ACTIONS(2033), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2033), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [aux_sym_cmd_identifier_token37] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2033), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2033), + [anon_sym_export_DASHenv] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_module] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2033), + [anon_sym_DASH2] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_in2] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_make] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_do] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2033), + [anon_sym_catch] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_source] = ACTIONS(2033), + [anon_sym_source_DASHenv] = ACTIONS(2033), + [anon_sym_register] = ACTIONS(2033), + [anon_sym_hide] = ACTIONS(2033), + [anon_sym_hide_DASHenv] = ACTIONS(2033), + [anon_sym_overlay] = ACTIONS(2033), + [anon_sym_as] = ACTIONS(2033), + [anon_sym_PLUS2] = ACTIONS(2033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2033), + [aux_sym__val_number_token5] = ACTIONS(2033), + [aux_sym__val_number_token6] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [anon_sym_DOT2] = ACTIONS(2037), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1931), + [sym_raw_string_begin] = ACTIONS(2035), }, [498] = { - [sym_cell_path] = STATE(740), - [sym_path] = STATE(659), [sym_comment] = STATE(498), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [aux_sym_cmd_identifier_token37] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_alias] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_let_DASHenv] = ACTIONS(2170), + [anon_sym_mut] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [aux_sym_cmd_identifier_token1] = ACTIONS(2170), + [aux_sym_cmd_identifier_token2] = ACTIONS(2170), + [aux_sym_cmd_identifier_token3] = ACTIONS(2170), + [aux_sym_cmd_identifier_token4] = ACTIONS(2170), + [aux_sym_cmd_identifier_token5] = ACTIONS(2170), + [aux_sym_cmd_identifier_token6] = ACTIONS(2170), + [aux_sym_cmd_identifier_token7] = ACTIONS(2170), + [aux_sym_cmd_identifier_token8] = ACTIONS(2170), + [aux_sym_cmd_identifier_token9] = ACTIONS(2170), + [aux_sym_cmd_identifier_token10] = ACTIONS(2170), + [aux_sym_cmd_identifier_token11] = ACTIONS(2170), + [aux_sym_cmd_identifier_token12] = ACTIONS(2170), + [aux_sym_cmd_identifier_token13] = ACTIONS(2170), + [aux_sym_cmd_identifier_token14] = ACTIONS(2170), + [aux_sym_cmd_identifier_token15] = ACTIONS(2170), + [aux_sym_cmd_identifier_token16] = ACTIONS(2170), + [aux_sym_cmd_identifier_token17] = ACTIONS(2170), + [aux_sym_cmd_identifier_token18] = ACTIONS(2170), + [aux_sym_cmd_identifier_token19] = ACTIONS(2170), + [aux_sym_cmd_identifier_token20] = ACTIONS(2170), + [aux_sym_cmd_identifier_token21] = ACTIONS(2170), + [aux_sym_cmd_identifier_token22] = ACTIONS(2170), + [aux_sym_cmd_identifier_token23] = ACTIONS(2170), + [aux_sym_cmd_identifier_token24] = ACTIONS(2170), + [aux_sym_cmd_identifier_token25] = ACTIONS(2170), + [aux_sym_cmd_identifier_token26] = ACTIONS(2170), + [aux_sym_cmd_identifier_token27] = ACTIONS(2170), + [aux_sym_cmd_identifier_token28] = ACTIONS(2170), + [aux_sym_cmd_identifier_token29] = ACTIONS(2170), + [aux_sym_cmd_identifier_token30] = ACTIONS(2170), + [aux_sym_cmd_identifier_token31] = ACTIONS(2170), + [aux_sym_cmd_identifier_token32] = ACTIONS(2170), + [aux_sym_cmd_identifier_token33] = ACTIONS(2170), + [aux_sym_cmd_identifier_token34] = ACTIONS(2170), + [aux_sym_cmd_identifier_token35] = ACTIONS(2170), + [aux_sym_cmd_identifier_token36] = ACTIONS(2170), + [aux_sym_cmd_identifier_token37] = ACTIONS(2170), + [aux_sym_cmd_identifier_token38] = ACTIONS(2170), + [aux_sym_cmd_identifier_token39] = ACTIONS(2170), + [aux_sym_cmd_identifier_token40] = ACTIONS(2170), + [anon_sym_def] = ACTIONS(2170), + [anon_sym_export_DASHenv] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_error] = ACTIONS(2170), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_in2] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_make] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_source] = ACTIONS(2170), + [anon_sym_source_DASHenv] = ACTIONS(2170), + [anon_sym_register] = ACTIONS(2170), + [anon_sym_hide] = ACTIONS(2170), + [anon_sym_hide_DASHenv] = ACTIONS(2170), + [anon_sym_overlay] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2170), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2170), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2170), + [aux_sym__val_number_decimal_token3] = ACTIONS(2170), + [aux_sym__val_number_decimal_token4] = ACTIONS(2170), + [aux_sym__val_number_token1] = ACTIONS(2170), + [aux_sym__val_number_token2] = ACTIONS(2170), + [aux_sym__val_number_token3] = ACTIONS(2170), + [aux_sym__val_number_token4] = ACTIONS(2170), + [aux_sym__val_number_token5] = ACTIONS(2170), + [aux_sym__val_number_token6] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym__str_single_quotes] = ACTIONS(2170), + [sym__str_back_ticks] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2170), + [sym__entry_separator] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2172), }, [499] = { - [sym_cell_path] = STATE(750), - [sym_path] = STATE(659), [sym_comment] = STATE(499), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1939), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1939), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1939), - [aux_sym_cmd_identifier_token32] = ACTIONS(1939), - [aux_sym_cmd_identifier_token33] = ACTIONS(1939), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [aux_sym_cmd_identifier_token37] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_let_DASHenv] = ACTIONS(2174), + [anon_sym_mut] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [aux_sym_cmd_identifier_token2] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2174), + [aux_sym_cmd_identifier_token4] = ACTIONS(2174), + [aux_sym_cmd_identifier_token5] = ACTIONS(2174), + [aux_sym_cmd_identifier_token6] = ACTIONS(2174), + [aux_sym_cmd_identifier_token7] = ACTIONS(2174), + [aux_sym_cmd_identifier_token8] = ACTIONS(2174), + [aux_sym_cmd_identifier_token9] = ACTIONS(2174), + [aux_sym_cmd_identifier_token10] = ACTIONS(2174), + [aux_sym_cmd_identifier_token11] = ACTIONS(2174), + [aux_sym_cmd_identifier_token12] = ACTIONS(2174), + [aux_sym_cmd_identifier_token13] = ACTIONS(2174), + [aux_sym_cmd_identifier_token14] = ACTIONS(2174), + [aux_sym_cmd_identifier_token15] = ACTIONS(2174), + [aux_sym_cmd_identifier_token16] = ACTIONS(2174), + [aux_sym_cmd_identifier_token17] = ACTIONS(2174), + [aux_sym_cmd_identifier_token18] = ACTIONS(2174), + [aux_sym_cmd_identifier_token19] = ACTIONS(2174), + [aux_sym_cmd_identifier_token20] = ACTIONS(2174), + [aux_sym_cmd_identifier_token21] = ACTIONS(2174), + [aux_sym_cmd_identifier_token22] = ACTIONS(2174), + [aux_sym_cmd_identifier_token23] = ACTIONS(2174), + [aux_sym_cmd_identifier_token24] = ACTIONS(2174), + [aux_sym_cmd_identifier_token25] = ACTIONS(2174), + [aux_sym_cmd_identifier_token26] = ACTIONS(2174), + [aux_sym_cmd_identifier_token27] = ACTIONS(2174), + [aux_sym_cmd_identifier_token28] = ACTIONS(2174), + [aux_sym_cmd_identifier_token29] = ACTIONS(2174), + [aux_sym_cmd_identifier_token30] = ACTIONS(2174), + [aux_sym_cmd_identifier_token31] = ACTIONS(2174), + [aux_sym_cmd_identifier_token32] = ACTIONS(2174), + [aux_sym_cmd_identifier_token33] = ACTIONS(2174), + [aux_sym_cmd_identifier_token34] = ACTIONS(2174), + [aux_sym_cmd_identifier_token35] = ACTIONS(2174), + [aux_sym_cmd_identifier_token36] = ACTIONS(2174), + [aux_sym_cmd_identifier_token37] = ACTIONS(2174), + [aux_sym_cmd_identifier_token38] = ACTIONS(2174), + [aux_sym_cmd_identifier_token39] = ACTIONS(2174), + [aux_sym_cmd_identifier_token40] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2174), + [anon_sym_export_DASHenv] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_error] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_in2] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_make] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_source] = ACTIONS(2174), + [anon_sym_source_DASHenv] = ACTIONS(2174), + [anon_sym_register] = ACTIONS(2174), + [anon_sym_hide] = ACTIONS(2174), + [anon_sym_hide_DASHenv] = ACTIONS(2174), + [anon_sym_overlay] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2174), + [anon_sym_DOT_DOT2] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2174), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2174), + [aux_sym__val_number_decimal_token3] = ACTIONS(2174), + [aux_sym__val_number_decimal_token4] = ACTIONS(2174), + [aux_sym__val_number_token1] = ACTIONS(2174), + [aux_sym__val_number_token2] = ACTIONS(2174), + [aux_sym__val_number_token3] = ACTIONS(2174), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [sym__str_single_quotes] = ACTIONS(2174), + [sym__str_back_ticks] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2174), + [sym__entry_separator] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2176), }, [500] = { + [sym_cell_path] = STATE(698), + [sym_path] = STATE(631), [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [aux_sym_cmd_identifier_token1] = ACTIONS(2131), - [aux_sym_cmd_identifier_token2] = ACTIONS(2131), - [aux_sym_cmd_identifier_token3] = ACTIONS(2131), - [aux_sym_cmd_identifier_token4] = ACTIONS(2131), - [aux_sym_cmd_identifier_token5] = ACTIONS(2131), - [aux_sym_cmd_identifier_token6] = ACTIONS(2131), - [aux_sym_cmd_identifier_token7] = ACTIONS(2131), - [aux_sym_cmd_identifier_token8] = ACTIONS(2131), - [aux_sym_cmd_identifier_token9] = ACTIONS(2131), - [aux_sym_cmd_identifier_token10] = ACTIONS(2131), - [aux_sym_cmd_identifier_token11] = ACTIONS(2131), - [aux_sym_cmd_identifier_token12] = ACTIONS(2131), - [aux_sym_cmd_identifier_token13] = ACTIONS(2131), - [aux_sym_cmd_identifier_token14] = ACTIONS(2131), - [aux_sym_cmd_identifier_token15] = ACTIONS(2131), - [aux_sym_cmd_identifier_token16] = ACTIONS(2131), - [aux_sym_cmd_identifier_token17] = ACTIONS(2131), - [aux_sym_cmd_identifier_token18] = ACTIONS(2131), - [aux_sym_cmd_identifier_token19] = ACTIONS(2131), - [aux_sym_cmd_identifier_token20] = ACTIONS(2131), - [aux_sym_cmd_identifier_token21] = ACTIONS(2131), - [aux_sym_cmd_identifier_token22] = ACTIONS(2131), - [aux_sym_cmd_identifier_token23] = ACTIONS(2131), - [aux_sym_cmd_identifier_token24] = ACTIONS(2131), - [aux_sym_cmd_identifier_token25] = ACTIONS(2131), - [aux_sym_cmd_identifier_token26] = ACTIONS(2131), - [aux_sym_cmd_identifier_token27] = ACTIONS(2131), - [aux_sym_cmd_identifier_token28] = ACTIONS(2131), - [aux_sym_cmd_identifier_token29] = ACTIONS(2131), - [aux_sym_cmd_identifier_token30] = ACTIONS(2131), - [aux_sym_cmd_identifier_token31] = ACTIONS(2131), - [aux_sym_cmd_identifier_token32] = ACTIONS(2131), - [aux_sym_cmd_identifier_token33] = ACTIONS(2131), - [aux_sym_cmd_identifier_token34] = ACTIONS(2131), - [aux_sym_cmd_identifier_token35] = ACTIONS(2131), - [aux_sym_cmd_identifier_token36] = ACTIONS(2131), - [aux_sym_cmd_identifier_token37] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_DASH2] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_in2] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_make] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_catch] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_PLUS2] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), - [anon_sym_DOT_DOT2] = ACTIONS(2133), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2135), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [aux_sym__val_number_token4] = ACTIONS(2131), - [aux_sym__val_number_token5] = ACTIONS(2131), - [aux_sym__val_number_token6] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), - [sym__entry_separator] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2137), + [aux_sym_cell_path_repeat1] = STATE(522), + [anon_sym_export] = ACTIONS(2009), + [anon_sym_alias] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_let_DASHenv] = ACTIONS(2009), + [anon_sym_mut] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [aux_sym_cmd_identifier_token1] = ACTIONS(2009), + [aux_sym_cmd_identifier_token2] = ACTIONS(2011), + [aux_sym_cmd_identifier_token3] = ACTIONS(2011), + [aux_sym_cmd_identifier_token4] = ACTIONS(2011), + [aux_sym_cmd_identifier_token5] = ACTIONS(2011), + [aux_sym_cmd_identifier_token6] = ACTIONS(2011), + [aux_sym_cmd_identifier_token7] = ACTIONS(2011), + [aux_sym_cmd_identifier_token8] = ACTIONS(2009), + [aux_sym_cmd_identifier_token9] = ACTIONS(2009), + [aux_sym_cmd_identifier_token10] = ACTIONS(2011), + [aux_sym_cmd_identifier_token11] = ACTIONS(2011), + [aux_sym_cmd_identifier_token12] = ACTIONS(2009), + [aux_sym_cmd_identifier_token13] = ACTIONS(2009), + [aux_sym_cmd_identifier_token14] = ACTIONS(2009), + [aux_sym_cmd_identifier_token15] = ACTIONS(2009), + [aux_sym_cmd_identifier_token16] = ACTIONS(2011), + [aux_sym_cmd_identifier_token17] = ACTIONS(2011), + [aux_sym_cmd_identifier_token18] = ACTIONS(2011), + [aux_sym_cmd_identifier_token19] = ACTIONS(2011), + [aux_sym_cmd_identifier_token20] = ACTIONS(2011), + [aux_sym_cmd_identifier_token21] = ACTIONS(2011), + [aux_sym_cmd_identifier_token22] = ACTIONS(2011), + [aux_sym_cmd_identifier_token23] = ACTIONS(2011), + [aux_sym_cmd_identifier_token24] = ACTIONS(2011), + [aux_sym_cmd_identifier_token25] = ACTIONS(2011), + [aux_sym_cmd_identifier_token26] = ACTIONS(2011), + [aux_sym_cmd_identifier_token27] = ACTIONS(2011), + [aux_sym_cmd_identifier_token28] = ACTIONS(2011), + [aux_sym_cmd_identifier_token29] = ACTIONS(2011), + [aux_sym_cmd_identifier_token30] = ACTIONS(2011), + [aux_sym_cmd_identifier_token31] = ACTIONS(2011), + [aux_sym_cmd_identifier_token32] = ACTIONS(2011), + [aux_sym_cmd_identifier_token33] = ACTIONS(2011), + [aux_sym_cmd_identifier_token34] = ACTIONS(2009), + [aux_sym_cmd_identifier_token35] = ACTIONS(2011), + [aux_sym_cmd_identifier_token36] = ACTIONS(2011), + [aux_sym_cmd_identifier_token37] = ACTIONS(2011), + [aux_sym_cmd_identifier_token38] = ACTIONS(2009), + [aux_sym_cmd_identifier_token39] = ACTIONS(2011), + [aux_sym_cmd_identifier_token40] = ACTIONS(2011), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_export_DASHenv] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_error] = ACTIONS(2009), + [anon_sym_DASH2] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_in2] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_make] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_else] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_catch] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_source] = ACTIONS(2009), + [anon_sym_source_DASHenv] = ACTIONS(2009), + [anon_sym_register] = ACTIONS(2009), + [anon_sym_hide] = ACTIONS(2009), + [anon_sym_hide_DASHenv] = ACTIONS(2009), + [anon_sym_overlay] = ACTIONS(2009), + [anon_sym_as] = ACTIONS(2009), + [anon_sym_PLUS2] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2011), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2011), + [aux_sym__val_number_decimal_token3] = ACTIONS(2011), + [aux_sym__val_number_decimal_token4] = ACTIONS(2011), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [aux_sym__val_number_token4] = ACTIONS(2009), + [aux_sym__val_number_token5] = ACTIONS(2009), + [aux_sym__val_number_token6] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(2011), + [sym__str_single_quotes] = ACTIONS(2011), + [sym__str_back_ticks] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2011), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2011), }, [501] = { [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), }, [502] = { - [sym_expr_parenthesized] = STATE(4778), - [sym__spread_parenthesized] = STATE(5261), - [sym_val_range] = STATE(5262), - [sym__val_range] = STATE(8417), - [sym__val_range_with_end] = STATE(8052), - [sym__value] = STATE(5262), - [sym_val_nothing] = STATE(5064), - [sym_val_bool] = STATE(4848), - [sym__spread_variable] = STATE(5263), - [sym_val_variable] = STATE(4635), - [sym_val_number] = STATE(5064), - [sym__val_number_decimal] = STATE(4315), - [sym__val_number] = STATE(5141), - [sym_val_duration] = STATE(5064), - [sym_val_filesize] = STATE(5064), - [sym_val_binary] = STATE(5064), - [sym_val_string] = STATE(5064), - [sym__raw_str] = STATE(4801), - [sym__str_double_quotes] = STATE(4801), - [sym_val_interpolated] = STATE(5064), - [sym__inter_single_quotes] = STATE(5066), - [sym__inter_double_quotes] = STATE(5068), - [sym_val_list] = STATE(5064), - [sym__spread_list] = STATE(5261), - [sym_val_record] = STATE(5064), - [sym_val_table] = STATE(5064), - [sym_val_closure] = STATE(5064), - [sym__cmd_arg] = STATE(5264), - [sym_redirection] = STATE(5265), - [sym_short_flag] = STATE(5266), - [sym_long_flag] = STATE(5266), - [sym_unquoted] = STATE(4875), - [sym__unquoted_with_expr] = STATE(5268), - [sym__unquoted_anonymous_prefix] = STATE(7443), + [sym__expr_parenthesized_immediate] = STATE(7373), [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1971), - [sym__newline] = ACTIONS(1969), - [sym__space] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_err_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_GT_PIPE] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_DASH2] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_DOT_DOT] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2155), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2157), - [anon_sym_DOT_DOT_LT] = ACTIONS(2157), - [anon_sym_null] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2163), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(2165), - [aux_sym__val_number_decimal_token3] = ACTIONS(2167), - [aux_sym__val_number_decimal_token4] = ACTIONS(2169), - [aux_sym__val_number_token1] = ACTIONS(2171), - [aux_sym__val_number_token2] = ACTIONS(2171), - [aux_sym__val_number_token3] = ACTIONS(2171), - [aux_sym__val_number_token4] = ACTIONS(2173), - [aux_sym__val_number_token5] = ACTIONS(2173), - [aux_sym__val_number_token6] = ACTIONS(2173), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2177), - [anon_sym_0x] = ACTIONS(2177), - [sym_val_date] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(2181), - [sym__str_single_quotes] = ACTIONS(2183), - [sym__str_back_ticks] = ACTIONS(2183), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2185), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2189), - [anon_sym_err_GT] = ACTIONS(2191), - [anon_sym_out_GT] = ACTIONS(2191), - [anon_sym_e_GT] = ACTIONS(2191), - [anon_sym_o_GT] = ACTIONS(2191), - [anon_sym_err_PLUSout_GT] = ACTIONS(2191), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2191), - [anon_sym_o_PLUSe_GT] = ACTIONS(2191), - [anon_sym_e_PLUSo_GT] = ACTIONS(2191), - [anon_sym_err_GT_GT] = ACTIONS(2191), - [anon_sym_out_GT_GT] = ACTIONS(2191), - [anon_sym_e_GT_GT] = ACTIONS(2191), - [anon_sym_o_GT_GT] = ACTIONS(2191), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2191), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2191), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2191), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2191), - [aux_sym_unquoted_token1] = ACTIONS(2193), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_alias] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_let_DASHenv] = ACTIONS(2178), + [anon_sym_mut] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [aux_sym_cmd_identifier_token1] = ACTIONS(2178), + [aux_sym_cmd_identifier_token2] = ACTIONS(2178), + [aux_sym_cmd_identifier_token3] = ACTIONS(2178), + [aux_sym_cmd_identifier_token4] = ACTIONS(2178), + [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [aux_sym_cmd_identifier_token6] = ACTIONS(2178), + [aux_sym_cmd_identifier_token7] = ACTIONS(2178), + [aux_sym_cmd_identifier_token8] = ACTIONS(2178), + [aux_sym_cmd_identifier_token9] = ACTIONS(2178), + [aux_sym_cmd_identifier_token10] = ACTIONS(2178), + [aux_sym_cmd_identifier_token11] = ACTIONS(2178), + [aux_sym_cmd_identifier_token12] = ACTIONS(2178), + [aux_sym_cmd_identifier_token13] = ACTIONS(2178), + [aux_sym_cmd_identifier_token14] = ACTIONS(2178), + [aux_sym_cmd_identifier_token15] = ACTIONS(2178), + [aux_sym_cmd_identifier_token16] = ACTIONS(2178), + [aux_sym_cmd_identifier_token17] = ACTIONS(2178), + [aux_sym_cmd_identifier_token18] = ACTIONS(2178), + [aux_sym_cmd_identifier_token19] = ACTIONS(2178), + [aux_sym_cmd_identifier_token20] = ACTIONS(2178), + [aux_sym_cmd_identifier_token21] = ACTIONS(2178), + [aux_sym_cmd_identifier_token22] = ACTIONS(2178), + [aux_sym_cmd_identifier_token23] = ACTIONS(2178), + [aux_sym_cmd_identifier_token24] = ACTIONS(2178), + [aux_sym_cmd_identifier_token25] = ACTIONS(2178), + [aux_sym_cmd_identifier_token26] = ACTIONS(2178), + [aux_sym_cmd_identifier_token27] = ACTIONS(2178), + [aux_sym_cmd_identifier_token28] = ACTIONS(2178), + [aux_sym_cmd_identifier_token29] = ACTIONS(2178), + [aux_sym_cmd_identifier_token30] = ACTIONS(2178), + [aux_sym_cmd_identifier_token31] = ACTIONS(2178), + [aux_sym_cmd_identifier_token32] = ACTIONS(2178), + [aux_sym_cmd_identifier_token33] = ACTIONS(2178), + [aux_sym_cmd_identifier_token34] = ACTIONS(2178), + [aux_sym_cmd_identifier_token35] = ACTIONS(2178), + [aux_sym_cmd_identifier_token36] = ACTIONS(2178), + [aux_sym_cmd_identifier_token37] = ACTIONS(2178), + [aux_sym_cmd_identifier_token38] = ACTIONS(2178), + [aux_sym_cmd_identifier_token39] = ACTIONS(2178), + [aux_sym_cmd_identifier_token40] = ACTIONS(2178), + [anon_sym_def] = ACTIONS(2178), + [anon_sym_export_DASHenv] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_error] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_in2] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_make] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_catch] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_source] = ACTIONS(2178), + [anon_sym_source_DASHenv] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_hide] = ACTIONS(2178), + [anon_sym_hide_DASHenv] = ACTIONS(2178), + [anon_sym_overlay] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2178), + [aux_sym__val_number_decimal_token1] = ACTIONS(2178), + [aux_sym__val_number_decimal_token2] = ACTIONS(2178), + [aux_sym__val_number_decimal_token3] = ACTIONS(2178), + [aux_sym__val_number_decimal_token4] = ACTIONS(2178), + [aux_sym__val_number_token1] = ACTIONS(2178), + [aux_sym__val_number_token2] = ACTIONS(2178), + [aux_sym__val_number_token3] = ACTIONS(2178), + [aux_sym__val_number_token4] = ACTIONS(2178), + [aux_sym__val_number_token5] = ACTIONS(2178), + [aux_sym__val_number_token6] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym__str_single_quotes] = ACTIONS(2178), + [sym__str_back_ticks] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2178), + [sym__entry_separator] = ACTIONS(2180), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2195), + [sym_raw_string_begin] = ACTIONS(2180), }, [503] = { - [sym_cell_path] = STATE(738), - [sym_path] = STATE(659), + [sym__expr_parenthesized_immediate] = STATE(7373), [sym_comment] = STATE(503), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2037), - [anon_sym_alias] = ACTIONS(2037), - [anon_sym_let] = ACTIONS(2037), - [anon_sym_let_DASHenv] = ACTIONS(2037), - [anon_sym_mut] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2037), - [aux_sym_cmd_identifier_token1] = ACTIONS(2037), - [aux_sym_cmd_identifier_token2] = ACTIONS(2039), - [aux_sym_cmd_identifier_token3] = ACTIONS(2039), - [aux_sym_cmd_identifier_token4] = ACTIONS(2039), - [aux_sym_cmd_identifier_token5] = ACTIONS(2039), - [aux_sym_cmd_identifier_token6] = ACTIONS(2039), - [aux_sym_cmd_identifier_token7] = ACTIONS(2039), - [aux_sym_cmd_identifier_token8] = ACTIONS(2037), - [aux_sym_cmd_identifier_token9] = ACTIONS(2037), - [aux_sym_cmd_identifier_token10] = ACTIONS(2039), - [aux_sym_cmd_identifier_token11] = ACTIONS(2039), - [aux_sym_cmd_identifier_token12] = ACTIONS(2037), - [aux_sym_cmd_identifier_token13] = ACTIONS(2037), - [aux_sym_cmd_identifier_token14] = ACTIONS(2037), - [aux_sym_cmd_identifier_token15] = ACTIONS(2037), - [aux_sym_cmd_identifier_token16] = ACTIONS(2039), - [aux_sym_cmd_identifier_token17] = ACTIONS(2039), - [aux_sym_cmd_identifier_token18] = ACTIONS(2039), - [aux_sym_cmd_identifier_token19] = ACTIONS(2039), - [aux_sym_cmd_identifier_token20] = ACTIONS(2039), - [aux_sym_cmd_identifier_token21] = ACTIONS(2039), - [aux_sym_cmd_identifier_token22] = ACTIONS(2039), - [aux_sym_cmd_identifier_token23] = ACTIONS(2039), - [aux_sym_cmd_identifier_token24] = ACTIONS(2039), - [aux_sym_cmd_identifier_token25] = ACTIONS(2039), - [aux_sym_cmd_identifier_token26] = ACTIONS(2039), - [aux_sym_cmd_identifier_token27] = ACTIONS(2039), - [aux_sym_cmd_identifier_token28] = ACTIONS(2039), - [aux_sym_cmd_identifier_token29] = ACTIONS(2039), - [aux_sym_cmd_identifier_token30] = ACTIONS(2039), - [aux_sym_cmd_identifier_token31] = ACTIONS(2039), - [aux_sym_cmd_identifier_token32] = ACTIONS(2039), - [aux_sym_cmd_identifier_token33] = ACTIONS(2039), - [aux_sym_cmd_identifier_token34] = ACTIONS(2037), - [aux_sym_cmd_identifier_token35] = ACTIONS(2039), - [aux_sym_cmd_identifier_token36] = ACTIONS(2039), - [aux_sym_cmd_identifier_token37] = ACTIONS(2039), - [aux_sym_cmd_identifier_token38] = ACTIONS(2037), - [aux_sym_cmd_identifier_token39] = ACTIONS(2039), - [aux_sym_cmd_identifier_token40] = ACTIONS(2039), - [anon_sym_def] = ACTIONS(2037), - [anon_sym_export_DASHenv] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2037), - [anon_sym_module] = ACTIONS(2037), - [anon_sym_use] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2039), - [anon_sym_error] = ACTIONS(2037), - [anon_sym_DASH2] = ACTIONS(2037), - [anon_sym_break] = ACTIONS(2037), - [anon_sym_continue] = ACTIONS(2037), - [anon_sym_for] = ACTIONS(2037), - [anon_sym_in2] = ACTIONS(2037), - [anon_sym_loop] = ACTIONS(2037), - [anon_sym_make] = ACTIONS(2037), - [anon_sym_while] = ACTIONS(2037), - [anon_sym_do] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2037), - [anon_sym_else] = ACTIONS(2037), - [anon_sym_match] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2037), - [anon_sym_catch] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2037), - [anon_sym_source] = ACTIONS(2037), - [anon_sym_source_DASHenv] = ACTIONS(2037), - [anon_sym_register] = ACTIONS(2037), - [anon_sym_hide] = ACTIONS(2037), - [anon_sym_hide_DASHenv] = ACTIONS(2037), - [anon_sym_overlay] = ACTIONS(2037), - [anon_sym_as] = ACTIONS(2037), - [anon_sym_PLUS2] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2039), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2039), - [aux_sym__val_number_decimal_token1] = ACTIONS(2037), - [aux_sym__val_number_decimal_token2] = ACTIONS(2039), - [aux_sym__val_number_decimal_token3] = ACTIONS(2039), - [aux_sym__val_number_decimal_token4] = ACTIONS(2039), - [aux_sym__val_number_token1] = ACTIONS(2039), - [aux_sym__val_number_token2] = ACTIONS(2039), - [aux_sym__val_number_token3] = ACTIONS(2039), - [aux_sym__val_number_token4] = ACTIONS(2037), - [aux_sym__val_number_token5] = ACTIONS(2037), - [aux_sym__val_number_token6] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2039), - [sym__str_single_quotes] = ACTIONS(2039), - [sym__str_back_ticks] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2039), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_alias] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_let_DASHenv] = ACTIONS(2182), + [anon_sym_mut] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [aux_sym_cmd_identifier_token1] = ACTIONS(2182), + [aux_sym_cmd_identifier_token2] = ACTIONS(2182), + [aux_sym_cmd_identifier_token3] = ACTIONS(2182), + [aux_sym_cmd_identifier_token4] = ACTIONS(2182), + [aux_sym_cmd_identifier_token5] = ACTIONS(2182), + [aux_sym_cmd_identifier_token6] = ACTIONS(2182), + [aux_sym_cmd_identifier_token7] = ACTIONS(2182), + [aux_sym_cmd_identifier_token8] = ACTIONS(2182), + [aux_sym_cmd_identifier_token9] = ACTIONS(2182), + [aux_sym_cmd_identifier_token10] = ACTIONS(2182), + [aux_sym_cmd_identifier_token11] = ACTIONS(2182), + [aux_sym_cmd_identifier_token12] = ACTIONS(2182), + [aux_sym_cmd_identifier_token13] = ACTIONS(2182), + [aux_sym_cmd_identifier_token14] = ACTIONS(2182), + [aux_sym_cmd_identifier_token15] = ACTIONS(2182), + [aux_sym_cmd_identifier_token16] = ACTIONS(2182), + [aux_sym_cmd_identifier_token17] = ACTIONS(2182), + [aux_sym_cmd_identifier_token18] = ACTIONS(2182), + [aux_sym_cmd_identifier_token19] = ACTIONS(2182), + [aux_sym_cmd_identifier_token20] = ACTIONS(2182), + [aux_sym_cmd_identifier_token21] = ACTIONS(2182), + [aux_sym_cmd_identifier_token22] = ACTIONS(2182), + [aux_sym_cmd_identifier_token23] = ACTIONS(2182), + [aux_sym_cmd_identifier_token24] = ACTIONS(2182), + [aux_sym_cmd_identifier_token25] = ACTIONS(2182), + [aux_sym_cmd_identifier_token26] = ACTIONS(2182), + [aux_sym_cmd_identifier_token27] = ACTIONS(2182), + [aux_sym_cmd_identifier_token28] = ACTIONS(2182), + [aux_sym_cmd_identifier_token29] = ACTIONS(2182), + [aux_sym_cmd_identifier_token30] = ACTIONS(2182), + [aux_sym_cmd_identifier_token31] = ACTIONS(2182), + [aux_sym_cmd_identifier_token32] = ACTIONS(2182), + [aux_sym_cmd_identifier_token33] = ACTIONS(2182), + [aux_sym_cmd_identifier_token34] = ACTIONS(2182), + [aux_sym_cmd_identifier_token35] = ACTIONS(2182), + [aux_sym_cmd_identifier_token36] = ACTIONS(2182), + [aux_sym_cmd_identifier_token37] = ACTIONS(2182), + [aux_sym_cmd_identifier_token38] = ACTIONS(2182), + [aux_sym_cmd_identifier_token39] = ACTIONS(2182), + [aux_sym_cmd_identifier_token40] = ACTIONS(2182), + [anon_sym_def] = ACTIONS(2182), + [anon_sym_export_DASHenv] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_DOLLAR] = ACTIONS(2182), + [anon_sym_error] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_in2] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_make] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_catch] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_source] = ACTIONS(2182), + [anon_sym_source_DASHenv] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_hide] = ACTIONS(2182), + [anon_sym_hide_DASHenv] = ACTIONS(2182), + [anon_sym_overlay] = ACTIONS(2182), + [anon_sym_as] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2182), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2182), + [aux_sym__val_number_decimal_token3] = ACTIONS(2182), + [aux_sym__val_number_decimal_token4] = ACTIONS(2182), + [aux_sym__val_number_token1] = ACTIONS(2182), + [aux_sym__val_number_token2] = ACTIONS(2182), + [aux_sym__val_number_token3] = ACTIONS(2182), + [aux_sym__val_number_token4] = ACTIONS(2182), + [aux_sym__val_number_token5] = ACTIONS(2182), + [aux_sym__val_number_token6] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [sym__str_single_quotes] = ACTIONS(2182), + [sym__str_back_ticks] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2182), + [sym__entry_separator] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2184), }, [504] = { - [sym_cell_path] = STATE(744), - [sym_path] = STATE(659), + [sym__expr_parenthesized_immediate] = STATE(7373), [sym_comment] = STATE(504), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_alias] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_let_DASHenv] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [aux_sym_cmd_identifier_token1] = ACTIONS(2045), - [aux_sym_cmd_identifier_token2] = ACTIONS(2047), - [aux_sym_cmd_identifier_token3] = ACTIONS(2047), - [aux_sym_cmd_identifier_token4] = ACTIONS(2047), - [aux_sym_cmd_identifier_token5] = ACTIONS(2047), - [aux_sym_cmd_identifier_token6] = ACTIONS(2047), - [aux_sym_cmd_identifier_token7] = ACTIONS(2047), - [aux_sym_cmd_identifier_token8] = ACTIONS(2045), - [aux_sym_cmd_identifier_token9] = ACTIONS(2045), - [aux_sym_cmd_identifier_token10] = ACTIONS(2047), - [aux_sym_cmd_identifier_token11] = ACTIONS(2047), - [aux_sym_cmd_identifier_token12] = ACTIONS(2045), - [aux_sym_cmd_identifier_token13] = ACTIONS(2045), - [aux_sym_cmd_identifier_token14] = ACTIONS(2045), - [aux_sym_cmd_identifier_token15] = ACTIONS(2045), - [aux_sym_cmd_identifier_token16] = ACTIONS(2047), - [aux_sym_cmd_identifier_token17] = ACTIONS(2047), - [aux_sym_cmd_identifier_token18] = ACTIONS(2047), - [aux_sym_cmd_identifier_token19] = ACTIONS(2047), - [aux_sym_cmd_identifier_token20] = ACTIONS(2047), - [aux_sym_cmd_identifier_token21] = ACTIONS(2047), - [aux_sym_cmd_identifier_token22] = ACTIONS(2047), - [aux_sym_cmd_identifier_token23] = ACTIONS(2047), - [aux_sym_cmd_identifier_token24] = ACTIONS(2047), - [aux_sym_cmd_identifier_token25] = ACTIONS(2047), - [aux_sym_cmd_identifier_token26] = ACTIONS(2047), - [aux_sym_cmd_identifier_token27] = ACTIONS(2047), - [aux_sym_cmd_identifier_token28] = ACTIONS(2047), - [aux_sym_cmd_identifier_token29] = ACTIONS(2047), - [aux_sym_cmd_identifier_token30] = ACTIONS(2047), - [aux_sym_cmd_identifier_token31] = ACTIONS(2047), - [aux_sym_cmd_identifier_token32] = ACTIONS(2047), - [aux_sym_cmd_identifier_token33] = ACTIONS(2047), - [aux_sym_cmd_identifier_token34] = ACTIONS(2045), - [aux_sym_cmd_identifier_token35] = ACTIONS(2047), - [aux_sym_cmd_identifier_token36] = ACTIONS(2047), - [aux_sym_cmd_identifier_token37] = ACTIONS(2047), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2047), - [aux_sym_cmd_identifier_token40] = ACTIONS(2047), - [anon_sym_def] = ACTIONS(2045), - [anon_sym_export_DASHenv] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_module] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_error] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_in2] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_make] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_source] = ACTIONS(2045), - [anon_sym_source_DASHenv] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_hide] = ACTIONS(2045), - [anon_sym_hide_DASHenv] = ACTIONS(2045), - [anon_sym_overlay] = ACTIONS(2045), - [anon_sym_as] = ACTIONS(2045), - [anon_sym_PLUS2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2047), - [aux_sym__val_number_decimal_token3] = ACTIONS(2047), - [aux_sym__val_number_decimal_token4] = ACTIONS(2047), - [aux_sym__val_number_token1] = ACTIONS(2047), - [aux_sym__val_number_token2] = ACTIONS(2047), - [aux_sym__val_number_token3] = ACTIONS(2047), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_alias] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_let_DASHenv] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [aux_sym_cmd_identifier_token1] = ACTIONS(2186), + [aux_sym_cmd_identifier_token2] = ACTIONS(2186), + [aux_sym_cmd_identifier_token3] = ACTIONS(2186), + [aux_sym_cmd_identifier_token4] = ACTIONS(2186), + [aux_sym_cmd_identifier_token5] = ACTIONS(2186), + [aux_sym_cmd_identifier_token6] = ACTIONS(2186), + [aux_sym_cmd_identifier_token7] = ACTIONS(2186), + [aux_sym_cmd_identifier_token8] = ACTIONS(2186), + [aux_sym_cmd_identifier_token9] = ACTIONS(2186), + [aux_sym_cmd_identifier_token10] = ACTIONS(2186), + [aux_sym_cmd_identifier_token11] = ACTIONS(2186), + [aux_sym_cmd_identifier_token12] = ACTIONS(2186), + [aux_sym_cmd_identifier_token13] = ACTIONS(2186), + [aux_sym_cmd_identifier_token14] = ACTIONS(2186), + [aux_sym_cmd_identifier_token15] = ACTIONS(2186), + [aux_sym_cmd_identifier_token16] = ACTIONS(2186), + [aux_sym_cmd_identifier_token17] = ACTIONS(2186), + [aux_sym_cmd_identifier_token18] = ACTIONS(2186), + [aux_sym_cmd_identifier_token19] = ACTIONS(2186), + [aux_sym_cmd_identifier_token20] = ACTIONS(2186), + [aux_sym_cmd_identifier_token21] = ACTIONS(2186), + [aux_sym_cmd_identifier_token22] = ACTIONS(2186), + [aux_sym_cmd_identifier_token23] = ACTIONS(2186), + [aux_sym_cmd_identifier_token24] = ACTIONS(2186), + [aux_sym_cmd_identifier_token25] = ACTIONS(2186), + [aux_sym_cmd_identifier_token26] = ACTIONS(2186), + [aux_sym_cmd_identifier_token27] = ACTIONS(2186), + [aux_sym_cmd_identifier_token28] = ACTIONS(2186), + [aux_sym_cmd_identifier_token29] = ACTIONS(2186), + [aux_sym_cmd_identifier_token30] = ACTIONS(2186), + [aux_sym_cmd_identifier_token31] = ACTIONS(2186), + [aux_sym_cmd_identifier_token32] = ACTIONS(2186), + [aux_sym_cmd_identifier_token33] = ACTIONS(2186), + [aux_sym_cmd_identifier_token34] = ACTIONS(2186), + [aux_sym_cmd_identifier_token35] = ACTIONS(2186), + [aux_sym_cmd_identifier_token36] = ACTIONS(2186), + [aux_sym_cmd_identifier_token37] = ACTIONS(2186), + [aux_sym_cmd_identifier_token38] = ACTIONS(2186), + [aux_sym_cmd_identifier_token39] = ACTIONS(2186), + [aux_sym_cmd_identifier_token40] = ACTIONS(2186), + [anon_sym_def] = ACTIONS(2186), + [anon_sym_export_DASHenv] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2186), + [anon_sym_error] = ACTIONS(2186), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_in2] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_make] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_source] = ACTIONS(2186), + [anon_sym_source_DASHenv] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_hide] = ACTIONS(2186), + [anon_sym_hide_DASHenv] = ACTIONS(2186), + [anon_sym_overlay] = ACTIONS(2186), + [anon_sym_as] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2186), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(2186), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(2186), + [aux_sym__val_number_token2] = ACTIONS(2186), + [aux_sym__val_number_token3] = ACTIONS(2186), + [aux_sym__val_number_token4] = ACTIONS(2186), + [aux_sym__val_number_token5] = ACTIONS(2186), + [aux_sym__val_number_token6] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2186), + [sym__str_single_quotes] = ACTIONS(2186), + [sym__str_back_ticks] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2186), + [sym__entry_separator] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2188), }, [505] = { + [sym__expr_parenthesized_immediate] = STATE(7373), [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [aux_sym__immediate_decimal_token2] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), + [anon_sym_export] = ACTIONS(2190), + [anon_sym_alias] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_let_DASHenv] = ACTIONS(2190), + [anon_sym_mut] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [aux_sym_cmd_identifier_token1] = ACTIONS(2190), + [aux_sym_cmd_identifier_token2] = ACTIONS(2190), + [aux_sym_cmd_identifier_token3] = ACTIONS(2190), + [aux_sym_cmd_identifier_token4] = ACTIONS(2190), + [aux_sym_cmd_identifier_token5] = ACTIONS(2190), + [aux_sym_cmd_identifier_token6] = ACTIONS(2190), + [aux_sym_cmd_identifier_token7] = ACTIONS(2190), + [aux_sym_cmd_identifier_token8] = ACTIONS(2190), + [aux_sym_cmd_identifier_token9] = ACTIONS(2190), + [aux_sym_cmd_identifier_token10] = ACTIONS(2190), + [aux_sym_cmd_identifier_token11] = ACTIONS(2190), + [aux_sym_cmd_identifier_token12] = ACTIONS(2190), + [aux_sym_cmd_identifier_token13] = ACTIONS(2190), + [aux_sym_cmd_identifier_token14] = ACTIONS(2190), + [aux_sym_cmd_identifier_token15] = ACTIONS(2190), + [aux_sym_cmd_identifier_token16] = ACTIONS(2190), + [aux_sym_cmd_identifier_token17] = ACTIONS(2190), + [aux_sym_cmd_identifier_token18] = ACTIONS(2190), + [aux_sym_cmd_identifier_token19] = ACTIONS(2190), + [aux_sym_cmd_identifier_token20] = ACTIONS(2190), + [aux_sym_cmd_identifier_token21] = ACTIONS(2190), + [aux_sym_cmd_identifier_token22] = ACTIONS(2190), + [aux_sym_cmd_identifier_token23] = ACTIONS(2190), + [aux_sym_cmd_identifier_token24] = ACTIONS(2190), + [aux_sym_cmd_identifier_token25] = ACTIONS(2190), + [aux_sym_cmd_identifier_token26] = ACTIONS(2190), + [aux_sym_cmd_identifier_token27] = ACTIONS(2190), + [aux_sym_cmd_identifier_token28] = ACTIONS(2190), + [aux_sym_cmd_identifier_token29] = ACTIONS(2190), + [aux_sym_cmd_identifier_token30] = ACTIONS(2190), + [aux_sym_cmd_identifier_token31] = ACTIONS(2190), + [aux_sym_cmd_identifier_token32] = ACTIONS(2190), + [aux_sym_cmd_identifier_token33] = ACTIONS(2190), + [aux_sym_cmd_identifier_token34] = ACTIONS(2190), + [aux_sym_cmd_identifier_token35] = ACTIONS(2190), + [aux_sym_cmd_identifier_token36] = ACTIONS(2190), + [aux_sym_cmd_identifier_token37] = ACTIONS(2190), + [aux_sym_cmd_identifier_token38] = ACTIONS(2190), + [aux_sym_cmd_identifier_token39] = ACTIONS(2190), + [aux_sym_cmd_identifier_token40] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2190), + [anon_sym_export_DASHenv] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_module] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(2190), + [anon_sym_error] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_in2] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_make] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_catch] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_source] = ACTIONS(2190), + [anon_sym_source_DASHenv] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_hide] = ACTIONS(2190), + [anon_sym_hide_DASHenv] = ACTIONS(2190), + [anon_sym_overlay] = ACTIONS(2190), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2190), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(2190), + [aux_sym__val_number_decimal_token3] = ACTIONS(2190), + [aux_sym__val_number_decimal_token4] = ACTIONS(2190), + [aux_sym__val_number_token1] = ACTIONS(2190), + [aux_sym__val_number_token2] = ACTIONS(2190), + [aux_sym__val_number_token3] = ACTIONS(2190), + [aux_sym__val_number_token4] = ACTIONS(2190), + [aux_sym__val_number_token5] = ACTIONS(2190), + [aux_sym__val_number_token6] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__str_single_quotes] = ACTIONS(2190), + [sym__str_back_ticks] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2190), + [sym__entry_separator] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(2192), }, [506] = { [sym_comment] = STATE(506), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_alias] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_let_DASHenv] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [aux_sym_cmd_identifier_token1] = ACTIONS(2197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2197), - [aux_sym_cmd_identifier_token3] = ACTIONS(2197), - [aux_sym_cmd_identifier_token4] = ACTIONS(2197), - [aux_sym_cmd_identifier_token5] = ACTIONS(2197), - [aux_sym_cmd_identifier_token6] = ACTIONS(2197), - [aux_sym_cmd_identifier_token7] = ACTIONS(2197), - [aux_sym_cmd_identifier_token8] = ACTIONS(2197), - [aux_sym_cmd_identifier_token9] = ACTIONS(2197), - [aux_sym_cmd_identifier_token10] = ACTIONS(2197), - [aux_sym_cmd_identifier_token11] = ACTIONS(2197), - [aux_sym_cmd_identifier_token12] = ACTIONS(2197), - [aux_sym_cmd_identifier_token13] = ACTIONS(2197), - [aux_sym_cmd_identifier_token14] = ACTIONS(2197), - [aux_sym_cmd_identifier_token15] = ACTIONS(2197), - [aux_sym_cmd_identifier_token16] = ACTIONS(2197), - [aux_sym_cmd_identifier_token17] = ACTIONS(2197), - [aux_sym_cmd_identifier_token18] = ACTIONS(2197), - [aux_sym_cmd_identifier_token19] = ACTIONS(2197), - [aux_sym_cmd_identifier_token20] = ACTIONS(2197), - [aux_sym_cmd_identifier_token21] = ACTIONS(2197), - [aux_sym_cmd_identifier_token22] = ACTIONS(2197), - [aux_sym_cmd_identifier_token23] = ACTIONS(2197), - [aux_sym_cmd_identifier_token24] = ACTIONS(2197), - [aux_sym_cmd_identifier_token25] = ACTIONS(2197), - [aux_sym_cmd_identifier_token26] = ACTIONS(2197), - [aux_sym_cmd_identifier_token27] = ACTIONS(2197), - [aux_sym_cmd_identifier_token28] = ACTIONS(2197), - [aux_sym_cmd_identifier_token29] = ACTIONS(2197), - [aux_sym_cmd_identifier_token30] = ACTIONS(2197), - [aux_sym_cmd_identifier_token31] = ACTIONS(2197), - [aux_sym_cmd_identifier_token32] = ACTIONS(2197), - [aux_sym_cmd_identifier_token33] = ACTIONS(2197), - [aux_sym_cmd_identifier_token34] = ACTIONS(2197), - [aux_sym_cmd_identifier_token35] = ACTIONS(2197), - [aux_sym_cmd_identifier_token36] = ACTIONS(2197), - [aux_sym_cmd_identifier_token37] = ACTIONS(2197), - [aux_sym_cmd_identifier_token38] = ACTIONS(2197), - [aux_sym_cmd_identifier_token39] = ACTIONS(2197), - [aux_sym_cmd_identifier_token40] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_export_DASHenv] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2197), - [anon_sym_error] = ACTIONS(2197), - [anon_sym_DASH2] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_in2] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_make] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_source] = ACTIONS(2197), - [anon_sym_source_DASHenv] = ACTIONS(2197), - [anon_sym_register] = ACTIONS(2197), - [anon_sym_hide] = ACTIONS(2197), - [anon_sym_hide_DASHenv] = ACTIONS(2197), - [anon_sym_overlay] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_PLUS2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), - [anon_sym_DOT_DOT2] = ACTIONS(2066), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2068), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), - [aux_sym__val_number_decimal_token1] = ACTIONS(2197), - [aux_sym__val_number_decimal_token2] = ACTIONS(2197), - [aux_sym__val_number_decimal_token3] = ACTIONS(2197), - [aux_sym__val_number_decimal_token4] = ACTIONS(2197), - [aux_sym__val_number_token1] = ACTIONS(2197), - [aux_sym__val_number_token2] = ACTIONS(2197), - [aux_sym__val_number_token3] = ACTIONS(2197), - [aux_sym__val_number_token4] = ACTIONS(2197), - [aux_sym__val_number_token5] = ACTIONS(2197), - [aux_sym__val_number_token6] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [sym__str_single_quotes] = ACTIONS(2197), - [sym__str_back_ticks] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), - [sym__entry_separator] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2196), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1000), }, [507] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(659), [sym_comment] = STATE(507), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [aux_sym_cmd_identifier_token37] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_alias] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_let_DASHenv] = ACTIONS(2142), + [anon_sym_mut] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [aux_sym_cmd_identifier_token1] = ACTIONS(2142), + [aux_sym_cmd_identifier_token2] = ACTIONS(2148), + [aux_sym_cmd_identifier_token3] = ACTIONS(2148), + [aux_sym_cmd_identifier_token4] = ACTIONS(2148), + [aux_sym_cmd_identifier_token5] = ACTIONS(2148), + [aux_sym_cmd_identifier_token6] = ACTIONS(2148), + [aux_sym_cmd_identifier_token7] = ACTIONS(2148), + [aux_sym_cmd_identifier_token8] = ACTIONS(2142), + [aux_sym_cmd_identifier_token9] = ACTIONS(2142), + [aux_sym_cmd_identifier_token10] = ACTIONS(2148), + [aux_sym_cmd_identifier_token11] = ACTIONS(2148), + [aux_sym_cmd_identifier_token12] = ACTIONS(2142), + [aux_sym_cmd_identifier_token13] = ACTIONS(2142), + [aux_sym_cmd_identifier_token14] = ACTIONS(2142), + [aux_sym_cmd_identifier_token15] = ACTIONS(2142), + [aux_sym_cmd_identifier_token16] = ACTIONS(2148), + [aux_sym_cmd_identifier_token17] = ACTIONS(2148), + [aux_sym_cmd_identifier_token18] = ACTIONS(2148), + [aux_sym_cmd_identifier_token19] = ACTIONS(2148), + [aux_sym_cmd_identifier_token20] = ACTIONS(2148), + [aux_sym_cmd_identifier_token21] = ACTIONS(2148), + [aux_sym_cmd_identifier_token22] = ACTIONS(2148), + [aux_sym_cmd_identifier_token23] = ACTIONS(2148), + [aux_sym_cmd_identifier_token24] = ACTIONS(2148), + [aux_sym_cmd_identifier_token25] = ACTIONS(2148), + [aux_sym_cmd_identifier_token26] = ACTIONS(2148), + [aux_sym_cmd_identifier_token27] = ACTIONS(2148), + [aux_sym_cmd_identifier_token28] = ACTIONS(2148), + [aux_sym_cmd_identifier_token29] = ACTIONS(2148), + [aux_sym_cmd_identifier_token30] = ACTIONS(2148), + [aux_sym_cmd_identifier_token31] = ACTIONS(2148), + [aux_sym_cmd_identifier_token32] = ACTIONS(2148), + [aux_sym_cmd_identifier_token33] = ACTIONS(2148), + [aux_sym_cmd_identifier_token34] = ACTIONS(2142), + [aux_sym_cmd_identifier_token35] = ACTIONS(2148), + [aux_sym_cmd_identifier_token36] = ACTIONS(2148), + [aux_sym_cmd_identifier_token37] = ACTIONS(2148), + [aux_sym_cmd_identifier_token38] = ACTIONS(2142), + [aux_sym_cmd_identifier_token39] = ACTIONS(2148), + [aux_sym_cmd_identifier_token40] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2142), + [anon_sym_export_DASHenv] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_error] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_in2] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_make] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_source] = ACTIONS(2142), + [anon_sym_source_DASHenv] = ACTIONS(2142), + [anon_sym_register] = ACTIONS(2142), + [anon_sym_hide] = ACTIONS(2142), + [anon_sym_hide_DASHenv] = ACTIONS(2142), + [anon_sym_overlay] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2142), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2148), + [anon_sym_DOT_DOT2] = ACTIONS(2198), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2200), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2142), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2142), + [aux_sym__val_number_token5] = ACTIONS(2142), + [aux_sym__val_number_token6] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2148), }, [508] = { - [sym_cell_path] = STATE(759), - [sym_path] = STATE(659), [sym_comment] = STATE(508), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2057), - [anon_sym_alias] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_let_DASHenv] = ACTIONS(2057), - [anon_sym_mut] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [aux_sym_cmd_identifier_token1] = ACTIONS(2057), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2057), - [aux_sym_cmd_identifier_token9] = ACTIONS(2057), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2057), - [aux_sym_cmd_identifier_token13] = ACTIONS(2057), - [aux_sym_cmd_identifier_token14] = ACTIONS(2057), - [aux_sym_cmd_identifier_token15] = ACTIONS(2057), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2057), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [aux_sym_cmd_identifier_token37] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2057), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2057), - [anon_sym_export_DASHenv] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_module] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2057), - [anon_sym_DASH2] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_in2] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_make] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_do] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_else] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2057), - [anon_sym_catch] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_source] = ACTIONS(2057), - [anon_sym_source_DASHenv] = ACTIONS(2057), - [anon_sym_register] = ACTIONS(2057), - [anon_sym_hide] = ACTIONS(2057), - [anon_sym_hide_DASHenv] = ACTIONS(2057), - [anon_sym_overlay] = ACTIONS(2057), - [anon_sym_as] = ACTIONS(2057), - [anon_sym_PLUS2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2057), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [aux_sym__val_number_token4] = ACTIONS(2057), - [aux_sym__val_number_token5] = ACTIONS(2057), - [aux_sym__val_number_token6] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2059), + [anon_sym_export] = ACTIONS(2150), + [anon_sym_alias] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_let_DASHenv] = ACTIONS(2150), + [anon_sym_mut] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [aux_sym_cmd_identifier_token1] = ACTIONS(2150), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2150), + [aux_sym_cmd_identifier_token9] = ACTIONS(2150), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2150), + [aux_sym_cmd_identifier_token13] = ACTIONS(2150), + [aux_sym_cmd_identifier_token14] = ACTIONS(2150), + [aux_sym_cmd_identifier_token15] = ACTIONS(2150), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2150), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [aux_sym_cmd_identifier_token37] = ACTIONS(2156), + [aux_sym_cmd_identifier_token38] = ACTIONS(2150), + [aux_sym_cmd_identifier_token39] = ACTIONS(2156), + [aux_sym_cmd_identifier_token40] = ACTIONS(2156), + [anon_sym_def] = ACTIONS(2150), + [anon_sym_export_DASHenv] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_module] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_error] = ACTIONS(2150), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_in2] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_make] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2150), + [anon_sym_catch] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_source] = ACTIONS(2150), + [anon_sym_source_DASHenv] = ACTIONS(2150), + [anon_sym_register] = ACTIONS(2150), + [anon_sym_hide] = ACTIONS(2150), + [anon_sym_hide_DASHenv] = ACTIONS(2150), + [anon_sym_overlay] = ACTIONS(2150), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), + [anon_sym_DOT_DOT2] = ACTIONS(2202), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2204), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2204), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2150), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2150), + [aux_sym__val_number_token5] = ACTIONS(2150), + [aux_sym__val_number_token6] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2156), }, [509] = { - [sym_cell_path] = STATE(761), - [sym_path] = STATE(659), [sym_comment] = STATE(509), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1865), - [aux_sym_cmd_identifier_token3] = ACTIONS(1865), - [aux_sym_cmd_identifier_token4] = ACTIONS(1865), - [aux_sym_cmd_identifier_token5] = ACTIONS(1865), - [aux_sym_cmd_identifier_token6] = ACTIONS(1865), - [aux_sym_cmd_identifier_token7] = ACTIONS(1865), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1865), - [aux_sym_cmd_identifier_token11] = ACTIONS(1865), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1865), - [aux_sym_cmd_identifier_token17] = ACTIONS(1865), - [aux_sym_cmd_identifier_token18] = ACTIONS(1865), - [aux_sym_cmd_identifier_token19] = ACTIONS(1865), - [aux_sym_cmd_identifier_token20] = ACTIONS(1865), - [aux_sym_cmd_identifier_token21] = ACTIONS(1865), - [aux_sym_cmd_identifier_token22] = ACTIONS(1865), - [aux_sym_cmd_identifier_token23] = ACTIONS(1865), - [aux_sym_cmd_identifier_token24] = ACTIONS(1865), - [aux_sym_cmd_identifier_token25] = ACTIONS(1865), - [aux_sym_cmd_identifier_token26] = ACTIONS(1865), - [aux_sym_cmd_identifier_token27] = ACTIONS(1865), - [aux_sym_cmd_identifier_token28] = ACTIONS(1865), - [aux_sym_cmd_identifier_token29] = ACTIONS(1865), - [aux_sym_cmd_identifier_token30] = ACTIONS(1865), - [aux_sym_cmd_identifier_token31] = ACTIONS(1865), - [aux_sym_cmd_identifier_token32] = ACTIONS(1865), - [aux_sym_cmd_identifier_token33] = ACTIONS(1865), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1865), - [aux_sym_cmd_identifier_token36] = ACTIONS(1865), - [aux_sym_cmd_identifier_token37] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1865), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_alias] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_let_DASHenv] = ACTIONS(2158), + [anon_sym_mut] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [aux_sym_cmd_identifier_token1] = ACTIONS(2158), + [aux_sym_cmd_identifier_token2] = ACTIONS(2164), + [aux_sym_cmd_identifier_token3] = ACTIONS(2164), + [aux_sym_cmd_identifier_token4] = ACTIONS(2164), + [aux_sym_cmd_identifier_token5] = ACTIONS(2164), + [aux_sym_cmd_identifier_token6] = ACTIONS(2164), + [aux_sym_cmd_identifier_token7] = ACTIONS(2164), + [aux_sym_cmd_identifier_token8] = ACTIONS(2158), + [aux_sym_cmd_identifier_token9] = ACTIONS(2158), + [aux_sym_cmd_identifier_token10] = ACTIONS(2164), + [aux_sym_cmd_identifier_token11] = ACTIONS(2164), + [aux_sym_cmd_identifier_token12] = ACTIONS(2158), + [aux_sym_cmd_identifier_token13] = ACTIONS(2158), + [aux_sym_cmd_identifier_token14] = ACTIONS(2158), + [aux_sym_cmd_identifier_token15] = ACTIONS(2158), + [aux_sym_cmd_identifier_token16] = ACTIONS(2164), + [aux_sym_cmd_identifier_token17] = ACTIONS(2164), + [aux_sym_cmd_identifier_token18] = ACTIONS(2164), + [aux_sym_cmd_identifier_token19] = ACTIONS(2164), + [aux_sym_cmd_identifier_token20] = ACTIONS(2164), + [aux_sym_cmd_identifier_token21] = ACTIONS(2164), + [aux_sym_cmd_identifier_token22] = ACTIONS(2164), + [aux_sym_cmd_identifier_token23] = ACTIONS(2164), + [aux_sym_cmd_identifier_token24] = ACTIONS(2164), + [aux_sym_cmd_identifier_token25] = ACTIONS(2164), + [aux_sym_cmd_identifier_token26] = ACTIONS(2164), + [aux_sym_cmd_identifier_token27] = ACTIONS(2164), + [aux_sym_cmd_identifier_token28] = ACTIONS(2164), + [aux_sym_cmd_identifier_token29] = ACTIONS(2164), + [aux_sym_cmd_identifier_token30] = ACTIONS(2164), + [aux_sym_cmd_identifier_token31] = ACTIONS(2164), + [aux_sym_cmd_identifier_token32] = ACTIONS(2164), + [aux_sym_cmd_identifier_token33] = ACTIONS(2164), + [aux_sym_cmd_identifier_token34] = ACTIONS(2158), + [aux_sym_cmd_identifier_token35] = ACTIONS(2164), + [aux_sym_cmd_identifier_token36] = ACTIONS(2164), + [aux_sym_cmd_identifier_token37] = ACTIONS(2164), + [aux_sym_cmd_identifier_token38] = ACTIONS(2158), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [anon_sym_def] = ACTIONS(2158), + [anon_sym_export_DASHenv] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2158), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_in2] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_make] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_catch] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_source] = ACTIONS(2158), + [anon_sym_source_DASHenv] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_hide] = ACTIONS(2158), + [anon_sym_hide_DASHenv] = ACTIONS(2158), + [anon_sym_overlay] = ACTIONS(2158), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2164), + [anon_sym_DOT_DOT2] = ACTIONS(2206), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2208), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2208), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2158), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2158), + [aux_sym__val_number_token5] = ACTIONS(2158), + [aux_sym__val_number_token6] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2164), }, [510] = { - [sym_cell_path] = STATE(765), - [sym_path] = STATE(659), [sym_comment] = STATE(510), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_alias] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_let_DASHenv] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [aux_sym_cmd_identifier_token1] = ACTIONS(2041), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2041), - [aux_sym_cmd_identifier_token9] = ACTIONS(2041), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2041), - [aux_sym_cmd_identifier_token13] = ACTIONS(2041), - [aux_sym_cmd_identifier_token14] = ACTIONS(2041), - [aux_sym_cmd_identifier_token15] = ACTIONS(2041), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2041), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [aux_sym_cmd_identifier_token37] = ACTIONS(2043), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2043), - [aux_sym_cmd_identifier_token40] = ACTIONS(2043), - [anon_sym_def] = ACTIONS(2041), - [anon_sym_export_DASHenv] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_in2] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_make] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_source] = ACTIONS(2041), - [anon_sym_source_DASHenv] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_hide] = ACTIONS(2041), - [anon_sym_hide_DASHenv] = ACTIONS(2041), - [anon_sym_overlay] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_alias] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_let_DASHenv] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [aux_sym_cmd_identifier_token1] = ACTIONS(2115), + [aux_sym_cmd_identifier_token2] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2121), + [aux_sym_cmd_identifier_token4] = ACTIONS(2121), + [aux_sym_cmd_identifier_token5] = ACTIONS(2121), + [aux_sym_cmd_identifier_token6] = ACTIONS(2121), + [aux_sym_cmd_identifier_token7] = ACTIONS(2121), + [aux_sym_cmd_identifier_token8] = ACTIONS(2115), + [aux_sym_cmd_identifier_token9] = ACTIONS(2115), + [aux_sym_cmd_identifier_token10] = ACTIONS(2121), + [aux_sym_cmd_identifier_token11] = ACTIONS(2121), + [aux_sym_cmd_identifier_token12] = ACTIONS(2115), + [aux_sym_cmd_identifier_token13] = ACTIONS(2115), + [aux_sym_cmd_identifier_token14] = ACTIONS(2115), + [aux_sym_cmd_identifier_token15] = ACTIONS(2115), + [aux_sym_cmd_identifier_token16] = ACTIONS(2121), + [aux_sym_cmd_identifier_token17] = ACTIONS(2121), + [aux_sym_cmd_identifier_token18] = ACTIONS(2121), + [aux_sym_cmd_identifier_token19] = ACTIONS(2121), + [aux_sym_cmd_identifier_token20] = ACTIONS(2121), + [aux_sym_cmd_identifier_token21] = ACTIONS(2121), + [aux_sym_cmd_identifier_token22] = ACTIONS(2121), + [aux_sym_cmd_identifier_token23] = ACTIONS(2121), + [aux_sym_cmd_identifier_token24] = ACTIONS(2121), + [aux_sym_cmd_identifier_token25] = ACTIONS(2121), + [aux_sym_cmd_identifier_token26] = ACTIONS(2121), + [aux_sym_cmd_identifier_token27] = ACTIONS(2121), + [aux_sym_cmd_identifier_token28] = ACTIONS(2121), + [aux_sym_cmd_identifier_token29] = ACTIONS(2121), + [aux_sym_cmd_identifier_token30] = ACTIONS(2121), + [aux_sym_cmd_identifier_token31] = ACTIONS(2121), + [aux_sym_cmd_identifier_token32] = ACTIONS(2121), + [aux_sym_cmd_identifier_token33] = ACTIONS(2121), + [aux_sym_cmd_identifier_token34] = ACTIONS(2115), + [aux_sym_cmd_identifier_token35] = ACTIONS(2121), + [aux_sym_cmd_identifier_token36] = ACTIONS(2121), + [aux_sym_cmd_identifier_token37] = ACTIONS(2121), + [aux_sym_cmd_identifier_token38] = ACTIONS(2115), + [aux_sym_cmd_identifier_token39] = ACTIONS(2121), + [aux_sym_cmd_identifier_token40] = ACTIONS(2121), + [anon_sym_def] = ACTIONS(2115), + [anon_sym_export_DASHenv] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_module] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2121), + [anon_sym_error] = ACTIONS(2115), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_in2] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_make] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_do] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_catch] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_source] = ACTIONS(2115), + [anon_sym_source_DASHenv] = ACTIONS(2115), + [anon_sym_register] = ACTIONS(2115), + [anon_sym_hide] = ACTIONS(2115), + [anon_sym_hide_DASHenv] = ACTIONS(2115), + [anon_sym_overlay] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_PLUS2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2121), + [anon_sym_DOT_DOT2] = ACTIONS(2210), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2212), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2121), + [aux_sym__val_number_decimal_token3] = ACTIONS(2121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2121), + [aux_sym__val_number_token1] = ACTIONS(2121), + [aux_sym__val_number_token2] = ACTIONS(2121), + [aux_sym__val_number_token3] = ACTIONS(2121), + [aux_sym__val_number_token4] = ACTIONS(2115), + [aux_sym__val_number_token5] = ACTIONS(2115), + [aux_sym__val_number_token6] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2121), }, [511] = { - [sym_cell_path] = STATE(764), - [sym_path] = STATE(659), [sym_comment] = STATE(511), - [aux_sym_cell_path_repeat1] = STATE(521), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_alias] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_let_DASHenv] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [aux_sym_cmd_identifier_token1] = ACTIONS(2049), - [aux_sym_cmd_identifier_token2] = ACTIONS(2051), - [aux_sym_cmd_identifier_token3] = ACTIONS(2051), - [aux_sym_cmd_identifier_token4] = ACTIONS(2051), - [aux_sym_cmd_identifier_token5] = ACTIONS(2051), - [aux_sym_cmd_identifier_token6] = ACTIONS(2051), - [aux_sym_cmd_identifier_token7] = ACTIONS(2051), - [aux_sym_cmd_identifier_token8] = ACTIONS(2049), - [aux_sym_cmd_identifier_token9] = ACTIONS(2049), - [aux_sym_cmd_identifier_token10] = ACTIONS(2051), - [aux_sym_cmd_identifier_token11] = ACTIONS(2051), - [aux_sym_cmd_identifier_token12] = ACTIONS(2049), - [aux_sym_cmd_identifier_token13] = ACTIONS(2049), - [aux_sym_cmd_identifier_token14] = ACTIONS(2049), - [aux_sym_cmd_identifier_token15] = ACTIONS(2049), - [aux_sym_cmd_identifier_token16] = ACTIONS(2051), - [aux_sym_cmd_identifier_token17] = ACTIONS(2051), - [aux_sym_cmd_identifier_token18] = ACTIONS(2051), - [aux_sym_cmd_identifier_token19] = ACTIONS(2051), - [aux_sym_cmd_identifier_token20] = ACTIONS(2051), - [aux_sym_cmd_identifier_token21] = ACTIONS(2051), - [aux_sym_cmd_identifier_token22] = ACTIONS(2051), - [aux_sym_cmd_identifier_token23] = ACTIONS(2051), - [aux_sym_cmd_identifier_token24] = ACTIONS(2051), - [aux_sym_cmd_identifier_token25] = ACTIONS(2051), - [aux_sym_cmd_identifier_token26] = ACTIONS(2051), - [aux_sym_cmd_identifier_token27] = ACTIONS(2051), - [aux_sym_cmd_identifier_token28] = ACTIONS(2051), - [aux_sym_cmd_identifier_token29] = ACTIONS(2051), - [aux_sym_cmd_identifier_token30] = ACTIONS(2051), - [aux_sym_cmd_identifier_token31] = ACTIONS(2051), - [aux_sym_cmd_identifier_token32] = ACTIONS(2051), - [aux_sym_cmd_identifier_token33] = ACTIONS(2051), - [aux_sym_cmd_identifier_token34] = ACTIONS(2049), - [aux_sym_cmd_identifier_token35] = ACTIONS(2051), - [aux_sym_cmd_identifier_token36] = ACTIONS(2051), - [aux_sym_cmd_identifier_token37] = ACTIONS(2051), - [aux_sym_cmd_identifier_token38] = ACTIONS(2049), - [aux_sym_cmd_identifier_token39] = ACTIONS(2051), - [aux_sym_cmd_identifier_token40] = ACTIONS(2051), - [anon_sym_def] = ACTIONS(2049), - [anon_sym_export_DASHenv] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_error] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_in2] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_make] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_source] = ACTIONS(2049), - [anon_sym_source_DASHenv] = ACTIONS(2049), - [anon_sym_register] = ACTIONS(2049), - [anon_sym_hide] = ACTIONS(2049), - [anon_sym_hide_DASHenv] = ACTIONS(2049), - [anon_sym_overlay] = ACTIONS(2049), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_PLUS2] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2051), - [aux_sym__val_number_decimal_token3] = ACTIONS(2051), - [aux_sym__val_number_decimal_token4] = ACTIONS(2051), - [aux_sym__val_number_token1] = ACTIONS(2051), - [aux_sym__val_number_token2] = ACTIONS(2051), - [aux_sym__val_number_token3] = ACTIONS(2051), - [aux_sym__val_number_token4] = ACTIONS(2049), - [aux_sym__val_number_token5] = ACTIONS(2049), - [aux_sym__val_number_token6] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(1717), + [anon_sym_alias] = ACTIONS(1717), + [anon_sym_let] = ACTIONS(1717), + [anon_sym_let_DASHenv] = ACTIONS(1717), + [anon_sym_mut] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [aux_sym_cmd_identifier_token1] = ACTIONS(1717), + [aux_sym_cmd_identifier_token2] = ACTIONS(1719), + [aux_sym_cmd_identifier_token3] = ACTIONS(1719), + [aux_sym_cmd_identifier_token4] = ACTIONS(1719), + [aux_sym_cmd_identifier_token5] = ACTIONS(1719), + [aux_sym_cmd_identifier_token6] = ACTIONS(1719), + [aux_sym_cmd_identifier_token7] = ACTIONS(1719), + [aux_sym_cmd_identifier_token8] = ACTIONS(1717), + [aux_sym_cmd_identifier_token9] = ACTIONS(1717), + [aux_sym_cmd_identifier_token10] = ACTIONS(1719), + [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token12] = ACTIONS(1717), + [aux_sym_cmd_identifier_token13] = ACTIONS(1717), + [aux_sym_cmd_identifier_token14] = ACTIONS(1717), + [aux_sym_cmd_identifier_token15] = ACTIONS(1717), + [aux_sym_cmd_identifier_token16] = ACTIONS(1719), + [aux_sym_cmd_identifier_token17] = ACTIONS(1719), + [aux_sym_cmd_identifier_token18] = ACTIONS(1719), + [aux_sym_cmd_identifier_token19] = ACTIONS(1719), + [aux_sym_cmd_identifier_token20] = ACTIONS(1719), + [aux_sym_cmd_identifier_token21] = ACTIONS(1719), + [aux_sym_cmd_identifier_token22] = ACTIONS(1719), + [aux_sym_cmd_identifier_token23] = ACTIONS(1719), + [aux_sym_cmd_identifier_token24] = ACTIONS(1719), + [aux_sym_cmd_identifier_token25] = ACTIONS(1719), + [aux_sym_cmd_identifier_token26] = ACTIONS(1719), + [aux_sym_cmd_identifier_token27] = ACTIONS(1719), + [aux_sym_cmd_identifier_token28] = ACTIONS(1719), + [aux_sym_cmd_identifier_token29] = ACTIONS(1719), + [aux_sym_cmd_identifier_token30] = ACTIONS(1719), + [aux_sym_cmd_identifier_token31] = ACTIONS(1719), + [aux_sym_cmd_identifier_token32] = ACTIONS(1719), + [aux_sym_cmd_identifier_token33] = ACTIONS(1719), + [aux_sym_cmd_identifier_token34] = ACTIONS(1717), + [aux_sym_cmd_identifier_token35] = ACTIONS(1719), + [aux_sym_cmd_identifier_token36] = ACTIONS(1719), + [aux_sym_cmd_identifier_token37] = ACTIONS(1719), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1719), + [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_export_DASHenv] = ACTIONS(1717), + [anon_sym_extern] = ACTIONS(1717), + [anon_sym_module] = ACTIONS(1717), + [anon_sym_use] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1719), + [anon_sym_error] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_in2] = ACTIONS(1717), + [anon_sym_loop] = ACTIONS(1717), + [anon_sym_make] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_do] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_catch] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_source] = ACTIONS(1717), + [anon_sym_source_DASHenv] = ACTIONS(1717), + [anon_sym_register] = ACTIONS(1717), + [anon_sym_hide] = ACTIONS(1717), + [anon_sym_hide_DASHenv] = ACTIONS(1717), + [anon_sym_overlay] = ACTIONS(1717), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1717), + [aux_sym__val_number_token5] = ACTIONS(1717), + [aux_sym__val_number_token6] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1719), }, [512] = { [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [aux_sym_cmd_identifier_token6] = ACTIONS(2096), - [aux_sym_cmd_identifier_token7] = ACTIONS(2096), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2096), - [aux_sym_cmd_identifier_token11] = ACTIONS(2096), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2096), - [aux_sym_cmd_identifier_token17] = ACTIONS(2096), - [aux_sym_cmd_identifier_token18] = ACTIONS(2096), - [aux_sym_cmd_identifier_token19] = ACTIONS(2096), - [aux_sym_cmd_identifier_token20] = ACTIONS(2096), - [aux_sym_cmd_identifier_token21] = ACTIONS(2096), - [aux_sym_cmd_identifier_token22] = ACTIONS(2096), - [aux_sym_cmd_identifier_token23] = ACTIONS(2096), - [aux_sym_cmd_identifier_token24] = ACTIONS(2096), - [aux_sym_cmd_identifier_token25] = ACTIONS(2096), - [aux_sym_cmd_identifier_token26] = ACTIONS(2096), - [aux_sym_cmd_identifier_token27] = ACTIONS(2096), - [aux_sym_cmd_identifier_token28] = ACTIONS(2096), - [aux_sym_cmd_identifier_token29] = ACTIONS(2096), - [aux_sym_cmd_identifier_token30] = ACTIONS(2096), - [aux_sym_cmd_identifier_token31] = ACTIONS(2096), - [aux_sym_cmd_identifier_token32] = ACTIONS(2096), - [aux_sym_cmd_identifier_token33] = ACTIONS(2096), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2096), - [aux_sym_cmd_identifier_token36] = ACTIONS(2096), - [aux_sym_cmd_identifier_token37] = ACTIONS(2096), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2096), - [aux_sym_cmd_identifier_token40] = ACTIONS(2096), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2096), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2096), - [anon_sym_DOT_DOT2] = ACTIONS(2201), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2203), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2096), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [aux_sym_cmd_identifier_token1] = ACTIONS(2055), + [aux_sym_cmd_identifier_token2] = ACTIONS(2057), + [aux_sym_cmd_identifier_token3] = ACTIONS(2057), + [aux_sym_cmd_identifier_token4] = ACTIONS(2057), + [aux_sym_cmd_identifier_token5] = ACTIONS(2057), + [aux_sym_cmd_identifier_token6] = ACTIONS(2057), + [aux_sym_cmd_identifier_token7] = ACTIONS(2057), + [aux_sym_cmd_identifier_token8] = ACTIONS(2055), + [aux_sym_cmd_identifier_token9] = ACTIONS(2055), + [aux_sym_cmd_identifier_token10] = ACTIONS(2057), + [aux_sym_cmd_identifier_token11] = ACTIONS(2057), + [aux_sym_cmd_identifier_token12] = ACTIONS(2055), + [aux_sym_cmd_identifier_token13] = ACTIONS(2055), + [aux_sym_cmd_identifier_token14] = ACTIONS(2055), + [aux_sym_cmd_identifier_token15] = ACTIONS(2055), + [aux_sym_cmd_identifier_token16] = ACTIONS(2057), + [aux_sym_cmd_identifier_token17] = ACTIONS(2057), + [aux_sym_cmd_identifier_token18] = ACTIONS(2057), + [aux_sym_cmd_identifier_token19] = ACTIONS(2057), + [aux_sym_cmd_identifier_token20] = ACTIONS(2057), + [aux_sym_cmd_identifier_token21] = ACTIONS(2057), + [aux_sym_cmd_identifier_token22] = ACTIONS(2057), + [aux_sym_cmd_identifier_token23] = ACTIONS(2057), + [aux_sym_cmd_identifier_token24] = ACTIONS(2057), + [aux_sym_cmd_identifier_token25] = ACTIONS(2057), + [aux_sym_cmd_identifier_token26] = ACTIONS(2057), + [aux_sym_cmd_identifier_token27] = ACTIONS(2057), + [aux_sym_cmd_identifier_token28] = ACTIONS(2057), + [aux_sym_cmd_identifier_token29] = ACTIONS(2057), + [aux_sym_cmd_identifier_token30] = ACTIONS(2057), + [aux_sym_cmd_identifier_token31] = ACTIONS(2057), + [aux_sym_cmd_identifier_token32] = ACTIONS(2057), + [aux_sym_cmd_identifier_token33] = ACTIONS(2057), + [aux_sym_cmd_identifier_token34] = ACTIONS(2055), + [aux_sym_cmd_identifier_token35] = ACTIONS(2057), + [aux_sym_cmd_identifier_token36] = ACTIONS(2057), + [aux_sym_cmd_identifier_token37] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2055), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_DASH2] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_in2] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_make] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_else] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_catch] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_PLUS2] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), + [anon_sym_DOT_DOT2] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [aux_sym__val_number_token4] = ACTIONS(2055), + [aux_sym__val_number_token5] = ACTIONS(2055), + [aux_sym__val_number_token6] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2057), }, [513] = { [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1771), - [aux_sym_cmd_identifier_token3] = ACTIONS(1771), - [aux_sym_cmd_identifier_token4] = ACTIONS(1771), - [aux_sym_cmd_identifier_token5] = ACTIONS(1771), - [aux_sym_cmd_identifier_token6] = ACTIONS(1771), - [aux_sym_cmd_identifier_token7] = ACTIONS(1771), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1771), - [aux_sym_cmd_identifier_token11] = ACTIONS(1771), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1771), - [aux_sym_cmd_identifier_token17] = ACTIONS(1771), - [aux_sym_cmd_identifier_token18] = ACTIONS(1771), - [aux_sym_cmd_identifier_token19] = ACTIONS(1771), - [aux_sym_cmd_identifier_token20] = ACTIONS(1771), - [aux_sym_cmd_identifier_token21] = ACTIONS(1771), - [aux_sym_cmd_identifier_token22] = ACTIONS(1771), - [aux_sym_cmd_identifier_token23] = ACTIONS(1771), - [aux_sym_cmd_identifier_token24] = ACTIONS(1771), - [aux_sym_cmd_identifier_token25] = ACTIONS(1771), - [aux_sym_cmd_identifier_token26] = ACTIONS(1771), - [aux_sym_cmd_identifier_token27] = ACTIONS(1771), - [aux_sym_cmd_identifier_token28] = ACTIONS(1771), - [aux_sym_cmd_identifier_token29] = ACTIONS(1771), - [aux_sym_cmd_identifier_token30] = ACTIONS(1771), - [aux_sym_cmd_identifier_token31] = ACTIONS(1771), - [aux_sym_cmd_identifier_token32] = ACTIONS(1771), - [aux_sym_cmd_identifier_token33] = ACTIONS(1771), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1771), - [aux_sym_cmd_identifier_token36] = ACTIONS(1771), - [aux_sym_cmd_identifier_token37] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [aux_sym__immediate_decimal_token1] = ACTIONS(2205), - [aux_sym__immediate_decimal_token2] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [sym__entry_separator] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), }, [514] = { [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1819), + [anon_sym_alias] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_let_DASHenv] = ACTIONS(1819), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [aux_sym_cmd_identifier_token1] = ACTIONS(1819), + [aux_sym_cmd_identifier_token2] = ACTIONS(1819), + [aux_sym_cmd_identifier_token3] = ACTIONS(1819), + [aux_sym_cmd_identifier_token4] = ACTIONS(1819), + [aux_sym_cmd_identifier_token5] = ACTIONS(1819), + [aux_sym_cmd_identifier_token6] = ACTIONS(1819), + [aux_sym_cmd_identifier_token7] = ACTIONS(1819), + [aux_sym_cmd_identifier_token8] = ACTIONS(1819), + [aux_sym_cmd_identifier_token9] = ACTIONS(1819), + [aux_sym_cmd_identifier_token10] = ACTIONS(1819), + [aux_sym_cmd_identifier_token11] = ACTIONS(1819), + [aux_sym_cmd_identifier_token12] = ACTIONS(1819), + [aux_sym_cmd_identifier_token13] = ACTIONS(1819), + [aux_sym_cmd_identifier_token14] = ACTIONS(1819), + [aux_sym_cmd_identifier_token15] = ACTIONS(1819), + [aux_sym_cmd_identifier_token16] = ACTIONS(1819), + [aux_sym_cmd_identifier_token17] = ACTIONS(1819), + [aux_sym_cmd_identifier_token18] = ACTIONS(1819), + [aux_sym_cmd_identifier_token19] = ACTIONS(1819), + [aux_sym_cmd_identifier_token20] = ACTIONS(1819), + [aux_sym_cmd_identifier_token21] = ACTIONS(1819), + [aux_sym_cmd_identifier_token22] = ACTIONS(1819), + [aux_sym_cmd_identifier_token23] = ACTIONS(1819), + [aux_sym_cmd_identifier_token24] = ACTIONS(1819), + [aux_sym_cmd_identifier_token25] = ACTIONS(1819), + [aux_sym_cmd_identifier_token26] = ACTIONS(1819), + [aux_sym_cmd_identifier_token27] = ACTIONS(1819), + [aux_sym_cmd_identifier_token28] = ACTIONS(1819), + [aux_sym_cmd_identifier_token29] = ACTIONS(1819), + [aux_sym_cmd_identifier_token30] = ACTIONS(1819), + [aux_sym_cmd_identifier_token31] = ACTIONS(1819), + [aux_sym_cmd_identifier_token32] = ACTIONS(1819), + [aux_sym_cmd_identifier_token33] = ACTIONS(1819), + [aux_sym_cmd_identifier_token34] = ACTIONS(1819), + [aux_sym_cmd_identifier_token35] = ACTIONS(1819), + [aux_sym_cmd_identifier_token36] = ACTIONS(1819), + [aux_sym_cmd_identifier_token37] = ACTIONS(1819), + [aux_sym_cmd_identifier_token38] = ACTIONS(1819), + [aux_sym_cmd_identifier_token39] = ACTIONS(1819), + [aux_sym_cmd_identifier_token40] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_export_DASHenv] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_module] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_in2] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_make] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_do] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_else] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_catch] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_source] = ACTIONS(1819), + [anon_sym_source_DASHenv] = ACTIONS(1819), + [anon_sym_register] = ACTIONS(1819), + [anon_sym_hide] = ACTIONS(1819), + [anon_sym_hide_DASHenv] = ACTIONS(1819), + [anon_sym_overlay] = ACTIONS(1819), + [anon_sym_as] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), + [sym__entry_separator] = ACTIONS(1827), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1827), }, [515] = { [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_alias] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_let_DASHenv] = ACTIONS(2170), + [anon_sym_mut] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [aux_sym_cmd_identifier_token1] = ACTIONS(2170), + [aux_sym_cmd_identifier_token2] = ACTIONS(2172), + [aux_sym_cmd_identifier_token3] = ACTIONS(2172), + [aux_sym_cmd_identifier_token4] = ACTIONS(2172), + [aux_sym_cmd_identifier_token5] = ACTIONS(2172), + [aux_sym_cmd_identifier_token6] = ACTIONS(2172), + [aux_sym_cmd_identifier_token7] = ACTIONS(2172), + [aux_sym_cmd_identifier_token8] = ACTIONS(2170), + [aux_sym_cmd_identifier_token9] = ACTIONS(2170), + [aux_sym_cmd_identifier_token10] = ACTIONS(2172), + [aux_sym_cmd_identifier_token11] = ACTIONS(2172), + [aux_sym_cmd_identifier_token12] = ACTIONS(2170), + [aux_sym_cmd_identifier_token13] = ACTIONS(2170), + [aux_sym_cmd_identifier_token14] = ACTIONS(2170), + [aux_sym_cmd_identifier_token15] = ACTIONS(2170), + [aux_sym_cmd_identifier_token16] = ACTIONS(2172), + [aux_sym_cmd_identifier_token17] = ACTIONS(2172), + [aux_sym_cmd_identifier_token18] = ACTIONS(2172), + [aux_sym_cmd_identifier_token19] = ACTIONS(2172), + [aux_sym_cmd_identifier_token20] = ACTIONS(2172), + [aux_sym_cmd_identifier_token21] = ACTIONS(2172), + [aux_sym_cmd_identifier_token22] = ACTIONS(2172), + [aux_sym_cmd_identifier_token23] = ACTIONS(2172), + [aux_sym_cmd_identifier_token24] = ACTIONS(2172), + [aux_sym_cmd_identifier_token25] = ACTIONS(2172), + [aux_sym_cmd_identifier_token26] = ACTIONS(2172), + [aux_sym_cmd_identifier_token27] = ACTIONS(2172), + [aux_sym_cmd_identifier_token28] = ACTIONS(2172), + [aux_sym_cmd_identifier_token29] = ACTIONS(2172), + [aux_sym_cmd_identifier_token30] = ACTIONS(2172), + [aux_sym_cmd_identifier_token31] = ACTIONS(2172), + [aux_sym_cmd_identifier_token32] = ACTIONS(2172), + [aux_sym_cmd_identifier_token33] = ACTIONS(2172), + [aux_sym_cmd_identifier_token34] = ACTIONS(2170), + [aux_sym_cmd_identifier_token35] = ACTIONS(2172), + [aux_sym_cmd_identifier_token36] = ACTIONS(2172), + [aux_sym_cmd_identifier_token37] = ACTIONS(2172), + [aux_sym_cmd_identifier_token38] = ACTIONS(2170), + [aux_sym_cmd_identifier_token39] = ACTIONS(2172), + [aux_sym_cmd_identifier_token40] = ACTIONS(2172), + [anon_sym_def] = ACTIONS(2170), + [anon_sym_export_DASHenv] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2172), + [anon_sym_error] = ACTIONS(2170), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_in2] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_make] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_source] = ACTIONS(2170), + [anon_sym_source_DASHenv] = ACTIONS(2170), + [anon_sym_register] = ACTIONS(2170), + [anon_sym_hide] = ACTIONS(2170), + [anon_sym_hide_DASHenv] = ACTIONS(2170), + [anon_sym_overlay] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2172), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2170), + [aux_sym__val_number_token5] = ACTIONS(2170), + [aux_sym__val_number_token6] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [516] = { + [sym_comment] = STATE(516), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_alias] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_let_DASHenv] = ACTIONS(2214), + [anon_sym_mut] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [aux_sym_cmd_identifier_token1] = ACTIONS(2214), + [aux_sym_cmd_identifier_token2] = ACTIONS(2214), + [aux_sym_cmd_identifier_token3] = ACTIONS(2214), + [aux_sym_cmd_identifier_token4] = ACTIONS(2214), + [aux_sym_cmd_identifier_token5] = ACTIONS(2214), + [aux_sym_cmd_identifier_token6] = ACTIONS(2214), + [aux_sym_cmd_identifier_token7] = ACTIONS(2214), + [aux_sym_cmd_identifier_token8] = ACTIONS(2214), + [aux_sym_cmd_identifier_token9] = ACTIONS(2214), + [aux_sym_cmd_identifier_token10] = ACTIONS(2214), + [aux_sym_cmd_identifier_token11] = ACTIONS(2214), + [aux_sym_cmd_identifier_token12] = ACTIONS(2214), + [aux_sym_cmd_identifier_token13] = ACTIONS(2214), + [aux_sym_cmd_identifier_token14] = ACTIONS(2214), + [aux_sym_cmd_identifier_token15] = ACTIONS(2214), + [aux_sym_cmd_identifier_token16] = ACTIONS(2214), + [aux_sym_cmd_identifier_token17] = ACTIONS(2214), + [aux_sym_cmd_identifier_token18] = ACTIONS(2214), + [aux_sym_cmd_identifier_token19] = ACTIONS(2214), + [aux_sym_cmd_identifier_token20] = ACTIONS(2214), + [aux_sym_cmd_identifier_token21] = ACTIONS(2214), + [aux_sym_cmd_identifier_token22] = ACTIONS(2214), + [aux_sym_cmd_identifier_token23] = ACTIONS(2214), + [aux_sym_cmd_identifier_token24] = ACTIONS(2214), + [aux_sym_cmd_identifier_token25] = ACTIONS(2214), + [aux_sym_cmd_identifier_token26] = ACTIONS(2214), + [aux_sym_cmd_identifier_token27] = ACTIONS(2214), + [aux_sym_cmd_identifier_token28] = ACTIONS(2214), + [aux_sym_cmd_identifier_token29] = ACTIONS(2214), + [aux_sym_cmd_identifier_token30] = ACTIONS(2214), + [aux_sym_cmd_identifier_token31] = ACTIONS(2214), + [aux_sym_cmd_identifier_token32] = ACTIONS(2214), + [aux_sym_cmd_identifier_token33] = ACTIONS(2214), + [aux_sym_cmd_identifier_token34] = ACTIONS(2214), + [aux_sym_cmd_identifier_token35] = ACTIONS(2214), + [aux_sym_cmd_identifier_token36] = ACTIONS(2214), + [aux_sym_cmd_identifier_token37] = ACTIONS(2214), + [aux_sym_cmd_identifier_token38] = ACTIONS(2214), + [aux_sym_cmd_identifier_token39] = ACTIONS(2214), + [aux_sym_cmd_identifier_token40] = ACTIONS(2214), + [anon_sym_def] = ACTIONS(2214), + [anon_sym_export_DASHenv] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_error] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_make] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_catch] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_source] = ACTIONS(2214), + [anon_sym_source_DASHenv] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_hide] = ACTIONS(2214), + [anon_sym_hide_DASHenv] = ACTIONS(2214), + [anon_sym_overlay] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2214), + [aux_sym__val_number_decimal_token3] = ACTIONS(2214), + [aux_sym__val_number_decimal_token4] = ACTIONS(2214), + [aux_sym__val_number_token1] = ACTIONS(2214), + [aux_sym__val_number_token2] = ACTIONS(2214), + [aux_sym__val_number_token3] = ACTIONS(2214), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym__str_single_quotes] = ACTIONS(2214), + [sym__str_back_ticks] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2214), + [sym__entry_separator] = ACTIONS(2216), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2216), + }, + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_alias] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_let_DASHenv] = ACTIONS(1794), + [anon_sym_mut] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [aux_sym_cmd_identifier_token1] = ACTIONS(1794), + [aux_sym_cmd_identifier_token2] = ACTIONS(1794), + [aux_sym_cmd_identifier_token3] = ACTIONS(1794), + [aux_sym_cmd_identifier_token4] = ACTIONS(1794), + [aux_sym_cmd_identifier_token5] = ACTIONS(1794), + [aux_sym_cmd_identifier_token6] = ACTIONS(1794), + [aux_sym_cmd_identifier_token7] = ACTIONS(1794), + [aux_sym_cmd_identifier_token8] = ACTIONS(1794), + [aux_sym_cmd_identifier_token9] = ACTIONS(1794), + [aux_sym_cmd_identifier_token10] = ACTIONS(1794), + [aux_sym_cmd_identifier_token11] = ACTIONS(1794), + [aux_sym_cmd_identifier_token12] = ACTIONS(1794), + [aux_sym_cmd_identifier_token13] = ACTIONS(1794), + [aux_sym_cmd_identifier_token14] = ACTIONS(1794), + [aux_sym_cmd_identifier_token15] = ACTIONS(1794), + [aux_sym_cmd_identifier_token16] = ACTIONS(1794), + [aux_sym_cmd_identifier_token17] = ACTIONS(1794), + [aux_sym_cmd_identifier_token18] = ACTIONS(1794), + [aux_sym_cmd_identifier_token19] = ACTIONS(1794), + [aux_sym_cmd_identifier_token20] = ACTIONS(1794), + [aux_sym_cmd_identifier_token21] = ACTIONS(1794), + [aux_sym_cmd_identifier_token22] = ACTIONS(1794), + [aux_sym_cmd_identifier_token23] = ACTIONS(1794), + [aux_sym_cmd_identifier_token24] = ACTIONS(1794), + [aux_sym_cmd_identifier_token25] = ACTIONS(1794), + [aux_sym_cmd_identifier_token26] = ACTIONS(1794), + [aux_sym_cmd_identifier_token27] = ACTIONS(1794), + [aux_sym_cmd_identifier_token28] = ACTIONS(1794), + [aux_sym_cmd_identifier_token29] = ACTIONS(1794), + [aux_sym_cmd_identifier_token30] = ACTIONS(1794), + [aux_sym_cmd_identifier_token31] = ACTIONS(1794), + [aux_sym_cmd_identifier_token32] = ACTIONS(1794), + [aux_sym_cmd_identifier_token33] = ACTIONS(1794), + [aux_sym_cmd_identifier_token34] = ACTIONS(1794), + [aux_sym_cmd_identifier_token35] = ACTIONS(1794), + [aux_sym_cmd_identifier_token36] = ACTIONS(1794), + [aux_sym_cmd_identifier_token37] = ACTIONS(1794), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1794), + [aux_sym_cmd_identifier_token40] = ACTIONS(1794), + [anon_sym_def] = ACTIONS(1794), + [anon_sym_export_DASHenv] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_error] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_in2] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_make] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_try] = ACTIONS(1794), + [anon_sym_catch] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_source] = ACTIONS(1794), + [anon_sym_source_DASHenv] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1794), + [anon_sym_hide] = ACTIONS(1794), + [anon_sym_hide_DASHenv] = ACTIONS(1794), + [anon_sym_overlay] = ACTIONS(1794), + [anon_sym_as] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_PLUS2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1794), + [aux_sym__val_number_decimal_token3] = ACTIONS(1794), + [aux_sym__val_number_decimal_token4] = ACTIONS(1794), + [aux_sym__val_number_token1] = ACTIONS(1794), + [aux_sym__val_number_token2] = ACTIONS(1794), + [aux_sym__val_number_token3] = ACTIONS(1794), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym__str_single_quotes] = ACTIONS(1794), + [sym__str_back_ticks] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), + [sym__entry_separator] = ACTIONS(1802), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1802), + }, + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_let_DASHenv] = ACTIONS(2174), + [anon_sym_mut] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [aux_sym_cmd_identifier_token2] = ACTIONS(2176), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [aux_sym_cmd_identifier_token6] = ACTIONS(2176), + [aux_sym_cmd_identifier_token7] = ACTIONS(2176), + [aux_sym_cmd_identifier_token8] = ACTIONS(2174), + [aux_sym_cmd_identifier_token9] = ACTIONS(2174), + [aux_sym_cmd_identifier_token10] = ACTIONS(2176), + [aux_sym_cmd_identifier_token11] = ACTIONS(2176), + [aux_sym_cmd_identifier_token12] = ACTIONS(2174), + [aux_sym_cmd_identifier_token13] = ACTIONS(2174), + [aux_sym_cmd_identifier_token14] = ACTIONS(2174), + [aux_sym_cmd_identifier_token15] = ACTIONS(2174), + [aux_sym_cmd_identifier_token16] = ACTIONS(2176), + [aux_sym_cmd_identifier_token17] = ACTIONS(2176), + [aux_sym_cmd_identifier_token18] = ACTIONS(2176), + [aux_sym_cmd_identifier_token19] = ACTIONS(2176), + [aux_sym_cmd_identifier_token20] = ACTIONS(2176), + [aux_sym_cmd_identifier_token21] = ACTIONS(2176), + [aux_sym_cmd_identifier_token22] = ACTIONS(2176), + [aux_sym_cmd_identifier_token23] = ACTIONS(2176), + [aux_sym_cmd_identifier_token24] = ACTIONS(2176), + [aux_sym_cmd_identifier_token25] = ACTIONS(2176), + [aux_sym_cmd_identifier_token26] = ACTIONS(2176), + [aux_sym_cmd_identifier_token27] = ACTIONS(2176), + [aux_sym_cmd_identifier_token28] = ACTIONS(2176), + [aux_sym_cmd_identifier_token29] = ACTIONS(2176), + [aux_sym_cmd_identifier_token30] = ACTIONS(2176), + [aux_sym_cmd_identifier_token31] = ACTIONS(2176), + [aux_sym_cmd_identifier_token32] = ACTIONS(2176), + [aux_sym_cmd_identifier_token33] = ACTIONS(2176), + [aux_sym_cmd_identifier_token34] = ACTIONS(2174), + [aux_sym_cmd_identifier_token35] = ACTIONS(2176), + [aux_sym_cmd_identifier_token36] = ACTIONS(2176), + [aux_sym_cmd_identifier_token37] = ACTIONS(2176), + [aux_sym_cmd_identifier_token38] = ACTIONS(2174), + [aux_sym_cmd_identifier_token39] = ACTIONS(2176), + [aux_sym_cmd_identifier_token40] = ACTIONS(2176), + [anon_sym_def] = ACTIONS(2174), + [anon_sym_export_DASHenv] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2176), + [anon_sym_error] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_in2] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_make] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_source] = ACTIONS(2174), + [anon_sym_source_DASHenv] = ACTIONS(2174), + [anon_sym_register] = ACTIONS(2174), + [anon_sym_hide] = ACTIONS(2174), + [anon_sym_hide_DASHenv] = ACTIONS(2174), + [anon_sym_overlay] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2176), + [anon_sym_DOT_DOT2] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2176), + [aux_sym__val_number_decimal_token3] = ACTIONS(2176), + [aux_sym__val_number_decimal_token4] = ACTIONS(2176), + [aux_sym__val_number_token1] = ACTIONS(2176), + [aux_sym__val_number_token2] = ACTIONS(2176), + [aux_sym__val_number_token3] = ACTIONS(2176), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym__str_single_quotes] = ACTIONS(2176), + [sym__str_back_ticks] = ACTIONS(2176), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2176), + }, + [519] = { + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), + }, + [520] = { + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2218), + [aux_sym_cmd_identifier_token3] = ACTIONS(2218), + [aux_sym_cmd_identifier_token4] = ACTIONS(2218), + [aux_sym_cmd_identifier_token5] = ACTIONS(2218), + [aux_sym_cmd_identifier_token6] = ACTIONS(2218), + [aux_sym_cmd_identifier_token7] = ACTIONS(2218), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2218), + [aux_sym_cmd_identifier_token11] = ACTIONS(2218), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2218), + [aux_sym_cmd_identifier_token17] = ACTIONS(2218), + [aux_sym_cmd_identifier_token18] = ACTIONS(2218), + [aux_sym_cmd_identifier_token19] = ACTIONS(2218), + [aux_sym_cmd_identifier_token20] = ACTIONS(2218), + [aux_sym_cmd_identifier_token21] = ACTIONS(2218), + [aux_sym_cmd_identifier_token22] = ACTIONS(2218), + [aux_sym_cmd_identifier_token23] = ACTIONS(2218), + [aux_sym_cmd_identifier_token24] = ACTIONS(2218), + [aux_sym_cmd_identifier_token25] = ACTIONS(2218), + [aux_sym_cmd_identifier_token26] = ACTIONS(2218), + [aux_sym_cmd_identifier_token27] = ACTIONS(2218), + [aux_sym_cmd_identifier_token28] = ACTIONS(2218), + [aux_sym_cmd_identifier_token29] = ACTIONS(2218), + [aux_sym_cmd_identifier_token30] = ACTIONS(2218), + [aux_sym_cmd_identifier_token31] = ACTIONS(2218), + [aux_sym_cmd_identifier_token32] = ACTIONS(2218), + [aux_sym_cmd_identifier_token33] = ACTIONS(2218), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2218), + [aux_sym_cmd_identifier_token36] = ACTIONS(2218), + [aux_sym_cmd_identifier_token37] = ACTIONS(2218), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2218), + [aux_sym_cmd_identifier_token40] = ACTIONS(2218), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in2] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_PLUS2] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2218), + [aux_sym__val_number_decimal_token3] = ACTIONS(2218), + [aux_sym__val_number_decimal_token4] = ACTIONS(2218), + [aux_sym__val_number_token1] = ACTIONS(2218), + [aux_sym__val_number_token2] = ACTIONS(2218), + [aux_sym__val_number_token3] = ACTIONS(2218), + [aux_sym__val_number_token4] = ACTIONS(2218), + [aux_sym__val_number_token5] = ACTIONS(2218), + [aux_sym__val_number_token6] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), + [sym__entry_separator] = ACTIONS(2222), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2222), + }, + [521] = { + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_alias] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_let_DASHenv] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [aux_sym_cmd_identifier_token1] = ACTIONS(2224), + [aux_sym_cmd_identifier_token2] = ACTIONS(2224), + [aux_sym_cmd_identifier_token3] = ACTIONS(2224), + [aux_sym_cmd_identifier_token4] = ACTIONS(2224), + [aux_sym_cmd_identifier_token5] = ACTIONS(2224), + [aux_sym_cmd_identifier_token6] = ACTIONS(2224), + [aux_sym_cmd_identifier_token7] = ACTIONS(2224), + [aux_sym_cmd_identifier_token8] = ACTIONS(2224), + [aux_sym_cmd_identifier_token9] = ACTIONS(2224), + [aux_sym_cmd_identifier_token10] = ACTIONS(2224), + [aux_sym_cmd_identifier_token11] = ACTIONS(2224), + [aux_sym_cmd_identifier_token12] = ACTIONS(2224), + [aux_sym_cmd_identifier_token13] = ACTIONS(2224), + [aux_sym_cmd_identifier_token14] = ACTIONS(2224), + [aux_sym_cmd_identifier_token15] = ACTIONS(2224), + [aux_sym_cmd_identifier_token16] = ACTIONS(2224), + [aux_sym_cmd_identifier_token17] = ACTIONS(2224), + [aux_sym_cmd_identifier_token18] = ACTIONS(2224), + [aux_sym_cmd_identifier_token19] = ACTIONS(2224), + [aux_sym_cmd_identifier_token20] = ACTIONS(2224), + [aux_sym_cmd_identifier_token21] = ACTIONS(2224), + [aux_sym_cmd_identifier_token22] = ACTIONS(2224), + [aux_sym_cmd_identifier_token23] = ACTIONS(2224), + [aux_sym_cmd_identifier_token24] = ACTIONS(2224), + [aux_sym_cmd_identifier_token25] = ACTIONS(2224), + [aux_sym_cmd_identifier_token26] = ACTIONS(2224), + [aux_sym_cmd_identifier_token27] = ACTIONS(2224), + [aux_sym_cmd_identifier_token28] = ACTIONS(2224), + [aux_sym_cmd_identifier_token29] = ACTIONS(2224), + [aux_sym_cmd_identifier_token30] = ACTIONS(2224), + [aux_sym_cmd_identifier_token31] = ACTIONS(2224), + [aux_sym_cmd_identifier_token32] = ACTIONS(2224), + [aux_sym_cmd_identifier_token33] = ACTIONS(2224), + [aux_sym_cmd_identifier_token34] = ACTIONS(2224), + [aux_sym_cmd_identifier_token35] = ACTIONS(2224), + [aux_sym_cmd_identifier_token36] = ACTIONS(2224), + [aux_sym_cmd_identifier_token37] = ACTIONS(2224), + [aux_sym_cmd_identifier_token38] = ACTIONS(2224), + [aux_sym_cmd_identifier_token39] = ACTIONS(2224), + [aux_sym_cmd_identifier_token40] = ACTIONS(2224), + [anon_sym_def] = ACTIONS(2224), + [anon_sym_export_DASHenv] = ACTIONS(2224), + [anon_sym_extern] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_use] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_error] = ACTIONS(2224), + [anon_sym_DASH2] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_in2] = ACTIONS(2224), + [anon_sym_loop] = ACTIONS(2224), + [anon_sym_make] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_catch] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_source] = ACTIONS(2224), + [anon_sym_source_DASHenv] = ACTIONS(2224), + [anon_sym_register] = ACTIONS(2224), + [anon_sym_hide] = ACTIONS(2224), + [anon_sym_hide_DASHenv] = ACTIONS(2224), + [anon_sym_overlay] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_PLUS2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2224), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2224), + [aux_sym__val_number_decimal_token3] = ACTIONS(2224), + [aux_sym__val_number_decimal_token4] = ACTIONS(2224), + [aux_sym__val_number_token1] = ACTIONS(2224), + [aux_sym__val_number_token2] = ACTIONS(2224), + [aux_sym__val_number_token3] = ACTIONS(2224), + [aux_sym__val_number_token4] = ACTIONS(2224), + [aux_sym__val_number_token5] = ACTIONS(2224), + [aux_sym__val_number_token6] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2224), + [sym__str_single_quotes] = ACTIONS(2224), + [sym__str_back_ticks] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2224), + [sym__entry_separator] = ACTIONS(2228), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [522] = { + [sym_path] = STATE(631), + [sym_comment] = STATE(522), + [aux_sym_cell_path_repeat1] = STATE(523), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [523] = { + [sym_path] = STATE(631), + [sym_comment] = STATE(523), + [aux_sym_cell_path_repeat1] = STATE(523), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(943), + [aux_sym_cmd_identifier_token3] = ACTIONS(943), + [aux_sym_cmd_identifier_token4] = ACTIONS(943), + [aux_sym_cmd_identifier_token5] = ACTIONS(943), + [aux_sym_cmd_identifier_token6] = ACTIONS(943), + [aux_sym_cmd_identifier_token7] = ACTIONS(943), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(943), + [aux_sym_cmd_identifier_token11] = ACTIONS(943), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(943), + [aux_sym_cmd_identifier_token17] = ACTIONS(943), + [aux_sym_cmd_identifier_token18] = ACTIONS(943), + [aux_sym_cmd_identifier_token19] = ACTIONS(943), + [aux_sym_cmd_identifier_token20] = ACTIONS(943), + [aux_sym_cmd_identifier_token21] = ACTIONS(943), + [aux_sym_cmd_identifier_token22] = ACTIONS(943), + [aux_sym_cmd_identifier_token23] = ACTIONS(943), + [aux_sym_cmd_identifier_token24] = ACTIONS(943), + [aux_sym_cmd_identifier_token25] = ACTIONS(943), + [aux_sym_cmd_identifier_token26] = ACTIONS(943), + [aux_sym_cmd_identifier_token27] = ACTIONS(943), + [aux_sym_cmd_identifier_token28] = ACTIONS(943), + [aux_sym_cmd_identifier_token29] = ACTIONS(943), + [aux_sym_cmd_identifier_token30] = ACTIONS(943), + [aux_sym_cmd_identifier_token31] = ACTIONS(943), + [aux_sym_cmd_identifier_token32] = ACTIONS(943), + [aux_sym_cmd_identifier_token33] = ACTIONS(943), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(943), + [aux_sym_cmd_identifier_token36] = ACTIONS(943), + [aux_sym_cmd_identifier_token37] = ACTIONS(943), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(943), + [aux_sym_cmd_identifier_token40] = ACTIONS(943), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), + }, + [524] = { + [sym_comment] = STATE(524), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -141564,7 +137123,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1018), [anon_sym_use] = ACTIONS(1018), [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_error] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(1018), @@ -141592,7 +137150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1018), [anon_sym_PLUS2] = ACTIONS(1018), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), [aux_sym__val_number_decimal_token1] = ACTIONS(1018), [aux_sym__val_number_decimal_token2] = ACTIONS(1020), @@ -141608,2664 +137168,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1020), [sym__str_back_ticks] = ACTIONS(1020), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [aux_sym_record_entry_token1] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [aux_sym_cmd_identifier_token1] = ACTIONS(1763), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1763), - [aux_sym_cmd_identifier_token9] = ACTIONS(1763), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1763), - [aux_sym_cmd_identifier_token13] = ACTIONS(1763), - [aux_sym_cmd_identifier_token14] = ACTIONS(1763), - [aux_sym_cmd_identifier_token15] = ACTIONS(1763), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1763), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1763), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_in2] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_make] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_catch] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1763), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1763), - [aux_sym__val_number_token5] = ACTIONS(1763), - [aux_sym__val_number_token6] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1765), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1818), - [aux_sym_cmd_identifier_token3] = ACTIONS(1818), - [aux_sym_cmd_identifier_token4] = ACTIONS(1818), - [aux_sym_cmd_identifier_token5] = ACTIONS(1818), - [aux_sym_cmd_identifier_token6] = ACTIONS(1818), - [aux_sym_cmd_identifier_token7] = ACTIONS(1818), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1818), - [aux_sym_cmd_identifier_token11] = ACTIONS(1818), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1818), - [aux_sym_cmd_identifier_token17] = ACTIONS(1818), - [aux_sym_cmd_identifier_token18] = ACTIONS(1818), - [aux_sym_cmd_identifier_token19] = ACTIONS(1818), - [aux_sym_cmd_identifier_token20] = ACTIONS(1818), - [aux_sym_cmd_identifier_token21] = ACTIONS(1818), - [aux_sym_cmd_identifier_token22] = ACTIONS(1818), - [aux_sym_cmd_identifier_token23] = ACTIONS(1818), - [aux_sym_cmd_identifier_token24] = ACTIONS(1818), - [aux_sym_cmd_identifier_token25] = ACTIONS(1818), - [aux_sym_cmd_identifier_token26] = ACTIONS(1818), - [aux_sym_cmd_identifier_token27] = ACTIONS(1818), - [aux_sym_cmd_identifier_token28] = ACTIONS(1818), - [aux_sym_cmd_identifier_token29] = ACTIONS(1818), - [aux_sym_cmd_identifier_token30] = ACTIONS(1818), - [aux_sym_cmd_identifier_token31] = ACTIONS(1818), - [aux_sym_cmd_identifier_token32] = ACTIONS(1818), - [aux_sym_cmd_identifier_token33] = ACTIONS(1818), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1818), - [aux_sym_cmd_identifier_token36] = ACTIONS(1818), - [aux_sym_cmd_identifier_token37] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_decimal_token4] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), - [sym__entry_separator] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1820), - }, - [519] = { - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(2123), - [anon_sym_alias] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_let_DASHenv] = ACTIONS(2123), - [anon_sym_mut] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [aux_sym_cmd_identifier_token1] = ACTIONS(2123), - [aux_sym_cmd_identifier_token2] = ACTIONS(2125), - [aux_sym_cmd_identifier_token3] = ACTIONS(2125), - [aux_sym_cmd_identifier_token4] = ACTIONS(2125), - [aux_sym_cmd_identifier_token5] = ACTIONS(2125), - [aux_sym_cmd_identifier_token6] = ACTIONS(2125), - [aux_sym_cmd_identifier_token7] = ACTIONS(2125), - [aux_sym_cmd_identifier_token8] = ACTIONS(2123), - [aux_sym_cmd_identifier_token9] = ACTIONS(2123), - [aux_sym_cmd_identifier_token10] = ACTIONS(2125), - [aux_sym_cmd_identifier_token11] = ACTIONS(2125), - [aux_sym_cmd_identifier_token12] = ACTIONS(2123), - [aux_sym_cmd_identifier_token13] = ACTIONS(2123), - [aux_sym_cmd_identifier_token14] = ACTIONS(2123), - [aux_sym_cmd_identifier_token15] = ACTIONS(2123), - [aux_sym_cmd_identifier_token16] = ACTIONS(2125), - [aux_sym_cmd_identifier_token17] = ACTIONS(2125), - [aux_sym_cmd_identifier_token18] = ACTIONS(2125), - [aux_sym_cmd_identifier_token19] = ACTIONS(2125), - [aux_sym_cmd_identifier_token20] = ACTIONS(2125), - [aux_sym_cmd_identifier_token21] = ACTIONS(2125), - [aux_sym_cmd_identifier_token22] = ACTIONS(2125), - [aux_sym_cmd_identifier_token23] = ACTIONS(2125), - [aux_sym_cmd_identifier_token24] = ACTIONS(2125), - [aux_sym_cmd_identifier_token25] = ACTIONS(2125), - [aux_sym_cmd_identifier_token26] = ACTIONS(2125), - [aux_sym_cmd_identifier_token27] = ACTIONS(2125), - [aux_sym_cmd_identifier_token28] = ACTIONS(2125), - [aux_sym_cmd_identifier_token29] = ACTIONS(2125), - [aux_sym_cmd_identifier_token30] = ACTIONS(2125), - [aux_sym_cmd_identifier_token31] = ACTIONS(2125), - [aux_sym_cmd_identifier_token32] = ACTIONS(2125), - [aux_sym_cmd_identifier_token33] = ACTIONS(2125), - [aux_sym_cmd_identifier_token34] = ACTIONS(2123), - [aux_sym_cmd_identifier_token35] = ACTIONS(2125), - [aux_sym_cmd_identifier_token36] = ACTIONS(2125), - [aux_sym_cmd_identifier_token37] = ACTIONS(2125), - [aux_sym_cmd_identifier_token38] = ACTIONS(2123), - [aux_sym_cmd_identifier_token39] = ACTIONS(2125), - [aux_sym_cmd_identifier_token40] = ACTIONS(2125), - [anon_sym_def] = ACTIONS(2123), - [anon_sym_export_DASHenv] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_module] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_error] = ACTIONS(2123), - [anon_sym_DASH2] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_in2] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_make] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_do] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_catch] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_source] = ACTIONS(2123), - [anon_sym_source_DASHenv] = ACTIONS(2123), - [anon_sym_register] = ACTIONS(2123), - [anon_sym_hide] = ACTIONS(2123), - [anon_sym_hide_DASHenv] = ACTIONS(2123), - [anon_sym_overlay] = ACTIONS(2123), - [anon_sym_as] = ACTIONS(2123), - [anon_sym_PLUS2] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2125), - [anon_sym_DOT_DOT2] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2125), - [aux_sym__val_number_decimal_token3] = ACTIONS(2125), - [aux_sym__val_number_decimal_token4] = ACTIONS(2125), - [aux_sym__val_number_token1] = ACTIONS(2125), - [aux_sym__val_number_token2] = ACTIONS(2125), - [aux_sym__val_number_token3] = ACTIONS(2125), - [aux_sym__val_number_token4] = ACTIONS(2123), - [aux_sym__val_number_token5] = ACTIONS(2123), - [aux_sym__val_number_token6] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2125), - }, - [520] = { - [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_COMMA] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [aux_sym_record_entry_token1] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [521] = { - [sym_path] = STATE(659), - [sym_comment] = STATE(521), - [aux_sym_cell_path_repeat1] = STATE(526), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_register] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), - }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [aux_sym_cmd_identifier_token2] = ACTIONS(1008), - [aux_sym_cmd_identifier_token3] = ACTIONS(1008), - [aux_sym_cmd_identifier_token4] = ACTIONS(1008), - [aux_sym_cmd_identifier_token5] = ACTIONS(1008), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [aux_sym_cmd_identifier_token7] = ACTIONS(1008), - [aux_sym_cmd_identifier_token8] = ACTIONS(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1008), - [aux_sym_cmd_identifier_token11] = ACTIONS(1008), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [aux_sym_cmd_identifier_token16] = ACTIONS(1008), - [aux_sym_cmd_identifier_token17] = ACTIONS(1008), - [aux_sym_cmd_identifier_token18] = ACTIONS(1008), - [aux_sym_cmd_identifier_token19] = ACTIONS(1008), - [aux_sym_cmd_identifier_token20] = ACTIONS(1008), - [aux_sym_cmd_identifier_token21] = ACTIONS(1008), - [aux_sym_cmd_identifier_token22] = ACTIONS(1008), - [aux_sym_cmd_identifier_token23] = ACTIONS(1008), - [aux_sym_cmd_identifier_token24] = ACTIONS(1008), - [aux_sym_cmd_identifier_token25] = ACTIONS(1008), - [aux_sym_cmd_identifier_token26] = ACTIONS(1008), - [aux_sym_cmd_identifier_token27] = ACTIONS(1008), - [aux_sym_cmd_identifier_token28] = ACTIONS(1008), - [aux_sym_cmd_identifier_token29] = ACTIONS(1008), - [aux_sym_cmd_identifier_token30] = ACTIONS(1008), - [aux_sym_cmd_identifier_token31] = ACTIONS(1008), - [aux_sym_cmd_identifier_token32] = ACTIONS(1008), - [aux_sym_cmd_identifier_token33] = ACTIONS(1008), - [aux_sym_cmd_identifier_token34] = ACTIONS(1008), - [aux_sym_cmd_identifier_token35] = ACTIONS(1008), - [aux_sym_cmd_identifier_token36] = ACTIONS(1008), - [aux_sym_cmd_identifier_token37] = ACTIONS(1008), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1008), - [aux_sym_cmd_identifier_token40] = ACTIONS(1008), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(2209), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1008), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1008), - [aux_sym__val_number_decimal_token3] = ACTIONS(1008), - [aux_sym__val_number_decimal_token4] = ACTIONS(1008), - [aux_sym__val_number_token1] = ACTIONS(1008), - [aux_sym__val_number_token2] = ACTIONS(1008), - [aux_sym__val_number_token3] = ACTIONS(1008), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1008), - [sym__str_single_quotes] = ACTIONS(1008), - [sym__str_back_ticks] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1008), - [sym__entry_separator] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [523] = { - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(2211), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [sym__entry_separator] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(992), - }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1036), - [aux_sym_cmd_identifier_token3] = ACTIONS(1036), - [aux_sym_cmd_identifier_token4] = ACTIONS(1036), - [aux_sym_cmd_identifier_token5] = ACTIONS(1036), - [aux_sym_cmd_identifier_token6] = ACTIONS(1036), - [aux_sym_cmd_identifier_token7] = ACTIONS(1036), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1036), - [aux_sym_cmd_identifier_token11] = ACTIONS(1036), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1036), - [aux_sym_cmd_identifier_token17] = ACTIONS(1036), - [aux_sym_cmd_identifier_token18] = ACTIONS(1036), - [aux_sym_cmd_identifier_token19] = ACTIONS(1036), - [aux_sym_cmd_identifier_token20] = ACTIONS(1036), - [aux_sym_cmd_identifier_token21] = ACTIONS(1036), - [aux_sym_cmd_identifier_token22] = ACTIONS(1036), - [aux_sym_cmd_identifier_token23] = ACTIONS(1036), - [aux_sym_cmd_identifier_token24] = ACTIONS(1036), - [aux_sym_cmd_identifier_token25] = ACTIONS(1036), - [aux_sym_cmd_identifier_token26] = ACTIONS(1036), - [aux_sym_cmd_identifier_token27] = ACTIONS(1036), - [aux_sym_cmd_identifier_token28] = ACTIONS(1036), - [aux_sym_cmd_identifier_token29] = ACTIONS(1036), - [aux_sym_cmd_identifier_token30] = ACTIONS(1036), - [aux_sym_cmd_identifier_token31] = ACTIONS(1036), - [aux_sym_cmd_identifier_token32] = ACTIONS(1036), - [aux_sym_cmd_identifier_token33] = ACTIONS(1036), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1036), - [aux_sym_cmd_identifier_token36] = ACTIONS(1036), - [aux_sym_cmd_identifier_token37] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(2213), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1036), - }, [525] = { + [sym__expr_parenthesized_immediate] = STATE(7301), [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [aux_sym_cmd_identifier_token37] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2051), + [aux_sym__val_number_decimal_token3] = ACTIONS(2051), + [aux_sym__val_number_decimal_token4] = ACTIONS(2051), + [aux_sym__val_number_token1] = ACTIONS(2051), + [aux_sym__val_number_token2] = ACTIONS(2051), + [aux_sym__val_number_token3] = ACTIONS(2051), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), + [sym__entry_separator] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2053), }, [526] = { - [sym_path] = STATE(659), [sym_comment] = STATE(526), - [aux_sym_cell_path_repeat1] = STATE(526), - [anon_sym_export] = ACTIONS(975), - [anon_sym_alias] = ACTIONS(975), - [anon_sym_let] = ACTIONS(975), - [anon_sym_let_DASHenv] = ACTIONS(975), - [anon_sym_mut] = ACTIONS(975), - [anon_sym_const] = ACTIONS(975), - [aux_sym_cmd_identifier_token1] = ACTIONS(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(977), - [aux_sym_cmd_identifier_token3] = ACTIONS(977), - [aux_sym_cmd_identifier_token4] = ACTIONS(977), - [aux_sym_cmd_identifier_token5] = ACTIONS(977), - [aux_sym_cmd_identifier_token6] = ACTIONS(977), - [aux_sym_cmd_identifier_token7] = ACTIONS(977), - [aux_sym_cmd_identifier_token8] = ACTIONS(975), - [aux_sym_cmd_identifier_token9] = ACTIONS(975), - [aux_sym_cmd_identifier_token10] = ACTIONS(977), - [aux_sym_cmd_identifier_token11] = ACTIONS(977), - [aux_sym_cmd_identifier_token12] = ACTIONS(975), - [aux_sym_cmd_identifier_token13] = ACTIONS(975), - [aux_sym_cmd_identifier_token14] = ACTIONS(975), - [aux_sym_cmd_identifier_token15] = ACTIONS(975), - [aux_sym_cmd_identifier_token16] = ACTIONS(977), - [aux_sym_cmd_identifier_token17] = ACTIONS(977), - [aux_sym_cmd_identifier_token18] = ACTIONS(977), - [aux_sym_cmd_identifier_token19] = ACTIONS(977), - [aux_sym_cmd_identifier_token20] = ACTIONS(977), - [aux_sym_cmd_identifier_token21] = ACTIONS(977), - [aux_sym_cmd_identifier_token22] = ACTIONS(977), - [aux_sym_cmd_identifier_token23] = ACTIONS(977), - [aux_sym_cmd_identifier_token24] = ACTIONS(977), - [aux_sym_cmd_identifier_token25] = ACTIONS(977), - [aux_sym_cmd_identifier_token26] = ACTIONS(977), - [aux_sym_cmd_identifier_token27] = ACTIONS(977), - [aux_sym_cmd_identifier_token28] = ACTIONS(977), - [aux_sym_cmd_identifier_token29] = ACTIONS(977), - [aux_sym_cmd_identifier_token30] = ACTIONS(977), - [aux_sym_cmd_identifier_token31] = ACTIONS(977), - [aux_sym_cmd_identifier_token32] = ACTIONS(977), - [aux_sym_cmd_identifier_token33] = ACTIONS(977), - [aux_sym_cmd_identifier_token34] = ACTIONS(975), - [aux_sym_cmd_identifier_token35] = ACTIONS(977), - [aux_sym_cmd_identifier_token36] = ACTIONS(977), - [aux_sym_cmd_identifier_token37] = ACTIONS(977), - [aux_sym_cmd_identifier_token38] = ACTIONS(975), - [aux_sym_cmd_identifier_token39] = ACTIONS(977), - [aux_sym_cmd_identifier_token40] = ACTIONS(977), - [anon_sym_def] = ACTIONS(975), - [anon_sym_export_DASHenv] = ACTIONS(975), - [anon_sym_extern] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_use] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_error] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(975), - [anon_sym_loop] = ACTIONS(975), - [anon_sym_make] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_try] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_return] = ACTIONS(975), - [anon_sym_source] = ACTIONS(975), - [anon_sym_source_DASHenv] = ACTIONS(975), - [anon_sym_register] = ACTIONS(975), - [anon_sym_hide] = ACTIONS(975), - [anon_sym_hide_DASHenv] = ACTIONS(975), - [anon_sym_overlay] = ACTIONS(975), - [anon_sym_as] = ACTIONS(975), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(975), - [aux_sym__val_number_token5] = ACTIONS(975), - [aux_sym__val_number_token6] = ACTIONS(975), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(2235), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [sym__entry_separator] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(968), }, [527] = { [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [aux_sym_cmd_identifier_token37] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), - }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1054), - [aux_sym_cmd_identifier_token3] = ACTIONS(1054), - [aux_sym_cmd_identifier_token4] = ACTIONS(1054), - [aux_sym_cmd_identifier_token5] = ACTIONS(1054), - [aux_sym_cmd_identifier_token6] = ACTIONS(1054), - [aux_sym_cmd_identifier_token7] = ACTIONS(1054), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1054), - [aux_sym_cmd_identifier_token11] = ACTIONS(1054), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1054), - [aux_sym_cmd_identifier_token17] = ACTIONS(1054), - [aux_sym_cmd_identifier_token18] = ACTIONS(1054), - [aux_sym_cmd_identifier_token19] = ACTIONS(1054), - [aux_sym_cmd_identifier_token20] = ACTIONS(1054), - [aux_sym_cmd_identifier_token21] = ACTIONS(1054), - [aux_sym_cmd_identifier_token22] = ACTIONS(1054), - [aux_sym_cmd_identifier_token23] = ACTIONS(1054), - [aux_sym_cmd_identifier_token24] = ACTIONS(1054), - [aux_sym_cmd_identifier_token25] = ACTIONS(1054), - [aux_sym_cmd_identifier_token26] = ACTIONS(1054), - [aux_sym_cmd_identifier_token27] = ACTIONS(1054), - [aux_sym_cmd_identifier_token28] = ACTIONS(1054), - [aux_sym_cmd_identifier_token29] = ACTIONS(1054), - [aux_sym_cmd_identifier_token30] = ACTIONS(1054), - [aux_sym_cmd_identifier_token31] = ACTIONS(1054), - [aux_sym_cmd_identifier_token32] = ACTIONS(1054), - [aux_sym_cmd_identifier_token33] = ACTIONS(1054), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1054), - [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [aux_sym_cmd_identifier_token37] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1052), - [aux_sym__val_number_token5] = ACTIONS(1052), - [aux_sym__val_number_token6] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1054), - }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1024), - [aux_sym_cmd_identifier_token3] = ACTIONS(1024), - [aux_sym_cmd_identifier_token4] = ACTIONS(1024), - [aux_sym_cmd_identifier_token5] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1024), - [aux_sym_cmd_identifier_token7] = ACTIONS(1024), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1024), - [aux_sym_cmd_identifier_token11] = ACTIONS(1024), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1024), - [aux_sym_cmd_identifier_token17] = ACTIONS(1024), - [aux_sym_cmd_identifier_token18] = ACTIONS(1024), - [aux_sym_cmd_identifier_token19] = ACTIONS(1024), - [aux_sym_cmd_identifier_token20] = ACTIONS(1024), - [aux_sym_cmd_identifier_token21] = ACTIONS(1024), - [aux_sym_cmd_identifier_token22] = ACTIONS(1024), - [aux_sym_cmd_identifier_token23] = ACTIONS(1024), - [aux_sym_cmd_identifier_token24] = ACTIONS(1024), - [aux_sym_cmd_identifier_token25] = ACTIONS(1024), - [aux_sym_cmd_identifier_token26] = ACTIONS(1024), - [aux_sym_cmd_identifier_token27] = ACTIONS(1024), - [aux_sym_cmd_identifier_token28] = ACTIONS(1024), - [aux_sym_cmd_identifier_token29] = ACTIONS(1024), - [aux_sym_cmd_identifier_token30] = ACTIONS(1024), - [aux_sym_cmd_identifier_token31] = ACTIONS(1024), - [aux_sym_cmd_identifier_token32] = ACTIONS(1024), - [aux_sym_cmd_identifier_token33] = ACTIONS(1024), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1024), - [aux_sym_cmd_identifier_token36] = ACTIONS(1024), - [aux_sym_cmd_identifier_token37] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), - }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(2224), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1771), - [aux_sym_cmd_identifier_token3] = ACTIONS(1771), - [aux_sym_cmd_identifier_token4] = ACTIONS(1771), - [aux_sym_cmd_identifier_token5] = ACTIONS(1771), - [aux_sym_cmd_identifier_token6] = ACTIONS(1771), - [aux_sym_cmd_identifier_token7] = ACTIONS(1771), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1771), - [aux_sym_cmd_identifier_token11] = ACTIONS(1771), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1771), - [aux_sym_cmd_identifier_token17] = ACTIONS(1771), - [aux_sym_cmd_identifier_token18] = ACTIONS(1771), - [aux_sym_cmd_identifier_token19] = ACTIONS(1771), - [aux_sym_cmd_identifier_token20] = ACTIONS(1771), - [aux_sym_cmd_identifier_token21] = ACTIONS(1771), - [aux_sym_cmd_identifier_token22] = ACTIONS(1771), - [aux_sym_cmd_identifier_token23] = ACTIONS(1771), - [aux_sym_cmd_identifier_token24] = ACTIONS(1771), - [aux_sym_cmd_identifier_token25] = ACTIONS(1771), - [aux_sym_cmd_identifier_token26] = ACTIONS(1771), - [aux_sym_cmd_identifier_token27] = ACTIONS(1771), - [aux_sym_cmd_identifier_token28] = ACTIONS(1771), - [aux_sym_cmd_identifier_token29] = ACTIONS(1771), - [aux_sym_cmd_identifier_token30] = ACTIONS(1771), - [aux_sym_cmd_identifier_token31] = ACTIONS(1771), - [aux_sym_cmd_identifier_token32] = ACTIONS(1771), - [aux_sym_cmd_identifier_token33] = ACTIONS(1771), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1771), - [aux_sym_cmd_identifier_token36] = ACTIONS(1771), - [aux_sym_cmd_identifier_token37] = ACTIONS(1771), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1771), - [aux_sym_cmd_identifier_token40] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1771), - [aux_sym__val_number_decimal_token3] = ACTIONS(1771), - [aux_sym__val_number_decimal_token4] = ACTIONS(1771), - [aux_sym__val_number_token1] = ACTIONS(1771), - [aux_sym__val_number_token2] = ACTIONS(1771), - [aux_sym__val_number_token3] = ACTIONS(1771), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), - [sym__entry_separator] = ACTIONS(1773), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1773), - }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1773), - [aux_sym_cmd_identifier_token3] = ACTIONS(1773), - [aux_sym_cmd_identifier_token4] = ACTIONS(1773), - [aux_sym_cmd_identifier_token5] = ACTIONS(1773), - [aux_sym_cmd_identifier_token6] = ACTIONS(1773), - [aux_sym_cmd_identifier_token7] = ACTIONS(1773), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1773), - [aux_sym_cmd_identifier_token11] = ACTIONS(1773), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1773), - [aux_sym_cmd_identifier_token17] = ACTIONS(1773), - [aux_sym_cmd_identifier_token18] = ACTIONS(1773), - [aux_sym_cmd_identifier_token19] = ACTIONS(1773), - [aux_sym_cmd_identifier_token20] = ACTIONS(1773), - [aux_sym_cmd_identifier_token21] = ACTIONS(1773), - [aux_sym_cmd_identifier_token22] = ACTIONS(1773), - [aux_sym_cmd_identifier_token23] = ACTIONS(1773), - [aux_sym_cmd_identifier_token24] = ACTIONS(1773), - [aux_sym_cmd_identifier_token25] = ACTIONS(1773), - [aux_sym_cmd_identifier_token26] = ACTIONS(1773), - [aux_sym_cmd_identifier_token27] = ACTIONS(1773), - [aux_sym_cmd_identifier_token28] = ACTIONS(1773), - [aux_sym_cmd_identifier_token29] = ACTIONS(1773), - [aux_sym_cmd_identifier_token30] = ACTIONS(1773), - [aux_sym_cmd_identifier_token31] = ACTIONS(1773), - [aux_sym_cmd_identifier_token32] = ACTIONS(1773), - [aux_sym_cmd_identifier_token33] = ACTIONS(1773), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1773), - [aux_sym_cmd_identifier_token36] = ACTIONS(1773), - [aux_sym_cmd_identifier_token37] = ACTIONS(1773), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1773), - [aux_sym_cmd_identifier_token40] = ACTIONS(1773), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), - }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_alias] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_let_DASHenv] = ACTIONS(2226), - [anon_sym_mut] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [aux_sym_cmd_identifier_token1] = ACTIONS(2226), - [aux_sym_cmd_identifier_token2] = ACTIONS(2226), - [aux_sym_cmd_identifier_token3] = ACTIONS(2226), - [aux_sym_cmd_identifier_token4] = ACTIONS(2226), - [aux_sym_cmd_identifier_token5] = ACTIONS(2226), - [aux_sym_cmd_identifier_token6] = ACTIONS(2226), - [aux_sym_cmd_identifier_token7] = ACTIONS(2226), - [aux_sym_cmd_identifier_token8] = ACTIONS(2226), - [aux_sym_cmd_identifier_token9] = ACTIONS(2226), - [aux_sym_cmd_identifier_token10] = ACTIONS(2226), - [aux_sym_cmd_identifier_token11] = ACTIONS(2226), - [aux_sym_cmd_identifier_token12] = ACTIONS(2226), - [aux_sym_cmd_identifier_token13] = ACTIONS(2226), - [aux_sym_cmd_identifier_token14] = ACTIONS(2226), - [aux_sym_cmd_identifier_token15] = ACTIONS(2226), - [aux_sym_cmd_identifier_token16] = ACTIONS(2226), - [aux_sym_cmd_identifier_token17] = ACTIONS(2226), - [aux_sym_cmd_identifier_token18] = ACTIONS(2226), - [aux_sym_cmd_identifier_token19] = ACTIONS(2226), - [aux_sym_cmd_identifier_token20] = ACTIONS(2226), - [aux_sym_cmd_identifier_token21] = ACTIONS(2226), - [aux_sym_cmd_identifier_token22] = ACTIONS(2226), - [aux_sym_cmd_identifier_token23] = ACTIONS(2226), - [aux_sym_cmd_identifier_token24] = ACTIONS(2226), - [aux_sym_cmd_identifier_token25] = ACTIONS(2226), - [aux_sym_cmd_identifier_token26] = ACTIONS(2226), - [aux_sym_cmd_identifier_token27] = ACTIONS(2226), - [aux_sym_cmd_identifier_token28] = ACTIONS(2226), - [aux_sym_cmd_identifier_token29] = ACTIONS(2226), - [aux_sym_cmd_identifier_token30] = ACTIONS(2226), - [aux_sym_cmd_identifier_token31] = ACTIONS(2226), - [aux_sym_cmd_identifier_token32] = ACTIONS(2226), - [aux_sym_cmd_identifier_token33] = ACTIONS(2226), - [aux_sym_cmd_identifier_token34] = ACTIONS(2226), - [aux_sym_cmd_identifier_token35] = ACTIONS(2226), - [aux_sym_cmd_identifier_token36] = ACTIONS(2226), - [aux_sym_cmd_identifier_token37] = ACTIONS(2226), - [aux_sym_cmd_identifier_token38] = ACTIONS(2226), - [aux_sym_cmd_identifier_token39] = ACTIONS(2226), - [aux_sym_cmd_identifier_token40] = ACTIONS(2226), - [anon_sym_def] = ACTIONS(2226), - [anon_sym_export_DASHenv] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_use] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_DOLLAR] = ACTIONS(2226), - [anon_sym_error] = ACTIONS(2226), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_in2] = ACTIONS(2226), - [anon_sym_loop] = ACTIONS(2226), - [anon_sym_make] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_match] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_catch] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_source] = ACTIONS(2226), - [anon_sym_source_DASHenv] = ACTIONS(2226), - [anon_sym_register] = ACTIONS(2226), - [anon_sym_hide] = ACTIONS(2226), - [anon_sym_hide_DASHenv] = ACTIONS(2226), - [anon_sym_overlay] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2226), - [anon_sym_LPAREN2] = ACTIONS(2228), - [anon_sym_PLUS2] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2226), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2226), - [aux_sym__val_number_decimal_token3] = ACTIONS(2226), - [aux_sym__val_number_decimal_token4] = ACTIONS(2226), - [aux_sym__val_number_token1] = ACTIONS(2226), - [aux_sym__val_number_token2] = ACTIONS(2226), - [aux_sym__val_number_token3] = ACTIONS(2226), - [aux_sym__val_number_token4] = ACTIONS(2226), - [aux_sym__val_number_token5] = ACTIONS(2226), - [aux_sym__val_number_token6] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2226), - [sym__str_single_quotes] = ACTIONS(2226), - [sym__str_back_ticks] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2226), - [sym__entry_separator] = ACTIONS(2230), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2230), - }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_alias] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_let_DASHenv] = ACTIONS(1840), - [anon_sym_mut] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [aux_sym_cmd_identifier_token1] = ACTIONS(1840), - [aux_sym_cmd_identifier_token2] = ACTIONS(1840), - [aux_sym_cmd_identifier_token3] = ACTIONS(1840), - [aux_sym_cmd_identifier_token4] = ACTIONS(1840), - [aux_sym_cmd_identifier_token5] = ACTIONS(1840), - [aux_sym_cmd_identifier_token6] = ACTIONS(1840), - [aux_sym_cmd_identifier_token7] = ACTIONS(1840), - [aux_sym_cmd_identifier_token8] = ACTIONS(1840), - [aux_sym_cmd_identifier_token9] = ACTIONS(1840), - [aux_sym_cmd_identifier_token10] = ACTIONS(1840), - [aux_sym_cmd_identifier_token11] = ACTIONS(1840), - [aux_sym_cmd_identifier_token12] = ACTIONS(1840), - [aux_sym_cmd_identifier_token13] = ACTIONS(1840), - [aux_sym_cmd_identifier_token14] = ACTIONS(1840), - [aux_sym_cmd_identifier_token15] = ACTIONS(1840), - [aux_sym_cmd_identifier_token16] = ACTIONS(1840), - [aux_sym_cmd_identifier_token17] = ACTIONS(1840), - [aux_sym_cmd_identifier_token18] = ACTIONS(1840), - [aux_sym_cmd_identifier_token19] = ACTIONS(1840), - [aux_sym_cmd_identifier_token20] = ACTIONS(1840), - [aux_sym_cmd_identifier_token21] = ACTIONS(1840), - [aux_sym_cmd_identifier_token22] = ACTIONS(1840), - [aux_sym_cmd_identifier_token23] = ACTIONS(1840), - [aux_sym_cmd_identifier_token24] = ACTIONS(1840), - [aux_sym_cmd_identifier_token25] = ACTIONS(1840), - [aux_sym_cmd_identifier_token26] = ACTIONS(1840), - [aux_sym_cmd_identifier_token27] = ACTIONS(1840), - [aux_sym_cmd_identifier_token28] = ACTIONS(1840), - [aux_sym_cmd_identifier_token29] = ACTIONS(1840), - [aux_sym_cmd_identifier_token30] = ACTIONS(1840), - [aux_sym_cmd_identifier_token31] = ACTIONS(1840), - [aux_sym_cmd_identifier_token32] = ACTIONS(1840), - [aux_sym_cmd_identifier_token33] = ACTIONS(1840), - [aux_sym_cmd_identifier_token34] = ACTIONS(1840), - [aux_sym_cmd_identifier_token35] = ACTIONS(1840), - [aux_sym_cmd_identifier_token36] = ACTIONS(1840), - [aux_sym_cmd_identifier_token37] = ACTIONS(1840), - [aux_sym_cmd_identifier_token38] = ACTIONS(1840), - [aux_sym_cmd_identifier_token39] = ACTIONS(1840), - [aux_sym_cmd_identifier_token40] = ACTIONS(1840), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_export_DASHenv] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_error] = ACTIONS(1840), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_in2] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_make] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_do] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_else] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_catch] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_source] = ACTIONS(1840), - [anon_sym_source_DASHenv] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_hide] = ACTIONS(1840), - [anon_sym_hide_DASHenv] = ACTIONS(1840), - [anon_sym_overlay] = ACTIONS(1840), - [anon_sym_as] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1840), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1840), - [aux_sym__val_number_decimal_token3] = ACTIONS(1840), - [aux_sym__val_number_decimal_token4] = ACTIONS(1840), - [aux_sym__val_number_token1] = ACTIONS(1840), - [aux_sym__val_number_token2] = ACTIONS(1840), - [aux_sym__val_number_token3] = ACTIONS(1840), - [aux_sym__val_number_token4] = ACTIONS(1840), - [aux_sym__val_number_token5] = ACTIONS(1840), - [aux_sym__val_number_token6] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym__str_single_quotes] = ACTIONS(1840), - [sym__str_back_ticks] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1840), - [sym__entry_separator] = ACTIONS(1848), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1848), - }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_alias] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_let_DASHenv] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), - [aux_sym_cmd_identifier_token8] = ACTIONS(2234), - [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), - [aux_sym_cmd_identifier_token12] = ACTIONS(2234), - [aux_sym_cmd_identifier_token13] = ACTIONS(2234), - [aux_sym_cmd_identifier_token14] = ACTIONS(2234), - [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), - [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [aux_sym_cmd_identifier_token37] = ACTIONS(2234), - [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2234), - [aux_sym_cmd_identifier_token40] = ACTIONS(2234), - [anon_sym_def] = ACTIONS(2234), - [anon_sym_export_DASHenv] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_error] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_make] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_source] = ACTIONS(2234), - [anon_sym_source_DASHenv] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_hide] = ACTIONS(2234), - [anon_sym_hide_DASHenv] = ACTIONS(2234), - [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2234), - [sym__str_single_quotes] = ACTIONS(2234), - [sym__str_back_ticks] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), - [sym__entry_separator] = ACTIONS(2238), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2238), - }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_alias] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_let_DASHenv] = ACTIONS(2242), - [anon_sym_mut] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [aux_sym_cmd_identifier_token1] = ACTIONS(2242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2242), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [aux_sym_cmd_identifier_token6] = ACTIONS(2242), - [aux_sym_cmd_identifier_token7] = ACTIONS(2242), - [aux_sym_cmd_identifier_token8] = ACTIONS(2242), - [aux_sym_cmd_identifier_token9] = ACTIONS(2242), - [aux_sym_cmd_identifier_token10] = ACTIONS(2242), - [aux_sym_cmd_identifier_token11] = ACTIONS(2242), - [aux_sym_cmd_identifier_token12] = ACTIONS(2242), - [aux_sym_cmd_identifier_token13] = ACTIONS(2242), - [aux_sym_cmd_identifier_token14] = ACTIONS(2242), - [aux_sym_cmd_identifier_token15] = ACTIONS(2242), - [aux_sym_cmd_identifier_token16] = ACTIONS(2242), - [aux_sym_cmd_identifier_token17] = ACTIONS(2242), - [aux_sym_cmd_identifier_token18] = ACTIONS(2242), - [aux_sym_cmd_identifier_token19] = ACTIONS(2242), - [aux_sym_cmd_identifier_token20] = ACTIONS(2242), - [aux_sym_cmd_identifier_token21] = ACTIONS(2242), - [aux_sym_cmd_identifier_token22] = ACTIONS(2242), - [aux_sym_cmd_identifier_token23] = ACTIONS(2242), - [aux_sym_cmd_identifier_token24] = ACTIONS(2242), - [aux_sym_cmd_identifier_token25] = ACTIONS(2242), - [aux_sym_cmd_identifier_token26] = ACTIONS(2242), - [aux_sym_cmd_identifier_token27] = ACTIONS(2242), - [aux_sym_cmd_identifier_token28] = ACTIONS(2242), - [aux_sym_cmd_identifier_token29] = ACTIONS(2242), - [aux_sym_cmd_identifier_token30] = ACTIONS(2242), - [aux_sym_cmd_identifier_token31] = ACTIONS(2242), - [aux_sym_cmd_identifier_token32] = ACTIONS(2242), - [aux_sym_cmd_identifier_token33] = ACTIONS(2242), - [aux_sym_cmd_identifier_token34] = ACTIONS(2242), - [aux_sym_cmd_identifier_token35] = ACTIONS(2242), - [aux_sym_cmd_identifier_token36] = ACTIONS(2242), - [aux_sym_cmd_identifier_token37] = ACTIONS(2242), - [aux_sym_cmd_identifier_token38] = ACTIONS(2242), - [aux_sym_cmd_identifier_token39] = ACTIONS(2242), - [aux_sym_cmd_identifier_token40] = ACTIONS(2242), - [anon_sym_def] = ACTIONS(2242), - [anon_sym_export_DASHenv] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(2242), - [anon_sym_module] = ACTIONS(2242), - [anon_sym_use] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_error] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_in2] = ACTIONS(2242), - [anon_sym_loop] = ACTIONS(2242), - [anon_sym_make] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_catch] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_source] = ACTIONS(2242), - [anon_sym_source_DASHenv] = ACTIONS(2242), - [anon_sym_register] = ACTIONS(2242), - [anon_sym_hide] = ACTIONS(2242), - [anon_sym_hide_DASHenv] = ACTIONS(2242), - [anon_sym_overlay] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2242), - [anon_sym_LPAREN2] = ACTIONS(2244), - [anon_sym_PLUS2] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2242), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2242), - [aux_sym__val_number_decimal_token3] = ACTIONS(2242), - [aux_sym__val_number_decimal_token4] = ACTIONS(2242), - [aux_sym__val_number_token1] = ACTIONS(2242), - [aux_sym__val_number_token2] = ACTIONS(2242), - [aux_sym__val_number_token3] = ACTIONS(2242), - [aux_sym__val_number_token4] = ACTIONS(2242), - [aux_sym__val_number_token5] = ACTIONS(2242), - [aux_sym__val_number_token6] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2242), - [sym__str_single_quotes] = ACTIONS(2242), - [sym__str_back_ticks] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), - [sym__entry_separator] = ACTIONS(2244), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2244), - }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_let_DASHenv] = ACTIONS(2098), - [anon_sym_mut] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2104), - [aux_sym_cmd_identifier_token3] = ACTIONS(2104), - [aux_sym_cmd_identifier_token4] = ACTIONS(2104), - [aux_sym_cmd_identifier_token5] = ACTIONS(2104), - [aux_sym_cmd_identifier_token6] = ACTIONS(2104), - [aux_sym_cmd_identifier_token7] = ACTIONS(2104), - [aux_sym_cmd_identifier_token8] = ACTIONS(2098), - [aux_sym_cmd_identifier_token9] = ACTIONS(2098), - [aux_sym_cmd_identifier_token10] = ACTIONS(2104), - [aux_sym_cmd_identifier_token11] = ACTIONS(2104), - [aux_sym_cmd_identifier_token12] = ACTIONS(2098), - [aux_sym_cmd_identifier_token13] = ACTIONS(2098), - [aux_sym_cmd_identifier_token14] = ACTIONS(2098), - [aux_sym_cmd_identifier_token15] = ACTIONS(2098), - [aux_sym_cmd_identifier_token16] = ACTIONS(2104), - [aux_sym_cmd_identifier_token17] = ACTIONS(2104), - [aux_sym_cmd_identifier_token18] = ACTIONS(2104), - [aux_sym_cmd_identifier_token19] = ACTIONS(2104), - [aux_sym_cmd_identifier_token20] = ACTIONS(2104), - [aux_sym_cmd_identifier_token21] = ACTIONS(2104), - [aux_sym_cmd_identifier_token22] = ACTIONS(2104), - [aux_sym_cmd_identifier_token23] = ACTIONS(2104), - [aux_sym_cmd_identifier_token24] = ACTIONS(2104), - [aux_sym_cmd_identifier_token25] = ACTIONS(2104), - [aux_sym_cmd_identifier_token26] = ACTIONS(2104), - [aux_sym_cmd_identifier_token27] = ACTIONS(2104), - [aux_sym_cmd_identifier_token28] = ACTIONS(2104), - [aux_sym_cmd_identifier_token29] = ACTIONS(2104), - [aux_sym_cmd_identifier_token30] = ACTIONS(2104), - [aux_sym_cmd_identifier_token31] = ACTIONS(2104), - [aux_sym_cmd_identifier_token32] = ACTIONS(2104), - [aux_sym_cmd_identifier_token33] = ACTIONS(2104), - [aux_sym_cmd_identifier_token34] = ACTIONS(2098), - [aux_sym_cmd_identifier_token35] = ACTIONS(2104), - [aux_sym_cmd_identifier_token36] = ACTIONS(2104), - [aux_sym_cmd_identifier_token37] = ACTIONS(2104), - [aux_sym_cmd_identifier_token38] = ACTIONS(2098), - [aux_sym_cmd_identifier_token39] = ACTIONS(2104), - [aux_sym_cmd_identifier_token40] = ACTIONS(2104), - [anon_sym_def] = ACTIONS(2098), - [anon_sym_export_DASHenv] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_error] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_in2] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_make] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_source] = ACTIONS(2098), - [anon_sym_source_DASHenv] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_hide] = ACTIONS(2098), - [anon_sym_hide_DASHenv] = ACTIONS(2098), - [anon_sym_overlay] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2104), - [anon_sym_DOT_DOT2] = ACTIONS(2246), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2248), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2248), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2098), - [aux_sym__val_number_token5] = ACTIONS(2098), - [aux_sym__val_number_token6] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2070), - [aux_sym_cmd_identifier_token3] = ACTIONS(2070), - [aux_sym_cmd_identifier_token4] = ACTIONS(2070), - [aux_sym_cmd_identifier_token5] = ACTIONS(2070), - [aux_sym_cmd_identifier_token6] = ACTIONS(2070), - [aux_sym_cmd_identifier_token7] = ACTIONS(2070), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2070), - [aux_sym_cmd_identifier_token17] = ACTIONS(2070), - [aux_sym_cmd_identifier_token18] = ACTIONS(2070), - [aux_sym_cmd_identifier_token19] = ACTIONS(2070), - [aux_sym_cmd_identifier_token20] = ACTIONS(2070), - [aux_sym_cmd_identifier_token21] = ACTIONS(2070), - [aux_sym_cmd_identifier_token22] = ACTIONS(2070), - [aux_sym_cmd_identifier_token23] = ACTIONS(2070), - [aux_sym_cmd_identifier_token24] = ACTIONS(2070), - [aux_sym_cmd_identifier_token25] = ACTIONS(2070), - [aux_sym_cmd_identifier_token26] = ACTIONS(2070), - [aux_sym_cmd_identifier_token27] = ACTIONS(2070), - [aux_sym_cmd_identifier_token28] = ACTIONS(2070), - [aux_sym_cmd_identifier_token29] = ACTIONS(2070), - [aux_sym_cmd_identifier_token30] = ACTIONS(2070), - [aux_sym_cmd_identifier_token31] = ACTIONS(2070), - [aux_sym_cmd_identifier_token32] = ACTIONS(2070), - [aux_sym_cmd_identifier_token33] = ACTIONS(2070), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2070), - [aux_sym_cmd_identifier_token36] = ACTIONS(2070), - [aux_sym_cmd_identifier_token37] = ACTIONS(2070), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT_DOT2] = ACTIONS(2213), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [542] = { - [sym_comment] = STATE(542), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -144343,10 +137454,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1004), [anon_sym_overlay] = ACTIONS(1004), [anon_sym_as] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2237), [anon_sym_PLUS2] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), [aux_sym__val_number_decimal_token1] = ACTIONS(1004), [aux_sym__val_number_decimal_token2] = ACTIONS(1004), @@ -144362,2355 +137472,931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1004), [sym__str_back_ticks] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_alias] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_let_DASHenv] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [aux_sym_cmd_identifier_token1] = ACTIONS(2197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2199), - [aux_sym_cmd_identifier_token3] = ACTIONS(2199), - [aux_sym_cmd_identifier_token4] = ACTIONS(2199), - [aux_sym_cmd_identifier_token5] = ACTIONS(2199), - [aux_sym_cmd_identifier_token6] = ACTIONS(2199), - [aux_sym_cmd_identifier_token7] = ACTIONS(2199), - [aux_sym_cmd_identifier_token8] = ACTIONS(2197), - [aux_sym_cmd_identifier_token9] = ACTIONS(2197), - [aux_sym_cmd_identifier_token10] = ACTIONS(2199), - [aux_sym_cmd_identifier_token11] = ACTIONS(2199), - [aux_sym_cmd_identifier_token12] = ACTIONS(2197), - [aux_sym_cmd_identifier_token13] = ACTIONS(2197), - [aux_sym_cmd_identifier_token14] = ACTIONS(2197), - [aux_sym_cmd_identifier_token15] = ACTIONS(2197), - [aux_sym_cmd_identifier_token16] = ACTIONS(2199), - [aux_sym_cmd_identifier_token17] = ACTIONS(2199), - [aux_sym_cmd_identifier_token18] = ACTIONS(2199), - [aux_sym_cmd_identifier_token19] = ACTIONS(2199), - [aux_sym_cmd_identifier_token20] = ACTIONS(2199), - [aux_sym_cmd_identifier_token21] = ACTIONS(2199), - [aux_sym_cmd_identifier_token22] = ACTIONS(2199), - [aux_sym_cmd_identifier_token23] = ACTIONS(2199), - [aux_sym_cmd_identifier_token24] = ACTIONS(2199), - [aux_sym_cmd_identifier_token25] = ACTIONS(2199), - [aux_sym_cmd_identifier_token26] = ACTIONS(2199), - [aux_sym_cmd_identifier_token27] = ACTIONS(2199), - [aux_sym_cmd_identifier_token28] = ACTIONS(2199), - [aux_sym_cmd_identifier_token29] = ACTIONS(2199), - [aux_sym_cmd_identifier_token30] = ACTIONS(2199), - [aux_sym_cmd_identifier_token31] = ACTIONS(2199), - [aux_sym_cmd_identifier_token32] = ACTIONS(2199), - [aux_sym_cmd_identifier_token33] = ACTIONS(2199), - [aux_sym_cmd_identifier_token34] = ACTIONS(2197), - [aux_sym_cmd_identifier_token35] = ACTIONS(2199), - [aux_sym_cmd_identifier_token36] = ACTIONS(2199), - [aux_sym_cmd_identifier_token37] = ACTIONS(2199), - [aux_sym_cmd_identifier_token38] = ACTIONS(2197), - [aux_sym_cmd_identifier_token39] = ACTIONS(2199), - [aux_sym_cmd_identifier_token40] = ACTIONS(2199), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_export_DASHenv] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_error] = ACTIONS(2197), - [anon_sym_DASH2] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_in2] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_make] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_source] = ACTIONS(2197), - [anon_sym_source_DASHenv] = ACTIONS(2197), - [anon_sym_register] = ACTIONS(2197), - [anon_sym_hide] = ACTIONS(2197), - [anon_sym_hide_DASHenv] = ACTIONS(2197), - [anon_sym_overlay] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_PLUS2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), - [anon_sym_DOT_DOT2] = ACTIONS(2213), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2215), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), - [aux_sym__val_number_decimal_token1] = ACTIONS(2197), - [aux_sym__val_number_decimal_token2] = ACTIONS(2199), - [aux_sym__val_number_decimal_token3] = ACTIONS(2199), - [aux_sym__val_number_decimal_token4] = ACTIONS(2199), - [aux_sym__val_number_token1] = ACTIONS(2199), - [aux_sym__val_number_token2] = ACTIONS(2199), - [aux_sym__val_number_token3] = ACTIONS(2199), - [aux_sym__val_number_token4] = ACTIONS(2197), - [aux_sym__val_number_token5] = ACTIONS(2197), - [aux_sym__val_number_token6] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2199), - [sym__str_back_ticks] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2199), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [sym__entry_separator] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(998), - }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [aux_sym_cmd_identifier_token1] = ACTIONS(2131), - [aux_sym_cmd_identifier_token2] = ACTIONS(2137), - [aux_sym_cmd_identifier_token3] = ACTIONS(2137), - [aux_sym_cmd_identifier_token4] = ACTIONS(2137), - [aux_sym_cmd_identifier_token5] = ACTIONS(2137), - [aux_sym_cmd_identifier_token6] = ACTIONS(2137), - [aux_sym_cmd_identifier_token7] = ACTIONS(2137), - [aux_sym_cmd_identifier_token8] = ACTIONS(2131), - [aux_sym_cmd_identifier_token9] = ACTIONS(2131), - [aux_sym_cmd_identifier_token10] = ACTIONS(2137), - [aux_sym_cmd_identifier_token11] = ACTIONS(2137), - [aux_sym_cmd_identifier_token12] = ACTIONS(2131), - [aux_sym_cmd_identifier_token13] = ACTIONS(2131), - [aux_sym_cmd_identifier_token14] = ACTIONS(2131), - [aux_sym_cmd_identifier_token15] = ACTIONS(2131), - [aux_sym_cmd_identifier_token16] = ACTIONS(2137), - [aux_sym_cmd_identifier_token17] = ACTIONS(2137), - [aux_sym_cmd_identifier_token18] = ACTIONS(2137), - [aux_sym_cmd_identifier_token19] = ACTIONS(2137), - [aux_sym_cmd_identifier_token20] = ACTIONS(2137), - [aux_sym_cmd_identifier_token21] = ACTIONS(2137), - [aux_sym_cmd_identifier_token22] = ACTIONS(2137), - [aux_sym_cmd_identifier_token23] = ACTIONS(2137), - [aux_sym_cmd_identifier_token24] = ACTIONS(2137), - [aux_sym_cmd_identifier_token25] = ACTIONS(2137), - [aux_sym_cmd_identifier_token26] = ACTIONS(2137), - [aux_sym_cmd_identifier_token27] = ACTIONS(2137), - [aux_sym_cmd_identifier_token28] = ACTIONS(2137), - [aux_sym_cmd_identifier_token29] = ACTIONS(2137), - [aux_sym_cmd_identifier_token30] = ACTIONS(2137), - [aux_sym_cmd_identifier_token31] = ACTIONS(2137), - [aux_sym_cmd_identifier_token32] = ACTIONS(2137), - [aux_sym_cmd_identifier_token33] = ACTIONS(2137), - [aux_sym_cmd_identifier_token34] = ACTIONS(2131), - [aux_sym_cmd_identifier_token35] = ACTIONS(2137), - [aux_sym_cmd_identifier_token36] = ACTIONS(2137), - [aux_sym_cmd_identifier_token37] = ACTIONS(2137), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2137), - [aux_sym_cmd_identifier_token40] = ACTIONS(2137), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_DASH2] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_in2] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_make] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_catch] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_PLUS2] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2137), - [anon_sym_DOT_DOT2] = ACTIONS(2250), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2252), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2252), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2137), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2137), - [aux_sym__val_number_decimal_token3] = ACTIONS(2137), - [aux_sym__val_number_decimal_token4] = ACTIONS(2137), - [aux_sym__val_number_token1] = ACTIONS(2137), - [aux_sym__val_number_token2] = ACTIONS(2137), - [aux_sym__val_number_token3] = ACTIONS(2137), - [aux_sym__val_number_token4] = ACTIONS(2131), - [aux_sym__val_number_token5] = ACTIONS(2131), - [aux_sym__val_number_token6] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2137), - [sym__str_single_quotes] = ACTIONS(2137), - [sym__str_back_ticks] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2137), - }, - [547] = { - [sym__expr_parenthesized_immediate] = STATE(8113), - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2064), - [aux_sym_cmd_identifier_token3] = ACTIONS(2064), - [aux_sym_cmd_identifier_token4] = ACTIONS(2064), - [aux_sym_cmd_identifier_token5] = ACTIONS(2064), - [aux_sym_cmd_identifier_token6] = ACTIONS(2064), - [aux_sym_cmd_identifier_token7] = ACTIONS(2064), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2064), - [aux_sym_cmd_identifier_token11] = ACTIONS(2064), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2064), - [aux_sym_cmd_identifier_token17] = ACTIONS(2064), - [aux_sym_cmd_identifier_token18] = ACTIONS(2064), - [aux_sym_cmd_identifier_token19] = ACTIONS(2064), - [aux_sym_cmd_identifier_token20] = ACTIONS(2064), - [aux_sym_cmd_identifier_token21] = ACTIONS(2064), - [aux_sym_cmd_identifier_token22] = ACTIONS(2064), - [aux_sym_cmd_identifier_token23] = ACTIONS(2064), - [aux_sym_cmd_identifier_token24] = ACTIONS(2064), - [aux_sym_cmd_identifier_token25] = ACTIONS(2064), - [aux_sym_cmd_identifier_token26] = ACTIONS(2064), - [aux_sym_cmd_identifier_token27] = ACTIONS(2064), - [aux_sym_cmd_identifier_token28] = ACTIONS(2064), - [aux_sym_cmd_identifier_token29] = ACTIONS(2064), - [aux_sym_cmd_identifier_token30] = ACTIONS(2064), - [aux_sym_cmd_identifier_token31] = ACTIONS(2064), - [aux_sym_cmd_identifier_token32] = ACTIONS(2064), - [aux_sym_cmd_identifier_token33] = ACTIONS(2064), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2064), - [aux_sym_cmd_identifier_token36] = ACTIONS(2064), - [aux_sym_cmd_identifier_token37] = ACTIONS(2064), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2064), - [aux_sym_cmd_identifier_token40] = ACTIONS(2064), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2064), - [aux_sym__val_number_decimal_token3] = ACTIONS(2064), - [aux_sym__val_number_decimal_token4] = ACTIONS(2064), - [aux_sym__val_number_token1] = ACTIONS(2064), - [aux_sym__val_number_token2] = ACTIONS(2064), - [aux_sym__val_number_token3] = ACTIONS(2064), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym__str_single_quotes] = ACTIONS(2064), - [sym__str_back_ticks] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), - [sym__entry_separator] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(1830), - [anon_sym_alias] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_let_DASHenv] = ACTIONS(1830), - [anon_sym_mut] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [aux_sym_cmd_identifier_token1] = ACTIONS(1830), - [aux_sym_cmd_identifier_token2] = ACTIONS(1830), - [aux_sym_cmd_identifier_token3] = ACTIONS(1830), - [aux_sym_cmd_identifier_token4] = ACTIONS(1830), - [aux_sym_cmd_identifier_token5] = ACTIONS(1830), - [aux_sym_cmd_identifier_token6] = ACTIONS(1830), - [aux_sym_cmd_identifier_token7] = ACTIONS(1830), - [aux_sym_cmd_identifier_token8] = ACTIONS(1830), - [aux_sym_cmd_identifier_token9] = ACTIONS(1830), - [aux_sym_cmd_identifier_token10] = ACTIONS(1830), - [aux_sym_cmd_identifier_token11] = ACTIONS(1830), - [aux_sym_cmd_identifier_token12] = ACTIONS(1830), - [aux_sym_cmd_identifier_token13] = ACTIONS(1830), - [aux_sym_cmd_identifier_token14] = ACTIONS(1830), - [aux_sym_cmd_identifier_token15] = ACTIONS(1830), - [aux_sym_cmd_identifier_token16] = ACTIONS(1830), - [aux_sym_cmd_identifier_token17] = ACTIONS(1830), - [aux_sym_cmd_identifier_token18] = ACTIONS(1830), - [aux_sym_cmd_identifier_token19] = ACTIONS(1830), - [aux_sym_cmd_identifier_token20] = ACTIONS(1830), - [aux_sym_cmd_identifier_token21] = ACTIONS(1830), - [aux_sym_cmd_identifier_token22] = ACTIONS(1830), - [aux_sym_cmd_identifier_token23] = ACTIONS(1830), - [aux_sym_cmd_identifier_token24] = ACTIONS(1830), - [aux_sym_cmd_identifier_token25] = ACTIONS(1830), - [aux_sym_cmd_identifier_token26] = ACTIONS(1830), - [aux_sym_cmd_identifier_token27] = ACTIONS(1830), - [aux_sym_cmd_identifier_token28] = ACTIONS(1830), - [aux_sym_cmd_identifier_token29] = ACTIONS(1830), - [aux_sym_cmd_identifier_token30] = ACTIONS(1830), - [aux_sym_cmd_identifier_token31] = ACTIONS(1830), - [aux_sym_cmd_identifier_token32] = ACTIONS(1830), - [aux_sym_cmd_identifier_token33] = ACTIONS(1830), - [aux_sym_cmd_identifier_token34] = ACTIONS(1830), - [aux_sym_cmd_identifier_token35] = ACTIONS(1830), - [aux_sym_cmd_identifier_token36] = ACTIONS(1830), - [aux_sym_cmd_identifier_token37] = ACTIONS(1830), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1830), - [aux_sym_cmd_identifier_token40] = ACTIONS(1830), - [anon_sym_def] = ACTIONS(1830), - [anon_sym_export_DASHenv] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_error] = ACTIONS(1830), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_in2] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_make] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_catch] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_source] = ACTIONS(1830), - [anon_sym_source_DASHenv] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_hide] = ACTIONS(1830), - [anon_sym_hide_DASHenv] = ACTIONS(1830), - [anon_sym_overlay] = ACTIONS(1830), - [anon_sym_as] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1830), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1830), - [aux_sym__val_number_decimal_token4] = ACTIONS(1830), - [aux_sym__val_number_token1] = ACTIONS(1830), - [aux_sym__val_number_token2] = ACTIONS(1830), - [aux_sym__val_number_token3] = ACTIONS(1830), - [aux_sym__val_number_token4] = ACTIONS(1830), - [aux_sym__val_number_token5] = ACTIONS(1830), - [aux_sym__val_number_token6] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1830), - [sym__entry_separator] = ACTIONS(1838), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1838), - }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_alias] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_let_DASHenv] = ACTIONS(2254), - [anon_sym_mut] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [aux_sym_cmd_identifier_token1] = ACTIONS(2254), - [aux_sym_cmd_identifier_token2] = ACTIONS(2254), - [aux_sym_cmd_identifier_token3] = ACTIONS(2254), - [aux_sym_cmd_identifier_token4] = ACTIONS(2254), - [aux_sym_cmd_identifier_token5] = ACTIONS(2254), - [aux_sym_cmd_identifier_token6] = ACTIONS(2254), - [aux_sym_cmd_identifier_token7] = ACTIONS(2254), - [aux_sym_cmd_identifier_token8] = ACTIONS(2254), - [aux_sym_cmd_identifier_token9] = ACTIONS(2254), - [aux_sym_cmd_identifier_token10] = ACTIONS(2254), - [aux_sym_cmd_identifier_token11] = ACTIONS(2254), - [aux_sym_cmd_identifier_token12] = ACTIONS(2254), - [aux_sym_cmd_identifier_token13] = ACTIONS(2254), - [aux_sym_cmd_identifier_token14] = ACTIONS(2254), - [aux_sym_cmd_identifier_token15] = ACTIONS(2254), - [aux_sym_cmd_identifier_token16] = ACTIONS(2254), - [aux_sym_cmd_identifier_token17] = ACTIONS(2254), - [aux_sym_cmd_identifier_token18] = ACTIONS(2254), - [aux_sym_cmd_identifier_token19] = ACTIONS(2254), - [aux_sym_cmd_identifier_token20] = ACTIONS(2254), - [aux_sym_cmd_identifier_token21] = ACTIONS(2254), - [aux_sym_cmd_identifier_token22] = ACTIONS(2254), - [aux_sym_cmd_identifier_token23] = ACTIONS(2254), - [aux_sym_cmd_identifier_token24] = ACTIONS(2254), - [aux_sym_cmd_identifier_token25] = ACTIONS(2254), - [aux_sym_cmd_identifier_token26] = ACTIONS(2254), - [aux_sym_cmd_identifier_token27] = ACTIONS(2254), - [aux_sym_cmd_identifier_token28] = ACTIONS(2254), - [aux_sym_cmd_identifier_token29] = ACTIONS(2254), - [aux_sym_cmd_identifier_token30] = ACTIONS(2254), - [aux_sym_cmd_identifier_token31] = ACTIONS(2254), - [aux_sym_cmd_identifier_token32] = ACTIONS(2254), - [aux_sym_cmd_identifier_token33] = ACTIONS(2254), - [aux_sym_cmd_identifier_token34] = ACTIONS(2254), - [aux_sym_cmd_identifier_token35] = ACTIONS(2254), - [aux_sym_cmd_identifier_token36] = ACTIONS(2254), - [aux_sym_cmd_identifier_token37] = ACTIONS(2254), - [aux_sym_cmd_identifier_token38] = ACTIONS(2254), - [aux_sym_cmd_identifier_token39] = ACTIONS(2254), - [aux_sym_cmd_identifier_token40] = ACTIONS(2254), - [anon_sym_def] = ACTIONS(2254), - [anon_sym_export_DASHenv] = ACTIONS(2254), - [anon_sym_extern] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_use] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_error] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_loop] = ACTIONS(2254), - [anon_sym_make] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_match] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_catch] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_source] = ACTIONS(2254), - [anon_sym_source_DASHenv] = ACTIONS(2254), - [anon_sym_register] = ACTIONS(2254), - [anon_sym_hide] = ACTIONS(2254), - [anon_sym_hide_DASHenv] = ACTIONS(2254), - [anon_sym_overlay] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2256), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2254), - [sym__str_single_quotes] = ACTIONS(2254), - [sym__str_back_ticks] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2254), - [sym__entry_separator] = ACTIONS(2258), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2258), - }, - [550] = { - [sym__expr_parenthesized_immediate] = STATE(8113), - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_alias] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_let_DASHenv] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [aux_sym_cmd_identifier_token1] = ACTIONS(2197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2197), - [aux_sym_cmd_identifier_token3] = ACTIONS(2197), - [aux_sym_cmd_identifier_token4] = ACTIONS(2197), - [aux_sym_cmd_identifier_token5] = ACTIONS(2197), - [aux_sym_cmd_identifier_token6] = ACTIONS(2197), - [aux_sym_cmd_identifier_token7] = ACTIONS(2197), - [aux_sym_cmd_identifier_token8] = ACTIONS(2197), - [aux_sym_cmd_identifier_token9] = ACTIONS(2197), - [aux_sym_cmd_identifier_token10] = ACTIONS(2197), - [aux_sym_cmd_identifier_token11] = ACTIONS(2197), - [aux_sym_cmd_identifier_token12] = ACTIONS(2197), - [aux_sym_cmd_identifier_token13] = ACTIONS(2197), - [aux_sym_cmd_identifier_token14] = ACTIONS(2197), - [aux_sym_cmd_identifier_token15] = ACTIONS(2197), - [aux_sym_cmd_identifier_token16] = ACTIONS(2197), - [aux_sym_cmd_identifier_token17] = ACTIONS(2197), - [aux_sym_cmd_identifier_token18] = ACTIONS(2197), - [aux_sym_cmd_identifier_token19] = ACTIONS(2197), - [aux_sym_cmd_identifier_token20] = ACTIONS(2197), - [aux_sym_cmd_identifier_token21] = ACTIONS(2197), - [aux_sym_cmd_identifier_token22] = ACTIONS(2197), - [aux_sym_cmd_identifier_token23] = ACTIONS(2197), - [aux_sym_cmd_identifier_token24] = ACTIONS(2197), - [aux_sym_cmd_identifier_token25] = ACTIONS(2197), - [aux_sym_cmd_identifier_token26] = ACTIONS(2197), - [aux_sym_cmd_identifier_token27] = ACTIONS(2197), - [aux_sym_cmd_identifier_token28] = ACTIONS(2197), - [aux_sym_cmd_identifier_token29] = ACTIONS(2197), - [aux_sym_cmd_identifier_token30] = ACTIONS(2197), - [aux_sym_cmd_identifier_token31] = ACTIONS(2197), - [aux_sym_cmd_identifier_token32] = ACTIONS(2197), - [aux_sym_cmd_identifier_token33] = ACTIONS(2197), - [aux_sym_cmd_identifier_token34] = ACTIONS(2197), - [aux_sym_cmd_identifier_token35] = ACTIONS(2197), - [aux_sym_cmd_identifier_token36] = ACTIONS(2197), - [aux_sym_cmd_identifier_token37] = ACTIONS(2197), - [aux_sym_cmd_identifier_token38] = ACTIONS(2197), - [aux_sym_cmd_identifier_token39] = ACTIONS(2197), - [aux_sym_cmd_identifier_token40] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_export_DASHenv] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2197), - [anon_sym_error] = ACTIONS(2197), - [anon_sym_DASH2] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_in2] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_make] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_source] = ACTIONS(2197), - [anon_sym_source_DASHenv] = ACTIONS(2197), - [anon_sym_register] = ACTIONS(2197), - [anon_sym_hide] = ACTIONS(2197), - [anon_sym_hide_DASHenv] = ACTIONS(2197), - [anon_sym_overlay] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), - [aux_sym__val_number_decimal_token1] = ACTIONS(2197), - [aux_sym__val_number_decimal_token2] = ACTIONS(2197), - [aux_sym__val_number_decimal_token3] = ACTIONS(2197), - [aux_sym__val_number_decimal_token4] = ACTIONS(2197), - [aux_sym__val_number_token1] = ACTIONS(2197), - [aux_sym__val_number_token2] = ACTIONS(2197), - [aux_sym__val_number_token3] = ACTIONS(2197), - [aux_sym__val_number_token4] = ACTIONS(2197), - [aux_sym__val_number_token5] = ACTIONS(2197), - [aux_sym__val_number_token6] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [sym__str_single_quotes] = ACTIONS(2197), - [sym__str_back_ticks] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), - [sym__entry_separator] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2199), - }, - [551] = { - [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2088), - [aux_sym_cmd_identifier_token3] = ACTIONS(2088), - [aux_sym_cmd_identifier_token4] = ACTIONS(2088), - [aux_sym_cmd_identifier_token5] = ACTIONS(2088), - [aux_sym_cmd_identifier_token6] = ACTIONS(2088), - [aux_sym_cmd_identifier_token7] = ACTIONS(2088), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2088), - [aux_sym_cmd_identifier_token11] = ACTIONS(2088), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2088), - [aux_sym_cmd_identifier_token17] = ACTIONS(2088), - [aux_sym_cmd_identifier_token18] = ACTIONS(2088), - [aux_sym_cmd_identifier_token19] = ACTIONS(2088), - [aux_sym_cmd_identifier_token20] = ACTIONS(2088), - [aux_sym_cmd_identifier_token21] = ACTIONS(2088), - [aux_sym_cmd_identifier_token22] = ACTIONS(2088), - [aux_sym_cmd_identifier_token23] = ACTIONS(2088), - [aux_sym_cmd_identifier_token24] = ACTIONS(2088), - [aux_sym_cmd_identifier_token25] = ACTIONS(2088), - [aux_sym_cmd_identifier_token26] = ACTIONS(2088), - [aux_sym_cmd_identifier_token27] = ACTIONS(2088), - [aux_sym_cmd_identifier_token28] = ACTIONS(2088), - [aux_sym_cmd_identifier_token29] = ACTIONS(2088), - [aux_sym_cmd_identifier_token30] = ACTIONS(2088), - [aux_sym_cmd_identifier_token31] = ACTIONS(2088), - [aux_sym_cmd_identifier_token32] = ACTIONS(2088), - [aux_sym_cmd_identifier_token33] = ACTIONS(2088), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2088), - [aux_sym_cmd_identifier_token36] = ACTIONS(2088), - [aux_sym_cmd_identifier_token37] = ACTIONS(2088), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2088), - [aux_sym_cmd_identifier_token40] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), - [anon_sym_DOT_DOT2] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2088), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2088), - [aux_sym__val_number_token1] = ACTIONS(2088), - [aux_sym__val_number_token2] = ACTIONS(2088), - [aux_sym__val_number_token3] = ACTIONS(2088), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym__str_single_quotes] = ACTIONS(2088), - [sym__str_back_ticks] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2088), - }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(988), - }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_alias] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_let_DASHenv] = ACTIONS(2072), - [anon_sym_mut] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [aux_sym_cmd_identifier_token1] = ACTIONS(2072), - [aux_sym_cmd_identifier_token2] = ACTIONS(2078), - [aux_sym_cmd_identifier_token3] = ACTIONS(2078), - [aux_sym_cmd_identifier_token4] = ACTIONS(2078), - [aux_sym_cmd_identifier_token5] = ACTIONS(2078), - [aux_sym_cmd_identifier_token6] = ACTIONS(2078), - [aux_sym_cmd_identifier_token7] = ACTIONS(2078), - [aux_sym_cmd_identifier_token8] = ACTIONS(2072), - [aux_sym_cmd_identifier_token9] = ACTIONS(2072), - [aux_sym_cmd_identifier_token10] = ACTIONS(2078), - [aux_sym_cmd_identifier_token11] = ACTIONS(2078), - [aux_sym_cmd_identifier_token12] = ACTIONS(2072), - [aux_sym_cmd_identifier_token13] = ACTIONS(2072), - [aux_sym_cmd_identifier_token14] = ACTIONS(2072), - [aux_sym_cmd_identifier_token15] = ACTIONS(2072), - [aux_sym_cmd_identifier_token16] = ACTIONS(2078), - [aux_sym_cmd_identifier_token17] = ACTIONS(2078), - [aux_sym_cmd_identifier_token18] = ACTIONS(2078), - [aux_sym_cmd_identifier_token19] = ACTIONS(2078), - [aux_sym_cmd_identifier_token20] = ACTIONS(2078), - [aux_sym_cmd_identifier_token21] = ACTIONS(2078), - [aux_sym_cmd_identifier_token22] = ACTIONS(2078), - [aux_sym_cmd_identifier_token23] = ACTIONS(2078), - [aux_sym_cmd_identifier_token24] = ACTIONS(2078), - [aux_sym_cmd_identifier_token25] = ACTIONS(2078), - [aux_sym_cmd_identifier_token26] = ACTIONS(2078), - [aux_sym_cmd_identifier_token27] = ACTIONS(2078), - [aux_sym_cmd_identifier_token28] = ACTIONS(2078), - [aux_sym_cmd_identifier_token29] = ACTIONS(2078), - [aux_sym_cmd_identifier_token30] = ACTIONS(2078), - [aux_sym_cmd_identifier_token31] = ACTIONS(2078), - [aux_sym_cmd_identifier_token32] = ACTIONS(2078), - [aux_sym_cmd_identifier_token33] = ACTIONS(2078), - [aux_sym_cmd_identifier_token34] = ACTIONS(2072), - [aux_sym_cmd_identifier_token35] = ACTIONS(2078), - [aux_sym_cmd_identifier_token36] = ACTIONS(2078), - [aux_sym_cmd_identifier_token37] = ACTIONS(2078), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2078), - [aux_sym_cmd_identifier_token40] = ACTIONS(2078), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_export_DASHenv] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2078), - [anon_sym_error] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_in2] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_make] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_catch] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_source] = ACTIONS(2072), - [anon_sym_source_DASHenv] = ACTIONS(2072), - [anon_sym_register] = ACTIONS(2072), - [anon_sym_hide] = ACTIONS(2072), - [anon_sym_hide_DASHenv] = ACTIONS(2072), - [anon_sym_overlay] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), - [anon_sym_DOT_DOT2] = ACTIONS(2262), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2264), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2264), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2078), - [aux_sym__val_number_decimal_token3] = ACTIONS(2078), - [aux_sym__val_number_decimal_token4] = ACTIONS(2078), - [aux_sym__val_number_token1] = ACTIONS(2078), - [aux_sym__val_number_token2] = ACTIONS(2078), - [aux_sym__val_number_token3] = ACTIONS(2078), - [aux_sym__val_number_token4] = ACTIONS(2072), - [aux_sym__val_number_token5] = ACTIONS(2072), - [aux_sym__val_number_token6] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2078), - [sym__str_single_quotes] = ACTIONS(2078), - [sym__str_back_ticks] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2078), - }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_alias] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_let_DASHenv] = ACTIONS(2266), - [anon_sym_mut] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [aux_sym_cmd_identifier_token1] = ACTIONS(2266), - [aux_sym_cmd_identifier_token2] = ACTIONS(2266), - [aux_sym_cmd_identifier_token3] = ACTIONS(2266), - [aux_sym_cmd_identifier_token4] = ACTIONS(2266), - [aux_sym_cmd_identifier_token5] = ACTIONS(2266), - [aux_sym_cmd_identifier_token6] = ACTIONS(2266), - [aux_sym_cmd_identifier_token7] = ACTIONS(2266), - [aux_sym_cmd_identifier_token8] = ACTIONS(2266), - [aux_sym_cmd_identifier_token9] = ACTIONS(2266), - [aux_sym_cmd_identifier_token10] = ACTIONS(2266), - [aux_sym_cmd_identifier_token11] = ACTIONS(2266), - [aux_sym_cmd_identifier_token12] = ACTIONS(2266), - [aux_sym_cmd_identifier_token13] = ACTIONS(2266), - [aux_sym_cmd_identifier_token14] = ACTIONS(2266), - [aux_sym_cmd_identifier_token15] = ACTIONS(2266), - [aux_sym_cmd_identifier_token16] = ACTIONS(2266), - [aux_sym_cmd_identifier_token17] = ACTIONS(2266), - [aux_sym_cmd_identifier_token18] = ACTIONS(2266), - [aux_sym_cmd_identifier_token19] = ACTIONS(2266), - [aux_sym_cmd_identifier_token20] = ACTIONS(2266), - [aux_sym_cmd_identifier_token21] = ACTIONS(2266), - [aux_sym_cmd_identifier_token22] = ACTIONS(2266), - [aux_sym_cmd_identifier_token23] = ACTIONS(2266), - [aux_sym_cmd_identifier_token24] = ACTIONS(2266), - [aux_sym_cmd_identifier_token25] = ACTIONS(2266), - [aux_sym_cmd_identifier_token26] = ACTIONS(2266), - [aux_sym_cmd_identifier_token27] = ACTIONS(2266), - [aux_sym_cmd_identifier_token28] = ACTIONS(2266), - [aux_sym_cmd_identifier_token29] = ACTIONS(2266), - [aux_sym_cmd_identifier_token30] = ACTIONS(2266), - [aux_sym_cmd_identifier_token31] = ACTIONS(2266), - [aux_sym_cmd_identifier_token32] = ACTIONS(2266), - [aux_sym_cmd_identifier_token33] = ACTIONS(2266), - [aux_sym_cmd_identifier_token34] = ACTIONS(2266), - [aux_sym_cmd_identifier_token35] = ACTIONS(2266), - [aux_sym_cmd_identifier_token36] = ACTIONS(2266), - [aux_sym_cmd_identifier_token37] = ACTIONS(2266), - [aux_sym_cmd_identifier_token38] = ACTIONS(2266), - [aux_sym_cmd_identifier_token39] = ACTIONS(2266), - [aux_sym_cmd_identifier_token40] = ACTIONS(2266), - [anon_sym_def] = ACTIONS(2266), - [anon_sym_export_DASHenv] = ACTIONS(2266), - [anon_sym_extern] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_use] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_DOLLAR] = ACTIONS(2266), - [anon_sym_error] = ACTIONS(2266), - [anon_sym_DASH2] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_in2] = ACTIONS(2266), - [anon_sym_loop] = ACTIONS(2266), - [anon_sym_make] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_else] = ACTIONS(2266), - [anon_sym_match] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_catch] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_source] = ACTIONS(2266), - [anon_sym_source_DASHenv] = ACTIONS(2266), - [anon_sym_register] = ACTIONS(2266), - [anon_sym_hide] = ACTIONS(2266), - [anon_sym_hide_DASHenv] = ACTIONS(2266), - [anon_sym_overlay] = ACTIONS(2266), - [anon_sym_as] = ACTIONS(2266), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2266), - [aux_sym__val_number_decimal_token1] = ACTIONS(2266), - [aux_sym__val_number_decimal_token2] = ACTIONS(2266), - [aux_sym__val_number_decimal_token3] = ACTIONS(2266), - [aux_sym__val_number_decimal_token4] = ACTIONS(2266), - [aux_sym__val_number_token1] = ACTIONS(2266), - [aux_sym__val_number_token2] = ACTIONS(2266), - [aux_sym__val_number_token3] = ACTIONS(2266), - [aux_sym__val_number_token4] = ACTIONS(2266), - [aux_sym__val_number_token5] = ACTIONS(2266), - [aux_sym__val_number_token6] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2266), - [sym__str_single_quotes] = ACTIONS(2266), - [sym__str_back_ticks] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2266), - [sym__entry_separator] = ACTIONS(2270), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_alias] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_let_DASHenv] = ACTIONS(2272), - [anon_sym_mut] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [aux_sym_cmd_identifier_token1] = ACTIONS(2272), - [aux_sym_cmd_identifier_token2] = ACTIONS(2272), - [aux_sym_cmd_identifier_token3] = ACTIONS(2272), - [aux_sym_cmd_identifier_token4] = ACTIONS(2272), - [aux_sym_cmd_identifier_token5] = ACTIONS(2272), - [aux_sym_cmd_identifier_token6] = ACTIONS(2272), - [aux_sym_cmd_identifier_token7] = ACTIONS(2272), - [aux_sym_cmd_identifier_token8] = ACTIONS(2272), - [aux_sym_cmd_identifier_token9] = ACTIONS(2272), - [aux_sym_cmd_identifier_token10] = ACTIONS(2272), - [aux_sym_cmd_identifier_token11] = ACTIONS(2272), - [aux_sym_cmd_identifier_token12] = ACTIONS(2272), - [aux_sym_cmd_identifier_token13] = ACTIONS(2272), - [aux_sym_cmd_identifier_token14] = ACTIONS(2272), - [aux_sym_cmd_identifier_token15] = ACTIONS(2272), - [aux_sym_cmd_identifier_token16] = ACTIONS(2272), - [aux_sym_cmd_identifier_token17] = ACTIONS(2272), - [aux_sym_cmd_identifier_token18] = ACTIONS(2272), - [aux_sym_cmd_identifier_token19] = ACTIONS(2272), - [aux_sym_cmd_identifier_token20] = ACTIONS(2272), - [aux_sym_cmd_identifier_token21] = ACTIONS(2272), - [aux_sym_cmd_identifier_token22] = ACTIONS(2272), - [aux_sym_cmd_identifier_token23] = ACTIONS(2272), - [aux_sym_cmd_identifier_token24] = ACTIONS(2272), - [aux_sym_cmd_identifier_token25] = ACTIONS(2272), - [aux_sym_cmd_identifier_token26] = ACTIONS(2272), - [aux_sym_cmd_identifier_token27] = ACTIONS(2272), - [aux_sym_cmd_identifier_token28] = ACTIONS(2272), - [aux_sym_cmd_identifier_token29] = ACTIONS(2272), - [aux_sym_cmd_identifier_token30] = ACTIONS(2272), - [aux_sym_cmd_identifier_token31] = ACTIONS(2272), - [aux_sym_cmd_identifier_token32] = ACTIONS(2272), - [aux_sym_cmd_identifier_token33] = ACTIONS(2272), - [aux_sym_cmd_identifier_token34] = ACTIONS(2272), - [aux_sym_cmd_identifier_token35] = ACTIONS(2272), - [aux_sym_cmd_identifier_token36] = ACTIONS(2272), - [aux_sym_cmd_identifier_token37] = ACTIONS(2272), - [aux_sym_cmd_identifier_token38] = ACTIONS(2272), - [aux_sym_cmd_identifier_token39] = ACTIONS(2272), - [aux_sym_cmd_identifier_token40] = ACTIONS(2272), - [anon_sym_def] = ACTIONS(2272), - [anon_sym_export_DASHenv] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_error] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_make] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_catch] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_source] = ACTIONS(2272), - [anon_sym_source_DASHenv] = ACTIONS(2272), - [anon_sym_register] = ACTIONS(2272), - [anon_sym_hide] = ACTIONS(2272), - [anon_sym_hide_DASHenv] = ACTIONS(2272), - [anon_sym_overlay] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2272), - [sym__str_single_quotes] = ACTIONS(2272), - [sym__str_back_ticks] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2272), - [sym__entry_separator] = ACTIONS(2274), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), + [sym__entry_separator] = ACTIONS(1000), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2239), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2274), - }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_alias] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_let_DASHenv] = ACTIONS(2082), - [anon_sym_mut] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [aux_sym_cmd_identifier_token1] = ACTIONS(2082), - [aux_sym_cmd_identifier_token2] = ACTIONS(2084), - [aux_sym_cmd_identifier_token3] = ACTIONS(2084), - [aux_sym_cmd_identifier_token4] = ACTIONS(2084), - [aux_sym_cmd_identifier_token5] = ACTIONS(2084), - [aux_sym_cmd_identifier_token6] = ACTIONS(2084), - [aux_sym_cmd_identifier_token7] = ACTIONS(2084), - [aux_sym_cmd_identifier_token8] = ACTIONS(2082), - [aux_sym_cmd_identifier_token9] = ACTIONS(2082), - [aux_sym_cmd_identifier_token10] = ACTIONS(2084), - [aux_sym_cmd_identifier_token11] = ACTIONS(2084), - [aux_sym_cmd_identifier_token12] = ACTIONS(2082), - [aux_sym_cmd_identifier_token13] = ACTIONS(2082), - [aux_sym_cmd_identifier_token14] = ACTIONS(2082), - [aux_sym_cmd_identifier_token15] = ACTIONS(2082), - [aux_sym_cmd_identifier_token16] = ACTIONS(2084), - [aux_sym_cmd_identifier_token17] = ACTIONS(2084), - [aux_sym_cmd_identifier_token18] = ACTIONS(2084), - [aux_sym_cmd_identifier_token19] = ACTIONS(2084), - [aux_sym_cmd_identifier_token20] = ACTIONS(2084), - [aux_sym_cmd_identifier_token21] = ACTIONS(2084), - [aux_sym_cmd_identifier_token22] = ACTIONS(2084), - [aux_sym_cmd_identifier_token23] = ACTIONS(2084), - [aux_sym_cmd_identifier_token24] = ACTIONS(2084), - [aux_sym_cmd_identifier_token25] = ACTIONS(2084), - [aux_sym_cmd_identifier_token26] = ACTIONS(2084), - [aux_sym_cmd_identifier_token27] = ACTIONS(2084), - [aux_sym_cmd_identifier_token28] = ACTIONS(2084), - [aux_sym_cmd_identifier_token29] = ACTIONS(2084), - [aux_sym_cmd_identifier_token30] = ACTIONS(2084), - [aux_sym_cmd_identifier_token31] = ACTIONS(2084), - [aux_sym_cmd_identifier_token32] = ACTIONS(2084), - [aux_sym_cmd_identifier_token33] = ACTIONS(2084), - [aux_sym_cmd_identifier_token34] = ACTIONS(2082), - [aux_sym_cmd_identifier_token35] = ACTIONS(2084), - [aux_sym_cmd_identifier_token36] = ACTIONS(2084), - [aux_sym_cmd_identifier_token37] = ACTIONS(2084), - [aux_sym_cmd_identifier_token38] = ACTIONS(2082), - [aux_sym_cmd_identifier_token39] = ACTIONS(2084), - [aux_sym_cmd_identifier_token40] = ACTIONS(2084), - [anon_sym_def] = ACTIONS(2082), - [anon_sym_export_DASHenv] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_error] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_in2] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_make] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_source] = ACTIONS(2082), - [anon_sym_source_DASHenv] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_hide] = ACTIONS(2082), - [anon_sym_hide_DASHenv] = ACTIONS(2082), - [anon_sym_overlay] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), - [anon_sym_DOT_DOT2] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2082), - [aux_sym__val_number_token5] = ACTIONS(2082), - [aux_sym__val_number_token6] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), + [sym_raw_string_begin] = ACTIONS(1000), }, - [557] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_alias] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_let_DASHenv] = ACTIONS(2276), - [anon_sym_mut] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [aux_sym_cmd_identifier_token1] = ACTIONS(2276), - [aux_sym_cmd_identifier_token2] = ACTIONS(2276), - [aux_sym_cmd_identifier_token3] = ACTIONS(2276), - [aux_sym_cmd_identifier_token4] = ACTIONS(2276), - [aux_sym_cmd_identifier_token5] = ACTIONS(2276), - [aux_sym_cmd_identifier_token6] = ACTIONS(2276), - [aux_sym_cmd_identifier_token7] = ACTIONS(2276), - [aux_sym_cmd_identifier_token8] = ACTIONS(2276), - [aux_sym_cmd_identifier_token9] = ACTIONS(2276), - [aux_sym_cmd_identifier_token10] = ACTIONS(2276), - [aux_sym_cmd_identifier_token11] = ACTIONS(2276), - [aux_sym_cmd_identifier_token12] = ACTIONS(2276), - [aux_sym_cmd_identifier_token13] = ACTIONS(2276), - [aux_sym_cmd_identifier_token14] = ACTIONS(2276), - [aux_sym_cmd_identifier_token15] = ACTIONS(2276), - [aux_sym_cmd_identifier_token16] = ACTIONS(2276), - [aux_sym_cmd_identifier_token17] = ACTIONS(2276), - [aux_sym_cmd_identifier_token18] = ACTIONS(2276), - [aux_sym_cmd_identifier_token19] = ACTIONS(2276), - [aux_sym_cmd_identifier_token20] = ACTIONS(2276), - [aux_sym_cmd_identifier_token21] = ACTIONS(2276), - [aux_sym_cmd_identifier_token22] = ACTIONS(2276), - [aux_sym_cmd_identifier_token23] = ACTIONS(2276), - [aux_sym_cmd_identifier_token24] = ACTIONS(2276), - [aux_sym_cmd_identifier_token25] = ACTIONS(2276), - [aux_sym_cmd_identifier_token26] = ACTIONS(2276), - [aux_sym_cmd_identifier_token27] = ACTIONS(2276), - [aux_sym_cmd_identifier_token28] = ACTIONS(2276), - [aux_sym_cmd_identifier_token29] = ACTIONS(2276), - [aux_sym_cmd_identifier_token30] = ACTIONS(2276), - [aux_sym_cmd_identifier_token31] = ACTIONS(2276), - [aux_sym_cmd_identifier_token32] = ACTIONS(2276), - [aux_sym_cmd_identifier_token33] = ACTIONS(2276), - [aux_sym_cmd_identifier_token34] = ACTIONS(2276), - [aux_sym_cmd_identifier_token35] = ACTIONS(2276), - [aux_sym_cmd_identifier_token36] = ACTIONS(2276), - [aux_sym_cmd_identifier_token37] = ACTIONS(2276), - [aux_sym_cmd_identifier_token38] = ACTIONS(2276), - [aux_sym_cmd_identifier_token39] = ACTIONS(2276), - [aux_sym_cmd_identifier_token40] = ACTIONS(2276), - [anon_sym_def] = ACTIONS(2276), - [anon_sym_export_DASHenv] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2276), - [anon_sym_error] = ACTIONS(2276), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_in2] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_make] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_source] = ACTIONS(2276), - [anon_sym_source_DASHenv] = ACTIONS(2276), - [anon_sym_register] = ACTIONS(2276), - [anon_sym_hide] = ACTIONS(2276), - [anon_sym_hide_DASHenv] = ACTIONS(2276), - [anon_sym_overlay] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2276), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2276), - [aux_sym__val_number_decimal_token1] = ACTIONS(2276), - [aux_sym__val_number_decimal_token2] = ACTIONS(2276), - [aux_sym__val_number_decimal_token3] = ACTIONS(2276), - [aux_sym__val_number_decimal_token4] = ACTIONS(2276), - [aux_sym__val_number_token1] = ACTIONS(2276), - [aux_sym__val_number_token2] = ACTIONS(2276), - [aux_sym__val_number_token3] = ACTIONS(2276), - [aux_sym__val_number_token4] = ACTIONS(2276), - [aux_sym__val_number_token5] = ACTIONS(2276), - [aux_sym__val_number_token6] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym__str_single_quotes] = ACTIONS(2276), - [sym__str_back_ticks] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2276), - [sym__entry_separator] = ACTIONS(2278), + [528] = { + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_alias] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_let_DASHenv] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [aux_sym_cmd_identifier_token1] = ACTIONS(2241), + [aux_sym_cmd_identifier_token2] = ACTIONS(2241), + [aux_sym_cmd_identifier_token3] = ACTIONS(2241), + [aux_sym_cmd_identifier_token4] = ACTIONS(2241), + [aux_sym_cmd_identifier_token5] = ACTIONS(2241), + [aux_sym_cmd_identifier_token6] = ACTIONS(2241), + [aux_sym_cmd_identifier_token7] = ACTIONS(2241), + [aux_sym_cmd_identifier_token8] = ACTIONS(2241), + [aux_sym_cmd_identifier_token9] = ACTIONS(2241), + [aux_sym_cmd_identifier_token10] = ACTIONS(2241), + [aux_sym_cmd_identifier_token11] = ACTIONS(2241), + [aux_sym_cmd_identifier_token12] = ACTIONS(2241), + [aux_sym_cmd_identifier_token13] = ACTIONS(2241), + [aux_sym_cmd_identifier_token14] = ACTIONS(2241), + [aux_sym_cmd_identifier_token15] = ACTIONS(2241), + [aux_sym_cmd_identifier_token16] = ACTIONS(2241), + [aux_sym_cmd_identifier_token17] = ACTIONS(2241), + [aux_sym_cmd_identifier_token18] = ACTIONS(2241), + [aux_sym_cmd_identifier_token19] = ACTIONS(2241), + [aux_sym_cmd_identifier_token20] = ACTIONS(2241), + [aux_sym_cmd_identifier_token21] = ACTIONS(2241), + [aux_sym_cmd_identifier_token22] = ACTIONS(2241), + [aux_sym_cmd_identifier_token23] = ACTIONS(2241), + [aux_sym_cmd_identifier_token24] = ACTIONS(2241), + [aux_sym_cmd_identifier_token25] = ACTIONS(2241), + [aux_sym_cmd_identifier_token26] = ACTIONS(2241), + [aux_sym_cmd_identifier_token27] = ACTIONS(2241), + [aux_sym_cmd_identifier_token28] = ACTIONS(2241), + [aux_sym_cmd_identifier_token29] = ACTIONS(2241), + [aux_sym_cmd_identifier_token30] = ACTIONS(2241), + [aux_sym_cmd_identifier_token31] = ACTIONS(2241), + [aux_sym_cmd_identifier_token32] = ACTIONS(2241), + [aux_sym_cmd_identifier_token33] = ACTIONS(2241), + [aux_sym_cmd_identifier_token34] = ACTIONS(2241), + [aux_sym_cmd_identifier_token35] = ACTIONS(2241), + [aux_sym_cmd_identifier_token36] = ACTIONS(2241), + [aux_sym_cmd_identifier_token37] = ACTIONS(2241), + [aux_sym_cmd_identifier_token38] = ACTIONS(2241), + [aux_sym_cmd_identifier_token39] = ACTIONS(2241), + [aux_sym_cmd_identifier_token40] = ACTIONS(2241), + [anon_sym_def] = ACTIONS(2241), + [anon_sym_export_DASHenv] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_error] = ACTIONS(2241), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_in2] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_make] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_catch] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_source] = ACTIONS(2241), + [anon_sym_source_DASHenv] = ACTIONS(2241), + [anon_sym_register] = ACTIONS(2241), + [anon_sym_hide] = ACTIONS(2241), + [anon_sym_hide_DASHenv] = ACTIONS(2241), + [anon_sym_overlay] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_LPAREN2] = ACTIONS(2243), + [anon_sym_PLUS2] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2241), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2241), + [aux_sym__val_number_decimal_token3] = ACTIONS(2241), + [aux_sym__val_number_decimal_token4] = ACTIONS(2241), + [aux_sym__val_number_token1] = ACTIONS(2241), + [aux_sym__val_number_token2] = ACTIONS(2241), + [aux_sym__val_number_token3] = ACTIONS(2241), + [aux_sym__val_number_token4] = ACTIONS(2241), + [aux_sym__val_number_token5] = ACTIONS(2241), + [aux_sym__val_number_token6] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [sym__str_single_quotes] = ACTIONS(2241), + [sym__str_back_ticks] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), + [sym__entry_separator] = ACTIONS(2245), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2247), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2278), + [sym_raw_string_begin] = ACTIONS(2245), }, - [558] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_alias] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_let_DASHenv] = ACTIONS(2280), - [anon_sym_mut] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [aux_sym_cmd_identifier_token1] = ACTIONS(2280), - [aux_sym_cmd_identifier_token2] = ACTIONS(2280), - [aux_sym_cmd_identifier_token3] = ACTIONS(2280), - [aux_sym_cmd_identifier_token4] = ACTIONS(2280), - [aux_sym_cmd_identifier_token5] = ACTIONS(2280), - [aux_sym_cmd_identifier_token6] = ACTIONS(2280), - [aux_sym_cmd_identifier_token7] = ACTIONS(2280), - [aux_sym_cmd_identifier_token8] = ACTIONS(2280), - [aux_sym_cmd_identifier_token9] = ACTIONS(2280), - [aux_sym_cmd_identifier_token10] = ACTIONS(2280), - [aux_sym_cmd_identifier_token11] = ACTIONS(2280), - [aux_sym_cmd_identifier_token12] = ACTIONS(2280), - [aux_sym_cmd_identifier_token13] = ACTIONS(2280), - [aux_sym_cmd_identifier_token14] = ACTIONS(2280), - [aux_sym_cmd_identifier_token15] = ACTIONS(2280), - [aux_sym_cmd_identifier_token16] = ACTIONS(2280), - [aux_sym_cmd_identifier_token17] = ACTIONS(2280), - [aux_sym_cmd_identifier_token18] = ACTIONS(2280), - [aux_sym_cmd_identifier_token19] = ACTIONS(2280), - [aux_sym_cmd_identifier_token20] = ACTIONS(2280), - [aux_sym_cmd_identifier_token21] = ACTIONS(2280), - [aux_sym_cmd_identifier_token22] = ACTIONS(2280), - [aux_sym_cmd_identifier_token23] = ACTIONS(2280), - [aux_sym_cmd_identifier_token24] = ACTIONS(2280), - [aux_sym_cmd_identifier_token25] = ACTIONS(2280), - [aux_sym_cmd_identifier_token26] = ACTIONS(2280), - [aux_sym_cmd_identifier_token27] = ACTIONS(2280), - [aux_sym_cmd_identifier_token28] = ACTIONS(2280), - [aux_sym_cmd_identifier_token29] = ACTIONS(2280), - [aux_sym_cmd_identifier_token30] = ACTIONS(2280), - [aux_sym_cmd_identifier_token31] = ACTIONS(2280), - [aux_sym_cmd_identifier_token32] = ACTIONS(2280), - [aux_sym_cmd_identifier_token33] = ACTIONS(2280), - [aux_sym_cmd_identifier_token34] = ACTIONS(2280), - [aux_sym_cmd_identifier_token35] = ACTIONS(2280), - [aux_sym_cmd_identifier_token36] = ACTIONS(2280), - [aux_sym_cmd_identifier_token37] = ACTIONS(2280), - [aux_sym_cmd_identifier_token38] = ACTIONS(2280), - [aux_sym_cmd_identifier_token39] = ACTIONS(2280), - [aux_sym_cmd_identifier_token40] = ACTIONS(2280), - [anon_sym_def] = ACTIONS(2280), - [anon_sym_export_DASHenv] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2280), - [anon_sym_error] = ACTIONS(2280), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_in2] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_make] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_catch] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_source] = ACTIONS(2280), - [anon_sym_source_DASHenv] = ACTIONS(2280), - [anon_sym_register] = ACTIONS(2280), - [anon_sym_hide] = ACTIONS(2280), - [anon_sym_hide_DASHenv] = ACTIONS(2280), - [anon_sym_overlay] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2280), - [aux_sym__val_number_decimal_token1] = ACTIONS(2280), - [aux_sym__val_number_decimal_token2] = ACTIONS(2280), - [aux_sym__val_number_decimal_token3] = ACTIONS(2280), - [aux_sym__val_number_decimal_token4] = ACTIONS(2280), - [aux_sym__val_number_token1] = ACTIONS(2280), - [aux_sym__val_number_token2] = ACTIONS(2280), - [aux_sym__val_number_token3] = ACTIONS(2280), - [aux_sym__val_number_token4] = ACTIONS(2280), - [aux_sym__val_number_token5] = ACTIONS(2280), - [aux_sym__val_number_token6] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym__str_single_quotes] = ACTIONS(2280), - [sym__str_back_ticks] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2280), - [sym__entry_separator] = ACTIONS(2282), + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_let_DASHenv] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [aux_sym_cmd_identifier_token1] = ACTIONS(2249), + [aux_sym_cmd_identifier_token2] = ACTIONS(2249), + [aux_sym_cmd_identifier_token3] = ACTIONS(2249), + [aux_sym_cmd_identifier_token4] = ACTIONS(2249), + [aux_sym_cmd_identifier_token5] = ACTIONS(2249), + [aux_sym_cmd_identifier_token6] = ACTIONS(2249), + [aux_sym_cmd_identifier_token7] = ACTIONS(2249), + [aux_sym_cmd_identifier_token8] = ACTIONS(2249), + [aux_sym_cmd_identifier_token9] = ACTIONS(2249), + [aux_sym_cmd_identifier_token10] = ACTIONS(2249), + [aux_sym_cmd_identifier_token11] = ACTIONS(2249), + [aux_sym_cmd_identifier_token12] = ACTIONS(2249), + [aux_sym_cmd_identifier_token13] = ACTIONS(2249), + [aux_sym_cmd_identifier_token14] = ACTIONS(2249), + [aux_sym_cmd_identifier_token15] = ACTIONS(2249), + [aux_sym_cmd_identifier_token16] = ACTIONS(2249), + [aux_sym_cmd_identifier_token17] = ACTIONS(2249), + [aux_sym_cmd_identifier_token18] = ACTIONS(2249), + [aux_sym_cmd_identifier_token19] = ACTIONS(2249), + [aux_sym_cmd_identifier_token20] = ACTIONS(2249), + [aux_sym_cmd_identifier_token21] = ACTIONS(2249), + [aux_sym_cmd_identifier_token22] = ACTIONS(2249), + [aux_sym_cmd_identifier_token23] = ACTIONS(2249), + [aux_sym_cmd_identifier_token24] = ACTIONS(2249), + [aux_sym_cmd_identifier_token25] = ACTIONS(2249), + [aux_sym_cmd_identifier_token26] = ACTIONS(2249), + [aux_sym_cmd_identifier_token27] = ACTIONS(2249), + [aux_sym_cmd_identifier_token28] = ACTIONS(2249), + [aux_sym_cmd_identifier_token29] = ACTIONS(2249), + [aux_sym_cmd_identifier_token30] = ACTIONS(2249), + [aux_sym_cmd_identifier_token31] = ACTIONS(2249), + [aux_sym_cmd_identifier_token32] = ACTIONS(2249), + [aux_sym_cmd_identifier_token33] = ACTIONS(2249), + [aux_sym_cmd_identifier_token34] = ACTIONS(2249), + [aux_sym_cmd_identifier_token35] = ACTIONS(2249), + [aux_sym_cmd_identifier_token36] = ACTIONS(2249), + [aux_sym_cmd_identifier_token37] = ACTIONS(2249), + [aux_sym_cmd_identifier_token38] = ACTIONS(2249), + [aux_sym_cmd_identifier_token39] = ACTIONS(2249), + [aux_sym_cmd_identifier_token40] = ACTIONS(2249), + [anon_sym_def] = ACTIONS(2249), + [anon_sym_export_DASHenv] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_error] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_make] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_source] = ACTIONS(2249), + [anon_sym_source_DASHenv] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_hide_DASHenv] = ACTIONS(2249), + [anon_sym_overlay] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2249), + [aux_sym__val_number_decimal_token1] = ACTIONS(2249), + [aux_sym__val_number_decimal_token2] = ACTIONS(2249), + [aux_sym__val_number_decimal_token3] = ACTIONS(2249), + [aux_sym__val_number_decimal_token4] = ACTIONS(2249), + [aux_sym__val_number_token1] = ACTIONS(2249), + [aux_sym__val_number_token2] = ACTIONS(2249), + [aux_sym__val_number_token3] = ACTIONS(2249), + [aux_sym__val_number_token4] = ACTIONS(2249), + [aux_sym__val_number_token5] = ACTIONS(2249), + [aux_sym__val_number_token6] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2249), + [sym__str_single_quotes] = ACTIONS(2249), + [sym__str_back_ticks] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2249), + [sym__entry_separator] = ACTIONS(2253), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2255), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2282), + [sym_raw_string_begin] = ACTIONS(2253), }, - [559] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_alias] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_let_DASHenv] = ACTIONS(2284), - [anon_sym_mut] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [aux_sym_cmd_identifier_token1] = ACTIONS(2284), - [aux_sym_cmd_identifier_token2] = ACTIONS(2284), - [aux_sym_cmd_identifier_token3] = ACTIONS(2284), - [aux_sym_cmd_identifier_token4] = ACTIONS(2284), - [aux_sym_cmd_identifier_token5] = ACTIONS(2284), - [aux_sym_cmd_identifier_token6] = ACTIONS(2284), - [aux_sym_cmd_identifier_token7] = ACTIONS(2284), - [aux_sym_cmd_identifier_token8] = ACTIONS(2284), - [aux_sym_cmd_identifier_token9] = ACTIONS(2284), - [aux_sym_cmd_identifier_token10] = ACTIONS(2284), - [aux_sym_cmd_identifier_token11] = ACTIONS(2284), - [aux_sym_cmd_identifier_token12] = ACTIONS(2284), - [aux_sym_cmd_identifier_token13] = ACTIONS(2284), - [aux_sym_cmd_identifier_token14] = ACTIONS(2284), - [aux_sym_cmd_identifier_token15] = ACTIONS(2284), - [aux_sym_cmd_identifier_token16] = ACTIONS(2284), - [aux_sym_cmd_identifier_token17] = ACTIONS(2284), - [aux_sym_cmd_identifier_token18] = ACTIONS(2284), - [aux_sym_cmd_identifier_token19] = ACTIONS(2284), - [aux_sym_cmd_identifier_token20] = ACTIONS(2284), - [aux_sym_cmd_identifier_token21] = ACTIONS(2284), - [aux_sym_cmd_identifier_token22] = ACTIONS(2284), - [aux_sym_cmd_identifier_token23] = ACTIONS(2284), - [aux_sym_cmd_identifier_token24] = ACTIONS(2284), - [aux_sym_cmd_identifier_token25] = ACTIONS(2284), - [aux_sym_cmd_identifier_token26] = ACTIONS(2284), - [aux_sym_cmd_identifier_token27] = ACTIONS(2284), - [aux_sym_cmd_identifier_token28] = ACTIONS(2284), - [aux_sym_cmd_identifier_token29] = ACTIONS(2284), - [aux_sym_cmd_identifier_token30] = ACTIONS(2284), - [aux_sym_cmd_identifier_token31] = ACTIONS(2284), - [aux_sym_cmd_identifier_token32] = ACTIONS(2284), - [aux_sym_cmd_identifier_token33] = ACTIONS(2284), - [aux_sym_cmd_identifier_token34] = ACTIONS(2284), - [aux_sym_cmd_identifier_token35] = ACTIONS(2284), - [aux_sym_cmd_identifier_token36] = ACTIONS(2284), - [aux_sym_cmd_identifier_token37] = ACTIONS(2284), - [aux_sym_cmd_identifier_token38] = ACTIONS(2284), - [aux_sym_cmd_identifier_token39] = ACTIONS(2284), - [aux_sym_cmd_identifier_token40] = ACTIONS(2284), - [anon_sym_def] = ACTIONS(2284), - [anon_sym_export_DASHenv] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_DOLLAR] = ACTIONS(2284), - [anon_sym_error] = ACTIONS(2284), - [anon_sym_DASH2] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_in2] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_make] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_catch] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_source] = ACTIONS(2284), - [anon_sym_source_DASHenv] = ACTIONS(2284), - [anon_sym_register] = ACTIONS(2284), - [anon_sym_hide] = ACTIONS(2284), - [anon_sym_hide_DASHenv] = ACTIONS(2284), - [anon_sym_overlay] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2284), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2284), - [aux_sym__val_number_decimal_token1] = ACTIONS(2284), - [aux_sym__val_number_decimal_token2] = ACTIONS(2284), - [aux_sym__val_number_decimal_token3] = ACTIONS(2284), - [aux_sym__val_number_decimal_token4] = ACTIONS(2284), - [aux_sym__val_number_token1] = ACTIONS(2284), - [aux_sym__val_number_token2] = ACTIONS(2284), - [aux_sym__val_number_token3] = ACTIONS(2284), - [aux_sym__val_number_token4] = ACTIONS(2284), - [aux_sym__val_number_token5] = ACTIONS(2284), - [aux_sym__val_number_token6] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2284), - [sym__str_single_quotes] = ACTIONS(2284), - [sym__str_back_ticks] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2284), - [sym__entry_separator] = ACTIONS(2286), + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(2257), + [anon_sym_alias] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_let_DASHenv] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [aux_sym_cmd_identifier_token1] = ACTIONS(2257), + [aux_sym_cmd_identifier_token2] = ACTIONS(2257), + [aux_sym_cmd_identifier_token3] = ACTIONS(2257), + [aux_sym_cmd_identifier_token4] = ACTIONS(2257), + [aux_sym_cmd_identifier_token5] = ACTIONS(2257), + [aux_sym_cmd_identifier_token6] = ACTIONS(2257), + [aux_sym_cmd_identifier_token7] = ACTIONS(2257), + [aux_sym_cmd_identifier_token8] = ACTIONS(2257), + [aux_sym_cmd_identifier_token9] = ACTIONS(2257), + [aux_sym_cmd_identifier_token10] = ACTIONS(2257), + [aux_sym_cmd_identifier_token11] = ACTIONS(2257), + [aux_sym_cmd_identifier_token12] = ACTIONS(2257), + [aux_sym_cmd_identifier_token13] = ACTIONS(2257), + [aux_sym_cmd_identifier_token14] = ACTIONS(2257), + [aux_sym_cmd_identifier_token15] = ACTIONS(2257), + [aux_sym_cmd_identifier_token16] = ACTIONS(2257), + [aux_sym_cmd_identifier_token17] = ACTIONS(2257), + [aux_sym_cmd_identifier_token18] = ACTIONS(2257), + [aux_sym_cmd_identifier_token19] = ACTIONS(2257), + [aux_sym_cmd_identifier_token20] = ACTIONS(2257), + [aux_sym_cmd_identifier_token21] = ACTIONS(2257), + [aux_sym_cmd_identifier_token22] = ACTIONS(2257), + [aux_sym_cmd_identifier_token23] = ACTIONS(2257), + [aux_sym_cmd_identifier_token24] = ACTIONS(2257), + [aux_sym_cmd_identifier_token25] = ACTIONS(2257), + [aux_sym_cmd_identifier_token26] = ACTIONS(2257), + [aux_sym_cmd_identifier_token27] = ACTIONS(2257), + [aux_sym_cmd_identifier_token28] = ACTIONS(2257), + [aux_sym_cmd_identifier_token29] = ACTIONS(2257), + [aux_sym_cmd_identifier_token30] = ACTIONS(2257), + [aux_sym_cmd_identifier_token31] = ACTIONS(2257), + [aux_sym_cmd_identifier_token32] = ACTIONS(2257), + [aux_sym_cmd_identifier_token33] = ACTIONS(2257), + [aux_sym_cmd_identifier_token34] = ACTIONS(2257), + [aux_sym_cmd_identifier_token35] = ACTIONS(2257), + [aux_sym_cmd_identifier_token36] = ACTIONS(2257), + [aux_sym_cmd_identifier_token37] = ACTIONS(2257), + [aux_sym_cmd_identifier_token38] = ACTIONS(2257), + [aux_sym_cmd_identifier_token39] = ACTIONS(2257), + [aux_sym_cmd_identifier_token40] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_export_DASHenv] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_error] = ACTIONS(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_make] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_catch] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_source] = ACTIONS(2257), + [anon_sym_source_DASHenv] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_hide] = ACTIONS(2257), + [anon_sym_hide_DASHenv] = ACTIONS(2257), + [anon_sym_overlay] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2257), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [aux_sym__val_number_token4] = ACTIONS(2257), + [aux_sym__val_number_token5] = ACTIONS(2257), + [aux_sym__val_number_token6] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [sym__str_single_quotes] = ACTIONS(2257), + [sym__str_back_ticks] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2257), + [sym__entry_separator] = ACTIONS(2259), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2255), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2286), + [sym_raw_string_begin] = ACTIONS(2259), }, - [560] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_alias] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_let_DASHenv] = ACTIONS(2288), - [anon_sym_mut] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [aux_sym_cmd_identifier_token1] = ACTIONS(2288), - [aux_sym_cmd_identifier_token2] = ACTIONS(2288), - [aux_sym_cmd_identifier_token3] = ACTIONS(2288), - [aux_sym_cmd_identifier_token4] = ACTIONS(2288), - [aux_sym_cmd_identifier_token5] = ACTIONS(2288), - [aux_sym_cmd_identifier_token6] = ACTIONS(2288), - [aux_sym_cmd_identifier_token7] = ACTIONS(2288), - [aux_sym_cmd_identifier_token8] = ACTIONS(2288), - [aux_sym_cmd_identifier_token9] = ACTIONS(2288), - [aux_sym_cmd_identifier_token10] = ACTIONS(2288), - [aux_sym_cmd_identifier_token11] = ACTIONS(2288), - [aux_sym_cmd_identifier_token12] = ACTIONS(2288), - [aux_sym_cmd_identifier_token13] = ACTIONS(2288), - [aux_sym_cmd_identifier_token14] = ACTIONS(2288), - [aux_sym_cmd_identifier_token15] = ACTIONS(2288), - [aux_sym_cmd_identifier_token16] = ACTIONS(2288), - [aux_sym_cmd_identifier_token17] = ACTIONS(2288), - [aux_sym_cmd_identifier_token18] = ACTIONS(2288), - [aux_sym_cmd_identifier_token19] = ACTIONS(2288), - [aux_sym_cmd_identifier_token20] = ACTIONS(2288), - [aux_sym_cmd_identifier_token21] = ACTIONS(2288), - [aux_sym_cmd_identifier_token22] = ACTIONS(2288), - [aux_sym_cmd_identifier_token23] = ACTIONS(2288), - [aux_sym_cmd_identifier_token24] = ACTIONS(2288), - [aux_sym_cmd_identifier_token25] = ACTIONS(2288), - [aux_sym_cmd_identifier_token26] = ACTIONS(2288), - [aux_sym_cmd_identifier_token27] = ACTIONS(2288), - [aux_sym_cmd_identifier_token28] = ACTIONS(2288), - [aux_sym_cmd_identifier_token29] = ACTIONS(2288), - [aux_sym_cmd_identifier_token30] = ACTIONS(2288), - [aux_sym_cmd_identifier_token31] = ACTIONS(2288), - [aux_sym_cmd_identifier_token32] = ACTIONS(2288), - [aux_sym_cmd_identifier_token33] = ACTIONS(2288), - [aux_sym_cmd_identifier_token34] = ACTIONS(2288), - [aux_sym_cmd_identifier_token35] = ACTIONS(2288), - [aux_sym_cmd_identifier_token36] = ACTIONS(2288), - [aux_sym_cmd_identifier_token37] = ACTIONS(2288), - [aux_sym_cmd_identifier_token38] = ACTIONS(2288), - [aux_sym_cmd_identifier_token39] = ACTIONS(2288), - [aux_sym_cmd_identifier_token40] = ACTIONS(2288), - [anon_sym_def] = ACTIONS(2288), - [anon_sym_export_DASHenv] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_DOLLAR] = ACTIONS(2288), - [anon_sym_error] = ACTIONS(2288), - [anon_sym_DASH2] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_in2] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_make] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_source] = ACTIONS(2288), - [anon_sym_source_DASHenv] = ACTIONS(2288), - [anon_sym_register] = ACTIONS(2288), - [anon_sym_hide] = ACTIONS(2288), - [anon_sym_hide_DASHenv] = ACTIONS(2288), - [anon_sym_overlay] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2288), - [aux_sym__val_number_decimal_token1] = ACTIONS(2288), - [aux_sym__val_number_decimal_token2] = ACTIONS(2288), - [aux_sym__val_number_decimal_token3] = ACTIONS(2288), - [aux_sym__val_number_decimal_token4] = ACTIONS(2288), - [aux_sym__val_number_token1] = ACTIONS(2288), - [aux_sym__val_number_token2] = ACTIONS(2288), - [aux_sym__val_number_token3] = ACTIONS(2288), - [aux_sym__val_number_token4] = ACTIONS(2288), - [aux_sym__val_number_token5] = ACTIONS(2288), - [aux_sym__val_number_token6] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [sym__str_single_quotes] = ACTIONS(2288), - [sym__str_back_ticks] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2288), - [sym__entry_separator] = ACTIONS(2290), + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_alias] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_let_DASHenv] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [aux_sym_cmd_identifier_token1] = ACTIONS(2261), + [aux_sym_cmd_identifier_token2] = ACTIONS(2261), + [aux_sym_cmd_identifier_token3] = ACTIONS(2261), + [aux_sym_cmd_identifier_token4] = ACTIONS(2261), + [aux_sym_cmd_identifier_token5] = ACTIONS(2261), + [aux_sym_cmd_identifier_token6] = ACTIONS(2261), + [aux_sym_cmd_identifier_token7] = ACTIONS(2261), + [aux_sym_cmd_identifier_token8] = ACTIONS(2261), + [aux_sym_cmd_identifier_token9] = ACTIONS(2261), + [aux_sym_cmd_identifier_token10] = ACTIONS(2261), + [aux_sym_cmd_identifier_token11] = ACTIONS(2261), + [aux_sym_cmd_identifier_token12] = ACTIONS(2261), + [aux_sym_cmd_identifier_token13] = ACTIONS(2261), + [aux_sym_cmd_identifier_token14] = ACTIONS(2261), + [aux_sym_cmd_identifier_token15] = ACTIONS(2261), + [aux_sym_cmd_identifier_token16] = ACTIONS(2261), + [aux_sym_cmd_identifier_token17] = ACTIONS(2261), + [aux_sym_cmd_identifier_token18] = ACTIONS(2261), + [aux_sym_cmd_identifier_token19] = ACTIONS(2261), + [aux_sym_cmd_identifier_token20] = ACTIONS(2261), + [aux_sym_cmd_identifier_token21] = ACTIONS(2261), + [aux_sym_cmd_identifier_token22] = ACTIONS(2261), + [aux_sym_cmd_identifier_token23] = ACTIONS(2261), + [aux_sym_cmd_identifier_token24] = ACTIONS(2261), + [aux_sym_cmd_identifier_token25] = ACTIONS(2261), + [aux_sym_cmd_identifier_token26] = ACTIONS(2261), + [aux_sym_cmd_identifier_token27] = ACTIONS(2261), + [aux_sym_cmd_identifier_token28] = ACTIONS(2261), + [aux_sym_cmd_identifier_token29] = ACTIONS(2261), + [aux_sym_cmd_identifier_token30] = ACTIONS(2261), + [aux_sym_cmd_identifier_token31] = ACTIONS(2261), + [aux_sym_cmd_identifier_token32] = ACTIONS(2261), + [aux_sym_cmd_identifier_token33] = ACTIONS(2261), + [aux_sym_cmd_identifier_token34] = ACTIONS(2261), + [aux_sym_cmd_identifier_token35] = ACTIONS(2261), + [aux_sym_cmd_identifier_token36] = ACTIONS(2261), + [aux_sym_cmd_identifier_token37] = ACTIONS(2261), + [aux_sym_cmd_identifier_token38] = ACTIONS(2261), + [aux_sym_cmd_identifier_token39] = ACTIONS(2261), + [aux_sym_cmd_identifier_token40] = ACTIONS(2261), + [anon_sym_def] = ACTIONS(2261), + [anon_sym_export_DASHenv] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_error] = ACTIONS(2261), + [anon_sym_DASH2] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_in2] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_make] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_catch] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_source] = ACTIONS(2261), + [anon_sym_source_DASHenv] = ACTIONS(2261), + [anon_sym_register] = ACTIONS(2261), + [anon_sym_hide] = ACTIONS(2261), + [anon_sym_hide_DASHenv] = ACTIONS(2261), + [anon_sym_overlay] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_LPAREN2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2261), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [aux_sym__val_number_token4] = ACTIONS(2261), + [aux_sym__val_number_token5] = ACTIONS(2261), + [aux_sym__val_number_token6] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2261), + [sym__str_single_quotes] = ACTIONS(2261), + [sym__str_back_ticks] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), + [sym__entry_separator] = ACTIONS(2263), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2261), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2290), + [sym_raw_string_begin] = ACTIONS(2263), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_alias] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_let_DASHenv] = ACTIONS(2292), - [anon_sym_mut] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [aux_sym_cmd_identifier_token1] = ACTIONS(2292), - [aux_sym_cmd_identifier_token2] = ACTIONS(2292), - [aux_sym_cmd_identifier_token3] = ACTIONS(2292), - [aux_sym_cmd_identifier_token4] = ACTIONS(2292), - [aux_sym_cmd_identifier_token5] = ACTIONS(2292), - [aux_sym_cmd_identifier_token6] = ACTIONS(2292), - [aux_sym_cmd_identifier_token7] = ACTIONS(2292), - [aux_sym_cmd_identifier_token8] = ACTIONS(2292), - [aux_sym_cmd_identifier_token9] = ACTIONS(2292), - [aux_sym_cmd_identifier_token10] = ACTIONS(2292), - [aux_sym_cmd_identifier_token11] = ACTIONS(2292), - [aux_sym_cmd_identifier_token12] = ACTIONS(2292), - [aux_sym_cmd_identifier_token13] = ACTIONS(2292), - [aux_sym_cmd_identifier_token14] = ACTIONS(2292), - [aux_sym_cmd_identifier_token15] = ACTIONS(2292), - [aux_sym_cmd_identifier_token16] = ACTIONS(2292), - [aux_sym_cmd_identifier_token17] = ACTIONS(2292), - [aux_sym_cmd_identifier_token18] = ACTIONS(2292), - [aux_sym_cmd_identifier_token19] = ACTIONS(2292), - [aux_sym_cmd_identifier_token20] = ACTIONS(2292), - [aux_sym_cmd_identifier_token21] = ACTIONS(2292), - [aux_sym_cmd_identifier_token22] = ACTIONS(2292), - [aux_sym_cmd_identifier_token23] = ACTIONS(2292), - [aux_sym_cmd_identifier_token24] = ACTIONS(2292), - [aux_sym_cmd_identifier_token25] = ACTIONS(2292), - [aux_sym_cmd_identifier_token26] = ACTIONS(2292), - [aux_sym_cmd_identifier_token27] = ACTIONS(2292), - [aux_sym_cmd_identifier_token28] = ACTIONS(2292), - [aux_sym_cmd_identifier_token29] = ACTIONS(2292), - [aux_sym_cmd_identifier_token30] = ACTIONS(2292), - [aux_sym_cmd_identifier_token31] = ACTIONS(2292), - [aux_sym_cmd_identifier_token32] = ACTIONS(2292), - [aux_sym_cmd_identifier_token33] = ACTIONS(2292), - [aux_sym_cmd_identifier_token34] = ACTIONS(2292), - [aux_sym_cmd_identifier_token35] = ACTIONS(2292), - [aux_sym_cmd_identifier_token36] = ACTIONS(2292), - [aux_sym_cmd_identifier_token37] = ACTIONS(2292), - [aux_sym_cmd_identifier_token38] = ACTIONS(2292), - [aux_sym_cmd_identifier_token39] = ACTIONS(2292), - [aux_sym_cmd_identifier_token40] = ACTIONS(2292), - [anon_sym_def] = ACTIONS(2292), - [anon_sym_export_DASHenv] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2292), - [anon_sym_error] = ACTIONS(2292), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_in2] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_make] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_catch] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_source] = ACTIONS(2292), - [anon_sym_source_DASHenv] = ACTIONS(2292), - [anon_sym_register] = ACTIONS(2292), - [anon_sym_hide] = ACTIONS(2292), - [anon_sym_hide_DASHenv] = ACTIONS(2292), - [anon_sym_overlay] = ACTIONS(2292), - [anon_sym_as] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(2292), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2292), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2292), - [aux_sym__val_number_decimal_token1] = ACTIONS(2292), - [aux_sym__val_number_decimal_token2] = ACTIONS(2292), - [aux_sym__val_number_decimal_token3] = ACTIONS(2292), - [aux_sym__val_number_decimal_token4] = ACTIONS(2292), - [aux_sym__val_number_token1] = ACTIONS(2292), - [aux_sym__val_number_token2] = ACTIONS(2292), - [aux_sym__val_number_token3] = ACTIONS(2292), - [aux_sym__val_number_token4] = ACTIONS(2292), - [aux_sym__val_number_token5] = ACTIONS(2292), - [aux_sym__val_number_token6] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2292), - [sym__str_single_quotes] = ACTIONS(2292), - [sym__str_back_ticks] = ACTIONS(2292), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2292), - [sym__entry_separator] = ACTIONS(2294), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [sym__entry_separator] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), + [sym_raw_string_begin] = ACTIONS(960), }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(2296), - [aux_sym__immediate_decimal_token2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(978), }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_alias] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_let_DASHenv] = ACTIONS(2300), - [anon_sym_mut] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [aux_sym_cmd_identifier_token1] = ACTIONS(2300), - [aux_sym_cmd_identifier_token2] = ACTIONS(2300), - [aux_sym_cmd_identifier_token3] = ACTIONS(2300), - [aux_sym_cmd_identifier_token4] = ACTIONS(2300), - [aux_sym_cmd_identifier_token5] = ACTIONS(2300), - [aux_sym_cmd_identifier_token6] = ACTIONS(2300), - [aux_sym_cmd_identifier_token7] = ACTIONS(2300), - [aux_sym_cmd_identifier_token8] = ACTIONS(2300), - [aux_sym_cmd_identifier_token9] = ACTIONS(2300), - [aux_sym_cmd_identifier_token10] = ACTIONS(2300), - [aux_sym_cmd_identifier_token11] = ACTIONS(2300), - [aux_sym_cmd_identifier_token12] = ACTIONS(2300), - [aux_sym_cmd_identifier_token13] = ACTIONS(2300), - [aux_sym_cmd_identifier_token14] = ACTIONS(2300), - [aux_sym_cmd_identifier_token15] = ACTIONS(2300), - [aux_sym_cmd_identifier_token16] = ACTIONS(2300), - [aux_sym_cmd_identifier_token17] = ACTIONS(2300), - [aux_sym_cmd_identifier_token18] = ACTIONS(2300), - [aux_sym_cmd_identifier_token19] = ACTIONS(2300), - [aux_sym_cmd_identifier_token20] = ACTIONS(2300), - [aux_sym_cmd_identifier_token21] = ACTIONS(2300), - [aux_sym_cmd_identifier_token22] = ACTIONS(2300), - [aux_sym_cmd_identifier_token23] = ACTIONS(2300), - [aux_sym_cmd_identifier_token24] = ACTIONS(2300), - [aux_sym_cmd_identifier_token25] = ACTIONS(2300), - [aux_sym_cmd_identifier_token26] = ACTIONS(2300), - [aux_sym_cmd_identifier_token27] = ACTIONS(2300), - [aux_sym_cmd_identifier_token28] = ACTIONS(2300), - [aux_sym_cmd_identifier_token29] = ACTIONS(2300), - [aux_sym_cmd_identifier_token30] = ACTIONS(2300), - [aux_sym_cmd_identifier_token31] = ACTIONS(2300), - [aux_sym_cmd_identifier_token32] = ACTIONS(2300), - [aux_sym_cmd_identifier_token33] = ACTIONS(2300), - [aux_sym_cmd_identifier_token34] = ACTIONS(2300), - [aux_sym_cmd_identifier_token35] = ACTIONS(2300), - [aux_sym_cmd_identifier_token36] = ACTIONS(2300), - [aux_sym_cmd_identifier_token37] = ACTIONS(2300), - [aux_sym_cmd_identifier_token38] = ACTIONS(2300), - [aux_sym_cmd_identifier_token39] = ACTIONS(2300), - [aux_sym_cmd_identifier_token40] = ACTIONS(2300), - [anon_sym_def] = ACTIONS(2300), - [anon_sym_export_DASHenv] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2300), - [anon_sym_error] = ACTIONS(2300), - [anon_sym_DASH2] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_in2] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_make] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_source] = ACTIONS(2300), - [anon_sym_source_DASHenv] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_hide] = ACTIONS(2300), - [anon_sym_hide_DASHenv] = ACTIONS(2300), - [anon_sym_overlay] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_LPAREN2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), - [aux_sym__val_number_decimal_token1] = ACTIONS(2300), - [aux_sym__val_number_decimal_token2] = ACTIONS(2300), - [aux_sym__val_number_decimal_token3] = ACTIONS(2300), - [aux_sym__val_number_decimal_token4] = ACTIONS(2300), - [aux_sym__val_number_token1] = ACTIONS(2300), - [aux_sym__val_number_token2] = ACTIONS(2300), - [aux_sym__val_number_token3] = ACTIONS(2300), - [aux_sym__val_number_token4] = ACTIONS(2300), - [aux_sym__val_number_token5] = ACTIONS(2300), - [aux_sym__val_number_token6] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), - [sym__entry_separator] = ACTIONS(2302), + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(972), + [aux_sym_cmd_identifier_token3] = ACTIONS(972), + [aux_sym_cmd_identifier_token4] = ACTIONS(972), + [aux_sym_cmd_identifier_token5] = ACTIONS(972), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [aux_sym_cmd_identifier_token7] = ACTIONS(972), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(972), + [aux_sym_cmd_identifier_token11] = ACTIONS(972), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(972), + [aux_sym_cmd_identifier_token17] = ACTIONS(972), + [aux_sym_cmd_identifier_token18] = ACTIONS(972), + [aux_sym_cmd_identifier_token19] = ACTIONS(972), + [aux_sym_cmd_identifier_token20] = ACTIONS(972), + [aux_sym_cmd_identifier_token21] = ACTIONS(972), + [aux_sym_cmd_identifier_token22] = ACTIONS(972), + [aux_sym_cmd_identifier_token23] = ACTIONS(972), + [aux_sym_cmd_identifier_token24] = ACTIONS(972), + [aux_sym_cmd_identifier_token25] = ACTIONS(972), + [aux_sym_cmd_identifier_token26] = ACTIONS(972), + [aux_sym_cmd_identifier_token27] = ACTIONS(972), + [aux_sym_cmd_identifier_token28] = ACTIONS(972), + [aux_sym_cmd_identifier_token29] = ACTIONS(972), + [aux_sym_cmd_identifier_token30] = ACTIONS(972), + [aux_sym_cmd_identifier_token31] = ACTIONS(972), + [aux_sym_cmd_identifier_token32] = ACTIONS(972), + [aux_sym_cmd_identifier_token33] = ACTIONS(972), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(972), + [aux_sym_cmd_identifier_token36] = ACTIONS(972), + [aux_sym_cmd_identifier_token37] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(972), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [sym__entry_separator] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2302), + [sym_raw_string_begin] = ACTIONS(974), }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_alias] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_let_DASHenv] = ACTIONS(2304), - [anon_sym_mut] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [aux_sym_cmd_identifier_token1] = ACTIONS(2304), - [aux_sym_cmd_identifier_token2] = ACTIONS(2304), - [aux_sym_cmd_identifier_token3] = ACTIONS(2304), - [aux_sym_cmd_identifier_token4] = ACTIONS(2304), - [aux_sym_cmd_identifier_token5] = ACTIONS(2304), - [aux_sym_cmd_identifier_token6] = ACTIONS(2304), - [aux_sym_cmd_identifier_token7] = ACTIONS(2304), - [aux_sym_cmd_identifier_token8] = ACTIONS(2304), - [aux_sym_cmd_identifier_token9] = ACTIONS(2304), - [aux_sym_cmd_identifier_token10] = ACTIONS(2304), - [aux_sym_cmd_identifier_token11] = ACTIONS(2304), - [aux_sym_cmd_identifier_token12] = ACTIONS(2304), - [aux_sym_cmd_identifier_token13] = ACTIONS(2304), - [aux_sym_cmd_identifier_token14] = ACTIONS(2304), - [aux_sym_cmd_identifier_token15] = ACTIONS(2304), - [aux_sym_cmd_identifier_token16] = ACTIONS(2304), - [aux_sym_cmd_identifier_token17] = ACTIONS(2304), - [aux_sym_cmd_identifier_token18] = ACTIONS(2304), - [aux_sym_cmd_identifier_token19] = ACTIONS(2304), - [aux_sym_cmd_identifier_token20] = ACTIONS(2304), - [aux_sym_cmd_identifier_token21] = ACTIONS(2304), - [aux_sym_cmd_identifier_token22] = ACTIONS(2304), - [aux_sym_cmd_identifier_token23] = ACTIONS(2304), - [aux_sym_cmd_identifier_token24] = ACTIONS(2304), - [aux_sym_cmd_identifier_token25] = ACTIONS(2304), - [aux_sym_cmd_identifier_token26] = ACTIONS(2304), - [aux_sym_cmd_identifier_token27] = ACTIONS(2304), - [aux_sym_cmd_identifier_token28] = ACTIONS(2304), - [aux_sym_cmd_identifier_token29] = ACTIONS(2304), - [aux_sym_cmd_identifier_token30] = ACTIONS(2304), - [aux_sym_cmd_identifier_token31] = ACTIONS(2304), - [aux_sym_cmd_identifier_token32] = ACTIONS(2304), - [aux_sym_cmd_identifier_token33] = ACTIONS(2304), - [aux_sym_cmd_identifier_token34] = ACTIONS(2304), - [aux_sym_cmd_identifier_token35] = ACTIONS(2304), - [aux_sym_cmd_identifier_token36] = ACTIONS(2304), - [aux_sym_cmd_identifier_token37] = ACTIONS(2304), - [aux_sym_cmd_identifier_token38] = ACTIONS(2304), - [aux_sym_cmd_identifier_token39] = ACTIONS(2304), - [aux_sym_cmd_identifier_token40] = ACTIONS(2304), - [anon_sym_def] = ACTIONS(2304), - [anon_sym_export_DASHenv] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_DOLLAR] = ACTIONS(2304), - [anon_sym_error] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_in2] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_make] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_catch] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_source] = ACTIONS(2304), - [anon_sym_source_DASHenv] = ACTIONS(2304), - [anon_sym_register] = ACTIONS(2304), - [anon_sym_hide] = ACTIONS(2304), - [anon_sym_hide_DASHenv] = ACTIONS(2304), - [anon_sym_overlay] = ACTIONS(2304), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), - [aux_sym__val_number_decimal_token1] = ACTIONS(2304), - [aux_sym__val_number_decimal_token2] = ACTIONS(2304), - [aux_sym__val_number_decimal_token3] = ACTIONS(2304), - [aux_sym__val_number_decimal_token4] = ACTIONS(2304), - [aux_sym__val_number_token1] = ACTIONS(2304), - [aux_sym__val_number_token2] = ACTIONS(2304), - [aux_sym__val_number_token3] = ACTIONS(2304), - [aux_sym__val_number_token4] = ACTIONS(2304), - [aux_sym__val_number_token5] = ACTIONS(2304), - [aux_sym__val_number_token6] = ACTIONS(2304), - [anon_sym_LBRACK2] = ACTIONS(2306), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym__str_single_quotes] = ACTIONS(2304), - [sym__str_back_ticks] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), - [sym__entry_separator] = ACTIONS(2308), + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [aux_sym_cmd_identifier_token37] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(962), + [aux_sym__val_number_decimal_token4] = ACTIONS(962), + [aux_sym__val_number_token1] = ACTIONS(962), + [aux_sym__val_number_token2] = ACTIONS(962), + [aux_sym__val_number_token3] = ACTIONS(962), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [sym__entry_separator] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2308), + [sym_raw_string_begin] = ACTIONS(964), }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(2136), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, - [566] = { - [sym_comment] = STATE(566), + [537] = { + [sym_comment] = STATE(537), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -146791,6 +138477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_PLUS2] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(2265), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1773), @@ -146810,210 +138497,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, - [569] = { - [sym_comment] = STATE(569), + [540] = { + [sym_comment] = STATE(540), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -147093,8 +138782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1771), [anon_sym_PLUS2] = ACTIONS(1771), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(2310), - [aux_sym__immediate_decimal_token2] = ACTIONS(2312), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), [aux_sym__val_number_decimal_token1] = ACTIONS(1771), [aux_sym__val_number_decimal_token2] = ACTIONS(1773), @@ -147113,2081 +138803,5932 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [570] = { - [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(1830), - [anon_sym_alias] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_let_DASHenv] = ACTIONS(1830), - [anon_sym_mut] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [aux_sym_cmd_identifier_token1] = ACTIONS(1830), - [aux_sym_cmd_identifier_token2] = ACTIONS(1838), - [aux_sym_cmd_identifier_token3] = ACTIONS(1838), - [aux_sym_cmd_identifier_token4] = ACTIONS(1838), - [aux_sym_cmd_identifier_token5] = ACTIONS(1838), - [aux_sym_cmd_identifier_token6] = ACTIONS(1838), - [aux_sym_cmd_identifier_token7] = ACTIONS(1838), - [aux_sym_cmd_identifier_token8] = ACTIONS(1830), - [aux_sym_cmd_identifier_token9] = ACTIONS(1830), - [aux_sym_cmd_identifier_token10] = ACTIONS(1838), - [aux_sym_cmd_identifier_token11] = ACTIONS(1838), - [aux_sym_cmd_identifier_token12] = ACTIONS(1830), - [aux_sym_cmd_identifier_token13] = ACTIONS(1830), - [aux_sym_cmd_identifier_token14] = ACTIONS(1830), - [aux_sym_cmd_identifier_token15] = ACTIONS(1830), - [aux_sym_cmd_identifier_token16] = ACTIONS(1838), - [aux_sym_cmd_identifier_token17] = ACTIONS(1838), - [aux_sym_cmd_identifier_token18] = ACTIONS(1838), - [aux_sym_cmd_identifier_token19] = ACTIONS(1838), - [aux_sym_cmd_identifier_token20] = ACTIONS(1838), - [aux_sym_cmd_identifier_token21] = ACTIONS(1838), - [aux_sym_cmd_identifier_token22] = ACTIONS(1838), - [aux_sym_cmd_identifier_token23] = ACTIONS(1838), - [aux_sym_cmd_identifier_token24] = ACTIONS(1838), - [aux_sym_cmd_identifier_token25] = ACTIONS(1838), - [aux_sym_cmd_identifier_token26] = ACTIONS(1838), - [aux_sym_cmd_identifier_token27] = ACTIONS(1838), - [aux_sym_cmd_identifier_token28] = ACTIONS(1838), - [aux_sym_cmd_identifier_token29] = ACTIONS(1838), - [aux_sym_cmd_identifier_token30] = ACTIONS(1838), - [aux_sym_cmd_identifier_token31] = ACTIONS(1838), - [aux_sym_cmd_identifier_token32] = ACTIONS(1838), - [aux_sym_cmd_identifier_token33] = ACTIONS(1838), - [aux_sym_cmd_identifier_token34] = ACTIONS(1830), - [aux_sym_cmd_identifier_token35] = ACTIONS(1838), - [aux_sym_cmd_identifier_token36] = ACTIONS(1838), - [aux_sym_cmd_identifier_token37] = ACTIONS(1838), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1838), - [aux_sym_cmd_identifier_token40] = ACTIONS(1838), - [anon_sym_def] = ACTIONS(1830), - [anon_sym_export_DASHenv] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_module] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_error] = ACTIONS(1830), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_in2] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_make] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_else] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_try] = ACTIONS(1830), - [anon_sym_catch] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_source] = ACTIONS(1830), - [anon_sym_source_DASHenv] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_hide] = ACTIONS(1830), - [anon_sym_hide_DASHenv] = ACTIONS(1830), - [anon_sym_overlay] = ACTIONS(1830), - [anon_sym_as] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_PLUS2] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1838), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [aux_sym__val_number_token4] = ACTIONS(1830), - [aux_sym__val_number_token5] = ACTIONS(1830), - [aux_sym__val_number_token6] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1838), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1838), + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [aux_sym__immediate_decimal_token2] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), + [542] = { + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(1737), }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [aux_sym__immediate_decimal_token2] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [573] = { - [sym_comment] = STATE(573), - [anon_sym_export] = ACTIONS(2292), - [anon_sym_alias] = ACTIONS(2292), - [anon_sym_let] = ACTIONS(2292), - [anon_sym_let_DASHenv] = ACTIONS(2292), - [anon_sym_mut] = ACTIONS(2292), - [anon_sym_const] = ACTIONS(2292), - [aux_sym_cmd_identifier_token1] = ACTIONS(2292), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2292), - [aux_sym_cmd_identifier_token9] = ACTIONS(2292), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2292), - [aux_sym_cmd_identifier_token13] = ACTIONS(2292), - [aux_sym_cmd_identifier_token14] = ACTIONS(2292), - [aux_sym_cmd_identifier_token15] = ACTIONS(2292), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2292), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2292), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2292), - [anon_sym_export_DASHenv] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_module] = ACTIONS(2292), - [anon_sym_use] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_error] = ACTIONS(2292), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_for] = ACTIONS(2292), - [anon_sym_in2] = ACTIONS(2292), - [anon_sym_loop] = ACTIONS(2292), - [anon_sym_make] = ACTIONS(2292), - [anon_sym_while] = ACTIONS(2292), - [anon_sym_do] = ACTIONS(2292), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_else] = ACTIONS(2292), - [anon_sym_match] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2292), - [anon_sym_catch] = ACTIONS(2292), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_source] = ACTIONS(2292), - [anon_sym_source_DASHenv] = ACTIONS(2292), - [anon_sym_register] = ACTIONS(2292), - [anon_sym_hide] = ACTIONS(2292), - [anon_sym_hide_DASHenv] = ACTIONS(2292), - [anon_sym_overlay] = ACTIONS(2292), - [anon_sym_as] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(2292), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2292), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2292), - [aux_sym__val_number_token5] = ACTIONS(2292), - [aux_sym__val_number_token6] = ACTIONS(2292), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2294), - }, - [574] = { - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_alias] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_let_DASHenv] = ACTIONS(1840), - [anon_sym_mut] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [aux_sym_cmd_identifier_token1] = ACTIONS(1840), - [aux_sym_cmd_identifier_token2] = ACTIONS(1848), - [aux_sym_cmd_identifier_token3] = ACTIONS(1848), - [aux_sym_cmd_identifier_token4] = ACTIONS(1848), - [aux_sym_cmd_identifier_token5] = ACTIONS(1848), - [aux_sym_cmd_identifier_token6] = ACTIONS(1848), - [aux_sym_cmd_identifier_token7] = ACTIONS(1848), - [aux_sym_cmd_identifier_token8] = ACTIONS(1840), - [aux_sym_cmd_identifier_token9] = ACTIONS(1840), - [aux_sym_cmd_identifier_token10] = ACTIONS(1848), - [aux_sym_cmd_identifier_token11] = ACTIONS(1848), - [aux_sym_cmd_identifier_token12] = ACTIONS(1840), - [aux_sym_cmd_identifier_token13] = ACTIONS(1840), - [aux_sym_cmd_identifier_token14] = ACTIONS(1840), - [aux_sym_cmd_identifier_token15] = ACTIONS(1840), - [aux_sym_cmd_identifier_token16] = ACTIONS(1848), - [aux_sym_cmd_identifier_token17] = ACTIONS(1848), - [aux_sym_cmd_identifier_token18] = ACTIONS(1848), - [aux_sym_cmd_identifier_token19] = ACTIONS(1848), - [aux_sym_cmd_identifier_token20] = ACTIONS(1848), - [aux_sym_cmd_identifier_token21] = ACTIONS(1848), - [aux_sym_cmd_identifier_token22] = ACTIONS(1848), - [aux_sym_cmd_identifier_token23] = ACTIONS(1848), - [aux_sym_cmd_identifier_token24] = ACTIONS(1848), - [aux_sym_cmd_identifier_token25] = ACTIONS(1848), - [aux_sym_cmd_identifier_token26] = ACTIONS(1848), - [aux_sym_cmd_identifier_token27] = ACTIONS(1848), - [aux_sym_cmd_identifier_token28] = ACTIONS(1848), - [aux_sym_cmd_identifier_token29] = ACTIONS(1848), - [aux_sym_cmd_identifier_token30] = ACTIONS(1848), - [aux_sym_cmd_identifier_token31] = ACTIONS(1848), - [aux_sym_cmd_identifier_token32] = ACTIONS(1848), - [aux_sym_cmd_identifier_token33] = ACTIONS(1848), - [aux_sym_cmd_identifier_token34] = ACTIONS(1840), - [aux_sym_cmd_identifier_token35] = ACTIONS(1848), - [aux_sym_cmd_identifier_token36] = ACTIONS(1848), - [aux_sym_cmd_identifier_token37] = ACTIONS(1848), - [aux_sym_cmd_identifier_token38] = ACTIONS(1840), - [aux_sym_cmd_identifier_token39] = ACTIONS(1848), - [aux_sym_cmd_identifier_token40] = ACTIONS(1848), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_export_DASHenv] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1848), - [anon_sym_error] = ACTIONS(1840), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_in2] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_make] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_do] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_else] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_catch] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_source] = ACTIONS(1840), - [anon_sym_source_DASHenv] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_hide] = ACTIONS(1840), - [anon_sym_hide_DASHenv] = ACTIONS(1840), - [anon_sym_overlay] = ACTIONS(1840), - [anon_sym_as] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_PLUS2] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [aux_sym__val_number_token4] = ACTIONS(1840), - [aux_sym__val_number_token5] = ACTIONS(1840), - [aux_sym__val_number_token6] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1848), - }, - [575] = { - [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(2316), - [aux_sym__immediate_decimal_token2] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_alias] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_let_DASHenv] = ACTIONS(2266), - [anon_sym_mut] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [aux_sym_cmd_identifier_token1] = ACTIONS(2266), - [aux_sym_cmd_identifier_token2] = ACTIONS(2270), - [aux_sym_cmd_identifier_token3] = ACTIONS(2270), - [aux_sym_cmd_identifier_token4] = ACTIONS(2270), - [aux_sym_cmd_identifier_token5] = ACTIONS(2270), - [aux_sym_cmd_identifier_token6] = ACTIONS(2270), - [aux_sym_cmd_identifier_token7] = ACTIONS(2270), - [aux_sym_cmd_identifier_token8] = ACTIONS(2266), - [aux_sym_cmd_identifier_token9] = ACTIONS(2266), - [aux_sym_cmd_identifier_token10] = ACTIONS(2270), - [aux_sym_cmd_identifier_token11] = ACTIONS(2270), - [aux_sym_cmd_identifier_token12] = ACTIONS(2266), - [aux_sym_cmd_identifier_token13] = ACTIONS(2266), - [aux_sym_cmd_identifier_token14] = ACTIONS(2266), - [aux_sym_cmd_identifier_token15] = ACTIONS(2266), - [aux_sym_cmd_identifier_token16] = ACTIONS(2270), - [aux_sym_cmd_identifier_token17] = ACTIONS(2270), - [aux_sym_cmd_identifier_token18] = ACTIONS(2270), - [aux_sym_cmd_identifier_token19] = ACTIONS(2270), - [aux_sym_cmd_identifier_token20] = ACTIONS(2270), - [aux_sym_cmd_identifier_token21] = ACTIONS(2270), - [aux_sym_cmd_identifier_token22] = ACTIONS(2270), - [aux_sym_cmd_identifier_token23] = ACTIONS(2270), - [aux_sym_cmd_identifier_token24] = ACTIONS(2270), - [aux_sym_cmd_identifier_token25] = ACTIONS(2270), - [aux_sym_cmd_identifier_token26] = ACTIONS(2270), - [aux_sym_cmd_identifier_token27] = ACTIONS(2270), - [aux_sym_cmd_identifier_token28] = ACTIONS(2270), - [aux_sym_cmd_identifier_token29] = ACTIONS(2270), - [aux_sym_cmd_identifier_token30] = ACTIONS(2270), - [aux_sym_cmd_identifier_token31] = ACTIONS(2270), - [aux_sym_cmd_identifier_token32] = ACTIONS(2270), - [aux_sym_cmd_identifier_token33] = ACTIONS(2270), - [aux_sym_cmd_identifier_token34] = ACTIONS(2266), - [aux_sym_cmd_identifier_token35] = ACTIONS(2270), - [aux_sym_cmd_identifier_token36] = ACTIONS(2270), - [aux_sym_cmd_identifier_token37] = ACTIONS(2270), - [aux_sym_cmd_identifier_token38] = ACTIONS(2266), - [aux_sym_cmd_identifier_token39] = ACTIONS(2270), - [aux_sym_cmd_identifier_token40] = ACTIONS(2270), - [anon_sym_def] = ACTIONS(2266), - [anon_sym_export_DASHenv] = ACTIONS(2266), - [anon_sym_extern] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_use] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_DOLLAR] = ACTIONS(2270), - [anon_sym_error] = ACTIONS(2266), - [anon_sym_DASH2] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_in2] = ACTIONS(2266), - [anon_sym_loop] = ACTIONS(2266), - [anon_sym_make] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_else] = ACTIONS(2266), - [anon_sym_match] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_catch] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_source] = ACTIONS(2266), - [anon_sym_source_DASHenv] = ACTIONS(2266), - [anon_sym_register] = ACTIONS(2266), - [anon_sym_hide] = ACTIONS(2266), - [anon_sym_hide_DASHenv] = ACTIONS(2266), - [anon_sym_overlay] = ACTIONS(2266), - [anon_sym_as] = ACTIONS(2266), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2266), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2270), - [aux_sym__val_number_decimal_token1] = ACTIONS(2266), - [aux_sym__val_number_decimal_token2] = ACTIONS(2270), - [aux_sym__val_number_decimal_token3] = ACTIONS(2270), - [aux_sym__val_number_decimal_token4] = ACTIONS(2270), - [aux_sym__val_number_token1] = ACTIONS(2270), - [aux_sym__val_number_token2] = ACTIONS(2270), - [aux_sym__val_number_token3] = ACTIONS(2270), - [aux_sym__val_number_token4] = ACTIONS(2266), - [aux_sym__val_number_token5] = ACTIONS(2266), - [aux_sym__val_number_token6] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2270), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(2226), - [anon_sym_alias] = ACTIONS(2226), - [anon_sym_let] = ACTIONS(2226), - [anon_sym_let_DASHenv] = ACTIONS(2226), - [anon_sym_mut] = ACTIONS(2226), - [anon_sym_const] = ACTIONS(2226), - [aux_sym_cmd_identifier_token1] = ACTIONS(2226), - [aux_sym_cmd_identifier_token2] = ACTIONS(2230), - [aux_sym_cmd_identifier_token3] = ACTIONS(2230), - [aux_sym_cmd_identifier_token4] = ACTIONS(2230), - [aux_sym_cmd_identifier_token5] = ACTIONS(2230), - [aux_sym_cmd_identifier_token6] = ACTIONS(2230), - [aux_sym_cmd_identifier_token7] = ACTIONS(2230), - [aux_sym_cmd_identifier_token8] = ACTIONS(2226), - [aux_sym_cmd_identifier_token9] = ACTIONS(2226), - [aux_sym_cmd_identifier_token10] = ACTIONS(2230), - [aux_sym_cmd_identifier_token11] = ACTIONS(2230), - [aux_sym_cmd_identifier_token12] = ACTIONS(2226), - [aux_sym_cmd_identifier_token13] = ACTIONS(2226), - [aux_sym_cmd_identifier_token14] = ACTIONS(2226), - [aux_sym_cmd_identifier_token15] = ACTIONS(2226), - [aux_sym_cmd_identifier_token16] = ACTIONS(2230), - [aux_sym_cmd_identifier_token17] = ACTIONS(2230), - [aux_sym_cmd_identifier_token18] = ACTIONS(2230), - [aux_sym_cmd_identifier_token19] = ACTIONS(2230), - [aux_sym_cmd_identifier_token20] = ACTIONS(2230), - [aux_sym_cmd_identifier_token21] = ACTIONS(2230), - [aux_sym_cmd_identifier_token22] = ACTIONS(2230), - [aux_sym_cmd_identifier_token23] = ACTIONS(2230), - [aux_sym_cmd_identifier_token24] = ACTIONS(2230), - [aux_sym_cmd_identifier_token25] = ACTIONS(2230), - [aux_sym_cmd_identifier_token26] = ACTIONS(2230), - [aux_sym_cmd_identifier_token27] = ACTIONS(2230), - [aux_sym_cmd_identifier_token28] = ACTIONS(2230), - [aux_sym_cmd_identifier_token29] = ACTIONS(2230), - [aux_sym_cmd_identifier_token30] = ACTIONS(2230), - [aux_sym_cmd_identifier_token31] = ACTIONS(2230), - [aux_sym_cmd_identifier_token32] = ACTIONS(2230), - [aux_sym_cmd_identifier_token33] = ACTIONS(2230), - [aux_sym_cmd_identifier_token34] = ACTIONS(2226), - [aux_sym_cmd_identifier_token35] = ACTIONS(2230), - [aux_sym_cmd_identifier_token36] = ACTIONS(2230), - [aux_sym_cmd_identifier_token37] = ACTIONS(2230), - [aux_sym_cmd_identifier_token38] = ACTIONS(2226), - [aux_sym_cmd_identifier_token39] = ACTIONS(2230), - [aux_sym_cmd_identifier_token40] = ACTIONS(2230), - [anon_sym_def] = ACTIONS(2226), - [anon_sym_export_DASHenv] = ACTIONS(2226), - [anon_sym_extern] = ACTIONS(2226), - [anon_sym_module] = ACTIONS(2226), - [anon_sym_use] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_error] = ACTIONS(2226), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_break] = ACTIONS(2226), - [anon_sym_continue] = ACTIONS(2226), - [anon_sym_for] = ACTIONS(2226), - [anon_sym_in2] = ACTIONS(2226), - [anon_sym_loop] = ACTIONS(2226), - [anon_sym_make] = ACTIONS(2226), - [anon_sym_while] = ACTIONS(2226), - [anon_sym_do] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_else] = ACTIONS(2226), - [anon_sym_match] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2226), - [anon_sym_catch] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2226), - [anon_sym_source] = ACTIONS(2226), - [anon_sym_source_DASHenv] = ACTIONS(2226), - [anon_sym_register] = ACTIONS(2226), - [anon_sym_hide] = ACTIONS(2226), - [anon_sym_hide_DASHenv] = ACTIONS(2226), - [anon_sym_overlay] = ACTIONS(2226), - [anon_sym_as] = ACTIONS(2226), - [anon_sym_LPAREN2] = ACTIONS(2228), - [anon_sym_PLUS2] = ACTIONS(2226), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [aux_sym__val_number_token4] = ACTIONS(2226), - [aux_sym__val_number_token5] = ACTIONS(2226), - [aux_sym__val_number_token6] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2230), + [sym_raw_string_begin] = ACTIONS(1729), }, - [578] = { - [sym_comment] = STATE(578), - [aux_sym__multiple_types_repeat1] = STATE(597), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2324), + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1771), + [aux_sym_cmd_identifier_token3] = ACTIONS(1771), + [aux_sym_cmd_identifier_token4] = ACTIONS(1771), + [aux_sym_cmd_identifier_token5] = ACTIONS(1771), + [aux_sym_cmd_identifier_token6] = ACTIONS(1771), + [aux_sym_cmd_identifier_token7] = ACTIONS(1771), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1771), + [aux_sym_cmd_identifier_token17] = ACTIONS(1771), + [aux_sym_cmd_identifier_token18] = ACTIONS(1771), + [aux_sym_cmd_identifier_token19] = ACTIONS(1771), + [aux_sym_cmd_identifier_token20] = ACTIONS(1771), + [aux_sym_cmd_identifier_token21] = ACTIONS(1771), + [aux_sym_cmd_identifier_token22] = ACTIONS(1771), + [aux_sym_cmd_identifier_token23] = ACTIONS(1771), + [aux_sym_cmd_identifier_token24] = ACTIONS(1771), + [aux_sym_cmd_identifier_token25] = ACTIONS(1771), + [aux_sym_cmd_identifier_token26] = ACTIONS(1771), + [aux_sym_cmd_identifier_token27] = ACTIONS(1771), + [aux_sym_cmd_identifier_token28] = ACTIONS(1771), + [aux_sym_cmd_identifier_token29] = ACTIONS(1771), + [aux_sym_cmd_identifier_token30] = ACTIONS(1771), + [aux_sym_cmd_identifier_token31] = ACTIONS(1771), + [aux_sym_cmd_identifier_token32] = ACTIONS(1771), + [aux_sym_cmd_identifier_token33] = ACTIONS(1771), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1771), + [aux_sym_cmd_identifier_token36] = ACTIONS(1771), + [aux_sym_cmd_identifier_token37] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [sym__entry_separator] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), + [sym_raw_string_begin] = ACTIONS(1773), }, - [579] = { - [sym_comment] = STATE(579), - [aux_sym__multiple_types_repeat1] = STATE(597), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2324), + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [sym__entry_separator] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1786), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), - }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1054), - [aux_sym_cmd_identifier_token3] = ACTIONS(1054), - [aux_sym_cmd_identifier_token4] = ACTIONS(1054), - [aux_sym_cmd_identifier_token5] = ACTIONS(1054), - [aux_sym_cmd_identifier_token6] = ACTIONS(1054), - [aux_sym_cmd_identifier_token7] = ACTIONS(1054), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1054), - [aux_sym_cmd_identifier_token11] = ACTIONS(1054), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1054), - [aux_sym_cmd_identifier_token17] = ACTIONS(1054), - [aux_sym_cmd_identifier_token18] = ACTIONS(1054), - [aux_sym_cmd_identifier_token19] = ACTIONS(1054), - [aux_sym_cmd_identifier_token20] = ACTIONS(1054), - [aux_sym_cmd_identifier_token21] = ACTIONS(1054), - [aux_sym_cmd_identifier_token22] = ACTIONS(1054), - [aux_sym_cmd_identifier_token23] = ACTIONS(1054), - [aux_sym_cmd_identifier_token24] = ACTIONS(1054), - [aux_sym_cmd_identifier_token25] = ACTIONS(1054), - [aux_sym_cmd_identifier_token26] = ACTIONS(1054), - [aux_sym_cmd_identifier_token27] = ACTIONS(1054), - [aux_sym_cmd_identifier_token28] = ACTIONS(1054), - [aux_sym_cmd_identifier_token29] = ACTIONS(1054), - [aux_sym_cmd_identifier_token30] = ACTIONS(1054), - [aux_sym_cmd_identifier_token31] = ACTIONS(1054), - [aux_sym_cmd_identifier_token32] = ACTIONS(1054), - [aux_sym_cmd_identifier_token33] = ACTIONS(1054), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1054), - [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [aux_sym_cmd_identifier_token37] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1052), - [aux_sym__val_number_token5] = ACTIONS(1052), - [aux_sym__val_number_token6] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1054), - }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1026), - [anon_sym_alias] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_let_DASHenv] = ACTIONS(1026), - [anon_sym_mut] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [aux_sym_cmd_identifier_token1] = ACTIONS(1026), - [aux_sym_cmd_identifier_token2] = ACTIONS(1032), - [aux_sym_cmd_identifier_token3] = ACTIONS(1032), - [aux_sym_cmd_identifier_token4] = ACTIONS(1032), - [aux_sym_cmd_identifier_token5] = ACTIONS(1032), - [aux_sym_cmd_identifier_token6] = ACTIONS(1032), - [aux_sym_cmd_identifier_token7] = ACTIONS(1032), - [aux_sym_cmd_identifier_token8] = ACTIONS(1026), - [aux_sym_cmd_identifier_token9] = ACTIONS(1026), - [aux_sym_cmd_identifier_token10] = ACTIONS(1032), - [aux_sym_cmd_identifier_token11] = ACTIONS(1032), - [aux_sym_cmd_identifier_token12] = ACTIONS(1026), - [aux_sym_cmd_identifier_token13] = ACTIONS(1026), - [aux_sym_cmd_identifier_token14] = ACTIONS(1026), - [aux_sym_cmd_identifier_token15] = ACTIONS(1026), - [aux_sym_cmd_identifier_token16] = ACTIONS(1032), - [aux_sym_cmd_identifier_token17] = ACTIONS(1032), - [aux_sym_cmd_identifier_token18] = ACTIONS(1032), - [aux_sym_cmd_identifier_token19] = ACTIONS(1032), - [aux_sym_cmd_identifier_token20] = ACTIONS(1032), - [aux_sym_cmd_identifier_token21] = ACTIONS(1032), - [aux_sym_cmd_identifier_token22] = ACTIONS(1032), - [aux_sym_cmd_identifier_token23] = ACTIONS(1032), - [aux_sym_cmd_identifier_token24] = ACTIONS(1032), - [aux_sym_cmd_identifier_token25] = ACTIONS(1032), - [aux_sym_cmd_identifier_token26] = ACTIONS(1032), - [aux_sym_cmd_identifier_token27] = ACTIONS(1032), - [aux_sym_cmd_identifier_token28] = ACTIONS(1032), - [aux_sym_cmd_identifier_token29] = ACTIONS(1032), - [aux_sym_cmd_identifier_token30] = ACTIONS(1032), - [aux_sym_cmd_identifier_token31] = ACTIONS(1032), - [aux_sym_cmd_identifier_token32] = ACTIONS(1032), - [aux_sym_cmd_identifier_token33] = ACTIONS(1032), - [aux_sym_cmd_identifier_token34] = ACTIONS(1026), - [aux_sym_cmd_identifier_token35] = ACTIONS(1032), - [aux_sym_cmd_identifier_token36] = ACTIONS(1032), - [aux_sym_cmd_identifier_token37] = ACTIONS(1032), - [aux_sym_cmd_identifier_token38] = ACTIONS(1026), - [aux_sym_cmd_identifier_token39] = ACTIONS(1032), - [aux_sym_cmd_identifier_token40] = ACTIONS(1032), - [anon_sym_def] = ACTIONS(1026), - [anon_sym_export_DASHenv] = ACTIONS(1026), - [anon_sym_extern] = ACTIONS(1026), - [anon_sym_module] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1032), - [anon_sym_error] = ACTIONS(1026), - [anon_sym_DASH2] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_in2] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_make] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [anon_sym_do] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_else] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_try] = ACTIONS(1026), - [anon_sym_catch] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_source] = ACTIONS(1026), - [anon_sym_source_DASHenv] = ACTIONS(1026), - [anon_sym_register] = ACTIONS(1026), - [anon_sym_hide] = ACTIONS(1026), - [anon_sym_hide_DASHenv] = ACTIONS(1026), - [anon_sym_overlay] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_PLUS2] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1032), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1032), - [aux_sym__val_number_decimal_token4] = ACTIONS(1032), - [aux_sym__val_number_token1] = ACTIONS(1032), - [aux_sym__val_number_token2] = ACTIONS(1032), - [aux_sym__val_number_token3] = ACTIONS(1032), - [aux_sym__val_number_token4] = ACTIONS(1026), - [aux_sym__val_number_token5] = ACTIONS(1026), - [aux_sym__val_number_token6] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1032), - [sym__str_single_quotes] = ACTIONS(1032), - [sym__str_back_ticks] = ACTIONS(1032), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1032), - [aux_sym_record_entry_token1] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1032), + [sym_raw_string_begin] = ACTIONS(1788), }, - [582] = { - [sym_comment] = STATE(582), - [aux_sym__multiple_types_repeat1] = STATE(597), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2324), + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [aux_sym__immediate_decimal_token1] = ACTIONS(2267), + [aux_sym__immediate_decimal_token2] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), + [sym_raw_string_begin] = ACTIONS(1729), }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(2334), - [anon_sym_alias] = ACTIONS(2334), - [anon_sym_let] = ACTIONS(2334), - [anon_sym_let_DASHenv] = ACTIONS(2334), - [anon_sym_mut] = ACTIONS(2334), - [anon_sym_const] = ACTIONS(2334), - [aux_sym_cmd_identifier_token1] = ACTIONS(2334), - [aux_sym_cmd_identifier_token2] = ACTIONS(2334), - [aux_sym_cmd_identifier_token3] = ACTIONS(2334), - [aux_sym_cmd_identifier_token4] = ACTIONS(2334), - [aux_sym_cmd_identifier_token5] = ACTIONS(2334), - [aux_sym_cmd_identifier_token6] = ACTIONS(2334), - [aux_sym_cmd_identifier_token7] = ACTIONS(2334), - [aux_sym_cmd_identifier_token8] = ACTIONS(2334), - [aux_sym_cmd_identifier_token9] = ACTIONS(2334), - [aux_sym_cmd_identifier_token10] = ACTIONS(2334), - [aux_sym_cmd_identifier_token11] = ACTIONS(2334), - [aux_sym_cmd_identifier_token12] = ACTIONS(2334), - [aux_sym_cmd_identifier_token13] = ACTIONS(2334), - [aux_sym_cmd_identifier_token14] = ACTIONS(2334), - [aux_sym_cmd_identifier_token15] = ACTIONS(2334), - [aux_sym_cmd_identifier_token16] = ACTIONS(2334), - [aux_sym_cmd_identifier_token17] = ACTIONS(2334), - [aux_sym_cmd_identifier_token18] = ACTIONS(2334), - [aux_sym_cmd_identifier_token19] = ACTIONS(2334), - [aux_sym_cmd_identifier_token20] = ACTIONS(2334), - [aux_sym_cmd_identifier_token21] = ACTIONS(2334), - [aux_sym_cmd_identifier_token22] = ACTIONS(2334), - [aux_sym_cmd_identifier_token23] = ACTIONS(2334), - [aux_sym_cmd_identifier_token24] = ACTIONS(2334), - [aux_sym_cmd_identifier_token25] = ACTIONS(2334), - [aux_sym_cmd_identifier_token26] = ACTIONS(2334), - [aux_sym_cmd_identifier_token27] = ACTIONS(2334), - [aux_sym_cmd_identifier_token28] = ACTIONS(2334), - [aux_sym_cmd_identifier_token29] = ACTIONS(2334), - [aux_sym_cmd_identifier_token30] = ACTIONS(2334), - [aux_sym_cmd_identifier_token31] = ACTIONS(2334), - [aux_sym_cmd_identifier_token32] = ACTIONS(2334), - [aux_sym_cmd_identifier_token33] = ACTIONS(2334), - [aux_sym_cmd_identifier_token34] = ACTIONS(2334), - [aux_sym_cmd_identifier_token35] = ACTIONS(2334), - [aux_sym_cmd_identifier_token36] = ACTIONS(2334), - [aux_sym_cmd_identifier_token37] = ACTIONS(2334), - [aux_sym_cmd_identifier_token38] = ACTIONS(2334), - [aux_sym_cmd_identifier_token39] = ACTIONS(2334), - [aux_sym_cmd_identifier_token40] = ACTIONS(2334), - [anon_sym_def] = ACTIONS(2334), - [anon_sym_export_DASHenv] = ACTIONS(2334), - [anon_sym_extern] = ACTIONS(2334), - [anon_sym_module] = ACTIONS(2334), - [anon_sym_use] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_DOLLAR] = ACTIONS(2334), - [anon_sym_error] = ACTIONS(2334), - [anon_sym_DASH2] = ACTIONS(2334), - [anon_sym_break] = ACTIONS(2334), - [anon_sym_continue] = ACTIONS(2334), - [anon_sym_for] = ACTIONS(2334), - [anon_sym_in2] = ACTIONS(2334), - [anon_sym_loop] = ACTIONS(2334), - [anon_sym_make] = ACTIONS(2334), - [anon_sym_while] = ACTIONS(2334), - [anon_sym_do] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2334), - [anon_sym_else] = ACTIONS(2334), - [anon_sym_match] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2334), - [anon_sym_catch] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2334), - [anon_sym_source] = ACTIONS(2334), - [anon_sym_source_DASHenv] = ACTIONS(2334), - [anon_sym_register] = ACTIONS(2334), - [anon_sym_hide] = ACTIONS(2334), - [anon_sym_hide_DASHenv] = ACTIONS(2334), - [anon_sym_overlay] = ACTIONS(2334), - [anon_sym_as] = ACTIONS(2334), - [anon_sym_LPAREN2] = ACTIONS(2336), - [anon_sym_PLUS2] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), - [aux_sym__val_number_decimal_token1] = ACTIONS(2334), - [aux_sym__val_number_decimal_token2] = ACTIONS(2334), - [aux_sym__val_number_decimal_token3] = ACTIONS(2334), - [aux_sym__val_number_decimal_token4] = ACTIONS(2334), - [aux_sym__val_number_token1] = ACTIONS(2334), - [aux_sym__val_number_token2] = ACTIONS(2334), - [aux_sym__val_number_token3] = ACTIONS(2334), - [aux_sym__val_number_token4] = ACTIONS(2334), - [aux_sym__val_number_token5] = ACTIONS(2334), - [aux_sym__val_number_token6] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2334), - [sym__str_single_quotes] = ACTIONS(2334), - [sym__str_back_ticks] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), - [sym__entry_separator] = ACTIONS(2336), + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(2271), + [aux_sym__immediate_decimal_token2] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2336), + [sym_raw_string_begin] = ACTIONS(1737), }, - [584] = { - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_alias] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_let_DASHenv] = ACTIONS(1008), - [anon_sym_mut] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [aux_sym_cmd_identifier_token1] = ACTIONS(1008), - [aux_sym_cmd_identifier_token2] = ACTIONS(1010), - [aux_sym_cmd_identifier_token3] = ACTIONS(1010), - [aux_sym_cmd_identifier_token4] = ACTIONS(1010), - [aux_sym_cmd_identifier_token5] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [aux_sym_cmd_identifier_token7] = ACTIONS(1010), - [aux_sym_cmd_identifier_token8] = ACTIONS(1008), - [aux_sym_cmd_identifier_token9] = ACTIONS(1008), - [aux_sym_cmd_identifier_token10] = ACTIONS(1010), - [aux_sym_cmd_identifier_token11] = ACTIONS(1010), - [aux_sym_cmd_identifier_token12] = ACTIONS(1008), - [aux_sym_cmd_identifier_token13] = ACTIONS(1008), - [aux_sym_cmd_identifier_token14] = ACTIONS(1008), - [aux_sym_cmd_identifier_token15] = ACTIONS(1008), - [aux_sym_cmd_identifier_token16] = ACTIONS(1010), - [aux_sym_cmd_identifier_token17] = ACTIONS(1010), - [aux_sym_cmd_identifier_token18] = ACTIONS(1010), - [aux_sym_cmd_identifier_token19] = ACTIONS(1010), - [aux_sym_cmd_identifier_token20] = ACTIONS(1010), - [aux_sym_cmd_identifier_token21] = ACTIONS(1010), - [aux_sym_cmd_identifier_token22] = ACTIONS(1010), - [aux_sym_cmd_identifier_token23] = ACTIONS(1010), - [aux_sym_cmd_identifier_token24] = ACTIONS(1010), - [aux_sym_cmd_identifier_token25] = ACTIONS(1010), - [aux_sym_cmd_identifier_token26] = ACTIONS(1010), - [aux_sym_cmd_identifier_token27] = ACTIONS(1010), - [aux_sym_cmd_identifier_token28] = ACTIONS(1010), - [aux_sym_cmd_identifier_token29] = ACTIONS(1010), - [aux_sym_cmd_identifier_token30] = ACTIONS(1010), - [aux_sym_cmd_identifier_token31] = ACTIONS(1010), - [aux_sym_cmd_identifier_token32] = ACTIONS(1010), - [aux_sym_cmd_identifier_token33] = ACTIONS(1010), - [aux_sym_cmd_identifier_token34] = ACTIONS(1008), - [aux_sym_cmd_identifier_token35] = ACTIONS(1010), - [aux_sym_cmd_identifier_token36] = ACTIONS(1010), - [aux_sym_cmd_identifier_token37] = ACTIONS(1010), - [aux_sym_cmd_identifier_token38] = ACTIONS(1008), - [aux_sym_cmd_identifier_token39] = ACTIONS(1010), - [aux_sym_cmd_identifier_token40] = ACTIONS(1010), - [anon_sym_def] = ACTIONS(1008), - [anon_sym_export_DASHenv] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1010), - [anon_sym_error] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_make] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_do] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_else] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1008), - [anon_sym_catch] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_source] = ACTIONS(1008), - [anon_sym_source_DASHenv] = ACTIONS(1008), - [anon_sym_register] = ACTIONS(1008), - [anon_sym_hide] = ACTIONS(1008), - [anon_sym_hide_DASHenv] = ACTIONS(1008), - [anon_sym_overlay] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(2338), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1008), - [aux_sym__val_number_token5] = ACTIONS(1008), - [aux_sym__val_number_token6] = ACTIONS(1008), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2140), + [aux_sym_cmd_identifier_token3] = ACTIONS(2140), + [aux_sym_cmd_identifier_token4] = ACTIONS(2140), + [aux_sym_cmd_identifier_token5] = ACTIONS(2140), + [aux_sym_cmd_identifier_token6] = ACTIONS(2140), + [aux_sym_cmd_identifier_token7] = ACTIONS(2140), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2140), + [aux_sym_cmd_identifier_token11] = ACTIONS(2140), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2140), + [aux_sym_cmd_identifier_token17] = ACTIONS(2140), + [aux_sym_cmd_identifier_token18] = ACTIONS(2140), + [aux_sym_cmd_identifier_token19] = ACTIONS(2140), + [aux_sym_cmd_identifier_token20] = ACTIONS(2140), + [aux_sym_cmd_identifier_token21] = ACTIONS(2140), + [aux_sym_cmd_identifier_token22] = ACTIONS(2140), + [aux_sym_cmd_identifier_token23] = ACTIONS(2140), + [aux_sym_cmd_identifier_token24] = ACTIONS(2140), + [aux_sym_cmd_identifier_token25] = ACTIONS(2140), + [aux_sym_cmd_identifier_token26] = ACTIONS(2140), + [aux_sym_cmd_identifier_token27] = ACTIONS(2140), + [aux_sym_cmd_identifier_token28] = ACTIONS(2140), + [aux_sym_cmd_identifier_token29] = ACTIONS(2140), + [aux_sym_cmd_identifier_token30] = ACTIONS(2140), + [aux_sym_cmd_identifier_token31] = ACTIONS(2140), + [aux_sym_cmd_identifier_token32] = ACTIONS(2140), + [aux_sym_cmd_identifier_token33] = ACTIONS(2140), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2140), + [aux_sym_cmd_identifier_token36] = ACTIONS(2140), + [aux_sym_cmd_identifier_token37] = ACTIONS(2140), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2140), + [aux_sym_cmd_identifier_token40] = ACTIONS(2140), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_DOLLAR] = ACTIONS(2140), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), + [anon_sym_DOT_DOT2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2196), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2140), + [aux_sym__val_number_decimal_token3] = ACTIONS(2140), + [aux_sym__val_number_decimal_token4] = ACTIONS(2140), + [aux_sym__val_number_token1] = ACTIONS(2140), + [aux_sym__val_number_token2] = ACTIONS(2140), + [aux_sym__val_number_token3] = ACTIONS(2140), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2140), + [sym__str_single_quotes] = ACTIONS(2140), + [sym__str_back_ticks] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2140), }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(990), - [anon_sym_alias] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_let_DASHenv] = ACTIONS(990), - [anon_sym_mut] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [aux_sym_cmd_identifier_token1] = ACTIONS(990), - [aux_sym_cmd_identifier_token2] = ACTIONS(992), - [aux_sym_cmd_identifier_token3] = ACTIONS(992), - [aux_sym_cmd_identifier_token4] = ACTIONS(992), - [aux_sym_cmd_identifier_token5] = ACTIONS(992), - [aux_sym_cmd_identifier_token6] = ACTIONS(992), - [aux_sym_cmd_identifier_token7] = ACTIONS(992), - [aux_sym_cmd_identifier_token8] = ACTIONS(990), - [aux_sym_cmd_identifier_token9] = ACTIONS(990), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(990), - [aux_sym_cmd_identifier_token13] = ACTIONS(990), - [aux_sym_cmd_identifier_token14] = ACTIONS(990), - [aux_sym_cmd_identifier_token15] = ACTIONS(990), - [aux_sym_cmd_identifier_token16] = ACTIONS(992), - [aux_sym_cmd_identifier_token17] = ACTIONS(992), - [aux_sym_cmd_identifier_token18] = ACTIONS(992), - [aux_sym_cmd_identifier_token19] = ACTIONS(992), - [aux_sym_cmd_identifier_token20] = ACTIONS(992), - [aux_sym_cmd_identifier_token21] = ACTIONS(992), - [aux_sym_cmd_identifier_token22] = ACTIONS(992), - [aux_sym_cmd_identifier_token23] = ACTIONS(992), - [aux_sym_cmd_identifier_token24] = ACTIONS(992), - [aux_sym_cmd_identifier_token25] = ACTIONS(992), - [aux_sym_cmd_identifier_token26] = ACTIONS(992), - [aux_sym_cmd_identifier_token27] = ACTIONS(992), - [aux_sym_cmd_identifier_token28] = ACTIONS(992), - [aux_sym_cmd_identifier_token29] = ACTIONS(992), - [aux_sym_cmd_identifier_token30] = ACTIONS(992), - [aux_sym_cmd_identifier_token31] = ACTIONS(992), - [aux_sym_cmd_identifier_token32] = ACTIONS(992), - [aux_sym_cmd_identifier_token33] = ACTIONS(992), - [aux_sym_cmd_identifier_token34] = ACTIONS(990), - [aux_sym_cmd_identifier_token35] = ACTIONS(992), - [aux_sym_cmd_identifier_token36] = ACTIONS(992), - [aux_sym_cmd_identifier_token37] = ACTIONS(992), - [aux_sym_cmd_identifier_token38] = ACTIONS(990), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(990), - [anon_sym_export_DASHenv] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_error] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_make] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_do] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_source] = ACTIONS(990), - [anon_sym_source_DASHenv] = ACTIONS(990), - [anon_sym_register] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_hide_DASHenv] = ACTIONS(990), - [anon_sym_overlay] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(2340), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2049), + [aux_sym_cmd_identifier_token4] = ACTIONS(2049), + [aux_sym_cmd_identifier_token5] = ACTIONS(2049), + [aux_sym_cmd_identifier_token6] = ACTIONS(2049), + [aux_sym_cmd_identifier_token7] = ACTIONS(2049), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2049), + [aux_sym_cmd_identifier_token11] = ACTIONS(2049), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2049), + [aux_sym_cmd_identifier_token17] = ACTIONS(2049), + [aux_sym_cmd_identifier_token18] = ACTIONS(2049), + [aux_sym_cmd_identifier_token19] = ACTIONS(2049), + [aux_sym_cmd_identifier_token20] = ACTIONS(2049), + [aux_sym_cmd_identifier_token21] = ACTIONS(2049), + [aux_sym_cmd_identifier_token22] = ACTIONS(2049), + [aux_sym_cmd_identifier_token23] = ACTIONS(2049), + [aux_sym_cmd_identifier_token24] = ACTIONS(2049), + [aux_sym_cmd_identifier_token25] = ACTIONS(2049), + [aux_sym_cmd_identifier_token26] = ACTIONS(2049), + [aux_sym_cmd_identifier_token27] = ACTIONS(2049), + [aux_sym_cmd_identifier_token28] = ACTIONS(2049), + [aux_sym_cmd_identifier_token29] = ACTIONS(2049), + [aux_sym_cmd_identifier_token30] = ACTIONS(2049), + [aux_sym_cmd_identifier_token31] = ACTIONS(2049), + [aux_sym_cmd_identifier_token32] = ACTIONS(2049), + [aux_sym_cmd_identifier_token33] = ACTIONS(2049), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2049), + [aux_sym_cmd_identifier_token36] = ACTIONS(2049), + [aux_sym_cmd_identifier_token37] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2196), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), - }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(2254), - [anon_sym_alias] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_let_DASHenv] = ACTIONS(2254), - [anon_sym_mut] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [aux_sym_cmd_identifier_token1] = ACTIONS(2254), - [aux_sym_cmd_identifier_token2] = ACTIONS(2254), - [aux_sym_cmd_identifier_token3] = ACTIONS(2254), - [aux_sym_cmd_identifier_token4] = ACTIONS(2254), - [aux_sym_cmd_identifier_token5] = ACTIONS(2254), - [aux_sym_cmd_identifier_token6] = ACTIONS(2254), - [aux_sym_cmd_identifier_token7] = ACTIONS(2254), - [aux_sym_cmd_identifier_token8] = ACTIONS(2254), - [aux_sym_cmd_identifier_token9] = ACTIONS(2254), - [aux_sym_cmd_identifier_token10] = ACTIONS(2254), - [aux_sym_cmd_identifier_token11] = ACTIONS(2254), - [aux_sym_cmd_identifier_token12] = ACTIONS(2254), - [aux_sym_cmd_identifier_token13] = ACTIONS(2254), - [aux_sym_cmd_identifier_token14] = ACTIONS(2254), - [aux_sym_cmd_identifier_token15] = ACTIONS(2254), - [aux_sym_cmd_identifier_token16] = ACTIONS(2254), - [aux_sym_cmd_identifier_token17] = ACTIONS(2254), - [aux_sym_cmd_identifier_token18] = ACTIONS(2254), - [aux_sym_cmd_identifier_token19] = ACTIONS(2254), - [aux_sym_cmd_identifier_token20] = ACTIONS(2254), - [aux_sym_cmd_identifier_token21] = ACTIONS(2254), - [aux_sym_cmd_identifier_token22] = ACTIONS(2254), - [aux_sym_cmd_identifier_token23] = ACTIONS(2254), - [aux_sym_cmd_identifier_token24] = ACTIONS(2254), - [aux_sym_cmd_identifier_token25] = ACTIONS(2254), - [aux_sym_cmd_identifier_token26] = ACTIONS(2254), - [aux_sym_cmd_identifier_token27] = ACTIONS(2254), - [aux_sym_cmd_identifier_token28] = ACTIONS(2254), - [aux_sym_cmd_identifier_token29] = ACTIONS(2254), - [aux_sym_cmd_identifier_token30] = ACTIONS(2254), - [aux_sym_cmd_identifier_token31] = ACTIONS(2254), - [aux_sym_cmd_identifier_token32] = ACTIONS(2254), - [aux_sym_cmd_identifier_token33] = ACTIONS(2254), - [aux_sym_cmd_identifier_token34] = ACTIONS(2254), - [aux_sym_cmd_identifier_token35] = ACTIONS(2254), - [aux_sym_cmd_identifier_token36] = ACTIONS(2254), - [aux_sym_cmd_identifier_token37] = ACTIONS(2254), - [aux_sym_cmd_identifier_token38] = ACTIONS(2254), - [aux_sym_cmd_identifier_token39] = ACTIONS(2254), - [aux_sym_cmd_identifier_token40] = ACTIONS(2254), - [anon_sym_def] = ACTIONS(2254), - [anon_sym_export_DASHenv] = ACTIONS(2254), - [anon_sym_extern] = ACTIONS(2254), - [anon_sym_module] = ACTIONS(2254), - [anon_sym_use] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_error] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_in2] = ACTIONS(2254), - [anon_sym_loop] = ACTIONS(2254), - [anon_sym_make] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_do] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_else] = ACTIONS(2254), - [anon_sym_match] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2254), - [anon_sym_catch] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_source] = ACTIONS(2254), - [anon_sym_source_DASHenv] = ACTIONS(2254), - [anon_sym_register] = ACTIONS(2254), - [anon_sym_hide] = ACTIONS(2254), - [anon_sym_hide_DASHenv] = ACTIONS(2254), - [anon_sym_overlay] = ACTIONS(2254), - [anon_sym_as] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2256), - [anon_sym_PLUS2] = ACTIONS(2254), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2258), - [sym__str_single_quotes] = ACTIONS(2258), - [sym__str_back_ticks] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2258), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2258), + [sym_raw_string_begin] = ACTIONS(2049), }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(2272), - [anon_sym_alias] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_let_DASHenv] = ACTIONS(2272), - [anon_sym_mut] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [aux_sym_cmd_identifier_token1] = ACTIONS(2272), - [aux_sym_cmd_identifier_token2] = ACTIONS(2272), - [aux_sym_cmd_identifier_token3] = ACTIONS(2272), - [aux_sym_cmd_identifier_token4] = ACTIONS(2272), - [aux_sym_cmd_identifier_token5] = ACTIONS(2272), - [aux_sym_cmd_identifier_token6] = ACTIONS(2272), - [aux_sym_cmd_identifier_token7] = ACTIONS(2272), - [aux_sym_cmd_identifier_token8] = ACTIONS(2272), - [aux_sym_cmd_identifier_token9] = ACTIONS(2272), - [aux_sym_cmd_identifier_token10] = ACTIONS(2272), - [aux_sym_cmd_identifier_token11] = ACTIONS(2272), - [aux_sym_cmd_identifier_token12] = ACTIONS(2272), - [aux_sym_cmd_identifier_token13] = ACTIONS(2272), - [aux_sym_cmd_identifier_token14] = ACTIONS(2272), - [aux_sym_cmd_identifier_token15] = ACTIONS(2272), - [aux_sym_cmd_identifier_token16] = ACTIONS(2272), - [aux_sym_cmd_identifier_token17] = ACTIONS(2272), - [aux_sym_cmd_identifier_token18] = ACTIONS(2272), - [aux_sym_cmd_identifier_token19] = ACTIONS(2272), - [aux_sym_cmd_identifier_token20] = ACTIONS(2272), - [aux_sym_cmd_identifier_token21] = ACTIONS(2272), - [aux_sym_cmd_identifier_token22] = ACTIONS(2272), - [aux_sym_cmd_identifier_token23] = ACTIONS(2272), - [aux_sym_cmd_identifier_token24] = ACTIONS(2272), - [aux_sym_cmd_identifier_token25] = ACTIONS(2272), - [aux_sym_cmd_identifier_token26] = ACTIONS(2272), - [aux_sym_cmd_identifier_token27] = ACTIONS(2272), - [aux_sym_cmd_identifier_token28] = ACTIONS(2272), - [aux_sym_cmd_identifier_token29] = ACTIONS(2272), - [aux_sym_cmd_identifier_token30] = ACTIONS(2272), - [aux_sym_cmd_identifier_token31] = ACTIONS(2272), - [aux_sym_cmd_identifier_token32] = ACTIONS(2272), - [aux_sym_cmd_identifier_token33] = ACTIONS(2272), - [aux_sym_cmd_identifier_token34] = ACTIONS(2272), - [aux_sym_cmd_identifier_token35] = ACTIONS(2272), - [aux_sym_cmd_identifier_token36] = ACTIONS(2272), - [aux_sym_cmd_identifier_token37] = ACTIONS(2272), - [aux_sym_cmd_identifier_token38] = ACTIONS(2272), - [aux_sym_cmd_identifier_token39] = ACTIONS(2272), - [aux_sym_cmd_identifier_token40] = ACTIONS(2272), - [anon_sym_def] = ACTIONS(2272), - [anon_sym_export_DASHenv] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_module] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_error] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_make] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_do] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_else] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2272), - [anon_sym_catch] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_source] = ACTIONS(2272), - [anon_sym_source_DASHenv] = ACTIONS(2272), - [anon_sym_register] = ACTIONS(2272), - [anon_sym_hide] = ACTIONS(2272), - [anon_sym_hide_DASHenv] = ACTIONS(2272), - [anon_sym_overlay] = ACTIONS(2272), - [anon_sym_as] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2274), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym__str_single_quotes] = ACTIONS(2274), - [sym__str_back_ticks] = ACTIONS(2274), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2274), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2274), + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2053), + [aux_sym_cmd_identifier_token3] = ACTIONS(2053), + [aux_sym_cmd_identifier_token4] = ACTIONS(2053), + [aux_sym_cmd_identifier_token5] = ACTIONS(2053), + [aux_sym_cmd_identifier_token6] = ACTIONS(2053), + [aux_sym_cmd_identifier_token7] = ACTIONS(2053), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2053), + [aux_sym_cmd_identifier_token11] = ACTIONS(2053), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2053), + [aux_sym_cmd_identifier_token17] = ACTIONS(2053), + [aux_sym_cmd_identifier_token18] = ACTIONS(2053), + [aux_sym_cmd_identifier_token19] = ACTIONS(2053), + [aux_sym_cmd_identifier_token20] = ACTIONS(2053), + [aux_sym_cmd_identifier_token21] = ACTIONS(2053), + [aux_sym_cmd_identifier_token22] = ACTIONS(2053), + [aux_sym_cmd_identifier_token23] = ACTIONS(2053), + [aux_sym_cmd_identifier_token24] = ACTIONS(2053), + [aux_sym_cmd_identifier_token25] = ACTIONS(2053), + [aux_sym_cmd_identifier_token26] = ACTIONS(2053), + [aux_sym_cmd_identifier_token27] = ACTIONS(2053), + [aux_sym_cmd_identifier_token28] = ACTIONS(2053), + [aux_sym_cmd_identifier_token29] = ACTIONS(2053), + [aux_sym_cmd_identifier_token30] = ACTIONS(2053), + [aux_sym_cmd_identifier_token31] = ACTIONS(2053), + [aux_sym_cmd_identifier_token32] = ACTIONS(2053), + [aux_sym_cmd_identifier_token33] = ACTIONS(2053), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2053), + [aux_sym_cmd_identifier_token36] = ACTIONS(2053), + [aux_sym_cmd_identifier_token37] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT_DOT2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2196), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), }, - [588] = { - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2234), - [anon_sym_alias] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_let_DASHenv] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [aux_sym_cmd_identifier_token1] = ACTIONS(2234), - [aux_sym_cmd_identifier_token2] = ACTIONS(2234), - [aux_sym_cmd_identifier_token3] = ACTIONS(2234), - [aux_sym_cmd_identifier_token4] = ACTIONS(2234), - [aux_sym_cmd_identifier_token5] = ACTIONS(2234), - [aux_sym_cmd_identifier_token6] = ACTIONS(2234), - [aux_sym_cmd_identifier_token7] = ACTIONS(2234), - [aux_sym_cmd_identifier_token8] = ACTIONS(2234), - [aux_sym_cmd_identifier_token9] = ACTIONS(2234), - [aux_sym_cmd_identifier_token10] = ACTIONS(2234), - [aux_sym_cmd_identifier_token11] = ACTIONS(2234), - [aux_sym_cmd_identifier_token12] = ACTIONS(2234), - [aux_sym_cmd_identifier_token13] = ACTIONS(2234), - [aux_sym_cmd_identifier_token14] = ACTIONS(2234), - [aux_sym_cmd_identifier_token15] = ACTIONS(2234), - [aux_sym_cmd_identifier_token16] = ACTIONS(2234), - [aux_sym_cmd_identifier_token17] = ACTIONS(2234), - [aux_sym_cmd_identifier_token18] = ACTIONS(2234), - [aux_sym_cmd_identifier_token19] = ACTIONS(2234), - [aux_sym_cmd_identifier_token20] = ACTIONS(2234), - [aux_sym_cmd_identifier_token21] = ACTIONS(2234), - [aux_sym_cmd_identifier_token22] = ACTIONS(2234), - [aux_sym_cmd_identifier_token23] = ACTIONS(2234), - [aux_sym_cmd_identifier_token24] = ACTIONS(2234), - [aux_sym_cmd_identifier_token25] = ACTIONS(2234), - [aux_sym_cmd_identifier_token26] = ACTIONS(2234), - [aux_sym_cmd_identifier_token27] = ACTIONS(2234), - [aux_sym_cmd_identifier_token28] = ACTIONS(2234), - [aux_sym_cmd_identifier_token29] = ACTIONS(2234), - [aux_sym_cmd_identifier_token30] = ACTIONS(2234), - [aux_sym_cmd_identifier_token31] = ACTIONS(2234), - [aux_sym_cmd_identifier_token32] = ACTIONS(2234), - [aux_sym_cmd_identifier_token33] = ACTIONS(2234), - [aux_sym_cmd_identifier_token34] = ACTIONS(2234), - [aux_sym_cmd_identifier_token35] = ACTIONS(2234), - [aux_sym_cmd_identifier_token36] = ACTIONS(2234), - [aux_sym_cmd_identifier_token37] = ACTIONS(2234), - [aux_sym_cmd_identifier_token38] = ACTIONS(2234), - [aux_sym_cmd_identifier_token39] = ACTIONS(2234), - [aux_sym_cmd_identifier_token40] = ACTIONS(2234), - [anon_sym_def] = ACTIONS(2234), - [anon_sym_export_DASHenv] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_module] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_error] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_make] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_do] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_else] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2234), - [anon_sym_catch] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_source] = ACTIONS(2234), - [anon_sym_source_DASHenv] = ACTIONS(2234), - [anon_sym_register] = ACTIONS(2234), - [anon_sym_hide] = ACTIONS(2234), - [anon_sym_hide_DASHenv] = ACTIONS(2234), - [anon_sym_overlay] = ACTIONS(2234), - [anon_sym_as] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2238), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2240), + [551] = { + [sym__expr_parenthesized_immediate] = STATE(7301), + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2138), + [aux_sym_cmd_identifier_token3] = ACTIONS(2138), + [aux_sym_cmd_identifier_token4] = ACTIONS(2138), + [aux_sym_cmd_identifier_token5] = ACTIONS(2138), + [aux_sym_cmd_identifier_token6] = ACTIONS(2138), + [aux_sym_cmd_identifier_token7] = ACTIONS(2138), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2138), + [aux_sym_cmd_identifier_token11] = ACTIONS(2138), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2138), + [aux_sym_cmd_identifier_token17] = ACTIONS(2138), + [aux_sym_cmd_identifier_token18] = ACTIONS(2138), + [aux_sym_cmd_identifier_token19] = ACTIONS(2138), + [aux_sym_cmd_identifier_token20] = ACTIONS(2138), + [aux_sym_cmd_identifier_token21] = ACTIONS(2138), + [aux_sym_cmd_identifier_token22] = ACTIONS(2138), + [aux_sym_cmd_identifier_token23] = ACTIONS(2138), + [aux_sym_cmd_identifier_token24] = ACTIONS(2138), + [aux_sym_cmd_identifier_token25] = ACTIONS(2138), + [aux_sym_cmd_identifier_token26] = ACTIONS(2138), + [aux_sym_cmd_identifier_token27] = ACTIONS(2138), + [aux_sym_cmd_identifier_token28] = ACTIONS(2138), + [aux_sym_cmd_identifier_token29] = ACTIONS(2138), + [aux_sym_cmd_identifier_token30] = ACTIONS(2138), + [aux_sym_cmd_identifier_token31] = ACTIONS(2138), + [aux_sym_cmd_identifier_token32] = ACTIONS(2138), + [aux_sym_cmd_identifier_token33] = ACTIONS(2138), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2138), + [aux_sym_cmd_identifier_token36] = ACTIONS(2138), + [aux_sym_cmd_identifier_token37] = ACTIONS(2138), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2138), + [aux_sym_cmd_identifier_token40] = ACTIONS(2138), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2138), + [aux_sym__val_number_decimal_token3] = ACTIONS(2138), + [aux_sym__val_number_decimal_token4] = ACTIONS(2138), + [aux_sym__val_number_token1] = ACTIONS(2138), + [aux_sym__val_number_token2] = ACTIONS(2138), + [aux_sym__val_number_token3] = ACTIONS(2138), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [sym__str_single_quotes] = ACTIONS(2138), + [sym__str_back_ticks] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), + [sym__entry_separator] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2238), + [sym_raw_string_begin] = ACTIONS(2140), }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), + [552] = { + [sym__expr_parenthesized_immediate] = STATE(7301), + [sym_comment] = STATE(552), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2049), + }, + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(2275), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [sym__entry_separator] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(954), + }, + [554] = { + [sym__expr_parenthesized_immediate] = STATE(7232), + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2140), + [aux_sym_cmd_identifier_token3] = ACTIONS(2140), + [aux_sym_cmd_identifier_token4] = ACTIONS(2140), + [aux_sym_cmd_identifier_token5] = ACTIONS(2140), + [aux_sym_cmd_identifier_token6] = ACTIONS(2140), + [aux_sym_cmd_identifier_token7] = ACTIONS(2140), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2140), + [aux_sym_cmd_identifier_token11] = ACTIONS(2140), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2140), + [aux_sym_cmd_identifier_token17] = ACTIONS(2140), + [aux_sym_cmd_identifier_token18] = ACTIONS(2140), + [aux_sym_cmd_identifier_token19] = ACTIONS(2140), + [aux_sym_cmd_identifier_token20] = ACTIONS(2140), + [aux_sym_cmd_identifier_token21] = ACTIONS(2140), + [aux_sym_cmd_identifier_token22] = ACTIONS(2140), + [aux_sym_cmd_identifier_token23] = ACTIONS(2140), + [aux_sym_cmd_identifier_token24] = ACTIONS(2140), + [aux_sym_cmd_identifier_token25] = ACTIONS(2140), + [aux_sym_cmd_identifier_token26] = ACTIONS(2140), + [aux_sym_cmd_identifier_token27] = ACTIONS(2140), + [aux_sym_cmd_identifier_token28] = ACTIONS(2140), + [aux_sym_cmd_identifier_token29] = ACTIONS(2140), + [aux_sym_cmd_identifier_token30] = ACTIONS(2140), + [aux_sym_cmd_identifier_token31] = ACTIONS(2140), + [aux_sym_cmd_identifier_token32] = ACTIONS(2140), + [aux_sym_cmd_identifier_token33] = ACTIONS(2140), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2140), + [aux_sym_cmd_identifier_token36] = ACTIONS(2140), + [aux_sym_cmd_identifier_token37] = ACTIONS(2140), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2140), + [aux_sym_cmd_identifier_token40] = ACTIONS(2140), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2140), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2140), + [aux_sym__val_number_decimal_token3] = ACTIONS(2140), + [aux_sym__val_number_decimal_token4] = ACTIONS(2140), + [aux_sym__val_number_token1] = ACTIONS(2140), + [aux_sym__val_number_token2] = ACTIONS(2140), + [aux_sym__val_number_token3] = ACTIONS(2140), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2140), + [sym__str_single_quotes] = ACTIONS(2140), + [sym__str_back_ticks] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2140), + }, + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(2214), + [anon_sym_alias] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_let_DASHenv] = ACTIONS(2214), + [anon_sym_mut] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [aux_sym_cmd_identifier_token1] = ACTIONS(2214), + [aux_sym_cmd_identifier_token2] = ACTIONS(2216), + [aux_sym_cmd_identifier_token3] = ACTIONS(2216), + [aux_sym_cmd_identifier_token4] = ACTIONS(2216), + [aux_sym_cmd_identifier_token5] = ACTIONS(2216), + [aux_sym_cmd_identifier_token6] = ACTIONS(2216), + [aux_sym_cmd_identifier_token7] = ACTIONS(2216), + [aux_sym_cmd_identifier_token8] = ACTIONS(2214), + [aux_sym_cmd_identifier_token9] = ACTIONS(2214), + [aux_sym_cmd_identifier_token10] = ACTIONS(2216), + [aux_sym_cmd_identifier_token11] = ACTIONS(2216), + [aux_sym_cmd_identifier_token12] = ACTIONS(2214), + [aux_sym_cmd_identifier_token13] = ACTIONS(2214), + [aux_sym_cmd_identifier_token14] = ACTIONS(2214), + [aux_sym_cmd_identifier_token15] = ACTIONS(2214), + [aux_sym_cmd_identifier_token16] = ACTIONS(2216), + [aux_sym_cmd_identifier_token17] = ACTIONS(2216), + [aux_sym_cmd_identifier_token18] = ACTIONS(2216), + [aux_sym_cmd_identifier_token19] = ACTIONS(2216), + [aux_sym_cmd_identifier_token20] = ACTIONS(2216), + [aux_sym_cmd_identifier_token21] = ACTIONS(2216), + [aux_sym_cmd_identifier_token22] = ACTIONS(2216), + [aux_sym_cmd_identifier_token23] = ACTIONS(2216), + [aux_sym_cmd_identifier_token24] = ACTIONS(2216), + [aux_sym_cmd_identifier_token25] = ACTIONS(2216), + [aux_sym_cmd_identifier_token26] = ACTIONS(2216), + [aux_sym_cmd_identifier_token27] = ACTIONS(2216), + [aux_sym_cmd_identifier_token28] = ACTIONS(2216), + [aux_sym_cmd_identifier_token29] = ACTIONS(2216), + [aux_sym_cmd_identifier_token30] = ACTIONS(2216), + [aux_sym_cmd_identifier_token31] = ACTIONS(2216), + [aux_sym_cmd_identifier_token32] = ACTIONS(2216), + [aux_sym_cmd_identifier_token33] = ACTIONS(2216), + [aux_sym_cmd_identifier_token34] = ACTIONS(2214), + [aux_sym_cmd_identifier_token35] = ACTIONS(2216), + [aux_sym_cmd_identifier_token36] = ACTIONS(2216), + [aux_sym_cmd_identifier_token37] = ACTIONS(2216), + [aux_sym_cmd_identifier_token38] = ACTIONS(2214), + [aux_sym_cmd_identifier_token39] = ACTIONS(2216), + [aux_sym_cmd_identifier_token40] = ACTIONS(2216), + [anon_sym_def] = ACTIONS(2214), + [anon_sym_export_DASHenv] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_module] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_error] = ACTIONS(2214), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_in2] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_make] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_do] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_else] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2214), + [anon_sym_catch] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_source] = ACTIONS(2214), + [anon_sym_source_DASHenv] = ACTIONS(2214), + [anon_sym_register] = ACTIONS(2214), + [anon_sym_hide] = ACTIONS(2214), + [anon_sym_hide_DASHenv] = ACTIONS(2214), + [anon_sym_overlay] = ACTIONS(2214), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_PLUS2] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2214), + [aux_sym__val_number_token5] = ACTIONS(2214), + [aux_sym__val_number_token6] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym__str_single_quotes] = ACTIONS(2216), + [sym__str_back_ticks] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2216), + }, + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(1794), + [anon_sym_alias] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_let_DASHenv] = ACTIONS(1794), + [anon_sym_mut] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [aux_sym_cmd_identifier_token1] = ACTIONS(1794), + [aux_sym_cmd_identifier_token2] = ACTIONS(1802), + [aux_sym_cmd_identifier_token3] = ACTIONS(1802), + [aux_sym_cmd_identifier_token4] = ACTIONS(1802), + [aux_sym_cmd_identifier_token5] = ACTIONS(1802), + [aux_sym_cmd_identifier_token6] = ACTIONS(1802), + [aux_sym_cmd_identifier_token7] = ACTIONS(1802), + [aux_sym_cmd_identifier_token8] = ACTIONS(1794), + [aux_sym_cmd_identifier_token9] = ACTIONS(1794), + [aux_sym_cmd_identifier_token10] = ACTIONS(1802), + [aux_sym_cmd_identifier_token11] = ACTIONS(1802), + [aux_sym_cmd_identifier_token12] = ACTIONS(1794), + [aux_sym_cmd_identifier_token13] = ACTIONS(1794), + [aux_sym_cmd_identifier_token14] = ACTIONS(1794), + [aux_sym_cmd_identifier_token15] = ACTIONS(1794), + [aux_sym_cmd_identifier_token16] = ACTIONS(1802), + [aux_sym_cmd_identifier_token17] = ACTIONS(1802), + [aux_sym_cmd_identifier_token18] = ACTIONS(1802), + [aux_sym_cmd_identifier_token19] = ACTIONS(1802), + [aux_sym_cmd_identifier_token20] = ACTIONS(1802), + [aux_sym_cmd_identifier_token21] = ACTIONS(1802), + [aux_sym_cmd_identifier_token22] = ACTIONS(1802), + [aux_sym_cmd_identifier_token23] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token25] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token27] = ACTIONS(1802), + [aux_sym_cmd_identifier_token28] = ACTIONS(1802), + [aux_sym_cmd_identifier_token29] = ACTIONS(1802), + [aux_sym_cmd_identifier_token30] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1802), + [aux_sym_cmd_identifier_token32] = ACTIONS(1802), + [aux_sym_cmd_identifier_token33] = ACTIONS(1802), + [aux_sym_cmd_identifier_token34] = ACTIONS(1794), + [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token36] = ACTIONS(1802), + [aux_sym_cmd_identifier_token37] = ACTIONS(1802), + [aux_sym_cmd_identifier_token38] = ACTIONS(1794), + [aux_sym_cmd_identifier_token39] = ACTIONS(1802), + [aux_sym_cmd_identifier_token40] = ACTIONS(1802), + [anon_sym_def] = ACTIONS(1794), + [anon_sym_export_DASHenv] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_module] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_error] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_in2] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_make] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_do] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_else] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1794), + [anon_sym_catch] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_source] = ACTIONS(1794), + [anon_sym_source_DASHenv] = ACTIONS(1794), + [anon_sym_register] = ACTIONS(1794), + [anon_sym_hide] = ACTIONS(1794), + [anon_sym_hide_DASHenv] = ACTIONS(1794), + [anon_sym_overlay] = ACTIONS(1794), + [anon_sym_as] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_PLUS2] = ACTIONS(1794), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1794), + [aux_sym__val_number_token5] = ACTIONS(1794), + [aux_sym__val_number_token6] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1802), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1802), + }, + [557] = { + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2222), + [aux_sym_cmd_identifier_token3] = ACTIONS(2222), + [aux_sym_cmd_identifier_token4] = ACTIONS(2222), + [aux_sym_cmd_identifier_token5] = ACTIONS(2222), + [aux_sym_cmd_identifier_token6] = ACTIONS(2222), + [aux_sym_cmd_identifier_token7] = ACTIONS(2222), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2222), + [aux_sym_cmd_identifier_token11] = ACTIONS(2222), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2222), + [aux_sym_cmd_identifier_token17] = ACTIONS(2222), + [aux_sym_cmd_identifier_token18] = ACTIONS(2222), + [aux_sym_cmd_identifier_token19] = ACTIONS(2222), + [aux_sym_cmd_identifier_token20] = ACTIONS(2222), + [aux_sym_cmd_identifier_token21] = ACTIONS(2222), + [aux_sym_cmd_identifier_token22] = ACTIONS(2222), + [aux_sym_cmd_identifier_token23] = ACTIONS(2222), + [aux_sym_cmd_identifier_token24] = ACTIONS(2222), + [aux_sym_cmd_identifier_token25] = ACTIONS(2222), + [aux_sym_cmd_identifier_token26] = ACTIONS(2222), + [aux_sym_cmd_identifier_token27] = ACTIONS(2222), + [aux_sym_cmd_identifier_token28] = ACTIONS(2222), + [aux_sym_cmd_identifier_token29] = ACTIONS(2222), + [aux_sym_cmd_identifier_token30] = ACTIONS(2222), + [aux_sym_cmd_identifier_token31] = ACTIONS(2222), + [aux_sym_cmd_identifier_token32] = ACTIONS(2222), + [aux_sym_cmd_identifier_token33] = ACTIONS(2222), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2222), + [aux_sym_cmd_identifier_token36] = ACTIONS(2222), + [aux_sym_cmd_identifier_token37] = ACTIONS(2222), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2222), + [aux_sym_cmd_identifier_token40] = ACTIONS(2222), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in2] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_PLUS2] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [aux_sym__val_number_token4] = ACTIONS(2218), + [aux_sym__val_number_token5] = ACTIONS(2218), + [aux_sym__val_number_token6] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2222), + }, + [558] = { + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(2261), + [anon_sym_alias] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_let_DASHenv] = ACTIONS(2261), + [anon_sym_mut] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [aux_sym_cmd_identifier_token1] = ACTIONS(2261), + [aux_sym_cmd_identifier_token2] = ACTIONS(2261), + [aux_sym_cmd_identifier_token3] = ACTIONS(2261), + [aux_sym_cmd_identifier_token4] = ACTIONS(2261), + [aux_sym_cmd_identifier_token5] = ACTIONS(2261), + [aux_sym_cmd_identifier_token6] = ACTIONS(2261), + [aux_sym_cmd_identifier_token7] = ACTIONS(2261), + [aux_sym_cmd_identifier_token8] = ACTIONS(2261), + [aux_sym_cmd_identifier_token9] = ACTIONS(2261), + [aux_sym_cmd_identifier_token10] = ACTIONS(2261), + [aux_sym_cmd_identifier_token11] = ACTIONS(2261), + [aux_sym_cmd_identifier_token12] = ACTIONS(2261), + [aux_sym_cmd_identifier_token13] = ACTIONS(2261), + [aux_sym_cmd_identifier_token14] = ACTIONS(2261), + [aux_sym_cmd_identifier_token15] = ACTIONS(2261), + [aux_sym_cmd_identifier_token16] = ACTIONS(2261), + [aux_sym_cmd_identifier_token17] = ACTIONS(2261), + [aux_sym_cmd_identifier_token18] = ACTIONS(2261), + [aux_sym_cmd_identifier_token19] = ACTIONS(2261), + [aux_sym_cmd_identifier_token20] = ACTIONS(2261), + [aux_sym_cmd_identifier_token21] = ACTIONS(2261), + [aux_sym_cmd_identifier_token22] = ACTIONS(2261), + [aux_sym_cmd_identifier_token23] = ACTIONS(2261), + [aux_sym_cmd_identifier_token24] = ACTIONS(2261), + [aux_sym_cmd_identifier_token25] = ACTIONS(2261), + [aux_sym_cmd_identifier_token26] = ACTIONS(2261), + [aux_sym_cmd_identifier_token27] = ACTIONS(2261), + [aux_sym_cmd_identifier_token28] = ACTIONS(2261), + [aux_sym_cmd_identifier_token29] = ACTIONS(2261), + [aux_sym_cmd_identifier_token30] = ACTIONS(2261), + [aux_sym_cmd_identifier_token31] = ACTIONS(2261), + [aux_sym_cmd_identifier_token32] = ACTIONS(2261), + [aux_sym_cmd_identifier_token33] = ACTIONS(2261), + [aux_sym_cmd_identifier_token34] = ACTIONS(2261), + [aux_sym_cmd_identifier_token35] = ACTIONS(2261), + [aux_sym_cmd_identifier_token36] = ACTIONS(2261), + [aux_sym_cmd_identifier_token37] = ACTIONS(2261), + [aux_sym_cmd_identifier_token38] = ACTIONS(2261), + [aux_sym_cmd_identifier_token39] = ACTIONS(2261), + [aux_sym_cmd_identifier_token40] = ACTIONS(2261), + [anon_sym_def] = ACTIONS(2261), + [anon_sym_export_DASHenv] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_module] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_error] = ACTIONS(2261), + [anon_sym_DASH2] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_in2] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_make] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_do] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_else] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_catch] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_source] = ACTIONS(2261), + [anon_sym_source_DASHenv] = ACTIONS(2261), + [anon_sym_register] = ACTIONS(2261), + [anon_sym_hide] = ACTIONS(2261), + [anon_sym_hide_DASHenv] = ACTIONS(2261), + [anon_sym_overlay] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_LPAREN2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2261), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [aux_sym__val_number_token4] = ACTIONS(2261), + [aux_sym__val_number_token5] = ACTIONS(2261), + [aux_sym__val_number_token6] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2263), + [sym__str_single_quotes] = ACTIONS(2263), + [sym__str_back_ticks] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2263), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2263), + }, + [559] = { + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(2224), + [anon_sym_alias] = ACTIONS(2224), + [anon_sym_let] = ACTIONS(2224), + [anon_sym_let_DASHenv] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [aux_sym_cmd_identifier_token1] = ACTIONS(2224), + [aux_sym_cmd_identifier_token2] = ACTIONS(2228), + [aux_sym_cmd_identifier_token3] = ACTIONS(2228), + [aux_sym_cmd_identifier_token4] = ACTIONS(2228), + [aux_sym_cmd_identifier_token5] = ACTIONS(2228), + [aux_sym_cmd_identifier_token6] = ACTIONS(2228), + [aux_sym_cmd_identifier_token7] = ACTIONS(2228), + [aux_sym_cmd_identifier_token8] = ACTIONS(2224), + [aux_sym_cmd_identifier_token9] = ACTIONS(2224), + [aux_sym_cmd_identifier_token10] = ACTIONS(2228), + [aux_sym_cmd_identifier_token11] = ACTIONS(2228), + [aux_sym_cmd_identifier_token12] = ACTIONS(2224), + [aux_sym_cmd_identifier_token13] = ACTIONS(2224), + [aux_sym_cmd_identifier_token14] = ACTIONS(2224), + [aux_sym_cmd_identifier_token15] = ACTIONS(2224), + [aux_sym_cmd_identifier_token16] = ACTIONS(2228), + [aux_sym_cmd_identifier_token17] = ACTIONS(2228), + [aux_sym_cmd_identifier_token18] = ACTIONS(2228), + [aux_sym_cmd_identifier_token19] = ACTIONS(2228), + [aux_sym_cmd_identifier_token20] = ACTIONS(2228), + [aux_sym_cmd_identifier_token21] = ACTIONS(2228), + [aux_sym_cmd_identifier_token22] = ACTIONS(2228), + [aux_sym_cmd_identifier_token23] = ACTIONS(2228), + [aux_sym_cmd_identifier_token24] = ACTIONS(2228), + [aux_sym_cmd_identifier_token25] = ACTIONS(2228), + [aux_sym_cmd_identifier_token26] = ACTIONS(2228), + [aux_sym_cmd_identifier_token27] = ACTIONS(2228), + [aux_sym_cmd_identifier_token28] = ACTIONS(2228), + [aux_sym_cmd_identifier_token29] = ACTIONS(2228), + [aux_sym_cmd_identifier_token30] = ACTIONS(2228), + [aux_sym_cmd_identifier_token31] = ACTIONS(2228), + [aux_sym_cmd_identifier_token32] = ACTIONS(2228), + [aux_sym_cmd_identifier_token33] = ACTIONS(2228), + [aux_sym_cmd_identifier_token34] = ACTIONS(2224), + [aux_sym_cmd_identifier_token35] = ACTIONS(2228), + [aux_sym_cmd_identifier_token36] = ACTIONS(2228), + [aux_sym_cmd_identifier_token37] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2224), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [anon_sym_def] = ACTIONS(2224), + [anon_sym_export_DASHenv] = ACTIONS(2224), + [anon_sym_extern] = ACTIONS(2224), + [anon_sym_module] = ACTIONS(2224), + [anon_sym_use] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_error] = ACTIONS(2224), + [anon_sym_DASH2] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_in2] = ACTIONS(2224), + [anon_sym_loop] = ACTIONS(2224), + [anon_sym_make] = ACTIONS(2224), + [anon_sym_while] = ACTIONS(2224), + [anon_sym_do] = ACTIONS(2224), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_else] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2224), + [anon_sym_catch] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_source] = ACTIONS(2224), + [anon_sym_source_DASHenv] = ACTIONS(2224), + [anon_sym_register] = ACTIONS(2224), + [anon_sym_hide] = ACTIONS(2224), + [anon_sym_hide_DASHenv] = ACTIONS(2224), + [anon_sym_overlay] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_PLUS2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [aux_sym__val_number_token4] = ACTIONS(2224), + [aux_sym__val_number_token5] = ACTIONS(2224), + [aux_sym__val_number_token6] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [560] = { + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(2277), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), + }, + [561] = { + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(966), + [anon_sym_alias] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_let_DASHenv] = ACTIONS(966), + [anon_sym_mut] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(966), + [aux_sym_cmd_identifier_token9] = ACTIONS(966), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(966), + [aux_sym_cmd_identifier_token13] = ACTIONS(966), + [aux_sym_cmd_identifier_token14] = ACTIONS(966), + [aux_sym_cmd_identifier_token15] = ACTIONS(966), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(966), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(966), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(966), + [anon_sym_export_DASHenv] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_make] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_source] = ACTIONS(966), + [anon_sym_source_DASHenv] = ACTIONS(966), + [anon_sym_register] = ACTIONS(966), + [anon_sym_hide] = ACTIONS(966), + [anon_sym_hide_DASHenv] = ACTIONS(966), + [anon_sym_overlay] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), + }, + [562] = { + [sym_comment] = STATE(562), + [aux_sym__multiple_types_repeat1] = STATE(587), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [aux_sym_cmd_identifier_token37] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in2] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [aux_sym__val_number_token4] = ACTIONS(2281), + [aux_sym__val_number_token5] = ACTIONS(2281), + [aux_sym__val_number_token6] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2287), + }, + [563] = { + [sym__expr_parenthesized_immediate] = STATE(7373), + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(2186), + [anon_sym_alias] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_let_DASHenv] = ACTIONS(2186), + [anon_sym_mut] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [aux_sym_cmd_identifier_token1] = ACTIONS(2186), + [aux_sym_cmd_identifier_token2] = ACTIONS(2188), + [aux_sym_cmd_identifier_token3] = ACTIONS(2188), + [aux_sym_cmd_identifier_token4] = ACTIONS(2188), + [aux_sym_cmd_identifier_token5] = ACTIONS(2188), + [aux_sym_cmd_identifier_token6] = ACTIONS(2188), + [aux_sym_cmd_identifier_token7] = ACTIONS(2188), + [aux_sym_cmd_identifier_token8] = ACTIONS(2186), + [aux_sym_cmd_identifier_token9] = ACTIONS(2186), + [aux_sym_cmd_identifier_token10] = ACTIONS(2188), + [aux_sym_cmd_identifier_token11] = ACTIONS(2188), + [aux_sym_cmd_identifier_token12] = ACTIONS(2186), + [aux_sym_cmd_identifier_token13] = ACTIONS(2186), + [aux_sym_cmd_identifier_token14] = ACTIONS(2186), + [aux_sym_cmd_identifier_token15] = ACTIONS(2186), + [aux_sym_cmd_identifier_token16] = ACTIONS(2188), + [aux_sym_cmd_identifier_token17] = ACTIONS(2188), + [aux_sym_cmd_identifier_token18] = ACTIONS(2188), + [aux_sym_cmd_identifier_token19] = ACTIONS(2188), + [aux_sym_cmd_identifier_token20] = ACTIONS(2188), + [aux_sym_cmd_identifier_token21] = ACTIONS(2188), + [aux_sym_cmd_identifier_token22] = ACTIONS(2188), + [aux_sym_cmd_identifier_token23] = ACTIONS(2188), + [aux_sym_cmd_identifier_token24] = ACTIONS(2188), + [aux_sym_cmd_identifier_token25] = ACTIONS(2188), + [aux_sym_cmd_identifier_token26] = ACTIONS(2188), + [aux_sym_cmd_identifier_token27] = ACTIONS(2188), + [aux_sym_cmd_identifier_token28] = ACTIONS(2188), + [aux_sym_cmd_identifier_token29] = ACTIONS(2188), + [aux_sym_cmd_identifier_token30] = ACTIONS(2188), + [aux_sym_cmd_identifier_token31] = ACTIONS(2188), + [aux_sym_cmd_identifier_token32] = ACTIONS(2188), + [aux_sym_cmd_identifier_token33] = ACTIONS(2188), + [aux_sym_cmd_identifier_token34] = ACTIONS(2186), + [aux_sym_cmd_identifier_token35] = ACTIONS(2188), + [aux_sym_cmd_identifier_token36] = ACTIONS(2188), + [aux_sym_cmd_identifier_token37] = ACTIONS(2188), + [aux_sym_cmd_identifier_token38] = ACTIONS(2186), + [aux_sym_cmd_identifier_token39] = ACTIONS(2188), + [aux_sym_cmd_identifier_token40] = ACTIONS(2188), + [anon_sym_def] = ACTIONS(2186), + [anon_sym_export_DASHenv] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_module] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_LPAREN] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_error] = ACTIONS(2186), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_in2] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_make] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_do] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_else] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2186), + [anon_sym_catch] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_source] = ACTIONS(2186), + [anon_sym_source_DASHenv] = ACTIONS(2186), + [anon_sym_register] = ACTIONS(2186), + [anon_sym_hide] = ACTIONS(2186), + [anon_sym_hide_DASHenv] = ACTIONS(2186), + [anon_sym_overlay] = ACTIONS(2186), + [anon_sym_as] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2188), + [aux_sym__val_number_decimal_token1] = ACTIONS(2186), + [aux_sym__val_number_decimal_token2] = ACTIONS(2188), + [aux_sym__val_number_decimal_token3] = ACTIONS(2188), + [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [aux_sym__val_number_token1] = ACTIONS(2188), + [aux_sym__val_number_token2] = ACTIONS(2188), + [aux_sym__val_number_token3] = ACTIONS(2188), + [aux_sym__val_number_token4] = ACTIONS(2186), + [aux_sym__val_number_token5] = ACTIONS(2186), + [aux_sym__val_number_token6] = ACTIONS(2186), + [anon_sym_DQUOTE] = ACTIONS(2188), + [sym__str_single_quotes] = ACTIONS(2188), + [sym__str_back_ticks] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2188), + }, + [564] = { + [sym_comment] = STATE(564), + [anon_sym_export] = ACTIONS(992), + [anon_sym_alias] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_let_DASHenv] = ACTIONS(992), + [anon_sym_mut] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [aux_sym_cmd_identifier_token1] = ACTIONS(992), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(992), + [aux_sym_cmd_identifier_token9] = ACTIONS(992), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(992), + [aux_sym_cmd_identifier_token13] = ACTIONS(992), + [aux_sym_cmd_identifier_token14] = ACTIONS(992), + [aux_sym_cmd_identifier_token15] = ACTIONS(992), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(992), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(992), + [anon_sym_export_DASHenv] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_make] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_source] = ACTIONS(992), + [anon_sym_source_DASHenv] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_hide_DASHenv] = ACTIONS(992), + [anon_sym_overlay] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [anon_sym_COLON2] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(998), + }, + [565] = { + [sym_comment] = STATE(565), + [aux_sym__multiple_types_repeat1] = STATE(587), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [aux_sym_cmd_identifier_token37] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in2] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [aux_sym__val_number_token4] = ACTIONS(2281), + [aux_sym__val_number_token5] = ACTIONS(2281), + [aux_sym__val_number_token6] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2287), + }, + [566] = { + [sym_comment] = STATE(566), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [anon_sym_COLON2] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [569] = { + [sym_comment] = STATE(569), + [aux_sym__multiple_types_repeat1] = STATE(587), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [aux_sym_cmd_identifier_token37] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in2] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [aux_sym__val_number_token4] = ACTIONS(2281), + [aux_sym__val_number_token5] = ACTIONS(2281), + [aux_sym__val_number_token6] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2287), + }, + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), + }, + [572] = { + [sym_comment] = STATE(572), + [aux_sym__multiple_types_repeat1] = STATE(587), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [aux_sym_cmd_identifier_token37] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in2] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [aux_sym__val_number_token4] = ACTIONS(2281), + [aux_sym__val_number_token5] = ACTIONS(2281), + [aux_sym__val_number_token6] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2287), + }, + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_alias] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_let_DASHenv] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [aux_sym_cmd_identifier_token1] = ACTIONS(2297), + [aux_sym_cmd_identifier_token2] = ACTIONS(2297), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [aux_sym_cmd_identifier_token6] = ACTIONS(2297), + [aux_sym_cmd_identifier_token7] = ACTIONS(2297), + [aux_sym_cmd_identifier_token8] = ACTIONS(2297), + [aux_sym_cmd_identifier_token9] = ACTIONS(2297), + [aux_sym_cmd_identifier_token10] = ACTIONS(2297), + [aux_sym_cmd_identifier_token11] = ACTIONS(2297), + [aux_sym_cmd_identifier_token12] = ACTIONS(2297), + [aux_sym_cmd_identifier_token13] = ACTIONS(2297), + [aux_sym_cmd_identifier_token14] = ACTIONS(2297), + [aux_sym_cmd_identifier_token15] = ACTIONS(2297), + [aux_sym_cmd_identifier_token16] = ACTIONS(2297), + [aux_sym_cmd_identifier_token17] = ACTIONS(2297), + [aux_sym_cmd_identifier_token18] = ACTIONS(2297), + [aux_sym_cmd_identifier_token19] = ACTIONS(2297), + [aux_sym_cmd_identifier_token20] = ACTIONS(2297), + [aux_sym_cmd_identifier_token21] = ACTIONS(2297), + [aux_sym_cmd_identifier_token22] = ACTIONS(2297), + [aux_sym_cmd_identifier_token23] = ACTIONS(2297), + [aux_sym_cmd_identifier_token24] = ACTIONS(2297), + [aux_sym_cmd_identifier_token25] = ACTIONS(2297), + [aux_sym_cmd_identifier_token26] = ACTIONS(2297), + [aux_sym_cmd_identifier_token27] = ACTIONS(2297), + [aux_sym_cmd_identifier_token28] = ACTIONS(2297), + [aux_sym_cmd_identifier_token29] = ACTIONS(2297), + [aux_sym_cmd_identifier_token30] = ACTIONS(2297), + [aux_sym_cmd_identifier_token31] = ACTIONS(2297), + [aux_sym_cmd_identifier_token32] = ACTIONS(2297), + [aux_sym_cmd_identifier_token33] = ACTIONS(2297), + [aux_sym_cmd_identifier_token34] = ACTIONS(2297), + [aux_sym_cmd_identifier_token35] = ACTIONS(2297), + [aux_sym_cmd_identifier_token36] = ACTIONS(2297), + [aux_sym_cmd_identifier_token37] = ACTIONS(2297), + [aux_sym_cmd_identifier_token38] = ACTIONS(2297), + [aux_sym_cmd_identifier_token39] = ACTIONS(2297), + [aux_sym_cmd_identifier_token40] = ACTIONS(2297), + [anon_sym_def] = ACTIONS(2297), + [anon_sym_export_DASHenv] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2297), + [anon_sym_error] = ACTIONS(2297), + [anon_sym_DASH2] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_in2] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_make] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_catch] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_source] = ACTIONS(2297), + [anon_sym_source_DASHenv] = ACTIONS(2297), + [anon_sym_register] = ACTIONS(2297), + [anon_sym_hide] = ACTIONS(2297), + [anon_sym_hide_DASHenv] = ACTIONS(2297), + [anon_sym_overlay] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(2299), + [anon_sym_PLUS2] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2297), + [aux_sym__val_number_decimal_token1] = ACTIONS(2297), + [aux_sym__val_number_decimal_token2] = ACTIONS(2297), + [aux_sym__val_number_decimal_token3] = ACTIONS(2297), + [aux_sym__val_number_decimal_token4] = ACTIONS(2297), + [aux_sym__val_number_token1] = ACTIONS(2297), + [aux_sym__val_number_token2] = ACTIONS(2297), + [aux_sym__val_number_token3] = ACTIONS(2297), + [aux_sym__val_number_token4] = ACTIONS(2297), + [aux_sym__val_number_token5] = ACTIONS(2297), + [aux_sym__val_number_token6] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), + [sym__entry_separator] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2299), + }, + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1653), + [aux_sym_cmd_identifier_token3] = ACTIONS(1653), + [aux_sym_cmd_identifier_token4] = ACTIONS(1653), + [aux_sym_cmd_identifier_token5] = ACTIONS(1653), + [aux_sym_cmd_identifier_token6] = ACTIONS(1653), + [aux_sym_cmd_identifier_token7] = ACTIONS(1653), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1653), + [aux_sym_cmd_identifier_token11] = ACTIONS(1653), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1653), + [aux_sym_cmd_identifier_token17] = ACTIONS(1653), + [aux_sym_cmd_identifier_token18] = ACTIONS(1653), + [aux_sym_cmd_identifier_token19] = ACTIONS(1653), + [aux_sym_cmd_identifier_token20] = ACTIONS(1653), + [aux_sym_cmd_identifier_token21] = ACTIONS(1653), + [aux_sym_cmd_identifier_token22] = ACTIONS(1653), + [aux_sym_cmd_identifier_token23] = ACTIONS(1653), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1653), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1653), + [aux_sym_cmd_identifier_token28] = ACTIONS(1653), + [aux_sym_cmd_identifier_token29] = ACTIONS(1653), + [aux_sym_cmd_identifier_token30] = ACTIONS(1653), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1653), + [aux_sym_cmd_identifier_token37] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [aux_sym__val_number_token4] = ACTIONS(1653), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1653), + [sym__entry_separator] = ACTIONS(1665), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1665), + }, + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(988), + [aux_sym_cmd_identifier_token3] = ACTIONS(988), + [aux_sym_cmd_identifier_token4] = ACTIONS(988), + [aux_sym_cmd_identifier_token5] = ACTIONS(988), + [aux_sym_cmd_identifier_token6] = ACTIONS(988), + [aux_sym_cmd_identifier_token7] = ACTIONS(988), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(988), + [aux_sym_cmd_identifier_token11] = ACTIONS(988), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(988), + [aux_sym_cmd_identifier_token17] = ACTIONS(988), + [aux_sym_cmd_identifier_token18] = ACTIONS(988), + [aux_sym_cmd_identifier_token19] = ACTIONS(988), + [aux_sym_cmd_identifier_token20] = ACTIONS(988), + [aux_sym_cmd_identifier_token21] = ACTIONS(988), + [aux_sym_cmd_identifier_token22] = ACTIONS(988), + [aux_sym_cmd_identifier_token23] = ACTIONS(988), + [aux_sym_cmd_identifier_token24] = ACTIONS(988), + [aux_sym_cmd_identifier_token25] = ACTIONS(988), + [aux_sym_cmd_identifier_token26] = ACTIONS(988), + [aux_sym_cmd_identifier_token27] = ACTIONS(988), + [aux_sym_cmd_identifier_token28] = ACTIONS(988), + [aux_sym_cmd_identifier_token29] = ACTIONS(988), + [aux_sym_cmd_identifier_token30] = ACTIONS(988), + [aux_sym_cmd_identifier_token31] = ACTIONS(988), + [aux_sym_cmd_identifier_token32] = ACTIONS(988), + [aux_sym_cmd_identifier_token33] = ACTIONS(988), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(988), + [aux_sym_cmd_identifier_token36] = ACTIONS(988), + [aux_sym_cmd_identifier_token37] = ACTIONS(988), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(988), + [aux_sym_cmd_identifier_token40] = ACTIONS(988), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(988), + [aux_sym__val_number_decimal_token3] = ACTIONS(988), + [aux_sym__val_number_decimal_token4] = ACTIONS(988), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym__str_single_quotes] = ACTIONS(988), + [sym__str_back_ticks] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), + [sym__entry_separator] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(990), + }, + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(2301), + [aux_sym__immediate_decimal_token2] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [577] = { + [sym_comment] = STATE(577), + [aux_sym__multiple_types_repeat1] = STATE(572), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [aux_sym_cmd_identifier_token1] = ACTIONS(2305), + [aux_sym_cmd_identifier_token2] = ACTIONS(2305), + [aux_sym_cmd_identifier_token3] = ACTIONS(2305), + [aux_sym_cmd_identifier_token4] = ACTIONS(2305), + [aux_sym_cmd_identifier_token5] = ACTIONS(2305), + [aux_sym_cmd_identifier_token6] = ACTIONS(2305), + [aux_sym_cmd_identifier_token7] = ACTIONS(2305), + [aux_sym_cmd_identifier_token8] = ACTIONS(2305), + [aux_sym_cmd_identifier_token9] = ACTIONS(2305), + [aux_sym_cmd_identifier_token10] = ACTIONS(2305), + [aux_sym_cmd_identifier_token11] = ACTIONS(2305), + [aux_sym_cmd_identifier_token12] = ACTIONS(2305), + [aux_sym_cmd_identifier_token13] = ACTIONS(2305), + [aux_sym_cmd_identifier_token14] = ACTIONS(2305), + [aux_sym_cmd_identifier_token15] = ACTIONS(2305), + [aux_sym_cmd_identifier_token16] = ACTIONS(2305), + [aux_sym_cmd_identifier_token17] = ACTIONS(2305), + [aux_sym_cmd_identifier_token18] = ACTIONS(2305), + [aux_sym_cmd_identifier_token19] = ACTIONS(2305), + [aux_sym_cmd_identifier_token20] = ACTIONS(2305), + [aux_sym_cmd_identifier_token21] = ACTIONS(2305), + [aux_sym_cmd_identifier_token22] = ACTIONS(2305), + [aux_sym_cmd_identifier_token23] = ACTIONS(2305), + [aux_sym_cmd_identifier_token24] = ACTIONS(2305), + [aux_sym_cmd_identifier_token25] = ACTIONS(2305), + [aux_sym_cmd_identifier_token26] = ACTIONS(2305), + [aux_sym_cmd_identifier_token27] = ACTIONS(2305), + [aux_sym_cmd_identifier_token28] = ACTIONS(2305), + [aux_sym_cmd_identifier_token29] = ACTIONS(2305), + [aux_sym_cmd_identifier_token30] = ACTIONS(2305), + [aux_sym_cmd_identifier_token31] = ACTIONS(2305), + [aux_sym_cmd_identifier_token32] = ACTIONS(2305), + [aux_sym_cmd_identifier_token33] = ACTIONS(2305), + [aux_sym_cmd_identifier_token34] = ACTIONS(2305), + [aux_sym_cmd_identifier_token35] = ACTIONS(2305), + [aux_sym_cmd_identifier_token36] = ACTIONS(2305), + [aux_sym_cmd_identifier_token37] = ACTIONS(2305), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2305), + [aux_sym_cmd_identifier_token40] = ACTIONS(2305), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2305), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_DASH2] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_in2] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_make] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_catch] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_PLUS2] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2305), + [aux_sym__val_number_decimal_token4] = ACTIONS(2305), + [aux_sym__val_number_token1] = ACTIONS(2305), + [aux_sym__val_number_token2] = ACTIONS(2305), + [aux_sym__val_number_token3] = ACTIONS(2305), + [aux_sym__val_number_token4] = ACTIONS(2305), + [aux_sym__val_number_token5] = ACTIONS(2305), + [aux_sym__val_number_token6] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2309), + }, + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [aux_sym_cmd_identifier_token37] = ACTIONS(2311), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2311), + [aux_sym_cmd_identifier_token40] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_DASH2] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in2] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(2313), + [anon_sym_PLUS2] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2311), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2311), + [aux_sym__val_number_token2] = ACTIONS(2311), + [aux_sym__val_number_token3] = ACTIONS(2311), + [aux_sym__val_number_token4] = ACTIONS(2311), + [aux_sym__val_number_token5] = ACTIONS(2311), + [aux_sym__val_number_token6] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), + [sym__entry_separator] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2313), + }, + [579] = { + [sym_comment] = STATE(579), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [aux_sym_cmd_identifier_token2] = ACTIONS(2315), + [aux_sym_cmd_identifier_token3] = ACTIONS(2315), + [aux_sym_cmd_identifier_token4] = ACTIONS(2315), + [aux_sym_cmd_identifier_token5] = ACTIONS(2315), + [aux_sym_cmd_identifier_token6] = ACTIONS(2315), + [aux_sym_cmd_identifier_token7] = ACTIONS(2315), + [aux_sym_cmd_identifier_token8] = ACTIONS(2315), + [aux_sym_cmd_identifier_token9] = ACTIONS(2315), + [aux_sym_cmd_identifier_token10] = ACTIONS(2315), + [aux_sym_cmd_identifier_token11] = ACTIONS(2315), + [aux_sym_cmd_identifier_token12] = ACTIONS(2315), + [aux_sym_cmd_identifier_token13] = ACTIONS(2315), + [aux_sym_cmd_identifier_token14] = ACTIONS(2315), + [aux_sym_cmd_identifier_token15] = ACTIONS(2315), + [aux_sym_cmd_identifier_token16] = ACTIONS(2315), + [aux_sym_cmd_identifier_token17] = ACTIONS(2315), + [aux_sym_cmd_identifier_token18] = ACTIONS(2315), + [aux_sym_cmd_identifier_token19] = ACTIONS(2315), + [aux_sym_cmd_identifier_token20] = ACTIONS(2315), + [aux_sym_cmd_identifier_token21] = ACTIONS(2315), + [aux_sym_cmd_identifier_token22] = ACTIONS(2315), + [aux_sym_cmd_identifier_token23] = ACTIONS(2315), + [aux_sym_cmd_identifier_token24] = ACTIONS(2315), + [aux_sym_cmd_identifier_token25] = ACTIONS(2315), + [aux_sym_cmd_identifier_token26] = ACTIONS(2315), + [aux_sym_cmd_identifier_token27] = ACTIONS(2315), + [aux_sym_cmd_identifier_token28] = ACTIONS(2315), + [aux_sym_cmd_identifier_token29] = ACTIONS(2315), + [aux_sym_cmd_identifier_token30] = ACTIONS(2315), + [aux_sym_cmd_identifier_token31] = ACTIONS(2315), + [aux_sym_cmd_identifier_token32] = ACTIONS(2315), + [aux_sym_cmd_identifier_token33] = ACTIONS(2315), + [aux_sym_cmd_identifier_token34] = ACTIONS(2315), + [aux_sym_cmd_identifier_token35] = ACTIONS(2315), + [aux_sym_cmd_identifier_token36] = ACTIONS(2315), + [aux_sym_cmd_identifier_token37] = ACTIONS(2315), + [aux_sym_cmd_identifier_token38] = ACTIONS(2315), + [aux_sym_cmd_identifier_token39] = ACTIONS(2315), + [aux_sym_cmd_identifier_token40] = ACTIONS(2315), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_DASH2] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_in2] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_make] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_catch] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_PLUS2] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2315), + [aux_sym__val_number_decimal_token3] = ACTIONS(2315), + [aux_sym__val_number_decimal_token4] = ACTIONS(2315), + [aux_sym__val_number_token1] = ACTIONS(2315), + [aux_sym__val_number_token2] = ACTIONS(2315), + [aux_sym__val_number_token3] = ACTIONS(2315), + [aux_sym__val_number_token4] = ACTIONS(2315), + [aux_sym__val_number_token5] = ACTIONS(2315), + [aux_sym__val_number_token6] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym__str_single_quotes] = ACTIONS(2315), + [sym__str_back_ticks] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2315), + [sym__entry_separator] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2319), + }, + [580] = { + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [sym__entry_separator] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(986), + }, + [581] = { + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [sym__entry_separator] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(982), + }, + [582] = { + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [aux_sym__immediate_decimal_token2] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(1819), + [anon_sym_alias] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_let_DASHenv] = ACTIONS(1819), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [aux_sym_cmd_identifier_token1] = ACTIONS(1819), + [aux_sym_cmd_identifier_token2] = ACTIONS(1827), + [aux_sym_cmd_identifier_token3] = ACTIONS(1827), + [aux_sym_cmd_identifier_token4] = ACTIONS(1827), + [aux_sym_cmd_identifier_token5] = ACTIONS(1827), + [aux_sym_cmd_identifier_token6] = ACTIONS(1827), + [aux_sym_cmd_identifier_token7] = ACTIONS(1827), + [aux_sym_cmd_identifier_token8] = ACTIONS(1819), + [aux_sym_cmd_identifier_token9] = ACTIONS(1819), + [aux_sym_cmd_identifier_token10] = ACTIONS(1827), + [aux_sym_cmd_identifier_token11] = ACTIONS(1827), + [aux_sym_cmd_identifier_token12] = ACTIONS(1819), + [aux_sym_cmd_identifier_token13] = ACTIONS(1819), + [aux_sym_cmd_identifier_token14] = ACTIONS(1819), + [aux_sym_cmd_identifier_token15] = ACTIONS(1819), + [aux_sym_cmd_identifier_token16] = ACTIONS(1827), + [aux_sym_cmd_identifier_token17] = ACTIONS(1827), + [aux_sym_cmd_identifier_token18] = ACTIONS(1827), + [aux_sym_cmd_identifier_token19] = ACTIONS(1827), + [aux_sym_cmd_identifier_token20] = ACTIONS(1827), + [aux_sym_cmd_identifier_token21] = ACTIONS(1827), + [aux_sym_cmd_identifier_token22] = ACTIONS(1827), + [aux_sym_cmd_identifier_token23] = ACTIONS(1827), + [aux_sym_cmd_identifier_token24] = ACTIONS(1827), + [aux_sym_cmd_identifier_token25] = ACTIONS(1827), + [aux_sym_cmd_identifier_token26] = ACTIONS(1827), + [aux_sym_cmd_identifier_token27] = ACTIONS(1827), + [aux_sym_cmd_identifier_token28] = ACTIONS(1827), + [aux_sym_cmd_identifier_token29] = ACTIONS(1827), + [aux_sym_cmd_identifier_token30] = ACTIONS(1827), + [aux_sym_cmd_identifier_token31] = ACTIONS(1827), + [aux_sym_cmd_identifier_token32] = ACTIONS(1827), + [aux_sym_cmd_identifier_token33] = ACTIONS(1827), + [aux_sym_cmd_identifier_token34] = ACTIONS(1819), + [aux_sym_cmd_identifier_token35] = ACTIONS(1827), + [aux_sym_cmd_identifier_token36] = ACTIONS(1827), + [aux_sym_cmd_identifier_token37] = ACTIONS(1827), + [aux_sym_cmd_identifier_token38] = ACTIONS(1819), + [aux_sym_cmd_identifier_token39] = ACTIONS(1827), + [aux_sym_cmd_identifier_token40] = ACTIONS(1827), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_export_DASHenv] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_module] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_error] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_in2] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_make] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_do] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_else] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_catch] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_source] = ACTIONS(1819), + [anon_sym_source_DASHenv] = ACTIONS(1819), + [anon_sym_register] = ACTIONS(1819), + [anon_sym_hide] = ACTIONS(1819), + [anon_sym_hide_DASHenv] = ACTIONS(1819), + [anon_sym_overlay] = ACTIONS(1819), + [anon_sym_as] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_PLUS2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1827), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), + }, + [584] = { + [sym_comment] = STATE(584), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1771), + [aux_sym_cmd_identifier_token3] = ACTIONS(1771), + [aux_sym_cmd_identifier_token4] = ACTIONS(1771), + [aux_sym_cmd_identifier_token5] = ACTIONS(1771), + [aux_sym_cmd_identifier_token6] = ACTIONS(1771), + [aux_sym_cmd_identifier_token7] = ACTIONS(1771), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1771), + [aux_sym_cmd_identifier_token11] = ACTIONS(1771), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1771), + [aux_sym_cmd_identifier_token17] = ACTIONS(1771), + [aux_sym_cmd_identifier_token18] = ACTIONS(1771), + [aux_sym_cmd_identifier_token19] = ACTIONS(1771), + [aux_sym_cmd_identifier_token20] = ACTIONS(1771), + [aux_sym_cmd_identifier_token21] = ACTIONS(1771), + [aux_sym_cmd_identifier_token22] = ACTIONS(1771), + [aux_sym_cmd_identifier_token23] = ACTIONS(1771), + [aux_sym_cmd_identifier_token24] = ACTIONS(1771), + [aux_sym_cmd_identifier_token25] = ACTIONS(1771), + [aux_sym_cmd_identifier_token26] = ACTIONS(1771), + [aux_sym_cmd_identifier_token27] = ACTIONS(1771), + [aux_sym_cmd_identifier_token28] = ACTIONS(1771), + [aux_sym_cmd_identifier_token29] = ACTIONS(1771), + [aux_sym_cmd_identifier_token30] = ACTIONS(1771), + [aux_sym_cmd_identifier_token31] = ACTIONS(1771), + [aux_sym_cmd_identifier_token32] = ACTIONS(1771), + [aux_sym_cmd_identifier_token33] = ACTIONS(1771), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1771), + [aux_sym_cmd_identifier_token36] = ACTIONS(1771), + [aux_sym_cmd_identifier_token37] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [sym__entry_separator] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(2323), + [aux_sym__immediate_decimal_token2] = ACTIONS(2325), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_alias] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_let_DASHenv] = ACTIONS(2241), + [anon_sym_mut] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [aux_sym_cmd_identifier_token1] = ACTIONS(2241), + [aux_sym_cmd_identifier_token2] = ACTIONS(2241), + [aux_sym_cmd_identifier_token3] = ACTIONS(2241), + [aux_sym_cmd_identifier_token4] = ACTIONS(2241), + [aux_sym_cmd_identifier_token5] = ACTIONS(2241), + [aux_sym_cmd_identifier_token6] = ACTIONS(2241), + [aux_sym_cmd_identifier_token7] = ACTIONS(2241), + [aux_sym_cmd_identifier_token8] = ACTIONS(2241), + [aux_sym_cmd_identifier_token9] = ACTIONS(2241), + [aux_sym_cmd_identifier_token10] = ACTIONS(2241), + [aux_sym_cmd_identifier_token11] = ACTIONS(2241), + [aux_sym_cmd_identifier_token12] = ACTIONS(2241), + [aux_sym_cmd_identifier_token13] = ACTIONS(2241), + [aux_sym_cmd_identifier_token14] = ACTIONS(2241), + [aux_sym_cmd_identifier_token15] = ACTIONS(2241), + [aux_sym_cmd_identifier_token16] = ACTIONS(2241), + [aux_sym_cmd_identifier_token17] = ACTIONS(2241), + [aux_sym_cmd_identifier_token18] = ACTIONS(2241), + [aux_sym_cmd_identifier_token19] = ACTIONS(2241), + [aux_sym_cmd_identifier_token20] = ACTIONS(2241), + [aux_sym_cmd_identifier_token21] = ACTIONS(2241), + [aux_sym_cmd_identifier_token22] = ACTIONS(2241), + [aux_sym_cmd_identifier_token23] = ACTIONS(2241), + [aux_sym_cmd_identifier_token24] = ACTIONS(2241), + [aux_sym_cmd_identifier_token25] = ACTIONS(2241), + [aux_sym_cmd_identifier_token26] = ACTIONS(2241), + [aux_sym_cmd_identifier_token27] = ACTIONS(2241), + [aux_sym_cmd_identifier_token28] = ACTIONS(2241), + [aux_sym_cmd_identifier_token29] = ACTIONS(2241), + [aux_sym_cmd_identifier_token30] = ACTIONS(2241), + [aux_sym_cmd_identifier_token31] = ACTIONS(2241), + [aux_sym_cmd_identifier_token32] = ACTIONS(2241), + [aux_sym_cmd_identifier_token33] = ACTIONS(2241), + [aux_sym_cmd_identifier_token34] = ACTIONS(2241), + [aux_sym_cmd_identifier_token35] = ACTIONS(2241), + [aux_sym_cmd_identifier_token36] = ACTIONS(2241), + [aux_sym_cmd_identifier_token37] = ACTIONS(2241), + [aux_sym_cmd_identifier_token38] = ACTIONS(2241), + [aux_sym_cmd_identifier_token39] = ACTIONS(2241), + [aux_sym_cmd_identifier_token40] = ACTIONS(2241), + [anon_sym_def] = ACTIONS(2241), + [anon_sym_export_DASHenv] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_error] = ACTIONS(2241), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_in2] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_make] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_catch] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_source] = ACTIONS(2241), + [anon_sym_source_DASHenv] = ACTIONS(2241), + [anon_sym_register] = ACTIONS(2241), + [anon_sym_hide] = ACTIONS(2241), + [anon_sym_hide_DASHenv] = ACTIONS(2241), + [anon_sym_overlay] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_LPAREN2] = ACTIONS(2243), + [anon_sym_PLUS2] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2241), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2241), + [aux_sym__val_number_decimal_token3] = ACTIONS(2241), + [aux_sym__val_number_decimal_token4] = ACTIONS(2241), + [aux_sym__val_number_token1] = ACTIONS(2241), + [aux_sym__val_number_token2] = ACTIONS(2241), + [aux_sym__val_number_token3] = ACTIONS(2241), + [aux_sym__val_number_token4] = ACTIONS(2241), + [aux_sym__val_number_token5] = ACTIONS(2241), + [aux_sym__val_number_token6] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym__str_single_quotes] = ACTIONS(2245), + [sym__str_back_ticks] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2245), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2245), + }, + [587] = { + [sym_comment] = STATE(587), + [aux_sym__multiple_types_repeat1] = STATE(587), + [anon_sym_export] = ACTIONS(2327), + [anon_sym_alias] = ACTIONS(2327), + [anon_sym_let] = ACTIONS(2327), + [anon_sym_let_DASHenv] = ACTIONS(2327), + [anon_sym_mut] = ACTIONS(2327), + [anon_sym_const] = ACTIONS(2327), + [aux_sym_cmd_identifier_token1] = ACTIONS(2327), + [aux_sym_cmd_identifier_token2] = ACTIONS(2327), + [aux_sym_cmd_identifier_token3] = ACTIONS(2327), + [aux_sym_cmd_identifier_token4] = ACTIONS(2327), + [aux_sym_cmd_identifier_token5] = ACTIONS(2327), + [aux_sym_cmd_identifier_token6] = ACTIONS(2327), + [aux_sym_cmd_identifier_token7] = ACTIONS(2327), + [aux_sym_cmd_identifier_token8] = ACTIONS(2327), + [aux_sym_cmd_identifier_token9] = ACTIONS(2327), + [aux_sym_cmd_identifier_token10] = ACTIONS(2327), + [aux_sym_cmd_identifier_token11] = ACTIONS(2327), + [aux_sym_cmd_identifier_token12] = ACTIONS(2327), + [aux_sym_cmd_identifier_token13] = ACTIONS(2327), + [aux_sym_cmd_identifier_token14] = ACTIONS(2327), + [aux_sym_cmd_identifier_token15] = ACTIONS(2327), + [aux_sym_cmd_identifier_token16] = ACTIONS(2327), + [aux_sym_cmd_identifier_token17] = ACTIONS(2327), + [aux_sym_cmd_identifier_token18] = ACTIONS(2327), + [aux_sym_cmd_identifier_token19] = ACTIONS(2327), + [aux_sym_cmd_identifier_token20] = ACTIONS(2327), + [aux_sym_cmd_identifier_token21] = ACTIONS(2327), + [aux_sym_cmd_identifier_token22] = ACTIONS(2327), + [aux_sym_cmd_identifier_token23] = ACTIONS(2327), + [aux_sym_cmd_identifier_token24] = ACTIONS(2327), + [aux_sym_cmd_identifier_token25] = ACTIONS(2327), + [aux_sym_cmd_identifier_token26] = ACTIONS(2327), + [aux_sym_cmd_identifier_token27] = ACTIONS(2327), + [aux_sym_cmd_identifier_token28] = ACTIONS(2327), + [aux_sym_cmd_identifier_token29] = ACTIONS(2327), + [aux_sym_cmd_identifier_token30] = ACTIONS(2327), + [aux_sym_cmd_identifier_token31] = ACTIONS(2327), + [aux_sym_cmd_identifier_token32] = ACTIONS(2327), + [aux_sym_cmd_identifier_token33] = ACTIONS(2327), + [aux_sym_cmd_identifier_token34] = ACTIONS(2327), + [aux_sym_cmd_identifier_token35] = ACTIONS(2327), + [aux_sym_cmd_identifier_token36] = ACTIONS(2327), + [aux_sym_cmd_identifier_token37] = ACTIONS(2327), + [aux_sym_cmd_identifier_token38] = ACTIONS(2327), + [aux_sym_cmd_identifier_token39] = ACTIONS(2327), + [aux_sym_cmd_identifier_token40] = ACTIONS(2327), + [anon_sym_def] = ACTIONS(2327), + [anon_sym_export_DASHenv] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_module] = ACTIONS(2327), + [anon_sym_use] = ACTIONS(2327), + [anon_sym_LPAREN] = ACTIONS(2327), + [anon_sym_DOLLAR] = ACTIONS(2327), + [anon_sym_error] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2327), + [anon_sym_continue] = ACTIONS(2327), + [anon_sym_for] = ACTIONS(2327), + [anon_sym_in2] = ACTIONS(2327), + [anon_sym_loop] = ACTIONS(2327), + [anon_sym_make] = ACTIONS(2327), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2327), + [anon_sym_if] = ACTIONS(2327), + [anon_sym_else] = ACTIONS(2327), + [anon_sym_match] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [anon_sym_catch] = ACTIONS(2327), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_source] = ACTIONS(2327), + [anon_sym_source_DASHenv] = ACTIONS(2327), + [anon_sym_register] = ACTIONS(2327), + [anon_sym_hide] = ACTIONS(2327), + [anon_sym_hide_DASHenv] = ACTIONS(2327), + [anon_sym_overlay] = ACTIONS(2327), + [anon_sym_as] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2327), + [aux_sym__val_number_decimal_token1] = ACTIONS(2327), + [aux_sym__val_number_decimal_token2] = ACTIONS(2327), + [aux_sym__val_number_decimal_token3] = ACTIONS(2327), + [aux_sym__val_number_decimal_token4] = ACTIONS(2327), + [aux_sym__val_number_token1] = ACTIONS(2327), + [aux_sym__val_number_token2] = ACTIONS(2327), + [aux_sym__val_number_token3] = ACTIONS(2327), + [aux_sym__val_number_token4] = ACTIONS(2327), + [aux_sym__val_number_token5] = ACTIONS(2327), + [aux_sym__val_number_token6] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(2327), + [sym__str_single_quotes] = ACTIONS(2327), + [sym__str_back_ticks] = ACTIONS(2327), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2327), + [sym__entry_separator] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2332), + }, + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(2249), + [anon_sym_alias] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_let_DASHenv] = ACTIONS(2249), + [anon_sym_mut] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [aux_sym_cmd_identifier_token1] = ACTIONS(2249), + [aux_sym_cmd_identifier_token2] = ACTIONS(2249), + [aux_sym_cmd_identifier_token3] = ACTIONS(2249), + [aux_sym_cmd_identifier_token4] = ACTIONS(2249), + [aux_sym_cmd_identifier_token5] = ACTIONS(2249), + [aux_sym_cmd_identifier_token6] = ACTIONS(2249), + [aux_sym_cmd_identifier_token7] = ACTIONS(2249), + [aux_sym_cmd_identifier_token8] = ACTIONS(2249), + [aux_sym_cmd_identifier_token9] = ACTIONS(2249), + [aux_sym_cmd_identifier_token10] = ACTIONS(2249), + [aux_sym_cmd_identifier_token11] = ACTIONS(2249), + [aux_sym_cmd_identifier_token12] = ACTIONS(2249), + [aux_sym_cmd_identifier_token13] = ACTIONS(2249), + [aux_sym_cmd_identifier_token14] = ACTIONS(2249), + [aux_sym_cmd_identifier_token15] = ACTIONS(2249), + [aux_sym_cmd_identifier_token16] = ACTIONS(2249), + [aux_sym_cmd_identifier_token17] = ACTIONS(2249), + [aux_sym_cmd_identifier_token18] = ACTIONS(2249), + [aux_sym_cmd_identifier_token19] = ACTIONS(2249), + [aux_sym_cmd_identifier_token20] = ACTIONS(2249), + [aux_sym_cmd_identifier_token21] = ACTIONS(2249), + [aux_sym_cmd_identifier_token22] = ACTIONS(2249), + [aux_sym_cmd_identifier_token23] = ACTIONS(2249), + [aux_sym_cmd_identifier_token24] = ACTIONS(2249), + [aux_sym_cmd_identifier_token25] = ACTIONS(2249), + [aux_sym_cmd_identifier_token26] = ACTIONS(2249), + [aux_sym_cmd_identifier_token27] = ACTIONS(2249), + [aux_sym_cmd_identifier_token28] = ACTIONS(2249), + [aux_sym_cmd_identifier_token29] = ACTIONS(2249), + [aux_sym_cmd_identifier_token30] = ACTIONS(2249), + [aux_sym_cmd_identifier_token31] = ACTIONS(2249), + [aux_sym_cmd_identifier_token32] = ACTIONS(2249), + [aux_sym_cmd_identifier_token33] = ACTIONS(2249), + [aux_sym_cmd_identifier_token34] = ACTIONS(2249), + [aux_sym_cmd_identifier_token35] = ACTIONS(2249), + [aux_sym_cmd_identifier_token36] = ACTIONS(2249), + [aux_sym_cmd_identifier_token37] = ACTIONS(2249), + [aux_sym_cmd_identifier_token38] = ACTIONS(2249), + [aux_sym_cmd_identifier_token39] = ACTIONS(2249), + [aux_sym_cmd_identifier_token40] = ACTIONS(2249), + [anon_sym_def] = ACTIONS(2249), + [anon_sym_export_DASHenv] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_module] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_error] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_make] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_do] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_else] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2249), + [anon_sym_catch] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_source] = ACTIONS(2249), + [anon_sym_source_DASHenv] = ACTIONS(2249), + [anon_sym_register] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_hide_DASHenv] = ACTIONS(2249), + [anon_sym_overlay] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2249), + [aux_sym__val_number_decimal_token1] = ACTIONS(2249), + [aux_sym__val_number_decimal_token2] = ACTIONS(2249), + [aux_sym__val_number_decimal_token3] = ACTIONS(2249), + [aux_sym__val_number_decimal_token4] = ACTIONS(2249), + [aux_sym__val_number_token1] = ACTIONS(2249), + [aux_sym__val_number_token2] = ACTIONS(2249), + [aux_sym__val_number_token3] = ACTIONS(2249), + [aux_sym__val_number_token4] = ACTIONS(2249), + [aux_sym__val_number_token5] = ACTIONS(2249), + [aux_sym__val_number_token6] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2253), + }, + [589] = { + [sym__expr_parenthesized_immediate] = STATE(7373), + [sym_comment] = STATE(589), + [anon_sym_export] = ACTIONS(2190), + [anon_sym_alias] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_let_DASHenv] = ACTIONS(2190), + [anon_sym_mut] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [aux_sym_cmd_identifier_token1] = ACTIONS(2190), + [aux_sym_cmd_identifier_token2] = ACTIONS(2192), + [aux_sym_cmd_identifier_token3] = ACTIONS(2192), + [aux_sym_cmd_identifier_token4] = ACTIONS(2192), + [aux_sym_cmd_identifier_token5] = ACTIONS(2192), + [aux_sym_cmd_identifier_token6] = ACTIONS(2192), + [aux_sym_cmd_identifier_token7] = ACTIONS(2192), + [aux_sym_cmd_identifier_token8] = ACTIONS(2190), + [aux_sym_cmd_identifier_token9] = ACTIONS(2190), + [aux_sym_cmd_identifier_token10] = ACTIONS(2192), + [aux_sym_cmd_identifier_token11] = ACTIONS(2192), + [aux_sym_cmd_identifier_token12] = ACTIONS(2190), + [aux_sym_cmd_identifier_token13] = ACTIONS(2190), + [aux_sym_cmd_identifier_token14] = ACTIONS(2190), + [aux_sym_cmd_identifier_token15] = ACTIONS(2190), + [aux_sym_cmd_identifier_token16] = ACTIONS(2192), + [aux_sym_cmd_identifier_token17] = ACTIONS(2192), + [aux_sym_cmd_identifier_token18] = ACTIONS(2192), + [aux_sym_cmd_identifier_token19] = ACTIONS(2192), + [aux_sym_cmd_identifier_token20] = ACTIONS(2192), + [aux_sym_cmd_identifier_token21] = ACTIONS(2192), + [aux_sym_cmd_identifier_token22] = ACTIONS(2192), + [aux_sym_cmd_identifier_token23] = ACTIONS(2192), + [aux_sym_cmd_identifier_token24] = ACTIONS(2192), + [aux_sym_cmd_identifier_token25] = ACTIONS(2192), + [aux_sym_cmd_identifier_token26] = ACTIONS(2192), + [aux_sym_cmd_identifier_token27] = ACTIONS(2192), + [aux_sym_cmd_identifier_token28] = ACTIONS(2192), + [aux_sym_cmd_identifier_token29] = ACTIONS(2192), + [aux_sym_cmd_identifier_token30] = ACTIONS(2192), + [aux_sym_cmd_identifier_token31] = ACTIONS(2192), + [aux_sym_cmd_identifier_token32] = ACTIONS(2192), + [aux_sym_cmd_identifier_token33] = ACTIONS(2192), + [aux_sym_cmd_identifier_token34] = ACTIONS(2190), + [aux_sym_cmd_identifier_token35] = ACTIONS(2192), + [aux_sym_cmd_identifier_token36] = ACTIONS(2192), + [aux_sym_cmd_identifier_token37] = ACTIONS(2192), + [aux_sym_cmd_identifier_token38] = ACTIONS(2190), + [aux_sym_cmd_identifier_token39] = ACTIONS(2192), + [aux_sym_cmd_identifier_token40] = ACTIONS(2192), + [anon_sym_def] = ACTIONS(2190), + [anon_sym_export_DASHenv] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_module] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_error] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_in2] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_make] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_do] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_else] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2190), + [anon_sym_catch] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_source] = ACTIONS(2190), + [anon_sym_source_DASHenv] = ACTIONS(2190), + [anon_sym_register] = ACTIONS(2190), + [anon_sym_hide] = ACTIONS(2190), + [anon_sym_hide_DASHenv] = ACTIONS(2190), + [anon_sym_overlay] = ACTIONS(2190), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2190), + [aux_sym__val_number_decimal_token2] = ACTIONS(2192), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2192), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2190), + [aux_sym__val_number_token5] = ACTIONS(2190), + [aux_sym__val_number_token6] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym__str_single_quotes] = ACTIONS(2192), + [sym__str_back_ticks] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2192), + }, + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(2257), + [anon_sym_alias] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_let_DASHenv] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [aux_sym_cmd_identifier_token1] = ACTIONS(2257), + [aux_sym_cmd_identifier_token2] = ACTIONS(2257), + [aux_sym_cmd_identifier_token3] = ACTIONS(2257), + [aux_sym_cmd_identifier_token4] = ACTIONS(2257), + [aux_sym_cmd_identifier_token5] = ACTIONS(2257), + [aux_sym_cmd_identifier_token6] = ACTIONS(2257), + [aux_sym_cmd_identifier_token7] = ACTIONS(2257), + [aux_sym_cmd_identifier_token8] = ACTIONS(2257), + [aux_sym_cmd_identifier_token9] = ACTIONS(2257), + [aux_sym_cmd_identifier_token10] = ACTIONS(2257), + [aux_sym_cmd_identifier_token11] = ACTIONS(2257), + [aux_sym_cmd_identifier_token12] = ACTIONS(2257), + [aux_sym_cmd_identifier_token13] = ACTIONS(2257), + [aux_sym_cmd_identifier_token14] = ACTIONS(2257), + [aux_sym_cmd_identifier_token15] = ACTIONS(2257), + [aux_sym_cmd_identifier_token16] = ACTIONS(2257), + [aux_sym_cmd_identifier_token17] = ACTIONS(2257), + [aux_sym_cmd_identifier_token18] = ACTIONS(2257), + [aux_sym_cmd_identifier_token19] = ACTIONS(2257), + [aux_sym_cmd_identifier_token20] = ACTIONS(2257), + [aux_sym_cmd_identifier_token21] = ACTIONS(2257), + [aux_sym_cmd_identifier_token22] = ACTIONS(2257), + [aux_sym_cmd_identifier_token23] = ACTIONS(2257), + [aux_sym_cmd_identifier_token24] = ACTIONS(2257), + [aux_sym_cmd_identifier_token25] = ACTIONS(2257), + [aux_sym_cmd_identifier_token26] = ACTIONS(2257), + [aux_sym_cmd_identifier_token27] = ACTIONS(2257), + [aux_sym_cmd_identifier_token28] = ACTIONS(2257), + [aux_sym_cmd_identifier_token29] = ACTIONS(2257), + [aux_sym_cmd_identifier_token30] = ACTIONS(2257), + [aux_sym_cmd_identifier_token31] = ACTIONS(2257), + [aux_sym_cmd_identifier_token32] = ACTIONS(2257), + [aux_sym_cmd_identifier_token33] = ACTIONS(2257), + [aux_sym_cmd_identifier_token34] = ACTIONS(2257), + [aux_sym_cmd_identifier_token35] = ACTIONS(2257), + [aux_sym_cmd_identifier_token36] = ACTIONS(2257), + [aux_sym_cmd_identifier_token37] = ACTIONS(2257), + [aux_sym_cmd_identifier_token38] = ACTIONS(2257), + [aux_sym_cmd_identifier_token39] = ACTIONS(2257), + [aux_sym_cmd_identifier_token40] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_export_DASHenv] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_error] = ACTIONS(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_make] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_do] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_catch] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_source] = ACTIONS(2257), + [anon_sym_source_DASHenv] = ACTIONS(2257), + [anon_sym_register] = ACTIONS(2257), + [anon_sym_hide] = ACTIONS(2257), + [anon_sym_hide_DASHenv] = ACTIONS(2257), + [anon_sym_overlay] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_PLUS2] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2257), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [aux_sym__val_number_token4] = ACTIONS(2257), + [aux_sym__val_number_token5] = ACTIONS(2257), + [aux_sym__val_number_token6] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2259), + [sym__str_single_quotes] = ACTIONS(2259), + [sym__str_back_ticks] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2259), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2259), + }, + [591] = { + [sym__expr_parenthesized_immediate] = STATE(7232), + [sym_comment] = STATE(591), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2049), + [aux_sym_cmd_identifier_token4] = ACTIONS(2049), + [aux_sym_cmd_identifier_token5] = ACTIONS(2049), + [aux_sym_cmd_identifier_token6] = ACTIONS(2049), + [aux_sym_cmd_identifier_token7] = ACTIONS(2049), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2049), + [aux_sym_cmd_identifier_token11] = ACTIONS(2049), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2049), + [aux_sym_cmd_identifier_token17] = ACTIONS(2049), + [aux_sym_cmd_identifier_token18] = ACTIONS(2049), + [aux_sym_cmd_identifier_token19] = ACTIONS(2049), + [aux_sym_cmd_identifier_token20] = ACTIONS(2049), + [aux_sym_cmd_identifier_token21] = ACTIONS(2049), + [aux_sym_cmd_identifier_token22] = ACTIONS(2049), + [aux_sym_cmd_identifier_token23] = ACTIONS(2049), + [aux_sym_cmd_identifier_token24] = ACTIONS(2049), + [aux_sym_cmd_identifier_token25] = ACTIONS(2049), + [aux_sym_cmd_identifier_token26] = ACTIONS(2049), + [aux_sym_cmd_identifier_token27] = ACTIONS(2049), + [aux_sym_cmd_identifier_token28] = ACTIONS(2049), + [aux_sym_cmd_identifier_token29] = ACTIONS(2049), + [aux_sym_cmd_identifier_token30] = ACTIONS(2049), + [aux_sym_cmd_identifier_token31] = ACTIONS(2049), + [aux_sym_cmd_identifier_token32] = ACTIONS(2049), + [aux_sym_cmd_identifier_token33] = ACTIONS(2049), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2049), + [aux_sym_cmd_identifier_token36] = ACTIONS(2049), + [aux_sym_cmd_identifier_token37] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2049), + }, + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), + }, + [593] = { + [sym__expr_parenthesized_immediate] = STATE(7232), + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2053), + [aux_sym_cmd_identifier_token3] = ACTIONS(2053), + [aux_sym_cmd_identifier_token4] = ACTIONS(2053), + [aux_sym_cmd_identifier_token5] = ACTIONS(2053), + [aux_sym_cmd_identifier_token6] = ACTIONS(2053), + [aux_sym_cmd_identifier_token7] = ACTIONS(2053), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2053), + [aux_sym_cmd_identifier_token11] = ACTIONS(2053), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2053), + [aux_sym_cmd_identifier_token17] = ACTIONS(2053), + [aux_sym_cmd_identifier_token18] = ACTIONS(2053), + [aux_sym_cmd_identifier_token19] = ACTIONS(2053), + [aux_sym_cmd_identifier_token20] = ACTIONS(2053), + [aux_sym_cmd_identifier_token21] = ACTIONS(2053), + [aux_sym_cmd_identifier_token22] = ACTIONS(2053), + [aux_sym_cmd_identifier_token23] = ACTIONS(2053), + [aux_sym_cmd_identifier_token24] = ACTIONS(2053), + [aux_sym_cmd_identifier_token25] = ACTIONS(2053), + [aux_sym_cmd_identifier_token26] = ACTIONS(2053), + [aux_sym_cmd_identifier_token27] = ACTIONS(2053), + [aux_sym_cmd_identifier_token28] = ACTIONS(2053), + [aux_sym_cmd_identifier_token29] = ACTIONS(2053), + [aux_sym_cmd_identifier_token30] = ACTIONS(2053), + [aux_sym_cmd_identifier_token31] = ACTIONS(2053), + [aux_sym_cmd_identifier_token32] = ACTIONS(2053), + [aux_sym_cmd_identifier_token33] = ACTIONS(2053), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2053), + [aux_sym_cmd_identifier_token36] = ACTIONS(2053), + [aux_sym_cmd_identifier_token37] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), + }, + [595] = { + [sym_comment] = STATE(595), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), + }, + [596] = { + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), + }, + [597] = { + [sym__expr_parenthesized_immediate] = STATE(7373), + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_alias] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_let_DASHenv] = ACTIONS(2178), + [anon_sym_mut] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [aux_sym_cmd_identifier_token1] = ACTIONS(2178), + [aux_sym_cmd_identifier_token2] = ACTIONS(2180), + [aux_sym_cmd_identifier_token3] = ACTIONS(2180), + [aux_sym_cmd_identifier_token4] = ACTIONS(2180), + [aux_sym_cmd_identifier_token5] = ACTIONS(2180), + [aux_sym_cmd_identifier_token6] = ACTIONS(2180), + [aux_sym_cmd_identifier_token7] = ACTIONS(2180), + [aux_sym_cmd_identifier_token8] = ACTIONS(2178), + [aux_sym_cmd_identifier_token9] = ACTIONS(2178), + [aux_sym_cmd_identifier_token10] = ACTIONS(2180), + [aux_sym_cmd_identifier_token11] = ACTIONS(2180), + [aux_sym_cmd_identifier_token12] = ACTIONS(2178), + [aux_sym_cmd_identifier_token13] = ACTIONS(2178), + [aux_sym_cmd_identifier_token14] = ACTIONS(2178), + [aux_sym_cmd_identifier_token15] = ACTIONS(2178), + [aux_sym_cmd_identifier_token16] = ACTIONS(2180), + [aux_sym_cmd_identifier_token17] = ACTIONS(2180), + [aux_sym_cmd_identifier_token18] = ACTIONS(2180), + [aux_sym_cmd_identifier_token19] = ACTIONS(2180), + [aux_sym_cmd_identifier_token20] = ACTIONS(2180), + [aux_sym_cmd_identifier_token21] = ACTIONS(2180), + [aux_sym_cmd_identifier_token22] = ACTIONS(2180), + [aux_sym_cmd_identifier_token23] = ACTIONS(2180), + [aux_sym_cmd_identifier_token24] = ACTIONS(2180), + [aux_sym_cmd_identifier_token25] = ACTIONS(2180), + [aux_sym_cmd_identifier_token26] = ACTIONS(2180), + [aux_sym_cmd_identifier_token27] = ACTIONS(2180), + [aux_sym_cmd_identifier_token28] = ACTIONS(2180), + [aux_sym_cmd_identifier_token29] = ACTIONS(2180), + [aux_sym_cmd_identifier_token30] = ACTIONS(2180), + [aux_sym_cmd_identifier_token31] = ACTIONS(2180), + [aux_sym_cmd_identifier_token32] = ACTIONS(2180), + [aux_sym_cmd_identifier_token33] = ACTIONS(2180), + [aux_sym_cmd_identifier_token34] = ACTIONS(2178), + [aux_sym_cmd_identifier_token35] = ACTIONS(2180), + [aux_sym_cmd_identifier_token36] = ACTIONS(2180), + [aux_sym_cmd_identifier_token37] = ACTIONS(2180), + [aux_sym_cmd_identifier_token38] = ACTIONS(2178), + [aux_sym_cmd_identifier_token39] = ACTIONS(2180), + [aux_sym_cmd_identifier_token40] = ACTIONS(2180), + [anon_sym_def] = ACTIONS(2178), + [anon_sym_export_DASHenv] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2180), + [anon_sym_error] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_in2] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_make] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_catch] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_source] = ACTIONS(2178), + [anon_sym_source_DASHenv] = ACTIONS(2178), + [anon_sym_register] = ACTIONS(2178), + [anon_sym_hide] = ACTIONS(2178), + [anon_sym_hide_DASHenv] = ACTIONS(2178), + [anon_sym_overlay] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2178), + [aux_sym__val_number_decimal_token2] = ACTIONS(2180), + [aux_sym__val_number_decimal_token3] = ACTIONS(2180), + [aux_sym__val_number_decimal_token4] = ACTIONS(2180), + [aux_sym__val_number_token1] = ACTIONS(2180), + [aux_sym__val_number_token2] = ACTIONS(2180), + [aux_sym__val_number_token3] = ACTIONS(2180), + [aux_sym__val_number_token4] = ACTIONS(2178), + [aux_sym__val_number_token5] = ACTIONS(2178), + [aux_sym__val_number_token6] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym__str_single_quotes] = ACTIONS(2180), + [sym__str_back_ticks] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2180), + }, + [598] = { + [sym__expr_parenthesized_immediate] = STATE(7373), + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_alias] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_let_DASHenv] = ACTIONS(2182), + [anon_sym_mut] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [aux_sym_cmd_identifier_token1] = ACTIONS(2182), + [aux_sym_cmd_identifier_token2] = ACTIONS(2184), + [aux_sym_cmd_identifier_token3] = ACTIONS(2184), + [aux_sym_cmd_identifier_token4] = ACTIONS(2184), + [aux_sym_cmd_identifier_token5] = ACTIONS(2184), + [aux_sym_cmd_identifier_token6] = ACTIONS(2184), + [aux_sym_cmd_identifier_token7] = ACTIONS(2184), + [aux_sym_cmd_identifier_token8] = ACTIONS(2182), + [aux_sym_cmd_identifier_token9] = ACTIONS(2182), + [aux_sym_cmd_identifier_token10] = ACTIONS(2184), + [aux_sym_cmd_identifier_token11] = ACTIONS(2184), + [aux_sym_cmd_identifier_token12] = ACTIONS(2182), + [aux_sym_cmd_identifier_token13] = ACTIONS(2182), + [aux_sym_cmd_identifier_token14] = ACTIONS(2182), + [aux_sym_cmd_identifier_token15] = ACTIONS(2182), + [aux_sym_cmd_identifier_token16] = ACTIONS(2184), + [aux_sym_cmd_identifier_token17] = ACTIONS(2184), + [aux_sym_cmd_identifier_token18] = ACTIONS(2184), + [aux_sym_cmd_identifier_token19] = ACTIONS(2184), + [aux_sym_cmd_identifier_token20] = ACTIONS(2184), + [aux_sym_cmd_identifier_token21] = ACTIONS(2184), + [aux_sym_cmd_identifier_token22] = ACTIONS(2184), + [aux_sym_cmd_identifier_token23] = ACTIONS(2184), + [aux_sym_cmd_identifier_token24] = ACTIONS(2184), + [aux_sym_cmd_identifier_token25] = ACTIONS(2184), + [aux_sym_cmd_identifier_token26] = ACTIONS(2184), + [aux_sym_cmd_identifier_token27] = ACTIONS(2184), + [aux_sym_cmd_identifier_token28] = ACTIONS(2184), + [aux_sym_cmd_identifier_token29] = ACTIONS(2184), + [aux_sym_cmd_identifier_token30] = ACTIONS(2184), + [aux_sym_cmd_identifier_token31] = ACTIONS(2184), + [aux_sym_cmd_identifier_token32] = ACTIONS(2184), + [aux_sym_cmd_identifier_token33] = ACTIONS(2184), + [aux_sym_cmd_identifier_token34] = ACTIONS(2182), + [aux_sym_cmd_identifier_token35] = ACTIONS(2184), + [aux_sym_cmd_identifier_token36] = ACTIONS(2184), + [aux_sym_cmd_identifier_token37] = ACTIONS(2184), + [aux_sym_cmd_identifier_token38] = ACTIONS(2182), + [aux_sym_cmd_identifier_token39] = ACTIONS(2184), + [aux_sym_cmd_identifier_token40] = ACTIONS(2184), + [anon_sym_def] = ACTIONS(2182), + [anon_sym_export_DASHenv] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_DOLLAR] = ACTIONS(2184), + [anon_sym_error] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_in2] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_make] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_catch] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_source] = ACTIONS(2182), + [anon_sym_source_DASHenv] = ACTIONS(2182), + [anon_sym_register] = ACTIONS(2182), + [anon_sym_hide] = ACTIONS(2182), + [anon_sym_hide_DASHenv] = ACTIONS(2182), + [anon_sym_overlay] = ACTIONS(2182), + [anon_sym_as] = ACTIONS(2182), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2184), + [aux_sym__val_number_decimal_token4] = ACTIONS(2184), + [aux_sym__val_number_token1] = ACTIONS(2184), + [aux_sym__val_number_token2] = ACTIONS(2184), + [aux_sym__val_number_token3] = ACTIONS(2184), + [aux_sym__val_number_token4] = ACTIONS(2182), + [aux_sym__val_number_token5] = ACTIONS(2182), + [aux_sym__val_number_token6] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym__str_single_quotes] = ACTIONS(2184), + [sym__str_back_ticks] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2184), + }, + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), [aux_sym_cmd_identifier_token8] = ACTIONS(1004), [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), [aux_sym_cmd_identifier_token12] = ACTIONS(1004), [aux_sym_cmd_identifier_token13] = ACTIONS(1004), [aux_sym_cmd_identifier_token14] = ACTIONS(1004), [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), [anon_sym_def] = ACTIONS(1004), [anon_sym_export_DASHenv] = ACTIONS(1004), [anon_sym_extern] = ACTIONS(1004), [anon_sym_module] = ACTIONS(1004), [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_error] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_break] = ACTIONS(1004), @@ -149201,7 +144742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1004), [anon_sym_else] = ACTIONS(1004), [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_try] = ACTIONS(1004), [anon_sym_catch] = ACTIONS(1004), [anon_sym_return] = ACTIONS(1004), @@ -149212,31 +144753,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1004), [anon_sym_overlay] = ACTIONS(1004), [anon_sym_as] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), + [anon_sym_LPAREN2] = ACTIONS(2237), [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), [aux_sym__val_number_token4] = ACTIONS(1004), [aux_sym__val_number_token5] = ACTIONS(1004), [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [600] = { + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), + [sym_raw_string_begin] = ACTIONS(986), }, - [591] = { - [sym_comment] = STATE(591), - [aux_sym__multiple_types_repeat1] = STATE(596), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1653), + [aux_sym_cmd_identifier_token3] = ACTIONS(1653), + [aux_sym_cmd_identifier_token4] = ACTIONS(1653), + [aux_sym_cmd_identifier_token5] = ACTIONS(1653), + [aux_sym_cmd_identifier_token6] = ACTIONS(1653), + [aux_sym_cmd_identifier_token7] = ACTIONS(1653), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1653), + [aux_sym_cmd_identifier_token11] = ACTIONS(1653), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1653), + [aux_sym_cmd_identifier_token17] = ACTIONS(1653), + [aux_sym_cmd_identifier_token18] = ACTIONS(1653), + [aux_sym_cmd_identifier_token19] = ACTIONS(1653), + [aux_sym_cmd_identifier_token20] = ACTIONS(1653), + [aux_sym_cmd_identifier_token21] = ACTIONS(1653), + [aux_sym_cmd_identifier_token22] = ACTIONS(1653), + [aux_sym_cmd_identifier_token23] = ACTIONS(1653), + [aux_sym_cmd_identifier_token24] = ACTIONS(1653), + [aux_sym_cmd_identifier_token25] = ACTIONS(1653), + [aux_sym_cmd_identifier_token26] = ACTIONS(1653), + [aux_sym_cmd_identifier_token27] = ACTIONS(1653), + [aux_sym_cmd_identifier_token28] = ACTIONS(1653), + [aux_sym_cmd_identifier_token29] = ACTIONS(1653), + [aux_sym_cmd_identifier_token30] = ACTIONS(1653), + [aux_sym_cmd_identifier_token31] = ACTIONS(1653), + [aux_sym_cmd_identifier_token32] = ACTIONS(1653), + [aux_sym_cmd_identifier_token33] = ACTIONS(1653), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1653), + [aux_sym_cmd_identifier_token36] = ACTIONS(1653), + [aux_sym_cmd_identifier_token37] = ACTIONS(1653), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1653), + [aux_sym_cmd_identifier_token40] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1653), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1653), + [aux_sym__val_number_decimal_token3] = ACTIONS(1653), + [aux_sym__val_number_decimal_token4] = ACTIONS(1653), + [aux_sym__val_number_token1] = ACTIONS(1653), + [aux_sym__val_number_token2] = ACTIONS(1653), + [aux_sym__val_number_token3] = ACTIONS(1653), + [aux_sym__val_number_token4] = ACTIONS(1653), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [sym__str_single_quotes] = ACTIONS(1653), + [sym__str_back_ticks] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1653), + [sym__entry_separator] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1665), + }, + [602] = { + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2334), + [aux_sym_cmd_identifier_token3] = ACTIONS(2334), + [aux_sym_cmd_identifier_token4] = ACTIONS(2334), + [aux_sym_cmd_identifier_token5] = ACTIONS(2334), + [aux_sym_cmd_identifier_token6] = ACTIONS(2334), + [aux_sym_cmd_identifier_token7] = ACTIONS(2334), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2334), + [aux_sym_cmd_identifier_token11] = ACTIONS(2334), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2334), + [aux_sym_cmd_identifier_token17] = ACTIONS(2334), + [aux_sym_cmd_identifier_token18] = ACTIONS(2334), + [aux_sym_cmd_identifier_token19] = ACTIONS(2334), + [aux_sym_cmd_identifier_token20] = ACTIONS(2334), + [aux_sym_cmd_identifier_token21] = ACTIONS(2334), + [aux_sym_cmd_identifier_token22] = ACTIONS(2334), + [aux_sym_cmd_identifier_token23] = ACTIONS(2334), + [aux_sym_cmd_identifier_token24] = ACTIONS(2334), + [aux_sym_cmd_identifier_token25] = ACTIONS(2334), + [aux_sym_cmd_identifier_token26] = ACTIONS(2334), + [aux_sym_cmd_identifier_token27] = ACTIONS(2334), + [aux_sym_cmd_identifier_token28] = ACTIONS(2334), + [aux_sym_cmd_identifier_token29] = ACTIONS(2334), + [aux_sym_cmd_identifier_token30] = ACTIONS(2334), + [aux_sym_cmd_identifier_token31] = ACTIONS(2334), + [aux_sym_cmd_identifier_token32] = ACTIONS(2334), + [aux_sym_cmd_identifier_token33] = ACTIONS(2334), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2334), + [aux_sym_cmd_identifier_token36] = ACTIONS(2334), + [aux_sym_cmd_identifier_token37] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2334), + [aux_sym__val_number_decimal_token3] = ACTIONS(2334), + [aux_sym__val_number_decimal_token4] = ACTIONS(2334), + [aux_sym__val_number_token1] = ACTIONS(2334), + [aux_sym__val_number_token2] = ACTIONS(2334), + [aux_sym__val_number_token3] = ACTIONS(2334), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2336), + }, + [603] = { + [sym_comment] = STATE(603), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [aux_sym_cmd_identifier_token37] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [sym__entry_separator] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2340), + }, + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [aux_sym_cmd_identifier_token37] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [sym__entry_separator] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2340), + }, + [605] = { + [sym_comment] = STATE(605), [anon_sym_export] = ACTIONS(2342), [anon_sym_alias] = ACTIONS(2342), [anon_sym_let] = ACTIONS(2342), @@ -149303,7 +145343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2342), [anon_sym_else] = ACTIONS(2342), [anon_sym_match] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2342), [anon_sym_try] = ACTIONS(2342), [anon_sym_catch] = ACTIONS(2342), [anon_sym_return] = ACTIONS(2342), @@ -149331,518 +145371,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2342), [sym__str_back_ticks] = ACTIONS(2342), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), - [sym__entry_separator] = ACTIONS(2324), + [sym__entry_separator] = ACTIONS(2344), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2346), + [sym_raw_string_begin] = ACTIONS(2344), }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [593] = { - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(2242), - [anon_sym_alias] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_let_DASHenv] = ACTIONS(2242), - [anon_sym_mut] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [aux_sym_cmd_identifier_token1] = ACTIONS(2242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2242), - [aux_sym_cmd_identifier_token3] = ACTIONS(2242), - [aux_sym_cmd_identifier_token4] = ACTIONS(2242), - [aux_sym_cmd_identifier_token5] = ACTIONS(2242), - [aux_sym_cmd_identifier_token6] = ACTIONS(2242), - [aux_sym_cmd_identifier_token7] = ACTIONS(2242), - [aux_sym_cmd_identifier_token8] = ACTIONS(2242), - [aux_sym_cmd_identifier_token9] = ACTIONS(2242), - [aux_sym_cmd_identifier_token10] = ACTIONS(2242), - [aux_sym_cmd_identifier_token11] = ACTIONS(2242), - [aux_sym_cmd_identifier_token12] = ACTIONS(2242), - [aux_sym_cmd_identifier_token13] = ACTIONS(2242), - [aux_sym_cmd_identifier_token14] = ACTIONS(2242), - [aux_sym_cmd_identifier_token15] = ACTIONS(2242), - [aux_sym_cmd_identifier_token16] = ACTIONS(2242), - [aux_sym_cmd_identifier_token17] = ACTIONS(2242), - [aux_sym_cmd_identifier_token18] = ACTIONS(2242), - [aux_sym_cmd_identifier_token19] = ACTIONS(2242), - [aux_sym_cmd_identifier_token20] = ACTIONS(2242), - [aux_sym_cmd_identifier_token21] = ACTIONS(2242), - [aux_sym_cmd_identifier_token22] = ACTIONS(2242), - [aux_sym_cmd_identifier_token23] = ACTIONS(2242), - [aux_sym_cmd_identifier_token24] = ACTIONS(2242), - [aux_sym_cmd_identifier_token25] = ACTIONS(2242), - [aux_sym_cmd_identifier_token26] = ACTIONS(2242), - [aux_sym_cmd_identifier_token27] = ACTIONS(2242), - [aux_sym_cmd_identifier_token28] = ACTIONS(2242), - [aux_sym_cmd_identifier_token29] = ACTIONS(2242), - [aux_sym_cmd_identifier_token30] = ACTIONS(2242), - [aux_sym_cmd_identifier_token31] = ACTIONS(2242), - [aux_sym_cmd_identifier_token32] = ACTIONS(2242), - [aux_sym_cmd_identifier_token33] = ACTIONS(2242), - [aux_sym_cmd_identifier_token34] = ACTIONS(2242), - [aux_sym_cmd_identifier_token35] = ACTIONS(2242), - [aux_sym_cmd_identifier_token36] = ACTIONS(2242), - [aux_sym_cmd_identifier_token37] = ACTIONS(2242), - [aux_sym_cmd_identifier_token38] = ACTIONS(2242), - [aux_sym_cmd_identifier_token39] = ACTIONS(2242), - [aux_sym_cmd_identifier_token40] = ACTIONS(2242), - [anon_sym_def] = ACTIONS(2242), - [anon_sym_export_DASHenv] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(2242), - [anon_sym_module] = ACTIONS(2242), - [anon_sym_use] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_error] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_in2] = ACTIONS(2242), - [anon_sym_loop] = ACTIONS(2242), - [anon_sym_make] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_do] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_else] = ACTIONS(2242), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2242), - [anon_sym_catch] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_source] = ACTIONS(2242), - [anon_sym_source_DASHenv] = ACTIONS(2242), - [anon_sym_register] = ACTIONS(2242), - [anon_sym_hide] = ACTIONS(2242), - [anon_sym_hide_DASHenv] = ACTIONS(2242), - [anon_sym_overlay] = ACTIONS(2242), - [anon_sym_as] = ACTIONS(2242), - [anon_sym_LPAREN2] = ACTIONS(2244), - [anon_sym_PLUS2] = ACTIONS(2242), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2242), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2242), - [aux_sym__val_number_decimal_token3] = ACTIONS(2242), - [aux_sym__val_number_decimal_token4] = ACTIONS(2242), - [aux_sym__val_number_token1] = ACTIONS(2242), - [aux_sym__val_number_token2] = ACTIONS(2242), - [aux_sym__val_number_token3] = ACTIONS(2242), - [aux_sym__val_number_token4] = ACTIONS(2242), - [aux_sym__val_number_token5] = ACTIONS(2242), - [aux_sym__val_number_token6] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym__str_single_quotes] = ACTIONS(2244), - [sym__str_back_ticks] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2244), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2244), - }, - [595] = { - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [aux_sym_cmd_identifier_token37] = ACTIONS(1022), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1022), - [aux_sym_cmd_identifier_token40] = ACTIONS(1022), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1022), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(1022), - [aux_sym__val_number_token2] = ACTIONS(1022), - [aux_sym__val_number_token3] = ACTIONS(1022), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym__str_single_quotes] = ACTIONS(1022), - [sym__str_back_ticks] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), - [sym__entry_separator] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1024), - }, - [596] = { - [sym_comment] = STATE(596), - [aux_sym__multiple_types_repeat1] = STATE(597), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2324), + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [sym__entry_separator] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), + [sym_raw_string_begin] = ACTIONS(2348), }, - [597] = { - [sym_comment] = STATE(597), - [aux_sym__multiple_types_repeat1] = STATE(597), + [607] = { + [sym_comment] = STATE(607), [anon_sym_export] = ACTIONS(2350), [anon_sym_alias] = ACTIONS(2350), [anon_sym_let] = ACTIONS(2350), @@ -149939,111 +145573,2710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), [sym__entry_separator] = ACTIONS(2352), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2355), + [sym_raw_string_begin] = ACTIONS(2352), }, - [598] = { - [sym__expr_parenthesized_immediate] = STATE(7983), - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2070), - [aux_sym_cmd_identifier_token3] = ACTIONS(2070), - [aux_sym_cmd_identifier_token4] = ACTIONS(2070), - [aux_sym_cmd_identifier_token5] = ACTIONS(2070), - [aux_sym_cmd_identifier_token6] = ACTIONS(2070), - [aux_sym_cmd_identifier_token7] = ACTIONS(2070), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2070), - [aux_sym_cmd_identifier_token17] = ACTIONS(2070), - [aux_sym_cmd_identifier_token18] = ACTIONS(2070), - [aux_sym_cmd_identifier_token19] = ACTIONS(2070), - [aux_sym_cmd_identifier_token20] = ACTIONS(2070), - [aux_sym_cmd_identifier_token21] = ACTIONS(2070), - [aux_sym_cmd_identifier_token22] = ACTIONS(2070), - [aux_sym_cmd_identifier_token23] = ACTIONS(2070), - [aux_sym_cmd_identifier_token24] = ACTIONS(2070), - [aux_sym_cmd_identifier_token25] = ACTIONS(2070), - [aux_sym_cmd_identifier_token26] = ACTIONS(2070), - [aux_sym_cmd_identifier_token27] = ACTIONS(2070), - [aux_sym_cmd_identifier_token28] = ACTIONS(2070), - [aux_sym_cmd_identifier_token29] = ACTIONS(2070), - [aux_sym_cmd_identifier_token30] = ACTIONS(2070), - [aux_sym_cmd_identifier_token31] = ACTIONS(2070), - [aux_sym_cmd_identifier_token32] = ACTIONS(2070), - [aux_sym_cmd_identifier_token33] = ACTIONS(2070), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2070), - [aux_sym_cmd_identifier_token36] = ACTIONS(2070), - [aux_sym_cmd_identifier_token37] = ACTIONS(2070), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2070), + [608] = { + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(2354), + [anon_sym_alias] = ACTIONS(2354), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_let_DASHenv] = ACTIONS(2354), + [anon_sym_mut] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [aux_sym_cmd_identifier_token1] = ACTIONS(2354), + [aux_sym_cmd_identifier_token2] = ACTIONS(2354), + [aux_sym_cmd_identifier_token3] = ACTIONS(2354), + [aux_sym_cmd_identifier_token4] = ACTIONS(2354), + [aux_sym_cmd_identifier_token5] = ACTIONS(2354), + [aux_sym_cmd_identifier_token6] = ACTIONS(2354), + [aux_sym_cmd_identifier_token7] = ACTIONS(2354), + [aux_sym_cmd_identifier_token8] = ACTIONS(2354), + [aux_sym_cmd_identifier_token9] = ACTIONS(2354), + [aux_sym_cmd_identifier_token10] = ACTIONS(2354), + [aux_sym_cmd_identifier_token11] = ACTIONS(2354), + [aux_sym_cmd_identifier_token12] = ACTIONS(2354), + [aux_sym_cmd_identifier_token13] = ACTIONS(2354), + [aux_sym_cmd_identifier_token14] = ACTIONS(2354), + [aux_sym_cmd_identifier_token15] = ACTIONS(2354), + [aux_sym_cmd_identifier_token16] = ACTIONS(2354), + [aux_sym_cmd_identifier_token17] = ACTIONS(2354), + [aux_sym_cmd_identifier_token18] = ACTIONS(2354), + [aux_sym_cmd_identifier_token19] = ACTIONS(2354), + [aux_sym_cmd_identifier_token20] = ACTIONS(2354), + [aux_sym_cmd_identifier_token21] = ACTIONS(2354), + [aux_sym_cmd_identifier_token22] = ACTIONS(2354), + [aux_sym_cmd_identifier_token23] = ACTIONS(2354), + [aux_sym_cmd_identifier_token24] = ACTIONS(2354), + [aux_sym_cmd_identifier_token25] = ACTIONS(2354), + [aux_sym_cmd_identifier_token26] = ACTIONS(2354), + [aux_sym_cmd_identifier_token27] = ACTIONS(2354), + [aux_sym_cmd_identifier_token28] = ACTIONS(2354), + [aux_sym_cmd_identifier_token29] = ACTIONS(2354), + [aux_sym_cmd_identifier_token30] = ACTIONS(2354), + [aux_sym_cmd_identifier_token31] = ACTIONS(2354), + [aux_sym_cmd_identifier_token32] = ACTIONS(2354), + [aux_sym_cmd_identifier_token33] = ACTIONS(2354), + [aux_sym_cmd_identifier_token34] = ACTIONS(2354), + [aux_sym_cmd_identifier_token35] = ACTIONS(2354), + [aux_sym_cmd_identifier_token36] = ACTIONS(2354), + [aux_sym_cmd_identifier_token37] = ACTIONS(2354), + [aux_sym_cmd_identifier_token38] = ACTIONS(2354), + [aux_sym_cmd_identifier_token39] = ACTIONS(2354), + [aux_sym_cmd_identifier_token40] = ACTIONS(2354), + [anon_sym_def] = ACTIONS(2354), + [anon_sym_export_DASHenv] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym_module] = ACTIONS(2354), + [anon_sym_use] = ACTIONS(2354), + [anon_sym_LPAREN] = ACTIONS(2354), + [anon_sym_DOLLAR] = ACTIONS(2354), + [anon_sym_error] = ACTIONS(2354), + [anon_sym_DASH2] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in2] = ACTIONS(2354), + [anon_sym_loop] = ACTIONS(2354), + [anon_sym_make] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_match] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2354), + [anon_sym_catch] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_source] = ACTIONS(2354), + [anon_sym_source_DASHenv] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_hide] = ACTIONS(2354), + [anon_sym_hide_DASHenv] = ACTIONS(2354), + [anon_sym_overlay] = ACTIONS(2354), + [anon_sym_as] = ACTIONS(2354), + [anon_sym_PLUS2] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2354), + [aux_sym__val_number_decimal_token1] = ACTIONS(2354), + [aux_sym__val_number_decimal_token2] = ACTIONS(2354), + [aux_sym__val_number_decimal_token3] = ACTIONS(2354), + [aux_sym__val_number_decimal_token4] = ACTIONS(2354), + [aux_sym__val_number_token1] = ACTIONS(2354), + [aux_sym__val_number_token2] = ACTIONS(2354), + [aux_sym__val_number_token3] = ACTIONS(2354), + [aux_sym__val_number_token4] = ACTIONS(2354), + [aux_sym__val_number_token5] = ACTIONS(2354), + [aux_sym__val_number_token6] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2354), + [sym__str_single_quotes] = ACTIONS(2354), + [sym__str_back_ticks] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2354), + [sym__entry_separator] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2356), }, - [599] = { - [sym_comment] = STATE(599), + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2358), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [aux_sym_cmd_identifier_token6] = ACTIONS(2358), + [aux_sym_cmd_identifier_token7] = ACTIONS(2358), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2358), + [aux_sym_cmd_identifier_token11] = ACTIONS(2358), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2358), + [aux_sym_cmd_identifier_token17] = ACTIONS(2358), + [aux_sym_cmd_identifier_token18] = ACTIONS(2358), + [aux_sym_cmd_identifier_token19] = ACTIONS(2358), + [aux_sym_cmd_identifier_token20] = ACTIONS(2358), + [aux_sym_cmd_identifier_token21] = ACTIONS(2358), + [aux_sym_cmd_identifier_token22] = ACTIONS(2358), + [aux_sym_cmd_identifier_token23] = ACTIONS(2358), + [aux_sym_cmd_identifier_token24] = ACTIONS(2358), + [aux_sym_cmd_identifier_token25] = ACTIONS(2358), + [aux_sym_cmd_identifier_token26] = ACTIONS(2358), + [aux_sym_cmd_identifier_token27] = ACTIONS(2358), + [aux_sym_cmd_identifier_token28] = ACTIONS(2358), + [aux_sym_cmd_identifier_token29] = ACTIONS(2358), + [aux_sym_cmd_identifier_token30] = ACTIONS(2358), + [aux_sym_cmd_identifier_token31] = ACTIONS(2358), + [aux_sym_cmd_identifier_token32] = ACTIONS(2358), + [aux_sym_cmd_identifier_token33] = ACTIONS(2358), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2358), + [aux_sym_cmd_identifier_token36] = ACTIONS(2358), + [aux_sym_cmd_identifier_token37] = ACTIONS(2358), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2358), + [aux_sym_cmd_identifier_token40] = ACTIONS(2358), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2358), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in2] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2358), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2358), + [aux_sym__val_number_decimal_token4] = ACTIONS(2358), + [aux_sym__val_number_token1] = ACTIONS(2358), + [aux_sym__val_number_token2] = ACTIONS(2358), + [aux_sym__val_number_token3] = ACTIONS(2358), + [aux_sym__val_number_token4] = ACTIONS(2358), + [aux_sym__val_number_token5] = ACTIONS(2358), + [aux_sym__val_number_token6] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [sym__str_single_quotes] = ACTIONS(2358), + [sym__str_back_ticks] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2358), + [sym__entry_separator] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2360), + }, + [610] = { + [sym_comment] = STATE(610), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2362), + [aux_sym_cmd_identifier_token3] = ACTIONS(2362), + [aux_sym_cmd_identifier_token4] = ACTIONS(2362), + [aux_sym_cmd_identifier_token5] = ACTIONS(2362), + [aux_sym_cmd_identifier_token6] = ACTIONS(2362), + [aux_sym_cmd_identifier_token7] = ACTIONS(2362), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2362), + [aux_sym_cmd_identifier_token11] = ACTIONS(2362), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2362), + [aux_sym_cmd_identifier_token17] = ACTIONS(2362), + [aux_sym_cmd_identifier_token18] = ACTIONS(2362), + [aux_sym_cmd_identifier_token19] = ACTIONS(2362), + [aux_sym_cmd_identifier_token20] = ACTIONS(2362), + [aux_sym_cmd_identifier_token21] = ACTIONS(2362), + [aux_sym_cmd_identifier_token22] = ACTIONS(2362), + [aux_sym_cmd_identifier_token23] = ACTIONS(2362), + [aux_sym_cmd_identifier_token24] = ACTIONS(2362), + [aux_sym_cmd_identifier_token25] = ACTIONS(2362), + [aux_sym_cmd_identifier_token26] = ACTIONS(2362), + [aux_sym_cmd_identifier_token27] = ACTIONS(2362), + [aux_sym_cmd_identifier_token28] = ACTIONS(2362), + [aux_sym_cmd_identifier_token29] = ACTIONS(2362), + [aux_sym_cmd_identifier_token30] = ACTIONS(2362), + [aux_sym_cmd_identifier_token31] = ACTIONS(2362), + [aux_sym_cmd_identifier_token32] = ACTIONS(2362), + [aux_sym_cmd_identifier_token33] = ACTIONS(2362), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2362), + [aux_sym_cmd_identifier_token36] = ACTIONS(2362), + [aux_sym_cmd_identifier_token37] = ACTIONS(2362), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2362), + [aux_sym_cmd_identifier_token40] = ACTIONS(2362), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in2] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = ACTIONS(2362), + [aux_sym__val_number_decimal_token4] = ACTIONS(2362), + [aux_sym__val_number_token1] = ACTIONS(2362), + [aux_sym__val_number_token2] = ACTIONS(2362), + [aux_sym__val_number_token3] = ACTIONS(2362), + [aux_sym__val_number_token4] = ACTIONS(2362), + [aux_sym__val_number_token5] = ACTIONS(2362), + [aux_sym__val_number_token6] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym__str_single_quotes] = ACTIONS(2362), + [sym__str_back_ticks] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2362), + [sym__entry_separator] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2364), + }, + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_alias] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_let_DASHenv] = ACTIONS(2366), + [anon_sym_mut] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [aux_sym_cmd_identifier_token1] = ACTIONS(2366), + [aux_sym_cmd_identifier_token2] = ACTIONS(2366), + [aux_sym_cmd_identifier_token3] = ACTIONS(2366), + [aux_sym_cmd_identifier_token4] = ACTIONS(2366), + [aux_sym_cmd_identifier_token5] = ACTIONS(2366), + [aux_sym_cmd_identifier_token6] = ACTIONS(2366), + [aux_sym_cmd_identifier_token7] = ACTIONS(2366), + [aux_sym_cmd_identifier_token8] = ACTIONS(2366), + [aux_sym_cmd_identifier_token9] = ACTIONS(2366), + [aux_sym_cmd_identifier_token10] = ACTIONS(2366), + [aux_sym_cmd_identifier_token11] = ACTIONS(2366), + [aux_sym_cmd_identifier_token12] = ACTIONS(2366), + [aux_sym_cmd_identifier_token13] = ACTIONS(2366), + [aux_sym_cmd_identifier_token14] = ACTIONS(2366), + [aux_sym_cmd_identifier_token15] = ACTIONS(2366), + [aux_sym_cmd_identifier_token16] = ACTIONS(2366), + [aux_sym_cmd_identifier_token17] = ACTIONS(2366), + [aux_sym_cmd_identifier_token18] = ACTIONS(2366), + [aux_sym_cmd_identifier_token19] = ACTIONS(2366), + [aux_sym_cmd_identifier_token20] = ACTIONS(2366), + [aux_sym_cmd_identifier_token21] = ACTIONS(2366), + [aux_sym_cmd_identifier_token22] = ACTIONS(2366), + [aux_sym_cmd_identifier_token23] = ACTIONS(2366), + [aux_sym_cmd_identifier_token24] = ACTIONS(2366), + [aux_sym_cmd_identifier_token25] = ACTIONS(2366), + [aux_sym_cmd_identifier_token26] = ACTIONS(2366), + [aux_sym_cmd_identifier_token27] = ACTIONS(2366), + [aux_sym_cmd_identifier_token28] = ACTIONS(2366), + [aux_sym_cmd_identifier_token29] = ACTIONS(2366), + [aux_sym_cmd_identifier_token30] = ACTIONS(2366), + [aux_sym_cmd_identifier_token31] = ACTIONS(2366), + [aux_sym_cmd_identifier_token32] = ACTIONS(2366), + [aux_sym_cmd_identifier_token33] = ACTIONS(2366), + [aux_sym_cmd_identifier_token34] = ACTIONS(2366), + [aux_sym_cmd_identifier_token35] = ACTIONS(2366), + [aux_sym_cmd_identifier_token36] = ACTIONS(2366), + [aux_sym_cmd_identifier_token37] = ACTIONS(2366), + [aux_sym_cmd_identifier_token38] = ACTIONS(2366), + [aux_sym_cmd_identifier_token39] = ACTIONS(2366), + [aux_sym_cmd_identifier_token40] = ACTIONS(2366), + [anon_sym_def] = ACTIONS(2366), + [anon_sym_export_DASHenv] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_error] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_in2] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_make] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_catch] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_source] = ACTIONS(2366), + [anon_sym_source_DASHenv] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2366), + [anon_sym_hide] = ACTIONS(2366), + [anon_sym_hide_DASHenv] = ACTIONS(2366), + [anon_sym_overlay] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), + [aux_sym__val_number_decimal_token1] = ACTIONS(2366), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2366), + [aux_sym__val_number_decimal_token4] = ACTIONS(2366), + [aux_sym__val_number_token1] = ACTIONS(2366), + [aux_sym__val_number_token2] = ACTIONS(2366), + [aux_sym__val_number_token3] = ACTIONS(2366), + [aux_sym__val_number_token4] = ACTIONS(2366), + [aux_sym__val_number_token5] = ACTIONS(2366), + [aux_sym__val_number_token6] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym__str_single_quotes] = ACTIONS(2366), + [sym__str_back_ticks] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), + [sym__entry_separator] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2368), + }, + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_alias] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_let_DASHenv] = ACTIONS(2370), + [anon_sym_mut] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [aux_sym_cmd_identifier_token1] = ACTIONS(2370), + [aux_sym_cmd_identifier_token2] = ACTIONS(2370), + [aux_sym_cmd_identifier_token3] = ACTIONS(2370), + [aux_sym_cmd_identifier_token4] = ACTIONS(2370), + [aux_sym_cmd_identifier_token5] = ACTIONS(2370), + [aux_sym_cmd_identifier_token6] = ACTIONS(2370), + [aux_sym_cmd_identifier_token7] = ACTIONS(2370), + [aux_sym_cmd_identifier_token8] = ACTIONS(2370), + [aux_sym_cmd_identifier_token9] = ACTIONS(2370), + [aux_sym_cmd_identifier_token10] = ACTIONS(2370), + [aux_sym_cmd_identifier_token11] = ACTIONS(2370), + [aux_sym_cmd_identifier_token12] = ACTIONS(2370), + [aux_sym_cmd_identifier_token13] = ACTIONS(2370), + [aux_sym_cmd_identifier_token14] = ACTIONS(2370), + [aux_sym_cmd_identifier_token15] = ACTIONS(2370), + [aux_sym_cmd_identifier_token16] = ACTIONS(2370), + [aux_sym_cmd_identifier_token17] = ACTIONS(2370), + [aux_sym_cmd_identifier_token18] = ACTIONS(2370), + [aux_sym_cmd_identifier_token19] = ACTIONS(2370), + [aux_sym_cmd_identifier_token20] = ACTIONS(2370), + [aux_sym_cmd_identifier_token21] = ACTIONS(2370), + [aux_sym_cmd_identifier_token22] = ACTIONS(2370), + [aux_sym_cmd_identifier_token23] = ACTIONS(2370), + [aux_sym_cmd_identifier_token24] = ACTIONS(2370), + [aux_sym_cmd_identifier_token25] = ACTIONS(2370), + [aux_sym_cmd_identifier_token26] = ACTIONS(2370), + [aux_sym_cmd_identifier_token27] = ACTIONS(2370), + [aux_sym_cmd_identifier_token28] = ACTIONS(2370), + [aux_sym_cmd_identifier_token29] = ACTIONS(2370), + [aux_sym_cmd_identifier_token30] = ACTIONS(2370), + [aux_sym_cmd_identifier_token31] = ACTIONS(2370), + [aux_sym_cmd_identifier_token32] = ACTIONS(2370), + [aux_sym_cmd_identifier_token33] = ACTIONS(2370), + [aux_sym_cmd_identifier_token34] = ACTIONS(2370), + [aux_sym_cmd_identifier_token35] = ACTIONS(2370), + [aux_sym_cmd_identifier_token36] = ACTIONS(2370), + [aux_sym_cmd_identifier_token37] = ACTIONS(2370), + [aux_sym_cmd_identifier_token38] = ACTIONS(2370), + [aux_sym_cmd_identifier_token39] = ACTIONS(2370), + [aux_sym_cmd_identifier_token40] = ACTIONS(2370), + [anon_sym_def] = ACTIONS(2370), + [anon_sym_export_DASHenv] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_error] = ACTIONS(2370), + [anon_sym_DASH2] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_in2] = ACTIONS(2370), + [anon_sym_loop] = ACTIONS(2370), + [anon_sym_make] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_source] = ACTIONS(2370), + [anon_sym_source_DASHenv] = ACTIONS(2370), + [anon_sym_register] = ACTIONS(2370), + [anon_sym_hide] = ACTIONS(2370), + [anon_sym_hide_DASHenv] = ACTIONS(2370), + [anon_sym_overlay] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_PLUS2] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2370), + [aux_sym__val_number_decimal_token1] = ACTIONS(2370), + [aux_sym__val_number_decimal_token2] = ACTIONS(2370), + [aux_sym__val_number_decimal_token3] = ACTIONS(2370), + [aux_sym__val_number_decimal_token4] = ACTIONS(2370), + [aux_sym__val_number_token1] = ACTIONS(2370), + [aux_sym__val_number_token2] = ACTIONS(2370), + [aux_sym__val_number_token3] = ACTIONS(2370), + [aux_sym__val_number_token4] = ACTIONS(2370), + [aux_sym__val_number_token5] = ACTIONS(2370), + [aux_sym__val_number_token6] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym__str_single_quotes] = ACTIONS(2370), + [sym__str_back_ticks] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2370), + [sym__entry_separator] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2372), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1977), + [aux_sym_cmd_identifier_token3] = ACTIONS(1977), + [aux_sym_cmd_identifier_token4] = ACTIONS(1977), + [aux_sym_cmd_identifier_token5] = ACTIONS(1977), + [aux_sym_cmd_identifier_token6] = ACTIONS(1977), + [aux_sym_cmd_identifier_token7] = ACTIONS(1977), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1977), + [aux_sym_cmd_identifier_token11] = ACTIONS(1977), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1977), + [aux_sym_cmd_identifier_token17] = ACTIONS(1977), + [aux_sym_cmd_identifier_token18] = ACTIONS(1977), + [aux_sym_cmd_identifier_token19] = ACTIONS(1977), + [aux_sym_cmd_identifier_token20] = ACTIONS(1977), + [aux_sym_cmd_identifier_token21] = ACTIONS(1977), + [aux_sym_cmd_identifier_token22] = ACTIONS(1977), + [aux_sym_cmd_identifier_token23] = ACTIONS(1977), + [aux_sym_cmd_identifier_token24] = ACTIONS(1977), + [aux_sym_cmd_identifier_token25] = ACTIONS(1977), + [aux_sym_cmd_identifier_token26] = ACTIONS(1977), + [aux_sym_cmd_identifier_token27] = ACTIONS(1977), + [aux_sym_cmd_identifier_token28] = ACTIONS(1977), + [aux_sym_cmd_identifier_token29] = ACTIONS(1977), + [aux_sym_cmd_identifier_token30] = ACTIONS(1977), + [aux_sym_cmd_identifier_token31] = ACTIONS(1977), + [aux_sym_cmd_identifier_token32] = ACTIONS(1977), + [aux_sym_cmd_identifier_token33] = ACTIONS(1977), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1977), + [aux_sym_cmd_identifier_token36] = ACTIONS(1977), + [aux_sym_cmd_identifier_token37] = ACTIONS(1977), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1977), + [aux_sym_cmd_identifier_token40] = ACTIONS(1977), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1977), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1977), + [aux_sym__val_number_decimal_token3] = ACTIONS(1977), + [aux_sym__val_number_decimal_token4] = ACTIONS(1977), + [aux_sym__val_number_token1] = ACTIONS(1977), + [aux_sym__val_number_token2] = ACTIONS(1977), + [aux_sym__val_number_token3] = ACTIONS(1977), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__str_single_quotes] = ACTIONS(1977), + [sym__str_back_ticks] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), + [sym__entry_separator] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(2374), + [anon_sym_alias] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_let_DASHenv] = ACTIONS(2374), + [anon_sym_mut] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [aux_sym_cmd_identifier_token1] = ACTIONS(2374), + [aux_sym_cmd_identifier_token2] = ACTIONS(2374), + [aux_sym_cmd_identifier_token3] = ACTIONS(2374), + [aux_sym_cmd_identifier_token4] = ACTIONS(2374), + [aux_sym_cmd_identifier_token5] = ACTIONS(2374), + [aux_sym_cmd_identifier_token6] = ACTIONS(2374), + [aux_sym_cmd_identifier_token7] = ACTIONS(2374), + [aux_sym_cmd_identifier_token8] = ACTIONS(2374), + [aux_sym_cmd_identifier_token9] = ACTIONS(2374), + [aux_sym_cmd_identifier_token10] = ACTIONS(2374), + [aux_sym_cmd_identifier_token11] = ACTIONS(2374), + [aux_sym_cmd_identifier_token12] = ACTIONS(2374), + [aux_sym_cmd_identifier_token13] = ACTIONS(2374), + [aux_sym_cmd_identifier_token14] = ACTIONS(2374), + [aux_sym_cmd_identifier_token15] = ACTIONS(2374), + [aux_sym_cmd_identifier_token16] = ACTIONS(2374), + [aux_sym_cmd_identifier_token17] = ACTIONS(2374), + [aux_sym_cmd_identifier_token18] = ACTIONS(2374), + [aux_sym_cmd_identifier_token19] = ACTIONS(2374), + [aux_sym_cmd_identifier_token20] = ACTIONS(2374), + [aux_sym_cmd_identifier_token21] = ACTIONS(2374), + [aux_sym_cmd_identifier_token22] = ACTIONS(2374), + [aux_sym_cmd_identifier_token23] = ACTIONS(2374), + [aux_sym_cmd_identifier_token24] = ACTIONS(2374), + [aux_sym_cmd_identifier_token25] = ACTIONS(2374), + [aux_sym_cmd_identifier_token26] = ACTIONS(2374), + [aux_sym_cmd_identifier_token27] = ACTIONS(2374), + [aux_sym_cmd_identifier_token28] = ACTIONS(2374), + [aux_sym_cmd_identifier_token29] = ACTIONS(2374), + [aux_sym_cmd_identifier_token30] = ACTIONS(2374), + [aux_sym_cmd_identifier_token31] = ACTIONS(2374), + [aux_sym_cmd_identifier_token32] = ACTIONS(2374), + [aux_sym_cmd_identifier_token33] = ACTIONS(2374), + [aux_sym_cmd_identifier_token34] = ACTIONS(2374), + [aux_sym_cmd_identifier_token35] = ACTIONS(2374), + [aux_sym_cmd_identifier_token36] = ACTIONS(2374), + [aux_sym_cmd_identifier_token37] = ACTIONS(2374), + [aux_sym_cmd_identifier_token38] = ACTIONS(2374), + [aux_sym_cmd_identifier_token39] = ACTIONS(2374), + [aux_sym_cmd_identifier_token40] = ACTIONS(2374), + [anon_sym_def] = ACTIONS(2374), + [anon_sym_export_DASHenv] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_module] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_error] = ACTIONS(2374), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_in2] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_make] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_do] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2374), + [anon_sym_catch] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_source] = ACTIONS(2374), + [anon_sym_source_DASHenv] = ACTIONS(2374), + [anon_sym_register] = ACTIONS(2374), + [anon_sym_hide] = ACTIONS(2374), + [anon_sym_hide_DASHenv] = ACTIONS(2374), + [anon_sym_overlay] = ACTIONS(2374), + [anon_sym_as] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2374), + [aux_sym__val_number_decimal_token1] = ACTIONS(2374), + [aux_sym__val_number_decimal_token2] = ACTIONS(2374), + [aux_sym__val_number_decimal_token3] = ACTIONS(2374), + [aux_sym__val_number_decimal_token4] = ACTIONS(2374), + [aux_sym__val_number_token1] = ACTIONS(2374), + [aux_sym__val_number_token2] = ACTIONS(2374), + [aux_sym__val_number_token3] = ACTIONS(2374), + [aux_sym__val_number_token4] = ACTIONS(2374), + [aux_sym__val_number_token5] = ACTIONS(2374), + [aux_sym__val_number_token6] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym__str_single_quotes] = ACTIONS(2374), + [sym__str_back_ticks] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2374), + [sym__entry_separator] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2376), + }, + [615] = { + [sym_comment] = STATE(615), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [aux_sym_cmd_identifier_token1] = ACTIONS(2378), + [aux_sym_cmd_identifier_token2] = ACTIONS(2378), + [aux_sym_cmd_identifier_token3] = ACTIONS(2378), + [aux_sym_cmd_identifier_token4] = ACTIONS(2378), + [aux_sym_cmd_identifier_token5] = ACTIONS(2378), + [aux_sym_cmd_identifier_token6] = ACTIONS(2378), + [aux_sym_cmd_identifier_token7] = ACTIONS(2378), + [aux_sym_cmd_identifier_token8] = ACTIONS(2378), + [aux_sym_cmd_identifier_token9] = ACTIONS(2378), + [aux_sym_cmd_identifier_token10] = ACTIONS(2378), + [aux_sym_cmd_identifier_token11] = ACTIONS(2378), + [aux_sym_cmd_identifier_token12] = ACTIONS(2378), + [aux_sym_cmd_identifier_token13] = ACTIONS(2378), + [aux_sym_cmd_identifier_token14] = ACTIONS(2378), + [aux_sym_cmd_identifier_token15] = ACTIONS(2378), + [aux_sym_cmd_identifier_token16] = ACTIONS(2378), + [aux_sym_cmd_identifier_token17] = ACTIONS(2378), + [aux_sym_cmd_identifier_token18] = ACTIONS(2378), + [aux_sym_cmd_identifier_token19] = ACTIONS(2378), + [aux_sym_cmd_identifier_token20] = ACTIONS(2378), + [aux_sym_cmd_identifier_token21] = ACTIONS(2378), + [aux_sym_cmd_identifier_token22] = ACTIONS(2378), + [aux_sym_cmd_identifier_token23] = ACTIONS(2378), + [aux_sym_cmd_identifier_token24] = ACTIONS(2378), + [aux_sym_cmd_identifier_token25] = ACTIONS(2378), + [aux_sym_cmd_identifier_token26] = ACTIONS(2378), + [aux_sym_cmd_identifier_token27] = ACTIONS(2378), + [aux_sym_cmd_identifier_token28] = ACTIONS(2378), + [aux_sym_cmd_identifier_token29] = ACTIONS(2378), + [aux_sym_cmd_identifier_token30] = ACTIONS(2378), + [aux_sym_cmd_identifier_token31] = ACTIONS(2378), + [aux_sym_cmd_identifier_token32] = ACTIONS(2378), + [aux_sym_cmd_identifier_token33] = ACTIONS(2378), + [aux_sym_cmd_identifier_token34] = ACTIONS(2378), + [aux_sym_cmd_identifier_token35] = ACTIONS(2378), + [aux_sym_cmd_identifier_token36] = ACTIONS(2378), + [aux_sym_cmd_identifier_token37] = ACTIONS(2378), + [aux_sym_cmd_identifier_token38] = ACTIONS(2378), + [aux_sym_cmd_identifier_token39] = ACTIONS(2378), + [aux_sym_cmd_identifier_token40] = ACTIONS(2378), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_DASH2] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_in2] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_make] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_catch] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_register] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_PLUS2] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_decimal_token2] = ACTIONS(2378), + [aux_sym__val_number_decimal_token3] = ACTIONS(2378), + [aux_sym__val_number_decimal_token4] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [aux_sym__val_number_token4] = ACTIONS(2378), + [aux_sym__val_number_token5] = ACTIONS(2378), + [aux_sym__val_number_token6] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [sym__str_single_quotes] = ACTIONS(2378), + [sym__str_back_ticks] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), + [sym__entry_separator] = ACTIONS(2380), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2380), + }, + [616] = { + [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(1989), + [anon_sym_alias] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_let_DASHenv] = ACTIONS(1989), + [anon_sym_mut] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [aux_sym_cmd_identifier_token1] = ACTIONS(1989), + [aux_sym_cmd_identifier_token2] = ACTIONS(1989), + [aux_sym_cmd_identifier_token3] = ACTIONS(1989), + [aux_sym_cmd_identifier_token4] = ACTIONS(1989), + [aux_sym_cmd_identifier_token5] = ACTIONS(1989), + [aux_sym_cmd_identifier_token6] = ACTIONS(1989), + [aux_sym_cmd_identifier_token7] = ACTIONS(1989), + [aux_sym_cmd_identifier_token8] = ACTIONS(1989), + [aux_sym_cmd_identifier_token9] = ACTIONS(1989), + [aux_sym_cmd_identifier_token10] = ACTIONS(1989), + [aux_sym_cmd_identifier_token11] = ACTIONS(1989), + [aux_sym_cmd_identifier_token12] = ACTIONS(1989), + [aux_sym_cmd_identifier_token13] = ACTIONS(1989), + [aux_sym_cmd_identifier_token14] = ACTIONS(1989), + [aux_sym_cmd_identifier_token15] = ACTIONS(1989), + [aux_sym_cmd_identifier_token16] = ACTIONS(1989), + [aux_sym_cmd_identifier_token17] = ACTIONS(1989), + [aux_sym_cmd_identifier_token18] = ACTIONS(1989), + [aux_sym_cmd_identifier_token19] = ACTIONS(1989), + [aux_sym_cmd_identifier_token20] = ACTIONS(1989), + [aux_sym_cmd_identifier_token21] = ACTIONS(1989), + [aux_sym_cmd_identifier_token22] = ACTIONS(1989), + [aux_sym_cmd_identifier_token23] = ACTIONS(1989), + [aux_sym_cmd_identifier_token24] = ACTIONS(1989), + [aux_sym_cmd_identifier_token25] = ACTIONS(1989), + [aux_sym_cmd_identifier_token26] = ACTIONS(1989), + [aux_sym_cmd_identifier_token27] = ACTIONS(1989), + [aux_sym_cmd_identifier_token28] = ACTIONS(1989), + [aux_sym_cmd_identifier_token29] = ACTIONS(1989), + [aux_sym_cmd_identifier_token30] = ACTIONS(1989), + [aux_sym_cmd_identifier_token31] = ACTIONS(1989), + [aux_sym_cmd_identifier_token32] = ACTIONS(1989), + [aux_sym_cmd_identifier_token33] = ACTIONS(1989), + [aux_sym_cmd_identifier_token34] = ACTIONS(1989), + [aux_sym_cmd_identifier_token35] = ACTIONS(1989), + [aux_sym_cmd_identifier_token36] = ACTIONS(1989), + [aux_sym_cmd_identifier_token37] = ACTIONS(1989), + [aux_sym_cmd_identifier_token38] = ACTIONS(1989), + [aux_sym_cmd_identifier_token39] = ACTIONS(1989), + [aux_sym_cmd_identifier_token40] = ACTIONS(1989), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_export_DASHenv] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_module] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_error] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_in2] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_make] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_catch] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_source] = ACTIONS(1989), + [anon_sym_source_DASHenv] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1989), + [anon_sym_hide] = ACTIONS(1989), + [anon_sym_hide_DASHenv] = ACTIONS(1989), + [anon_sym_overlay] = ACTIONS(1989), + [anon_sym_as] = ACTIONS(1989), + [anon_sym_PLUS2] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), + [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token2] = ACTIONS(1989), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(1989), + [aux_sym__val_number_token2] = ACTIONS(1989), + [aux_sym__val_number_token3] = ACTIONS(1989), + [aux_sym__val_number_token4] = ACTIONS(1989), + [aux_sym__val_number_token5] = ACTIONS(1989), + [aux_sym__val_number_token6] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1989), + [sym__str_single_quotes] = ACTIONS(1989), + [sym__str_back_ticks] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), + [sym__entry_separator] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [617] = { + [sym_comment] = STATE(617), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [aux_sym_cmd_identifier_token37] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [618] = { + [sym_comment] = STATE(618), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [aux_sym_cmd_identifier_token37] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [619] = { + [sym_comment] = STATE(619), + [anon_sym_export] = ACTIONS(2382), + [anon_sym_alias] = ACTIONS(2382), + [anon_sym_let] = ACTIONS(2382), + [anon_sym_let_DASHenv] = ACTIONS(2382), + [anon_sym_mut] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [aux_sym_cmd_identifier_token1] = ACTIONS(2382), + [aux_sym_cmd_identifier_token2] = ACTIONS(2382), + [aux_sym_cmd_identifier_token3] = ACTIONS(2382), + [aux_sym_cmd_identifier_token4] = ACTIONS(2382), + [aux_sym_cmd_identifier_token5] = ACTIONS(2382), + [aux_sym_cmd_identifier_token6] = ACTIONS(2382), + [aux_sym_cmd_identifier_token7] = ACTIONS(2382), + [aux_sym_cmd_identifier_token8] = ACTIONS(2382), + [aux_sym_cmd_identifier_token9] = ACTIONS(2382), + [aux_sym_cmd_identifier_token10] = ACTIONS(2382), + [aux_sym_cmd_identifier_token11] = ACTIONS(2382), + [aux_sym_cmd_identifier_token12] = ACTIONS(2382), + [aux_sym_cmd_identifier_token13] = ACTIONS(2382), + [aux_sym_cmd_identifier_token14] = ACTIONS(2382), + [aux_sym_cmd_identifier_token15] = ACTIONS(2382), + [aux_sym_cmd_identifier_token16] = ACTIONS(2382), + [aux_sym_cmd_identifier_token17] = ACTIONS(2382), + [aux_sym_cmd_identifier_token18] = ACTIONS(2382), + [aux_sym_cmd_identifier_token19] = ACTIONS(2382), + [aux_sym_cmd_identifier_token20] = ACTIONS(2382), + [aux_sym_cmd_identifier_token21] = ACTIONS(2382), + [aux_sym_cmd_identifier_token22] = ACTIONS(2382), + [aux_sym_cmd_identifier_token23] = ACTIONS(2382), + [aux_sym_cmd_identifier_token24] = ACTIONS(2382), + [aux_sym_cmd_identifier_token25] = ACTIONS(2382), + [aux_sym_cmd_identifier_token26] = ACTIONS(2382), + [aux_sym_cmd_identifier_token27] = ACTIONS(2382), + [aux_sym_cmd_identifier_token28] = ACTIONS(2382), + [aux_sym_cmd_identifier_token29] = ACTIONS(2382), + [aux_sym_cmd_identifier_token30] = ACTIONS(2382), + [aux_sym_cmd_identifier_token31] = ACTIONS(2382), + [aux_sym_cmd_identifier_token32] = ACTIONS(2382), + [aux_sym_cmd_identifier_token33] = ACTIONS(2382), + [aux_sym_cmd_identifier_token34] = ACTIONS(2382), + [aux_sym_cmd_identifier_token35] = ACTIONS(2382), + [aux_sym_cmd_identifier_token36] = ACTIONS(2382), + [aux_sym_cmd_identifier_token37] = ACTIONS(2382), + [aux_sym_cmd_identifier_token38] = ACTIONS(2382), + [aux_sym_cmd_identifier_token39] = ACTIONS(2382), + [aux_sym_cmd_identifier_token40] = ACTIONS(2382), + [anon_sym_def] = ACTIONS(2382), + [anon_sym_export_DASHenv] = ACTIONS(2382), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym_module] = ACTIONS(2382), + [anon_sym_use] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_DOLLAR] = ACTIONS(2382), + [anon_sym_error] = ACTIONS(2382), + [anon_sym_DASH2] = ACTIONS(2382), + [anon_sym_break] = ACTIONS(2382), + [anon_sym_continue] = ACTIONS(2382), + [anon_sym_for] = ACTIONS(2382), + [anon_sym_in2] = ACTIONS(2382), + [anon_sym_loop] = ACTIONS(2382), + [anon_sym_make] = ACTIONS(2382), + [anon_sym_while] = ACTIONS(2382), + [anon_sym_do] = ACTIONS(2382), + [anon_sym_if] = ACTIONS(2382), + [anon_sym_else] = ACTIONS(2382), + [anon_sym_match] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_try] = ACTIONS(2382), + [anon_sym_catch] = ACTIONS(2382), + [anon_sym_return] = ACTIONS(2382), + [anon_sym_source] = ACTIONS(2382), + [anon_sym_source_DASHenv] = ACTIONS(2382), + [anon_sym_register] = ACTIONS(2382), + [anon_sym_hide] = ACTIONS(2382), + [anon_sym_hide_DASHenv] = ACTIONS(2382), + [anon_sym_overlay] = ACTIONS(2382), + [anon_sym_as] = ACTIONS(2382), + [anon_sym_PLUS2] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2382), + [aux_sym__val_number_decimal_token1] = ACTIONS(2382), + [aux_sym__val_number_decimal_token2] = ACTIONS(2382), + [aux_sym__val_number_decimal_token3] = ACTIONS(2382), + [aux_sym__val_number_decimal_token4] = ACTIONS(2382), + [aux_sym__val_number_token1] = ACTIONS(2382), + [aux_sym__val_number_token2] = ACTIONS(2382), + [aux_sym__val_number_token3] = ACTIONS(2382), + [aux_sym__val_number_token4] = ACTIONS(2382), + [aux_sym__val_number_token5] = ACTIONS(2382), + [aux_sym__val_number_token6] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2382), + [sym__str_single_quotes] = ACTIONS(2382), + [sym__str_back_ticks] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2382), + [sym__entry_separator] = ACTIONS(2384), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2384), + }, + [620] = { + [sym_comment] = STATE(620), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [aux_sym_cmd_identifier_token1] = ACTIONS(2013), + [aux_sym_cmd_identifier_token2] = ACTIONS(2013), + [aux_sym_cmd_identifier_token3] = ACTIONS(2013), + [aux_sym_cmd_identifier_token4] = ACTIONS(2013), + [aux_sym_cmd_identifier_token5] = ACTIONS(2013), + [aux_sym_cmd_identifier_token6] = ACTIONS(2013), + [aux_sym_cmd_identifier_token7] = ACTIONS(2013), + [aux_sym_cmd_identifier_token8] = ACTIONS(2013), + [aux_sym_cmd_identifier_token9] = ACTIONS(2013), + [aux_sym_cmd_identifier_token10] = ACTIONS(2013), + [aux_sym_cmd_identifier_token11] = ACTIONS(2013), + [aux_sym_cmd_identifier_token12] = ACTIONS(2013), + [aux_sym_cmd_identifier_token13] = ACTIONS(2013), + [aux_sym_cmd_identifier_token14] = ACTIONS(2013), + [aux_sym_cmd_identifier_token15] = ACTIONS(2013), + [aux_sym_cmd_identifier_token16] = ACTIONS(2013), + [aux_sym_cmd_identifier_token17] = ACTIONS(2013), + [aux_sym_cmd_identifier_token18] = ACTIONS(2013), + [aux_sym_cmd_identifier_token19] = ACTIONS(2013), + [aux_sym_cmd_identifier_token20] = ACTIONS(2013), + [aux_sym_cmd_identifier_token21] = ACTIONS(2013), + [aux_sym_cmd_identifier_token22] = ACTIONS(2013), + [aux_sym_cmd_identifier_token23] = ACTIONS(2013), + [aux_sym_cmd_identifier_token24] = ACTIONS(2013), + [aux_sym_cmd_identifier_token25] = ACTIONS(2013), + [aux_sym_cmd_identifier_token26] = ACTIONS(2013), + [aux_sym_cmd_identifier_token27] = ACTIONS(2013), + [aux_sym_cmd_identifier_token28] = ACTIONS(2013), + [aux_sym_cmd_identifier_token29] = ACTIONS(2013), + [aux_sym_cmd_identifier_token30] = ACTIONS(2013), + [aux_sym_cmd_identifier_token31] = ACTIONS(2013), + [aux_sym_cmd_identifier_token32] = ACTIONS(2013), + [aux_sym_cmd_identifier_token33] = ACTIONS(2013), + [aux_sym_cmd_identifier_token34] = ACTIONS(2013), + [aux_sym_cmd_identifier_token35] = ACTIONS(2013), + [aux_sym_cmd_identifier_token36] = ACTIONS(2013), + [aux_sym_cmd_identifier_token37] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_in2] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_make] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_catch] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [aux_sym__val_number_token4] = ACTIONS(2013), + [aux_sym__val_number_token5] = ACTIONS(2013), + [aux_sym__val_number_token6] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), + [sym__entry_separator] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2015), + }, + [621] = { + [sym_comment] = STATE(621), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_alias] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_let_DASHenv] = ACTIONS(2386), + [anon_sym_mut] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [aux_sym_cmd_identifier_token1] = ACTIONS(2386), + [aux_sym_cmd_identifier_token2] = ACTIONS(2386), + [aux_sym_cmd_identifier_token3] = ACTIONS(2386), + [aux_sym_cmd_identifier_token4] = ACTIONS(2386), + [aux_sym_cmd_identifier_token5] = ACTIONS(2386), + [aux_sym_cmd_identifier_token6] = ACTIONS(2386), + [aux_sym_cmd_identifier_token7] = ACTIONS(2386), + [aux_sym_cmd_identifier_token8] = ACTIONS(2386), + [aux_sym_cmd_identifier_token9] = ACTIONS(2386), + [aux_sym_cmd_identifier_token10] = ACTIONS(2386), + [aux_sym_cmd_identifier_token11] = ACTIONS(2386), + [aux_sym_cmd_identifier_token12] = ACTIONS(2386), + [aux_sym_cmd_identifier_token13] = ACTIONS(2386), + [aux_sym_cmd_identifier_token14] = ACTIONS(2386), + [aux_sym_cmd_identifier_token15] = ACTIONS(2386), + [aux_sym_cmd_identifier_token16] = ACTIONS(2386), + [aux_sym_cmd_identifier_token17] = ACTIONS(2386), + [aux_sym_cmd_identifier_token18] = ACTIONS(2386), + [aux_sym_cmd_identifier_token19] = ACTIONS(2386), + [aux_sym_cmd_identifier_token20] = ACTIONS(2386), + [aux_sym_cmd_identifier_token21] = ACTIONS(2386), + [aux_sym_cmd_identifier_token22] = ACTIONS(2386), + [aux_sym_cmd_identifier_token23] = ACTIONS(2386), + [aux_sym_cmd_identifier_token24] = ACTIONS(2386), + [aux_sym_cmd_identifier_token25] = ACTIONS(2386), + [aux_sym_cmd_identifier_token26] = ACTIONS(2386), + [aux_sym_cmd_identifier_token27] = ACTIONS(2386), + [aux_sym_cmd_identifier_token28] = ACTIONS(2386), + [aux_sym_cmd_identifier_token29] = ACTIONS(2386), + [aux_sym_cmd_identifier_token30] = ACTIONS(2386), + [aux_sym_cmd_identifier_token31] = ACTIONS(2386), + [aux_sym_cmd_identifier_token32] = ACTIONS(2386), + [aux_sym_cmd_identifier_token33] = ACTIONS(2386), + [aux_sym_cmd_identifier_token34] = ACTIONS(2386), + [aux_sym_cmd_identifier_token35] = ACTIONS(2386), + [aux_sym_cmd_identifier_token36] = ACTIONS(2386), + [aux_sym_cmd_identifier_token37] = ACTIONS(2386), + [aux_sym_cmd_identifier_token38] = ACTIONS(2386), + [aux_sym_cmd_identifier_token39] = ACTIONS(2386), + [aux_sym_cmd_identifier_token40] = ACTIONS(2386), + [anon_sym_def] = ACTIONS(2386), + [anon_sym_export_DASHenv] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_use] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_DOLLAR] = ACTIONS(2386), + [anon_sym_error] = ACTIONS(2386), + [anon_sym_DASH2] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_in2] = ACTIONS(2386), + [anon_sym_loop] = ACTIONS(2386), + [anon_sym_make] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_match] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_catch] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_source] = ACTIONS(2386), + [anon_sym_source_DASHenv] = ACTIONS(2386), + [anon_sym_register] = ACTIONS(2386), + [anon_sym_hide] = ACTIONS(2386), + [anon_sym_hide_DASHenv] = ACTIONS(2386), + [anon_sym_overlay] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2386), + [anon_sym_PLUS2] = ACTIONS(2386), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2386), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), + [aux_sym__val_number_decimal_token1] = ACTIONS(2386), + [aux_sym__val_number_decimal_token2] = ACTIONS(2386), + [aux_sym__val_number_decimal_token3] = ACTIONS(2386), + [aux_sym__val_number_decimal_token4] = ACTIONS(2386), + [aux_sym__val_number_token1] = ACTIONS(2386), + [aux_sym__val_number_token2] = ACTIONS(2386), + [aux_sym__val_number_token3] = ACTIONS(2386), + [aux_sym__val_number_token4] = ACTIONS(2386), + [aux_sym__val_number_token5] = ACTIONS(2386), + [aux_sym__val_number_token6] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym__str_single_quotes] = ACTIONS(2386), + [sym__str_back_ticks] = ACTIONS(2386), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2386), + [sym__entry_separator] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2388), + }, + [622] = { + [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_alias] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_let_DASHenv] = ACTIONS(2390), + [anon_sym_mut] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [aux_sym_cmd_identifier_token1] = ACTIONS(2390), + [aux_sym_cmd_identifier_token2] = ACTIONS(2390), + [aux_sym_cmd_identifier_token3] = ACTIONS(2390), + [aux_sym_cmd_identifier_token4] = ACTIONS(2390), + [aux_sym_cmd_identifier_token5] = ACTIONS(2390), + [aux_sym_cmd_identifier_token6] = ACTIONS(2390), + [aux_sym_cmd_identifier_token7] = ACTIONS(2390), + [aux_sym_cmd_identifier_token8] = ACTIONS(2390), + [aux_sym_cmd_identifier_token9] = ACTIONS(2390), + [aux_sym_cmd_identifier_token10] = ACTIONS(2390), + [aux_sym_cmd_identifier_token11] = ACTIONS(2390), + [aux_sym_cmd_identifier_token12] = ACTIONS(2390), + [aux_sym_cmd_identifier_token13] = ACTIONS(2390), + [aux_sym_cmd_identifier_token14] = ACTIONS(2390), + [aux_sym_cmd_identifier_token15] = ACTIONS(2390), + [aux_sym_cmd_identifier_token16] = ACTIONS(2390), + [aux_sym_cmd_identifier_token17] = ACTIONS(2390), + [aux_sym_cmd_identifier_token18] = ACTIONS(2390), + [aux_sym_cmd_identifier_token19] = ACTIONS(2390), + [aux_sym_cmd_identifier_token20] = ACTIONS(2390), + [aux_sym_cmd_identifier_token21] = ACTIONS(2390), + [aux_sym_cmd_identifier_token22] = ACTIONS(2390), + [aux_sym_cmd_identifier_token23] = ACTIONS(2390), + [aux_sym_cmd_identifier_token24] = ACTIONS(2390), + [aux_sym_cmd_identifier_token25] = ACTIONS(2390), + [aux_sym_cmd_identifier_token26] = ACTIONS(2390), + [aux_sym_cmd_identifier_token27] = ACTIONS(2390), + [aux_sym_cmd_identifier_token28] = ACTIONS(2390), + [aux_sym_cmd_identifier_token29] = ACTIONS(2390), + [aux_sym_cmd_identifier_token30] = ACTIONS(2390), + [aux_sym_cmd_identifier_token31] = ACTIONS(2390), + [aux_sym_cmd_identifier_token32] = ACTIONS(2390), + [aux_sym_cmd_identifier_token33] = ACTIONS(2390), + [aux_sym_cmd_identifier_token34] = ACTIONS(2390), + [aux_sym_cmd_identifier_token35] = ACTIONS(2390), + [aux_sym_cmd_identifier_token36] = ACTIONS(2390), + [aux_sym_cmd_identifier_token37] = ACTIONS(2390), + [aux_sym_cmd_identifier_token38] = ACTIONS(2390), + [aux_sym_cmd_identifier_token39] = ACTIONS(2390), + [aux_sym_cmd_identifier_token40] = ACTIONS(2390), + [anon_sym_def] = ACTIONS(2390), + [anon_sym_export_DASHenv] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_use] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_DOLLAR] = ACTIONS(2390), + [anon_sym_error] = ACTIONS(2390), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2390), + [anon_sym_continue] = ACTIONS(2390), + [anon_sym_for] = ACTIONS(2390), + [anon_sym_in2] = ACTIONS(2390), + [anon_sym_loop] = ACTIONS(2390), + [anon_sym_make] = ACTIONS(2390), + [anon_sym_while] = ACTIONS(2390), + [anon_sym_do] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_try] = ACTIONS(2390), + [anon_sym_catch] = ACTIONS(2390), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_source] = ACTIONS(2390), + [anon_sym_source_DASHenv] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_hide] = ACTIONS(2390), + [anon_sym_hide_DASHenv] = ACTIONS(2390), + [anon_sym_overlay] = ACTIONS(2390), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), + [aux_sym__val_number_decimal_token1] = ACTIONS(2390), + [aux_sym__val_number_decimal_token2] = ACTIONS(2390), + [aux_sym__val_number_decimal_token3] = ACTIONS(2390), + [aux_sym__val_number_decimal_token4] = ACTIONS(2390), + [aux_sym__val_number_token1] = ACTIONS(2390), + [aux_sym__val_number_token2] = ACTIONS(2390), + [aux_sym__val_number_token3] = ACTIONS(2390), + [aux_sym__val_number_token4] = ACTIONS(2390), + [aux_sym__val_number_token5] = ACTIONS(2390), + [aux_sym__val_number_token6] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2390), + [sym__str_single_quotes] = ACTIONS(2390), + [sym__str_back_ticks] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), + [sym__entry_separator] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2392), + }, + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2017), + [aux_sym_cmd_identifier_token4] = ACTIONS(2017), + [aux_sym_cmd_identifier_token5] = ACTIONS(2017), + [aux_sym_cmd_identifier_token6] = ACTIONS(2017), + [aux_sym_cmd_identifier_token7] = ACTIONS(2017), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2017), + [aux_sym_cmd_identifier_token11] = ACTIONS(2017), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2017), + [aux_sym_cmd_identifier_token17] = ACTIONS(2017), + [aux_sym_cmd_identifier_token18] = ACTIONS(2017), + [aux_sym_cmd_identifier_token19] = ACTIONS(2017), + [aux_sym_cmd_identifier_token20] = ACTIONS(2017), + [aux_sym_cmd_identifier_token21] = ACTIONS(2017), + [aux_sym_cmd_identifier_token22] = ACTIONS(2017), + [aux_sym_cmd_identifier_token23] = ACTIONS(2017), + [aux_sym_cmd_identifier_token24] = ACTIONS(2017), + [aux_sym_cmd_identifier_token25] = ACTIONS(2017), + [aux_sym_cmd_identifier_token26] = ACTIONS(2017), + [aux_sym_cmd_identifier_token27] = ACTIONS(2017), + [aux_sym_cmd_identifier_token28] = ACTIONS(2017), + [aux_sym_cmd_identifier_token29] = ACTIONS(2017), + [aux_sym_cmd_identifier_token30] = ACTIONS(2017), + [aux_sym_cmd_identifier_token31] = ACTIONS(2017), + [aux_sym_cmd_identifier_token32] = ACTIONS(2017), + [aux_sym_cmd_identifier_token33] = ACTIONS(2017), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2017), + [aux_sym_cmd_identifier_token36] = ACTIONS(2017), + [aux_sym_cmd_identifier_token37] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_DASH2] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in2] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_PLUS2] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [aux_sym__val_number_token4] = ACTIONS(2017), + [aux_sym__val_number_token5] = ACTIONS(2017), + [aux_sym__val_number_token6] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [sym__entry_separator] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2019), + }, + [624] = { + [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(2025), + [anon_sym_alias] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_let_DASHenv] = ACTIONS(2025), + [anon_sym_mut] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [aux_sym_cmd_identifier_token1] = ACTIONS(2025), + [aux_sym_cmd_identifier_token2] = ACTIONS(2025), + [aux_sym_cmd_identifier_token3] = ACTIONS(2025), + [aux_sym_cmd_identifier_token4] = ACTIONS(2025), + [aux_sym_cmd_identifier_token5] = ACTIONS(2025), + [aux_sym_cmd_identifier_token6] = ACTIONS(2025), + [aux_sym_cmd_identifier_token7] = ACTIONS(2025), + [aux_sym_cmd_identifier_token8] = ACTIONS(2025), + [aux_sym_cmd_identifier_token9] = ACTIONS(2025), + [aux_sym_cmd_identifier_token10] = ACTIONS(2025), + [aux_sym_cmd_identifier_token11] = ACTIONS(2025), + [aux_sym_cmd_identifier_token12] = ACTIONS(2025), + [aux_sym_cmd_identifier_token13] = ACTIONS(2025), + [aux_sym_cmd_identifier_token14] = ACTIONS(2025), + [aux_sym_cmd_identifier_token15] = ACTIONS(2025), + [aux_sym_cmd_identifier_token16] = ACTIONS(2025), + [aux_sym_cmd_identifier_token17] = ACTIONS(2025), + [aux_sym_cmd_identifier_token18] = ACTIONS(2025), + [aux_sym_cmd_identifier_token19] = ACTIONS(2025), + [aux_sym_cmd_identifier_token20] = ACTIONS(2025), + [aux_sym_cmd_identifier_token21] = ACTIONS(2025), + [aux_sym_cmd_identifier_token22] = ACTIONS(2025), + [aux_sym_cmd_identifier_token23] = ACTIONS(2025), + [aux_sym_cmd_identifier_token24] = ACTIONS(2025), + [aux_sym_cmd_identifier_token25] = ACTIONS(2025), + [aux_sym_cmd_identifier_token26] = ACTIONS(2025), + [aux_sym_cmd_identifier_token27] = ACTIONS(2025), + [aux_sym_cmd_identifier_token28] = ACTIONS(2025), + [aux_sym_cmd_identifier_token29] = ACTIONS(2025), + [aux_sym_cmd_identifier_token30] = ACTIONS(2025), + [aux_sym_cmd_identifier_token31] = ACTIONS(2025), + [aux_sym_cmd_identifier_token32] = ACTIONS(2025), + [aux_sym_cmd_identifier_token33] = ACTIONS(2025), + [aux_sym_cmd_identifier_token34] = ACTIONS(2025), + [aux_sym_cmd_identifier_token35] = ACTIONS(2025), + [aux_sym_cmd_identifier_token36] = ACTIONS(2025), + [aux_sym_cmd_identifier_token37] = ACTIONS(2025), + [aux_sym_cmd_identifier_token38] = ACTIONS(2025), + [aux_sym_cmd_identifier_token39] = ACTIONS(2025), + [aux_sym_cmd_identifier_token40] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2025), + [anon_sym_export_DASHenv] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_module] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_error] = ACTIONS(2025), + [anon_sym_DASH2] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_in2] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_make] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_do] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_else] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [anon_sym_catch] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_source] = ACTIONS(2025), + [anon_sym_source_DASHenv] = ACTIONS(2025), + [anon_sym_register] = ACTIONS(2025), + [anon_sym_hide] = ACTIONS(2025), + [anon_sym_hide_DASHenv] = ACTIONS(2025), + [anon_sym_overlay] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(2025), + [anon_sym_PLUS2] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), + [aux_sym__val_number_decimal_token1] = ACTIONS(2025), + [aux_sym__val_number_decimal_token2] = ACTIONS(2025), + [aux_sym__val_number_decimal_token3] = ACTIONS(2025), + [aux_sym__val_number_decimal_token4] = ACTIONS(2025), + [aux_sym__val_number_token1] = ACTIONS(2025), + [aux_sym__val_number_token2] = ACTIONS(2025), + [aux_sym__val_number_token3] = ACTIONS(2025), + [aux_sym__val_number_token4] = ACTIONS(2025), + [aux_sym__val_number_token5] = ACTIONS(2025), + [aux_sym__val_number_token6] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), + [sym__entry_separator] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2027), + }, + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_alias] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_let_DASHenv] = ACTIONS(2394), + [anon_sym_mut] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [aux_sym_cmd_identifier_token1] = ACTIONS(2394), + [aux_sym_cmd_identifier_token2] = ACTIONS(2394), + [aux_sym_cmd_identifier_token3] = ACTIONS(2394), + [aux_sym_cmd_identifier_token4] = ACTIONS(2394), + [aux_sym_cmd_identifier_token5] = ACTIONS(2394), + [aux_sym_cmd_identifier_token6] = ACTIONS(2394), + [aux_sym_cmd_identifier_token7] = ACTIONS(2394), + [aux_sym_cmd_identifier_token8] = ACTIONS(2394), + [aux_sym_cmd_identifier_token9] = ACTIONS(2394), + [aux_sym_cmd_identifier_token10] = ACTIONS(2394), + [aux_sym_cmd_identifier_token11] = ACTIONS(2394), + [aux_sym_cmd_identifier_token12] = ACTIONS(2394), + [aux_sym_cmd_identifier_token13] = ACTIONS(2394), + [aux_sym_cmd_identifier_token14] = ACTIONS(2394), + [aux_sym_cmd_identifier_token15] = ACTIONS(2394), + [aux_sym_cmd_identifier_token16] = ACTIONS(2394), + [aux_sym_cmd_identifier_token17] = ACTIONS(2394), + [aux_sym_cmd_identifier_token18] = ACTIONS(2394), + [aux_sym_cmd_identifier_token19] = ACTIONS(2394), + [aux_sym_cmd_identifier_token20] = ACTIONS(2394), + [aux_sym_cmd_identifier_token21] = ACTIONS(2394), + [aux_sym_cmd_identifier_token22] = ACTIONS(2394), + [aux_sym_cmd_identifier_token23] = ACTIONS(2394), + [aux_sym_cmd_identifier_token24] = ACTIONS(2394), + [aux_sym_cmd_identifier_token25] = ACTIONS(2394), + [aux_sym_cmd_identifier_token26] = ACTIONS(2394), + [aux_sym_cmd_identifier_token27] = ACTIONS(2394), + [aux_sym_cmd_identifier_token28] = ACTIONS(2394), + [aux_sym_cmd_identifier_token29] = ACTIONS(2394), + [aux_sym_cmd_identifier_token30] = ACTIONS(2394), + [aux_sym_cmd_identifier_token31] = ACTIONS(2394), + [aux_sym_cmd_identifier_token32] = ACTIONS(2394), + [aux_sym_cmd_identifier_token33] = ACTIONS(2394), + [aux_sym_cmd_identifier_token34] = ACTIONS(2394), + [aux_sym_cmd_identifier_token35] = ACTIONS(2394), + [aux_sym_cmd_identifier_token36] = ACTIONS(2394), + [aux_sym_cmd_identifier_token37] = ACTIONS(2394), + [aux_sym_cmd_identifier_token38] = ACTIONS(2394), + [aux_sym_cmd_identifier_token39] = ACTIONS(2394), + [aux_sym_cmd_identifier_token40] = ACTIONS(2394), + [anon_sym_def] = ACTIONS(2394), + [anon_sym_export_DASHenv] = ACTIONS(2394), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_use] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_DOLLAR] = ACTIONS(2394), + [anon_sym_error] = ACTIONS(2394), + [anon_sym_DASH2] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2394), + [anon_sym_in2] = ACTIONS(2394), + [anon_sym_loop] = ACTIONS(2394), + [anon_sym_make] = ACTIONS(2394), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_do] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_match] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2394), + [anon_sym_catch] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2394), + [anon_sym_source] = ACTIONS(2394), + [anon_sym_source_DASHenv] = ACTIONS(2394), + [anon_sym_register] = ACTIONS(2394), + [anon_sym_hide] = ACTIONS(2394), + [anon_sym_hide_DASHenv] = ACTIONS(2394), + [anon_sym_overlay] = ACTIONS(2394), + [anon_sym_as] = ACTIONS(2394), + [anon_sym_PLUS2] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), + [aux_sym__val_number_decimal_token1] = ACTIONS(2394), + [aux_sym__val_number_decimal_token2] = ACTIONS(2394), + [aux_sym__val_number_decimal_token3] = ACTIONS(2394), + [aux_sym__val_number_decimal_token4] = ACTIONS(2394), + [aux_sym__val_number_token1] = ACTIONS(2394), + [aux_sym__val_number_token2] = ACTIONS(2394), + [aux_sym__val_number_token3] = ACTIONS(2394), + [aux_sym__val_number_token4] = ACTIONS(2394), + [aux_sym__val_number_token5] = ACTIONS(2394), + [aux_sym__val_number_token6] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2394), + [sym__str_single_quotes] = ACTIONS(2394), + [sym__str_back_ticks] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), + [sym__entry_separator] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2396), + }, + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(2398), + [anon_sym_alias] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_let_DASHenv] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [aux_sym_cmd_identifier_token1] = ACTIONS(2398), + [aux_sym_cmd_identifier_token2] = ACTIONS(2398), + [aux_sym_cmd_identifier_token3] = ACTIONS(2398), + [aux_sym_cmd_identifier_token4] = ACTIONS(2398), + [aux_sym_cmd_identifier_token5] = ACTIONS(2398), + [aux_sym_cmd_identifier_token6] = ACTIONS(2398), + [aux_sym_cmd_identifier_token7] = ACTIONS(2398), + [aux_sym_cmd_identifier_token8] = ACTIONS(2398), + [aux_sym_cmd_identifier_token9] = ACTIONS(2398), + [aux_sym_cmd_identifier_token10] = ACTIONS(2398), + [aux_sym_cmd_identifier_token11] = ACTIONS(2398), + [aux_sym_cmd_identifier_token12] = ACTIONS(2398), + [aux_sym_cmd_identifier_token13] = ACTIONS(2398), + [aux_sym_cmd_identifier_token14] = ACTIONS(2398), + [aux_sym_cmd_identifier_token15] = ACTIONS(2398), + [aux_sym_cmd_identifier_token16] = ACTIONS(2398), + [aux_sym_cmd_identifier_token17] = ACTIONS(2398), + [aux_sym_cmd_identifier_token18] = ACTIONS(2398), + [aux_sym_cmd_identifier_token19] = ACTIONS(2398), + [aux_sym_cmd_identifier_token20] = ACTIONS(2398), + [aux_sym_cmd_identifier_token21] = ACTIONS(2398), + [aux_sym_cmd_identifier_token22] = ACTIONS(2398), + [aux_sym_cmd_identifier_token23] = ACTIONS(2398), + [aux_sym_cmd_identifier_token24] = ACTIONS(2398), + [aux_sym_cmd_identifier_token25] = ACTIONS(2398), + [aux_sym_cmd_identifier_token26] = ACTIONS(2398), + [aux_sym_cmd_identifier_token27] = ACTIONS(2398), + [aux_sym_cmd_identifier_token28] = ACTIONS(2398), + [aux_sym_cmd_identifier_token29] = ACTIONS(2398), + [aux_sym_cmd_identifier_token30] = ACTIONS(2398), + [aux_sym_cmd_identifier_token31] = ACTIONS(2398), + [aux_sym_cmd_identifier_token32] = ACTIONS(2398), + [aux_sym_cmd_identifier_token33] = ACTIONS(2398), + [aux_sym_cmd_identifier_token34] = ACTIONS(2398), + [aux_sym_cmd_identifier_token35] = ACTIONS(2398), + [aux_sym_cmd_identifier_token36] = ACTIONS(2398), + [aux_sym_cmd_identifier_token37] = ACTIONS(2398), + [aux_sym_cmd_identifier_token38] = ACTIONS(2398), + [aux_sym_cmd_identifier_token39] = ACTIONS(2398), + [aux_sym_cmd_identifier_token40] = ACTIONS(2398), + [anon_sym_def] = ACTIONS(2398), + [anon_sym_export_DASHenv] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_module] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2398), + [anon_sym_error] = ACTIONS(2398), + [anon_sym_DASH2] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_in2] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_make] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_do] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2398), + [anon_sym_catch] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_source] = ACTIONS(2398), + [anon_sym_source_DASHenv] = ACTIONS(2398), + [anon_sym_register] = ACTIONS(2398), + [anon_sym_hide] = ACTIONS(2398), + [anon_sym_hide_DASHenv] = ACTIONS(2398), + [anon_sym_overlay] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_PLUS2] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), + [aux_sym__val_number_decimal_token1] = ACTIONS(2398), + [aux_sym__val_number_decimal_token2] = ACTIONS(2398), + [aux_sym__val_number_decimal_token3] = ACTIONS(2398), + [aux_sym__val_number_decimal_token4] = ACTIONS(2398), + [aux_sym__val_number_token1] = ACTIONS(2398), + [aux_sym__val_number_token2] = ACTIONS(2398), + [aux_sym__val_number_token3] = ACTIONS(2398), + [aux_sym__val_number_token4] = ACTIONS(2398), + [aux_sym__val_number_token5] = ACTIONS(2398), + [aux_sym__val_number_token6] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2398), + [sym__str_single_quotes] = ACTIONS(2398), + [sym__str_back_ticks] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), + [sym__entry_separator] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2400), + }, + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2029), + [aux_sym_cmd_identifier_token3] = ACTIONS(2029), + [aux_sym_cmd_identifier_token4] = ACTIONS(2029), + [aux_sym_cmd_identifier_token5] = ACTIONS(2029), + [aux_sym_cmd_identifier_token6] = ACTIONS(2029), + [aux_sym_cmd_identifier_token7] = ACTIONS(2029), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2029), + [aux_sym_cmd_identifier_token11] = ACTIONS(2029), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2029), + [aux_sym_cmd_identifier_token17] = ACTIONS(2029), + [aux_sym_cmd_identifier_token18] = ACTIONS(2029), + [aux_sym_cmd_identifier_token19] = ACTIONS(2029), + [aux_sym_cmd_identifier_token20] = ACTIONS(2029), + [aux_sym_cmd_identifier_token21] = ACTIONS(2029), + [aux_sym_cmd_identifier_token22] = ACTIONS(2029), + [aux_sym_cmd_identifier_token23] = ACTIONS(2029), + [aux_sym_cmd_identifier_token24] = ACTIONS(2029), + [aux_sym_cmd_identifier_token25] = ACTIONS(2029), + [aux_sym_cmd_identifier_token26] = ACTIONS(2029), + [aux_sym_cmd_identifier_token27] = ACTIONS(2029), + [aux_sym_cmd_identifier_token28] = ACTIONS(2029), + [aux_sym_cmd_identifier_token29] = ACTIONS(2029), + [aux_sym_cmd_identifier_token30] = ACTIONS(2029), + [aux_sym_cmd_identifier_token31] = ACTIONS(2029), + [aux_sym_cmd_identifier_token32] = ACTIONS(2029), + [aux_sym_cmd_identifier_token33] = ACTIONS(2029), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2029), + [aux_sym_cmd_identifier_token36] = ACTIONS(2029), + [aux_sym_cmd_identifier_token37] = ACTIONS(2029), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2029), + [aux_sym_cmd_identifier_token40] = ACTIONS(2029), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_DASH2] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in2] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_PLUS2] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2029), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2029), + [aux_sym__val_number_decimal_token3] = ACTIONS(2029), + [aux_sym__val_number_decimal_token4] = ACTIONS(2029), + [aux_sym__val_number_token1] = ACTIONS(2029), + [aux_sym__val_number_token2] = ACTIONS(2029), + [aux_sym__val_number_token3] = ACTIONS(2029), + [aux_sym__val_number_token4] = ACTIONS(2029), + [aux_sym__val_number_token5] = ACTIONS(2029), + [aux_sym__val_number_token6] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2029), + [sym__str_single_quotes] = ACTIONS(2029), + [sym__str_back_ticks] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2029), + [sym__entry_separator] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2031), + }, + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_alias] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_let_DASHenv] = ACTIONS(2402), + [anon_sym_mut] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [aux_sym_cmd_identifier_token1] = ACTIONS(2402), + [aux_sym_cmd_identifier_token2] = ACTIONS(2402), + [aux_sym_cmd_identifier_token3] = ACTIONS(2402), + [aux_sym_cmd_identifier_token4] = ACTIONS(2402), + [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [aux_sym_cmd_identifier_token6] = ACTIONS(2402), + [aux_sym_cmd_identifier_token7] = ACTIONS(2402), + [aux_sym_cmd_identifier_token8] = ACTIONS(2402), + [aux_sym_cmd_identifier_token9] = ACTIONS(2402), + [aux_sym_cmd_identifier_token10] = ACTIONS(2402), + [aux_sym_cmd_identifier_token11] = ACTIONS(2402), + [aux_sym_cmd_identifier_token12] = ACTIONS(2402), + [aux_sym_cmd_identifier_token13] = ACTIONS(2402), + [aux_sym_cmd_identifier_token14] = ACTIONS(2402), + [aux_sym_cmd_identifier_token15] = ACTIONS(2402), + [aux_sym_cmd_identifier_token16] = ACTIONS(2402), + [aux_sym_cmd_identifier_token17] = ACTIONS(2402), + [aux_sym_cmd_identifier_token18] = ACTIONS(2402), + [aux_sym_cmd_identifier_token19] = ACTIONS(2402), + [aux_sym_cmd_identifier_token20] = ACTIONS(2402), + [aux_sym_cmd_identifier_token21] = ACTIONS(2402), + [aux_sym_cmd_identifier_token22] = ACTIONS(2402), + [aux_sym_cmd_identifier_token23] = ACTIONS(2402), + [aux_sym_cmd_identifier_token24] = ACTIONS(2402), + [aux_sym_cmd_identifier_token25] = ACTIONS(2402), + [aux_sym_cmd_identifier_token26] = ACTIONS(2402), + [aux_sym_cmd_identifier_token27] = ACTIONS(2402), + [aux_sym_cmd_identifier_token28] = ACTIONS(2402), + [aux_sym_cmd_identifier_token29] = ACTIONS(2402), + [aux_sym_cmd_identifier_token30] = ACTIONS(2402), + [aux_sym_cmd_identifier_token31] = ACTIONS(2402), + [aux_sym_cmd_identifier_token32] = ACTIONS(2402), + [aux_sym_cmd_identifier_token33] = ACTIONS(2402), + [aux_sym_cmd_identifier_token34] = ACTIONS(2402), + [aux_sym_cmd_identifier_token35] = ACTIONS(2402), + [aux_sym_cmd_identifier_token36] = ACTIONS(2402), + [aux_sym_cmd_identifier_token37] = ACTIONS(2402), + [aux_sym_cmd_identifier_token38] = ACTIONS(2402), + [aux_sym_cmd_identifier_token39] = ACTIONS(2402), + [aux_sym_cmd_identifier_token40] = ACTIONS(2402), + [anon_sym_def] = ACTIONS(2402), + [anon_sym_export_DASHenv] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in2] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_make] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_catch] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_source] = ACTIONS(2402), + [anon_sym_source_DASHenv] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_hide] = ACTIONS(2402), + [anon_sym_hide_DASHenv] = ACTIONS(2402), + [anon_sym_overlay] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_decimal_token4] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym__str_single_quotes] = ACTIONS(2402), + [sym__str_back_ticks] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), + [sym__entry_separator] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2404), + }, + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_alias] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_let_DASHenv] = ACTIONS(2406), + [anon_sym_mut] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [aux_sym_cmd_identifier_token1] = ACTIONS(2406), + [aux_sym_cmd_identifier_token2] = ACTIONS(2406), + [aux_sym_cmd_identifier_token3] = ACTIONS(2406), + [aux_sym_cmd_identifier_token4] = ACTIONS(2406), + [aux_sym_cmd_identifier_token5] = ACTIONS(2406), + [aux_sym_cmd_identifier_token6] = ACTIONS(2406), + [aux_sym_cmd_identifier_token7] = ACTIONS(2406), + [aux_sym_cmd_identifier_token8] = ACTIONS(2406), + [aux_sym_cmd_identifier_token9] = ACTIONS(2406), + [aux_sym_cmd_identifier_token10] = ACTIONS(2406), + [aux_sym_cmd_identifier_token11] = ACTIONS(2406), + [aux_sym_cmd_identifier_token12] = ACTIONS(2406), + [aux_sym_cmd_identifier_token13] = ACTIONS(2406), + [aux_sym_cmd_identifier_token14] = ACTIONS(2406), + [aux_sym_cmd_identifier_token15] = ACTIONS(2406), + [aux_sym_cmd_identifier_token16] = ACTIONS(2406), + [aux_sym_cmd_identifier_token17] = ACTIONS(2406), + [aux_sym_cmd_identifier_token18] = ACTIONS(2406), + [aux_sym_cmd_identifier_token19] = ACTIONS(2406), + [aux_sym_cmd_identifier_token20] = ACTIONS(2406), + [aux_sym_cmd_identifier_token21] = ACTIONS(2406), + [aux_sym_cmd_identifier_token22] = ACTIONS(2406), + [aux_sym_cmd_identifier_token23] = ACTIONS(2406), + [aux_sym_cmd_identifier_token24] = ACTIONS(2406), + [aux_sym_cmd_identifier_token25] = ACTIONS(2406), + [aux_sym_cmd_identifier_token26] = ACTIONS(2406), + [aux_sym_cmd_identifier_token27] = ACTIONS(2406), + [aux_sym_cmd_identifier_token28] = ACTIONS(2406), + [aux_sym_cmd_identifier_token29] = ACTIONS(2406), + [aux_sym_cmd_identifier_token30] = ACTIONS(2406), + [aux_sym_cmd_identifier_token31] = ACTIONS(2406), + [aux_sym_cmd_identifier_token32] = ACTIONS(2406), + [aux_sym_cmd_identifier_token33] = ACTIONS(2406), + [aux_sym_cmd_identifier_token34] = ACTIONS(2406), + [aux_sym_cmd_identifier_token35] = ACTIONS(2406), + [aux_sym_cmd_identifier_token36] = ACTIONS(2406), + [aux_sym_cmd_identifier_token37] = ACTIONS(2406), + [aux_sym_cmd_identifier_token38] = ACTIONS(2406), + [aux_sym_cmd_identifier_token39] = ACTIONS(2406), + [aux_sym_cmd_identifier_token40] = ACTIONS(2406), + [anon_sym_def] = ACTIONS(2406), + [anon_sym_export_DASHenv] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_error] = ACTIONS(2406), + [anon_sym_DASH2] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_in2] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_make] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_do] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2406), + [anon_sym_catch] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_source] = ACTIONS(2406), + [anon_sym_source_DASHenv] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_hide] = ACTIONS(2406), + [anon_sym_hide_DASHenv] = ACTIONS(2406), + [anon_sym_overlay] = ACTIONS(2406), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_PLUS2] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), + [aux_sym__val_number_decimal_token1] = ACTIONS(2406), + [aux_sym__val_number_decimal_token2] = ACTIONS(2406), + [aux_sym__val_number_decimal_token3] = ACTIONS(2406), + [aux_sym__val_number_decimal_token4] = ACTIONS(2406), + [aux_sym__val_number_token1] = ACTIONS(2406), + [aux_sym__val_number_token2] = ACTIONS(2406), + [aux_sym__val_number_token3] = ACTIONS(2406), + [aux_sym__val_number_token4] = ACTIONS(2406), + [aux_sym__val_number_token5] = ACTIONS(2406), + [aux_sym__val_number_token6] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym__str_single_quotes] = ACTIONS(2406), + [sym__str_back_ticks] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), + [sym__entry_separator] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2408), + }, + [630] = { + [sym_comment] = STATE(630), + [aux_sym_shebang_repeat1] = STATE(630), + [anon_sym_export] = ACTIONS(1262), + [anon_sym_alias] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_let_DASHenv] = ACTIONS(1262), + [anon_sym_mut] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [aux_sym_cmd_identifier_token1] = ACTIONS(1262), + [aux_sym_cmd_identifier_token2] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1264), + [aux_sym_cmd_identifier_token4] = ACTIONS(1264), + [aux_sym_cmd_identifier_token5] = ACTIONS(1264), + [aux_sym_cmd_identifier_token6] = ACTIONS(1264), + [aux_sym_cmd_identifier_token7] = ACTIONS(1264), + [aux_sym_cmd_identifier_token8] = ACTIONS(1262), + [aux_sym_cmd_identifier_token9] = ACTIONS(1262), + [aux_sym_cmd_identifier_token10] = ACTIONS(1264), + [aux_sym_cmd_identifier_token11] = ACTIONS(1264), + [aux_sym_cmd_identifier_token12] = ACTIONS(1262), + [aux_sym_cmd_identifier_token13] = ACTIONS(1262), + [aux_sym_cmd_identifier_token14] = ACTIONS(1262), + [aux_sym_cmd_identifier_token15] = ACTIONS(1262), + [aux_sym_cmd_identifier_token16] = ACTIONS(1264), + [aux_sym_cmd_identifier_token17] = ACTIONS(1264), + [aux_sym_cmd_identifier_token18] = ACTIONS(1264), + [aux_sym_cmd_identifier_token19] = ACTIONS(1264), + [aux_sym_cmd_identifier_token20] = ACTIONS(1264), + [aux_sym_cmd_identifier_token21] = ACTIONS(1264), + [aux_sym_cmd_identifier_token22] = ACTIONS(1264), + [aux_sym_cmd_identifier_token23] = ACTIONS(1264), + [aux_sym_cmd_identifier_token24] = ACTIONS(1264), + [aux_sym_cmd_identifier_token25] = ACTIONS(1264), + [aux_sym_cmd_identifier_token26] = ACTIONS(1264), + [aux_sym_cmd_identifier_token27] = ACTIONS(1264), + [aux_sym_cmd_identifier_token28] = ACTIONS(1264), + [aux_sym_cmd_identifier_token29] = ACTIONS(1264), + [aux_sym_cmd_identifier_token30] = ACTIONS(1264), + [aux_sym_cmd_identifier_token31] = ACTIONS(1264), + [aux_sym_cmd_identifier_token32] = ACTIONS(1264), + [aux_sym_cmd_identifier_token33] = ACTIONS(1264), + [aux_sym_cmd_identifier_token34] = ACTIONS(1262), + [aux_sym_cmd_identifier_token35] = ACTIONS(1264), + [aux_sym_cmd_identifier_token36] = ACTIONS(1264), + [aux_sym_cmd_identifier_token37] = ACTIONS(1264), + [aux_sym_cmd_identifier_token38] = ACTIONS(1262), + [aux_sym_cmd_identifier_token39] = ACTIONS(1264), + [aux_sym_cmd_identifier_token40] = ACTIONS(1264), + [sym__newline] = ACTIONS(2410), + [anon_sym_def] = ACTIONS(1262), + [anon_sym_export_DASHenv] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_module] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1264), + [anon_sym_error] = ACTIONS(1262), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_in2] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_make] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_catch] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_source] = ACTIONS(1262), + [anon_sym_source_DASHenv] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_hide] = ACTIONS(1262), + [anon_sym_hide_DASHenv] = ACTIONS(1262), + [anon_sym_overlay] = ACTIONS(1262), + [anon_sym_as] = ACTIONS(1262), + [anon_sym_PLUS2] = ACTIONS(1262), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1264), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1264), + [aux_sym__val_number_decimal_token1] = ACTIONS(1262), + [aux_sym__val_number_decimal_token2] = ACTIONS(1264), + [aux_sym__val_number_decimal_token3] = ACTIONS(1264), + [aux_sym__val_number_decimal_token4] = ACTIONS(1264), + [aux_sym__val_number_token1] = ACTIONS(1264), + [aux_sym__val_number_token2] = ACTIONS(1264), + [aux_sym__val_number_token3] = ACTIONS(1264), + [aux_sym__val_number_token4] = ACTIONS(1262), + [aux_sym__val_number_token5] = ACTIONS(1262), + [aux_sym__val_number_token6] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1264), + }, + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), + }, + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), + }, + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_alias] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_let_DASHenv] = ACTIONS(2170), + [anon_sym_mut] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [aux_sym_cmd_identifier_token1] = ACTIONS(2170), + [aux_sym_cmd_identifier_token2] = ACTIONS(2170), + [aux_sym_cmd_identifier_token3] = ACTIONS(2170), + [aux_sym_cmd_identifier_token4] = ACTIONS(2170), + [aux_sym_cmd_identifier_token5] = ACTIONS(2170), + [aux_sym_cmd_identifier_token6] = ACTIONS(2170), + [aux_sym_cmd_identifier_token7] = ACTIONS(2170), + [aux_sym_cmd_identifier_token8] = ACTIONS(2170), + [aux_sym_cmd_identifier_token9] = ACTIONS(2170), + [aux_sym_cmd_identifier_token10] = ACTIONS(2170), + [aux_sym_cmd_identifier_token11] = ACTIONS(2170), + [aux_sym_cmd_identifier_token12] = ACTIONS(2170), + [aux_sym_cmd_identifier_token13] = ACTIONS(2170), + [aux_sym_cmd_identifier_token14] = ACTIONS(2170), + [aux_sym_cmd_identifier_token15] = ACTIONS(2170), + [aux_sym_cmd_identifier_token16] = ACTIONS(2170), + [aux_sym_cmd_identifier_token17] = ACTIONS(2170), + [aux_sym_cmd_identifier_token18] = ACTIONS(2170), + [aux_sym_cmd_identifier_token19] = ACTIONS(2170), + [aux_sym_cmd_identifier_token20] = ACTIONS(2170), + [aux_sym_cmd_identifier_token21] = ACTIONS(2170), + [aux_sym_cmd_identifier_token22] = ACTIONS(2170), + [aux_sym_cmd_identifier_token23] = ACTIONS(2170), + [aux_sym_cmd_identifier_token24] = ACTIONS(2170), + [aux_sym_cmd_identifier_token25] = ACTIONS(2170), + [aux_sym_cmd_identifier_token26] = ACTIONS(2170), + [aux_sym_cmd_identifier_token27] = ACTIONS(2170), + [aux_sym_cmd_identifier_token28] = ACTIONS(2170), + [aux_sym_cmd_identifier_token29] = ACTIONS(2170), + [aux_sym_cmd_identifier_token30] = ACTIONS(2170), + [aux_sym_cmd_identifier_token31] = ACTIONS(2170), + [aux_sym_cmd_identifier_token32] = ACTIONS(2170), + [aux_sym_cmd_identifier_token33] = ACTIONS(2170), + [aux_sym_cmd_identifier_token34] = ACTIONS(2170), + [aux_sym_cmd_identifier_token35] = ACTIONS(2170), + [aux_sym_cmd_identifier_token36] = ACTIONS(2170), + [aux_sym_cmd_identifier_token37] = ACTIONS(2170), + [aux_sym_cmd_identifier_token38] = ACTIONS(2170), + [aux_sym_cmd_identifier_token39] = ACTIONS(2170), + [aux_sym_cmd_identifier_token40] = ACTIONS(2170), + [anon_sym_def] = ACTIONS(2170), + [anon_sym_export_DASHenv] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_error] = ACTIONS(2170), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_in2] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_make] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_source] = ACTIONS(2170), + [anon_sym_source_DASHenv] = ACTIONS(2170), + [anon_sym_register] = ACTIONS(2170), + [anon_sym_hide] = ACTIONS(2170), + [anon_sym_hide_DASHenv] = ACTIONS(2170), + [anon_sym_overlay] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2170), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2170), + [aux_sym__val_number_decimal_token3] = ACTIONS(2170), + [aux_sym__val_number_decimal_token4] = ACTIONS(2170), + [aux_sym__val_number_token1] = ACTIONS(2170), + [aux_sym__val_number_token2] = ACTIONS(2170), + [aux_sym__val_number_token3] = ACTIONS(2170), + [aux_sym__val_number_token4] = ACTIONS(2170), + [aux_sym__val_number_token5] = ACTIONS(2170), + [aux_sym__val_number_token6] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2170), + [sym__str_single_quotes] = ACTIONS(2170), + [sym__str_back_ticks] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2170), + [sym__entry_separator] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_let_DASHenv] = ACTIONS(2174), + [anon_sym_mut] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [aux_sym_cmd_identifier_token2] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2174), + [aux_sym_cmd_identifier_token4] = ACTIONS(2174), + [aux_sym_cmd_identifier_token5] = ACTIONS(2174), + [aux_sym_cmd_identifier_token6] = ACTIONS(2174), + [aux_sym_cmd_identifier_token7] = ACTIONS(2174), + [aux_sym_cmd_identifier_token8] = ACTIONS(2174), + [aux_sym_cmd_identifier_token9] = ACTIONS(2174), + [aux_sym_cmd_identifier_token10] = ACTIONS(2174), + [aux_sym_cmd_identifier_token11] = ACTIONS(2174), + [aux_sym_cmd_identifier_token12] = ACTIONS(2174), + [aux_sym_cmd_identifier_token13] = ACTIONS(2174), + [aux_sym_cmd_identifier_token14] = ACTIONS(2174), + [aux_sym_cmd_identifier_token15] = ACTIONS(2174), + [aux_sym_cmd_identifier_token16] = ACTIONS(2174), + [aux_sym_cmd_identifier_token17] = ACTIONS(2174), + [aux_sym_cmd_identifier_token18] = ACTIONS(2174), + [aux_sym_cmd_identifier_token19] = ACTIONS(2174), + [aux_sym_cmd_identifier_token20] = ACTIONS(2174), + [aux_sym_cmd_identifier_token21] = ACTIONS(2174), + [aux_sym_cmd_identifier_token22] = ACTIONS(2174), + [aux_sym_cmd_identifier_token23] = ACTIONS(2174), + [aux_sym_cmd_identifier_token24] = ACTIONS(2174), + [aux_sym_cmd_identifier_token25] = ACTIONS(2174), + [aux_sym_cmd_identifier_token26] = ACTIONS(2174), + [aux_sym_cmd_identifier_token27] = ACTIONS(2174), + [aux_sym_cmd_identifier_token28] = ACTIONS(2174), + [aux_sym_cmd_identifier_token29] = ACTIONS(2174), + [aux_sym_cmd_identifier_token30] = ACTIONS(2174), + [aux_sym_cmd_identifier_token31] = ACTIONS(2174), + [aux_sym_cmd_identifier_token32] = ACTIONS(2174), + [aux_sym_cmd_identifier_token33] = ACTIONS(2174), + [aux_sym_cmd_identifier_token34] = ACTIONS(2174), + [aux_sym_cmd_identifier_token35] = ACTIONS(2174), + [aux_sym_cmd_identifier_token36] = ACTIONS(2174), + [aux_sym_cmd_identifier_token37] = ACTIONS(2174), + [aux_sym_cmd_identifier_token38] = ACTIONS(2174), + [aux_sym_cmd_identifier_token39] = ACTIONS(2174), + [aux_sym_cmd_identifier_token40] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2174), + [anon_sym_export_DASHenv] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_error] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_in2] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_make] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_source] = ACTIONS(2174), + [anon_sym_source_DASHenv] = ACTIONS(2174), + [anon_sym_register] = ACTIONS(2174), + [anon_sym_hide] = ACTIONS(2174), + [anon_sym_hide_DASHenv] = ACTIONS(2174), + [anon_sym_overlay] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2174), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2174), + [aux_sym__val_number_decimal_token3] = ACTIONS(2174), + [aux_sym__val_number_decimal_token4] = ACTIONS(2174), + [aux_sym__val_number_token1] = ACTIONS(2174), + [aux_sym__val_number_token2] = ACTIONS(2174), + [aux_sym__val_number_token3] = ACTIONS(2174), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [sym__str_single_quotes] = ACTIONS(2174), + [sym__str_back_ticks] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2174), + [sym__entry_separator] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2176), + }, + [635] = { + [sym_comment] = STATE(635), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -150123,7 +148356,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1018), [anon_sym_PLUS2] = ACTIONS(1018), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), [aux_sym__val_number_decimal_token1] = ACTIONS(1018), [aux_sym__val_number_decimal_token2] = ACTIONS(1018), @@ -150143,1945 +148375,1937 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1020), }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1014), - [aux_sym_cmd_identifier_token3] = ACTIONS(1014), - [aux_sym_cmd_identifier_token4] = ACTIONS(1014), - [aux_sym_cmd_identifier_token5] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [aux_sym_cmd_identifier_token7] = ACTIONS(1014), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1014), - [aux_sym_cmd_identifier_token11] = ACTIONS(1014), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1014), - [aux_sym_cmd_identifier_token17] = ACTIONS(1014), - [aux_sym_cmd_identifier_token18] = ACTIONS(1014), - [aux_sym_cmd_identifier_token19] = ACTIONS(1014), - [aux_sym_cmd_identifier_token20] = ACTIONS(1014), - [aux_sym_cmd_identifier_token21] = ACTIONS(1014), - [aux_sym_cmd_identifier_token22] = ACTIONS(1014), - [aux_sym_cmd_identifier_token23] = ACTIONS(1014), - [aux_sym_cmd_identifier_token24] = ACTIONS(1014), - [aux_sym_cmd_identifier_token25] = ACTIONS(1014), - [aux_sym_cmd_identifier_token26] = ACTIONS(1014), - [aux_sym_cmd_identifier_token27] = ACTIONS(1014), - [aux_sym_cmd_identifier_token28] = ACTIONS(1014), - [aux_sym_cmd_identifier_token29] = ACTIONS(1014), - [aux_sym_cmd_identifier_token30] = ACTIONS(1014), - [aux_sym_cmd_identifier_token31] = ACTIONS(1014), - [aux_sym_cmd_identifier_token32] = ACTIONS(1014), - [aux_sym_cmd_identifier_token33] = ACTIONS(1014), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1014), - [aux_sym_cmd_identifier_token36] = ACTIONS(1014), - [aux_sym_cmd_identifier_token37] = ACTIONS(1014), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1014), - [aux_sym_cmd_identifier_token40] = ACTIONS(1014), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1014), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1014), - [aux_sym__val_number_decimal_token3] = ACTIONS(1014), - [aux_sym__val_number_decimal_token4] = ACTIONS(1014), - [aux_sym__val_number_token1] = ACTIONS(1014), - [aux_sym__val_number_token2] = ACTIONS(1014), - [aux_sym__val_number_token3] = ACTIONS(1014), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1014), - [sym__str_single_quotes] = ACTIONS(1014), - [sym__str_back_ticks] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1014), - [sym__entry_separator] = ACTIONS(1016), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [sym__entry_separator] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [601] = { - [sym__expr_parenthesized_immediate] = STATE(7983), - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_alias] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_let_DASHenv] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [aux_sym_cmd_identifier_token1] = ACTIONS(2197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2199), - [aux_sym_cmd_identifier_token3] = ACTIONS(2199), - [aux_sym_cmd_identifier_token4] = ACTIONS(2199), - [aux_sym_cmd_identifier_token5] = ACTIONS(2199), - [aux_sym_cmd_identifier_token6] = ACTIONS(2199), - [aux_sym_cmd_identifier_token7] = ACTIONS(2199), - [aux_sym_cmd_identifier_token8] = ACTIONS(2197), - [aux_sym_cmd_identifier_token9] = ACTIONS(2197), - [aux_sym_cmd_identifier_token10] = ACTIONS(2199), - [aux_sym_cmd_identifier_token11] = ACTIONS(2199), - [aux_sym_cmd_identifier_token12] = ACTIONS(2197), - [aux_sym_cmd_identifier_token13] = ACTIONS(2197), - [aux_sym_cmd_identifier_token14] = ACTIONS(2197), - [aux_sym_cmd_identifier_token15] = ACTIONS(2197), - [aux_sym_cmd_identifier_token16] = ACTIONS(2199), - [aux_sym_cmd_identifier_token17] = ACTIONS(2199), - [aux_sym_cmd_identifier_token18] = ACTIONS(2199), - [aux_sym_cmd_identifier_token19] = ACTIONS(2199), - [aux_sym_cmd_identifier_token20] = ACTIONS(2199), - [aux_sym_cmd_identifier_token21] = ACTIONS(2199), - [aux_sym_cmd_identifier_token22] = ACTIONS(2199), - [aux_sym_cmd_identifier_token23] = ACTIONS(2199), - [aux_sym_cmd_identifier_token24] = ACTIONS(2199), - [aux_sym_cmd_identifier_token25] = ACTIONS(2199), - [aux_sym_cmd_identifier_token26] = ACTIONS(2199), - [aux_sym_cmd_identifier_token27] = ACTIONS(2199), - [aux_sym_cmd_identifier_token28] = ACTIONS(2199), - [aux_sym_cmd_identifier_token29] = ACTIONS(2199), - [aux_sym_cmd_identifier_token30] = ACTIONS(2199), - [aux_sym_cmd_identifier_token31] = ACTIONS(2199), - [aux_sym_cmd_identifier_token32] = ACTIONS(2199), - [aux_sym_cmd_identifier_token33] = ACTIONS(2199), - [aux_sym_cmd_identifier_token34] = ACTIONS(2197), - [aux_sym_cmd_identifier_token35] = ACTIONS(2199), - [aux_sym_cmd_identifier_token36] = ACTIONS(2199), - [aux_sym_cmd_identifier_token37] = ACTIONS(2199), - [aux_sym_cmd_identifier_token38] = ACTIONS(2197), - [aux_sym_cmd_identifier_token39] = ACTIONS(2199), - [aux_sym_cmd_identifier_token40] = ACTIONS(2199), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_export_DASHenv] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_error] = ACTIONS(2197), - [anon_sym_DASH2] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_in2] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_make] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_source] = ACTIONS(2197), - [anon_sym_source_DASHenv] = ACTIONS(2197), - [anon_sym_register] = ACTIONS(2197), - [anon_sym_hide] = ACTIONS(2197), - [anon_sym_hide_DASHenv] = ACTIONS(2197), - [anon_sym_overlay] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), - [aux_sym__val_number_decimal_token1] = ACTIONS(2197), - [aux_sym__val_number_decimal_token2] = ACTIONS(2199), - [aux_sym__val_number_decimal_token3] = ACTIONS(2199), - [aux_sym__val_number_decimal_token4] = ACTIONS(2199), - [aux_sym__val_number_token1] = ACTIONS(2199), - [aux_sym__val_number_token2] = ACTIONS(2199), - [aux_sym__val_number_token3] = ACTIONS(2199), - [aux_sym__val_number_token4] = ACTIONS(2197), - [aux_sym__val_number_token5] = ACTIONS(2197), - [aux_sym__val_number_token6] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2199), - [sym__str_back_ticks] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2199), - }, - [602] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_alias] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_let_DASHenv] = ACTIONS(2276), - [anon_sym_mut] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [aux_sym_cmd_identifier_token1] = ACTIONS(2276), - [aux_sym_cmd_identifier_token2] = ACTIONS(2278), - [aux_sym_cmd_identifier_token3] = ACTIONS(2278), - [aux_sym_cmd_identifier_token4] = ACTIONS(2278), - [aux_sym_cmd_identifier_token5] = ACTIONS(2278), - [aux_sym_cmd_identifier_token6] = ACTIONS(2278), - [aux_sym_cmd_identifier_token7] = ACTIONS(2278), - [aux_sym_cmd_identifier_token8] = ACTIONS(2276), - [aux_sym_cmd_identifier_token9] = ACTIONS(2276), - [aux_sym_cmd_identifier_token10] = ACTIONS(2278), - [aux_sym_cmd_identifier_token11] = ACTIONS(2278), - [aux_sym_cmd_identifier_token12] = ACTIONS(2276), - [aux_sym_cmd_identifier_token13] = ACTIONS(2276), - [aux_sym_cmd_identifier_token14] = ACTIONS(2276), - [aux_sym_cmd_identifier_token15] = ACTIONS(2276), - [aux_sym_cmd_identifier_token16] = ACTIONS(2278), - [aux_sym_cmd_identifier_token17] = ACTIONS(2278), - [aux_sym_cmd_identifier_token18] = ACTIONS(2278), - [aux_sym_cmd_identifier_token19] = ACTIONS(2278), - [aux_sym_cmd_identifier_token20] = ACTIONS(2278), - [aux_sym_cmd_identifier_token21] = ACTIONS(2278), - [aux_sym_cmd_identifier_token22] = ACTIONS(2278), - [aux_sym_cmd_identifier_token23] = ACTIONS(2278), - [aux_sym_cmd_identifier_token24] = ACTIONS(2278), - [aux_sym_cmd_identifier_token25] = ACTIONS(2278), - [aux_sym_cmd_identifier_token26] = ACTIONS(2278), - [aux_sym_cmd_identifier_token27] = ACTIONS(2278), - [aux_sym_cmd_identifier_token28] = ACTIONS(2278), - [aux_sym_cmd_identifier_token29] = ACTIONS(2278), - [aux_sym_cmd_identifier_token30] = ACTIONS(2278), - [aux_sym_cmd_identifier_token31] = ACTIONS(2278), - [aux_sym_cmd_identifier_token32] = ACTIONS(2278), - [aux_sym_cmd_identifier_token33] = ACTIONS(2278), - [aux_sym_cmd_identifier_token34] = ACTIONS(2276), - [aux_sym_cmd_identifier_token35] = ACTIONS(2278), - [aux_sym_cmd_identifier_token36] = ACTIONS(2278), - [aux_sym_cmd_identifier_token37] = ACTIONS(2278), - [aux_sym_cmd_identifier_token38] = ACTIONS(2276), - [aux_sym_cmd_identifier_token39] = ACTIONS(2278), - [aux_sym_cmd_identifier_token40] = ACTIONS(2278), - [anon_sym_def] = ACTIONS(2276), - [anon_sym_export_DASHenv] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(2278), - [anon_sym_error] = ACTIONS(2276), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_in2] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_make] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_do] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_else] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2276), - [anon_sym_catch] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_source] = ACTIONS(2276), - [anon_sym_source_DASHenv] = ACTIONS(2276), - [anon_sym_register] = ACTIONS(2276), - [anon_sym_hide] = ACTIONS(2276), - [anon_sym_hide_DASHenv] = ACTIONS(2276), - [anon_sym_overlay] = ACTIONS(2276), - [anon_sym_as] = ACTIONS(2276), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2276), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2278), - [aux_sym__val_number_decimal_token1] = ACTIONS(2276), - [aux_sym__val_number_decimal_token2] = ACTIONS(2278), - [aux_sym__val_number_decimal_token3] = ACTIONS(2278), - [aux_sym__val_number_decimal_token4] = ACTIONS(2278), - [aux_sym__val_number_token1] = ACTIONS(2278), - [aux_sym__val_number_token2] = ACTIONS(2278), - [aux_sym__val_number_token3] = ACTIONS(2278), - [aux_sym__val_number_token4] = ACTIONS(2276), - [aux_sym__val_number_token5] = ACTIONS(2276), - [aux_sym__val_number_token6] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2278), - [sym__str_single_quotes] = ACTIONS(2278), - [sym__str_back_ticks] = ACTIONS(2278), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2278), - }, - [603] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_alias] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_let_DASHenv] = ACTIONS(2280), - [anon_sym_mut] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [aux_sym_cmd_identifier_token1] = ACTIONS(2280), - [aux_sym_cmd_identifier_token2] = ACTIONS(2282), - [aux_sym_cmd_identifier_token3] = ACTIONS(2282), - [aux_sym_cmd_identifier_token4] = ACTIONS(2282), - [aux_sym_cmd_identifier_token5] = ACTIONS(2282), - [aux_sym_cmd_identifier_token6] = ACTIONS(2282), - [aux_sym_cmd_identifier_token7] = ACTIONS(2282), - [aux_sym_cmd_identifier_token8] = ACTIONS(2280), - [aux_sym_cmd_identifier_token9] = ACTIONS(2280), - [aux_sym_cmd_identifier_token10] = ACTIONS(2282), - [aux_sym_cmd_identifier_token11] = ACTIONS(2282), - [aux_sym_cmd_identifier_token12] = ACTIONS(2280), - [aux_sym_cmd_identifier_token13] = ACTIONS(2280), - [aux_sym_cmd_identifier_token14] = ACTIONS(2280), - [aux_sym_cmd_identifier_token15] = ACTIONS(2280), - [aux_sym_cmd_identifier_token16] = ACTIONS(2282), - [aux_sym_cmd_identifier_token17] = ACTIONS(2282), - [aux_sym_cmd_identifier_token18] = ACTIONS(2282), - [aux_sym_cmd_identifier_token19] = ACTIONS(2282), - [aux_sym_cmd_identifier_token20] = ACTIONS(2282), - [aux_sym_cmd_identifier_token21] = ACTIONS(2282), - [aux_sym_cmd_identifier_token22] = ACTIONS(2282), - [aux_sym_cmd_identifier_token23] = ACTIONS(2282), - [aux_sym_cmd_identifier_token24] = ACTIONS(2282), - [aux_sym_cmd_identifier_token25] = ACTIONS(2282), - [aux_sym_cmd_identifier_token26] = ACTIONS(2282), - [aux_sym_cmd_identifier_token27] = ACTIONS(2282), - [aux_sym_cmd_identifier_token28] = ACTIONS(2282), - [aux_sym_cmd_identifier_token29] = ACTIONS(2282), - [aux_sym_cmd_identifier_token30] = ACTIONS(2282), - [aux_sym_cmd_identifier_token31] = ACTIONS(2282), - [aux_sym_cmd_identifier_token32] = ACTIONS(2282), - [aux_sym_cmd_identifier_token33] = ACTIONS(2282), - [aux_sym_cmd_identifier_token34] = ACTIONS(2280), - [aux_sym_cmd_identifier_token35] = ACTIONS(2282), - [aux_sym_cmd_identifier_token36] = ACTIONS(2282), - [aux_sym_cmd_identifier_token37] = ACTIONS(2282), - [aux_sym_cmd_identifier_token38] = ACTIONS(2280), - [aux_sym_cmd_identifier_token39] = ACTIONS(2282), - [aux_sym_cmd_identifier_token40] = ACTIONS(2282), - [anon_sym_def] = ACTIONS(2280), - [anon_sym_export_DASHenv] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2282), - [anon_sym_error] = ACTIONS(2280), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_in2] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_make] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_catch] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_source] = ACTIONS(2280), - [anon_sym_source_DASHenv] = ACTIONS(2280), - [anon_sym_register] = ACTIONS(2280), - [anon_sym_hide] = ACTIONS(2280), - [anon_sym_hide_DASHenv] = ACTIONS(2280), - [anon_sym_overlay] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2280), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2282), - [aux_sym__val_number_decimal_token1] = ACTIONS(2280), - [aux_sym__val_number_decimal_token2] = ACTIONS(2282), - [aux_sym__val_number_decimal_token3] = ACTIONS(2282), - [aux_sym__val_number_decimal_token4] = ACTIONS(2282), - [aux_sym__val_number_token1] = ACTIONS(2282), - [aux_sym__val_number_token2] = ACTIONS(2282), - [aux_sym__val_number_token3] = ACTIONS(2282), - [aux_sym__val_number_token4] = ACTIONS(2280), - [aux_sym__val_number_token5] = ACTIONS(2280), - [aux_sym__val_number_token6] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2282), - [sym__str_single_quotes] = ACTIONS(2282), - [sym__str_back_ticks] = ACTIONS(2282), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2282), + [sym_raw_string_begin] = ACTIONS(1000), }, - [604] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_alias] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_let_DASHenv] = ACTIONS(2284), - [anon_sym_mut] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [aux_sym_cmd_identifier_token1] = ACTIONS(2284), - [aux_sym_cmd_identifier_token2] = ACTIONS(2286), - [aux_sym_cmd_identifier_token3] = ACTIONS(2286), - [aux_sym_cmd_identifier_token4] = ACTIONS(2286), - [aux_sym_cmd_identifier_token5] = ACTIONS(2286), - [aux_sym_cmd_identifier_token6] = ACTIONS(2286), - [aux_sym_cmd_identifier_token7] = ACTIONS(2286), - [aux_sym_cmd_identifier_token8] = ACTIONS(2284), - [aux_sym_cmd_identifier_token9] = ACTIONS(2284), - [aux_sym_cmd_identifier_token10] = ACTIONS(2286), - [aux_sym_cmd_identifier_token11] = ACTIONS(2286), - [aux_sym_cmd_identifier_token12] = ACTIONS(2284), - [aux_sym_cmd_identifier_token13] = ACTIONS(2284), - [aux_sym_cmd_identifier_token14] = ACTIONS(2284), - [aux_sym_cmd_identifier_token15] = ACTIONS(2284), - [aux_sym_cmd_identifier_token16] = ACTIONS(2286), - [aux_sym_cmd_identifier_token17] = ACTIONS(2286), - [aux_sym_cmd_identifier_token18] = ACTIONS(2286), - [aux_sym_cmd_identifier_token19] = ACTIONS(2286), - [aux_sym_cmd_identifier_token20] = ACTIONS(2286), - [aux_sym_cmd_identifier_token21] = ACTIONS(2286), - [aux_sym_cmd_identifier_token22] = ACTIONS(2286), - [aux_sym_cmd_identifier_token23] = ACTIONS(2286), - [aux_sym_cmd_identifier_token24] = ACTIONS(2286), - [aux_sym_cmd_identifier_token25] = ACTIONS(2286), - [aux_sym_cmd_identifier_token26] = ACTIONS(2286), - [aux_sym_cmd_identifier_token27] = ACTIONS(2286), - [aux_sym_cmd_identifier_token28] = ACTIONS(2286), - [aux_sym_cmd_identifier_token29] = ACTIONS(2286), - [aux_sym_cmd_identifier_token30] = ACTIONS(2286), - [aux_sym_cmd_identifier_token31] = ACTIONS(2286), - [aux_sym_cmd_identifier_token32] = ACTIONS(2286), - [aux_sym_cmd_identifier_token33] = ACTIONS(2286), - [aux_sym_cmd_identifier_token34] = ACTIONS(2284), - [aux_sym_cmd_identifier_token35] = ACTIONS(2286), - [aux_sym_cmd_identifier_token36] = ACTIONS(2286), - [aux_sym_cmd_identifier_token37] = ACTIONS(2286), - [aux_sym_cmd_identifier_token38] = ACTIONS(2284), - [aux_sym_cmd_identifier_token39] = ACTIONS(2286), - [aux_sym_cmd_identifier_token40] = ACTIONS(2286), - [anon_sym_def] = ACTIONS(2284), - [anon_sym_export_DASHenv] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_module] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_DOLLAR] = ACTIONS(2286), - [anon_sym_error] = ACTIONS(2284), - [anon_sym_DASH2] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_in2] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_make] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_do] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_else] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2284), - [anon_sym_catch] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_source] = ACTIONS(2284), - [anon_sym_source_DASHenv] = ACTIONS(2284), - [anon_sym_register] = ACTIONS(2284), - [anon_sym_hide] = ACTIONS(2284), - [anon_sym_hide_DASHenv] = ACTIONS(2284), - [anon_sym_overlay] = ACTIONS(2284), - [anon_sym_as] = ACTIONS(2284), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), - [aux_sym__val_number_decimal_token1] = ACTIONS(2284), - [aux_sym__val_number_decimal_token2] = ACTIONS(2286), - [aux_sym__val_number_decimal_token3] = ACTIONS(2286), - [aux_sym__val_number_decimal_token4] = ACTIONS(2286), - [aux_sym__val_number_token1] = ACTIONS(2286), - [aux_sym__val_number_token2] = ACTIONS(2286), - [aux_sym__val_number_token3] = ACTIONS(2286), - [aux_sym__val_number_token4] = ACTIONS(2284), - [aux_sym__val_number_token5] = ACTIONS(2284), - [aux_sym__val_number_token6] = ACTIONS(2284), - [anon_sym_DQUOTE] = ACTIONS(2286), - [sym__str_single_quotes] = ACTIONS(2286), - [sym__str_back_ticks] = ACTIONS(2286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2286), - }, - [605] = { - [sym__expr_parenthesized_immediate] = STATE(8427), - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_alias] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_let_DASHenv] = ACTIONS(2288), - [anon_sym_mut] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [aux_sym_cmd_identifier_token1] = ACTIONS(2288), - [aux_sym_cmd_identifier_token2] = ACTIONS(2290), - [aux_sym_cmd_identifier_token3] = ACTIONS(2290), - [aux_sym_cmd_identifier_token4] = ACTIONS(2290), - [aux_sym_cmd_identifier_token5] = ACTIONS(2290), - [aux_sym_cmd_identifier_token6] = ACTIONS(2290), - [aux_sym_cmd_identifier_token7] = ACTIONS(2290), - [aux_sym_cmd_identifier_token8] = ACTIONS(2288), - [aux_sym_cmd_identifier_token9] = ACTIONS(2288), - [aux_sym_cmd_identifier_token10] = ACTIONS(2290), - [aux_sym_cmd_identifier_token11] = ACTIONS(2290), - [aux_sym_cmd_identifier_token12] = ACTIONS(2288), - [aux_sym_cmd_identifier_token13] = ACTIONS(2288), - [aux_sym_cmd_identifier_token14] = ACTIONS(2288), - [aux_sym_cmd_identifier_token15] = ACTIONS(2288), - [aux_sym_cmd_identifier_token16] = ACTIONS(2290), - [aux_sym_cmd_identifier_token17] = ACTIONS(2290), - [aux_sym_cmd_identifier_token18] = ACTIONS(2290), - [aux_sym_cmd_identifier_token19] = ACTIONS(2290), - [aux_sym_cmd_identifier_token20] = ACTIONS(2290), - [aux_sym_cmd_identifier_token21] = ACTIONS(2290), - [aux_sym_cmd_identifier_token22] = ACTIONS(2290), - [aux_sym_cmd_identifier_token23] = ACTIONS(2290), - [aux_sym_cmd_identifier_token24] = ACTIONS(2290), - [aux_sym_cmd_identifier_token25] = ACTIONS(2290), - [aux_sym_cmd_identifier_token26] = ACTIONS(2290), - [aux_sym_cmd_identifier_token27] = ACTIONS(2290), - [aux_sym_cmd_identifier_token28] = ACTIONS(2290), - [aux_sym_cmd_identifier_token29] = ACTIONS(2290), - [aux_sym_cmd_identifier_token30] = ACTIONS(2290), - [aux_sym_cmd_identifier_token31] = ACTIONS(2290), - [aux_sym_cmd_identifier_token32] = ACTIONS(2290), - [aux_sym_cmd_identifier_token33] = ACTIONS(2290), - [aux_sym_cmd_identifier_token34] = ACTIONS(2288), - [aux_sym_cmd_identifier_token35] = ACTIONS(2290), - [aux_sym_cmd_identifier_token36] = ACTIONS(2290), - [aux_sym_cmd_identifier_token37] = ACTIONS(2290), - [aux_sym_cmd_identifier_token38] = ACTIONS(2288), - [aux_sym_cmd_identifier_token39] = ACTIONS(2290), - [aux_sym_cmd_identifier_token40] = ACTIONS(2290), - [anon_sym_def] = ACTIONS(2288), - [anon_sym_export_DASHenv] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_error] = ACTIONS(2288), - [anon_sym_DASH2] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_in2] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_make] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2290), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_catch] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_source] = ACTIONS(2288), - [anon_sym_source_DASHenv] = ACTIONS(2288), - [anon_sym_register] = ACTIONS(2288), - [anon_sym_hide] = ACTIONS(2288), - [anon_sym_hide_DASHenv] = ACTIONS(2288), - [anon_sym_overlay] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_LPAREN2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2290), - [aux_sym__val_number_decimal_token1] = ACTIONS(2288), - [aux_sym__val_number_decimal_token2] = ACTIONS(2290), - [aux_sym__val_number_decimal_token3] = ACTIONS(2290), - [aux_sym__val_number_decimal_token4] = ACTIONS(2290), - [aux_sym__val_number_token1] = ACTIONS(2290), - [aux_sym__val_number_token2] = ACTIONS(2290), - [aux_sym__val_number_token3] = ACTIONS(2290), - [aux_sym__val_number_token4] = ACTIONS(2288), - [aux_sym__val_number_token5] = ACTIONS(2288), - [aux_sym__val_number_token6] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2290), - [sym__str_single_quotes] = ACTIONS(2290), - [sym__str_back_ticks] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2290), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(1687), - [anon_sym_alias] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_let_DASHenv] = ACTIONS(1687), - [anon_sym_mut] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1687), - [aux_sym_cmd_identifier_token2] = ACTIONS(1687), - [aux_sym_cmd_identifier_token3] = ACTIONS(1687), - [aux_sym_cmd_identifier_token4] = ACTIONS(1687), - [aux_sym_cmd_identifier_token5] = ACTIONS(1687), - [aux_sym_cmd_identifier_token6] = ACTIONS(1687), - [aux_sym_cmd_identifier_token7] = ACTIONS(1687), - [aux_sym_cmd_identifier_token8] = ACTIONS(1687), - [aux_sym_cmd_identifier_token9] = ACTIONS(1687), - [aux_sym_cmd_identifier_token10] = ACTIONS(1687), - [aux_sym_cmd_identifier_token11] = ACTIONS(1687), - [aux_sym_cmd_identifier_token12] = ACTIONS(1687), - [aux_sym_cmd_identifier_token13] = ACTIONS(1687), - [aux_sym_cmd_identifier_token14] = ACTIONS(1687), - [aux_sym_cmd_identifier_token15] = ACTIONS(1687), - [aux_sym_cmd_identifier_token16] = ACTIONS(1687), - [aux_sym_cmd_identifier_token17] = ACTIONS(1687), - [aux_sym_cmd_identifier_token18] = ACTIONS(1687), - [aux_sym_cmd_identifier_token19] = ACTIONS(1687), - [aux_sym_cmd_identifier_token20] = ACTIONS(1687), - [aux_sym_cmd_identifier_token21] = ACTIONS(1687), - [aux_sym_cmd_identifier_token22] = ACTIONS(1687), - [aux_sym_cmd_identifier_token23] = ACTIONS(1687), - [aux_sym_cmd_identifier_token24] = ACTIONS(1687), - [aux_sym_cmd_identifier_token25] = ACTIONS(1687), - [aux_sym_cmd_identifier_token26] = ACTIONS(1687), - [aux_sym_cmd_identifier_token27] = ACTIONS(1687), - [aux_sym_cmd_identifier_token28] = ACTIONS(1687), - [aux_sym_cmd_identifier_token29] = ACTIONS(1687), - [aux_sym_cmd_identifier_token30] = ACTIONS(1687), - [aux_sym_cmd_identifier_token31] = ACTIONS(1687), - [aux_sym_cmd_identifier_token32] = ACTIONS(1687), - [aux_sym_cmd_identifier_token33] = ACTIONS(1687), - [aux_sym_cmd_identifier_token34] = ACTIONS(1687), - [aux_sym_cmd_identifier_token35] = ACTIONS(1687), - [aux_sym_cmd_identifier_token36] = ACTIONS(1687), - [aux_sym_cmd_identifier_token37] = ACTIONS(1687), - [aux_sym_cmd_identifier_token38] = ACTIONS(1687), - [aux_sym_cmd_identifier_token39] = ACTIONS(1687), - [aux_sym_cmd_identifier_token40] = ACTIONS(1687), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_export_DASHenv] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_module] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_error] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_make] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_catch] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_source] = ACTIONS(1687), - [anon_sym_source_DASHenv] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_hide] = ACTIONS(1687), - [anon_sym_hide_DASHenv] = ACTIONS(1687), - [anon_sym_overlay] = ACTIONS(1687), - [anon_sym_as] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1687), - [aux_sym__val_number_decimal_token3] = ACTIONS(1687), - [aux_sym__val_number_decimal_token4] = ACTIONS(1687), - [aux_sym__val_number_token1] = ACTIONS(1687), - [aux_sym__val_number_token2] = ACTIONS(1687), - [aux_sym__val_number_token3] = ACTIONS(1687), - [aux_sym__val_number_token4] = ACTIONS(1687), - [aux_sym__val_number_token5] = ACTIONS(1687), - [aux_sym__val_number_token6] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym__str_single_quotes] = ACTIONS(1687), - [sym__str_back_ticks] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), - [sym__entry_separator] = ACTIONS(1699), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_alias] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_let_DASHenv] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [aux_sym_cmd_identifier_token1] = ACTIONS(2115), + [aux_sym_cmd_identifier_token2] = ACTIONS(2115), + [aux_sym_cmd_identifier_token3] = ACTIONS(2115), + [aux_sym_cmd_identifier_token4] = ACTIONS(2115), + [aux_sym_cmd_identifier_token5] = ACTIONS(2115), + [aux_sym_cmd_identifier_token6] = ACTIONS(2115), + [aux_sym_cmd_identifier_token7] = ACTIONS(2115), + [aux_sym_cmd_identifier_token8] = ACTIONS(2115), + [aux_sym_cmd_identifier_token9] = ACTIONS(2115), + [aux_sym_cmd_identifier_token10] = ACTIONS(2115), + [aux_sym_cmd_identifier_token11] = ACTIONS(2115), + [aux_sym_cmd_identifier_token12] = ACTIONS(2115), + [aux_sym_cmd_identifier_token13] = ACTIONS(2115), + [aux_sym_cmd_identifier_token14] = ACTIONS(2115), + [aux_sym_cmd_identifier_token15] = ACTIONS(2115), + [aux_sym_cmd_identifier_token16] = ACTIONS(2115), + [aux_sym_cmd_identifier_token17] = ACTIONS(2115), + [aux_sym_cmd_identifier_token18] = ACTIONS(2115), + [aux_sym_cmd_identifier_token19] = ACTIONS(2115), + [aux_sym_cmd_identifier_token20] = ACTIONS(2115), + [aux_sym_cmd_identifier_token21] = ACTIONS(2115), + [aux_sym_cmd_identifier_token22] = ACTIONS(2115), + [aux_sym_cmd_identifier_token23] = ACTIONS(2115), + [aux_sym_cmd_identifier_token24] = ACTIONS(2115), + [aux_sym_cmd_identifier_token25] = ACTIONS(2115), + [aux_sym_cmd_identifier_token26] = ACTIONS(2115), + [aux_sym_cmd_identifier_token27] = ACTIONS(2115), + [aux_sym_cmd_identifier_token28] = ACTIONS(2115), + [aux_sym_cmd_identifier_token29] = ACTIONS(2115), + [aux_sym_cmd_identifier_token30] = ACTIONS(2115), + [aux_sym_cmd_identifier_token31] = ACTIONS(2115), + [aux_sym_cmd_identifier_token32] = ACTIONS(2115), + [aux_sym_cmd_identifier_token33] = ACTIONS(2115), + [aux_sym_cmd_identifier_token34] = ACTIONS(2115), + [aux_sym_cmd_identifier_token35] = ACTIONS(2115), + [aux_sym_cmd_identifier_token36] = ACTIONS(2115), + [aux_sym_cmd_identifier_token37] = ACTIONS(2115), + [aux_sym_cmd_identifier_token38] = ACTIONS(2115), + [aux_sym_cmd_identifier_token39] = ACTIONS(2115), + [aux_sym_cmd_identifier_token40] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2115), + [anon_sym_export_DASHenv] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_module] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_DOLLAR] = ACTIONS(2115), + [anon_sym_error] = ACTIONS(2115), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_in2] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_make] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_do] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_catch] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_source] = ACTIONS(2115), + [anon_sym_source_DASHenv] = ACTIONS(2115), + [anon_sym_register] = ACTIONS(2115), + [anon_sym_hide] = ACTIONS(2115), + [anon_sym_hide_DASHenv] = ACTIONS(2115), + [anon_sym_overlay] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_PLUS2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2115), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2115), + [aux_sym__val_number_decimal_token3] = ACTIONS(2115), + [aux_sym__val_number_decimal_token4] = ACTIONS(2115), + [aux_sym__val_number_token1] = ACTIONS(2115), + [aux_sym__val_number_token2] = ACTIONS(2115), + [aux_sym__val_number_token3] = ACTIONS(2115), + [aux_sym__val_number_token4] = ACTIONS(2115), + [aux_sym__val_number_token5] = ACTIONS(2115), + [aux_sym__val_number_token6] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2115), + [sym__str_single_quotes] = ACTIONS(2115), + [sym__str_back_ticks] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2115), + [sym__entry_separator] = ACTIONS(2121), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1699), + [sym_raw_string_begin] = ACTIONS(2121), }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [aux_sym_cmd_identifier_token37] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2222), + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1945), + [aux_sym_cmd_identifier_token11] = ACTIONS(1945), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1945), + [aux_sym_cmd_identifier_token17] = ACTIONS(1945), + [aux_sym_cmd_identifier_token18] = ACTIONS(1945), + [aux_sym_cmd_identifier_token19] = ACTIONS(1945), + [aux_sym_cmd_identifier_token20] = ACTIONS(1945), + [aux_sym_cmd_identifier_token21] = ACTIONS(1945), + [aux_sym_cmd_identifier_token22] = ACTIONS(1945), + [aux_sym_cmd_identifier_token23] = ACTIONS(1945), + [aux_sym_cmd_identifier_token24] = ACTIONS(1945), + [aux_sym_cmd_identifier_token25] = ACTIONS(1945), + [aux_sym_cmd_identifier_token26] = ACTIONS(1945), + [aux_sym_cmd_identifier_token27] = ACTIONS(1945), + [aux_sym_cmd_identifier_token28] = ACTIONS(1945), + [aux_sym_cmd_identifier_token29] = ACTIONS(1945), + [aux_sym_cmd_identifier_token30] = ACTIONS(1945), + [aux_sym_cmd_identifier_token31] = ACTIONS(1945), + [aux_sym_cmd_identifier_token32] = ACTIONS(1945), + [aux_sym_cmd_identifier_token33] = ACTIONS(1945), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1945), + [aux_sym_cmd_identifier_token36] = ACTIONS(1945), + [aux_sym_cmd_identifier_token37] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in2] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [aux_sym__val_number_token4] = ACTIONS(1945), + [aux_sym__val_number_token5] = ACTIONS(1945), + [aux_sym__val_number_token6] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [sym__entry_separator] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), + [sym_raw_string_begin] = ACTIONS(1947), }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [aux_sym_cmd_identifier_token37] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2413), + [aux_sym_cmd_identifier_token3] = ACTIONS(2413), + [aux_sym_cmd_identifier_token4] = ACTIONS(2413), + [aux_sym_cmd_identifier_token5] = ACTIONS(2413), + [aux_sym_cmd_identifier_token6] = ACTIONS(2413), + [aux_sym_cmd_identifier_token7] = ACTIONS(2413), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2413), + [aux_sym_cmd_identifier_token11] = ACTIONS(2413), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2413), + [aux_sym_cmd_identifier_token17] = ACTIONS(2413), + [aux_sym_cmd_identifier_token18] = ACTIONS(2413), + [aux_sym_cmd_identifier_token19] = ACTIONS(2413), + [aux_sym_cmd_identifier_token20] = ACTIONS(2413), + [aux_sym_cmd_identifier_token21] = ACTIONS(2413), + [aux_sym_cmd_identifier_token22] = ACTIONS(2413), + [aux_sym_cmd_identifier_token23] = ACTIONS(2413), + [aux_sym_cmd_identifier_token24] = ACTIONS(2413), + [aux_sym_cmd_identifier_token25] = ACTIONS(2413), + [aux_sym_cmd_identifier_token26] = ACTIONS(2413), + [aux_sym_cmd_identifier_token27] = ACTIONS(2413), + [aux_sym_cmd_identifier_token28] = ACTIONS(2413), + [aux_sym_cmd_identifier_token29] = ACTIONS(2413), + [aux_sym_cmd_identifier_token30] = ACTIONS(2413), + [aux_sym_cmd_identifier_token31] = ACTIONS(2413), + [aux_sym_cmd_identifier_token32] = ACTIONS(2413), + [aux_sym_cmd_identifier_token33] = ACTIONS(2413), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2413), + [aux_sym_cmd_identifier_token36] = ACTIONS(2413), + [aux_sym_cmd_identifier_token37] = ACTIONS(2413), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2413), + [aux_sym_cmd_identifier_token40] = ACTIONS(2413), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2413), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(2413), + [aux_sym__val_number_token2] = ACTIONS(2413), + [aux_sym__val_number_token3] = ACTIONS(2413), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym__str_single_quotes] = ACTIONS(2413), + [sym__str_back_ticks] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [sym__entry_separator] = ACTIONS(2415), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(2415), }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [sym__entry_separator] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(960), }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2359), - [aux_sym_cmd_identifier_token3] = ACTIONS(2359), - [aux_sym_cmd_identifier_token4] = ACTIONS(2359), - [aux_sym_cmd_identifier_token5] = ACTIONS(2359), - [aux_sym_cmd_identifier_token6] = ACTIONS(2359), - [aux_sym_cmd_identifier_token7] = ACTIONS(2359), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2359), - [aux_sym_cmd_identifier_token11] = ACTIONS(2359), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2359), - [aux_sym_cmd_identifier_token17] = ACTIONS(2359), - [aux_sym_cmd_identifier_token18] = ACTIONS(2359), - [aux_sym_cmd_identifier_token19] = ACTIONS(2359), - [aux_sym_cmd_identifier_token20] = ACTIONS(2359), - [aux_sym_cmd_identifier_token21] = ACTIONS(2359), - [aux_sym_cmd_identifier_token22] = ACTIONS(2359), - [aux_sym_cmd_identifier_token23] = ACTIONS(2359), - [aux_sym_cmd_identifier_token24] = ACTIONS(2359), - [aux_sym_cmd_identifier_token25] = ACTIONS(2359), - [aux_sym_cmd_identifier_token26] = ACTIONS(2359), - [aux_sym_cmd_identifier_token27] = ACTIONS(2359), - [aux_sym_cmd_identifier_token28] = ACTIONS(2359), - [aux_sym_cmd_identifier_token29] = ACTIONS(2359), - [aux_sym_cmd_identifier_token30] = ACTIONS(2359), - [aux_sym_cmd_identifier_token31] = ACTIONS(2359), - [aux_sym_cmd_identifier_token32] = ACTIONS(2359), - [aux_sym_cmd_identifier_token33] = ACTIONS(2359), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2359), - [aux_sym_cmd_identifier_token36] = ACTIONS(2359), - [aux_sym_cmd_identifier_token37] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH2] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in2] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS2] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_decimal_token4] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), - [sym__entry_separator] = ACTIONS(2361), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2361), + [sym_raw_string_begin] = ACTIONS(978), }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1917), - [aux_sym_cmd_identifier_token3] = ACTIONS(1917), - [aux_sym_cmd_identifier_token4] = ACTIONS(1917), - [aux_sym_cmd_identifier_token5] = ACTIONS(1917), - [aux_sym_cmd_identifier_token6] = ACTIONS(1917), - [aux_sym_cmd_identifier_token7] = ACTIONS(1917), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1917), - [aux_sym_cmd_identifier_token11] = ACTIONS(1917), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1917), - [aux_sym_cmd_identifier_token17] = ACTIONS(1917), - [aux_sym_cmd_identifier_token18] = ACTIONS(1917), - [aux_sym_cmd_identifier_token19] = ACTIONS(1917), - [aux_sym_cmd_identifier_token20] = ACTIONS(1917), - [aux_sym_cmd_identifier_token21] = ACTIONS(1917), - [aux_sym_cmd_identifier_token22] = ACTIONS(1917), - [aux_sym_cmd_identifier_token23] = ACTIONS(1917), - [aux_sym_cmd_identifier_token24] = ACTIONS(1917), - [aux_sym_cmd_identifier_token25] = ACTIONS(1917), - [aux_sym_cmd_identifier_token26] = ACTIONS(1917), - [aux_sym_cmd_identifier_token27] = ACTIONS(1917), - [aux_sym_cmd_identifier_token28] = ACTIONS(1917), - [aux_sym_cmd_identifier_token29] = ACTIONS(1917), - [aux_sym_cmd_identifier_token30] = ACTIONS(1917), - [aux_sym_cmd_identifier_token31] = ACTIONS(1917), - [aux_sym_cmd_identifier_token32] = ACTIONS(1917), - [aux_sym_cmd_identifier_token33] = ACTIONS(1917), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1917), - [aux_sym_cmd_identifier_token36] = ACTIONS(1917), - [aux_sym_cmd_identifier_token37] = ACTIONS(1917), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1917), - [aux_sym_cmd_identifier_token40] = ACTIONS(1917), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1917), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1917), - [aux_sym__val_number_decimal_token3] = ACTIONS(1917), - [aux_sym__val_number_decimal_token4] = ACTIONS(1917), - [aux_sym__val_number_token1] = ACTIONS(1917), - [aux_sym__val_number_token2] = ACTIONS(1917), - [aux_sym__val_number_token3] = ACTIONS(1917), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), - [sym__entry_separator] = ACTIONS(1919), + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(972), + [aux_sym_cmd_identifier_token3] = ACTIONS(972), + [aux_sym_cmd_identifier_token4] = ACTIONS(972), + [aux_sym_cmd_identifier_token5] = ACTIONS(972), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [aux_sym_cmd_identifier_token7] = ACTIONS(972), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(972), + [aux_sym_cmd_identifier_token11] = ACTIONS(972), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(972), + [aux_sym_cmd_identifier_token17] = ACTIONS(972), + [aux_sym_cmd_identifier_token18] = ACTIONS(972), + [aux_sym_cmd_identifier_token19] = ACTIONS(972), + [aux_sym_cmd_identifier_token20] = ACTIONS(972), + [aux_sym_cmd_identifier_token21] = ACTIONS(972), + [aux_sym_cmd_identifier_token22] = ACTIONS(972), + [aux_sym_cmd_identifier_token23] = ACTIONS(972), + [aux_sym_cmd_identifier_token24] = ACTIONS(972), + [aux_sym_cmd_identifier_token25] = ACTIONS(972), + [aux_sym_cmd_identifier_token26] = ACTIONS(972), + [aux_sym_cmd_identifier_token27] = ACTIONS(972), + [aux_sym_cmd_identifier_token28] = ACTIONS(972), + [aux_sym_cmd_identifier_token29] = ACTIONS(972), + [aux_sym_cmd_identifier_token30] = ACTIONS(972), + [aux_sym_cmd_identifier_token31] = ACTIONS(972), + [aux_sym_cmd_identifier_token32] = ACTIONS(972), + [aux_sym_cmd_identifier_token33] = ACTIONS(972), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(972), + [aux_sym_cmd_identifier_token36] = ACTIONS(972), + [aux_sym_cmd_identifier_token37] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [sym__entry_separator] = ACTIONS(974), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1919), + [sym_raw_string_begin] = ACTIONS(974), }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2363), - [aux_sym_cmd_identifier_token3] = ACTIONS(2363), - [aux_sym_cmd_identifier_token4] = ACTIONS(2363), - [aux_sym_cmd_identifier_token5] = ACTIONS(2363), - [aux_sym_cmd_identifier_token6] = ACTIONS(2363), - [aux_sym_cmd_identifier_token7] = ACTIONS(2363), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2363), - [aux_sym_cmd_identifier_token11] = ACTIONS(2363), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2363), - [aux_sym_cmd_identifier_token17] = ACTIONS(2363), - [aux_sym_cmd_identifier_token18] = ACTIONS(2363), - [aux_sym_cmd_identifier_token19] = ACTIONS(2363), - [aux_sym_cmd_identifier_token20] = ACTIONS(2363), - [aux_sym_cmd_identifier_token21] = ACTIONS(2363), - [aux_sym_cmd_identifier_token22] = ACTIONS(2363), - [aux_sym_cmd_identifier_token23] = ACTIONS(2363), - [aux_sym_cmd_identifier_token24] = ACTIONS(2363), - [aux_sym_cmd_identifier_token25] = ACTIONS(2363), - [aux_sym_cmd_identifier_token26] = ACTIONS(2363), - [aux_sym_cmd_identifier_token27] = ACTIONS(2363), - [aux_sym_cmd_identifier_token28] = ACTIONS(2363), - [aux_sym_cmd_identifier_token29] = ACTIONS(2363), - [aux_sym_cmd_identifier_token30] = ACTIONS(2363), - [aux_sym_cmd_identifier_token31] = ACTIONS(2363), - [aux_sym_cmd_identifier_token32] = ACTIONS(2363), - [aux_sym_cmd_identifier_token33] = ACTIONS(2363), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2363), - [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [aux_sym_cmd_identifier_token37] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in2] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_decimal_token4] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [aux_sym__val_number_token4] = ACTIONS(2363), - [aux_sym__val_number_token5] = ACTIONS(2363), - [aux_sym__val_number_token6] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym__str_single_quotes] = ACTIONS(2363), - [sym__str_back_ticks] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), - [sym__entry_separator] = ACTIONS(2365), + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(962), + [aux_sym_cmd_identifier_token3] = ACTIONS(962), + [aux_sym_cmd_identifier_token4] = ACTIONS(962), + [aux_sym_cmd_identifier_token5] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(962), + [aux_sym_cmd_identifier_token7] = ACTIONS(962), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(962), + [aux_sym_cmd_identifier_token11] = ACTIONS(962), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(962), + [aux_sym_cmd_identifier_token17] = ACTIONS(962), + [aux_sym_cmd_identifier_token18] = ACTIONS(962), + [aux_sym_cmd_identifier_token19] = ACTIONS(962), + [aux_sym_cmd_identifier_token20] = ACTIONS(962), + [aux_sym_cmd_identifier_token21] = ACTIONS(962), + [aux_sym_cmd_identifier_token22] = ACTIONS(962), + [aux_sym_cmd_identifier_token23] = ACTIONS(962), + [aux_sym_cmd_identifier_token24] = ACTIONS(962), + [aux_sym_cmd_identifier_token25] = ACTIONS(962), + [aux_sym_cmd_identifier_token26] = ACTIONS(962), + [aux_sym_cmd_identifier_token27] = ACTIONS(962), + [aux_sym_cmd_identifier_token28] = ACTIONS(962), + [aux_sym_cmd_identifier_token29] = ACTIONS(962), + [aux_sym_cmd_identifier_token30] = ACTIONS(962), + [aux_sym_cmd_identifier_token31] = ACTIONS(962), + [aux_sym_cmd_identifier_token32] = ACTIONS(962), + [aux_sym_cmd_identifier_token33] = ACTIONS(962), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(962), + [aux_sym_cmd_identifier_token36] = ACTIONS(962), + [aux_sym_cmd_identifier_token37] = ACTIONS(962), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(962), + [aux_sym_cmd_identifier_token40] = ACTIONS(962), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(962), + [aux_sym__val_number_decimal_token3] = ACTIONS(962), + [aux_sym__val_number_decimal_token4] = ACTIONS(962), + [aux_sym__val_number_token1] = ACTIONS(962), + [aux_sym__val_number_token2] = ACTIONS(962), + [aux_sym__val_number_token3] = ACTIONS(962), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym__str_single_quotes] = ACTIONS(962), + [sym__str_back_ticks] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), + [sym__entry_separator] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2365), + [sym_raw_string_begin] = ACTIONS(964), }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2367), - [aux_sym_cmd_identifier_token3] = ACTIONS(2367), - [aux_sym_cmd_identifier_token4] = ACTIONS(2367), - [aux_sym_cmd_identifier_token5] = ACTIONS(2367), - [aux_sym_cmd_identifier_token6] = ACTIONS(2367), - [aux_sym_cmd_identifier_token7] = ACTIONS(2367), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2367), - [aux_sym_cmd_identifier_token11] = ACTIONS(2367), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2367), - [aux_sym_cmd_identifier_token17] = ACTIONS(2367), - [aux_sym_cmd_identifier_token18] = ACTIONS(2367), - [aux_sym_cmd_identifier_token19] = ACTIONS(2367), - [aux_sym_cmd_identifier_token20] = ACTIONS(2367), - [aux_sym_cmd_identifier_token21] = ACTIONS(2367), - [aux_sym_cmd_identifier_token22] = ACTIONS(2367), - [aux_sym_cmd_identifier_token23] = ACTIONS(2367), - [aux_sym_cmd_identifier_token24] = ACTIONS(2367), - [aux_sym_cmd_identifier_token25] = ACTIONS(2367), - [aux_sym_cmd_identifier_token26] = ACTIONS(2367), - [aux_sym_cmd_identifier_token27] = ACTIONS(2367), - [aux_sym_cmd_identifier_token28] = ACTIONS(2367), - [aux_sym_cmd_identifier_token29] = ACTIONS(2367), - [aux_sym_cmd_identifier_token30] = ACTIONS(2367), - [aux_sym_cmd_identifier_token31] = ACTIONS(2367), - [aux_sym_cmd_identifier_token32] = ACTIONS(2367), - [aux_sym_cmd_identifier_token33] = ACTIONS(2367), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2367), - [aux_sym_cmd_identifier_token36] = ACTIONS(2367), - [aux_sym_cmd_identifier_token37] = ACTIONS(2367), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_DASH2] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in2] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_PLUS2] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2367), - [aux_sym__val_number_decimal_token3] = ACTIONS(2367), - [aux_sym__val_number_decimal_token4] = ACTIONS(2367), - [aux_sym__val_number_token1] = ACTIONS(2367), - [aux_sym__val_number_token2] = ACTIONS(2367), - [aux_sym__val_number_token3] = ACTIONS(2367), - [aux_sym__val_number_token4] = ACTIONS(2367), - [aux_sym__val_number_token5] = ACTIONS(2367), - [aux_sym__val_number_token6] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym__str_single_quotes] = ACTIONS(2367), - [sym__str_back_ticks] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), - [sym__entry_separator] = ACTIONS(2369), + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [aux_sym_cmd_identifier_token37] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2051), + [aux_sym__val_number_decimal_token3] = ACTIONS(2051), + [aux_sym__val_number_decimal_token4] = ACTIONS(2051), + [aux_sym__val_number_token1] = ACTIONS(2051), + [aux_sym__val_number_token2] = ACTIONS(2051), + [aux_sym__val_number_token3] = ACTIONS(2051), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), + [sym__entry_separator] = ACTIONS(2053), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2369), + [sym_raw_string_begin] = ACTIONS(2053), }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1925), - [aux_sym_cmd_identifier_token4] = ACTIONS(1925), - [aux_sym_cmd_identifier_token5] = ACTIONS(1925), - [aux_sym_cmd_identifier_token6] = ACTIONS(1925), - [aux_sym_cmd_identifier_token7] = ACTIONS(1925), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1925), - [aux_sym_cmd_identifier_token11] = ACTIONS(1925), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1925), - [aux_sym_cmd_identifier_token17] = ACTIONS(1925), - [aux_sym_cmd_identifier_token18] = ACTIONS(1925), - [aux_sym_cmd_identifier_token19] = ACTIONS(1925), - [aux_sym_cmd_identifier_token20] = ACTIONS(1925), - [aux_sym_cmd_identifier_token21] = ACTIONS(1925), - [aux_sym_cmd_identifier_token22] = ACTIONS(1925), - [aux_sym_cmd_identifier_token23] = ACTIONS(1925), - [aux_sym_cmd_identifier_token24] = ACTIONS(1925), - [aux_sym_cmd_identifier_token25] = ACTIONS(1925), - [aux_sym_cmd_identifier_token26] = ACTIONS(1925), - [aux_sym_cmd_identifier_token27] = ACTIONS(1925), - [aux_sym_cmd_identifier_token28] = ACTIONS(1925), - [aux_sym_cmd_identifier_token29] = ACTIONS(1925), - [aux_sym_cmd_identifier_token30] = ACTIONS(1925), - [aux_sym_cmd_identifier_token31] = ACTIONS(1925), - [aux_sym_cmd_identifier_token32] = ACTIONS(1925), - [aux_sym_cmd_identifier_token33] = ACTIONS(1925), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1925), - [aux_sym_cmd_identifier_token36] = ACTIONS(1925), - [aux_sym_cmd_identifier_token37] = ACTIONS(1925), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1925), - [aux_sym_cmd_identifier_token40] = ACTIONS(1925), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1925), - [aux_sym__val_number_decimal_token3] = ACTIONS(1925), - [aux_sym__val_number_decimal_token4] = ACTIONS(1925), - [aux_sym__val_number_token1] = ACTIONS(1925), - [aux_sym__val_number_token2] = ACTIONS(1925), - [aux_sym__val_number_token3] = ACTIONS(1925), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), - [sym__entry_separator] = ACTIONS(1927), + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_alias] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_let_DASHenv] = ACTIONS(2142), + [anon_sym_mut] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [aux_sym_cmd_identifier_token1] = ACTIONS(2142), + [aux_sym_cmd_identifier_token2] = ACTIONS(2142), + [aux_sym_cmd_identifier_token3] = ACTIONS(2142), + [aux_sym_cmd_identifier_token4] = ACTIONS(2142), + [aux_sym_cmd_identifier_token5] = ACTIONS(2142), + [aux_sym_cmd_identifier_token6] = ACTIONS(2142), + [aux_sym_cmd_identifier_token7] = ACTIONS(2142), + [aux_sym_cmd_identifier_token8] = ACTIONS(2142), + [aux_sym_cmd_identifier_token9] = ACTIONS(2142), + [aux_sym_cmd_identifier_token10] = ACTIONS(2142), + [aux_sym_cmd_identifier_token11] = ACTIONS(2142), + [aux_sym_cmd_identifier_token12] = ACTIONS(2142), + [aux_sym_cmd_identifier_token13] = ACTIONS(2142), + [aux_sym_cmd_identifier_token14] = ACTIONS(2142), + [aux_sym_cmd_identifier_token15] = ACTIONS(2142), + [aux_sym_cmd_identifier_token16] = ACTIONS(2142), + [aux_sym_cmd_identifier_token17] = ACTIONS(2142), + [aux_sym_cmd_identifier_token18] = ACTIONS(2142), + [aux_sym_cmd_identifier_token19] = ACTIONS(2142), + [aux_sym_cmd_identifier_token20] = ACTIONS(2142), + [aux_sym_cmd_identifier_token21] = ACTIONS(2142), + [aux_sym_cmd_identifier_token22] = ACTIONS(2142), + [aux_sym_cmd_identifier_token23] = ACTIONS(2142), + [aux_sym_cmd_identifier_token24] = ACTIONS(2142), + [aux_sym_cmd_identifier_token25] = ACTIONS(2142), + [aux_sym_cmd_identifier_token26] = ACTIONS(2142), + [aux_sym_cmd_identifier_token27] = ACTIONS(2142), + [aux_sym_cmd_identifier_token28] = ACTIONS(2142), + [aux_sym_cmd_identifier_token29] = ACTIONS(2142), + [aux_sym_cmd_identifier_token30] = ACTIONS(2142), + [aux_sym_cmd_identifier_token31] = ACTIONS(2142), + [aux_sym_cmd_identifier_token32] = ACTIONS(2142), + [aux_sym_cmd_identifier_token33] = ACTIONS(2142), + [aux_sym_cmd_identifier_token34] = ACTIONS(2142), + [aux_sym_cmd_identifier_token35] = ACTIONS(2142), + [aux_sym_cmd_identifier_token36] = ACTIONS(2142), + [aux_sym_cmd_identifier_token37] = ACTIONS(2142), + [aux_sym_cmd_identifier_token38] = ACTIONS(2142), + [aux_sym_cmd_identifier_token39] = ACTIONS(2142), + [aux_sym_cmd_identifier_token40] = ACTIONS(2142), + [anon_sym_def] = ACTIONS(2142), + [anon_sym_export_DASHenv] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2142), + [anon_sym_error] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_in2] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_make] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_source] = ACTIONS(2142), + [anon_sym_source_DASHenv] = ACTIONS(2142), + [anon_sym_register] = ACTIONS(2142), + [anon_sym_hide] = ACTIONS(2142), + [anon_sym_hide_DASHenv] = ACTIONS(2142), + [anon_sym_overlay] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2142), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2142), + [aux_sym__val_number_decimal_token1] = ACTIONS(2142), + [aux_sym__val_number_decimal_token2] = ACTIONS(2142), + [aux_sym__val_number_decimal_token3] = ACTIONS(2142), + [aux_sym__val_number_decimal_token4] = ACTIONS(2142), + [aux_sym__val_number_token1] = ACTIONS(2142), + [aux_sym__val_number_token2] = ACTIONS(2142), + [aux_sym__val_number_token3] = ACTIONS(2142), + [aux_sym__val_number_token4] = ACTIONS(2142), + [aux_sym__val_number_token5] = ACTIONS(2142), + [aux_sym__val_number_token6] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [sym__str_single_quotes] = ACTIONS(2142), + [sym__str_back_ticks] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2142), + [sym__entry_separator] = ACTIONS(2148), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1927), + [sym_raw_string_begin] = ACTIONS(2148), }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1933), - [aux_sym_cmd_identifier_token4] = ACTIONS(1933), - [aux_sym_cmd_identifier_token5] = ACTIONS(1933), - [aux_sym_cmd_identifier_token6] = ACTIONS(1933), - [aux_sym_cmd_identifier_token7] = ACTIONS(1933), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1933), - [aux_sym_cmd_identifier_token11] = ACTIONS(1933), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1933), - [aux_sym_cmd_identifier_token17] = ACTIONS(1933), - [aux_sym_cmd_identifier_token18] = ACTIONS(1933), - [aux_sym_cmd_identifier_token19] = ACTIONS(1933), - [aux_sym_cmd_identifier_token20] = ACTIONS(1933), - [aux_sym_cmd_identifier_token21] = ACTIONS(1933), - [aux_sym_cmd_identifier_token22] = ACTIONS(1933), - [aux_sym_cmd_identifier_token23] = ACTIONS(1933), - [aux_sym_cmd_identifier_token24] = ACTIONS(1933), - [aux_sym_cmd_identifier_token25] = ACTIONS(1933), - [aux_sym_cmd_identifier_token26] = ACTIONS(1933), - [aux_sym_cmd_identifier_token27] = ACTIONS(1933), - [aux_sym_cmd_identifier_token28] = ACTIONS(1933), - [aux_sym_cmd_identifier_token29] = ACTIONS(1933), - [aux_sym_cmd_identifier_token30] = ACTIONS(1933), - [aux_sym_cmd_identifier_token31] = ACTIONS(1933), - [aux_sym_cmd_identifier_token32] = ACTIONS(1933), - [aux_sym_cmd_identifier_token33] = ACTIONS(1933), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1933), - [aux_sym_cmd_identifier_token36] = ACTIONS(1933), - [aux_sym_cmd_identifier_token37] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [sym__entry_separator] = ACTIONS(1935), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(2150), + [anon_sym_alias] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_let_DASHenv] = ACTIONS(2150), + [anon_sym_mut] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [aux_sym_cmd_identifier_token1] = ACTIONS(2150), + [aux_sym_cmd_identifier_token2] = ACTIONS(2150), + [aux_sym_cmd_identifier_token3] = ACTIONS(2150), + [aux_sym_cmd_identifier_token4] = ACTIONS(2150), + [aux_sym_cmd_identifier_token5] = ACTIONS(2150), + [aux_sym_cmd_identifier_token6] = ACTIONS(2150), + [aux_sym_cmd_identifier_token7] = ACTIONS(2150), + [aux_sym_cmd_identifier_token8] = ACTIONS(2150), + [aux_sym_cmd_identifier_token9] = ACTIONS(2150), + [aux_sym_cmd_identifier_token10] = ACTIONS(2150), + [aux_sym_cmd_identifier_token11] = ACTIONS(2150), + [aux_sym_cmd_identifier_token12] = ACTIONS(2150), + [aux_sym_cmd_identifier_token13] = ACTIONS(2150), + [aux_sym_cmd_identifier_token14] = ACTIONS(2150), + [aux_sym_cmd_identifier_token15] = ACTIONS(2150), + [aux_sym_cmd_identifier_token16] = ACTIONS(2150), + [aux_sym_cmd_identifier_token17] = ACTIONS(2150), + [aux_sym_cmd_identifier_token18] = ACTIONS(2150), + [aux_sym_cmd_identifier_token19] = ACTIONS(2150), + [aux_sym_cmd_identifier_token20] = ACTIONS(2150), + [aux_sym_cmd_identifier_token21] = ACTIONS(2150), + [aux_sym_cmd_identifier_token22] = ACTIONS(2150), + [aux_sym_cmd_identifier_token23] = ACTIONS(2150), + [aux_sym_cmd_identifier_token24] = ACTIONS(2150), + [aux_sym_cmd_identifier_token25] = ACTIONS(2150), + [aux_sym_cmd_identifier_token26] = ACTIONS(2150), + [aux_sym_cmd_identifier_token27] = ACTIONS(2150), + [aux_sym_cmd_identifier_token28] = ACTIONS(2150), + [aux_sym_cmd_identifier_token29] = ACTIONS(2150), + [aux_sym_cmd_identifier_token30] = ACTIONS(2150), + [aux_sym_cmd_identifier_token31] = ACTIONS(2150), + [aux_sym_cmd_identifier_token32] = ACTIONS(2150), + [aux_sym_cmd_identifier_token33] = ACTIONS(2150), + [aux_sym_cmd_identifier_token34] = ACTIONS(2150), + [aux_sym_cmd_identifier_token35] = ACTIONS(2150), + [aux_sym_cmd_identifier_token36] = ACTIONS(2150), + [aux_sym_cmd_identifier_token37] = ACTIONS(2150), + [aux_sym_cmd_identifier_token38] = ACTIONS(2150), + [aux_sym_cmd_identifier_token39] = ACTIONS(2150), + [aux_sym_cmd_identifier_token40] = ACTIONS(2150), + [anon_sym_def] = ACTIONS(2150), + [anon_sym_export_DASHenv] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_module] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_DOLLAR] = ACTIONS(2150), + [anon_sym_error] = ACTIONS(2150), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_in2] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_make] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [anon_sym_catch] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_source] = ACTIONS(2150), + [anon_sym_source_DASHenv] = ACTIONS(2150), + [anon_sym_register] = ACTIONS(2150), + [anon_sym_hide] = ACTIONS(2150), + [anon_sym_hide_DASHenv] = ACTIONS(2150), + [anon_sym_overlay] = ACTIONS(2150), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2150), + [aux_sym__val_number_decimal_token1] = ACTIONS(2150), + [aux_sym__val_number_decimal_token2] = ACTIONS(2150), + [aux_sym__val_number_decimal_token3] = ACTIONS(2150), + [aux_sym__val_number_decimal_token4] = ACTIONS(2150), + [aux_sym__val_number_token1] = ACTIONS(2150), + [aux_sym__val_number_token2] = ACTIONS(2150), + [aux_sym__val_number_token3] = ACTIONS(2150), + [aux_sym__val_number_token4] = ACTIONS(2150), + [aux_sym__val_number_token5] = ACTIONS(2150), + [aux_sym__val_number_token6] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2150), + [sym__str_single_quotes] = ACTIONS(2150), + [sym__str_back_ticks] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2150), + [sym__entry_separator] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(2156), }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [aux_sym_cmd_identifier_token2] = ACTIONS(2371), - [aux_sym_cmd_identifier_token3] = ACTIONS(2371), - [aux_sym_cmd_identifier_token4] = ACTIONS(2371), - [aux_sym_cmd_identifier_token5] = ACTIONS(2371), - [aux_sym_cmd_identifier_token6] = ACTIONS(2371), - [aux_sym_cmd_identifier_token7] = ACTIONS(2371), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), - [aux_sym_cmd_identifier_token10] = ACTIONS(2371), - [aux_sym_cmd_identifier_token11] = ACTIONS(2371), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), - [aux_sym_cmd_identifier_token16] = ACTIONS(2371), - [aux_sym_cmd_identifier_token17] = ACTIONS(2371), - [aux_sym_cmd_identifier_token18] = ACTIONS(2371), - [aux_sym_cmd_identifier_token19] = ACTIONS(2371), - [aux_sym_cmd_identifier_token20] = ACTIONS(2371), - [aux_sym_cmd_identifier_token21] = ACTIONS(2371), - [aux_sym_cmd_identifier_token22] = ACTIONS(2371), - [aux_sym_cmd_identifier_token23] = ACTIONS(2371), - [aux_sym_cmd_identifier_token24] = ACTIONS(2371), - [aux_sym_cmd_identifier_token25] = ACTIONS(2371), - [aux_sym_cmd_identifier_token26] = ACTIONS(2371), - [aux_sym_cmd_identifier_token27] = ACTIONS(2371), - [aux_sym_cmd_identifier_token28] = ACTIONS(2371), - [aux_sym_cmd_identifier_token29] = ACTIONS(2371), - [aux_sym_cmd_identifier_token30] = ACTIONS(2371), - [aux_sym_cmd_identifier_token31] = ACTIONS(2371), - [aux_sym_cmd_identifier_token32] = ACTIONS(2371), - [aux_sym_cmd_identifier_token33] = ACTIONS(2371), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), - [aux_sym_cmd_identifier_token35] = ACTIONS(2371), - [aux_sym_cmd_identifier_token36] = ACTIONS(2371), - [aux_sym_cmd_identifier_token37] = ACTIONS(2371), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in2] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2371), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2371), - [aux_sym__val_number_token2] = ACTIONS(2371), - [aux_sym__val_number_token3] = ACTIONS(2371), - [aux_sym__val_number_token4] = ACTIONS(2371), - [aux_sym__val_number_token5] = ACTIONS(2371), - [aux_sym__val_number_token6] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), - [sym__entry_separator] = ACTIONS(2373), + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_alias] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_let_DASHenv] = ACTIONS(2158), + [anon_sym_mut] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [aux_sym_cmd_identifier_token1] = ACTIONS(2158), + [aux_sym_cmd_identifier_token2] = ACTIONS(2158), + [aux_sym_cmd_identifier_token3] = ACTIONS(2158), + [aux_sym_cmd_identifier_token4] = ACTIONS(2158), + [aux_sym_cmd_identifier_token5] = ACTIONS(2158), + [aux_sym_cmd_identifier_token6] = ACTIONS(2158), + [aux_sym_cmd_identifier_token7] = ACTIONS(2158), + [aux_sym_cmd_identifier_token8] = ACTIONS(2158), + [aux_sym_cmd_identifier_token9] = ACTIONS(2158), + [aux_sym_cmd_identifier_token10] = ACTIONS(2158), + [aux_sym_cmd_identifier_token11] = ACTIONS(2158), + [aux_sym_cmd_identifier_token12] = ACTIONS(2158), + [aux_sym_cmd_identifier_token13] = ACTIONS(2158), + [aux_sym_cmd_identifier_token14] = ACTIONS(2158), + [aux_sym_cmd_identifier_token15] = ACTIONS(2158), + [aux_sym_cmd_identifier_token16] = ACTIONS(2158), + [aux_sym_cmd_identifier_token17] = ACTIONS(2158), + [aux_sym_cmd_identifier_token18] = ACTIONS(2158), + [aux_sym_cmd_identifier_token19] = ACTIONS(2158), + [aux_sym_cmd_identifier_token20] = ACTIONS(2158), + [aux_sym_cmd_identifier_token21] = ACTIONS(2158), + [aux_sym_cmd_identifier_token22] = ACTIONS(2158), + [aux_sym_cmd_identifier_token23] = ACTIONS(2158), + [aux_sym_cmd_identifier_token24] = ACTIONS(2158), + [aux_sym_cmd_identifier_token25] = ACTIONS(2158), + [aux_sym_cmd_identifier_token26] = ACTIONS(2158), + [aux_sym_cmd_identifier_token27] = ACTIONS(2158), + [aux_sym_cmd_identifier_token28] = ACTIONS(2158), + [aux_sym_cmd_identifier_token29] = ACTIONS(2158), + [aux_sym_cmd_identifier_token30] = ACTIONS(2158), + [aux_sym_cmd_identifier_token31] = ACTIONS(2158), + [aux_sym_cmd_identifier_token32] = ACTIONS(2158), + [aux_sym_cmd_identifier_token33] = ACTIONS(2158), + [aux_sym_cmd_identifier_token34] = ACTIONS(2158), + [aux_sym_cmd_identifier_token35] = ACTIONS(2158), + [aux_sym_cmd_identifier_token36] = ACTIONS(2158), + [aux_sym_cmd_identifier_token37] = ACTIONS(2158), + [aux_sym_cmd_identifier_token38] = ACTIONS(2158), + [aux_sym_cmd_identifier_token39] = ACTIONS(2158), + [aux_sym_cmd_identifier_token40] = ACTIONS(2158), + [anon_sym_def] = ACTIONS(2158), + [anon_sym_export_DASHenv] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_error] = ACTIONS(2158), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_in2] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_make] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_catch] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_source] = ACTIONS(2158), + [anon_sym_source_DASHenv] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_hide] = ACTIONS(2158), + [anon_sym_hide_DASHenv] = ACTIONS(2158), + [anon_sym_overlay] = ACTIONS(2158), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), + [aux_sym__val_number_decimal_token1] = ACTIONS(2158), + [aux_sym__val_number_decimal_token2] = ACTIONS(2158), + [aux_sym__val_number_decimal_token3] = ACTIONS(2158), + [aux_sym__val_number_decimal_token4] = ACTIONS(2158), + [aux_sym__val_number_token1] = ACTIONS(2158), + [aux_sym__val_number_token2] = ACTIONS(2158), + [aux_sym__val_number_token3] = ACTIONS(2158), + [aux_sym__val_number_token4] = ACTIONS(2158), + [aux_sym__val_number_token5] = ACTIONS(2158), + [aux_sym__val_number_token6] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym__str_single_quotes] = ACTIONS(2158), + [sym__str_back_ticks] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), + [sym__entry_separator] = ACTIONS(2164), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2373), + [sym_raw_string_begin] = ACTIONS(2164), }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2375), - [anon_sym_alias] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_let_DASHenv] = ACTIONS(2375), - [anon_sym_mut] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [aux_sym_cmd_identifier_token1] = ACTIONS(2375), - [aux_sym_cmd_identifier_token2] = ACTIONS(2375), - [aux_sym_cmd_identifier_token3] = ACTIONS(2375), - [aux_sym_cmd_identifier_token4] = ACTIONS(2375), - [aux_sym_cmd_identifier_token5] = ACTIONS(2375), - [aux_sym_cmd_identifier_token6] = ACTIONS(2375), - [aux_sym_cmd_identifier_token7] = ACTIONS(2375), - [aux_sym_cmd_identifier_token8] = ACTIONS(2375), - [aux_sym_cmd_identifier_token9] = ACTIONS(2375), - [aux_sym_cmd_identifier_token10] = ACTIONS(2375), - [aux_sym_cmd_identifier_token11] = ACTIONS(2375), - [aux_sym_cmd_identifier_token12] = ACTIONS(2375), - [aux_sym_cmd_identifier_token13] = ACTIONS(2375), - [aux_sym_cmd_identifier_token14] = ACTIONS(2375), - [aux_sym_cmd_identifier_token15] = ACTIONS(2375), - [aux_sym_cmd_identifier_token16] = ACTIONS(2375), - [aux_sym_cmd_identifier_token17] = ACTIONS(2375), - [aux_sym_cmd_identifier_token18] = ACTIONS(2375), - [aux_sym_cmd_identifier_token19] = ACTIONS(2375), - [aux_sym_cmd_identifier_token20] = ACTIONS(2375), - [aux_sym_cmd_identifier_token21] = ACTIONS(2375), - [aux_sym_cmd_identifier_token22] = ACTIONS(2375), - [aux_sym_cmd_identifier_token23] = ACTIONS(2375), - [aux_sym_cmd_identifier_token24] = ACTIONS(2375), - [aux_sym_cmd_identifier_token25] = ACTIONS(2375), - [aux_sym_cmd_identifier_token26] = ACTIONS(2375), - [aux_sym_cmd_identifier_token27] = ACTIONS(2375), - [aux_sym_cmd_identifier_token28] = ACTIONS(2375), - [aux_sym_cmd_identifier_token29] = ACTIONS(2375), - [aux_sym_cmd_identifier_token30] = ACTIONS(2375), - [aux_sym_cmd_identifier_token31] = ACTIONS(2375), - [aux_sym_cmd_identifier_token32] = ACTIONS(2375), - [aux_sym_cmd_identifier_token33] = ACTIONS(2375), - [aux_sym_cmd_identifier_token34] = ACTIONS(2375), - [aux_sym_cmd_identifier_token35] = ACTIONS(2375), - [aux_sym_cmd_identifier_token36] = ACTIONS(2375), - [aux_sym_cmd_identifier_token37] = ACTIONS(2375), - [aux_sym_cmd_identifier_token38] = ACTIONS(2375), - [aux_sym_cmd_identifier_token39] = ACTIONS(2375), - [aux_sym_cmd_identifier_token40] = ACTIONS(2375), - [anon_sym_def] = ACTIONS(2375), - [anon_sym_export_DASHenv] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_error] = ACTIONS(2375), - [anon_sym_DASH2] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_in2] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_make] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_catch] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_source] = ACTIONS(2375), - [anon_sym_source_DASHenv] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_hide_DASHenv] = ACTIONS(2375), - [anon_sym_overlay] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_PLUS2] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), - [aux_sym__val_number_decimal_token1] = ACTIONS(2375), - [aux_sym__val_number_decimal_token2] = ACTIONS(2375), - [aux_sym__val_number_decimal_token3] = ACTIONS(2375), - [aux_sym__val_number_decimal_token4] = ACTIONS(2375), - [aux_sym__val_number_token1] = ACTIONS(2375), - [aux_sym__val_number_token2] = ACTIONS(2375), - [aux_sym__val_number_token3] = ACTIONS(2375), - [aux_sym__val_number_token4] = ACTIONS(2375), - [aux_sym__val_number_token5] = ACTIONS(2375), - [aux_sym__val_number_token6] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2375), - [sym__str_single_quotes] = ACTIONS(2375), - [sym__str_back_ticks] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), - [sym__entry_separator] = ACTIONS(2377), + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2417), + [aux_sym_cmd_identifier_token3] = ACTIONS(2417), + [aux_sym_cmd_identifier_token4] = ACTIONS(2417), + [aux_sym_cmd_identifier_token5] = ACTIONS(2417), + [aux_sym_cmd_identifier_token6] = ACTIONS(2417), + [aux_sym_cmd_identifier_token7] = ACTIONS(2417), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2417), + [aux_sym_cmd_identifier_token11] = ACTIONS(2417), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2417), + [aux_sym_cmd_identifier_token17] = ACTIONS(2417), + [aux_sym_cmd_identifier_token18] = ACTIONS(2417), + [aux_sym_cmd_identifier_token19] = ACTIONS(2417), + [aux_sym_cmd_identifier_token20] = ACTIONS(2417), + [aux_sym_cmd_identifier_token21] = ACTIONS(2417), + [aux_sym_cmd_identifier_token22] = ACTIONS(2417), + [aux_sym_cmd_identifier_token23] = ACTIONS(2417), + [aux_sym_cmd_identifier_token24] = ACTIONS(2417), + [aux_sym_cmd_identifier_token25] = ACTIONS(2417), + [aux_sym_cmd_identifier_token26] = ACTIONS(2417), + [aux_sym_cmd_identifier_token27] = ACTIONS(2417), + [aux_sym_cmd_identifier_token28] = ACTIONS(2417), + [aux_sym_cmd_identifier_token29] = ACTIONS(2417), + [aux_sym_cmd_identifier_token30] = ACTIONS(2417), + [aux_sym_cmd_identifier_token31] = ACTIONS(2417), + [aux_sym_cmd_identifier_token32] = ACTIONS(2417), + [aux_sym_cmd_identifier_token33] = ACTIONS(2417), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2417), + [aux_sym_cmd_identifier_token36] = ACTIONS(2417), + [aux_sym_cmd_identifier_token37] = ACTIONS(2417), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2417), + [aux_sym_cmd_identifier_token40] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2417), + [aux_sym__val_number_decimal_token3] = ACTIONS(2417), + [aux_sym__val_number_decimal_token4] = ACTIONS(2417), + [aux_sym__val_number_token1] = ACTIONS(2417), + [aux_sym__val_number_token2] = ACTIONS(2417), + [aux_sym__val_number_token3] = ACTIONS(2417), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym__str_single_quotes] = ACTIONS(2417), + [sym__str_back_ticks] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [sym__entry_separator] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2377), + [sym_raw_string_begin] = ACTIONS(2419), }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2421), + [aux_sym_cmd_identifier_token3] = ACTIONS(2421), + [aux_sym_cmd_identifier_token4] = ACTIONS(2421), + [aux_sym_cmd_identifier_token5] = ACTIONS(2421), + [aux_sym_cmd_identifier_token6] = ACTIONS(2421), + [aux_sym_cmd_identifier_token7] = ACTIONS(2421), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2421), + [aux_sym_cmd_identifier_token11] = ACTIONS(2421), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2421), + [aux_sym_cmd_identifier_token17] = ACTIONS(2421), + [aux_sym_cmd_identifier_token18] = ACTIONS(2421), + [aux_sym_cmd_identifier_token19] = ACTIONS(2421), + [aux_sym_cmd_identifier_token20] = ACTIONS(2421), + [aux_sym_cmd_identifier_token21] = ACTIONS(2421), + [aux_sym_cmd_identifier_token22] = ACTIONS(2421), + [aux_sym_cmd_identifier_token23] = ACTIONS(2421), + [aux_sym_cmd_identifier_token24] = ACTIONS(2421), + [aux_sym_cmd_identifier_token25] = ACTIONS(2421), + [aux_sym_cmd_identifier_token26] = ACTIONS(2421), + [aux_sym_cmd_identifier_token27] = ACTIONS(2421), + [aux_sym_cmd_identifier_token28] = ACTIONS(2421), + [aux_sym_cmd_identifier_token29] = ACTIONS(2421), + [aux_sym_cmd_identifier_token30] = ACTIONS(2421), + [aux_sym_cmd_identifier_token31] = ACTIONS(2421), + [aux_sym_cmd_identifier_token32] = ACTIONS(2421), + [aux_sym_cmd_identifier_token33] = ACTIONS(2421), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2421), + [aux_sym_cmd_identifier_token36] = ACTIONS(2421), + [aux_sym_cmd_identifier_token37] = ACTIONS(2421), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2421), + [aux_sym_cmd_identifier_token40] = ACTIONS(2421), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2421), + [aux_sym__val_number_decimal_token3] = ACTIONS(2421), + [aux_sym__val_number_decimal_token4] = ACTIONS(2421), + [aux_sym__val_number_token1] = ACTIONS(2421), + [aux_sym__val_number_token2] = ACTIONS(2421), + [aux_sym__val_number_token3] = ACTIONS(2421), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym__str_single_quotes] = ACTIONS(2421), + [sym__str_back_ticks] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [sym__entry_separator] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2423), + }, + [650] = { + [sym_comment] = STATE(650), + [aux_sym__multiple_types_repeat1] = STATE(587), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [aux_sym_cmd_identifier_token37] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in2] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [aux_sym__val_number_token4] = ACTIONS(2281), + [aux_sym__val_number_token5] = ACTIONS(2281), + [aux_sym__val_number_token6] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2287), + }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [aux_sym_cmd_identifier_token6] = ACTIONS(2425), + [aux_sym_cmd_identifier_token7] = ACTIONS(2425), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2425), + [aux_sym_cmd_identifier_token11] = ACTIONS(2425), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2425), + [aux_sym_cmd_identifier_token17] = ACTIONS(2425), + [aux_sym_cmd_identifier_token18] = ACTIONS(2425), + [aux_sym_cmd_identifier_token19] = ACTIONS(2425), + [aux_sym_cmd_identifier_token20] = ACTIONS(2425), + [aux_sym_cmd_identifier_token21] = ACTIONS(2425), + [aux_sym_cmd_identifier_token22] = ACTIONS(2425), + [aux_sym_cmd_identifier_token23] = ACTIONS(2425), + [aux_sym_cmd_identifier_token24] = ACTIONS(2425), + [aux_sym_cmd_identifier_token25] = ACTIONS(2425), + [aux_sym_cmd_identifier_token26] = ACTIONS(2425), + [aux_sym_cmd_identifier_token27] = ACTIONS(2425), + [aux_sym_cmd_identifier_token28] = ACTIONS(2425), + [aux_sym_cmd_identifier_token29] = ACTIONS(2425), + [aux_sym_cmd_identifier_token30] = ACTIONS(2425), + [aux_sym_cmd_identifier_token31] = ACTIONS(2425), + [aux_sym_cmd_identifier_token32] = ACTIONS(2425), + [aux_sym_cmd_identifier_token33] = ACTIONS(2425), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2425), + [aux_sym_cmd_identifier_token36] = ACTIONS(2425), + [aux_sym_cmd_identifier_token37] = ACTIONS(2425), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2425), + [aux_sym_cmd_identifier_token40] = ACTIONS(2425), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2425), + [aux_sym__val_number_decimal_token3] = ACTIONS(2425), + [aux_sym__val_number_decimal_token4] = ACTIONS(2425), + [aux_sym__val_number_token1] = ACTIONS(2425), + [aux_sym__val_number_token2] = ACTIONS(2425), + [aux_sym__val_number_token3] = ACTIONS(2425), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym__str_single_quotes] = ACTIONS(2425), + [sym__str_back_ticks] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), + [sym__entry_separator] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2427), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2429), + [aux_sym_cmd_identifier_token4] = ACTIONS(2429), + [aux_sym_cmd_identifier_token5] = ACTIONS(2429), + [aux_sym_cmd_identifier_token6] = ACTIONS(2429), + [aux_sym_cmd_identifier_token7] = ACTIONS(2429), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2429), + [aux_sym_cmd_identifier_token11] = ACTIONS(2429), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2429), + [aux_sym_cmd_identifier_token17] = ACTIONS(2429), + [aux_sym_cmd_identifier_token18] = ACTIONS(2429), + [aux_sym_cmd_identifier_token19] = ACTIONS(2429), + [aux_sym_cmd_identifier_token20] = ACTIONS(2429), + [aux_sym_cmd_identifier_token21] = ACTIONS(2429), + [aux_sym_cmd_identifier_token22] = ACTIONS(2429), + [aux_sym_cmd_identifier_token23] = ACTIONS(2429), + [aux_sym_cmd_identifier_token24] = ACTIONS(2429), + [aux_sym_cmd_identifier_token25] = ACTIONS(2429), + [aux_sym_cmd_identifier_token26] = ACTIONS(2429), + [aux_sym_cmd_identifier_token27] = ACTIONS(2429), + [aux_sym_cmd_identifier_token28] = ACTIONS(2429), + [aux_sym_cmd_identifier_token29] = ACTIONS(2429), + [aux_sym_cmd_identifier_token30] = ACTIONS(2429), + [aux_sym_cmd_identifier_token31] = ACTIONS(2429), + [aux_sym_cmd_identifier_token32] = ACTIONS(2429), + [aux_sym_cmd_identifier_token33] = ACTIONS(2429), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2429), + [aux_sym_cmd_identifier_token36] = ACTIONS(2429), + [aux_sym_cmd_identifier_token37] = ACTIONS(2429), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2429), + [aux_sym_cmd_identifier_token40] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2429), + [aux_sym__val_number_decimal_token3] = ACTIONS(2429), + [aux_sym__val_number_decimal_token4] = ACTIONS(2429), + [aux_sym__val_number_token1] = ACTIONS(2429), + [aux_sym__val_number_token2] = ACTIONS(2429), + [aux_sym__val_number_token3] = ACTIONS(2429), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2429), + [sym__str_single_quotes] = ACTIONS(2429), + [sym__str_back_ticks] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2431), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2433), + [aux_sym_cmd_identifier_token3] = ACTIONS(2433), + [aux_sym_cmd_identifier_token4] = ACTIONS(2433), + [aux_sym_cmd_identifier_token5] = ACTIONS(2433), + [aux_sym_cmd_identifier_token6] = ACTIONS(2433), + [aux_sym_cmd_identifier_token7] = ACTIONS(2433), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2433), + [aux_sym_cmd_identifier_token11] = ACTIONS(2433), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2433), + [aux_sym_cmd_identifier_token17] = ACTIONS(2433), + [aux_sym_cmd_identifier_token18] = ACTIONS(2433), + [aux_sym_cmd_identifier_token19] = ACTIONS(2433), + [aux_sym_cmd_identifier_token20] = ACTIONS(2433), + [aux_sym_cmd_identifier_token21] = ACTIONS(2433), + [aux_sym_cmd_identifier_token22] = ACTIONS(2433), + [aux_sym_cmd_identifier_token23] = ACTIONS(2433), + [aux_sym_cmd_identifier_token24] = ACTIONS(2433), + [aux_sym_cmd_identifier_token25] = ACTIONS(2433), + [aux_sym_cmd_identifier_token26] = ACTIONS(2433), + [aux_sym_cmd_identifier_token27] = ACTIONS(2433), + [aux_sym_cmd_identifier_token28] = ACTIONS(2433), + [aux_sym_cmd_identifier_token29] = ACTIONS(2433), + [aux_sym_cmd_identifier_token30] = ACTIONS(2433), + [aux_sym_cmd_identifier_token31] = ACTIONS(2433), + [aux_sym_cmd_identifier_token32] = ACTIONS(2433), + [aux_sym_cmd_identifier_token33] = ACTIONS(2433), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2433), + [aux_sym_cmd_identifier_token36] = ACTIONS(2433), + [aux_sym_cmd_identifier_token37] = ACTIONS(2433), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2433), + [aux_sym_cmd_identifier_token40] = ACTIONS(2433), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2433), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2433), + [aux_sym__val_number_decimal_token3] = ACTIONS(2433), + [aux_sym__val_number_decimal_token4] = ACTIONS(2433), + [aux_sym__val_number_token1] = ACTIONS(2433), + [aux_sym__val_number_token2] = ACTIONS(2433), + [aux_sym__val_number_token3] = ACTIONS(2433), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2433), + [sym__str_single_quotes] = ACTIONS(2433), + [sym__str_back_ticks] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), + [sym__entry_separator] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2435), + }, + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), + [aux_sym_cmd_identifier_token2] = ACTIONS(2437), + [aux_sym_cmd_identifier_token3] = ACTIONS(2437), + [aux_sym_cmd_identifier_token4] = ACTIONS(2437), + [aux_sym_cmd_identifier_token5] = ACTIONS(2437), + [aux_sym_cmd_identifier_token6] = ACTIONS(2437), + [aux_sym_cmd_identifier_token7] = ACTIONS(2437), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2437), + [aux_sym_cmd_identifier_token11] = ACTIONS(2437), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), + [aux_sym_cmd_identifier_token16] = ACTIONS(2437), + [aux_sym_cmd_identifier_token17] = ACTIONS(2437), + [aux_sym_cmd_identifier_token18] = ACTIONS(2437), + [aux_sym_cmd_identifier_token19] = ACTIONS(2437), + [aux_sym_cmd_identifier_token20] = ACTIONS(2437), + [aux_sym_cmd_identifier_token21] = ACTIONS(2437), + [aux_sym_cmd_identifier_token22] = ACTIONS(2437), + [aux_sym_cmd_identifier_token23] = ACTIONS(2437), + [aux_sym_cmd_identifier_token24] = ACTIONS(2437), + [aux_sym_cmd_identifier_token25] = ACTIONS(2437), + [aux_sym_cmd_identifier_token26] = ACTIONS(2437), + [aux_sym_cmd_identifier_token27] = ACTIONS(2437), + [aux_sym_cmd_identifier_token28] = ACTIONS(2437), + [aux_sym_cmd_identifier_token29] = ACTIONS(2437), + [aux_sym_cmd_identifier_token30] = ACTIONS(2437), + [aux_sym_cmd_identifier_token31] = ACTIONS(2437), + [aux_sym_cmd_identifier_token32] = ACTIONS(2437), + [aux_sym_cmd_identifier_token33] = ACTIONS(2437), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2437), + [aux_sym_cmd_identifier_token36] = ACTIONS(2437), + [aux_sym_cmd_identifier_token37] = ACTIONS(2437), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), + [aux_sym_cmd_identifier_token39] = ACTIONS(2437), + [aux_sym_cmd_identifier_token40] = ACTIONS(2437), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_DOLLAR] = ACTIONS(2437), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), + [aux_sym__val_number_decimal_token2] = ACTIONS(2437), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), + [aux_sym__val_number_token1] = ACTIONS(2437), + [aux_sym__val_number_token2] = ACTIONS(2437), + [aux_sym__val_number_token3] = ACTIONS(2437), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2437), + [sym__str_single_quotes] = ACTIONS(2437), + [sym__str_back_ticks] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), + [sym__entry_separator] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2439), + }, + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1937), + [aux_sym_cmd_identifier_token3] = ACTIONS(1937), + [aux_sym_cmd_identifier_token4] = ACTIONS(1937), + [aux_sym_cmd_identifier_token5] = ACTIONS(1937), + [aux_sym_cmd_identifier_token6] = ACTIONS(1937), + [aux_sym_cmd_identifier_token7] = ACTIONS(1937), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1937), + [aux_sym_cmd_identifier_token11] = ACTIONS(1937), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1937), + [aux_sym_cmd_identifier_token17] = ACTIONS(1937), + [aux_sym_cmd_identifier_token18] = ACTIONS(1937), + [aux_sym_cmd_identifier_token19] = ACTIONS(1937), + [aux_sym_cmd_identifier_token20] = ACTIONS(1937), + [aux_sym_cmd_identifier_token21] = ACTIONS(1937), + [aux_sym_cmd_identifier_token22] = ACTIONS(1937), + [aux_sym_cmd_identifier_token23] = ACTIONS(1937), [aux_sym_cmd_identifier_token24] = ACTIONS(1937), [aux_sym_cmd_identifier_token25] = ACTIONS(1937), [aux_sym_cmd_identifier_token26] = ACTIONS(1937), @@ -152151,608 +150375,1308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1939), }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2379), - [aux_sym_cmd_identifier_token3] = ACTIONS(2379), - [aux_sym_cmd_identifier_token4] = ACTIONS(2379), - [aux_sym_cmd_identifier_token5] = ACTIONS(2379), - [aux_sym_cmd_identifier_token6] = ACTIONS(2379), - [aux_sym_cmd_identifier_token7] = ACTIONS(2379), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2379), - [aux_sym_cmd_identifier_token11] = ACTIONS(2379), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2379), - [aux_sym_cmd_identifier_token17] = ACTIONS(2379), - [aux_sym_cmd_identifier_token18] = ACTIONS(2379), - [aux_sym_cmd_identifier_token19] = ACTIONS(2379), - [aux_sym_cmd_identifier_token20] = ACTIONS(2379), - [aux_sym_cmd_identifier_token21] = ACTIONS(2379), - [aux_sym_cmd_identifier_token22] = ACTIONS(2379), - [aux_sym_cmd_identifier_token23] = ACTIONS(2379), - [aux_sym_cmd_identifier_token24] = ACTIONS(2379), - [aux_sym_cmd_identifier_token25] = ACTIONS(2379), - [aux_sym_cmd_identifier_token26] = ACTIONS(2379), - [aux_sym_cmd_identifier_token27] = ACTIONS(2379), - [aux_sym_cmd_identifier_token28] = ACTIONS(2379), - [aux_sym_cmd_identifier_token29] = ACTIONS(2379), - [aux_sym_cmd_identifier_token30] = ACTIONS(2379), - [aux_sym_cmd_identifier_token31] = ACTIONS(2379), - [aux_sym_cmd_identifier_token32] = ACTIONS(2379), - [aux_sym_cmd_identifier_token33] = ACTIONS(2379), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2379), - [aux_sym_cmd_identifier_token36] = ACTIONS(2379), - [aux_sym_cmd_identifier_token37] = ACTIONS(2379), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2379), - [aux_sym_cmd_identifier_token40] = ACTIONS(2379), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_DASH2] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in2] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_PLUS2] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2379), - [aux_sym__val_number_decimal_token3] = ACTIONS(2379), - [aux_sym__val_number_decimal_token4] = ACTIONS(2379), - [aux_sym__val_number_token1] = ACTIONS(2379), - [aux_sym__val_number_token2] = ACTIONS(2379), - [aux_sym__val_number_token3] = ACTIONS(2379), - [aux_sym__val_number_token4] = ACTIONS(2379), - [aux_sym__val_number_token5] = ACTIONS(2379), - [aux_sym__val_number_token6] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2379), - [sym__str_single_quotes] = ACTIONS(2379), - [sym__str_back_ticks] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), - [sym__entry_separator] = ACTIONS(2381), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [aux_sym_cmd_identifier_token2] = ACTIONS(2441), + [aux_sym_cmd_identifier_token3] = ACTIONS(2441), + [aux_sym_cmd_identifier_token4] = ACTIONS(2441), + [aux_sym_cmd_identifier_token5] = ACTIONS(2441), + [aux_sym_cmd_identifier_token6] = ACTIONS(2441), + [aux_sym_cmd_identifier_token7] = ACTIONS(2441), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2441), + [aux_sym_cmd_identifier_token11] = ACTIONS(2441), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), + [aux_sym_cmd_identifier_token16] = ACTIONS(2441), + [aux_sym_cmd_identifier_token17] = ACTIONS(2441), + [aux_sym_cmd_identifier_token18] = ACTIONS(2441), + [aux_sym_cmd_identifier_token19] = ACTIONS(2441), + [aux_sym_cmd_identifier_token20] = ACTIONS(2441), + [aux_sym_cmd_identifier_token21] = ACTIONS(2441), + [aux_sym_cmd_identifier_token22] = ACTIONS(2441), + [aux_sym_cmd_identifier_token23] = ACTIONS(2441), + [aux_sym_cmd_identifier_token24] = ACTIONS(2441), + [aux_sym_cmd_identifier_token25] = ACTIONS(2441), + [aux_sym_cmd_identifier_token26] = ACTIONS(2441), + [aux_sym_cmd_identifier_token27] = ACTIONS(2441), + [aux_sym_cmd_identifier_token28] = ACTIONS(2441), + [aux_sym_cmd_identifier_token29] = ACTIONS(2441), + [aux_sym_cmd_identifier_token30] = ACTIONS(2441), + [aux_sym_cmd_identifier_token31] = ACTIONS(2441), + [aux_sym_cmd_identifier_token32] = ACTIONS(2441), + [aux_sym_cmd_identifier_token33] = ACTIONS(2441), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2441), + [aux_sym_cmd_identifier_token36] = ACTIONS(2441), + [aux_sym_cmd_identifier_token37] = ACTIONS(2441), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), + [aux_sym_cmd_identifier_token39] = ACTIONS(2441), + [aux_sym_cmd_identifier_token40] = ACTIONS(2441), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_DOLLAR] = ACTIONS(2441), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2441), + [aux_sym__val_number_decimal_token4] = ACTIONS(2441), + [aux_sym__val_number_token1] = ACTIONS(2441), + [aux_sym__val_number_token2] = ACTIONS(2441), + [aux_sym__val_number_token3] = ACTIONS(2441), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2441), + [sym__str_single_quotes] = ACTIONS(2441), + [sym__str_back_ticks] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), + [sym__entry_separator] = ACTIONS(2443), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2381), + [sym_raw_string_begin] = ACTIONS(2443), }, - [621] = { - [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2383), - [aux_sym_cmd_identifier_token3] = ACTIONS(2383), - [aux_sym_cmd_identifier_token4] = ACTIONS(2383), - [aux_sym_cmd_identifier_token5] = ACTIONS(2383), - [aux_sym_cmd_identifier_token6] = ACTIONS(2383), - [aux_sym_cmd_identifier_token7] = ACTIONS(2383), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2383), - [aux_sym_cmd_identifier_token11] = ACTIONS(2383), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2383), - [aux_sym_cmd_identifier_token17] = ACTIONS(2383), - [aux_sym_cmd_identifier_token18] = ACTIONS(2383), - [aux_sym_cmd_identifier_token19] = ACTIONS(2383), - [aux_sym_cmd_identifier_token20] = ACTIONS(2383), - [aux_sym_cmd_identifier_token21] = ACTIONS(2383), - [aux_sym_cmd_identifier_token22] = ACTIONS(2383), - [aux_sym_cmd_identifier_token23] = ACTIONS(2383), - [aux_sym_cmd_identifier_token24] = ACTIONS(2383), - [aux_sym_cmd_identifier_token25] = ACTIONS(2383), - [aux_sym_cmd_identifier_token26] = ACTIONS(2383), - [aux_sym_cmd_identifier_token27] = ACTIONS(2383), - [aux_sym_cmd_identifier_token28] = ACTIONS(2383), - [aux_sym_cmd_identifier_token29] = ACTIONS(2383), - [aux_sym_cmd_identifier_token30] = ACTIONS(2383), - [aux_sym_cmd_identifier_token31] = ACTIONS(2383), - [aux_sym_cmd_identifier_token32] = ACTIONS(2383), - [aux_sym_cmd_identifier_token33] = ACTIONS(2383), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2383), - [aux_sym_cmd_identifier_token36] = ACTIONS(2383), - [aux_sym_cmd_identifier_token37] = ACTIONS(2383), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2383), - [aux_sym_cmd_identifier_token40] = ACTIONS(2383), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2383), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in2] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_decimal_token4] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), - [sym__entry_separator] = ACTIONS(2385), + [657] = { + [sym_comment] = STATE(657), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), + [aux_sym_cmd_identifier_token2] = ACTIONS(2445), + [aux_sym_cmd_identifier_token3] = ACTIONS(2445), + [aux_sym_cmd_identifier_token4] = ACTIONS(2445), + [aux_sym_cmd_identifier_token5] = ACTIONS(2445), + [aux_sym_cmd_identifier_token6] = ACTIONS(2445), + [aux_sym_cmd_identifier_token7] = ACTIONS(2445), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), + [aux_sym_cmd_identifier_token10] = ACTIONS(2445), + [aux_sym_cmd_identifier_token11] = ACTIONS(2445), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), + [aux_sym_cmd_identifier_token16] = ACTIONS(2445), + [aux_sym_cmd_identifier_token17] = ACTIONS(2445), + [aux_sym_cmd_identifier_token18] = ACTIONS(2445), + [aux_sym_cmd_identifier_token19] = ACTIONS(2445), + [aux_sym_cmd_identifier_token20] = ACTIONS(2445), + [aux_sym_cmd_identifier_token21] = ACTIONS(2445), + [aux_sym_cmd_identifier_token22] = ACTIONS(2445), + [aux_sym_cmd_identifier_token23] = ACTIONS(2445), + [aux_sym_cmd_identifier_token24] = ACTIONS(2445), + [aux_sym_cmd_identifier_token25] = ACTIONS(2445), + [aux_sym_cmd_identifier_token26] = ACTIONS(2445), + [aux_sym_cmd_identifier_token27] = ACTIONS(2445), + [aux_sym_cmd_identifier_token28] = ACTIONS(2445), + [aux_sym_cmd_identifier_token29] = ACTIONS(2445), + [aux_sym_cmd_identifier_token30] = ACTIONS(2445), + [aux_sym_cmd_identifier_token31] = ACTIONS(2445), + [aux_sym_cmd_identifier_token32] = ACTIONS(2445), + [aux_sym_cmd_identifier_token33] = ACTIONS(2445), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), + [aux_sym_cmd_identifier_token35] = ACTIONS(2445), + [aux_sym_cmd_identifier_token36] = ACTIONS(2445), + [aux_sym_cmd_identifier_token37] = ACTIONS(2445), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token39] = ACTIONS(2445), + [aux_sym_cmd_identifier_token40] = ACTIONS(2445), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_DOLLAR] = ACTIONS(2445), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_token2] = ACTIONS(2445), + [aux_sym__val_number_decimal_token3] = ACTIONS(2445), + [aux_sym__val_number_decimal_token4] = ACTIONS(2445), + [aux_sym__val_number_token1] = ACTIONS(2445), + [aux_sym__val_number_token2] = ACTIONS(2445), + [aux_sym__val_number_token3] = ACTIONS(2445), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2445), + [sym__str_single_quotes] = ACTIONS(2445), + [sym__str_back_ticks] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), + [sym__entry_separator] = ACTIONS(2447), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2385), + [sym_raw_string_begin] = ACTIONS(2447), }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(1687), - [anon_sym_alias] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_let_DASHenv] = ACTIONS(1687), - [anon_sym_mut] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1687), - [aux_sym_cmd_identifier_token2] = ACTIONS(1687), - [aux_sym_cmd_identifier_token3] = ACTIONS(1687), - [aux_sym_cmd_identifier_token4] = ACTIONS(1687), - [aux_sym_cmd_identifier_token5] = ACTIONS(1687), - [aux_sym_cmd_identifier_token6] = ACTIONS(1687), - [aux_sym_cmd_identifier_token7] = ACTIONS(1687), - [aux_sym_cmd_identifier_token8] = ACTIONS(1687), - [aux_sym_cmd_identifier_token9] = ACTIONS(1687), - [aux_sym_cmd_identifier_token10] = ACTIONS(1687), - [aux_sym_cmd_identifier_token11] = ACTIONS(1687), - [aux_sym_cmd_identifier_token12] = ACTIONS(1687), - [aux_sym_cmd_identifier_token13] = ACTIONS(1687), - [aux_sym_cmd_identifier_token14] = ACTIONS(1687), - [aux_sym_cmd_identifier_token15] = ACTIONS(1687), - [aux_sym_cmd_identifier_token16] = ACTIONS(1687), - [aux_sym_cmd_identifier_token17] = ACTIONS(1687), - [aux_sym_cmd_identifier_token18] = ACTIONS(1687), - [aux_sym_cmd_identifier_token19] = ACTIONS(1687), - [aux_sym_cmd_identifier_token20] = ACTIONS(1687), - [aux_sym_cmd_identifier_token21] = ACTIONS(1687), - [aux_sym_cmd_identifier_token22] = ACTIONS(1687), - [aux_sym_cmd_identifier_token23] = ACTIONS(1687), - [aux_sym_cmd_identifier_token24] = ACTIONS(1687), - [aux_sym_cmd_identifier_token25] = ACTIONS(1687), - [aux_sym_cmd_identifier_token26] = ACTIONS(1687), - [aux_sym_cmd_identifier_token27] = ACTIONS(1687), - [aux_sym_cmd_identifier_token28] = ACTIONS(1687), - [aux_sym_cmd_identifier_token29] = ACTIONS(1687), - [aux_sym_cmd_identifier_token30] = ACTIONS(1687), - [aux_sym_cmd_identifier_token31] = ACTIONS(1687), - [aux_sym_cmd_identifier_token32] = ACTIONS(1687), - [aux_sym_cmd_identifier_token33] = ACTIONS(1687), - [aux_sym_cmd_identifier_token34] = ACTIONS(1687), - [aux_sym_cmd_identifier_token35] = ACTIONS(1687), - [aux_sym_cmd_identifier_token36] = ACTIONS(1687), - [aux_sym_cmd_identifier_token37] = ACTIONS(1687), - [aux_sym_cmd_identifier_token38] = ACTIONS(1687), - [aux_sym_cmd_identifier_token39] = ACTIONS(1687), - [aux_sym_cmd_identifier_token40] = ACTIONS(1687), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_export_DASHenv] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_module] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_error] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_make] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_catch] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_source] = ACTIONS(1687), - [anon_sym_source_DASHenv] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_hide] = ACTIONS(1687), - [anon_sym_hide_DASHenv] = ACTIONS(1687), - [anon_sym_overlay] = ACTIONS(1687), - [anon_sym_as] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1687), - [aux_sym__val_number_decimal_token3] = ACTIONS(1687), - [aux_sym__val_number_decimal_token4] = ACTIONS(1687), - [aux_sym__val_number_token1] = ACTIONS(1687), - [aux_sym__val_number_token2] = ACTIONS(1687), - [aux_sym__val_number_token3] = ACTIONS(1687), - [aux_sym__val_number_token4] = ACTIONS(1687), - [aux_sym__val_number_token5] = ACTIONS(1687), - [aux_sym__val_number_token6] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym__str_single_quotes] = ACTIONS(1687), - [sym__str_back_ticks] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), - [sym__entry_separator] = ACTIONS(1699), + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [aux_sym_cmd_identifier_token2] = ACTIONS(2449), + [aux_sym_cmd_identifier_token3] = ACTIONS(2449), + [aux_sym_cmd_identifier_token4] = ACTIONS(2449), + [aux_sym_cmd_identifier_token5] = ACTIONS(2449), + [aux_sym_cmd_identifier_token6] = ACTIONS(2449), + [aux_sym_cmd_identifier_token7] = ACTIONS(2449), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2449), + [aux_sym_cmd_identifier_token11] = ACTIONS(2449), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [aux_sym_cmd_identifier_token16] = ACTIONS(2449), + [aux_sym_cmd_identifier_token17] = ACTIONS(2449), + [aux_sym_cmd_identifier_token18] = ACTIONS(2449), + [aux_sym_cmd_identifier_token19] = ACTIONS(2449), + [aux_sym_cmd_identifier_token20] = ACTIONS(2449), + [aux_sym_cmd_identifier_token21] = ACTIONS(2449), + [aux_sym_cmd_identifier_token22] = ACTIONS(2449), + [aux_sym_cmd_identifier_token23] = ACTIONS(2449), + [aux_sym_cmd_identifier_token24] = ACTIONS(2449), + [aux_sym_cmd_identifier_token25] = ACTIONS(2449), + [aux_sym_cmd_identifier_token26] = ACTIONS(2449), + [aux_sym_cmd_identifier_token27] = ACTIONS(2449), + [aux_sym_cmd_identifier_token28] = ACTIONS(2449), + [aux_sym_cmd_identifier_token29] = ACTIONS(2449), + [aux_sym_cmd_identifier_token30] = ACTIONS(2449), + [aux_sym_cmd_identifier_token31] = ACTIONS(2449), + [aux_sym_cmd_identifier_token32] = ACTIONS(2449), + [aux_sym_cmd_identifier_token33] = ACTIONS(2449), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2449), + [aux_sym_cmd_identifier_token36] = ACTIONS(2449), + [aux_sym_cmd_identifier_token37] = ACTIONS(2449), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2449), + [aux_sym_cmd_identifier_token40] = ACTIONS(2449), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_DOLLAR] = ACTIONS(2449), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [aux_sym__val_number_decimal_token2] = ACTIONS(2449), + [aux_sym__val_number_decimal_token3] = ACTIONS(2449), + [aux_sym__val_number_decimal_token4] = ACTIONS(2449), + [aux_sym__val_number_token1] = ACTIONS(2449), + [aux_sym__val_number_token2] = ACTIONS(2449), + [aux_sym__val_number_token3] = ACTIONS(2449), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2449), + [sym__str_single_quotes] = ACTIONS(2449), + [sym__str_back_ticks] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), + [sym__entry_separator] = ACTIONS(2451), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1699), + [sym_raw_string_begin] = ACTIONS(2451), }, - [623] = { - [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [aux_sym_cmd_identifier_token1] = ACTIONS(2387), - [aux_sym_cmd_identifier_token2] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2387), - [aux_sym_cmd_identifier_token4] = ACTIONS(2387), - [aux_sym_cmd_identifier_token5] = ACTIONS(2387), - [aux_sym_cmd_identifier_token6] = ACTIONS(2387), - [aux_sym_cmd_identifier_token7] = ACTIONS(2387), - [aux_sym_cmd_identifier_token8] = ACTIONS(2387), - [aux_sym_cmd_identifier_token9] = ACTIONS(2387), - [aux_sym_cmd_identifier_token10] = ACTIONS(2387), - [aux_sym_cmd_identifier_token11] = ACTIONS(2387), - [aux_sym_cmd_identifier_token12] = ACTIONS(2387), - [aux_sym_cmd_identifier_token13] = ACTIONS(2387), - [aux_sym_cmd_identifier_token14] = ACTIONS(2387), - [aux_sym_cmd_identifier_token15] = ACTIONS(2387), - [aux_sym_cmd_identifier_token16] = ACTIONS(2387), - [aux_sym_cmd_identifier_token17] = ACTIONS(2387), - [aux_sym_cmd_identifier_token18] = ACTIONS(2387), - [aux_sym_cmd_identifier_token19] = ACTIONS(2387), - [aux_sym_cmd_identifier_token20] = ACTIONS(2387), - [aux_sym_cmd_identifier_token21] = ACTIONS(2387), - [aux_sym_cmd_identifier_token22] = ACTIONS(2387), - [aux_sym_cmd_identifier_token23] = ACTIONS(2387), - [aux_sym_cmd_identifier_token24] = ACTIONS(2387), - [aux_sym_cmd_identifier_token25] = ACTIONS(2387), - [aux_sym_cmd_identifier_token26] = ACTIONS(2387), - [aux_sym_cmd_identifier_token27] = ACTIONS(2387), - [aux_sym_cmd_identifier_token28] = ACTIONS(2387), - [aux_sym_cmd_identifier_token29] = ACTIONS(2387), - [aux_sym_cmd_identifier_token30] = ACTIONS(2387), - [aux_sym_cmd_identifier_token31] = ACTIONS(2387), - [aux_sym_cmd_identifier_token32] = ACTIONS(2387), - [aux_sym_cmd_identifier_token33] = ACTIONS(2387), - [aux_sym_cmd_identifier_token34] = ACTIONS(2387), - [aux_sym_cmd_identifier_token35] = ACTIONS(2387), - [aux_sym_cmd_identifier_token36] = ACTIONS(2387), - [aux_sym_cmd_identifier_token37] = ACTIONS(2387), - [aux_sym_cmd_identifier_token38] = ACTIONS(2387), - [aux_sym_cmd_identifier_token39] = ACTIONS(2387), - [aux_sym_cmd_identifier_token40] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH2] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in2] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS2] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = ACTIONS(2387), - [aux_sym__val_number_decimal_token4] = ACTIONS(2387), - [aux_sym__val_number_token1] = ACTIONS(2387), - [aux_sym__val_number_token2] = ACTIONS(2387), - [aux_sym__val_number_token3] = ACTIONS(2387), - [aux_sym__val_number_token4] = ACTIONS(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym__str_single_quotes] = ACTIONS(2387), - [sym__str_back_ticks] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2387), - [sym__entry_separator] = ACTIONS(2389), + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2453), + [aux_sym_cmd_identifier_token3] = ACTIONS(2453), + [aux_sym_cmd_identifier_token4] = ACTIONS(2453), + [aux_sym_cmd_identifier_token5] = ACTIONS(2453), + [aux_sym_cmd_identifier_token6] = ACTIONS(2453), + [aux_sym_cmd_identifier_token7] = ACTIONS(2453), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2453), + [aux_sym_cmd_identifier_token11] = ACTIONS(2453), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2453), + [aux_sym_cmd_identifier_token17] = ACTIONS(2453), + [aux_sym_cmd_identifier_token18] = ACTIONS(2453), + [aux_sym_cmd_identifier_token19] = ACTIONS(2453), + [aux_sym_cmd_identifier_token20] = ACTIONS(2453), + [aux_sym_cmd_identifier_token21] = ACTIONS(2453), + [aux_sym_cmd_identifier_token22] = ACTIONS(2453), + [aux_sym_cmd_identifier_token23] = ACTIONS(2453), + [aux_sym_cmd_identifier_token24] = ACTIONS(2453), + [aux_sym_cmd_identifier_token25] = ACTIONS(2453), + [aux_sym_cmd_identifier_token26] = ACTIONS(2453), + [aux_sym_cmd_identifier_token27] = ACTIONS(2453), + [aux_sym_cmd_identifier_token28] = ACTIONS(2453), + [aux_sym_cmd_identifier_token29] = ACTIONS(2453), + [aux_sym_cmd_identifier_token30] = ACTIONS(2453), + [aux_sym_cmd_identifier_token31] = ACTIONS(2453), + [aux_sym_cmd_identifier_token32] = ACTIONS(2453), + [aux_sym_cmd_identifier_token33] = ACTIONS(2453), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2453), + [aux_sym_cmd_identifier_token36] = ACTIONS(2453), + [aux_sym_cmd_identifier_token37] = ACTIONS(2453), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2453), + [aux_sym_cmd_identifier_token40] = ACTIONS(2453), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2453), + [aux_sym__val_number_decimal_token3] = ACTIONS(2453), + [aux_sym__val_number_decimal_token4] = ACTIONS(2453), + [aux_sym__val_number_token1] = ACTIONS(2453), + [aux_sym__val_number_token2] = ACTIONS(2453), + [aux_sym__val_number_token3] = ACTIONS(2453), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [sym__str_single_quotes] = ACTIONS(2453), + [sym__str_back_ticks] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), + [sym__entry_separator] = ACTIONS(2455), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2389), + [sym_raw_string_begin] = ACTIONS(2455), }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_alias] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_let_DASHenv] = ACTIONS(2072), - [anon_sym_mut] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [aux_sym_cmd_identifier_token1] = ACTIONS(2072), - [aux_sym_cmd_identifier_token2] = ACTIONS(2072), - [aux_sym_cmd_identifier_token3] = ACTIONS(2072), - [aux_sym_cmd_identifier_token4] = ACTIONS(2072), - [aux_sym_cmd_identifier_token5] = ACTIONS(2072), - [aux_sym_cmd_identifier_token6] = ACTIONS(2072), - [aux_sym_cmd_identifier_token7] = ACTIONS(2072), - [aux_sym_cmd_identifier_token8] = ACTIONS(2072), - [aux_sym_cmd_identifier_token9] = ACTIONS(2072), - [aux_sym_cmd_identifier_token10] = ACTIONS(2072), - [aux_sym_cmd_identifier_token11] = ACTIONS(2072), - [aux_sym_cmd_identifier_token12] = ACTIONS(2072), - [aux_sym_cmd_identifier_token13] = ACTIONS(2072), - [aux_sym_cmd_identifier_token14] = ACTIONS(2072), - [aux_sym_cmd_identifier_token15] = ACTIONS(2072), - [aux_sym_cmd_identifier_token16] = ACTIONS(2072), - [aux_sym_cmd_identifier_token17] = ACTIONS(2072), - [aux_sym_cmd_identifier_token18] = ACTIONS(2072), - [aux_sym_cmd_identifier_token19] = ACTIONS(2072), - [aux_sym_cmd_identifier_token20] = ACTIONS(2072), - [aux_sym_cmd_identifier_token21] = ACTIONS(2072), - [aux_sym_cmd_identifier_token22] = ACTIONS(2072), - [aux_sym_cmd_identifier_token23] = ACTIONS(2072), - [aux_sym_cmd_identifier_token24] = ACTIONS(2072), - [aux_sym_cmd_identifier_token25] = ACTIONS(2072), - [aux_sym_cmd_identifier_token26] = ACTIONS(2072), - [aux_sym_cmd_identifier_token27] = ACTIONS(2072), - [aux_sym_cmd_identifier_token28] = ACTIONS(2072), - [aux_sym_cmd_identifier_token29] = ACTIONS(2072), - [aux_sym_cmd_identifier_token30] = ACTIONS(2072), - [aux_sym_cmd_identifier_token31] = ACTIONS(2072), - [aux_sym_cmd_identifier_token32] = ACTIONS(2072), - [aux_sym_cmd_identifier_token33] = ACTIONS(2072), - [aux_sym_cmd_identifier_token34] = ACTIONS(2072), - [aux_sym_cmd_identifier_token35] = ACTIONS(2072), - [aux_sym_cmd_identifier_token36] = ACTIONS(2072), - [aux_sym_cmd_identifier_token37] = ACTIONS(2072), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2072), - [aux_sym_cmd_identifier_token40] = ACTIONS(2072), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_export_DASHenv] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_error] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_in2] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_make] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_catch] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_source] = ACTIONS(2072), - [anon_sym_source_DASHenv] = ACTIONS(2072), - [anon_sym_register] = ACTIONS(2072), - [anon_sym_hide] = ACTIONS(2072), - [anon_sym_hide_DASHenv] = ACTIONS(2072), - [anon_sym_overlay] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2072), - [aux_sym__val_number_decimal_token3] = ACTIONS(2072), - [aux_sym__val_number_decimal_token4] = ACTIONS(2072), - [aux_sym__val_number_token1] = ACTIONS(2072), - [aux_sym__val_number_token2] = ACTIONS(2072), - [aux_sym__val_number_token3] = ACTIONS(2072), - [aux_sym__val_number_token4] = ACTIONS(2072), - [aux_sym__val_number_token5] = ACTIONS(2072), - [aux_sym__val_number_token6] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym__str_single_quotes] = ACTIONS(2072), - [sym__str_back_ticks] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), - [sym__entry_separator] = ACTIONS(2078), + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2457), + [aux_sym_cmd_identifier_token3] = ACTIONS(2457), + [aux_sym_cmd_identifier_token4] = ACTIONS(2457), + [aux_sym_cmd_identifier_token5] = ACTIONS(2457), + [aux_sym_cmd_identifier_token6] = ACTIONS(2457), + [aux_sym_cmd_identifier_token7] = ACTIONS(2457), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2457), + [aux_sym_cmd_identifier_token11] = ACTIONS(2457), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2457), + [aux_sym_cmd_identifier_token17] = ACTIONS(2457), + [aux_sym_cmd_identifier_token18] = ACTIONS(2457), + [aux_sym_cmd_identifier_token19] = ACTIONS(2457), + [aux_sym_cmd_identifier_token20] = ACTIONS(2457), + [aux_sym_cmd_identifier_token21] = ACTIONS(2457), + [aux_sym_cmd_identifier_token22] = ACTIONS(2457), + [aux_sym_cmd_identifier_token23] = ACTIONS(2457), + [aux_sym_cmd_identifier_token24] = ACTIONS(2457), + [aux_sym_cmd_identifier_token25] = ACTIONS(2457), + [aux_sym_cmd_identifier_token26] = ACTIONS(2457), + [aux_sym_cmd_identifier_token27] = ACTIONS(2457), + [aux_sym_cmd_identifier_token28] = ACTIONS(2457), + [aux_sym_cmd_identifier_token29] = ACTIONS(2457), + [aux_sym_cmd_identifier_token30] = ACTIONS(2457), + [aux_sym_cmd_identifier_token31] = ACTIONS(2457), + [aux_sym_cmd_identifier_token32] = ACTIONS(2457), + [aux_sym_cmd_identifier_token33] = ACTIONS(2457), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2457), + [aux_sym_cmd_identifier_token36] = ACTIONS(2457), + [aux_sym_cmd_identifier_token37] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2457), + [aux_sym_cmd_identifier_token40] = ACTIONS(2457), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2457), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in2] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2457), + [aux_sym__val_number_decimal_token3] = ACTIONS(2457), + [aux_sym__val_number_decimal_token4] = ACTIONS(2457), + [aux_sym__val_number_token1] = ACTIONS(2457), + [aux_sym__val_number_token2] = ACTIONS(2457), + [aux_sym__val_number_token3] = ACTIONS(2457), + [aux_sym__val_number_token4] = ACTIONS(2457), + [aux_sym__val_number_token5] = ACTIONS(2457), + [aux_sym__val_number_token6] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym__str_single_quotes] = ACTIONS(2457), + [sym__str_back_ticks] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), + [sym__entry_separator] = ACTIONS(2459), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2078), + [sym_raw_string_begin] = ACTIONS(2459), }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1779), - [aux_sym_cmd_identifier_token3] = ACTIONS(1779), - [aux_sym_cmd_identifier_token4] = ACTIONS(1779), - [aux_sym_cmd_identifier_token5] = ACTIONS(1779), - [aux_sym_cmd_identifier_token6] = ACTIONS(1779), - [aux_sym_cmd_identifier_token7] = ACTIONS(1779), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1779), - [aux_sym_cmd_identifier_token11] = ACTIONS(1779), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1779), - [aux_sym_cmd_identifier_token17] = ACTIONS(1779), - [aux_sym_cmd_identifier_token18] = ACTIONS(1779), - [aux_sym_cmd_identifier_token19] = ACTIONS(1779), - [aux_sym_cmd_identifier_token20] = ACTIONS(1779), - [aux_sym_cmd_identifier_token21] = ACTIONS(1779), - [aux_sym_cmd_identifier_token22] = ACTIONS(1779), - [aux_sym_cmd_identifier_token23] = ACTIONS(1779), - [aux_sym_cmd_identifier_token24] = ACTIONS(1779), - [aux_sym_cmd_identifier_token25] = ACTIONS(1779), - [aux_sym_cmd_identifier_token26] = ACTIONS(1779), - [aux_sym_cmd_identifier_token27] = ACTIONS(1779), - [aux_sym_cmd_identifier_token28] = ACTIONS(1779), - [aux_sym_cmd_identifier_token29] = ACTIONS(1779), - [aux_sym_cmd_identifier_token30] = ACTIONS(1779), - [aux_sym_cmd_identifier_token31] = ACTIONS(1779), - [aux_sym_cmd_identifier_token32] = ACTIONS(1779), - [aux_sym_cmd_identifier_token33] = ACTIONS(1779), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1779), - [aux_sym_cmd_identifier_token36] = ACTIONS(1779), - [aux_sym_cmd_identifier_token37] = ACTIONS(1779), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1779), - [aux_sym_cmd_identifier_token40] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1779), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1779), - [aux_sym__val_number_decimal_token3] = ACTIONS(1779), - [aux_sym__val_number_decimal_token4] = ACTIONS(1779), - [aux_sym__val_number_token1] = ACTIONS(1779), - [aux_sym__val_number_token2] = ACTIONS(1779), - [aux_sym__val_number_token3] = ACTIONS(1779), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1779), - [sym__entry_separator] = ACTIONS(1781), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(2325), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2461), + [aux_sym_cmd_identifier_token3] = ACTIONS(2461), + [aux_sym_cmd_identifier_token4] = ACTIONS(2461), + [aux_sym_cmd_identifier_token5] = ACTIONS(2461), + [aux_sym_cmd_identifier_token6] = ACTIONS(2461), + [aux_sym_cmd_identifier_token7] = ACTIONS(2461), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2461), + [aux_sym_cmd_identifier_token11] = ACTIONS(2461), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2461), + [aux_sym_cmd_identifier_token17] = ACTIONS(2461), + [aux_sym_cmd_identifier_token18] = ACTIONS(2461), + [aux_sym_cmd_identifier_token19] = ACTIONS(2461), + [aux_sym_cmd_identifier_token20] = ACTIONS(2461), + [aux_sym_cmd_identifier_token21] = ACTIONS(2461), + [aux_sym_cmd_identifier_token22] = ACTIONS(2461), + [aux_sym_cmd_identifier_token23] = ACTIONS(2461), + [aux_sym_cmd_identifier_token24] = ACTIONS(2461), + [aux_sym_cmd_identifier_token25] = ACTIONS(2461), + [aux_sym_cmd_identifier_token26] = ACTIONS(2461), + [aux_sym_cmd_identifier_token27] = ACTIONS(2461), + [aux_sym_cmd_identifier_token28] = ACTIONS(2461), + [aux_sym_cmd_identifier_token29] = ACTIONS(2461), + [aux_sym_cmd_identifier_token30] = ACTIONS(2461), + [aux_sym_cmd_identifier_token31] = ACTIONS(2461), + [aux_sym_cmd_identifier_token32] = ACTIONS(2461), + [aux_sym_cmd_identifier_token33] = ACTIONS(2461), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2461), + [aux_sym_cmd_identifier_token36] = ACTIONS(2461), + [aux_sym_cmd_identifier_token37] = ACTIONS(2461), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2461), + [aux_sym_cmd_identifier_token40] = ACTIONS(2461), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_DOLLAR] = ACTIONS(2461), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in2] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2461), + [aux_sym__val_number_decimal_token3] = ACTIONS(2461), + [aux_sym__val_number_decimal_token4] = ACTIONS(2461), + [aux_sym__val_number_token1] = ACTIONS(2461), + [aux_sym__val_number_token2] = ACTIONS(2461), + [aux_sym__val_number_token3] = ACTIONS(2461), + [aux_sym__val_number_token4] = ACTIONS(2461), + [aux_sym__val_number_token5] = ACTIONS(2461), + [aux_sym__val_number_token6] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2461), + [sym__str_single_quotes] = ACTIONS(2461), + [sym__str_back_ticks] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), + [sym__entry_separator] = ACTIONS(2463), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1781), + [sym_raw_string_begin] = ACTIONS(2463), }, - [626] = { - [sym_comment] = STATE(626), + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(2467), + [anon_sym_alias] = ACTIONS(2467), + [anon_sym_let] = ACTIONS(2467), + [anon_sym_let_DASHenv] = ACTIONS(2467), + [anon_sym_mut] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [aux_sym_cmd_identifier_token1] = ACTIONS(2467), + [aux_sym_cmd_identifier_token2] = ACTIONS(2467), + [aux_sym_cmd_identifier_token3] = ACTIONS(2467), + [aux_sym_cmd_identifier_token4] = ACTIONS(2467), + [aux_sym_cmd_identifier_token5] = ACTIONS(2467), + [aux_sym_cmd_identifier_token6] = ACTIONS(2467), + [aux_sym_cmd_identifier_token7] = ACTIONS(2467), + [aux_sym_cmd_identifier_token8] = ACTIONS(2467), + [aux_sym_cmd_identifier_token9] = ACTIONS(2467), + [aux_sym_cmd_identifier_token10] = ACTIONS(2467), + [aux_sym_cmd_identifier_token11] = ACTIONS(2467), + [aux_sym_cmd_identifier_token12] = ACTIONS(2467), + [aux_sym_cmd_identifier_token13] = ACTIONS(2467), + [aux_sym_cmd_identifier_token14] = ACTIONS(2467), + [aux_sym_cmd_identifier_token15] = ACTIONS(2467), + [aux_sym_cmd_identifier_token16] = ACTIONS(2467), + [aux_sym_cmd_identifier_token17] = ACTIONS(2467), + [aux_sym_cmd_identifier_token18] = ACTIONS(2467), + [aux_sym_cmd_identifier_token19] = ACTIONS(2467), + [aux_sym_cmd_identifier_token20] = ACTIONS(2467), + [aux_sym_cmd_identifier_token21] = ACTIONS(2467), + [aux_sym_cmd_identifier_token22] = ACTIONS(2467), + [aux_sym_cmd_identifier_token23] = ACTIONS(2467), + [aux_sym_cmd_identifier_token24] = ACTIONS(2467), + [aux_sym_cmd_identifier_token25] = ACTIONS(2467), + [aux_sym_cmd_identifier_token26] = ACTIONS(2467), + [aux_sym_cmd_identifier_token27] = ACTIONS(2467), + [aux_sym_cmd_identifier_token28] = ACTIONS(2467), + [aux_sym_cmd_identifier_token29] = ACTIONS(2467), + [aux_sym_cmd_identifier_token30] = ACTIONS(2467), + [aux_sym_cmd_identifier_token31] = ACTIONS(2467), + [aux_sym_cmd_identifier_token32] = ACTIONS(2467), + [aux_sym_cmd_identifier_token33] = ACTIONS(2467), + [aux_sym_cmd_identifier_token34] = ACTIONS(2467), + [aux_sym_cmd_identifier_token35] = ACTIONS(2467), + [aux_sym_cmd_identifier_token36] = ACTIONS(2467), + [aux_sym_cmd_identifier_token37] = ACTIONS(2467), + [aux_sym_cmd_identifier_token38] = ACTIONS(2467), + [aux_sym_cmd_identifier_token39] = ACTIONS(2467), + [aux_sym_cmd_identifier_token40] = ACTIONS(2467), + [anon_sym_def] = ACTIONS(2467), + [anon_sym_export_DASHenv] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym_module] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_DOLLAR] = ACTIONS(2467), + [anon_sym_error] = ACTIONS(2467), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_in2] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_make] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_catch] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_source] = ACTIONS(2467), + [anon_sym_source_DASHenv] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_hide] = ACTIONS(2467), + [anon_sym_hide_DASHenv] = ACTIONS(2467), + [anon_sym_overlay] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), + [aux_sym__val_number_decimal_token1] = ACTIONS(2467), + [aux_sym__val_number_decimal_token2] = ACTIONS(2467), + [aux_sym__val_number_decimal_token3] = ACTIONS(2467), + [aux_sym__val_number_decimal_token4] = ACTIONS(2467), + [aux_sym__val_number_token1] = ACTIONS(2467), + [aux_sym__val_number_token2] = ACTIONS(2467), + [aux_sym__val_number_token3] = ACTIONS(2467), + [aux_sym__val_number_token4] = ACTIONS(2467), + [aux_sym__val_number_token5] = ACTIONS(2467), + [aux_sym__val_number_token6] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym__str_single_quotes] = ACTIONS(2467), + [sym__str_back_ticks] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), + [sym__entry_separator] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2469), + }, + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(2471), + [anon_sym_alias] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_let_DASHenv] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [aux_sym_cmd_identifier_token1] = ACTIONS(2471), + [aux_sym_cmd_identifier_token2] = ACTIONS(2471), + [aux_sym_cmd_identifier_token3] = ACTIONS(2471), + [aux_sym_cmd_identifier_token4] = ACTIONS(2471), + [aux_sym_cmd_identifier_token5] = ACTIONS(2471), + [aux_sym_cmd_identifier_token6] = ACTIONS(2471), + [aux_sym_cmd_identifier_token7] = ACTIONS(2471), + [aux_sym_cmd_identifier_token8] = ACTIONS(2471), + [aux_sym_cmd_identifier_token9] = ACTIONS(2471), + [aux_sym_cmd_identifier_token10] = ACTIONS(2471), + [aux_sym_cmd_identifier_token11] = ACTIONS(2471), + [aux_sym_cmd_identifier_token12] = ACTIONS(2471), + [aux_sym_cmd_identifier_token13] = ACTIONS(2471), + [aux_sym_cmd_identifier_token14] = ACTIONS(2471), + [aux_sym_cmd_identifier_token15] = ACTIONS(2471), + [aux_sym_cmd_identifier_token16] = ACTIONS(2471), + [aux_sym_cmd_identifier_token17] = ACTIONS(2471), + [aux_sym_cmd_identifier_token18] = ACTIONS(2471), + [aux_sym_cmd_identifier_token19] = ACTIONS(2471), + [aux_sym_cmd_identifier_token20] = ACTIONS(2471), + [aux_sym_cmd_identifier_token21] = ACTIONS(2471), + [aux_sym_cmd_identifier_token22] = ACTIONS(2471), + [aux_sym_cmd_identifier_token23] = ACTIONS(2471), + [aux_sym_cmd_identifier_token24] = ACTIONS(2471), + [aux_sym_cmd_identifier_token25] = ACTIONS(2471), + [aux_sym_cmd_identifier_token26] = ACTIONS(2471), + [aux_sym_cmd_identifier_token27] = ACTIONS(2471), + [aux_sym_cmd_identifier_token28] = ACTIONS(2471), + [aux_sym_cmd_identifier_token29] = ACTIONS(2471), + [aux_sym_cmd_identifier_token30] = ACTIONS(2471), + [aux_sym_cmd_identifier_token31] = ACTIONS(2471), + [aux_sym_cmd_identifier_token32] = ACTIONS(2471), + [aux_sym_cmd_identifier_token33] = ACTIONS(2471), + [aux_sym_cmd_identifier_token34] = ACTIONS(2471), + [aux_sym_cmd_identifier_token35] = ACTIONS(2471), + [aux_sym_cmd_identifier_token36] = ACTIONS(2471), + [aux_sym_cmd_identifier_token37] = ACTIONS(2471), + [aux_sym_cmd_identifier_token38] = ACTIONS(2471), + [aux_sym_cmd_identifier_token39] = ACTIONS(2471), + [aux_sym_cmd_identifier_token40] = ACTIONS(2471), + [anon_sym_def] = ACTIONS(2471), + [anon_sym_export_DASHenv] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_module] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2471), + [anon_sym_error] = ACTIONS(2471), + [anon_sym_DASH2] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_in2] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_make] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_catch] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_source] = ACTIONS(2471), + [anon_sym_source_DASHenv] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_hide] = ACTIONS(2471), + [anon_sym_hide_DASHenv] = ACTIONS(2471), + [anon_sym_overlay] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_PLUS2] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), + [aux_sym__val_number_decimal_token1] = ACTIONS(2471), + [aux_sym__val_number_decimal_token2] = ACTIONS(2471), + [aux_sym__val_number_decimal_token3] = ACTIONS(2471), + [aux_sym__val_number_decimal_token4] = ACTIONS(2471), + [aux_sym__val_number_token1] = ACTIONS(2471), + [aux_sym__val_number_token2] = ACTIONS(2471), + [aux_sym__val_number_token3] = ACTIONS(2471), + [aux_sym__val_number_token4] = ACTIONS(2471), + [aux_sym__val_number_token5] = ACTIONS(2471), + [aux_sym__val_number_token6] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym__str_single_quotes] = ACTIONS(2471), + [sym__str_back_ticks] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), + [sym__entry_separator] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2473), + }, + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [aux_sym_cmd_identifier_token2] = ACTIONS(2319), + [aux_sym_cmd_identifier_token3] = ACTIONS(2319), + [aux_sym_cmd_identifier_token4] = ACTIONS(2319), + [aux_sym_cmd_identifier_token5] = ACTIONS(2319), + [aux_sym_cmd_identifier_token6] = ACTIONS(2319), + [aux_sym_cmd_identifier_token7] = ACTIONS(2319), + [aux_sym_cmd_identifier_token8] = ACTIONS(2315), + [aux_sym_cmd_identifier_token9] = ACTIONS(2315), + [aux_sym_cmd_identifier_token10] = ACTIONS(2319), + [aux_sym_cmd_identifier_token11] = ACTIONS(2319), + [aux_sym_cmd_identifier_token12] = ACTIONS(2315), + [aux_sym_cmd_identifier_token13] = ACTIONS(2315), + [aux_sym_cmd_identifier_token14] = ACTIONS(2315), + [aux_sym_cmd_identifier_token15] = ACTIONS(2315), + [aux_sym_cmd_identifier_token16] = ACTIONS(2319), + [aux_sym_cmd_identifier_token17] = ACTIONS(2319), + [aux_sym_cmd_identifier_token18] = ACTIONS(2319), + [aux_sym_cmd_identifier_token19] = ACTIONS(2319), + [aux_sym_cmd_identifier_token20] = ACTIONS(2319), + [aux_sym_cmd_identifier_token21] = ACTIONS(2319), + [aux_sym_cmd_identifier_token22] = ACTIONS(2319), + [aux_sym_cmd_identifier_token23] = ACTIONS(2319), + [aux_sym_cmd_identifier_token24] = ACTIONS(2319), + [aux_sym_cmd_identifier_token25] = ACTIONS(2319), + [aux_sym_cmd_identifier_token26] = ACTIONS(2319), + [aux_sym_cmd_identifier_token27] = ACTIONS(2319), + [aux_sym_cmd_identifier_token28] = ACTIONS(2319), + [aux_sym_cmd_identifier_token29] = ACTIONS(2319), + [aux_sym_cmd_identifier_token30] = ACTIONS(2319), + [aux_sym_cmd_identifier_token31] = ACTIONS(2319), + [aux_sym_cmd_identifier_token32] = ACTIONS(2319), + [aux_sym_cmd_identifier_token33] = ACTIONS(2319), + [aux_sym_cmd_identifier_token34] = ACTIONS(2315), + [aux_sym_cmd_identifier_token35] = ACTIONS(2319), + [aux_sym_cmd_identifier_token36] = ACTIONS(2319), + [aux_sym_cmd_identifier_token37] = ACTIONS(2319), + [aux_sym_cmd_identifier_token38] = ACTIONS(2315), + [aux_sym_cmd_identifier_token39] = ACTIONS(2319), + [aux_sym_cmd_identifier_token40] = ACTIONS(2319), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2319), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_DASH2] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_in2] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_make] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_catch] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_PLUS2] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2319), + [aux_sym__val_number_decimal_token3] = ACTIONS(2319), + [aux_sym__val_number_decimal_token4] = ACTIONS(2319), + [aux_sym__val_number_token1] = ACTIONS(2319), + [aux_sym__val_number_token2] = ACTIONS(2319), + [aux_sym__val_number_token3] = ACTIONS(2319), + [aux_sym__val_number_token4] = ACTIONS(2315), + [aux_sym__val_number_token5] = ACTIONS(2315), + [aux_sym__val_number_token6] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym__str_single_quotes] = ACTIONS(2319), + [sym__str_back_ticks] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2319), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2319), + }, + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1735), + [aux_sym_cmd_identifier_token3] = ACTIONS(1735), + [aux_sym_cmd_identifier_token4] = ACTIONS(1735), + [aux_sym_cmd_identifier_token5] = ACTIONS(1735), + [aux_sym_cmd_identifier_token6] = ACTIONS(1735), + [aux_sym_cmd_identifier_token7] = ACTIONS(1735), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1735), + [aux_sym_cmd_identifier_token11] = ACTIONS(1735), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1735), + [aux_sym_cmd_identifier_token17] = ACTIONS(1735), + [aux_sym_cmd_identifier_token18] = ACTIONS(1735), + [aux_sym_cmd_identifier_token19] = ACTIONS(1735), + [aux_sym_cmd_identifier_token20] = ACTIONS(1735), + [aux_sym_cmd_identifier_token21] = ACTIONS(1735), + [aux_sym_cmd_identifier_token22] = ACTIONS(1735), + [aux_sym_cmd_identifier_token23] = ACTIONS(1735), + [aux_sym_cmd_identifier_token24] = ACTIONS(1735), + [aux_sym_cmd_identifier_token25] = ACTIONS(1735), + [aux_sym_cmd_identifier_token26] = ACTIONS(1735), + [aux_sym_cmd_identifier_token27] = ACTIONS(1735), + [aux_sym_cmd_identifier_token28] = ACTIONS(1735), + [aux_sym_cmd_identifier_token29] = ACTIONS(1735), + [aux_sym_cmd_identifier_token30] = ACTIONS(1735), + [aux_sym_cmd_identifier_token31] = ACTIONS(1735), + [aux_sym_cmd_identifier_token32] = ACTIONS(1735), + [aux_sym_cmd_identifier_token33] = ACTIONS(1735), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1735), + [aux_sym_cmd_identifier_token36] = ACTIONS(1735), + [aux_sym_cmd_identifier_token37] = ACTIONS(1735), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1735), + [aux_sym_cmd_identifier_token40] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1735), + [aux_sym__val_number_decimal_token3] = ACTIONS(1735), + [aux_sym__val_number_decimal_token4] = ACTIONS(1735), + [aux_sym__val_number_token1] = ACTIONS(1735), + [aux_sym__val_number_token2] = ACTIONS(1735), + [aux_sym__val_number_token3] = ACTIONS(1735), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), + [sym__entry_separator] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [668] = { + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [669] = { + [sym_comment] = STATE(669), [anon_sym_export] = ACTIONS(1771), [anon_sym_alias] = ACTIONS(1771), [anon_sym_let] = ACTIONS(1771), @@ -152851,1829 +151775,1827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1773), }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1799), - [aux_sym_cmd_identifier_token3] = ACTIONS(1799), - [aux_sym_cmd_identifier_token4] = ACTIONS(1799), - [aux_sym_cmd_identifier_token5] = ACTIONS(1799), - [aux_sym_cmd_identifier_token6] = ACTIONS(1799), - [aux_sym_cmd_identifier_token7] = ACTIONS(1799), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1799), - [aux_sym_cmd_identifier_token11] = ACTIONS(1799), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1799), - [aux_sym_cmd_identifier_token17] = ACTIONS(1799), - [aux_sym_cmd_identifier_token18] = ACTIONS(1799), - [aux_sym_cmd_identifier_token19] = ACTIONS(1799), - [aux_sym_cmd_identifier_token20] = ACTIONS(1799), - [aux_sym_cmd_identifier_token21] = ACTIONS(1799), - [aux_sym_cmd_identifier_token22] = ACTIONS(1799), - [aux_sym_cmd_identifier_token23] = ACTIONS(1799), - [aux_sym_cmd_identifier_token24] = ACTIONS(1799), - [aux_sym_cmd_identifier_token25] = ACTIONS(1799), - [aux_sym_cmd_identifier_token26] = ACTIONS(1799), - [aux_sym_cmd_identifier_token27] = ACTIONS(1799), - [aux_sym_cmd_identifier_token28] = ACTIONS(1799), - [aux_sym_cmd_identifier_token29] = ACTIONS(1799), - [aux_sym_cmd_identifier_token30] = ACTIONS(1799), - [aux_sym_cmd_identifier_token31] = ACTIONS(1799), - [aux_sym_cmd_identifier_token32] = ACTIONS(1799), - [aux_sym_cmd_identifier_token33] = ACTIONS(1799), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1799), - [aux_sym_cmd_identifier_token36] = ACTIONS(1799), - [aux_sym_cmd_identifier_token37] = ACTIONS(1799), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1799), - [aux_sym_cmd_identifier_token40] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1799), - [aux_sym__val_number_decimal_token3] = ACTIONS(1799), - [aux_sym__val_number_decimal_token4] = ACTIONS(1799), - [aux_sym__val_number_token1] = ACTIONS(1799), - [aux_sym__val_number_token2] = ACTIONS(1799), - [aux_sym__val_number_token3] = ACTIONS(1799), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [sym__str_single_quotes] = ACTIONS(1799), - [sym__str_back_ticks] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), - [sym__entry_separator] = ACTIONS(1801), + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1786), + [aux_sym_cmd_identifier_token3] = ACTIONS(1786), + [aux_sym_cmd_identifier_token4] = ACTIONS(1786), + [aux_sym_cmd_identifier_token5] = ACTIONS(1786), + [aux_sym_cmd_identifier_token6] = ACTIONS(1786), + [aux_sym_cmd_identifier_token7] = ACTIONS(1786), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1786), + [aux_sym_cmd_identifier_token11] = ACTIONS(1786), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1786), + [aux_sym_cmd_identifier_token17] = ACTIONS(1786), + [aux_sym_cmd_identifier_token18] = ACTIONS(1786), + [aux_sym_cmd_identifier_token19] = ACTIONS(1786), + [aux_sym_cmd_identifier_token20] = ACTIONS(1786), + [aux_sym_cmd_identifier_token21] = ACTIONS(1786), + [aux_sym_cmd_identifier_token22] = ACTIONS(1786), + [aux_sym_cmd_identifier_token23] = ACTIONS(1786), + [aux_sym_cmd_identifier_token24] = ACTIONS(1786), + [aux_sym_cmd_identifier_token25] = ACTIONS(1786), + [aux_sym_cmd_identifier_token26] = ACTIONS(1786), + [aux_sym_cmd_identifier_token27] = ACTIONS(1786), + [aux_sym_cmd_identifier_token28] = ACTIONS(1786), + [aux_sym_cmd_identifier_token29] = ACTIONS(1786), + [aux_sym_cmd_identifier_token30] = ACTIONS(1786), + [aux_sym_cmd_identifier_token31] = ACTIONS(1786), + [aux_sym_cmd_identifier_token32] = ACTIONS(1786), + [aux_sym_cmd_identifier_token33] = ACTIONS(1786), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1786), + [aux_sym_cmd_identifier_token36] = ACTIONS(1786), + [aux_sym_cmd_identifier_token37] = ACTIONS(1786), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1786), + [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1786), + [aux_sym__val_number_decimal_token4] = ACTIONS(1786), + [aux_sym__val_number_token1] = ACTIONS(1786), + [aux_sym__val_number_token2] = ACTIONS(1786), + [aux_sym__val_number_token3] = ACTIONS(1786), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym__str_single_quotes] = ACTIONS(1786), + [sym__str_back_ticks] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), + [sym__entry_separator] = ACTIONS(1788), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1801), + [sym_raw_string_begin] = ACTIONS(1788), }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1818), - [aux_sym_cmd_identifier_token3] = ACTIONS(1818), - [aux_sym_cmd_identifier_token4] = ACTIONS(1818), - [aux_sym_cmd_identifier_token5] = ACTIONS(1818), - [aux_sym_cmd_identifier_token6] = ACTIONS(1818), - [aux_sym_cmd_identifier_token7] = ACTIONS(1818), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1818), - [aux_sym_cmd_identifier_token11] = ACTIONS(1818), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1818), - [aux_sym_cmd_identifier_token17] = ACTIONS(1818), - [aux_sym_cmd_identifier_token18] = ACTIONS(1818), - [aux_sym_cmd_identifier_token19] = ACTIONS(1818), - [aux_sym_cmd_identifier_token20] = ACTIONS(1818), - [aux_sym_cmd_identifier_token21] = ACTIONS(1818), - [aux_sym_cmd_identifier_token22] = ACTIONS(1818), - [aux_sym_cmd_identifier_token23] = ACTIONS(1818), - [aux_sym_cmd_identifier_token24] = ACTIONS(1818), - [aux_sym_cmd_identifier_token25] = ACTIONS(1818), - [aux_sym_cmd_identifier_token26] = ACTIONS(1818), - [aux_sym_cmd_identifier_token27] = ACTIONS(1818), - [aux_sym_cmd_identifier_token28] = ACTIONS(1818), - [aux_sym_cmd_identifier_token29] = ACTIONS(1818), - [aux_sym_cmd_identifier_token30] = ACTIONS(1818), - [aux_sym_cmd_identifier_token31] = ACTIONS(1818), - [aux_sym_cmd_identifier_token32] = ACTIONS(1818), - [aux_sym_cmd_identifier_token33] = ACTIONS(1818), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1818), - [aux_sym_cmd_identifier_token36] = ACTIONS(1818), - [aux_sym_cmd_identifier_token37] = ACTIONS(1818), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1818), - [aux_sym_cmd_identifier_token40] = ACTIONS(1818), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1818), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1818), - [aux_sym__val_number_decimal_token3] = ACTIONS(1818), - [aux_sym__val_number_decimal_token4] = ACTIONS(1818), - [aux_sym__val_number_token1] = ACTIONS(1818), - [aux_sym__val_number_token2] = ACTIONS(1818), - [aux_sym__val_number_token3] = ACTIONS(1818), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1818), - [sym__str_single_quotes] = ACTIONS(1818), - [sym__str_back_ticks] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1818), - [sym__entry_separator] = ACTIONS(1820), + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_alias] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_let_DASHenv] = ACTIONS(2477), + [anon_sym_mut] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [aux_sym_cmd_identifier_token1] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2477), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [aux_sym_cmd_identifier_token6] = ACTIONS(2477), + [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token8] = ACTIONS(2477), + [aux_sym_cmd_identifier_token9] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2477), + [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token12] = ACTIONS(2477), + [aux_sym_cmd_identifier_token13] = ACTIONS(2477), + [aux_sym_cmd_identifier_token14] = ACTIONS(2477), + [aux_sym_cmd_identifier_token15] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2477), + [aux_sym_cmd_identifier_token17] = ACTIONS(2477), + [aux_sym_cmd_identifier_token18] = ACTIONS(2477), + [aux_sym_cmd_identifier_token19] = ACTIONS(2477), + [aux_sym_cmd_identifier_token20] = ACTIONS(2477), + [aux_sym_cmd_identifier_token21] = ACTIONS(2477), + [aux_sym_cmd_identifier_token22] = ACTIONS(2477), + [aux_sym_cmd_identifier_token23] = ACTIONS(2477), + [aux_sym_cmd_identifier_token24] = ACTIONS(2477), + [aux_sym_cmd_identifier_token25] = ACTIONS(2477), + [aux_sym_cmd_identifier_token26] = ACTIONS(2477), + [aux_sym_cmd_identifier_token27] = ACTIONS(2477), + [aux_sym_cmd_identifier_token28] = ACTIONS(2477), + [aux_sym_cmd_identifier_token29] = ACTIONS(2477), + [aux_sym_cmd_identifier_token30] = ACTIONS(2477), + [aux_sym_cmd_identifier_token31] = ACTIONS(2477), + [aux_sym_cmd_identifier_token32] = ACTIONS(2477), + [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token34] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2477), + [aux_sym_cmd_identifier_token36] = ACTIONS(2477), + [aux_sym_cmd_identifier_token37] = ACTIONS(2477), + [aux_sym_cmd_identifier_token38] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2477), + [aux_sym_cmd_identifier_token40] = ACTIONS(2477), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_export_DASHenv] = ACTIONS(2477), + [anon_sym_extern] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_use] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_error] = ACTIONS(2477), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_in2] = ACTIONS(2477), + [anon_sym_loop] = ACTIONS(2477), + [anon_sym_make] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_else] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_catch] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_source] = ACTIONS(2477), + [anon_sym_source_DASHenv] = ACTIONS(2477), + [anon_sym_register] = ACTIONS(2477), + [anon_sym_hide] = ACTIONS(2477), + [anon_sym_hide_DASHenv] = ACTIONS(2477), + [anon_sym_overlay] = ACTIONS(2477), + [anon_sym_as] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), + [aux_sym__val_number_decimal_token1] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2477), + [aux_sym__val_number_decimal_token3] = ACTIONS(2477), + [aux_sym__val_number_decimal_token4] = ACTIONS(2477), + [aux_sym__val_number_token1] = ACTIONS(2477), + [aux_sym__val_number_token2] = ACTIONS(2477), + [aux_sym__val_number_token3] = ACTIONS(2477), + [aux_sym__val_number_token4] = ACTIONS(2477), + [aux_sym__val_number_token5] = ACTIONS(2477), + [aux_sym__val_number_token6] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym__str_single_quotes] = ACTIONS(2477), + [sym__str_back_ticks] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), + [sym__entry_separator] = ACTIONS(2479), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1820), + [sym_raw_string_begin] = ACTIONS(2479), }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(2391), - [anon_sym_alias] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_let_DASHenv] = ACTIONS(2391), - [anon_sym_mut] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [aux_sym_cmd_identifier_token1] = ACTIONS(2391), - [aux_sym_cmd_identifier_token2] = ACTIONS(2391), - [aux_sym_cmd_identifier_token3] = ACTIONS(2391), - [aux_sym_cmd_identifier_token4] = ACTIONS(2391), - [aux_sym_cmd_identifier_token5] = ACTIONS(2391), - [aux_sym_cmd_identifier_token6] = ACTIONS(2391), - [aux_sym_cmd_identifier_token7] = ACTIONS(2391), - [aux_sym_cmd_identifier_token8] = ACTIONS(2391), - [aux_sym_cmd_identifier_token9] = ACTIONS(2391), - [aux_sym_cmd_identifier_token10] = ACTIONS(2391), - [aux_sym_cmd_identifier_token11] = ACTIONS(2391), - [aux_sym_cmd_identifier_token12] = ACTIONS(2391), - [aux_sym_cmd_identifier_token13] = ACTIONS(2391), - [aux_sym_cmd_identifier_token14] = ACTIONS(2391), - [aux_sym_cmd_identifier_token15] = ACTIONS(2391), - [aux_sym_cmd_identifier_token16] = ACTIONS(2391), - [aux_sym_cmd_identifier_token17] = ACTIONS(2391), - [aux_sym_cmd_identifier_token18] = ACTIONS(2391), - [aux_sym_cmd_identifier_token19] = ACTIONS(2391), - [aux_sym_cmd_identifier_token20] = ACTIONS(2391), - [aux_sym_cmd_identifier_token21] = ACTIONS(2391), - [aux_sym_cmd_identifier_token22] = ACTIONS(2391), - [aux_sym_cmd_identifier_token23] = ACTIONS(2391), - [aux_sym_cmd_identifier_token24] = ACTIONS(2391), - [aux_sym_cmd_identifier_token25] = ACTIONS(2391), - [aux_sym_cmd_identifier_token26] = ACTIONS(2391), - [aux_sym_cmd_identifier_token27] = ACTIONS(2391), - [aux_sym_cmd_identifier_token28] = ACTIONS(2391), - [aux_sym_cmd_identifier_token29] = ACTIONS(2391), - [aux_sym_cmd_identifier_token30] = ACTIONS(2391), - [aux_sym_cmd_identifier_token31] = ACTIONS(2391), - [aux_sym_cmd_identifier_token32] = ACTIONS(2391), - [aux_sym_cmd_identifier_token33] = ACTIONS(2391), - [aux_sym_cmd_identifier_token34] = ACTIONS(2391), - [aux_sym_cmd_identifier_token35] = ACTIONS(2391), - [aux_sym_cmd_identifier_token36] = ACTIONS(2391), - [aux_sym_cmd_identifier_token37] = ACTIONS(2391), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2391), - [aux_sym_cmd_identifier_token40] = ACTIONS(2391), - [anon_sym_def] = ACTIONS(2391), - [anon_sym_export_DASHenv] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_module] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_error] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_in2] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_make] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_do] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_source] = ACTIONS(2391), - [anon_sym_source_DASHenv] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_hide_DASHenv] = ACTIONS(2391), - [anon_sym_overlay] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), - [aux_sym__val_number_decimal_token1] = ACTIONS(2391), - [aux_sym__val_number_decimal_token2] = ACTIONS(2391), - [aux_sym__val_number_decimal_token3] = ACTIONS(2391), - [aux_sym__val_number_decimal_token4] = ACTIONS(2391), - [aux_sym__val_number_token1] = ACTIONS(2391), - [aux_sym__val_number_token2] = ACTIONS(2391), - [aux_sym__val_number_token3] = ACTIONS(2391), - [aux_sym__val_number_token4] = ACTIONS(2391), - [aux_sym__val_number_token5] = ACTIONS(2391), - [aux_sym__val_number_token6] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym__str_single_quotes] = ACTIONS(2391), - [sym__str_back_ticks] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), - [sym__entry_separator] = ACTIONS(2393), + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [aux_sym_cmd_identifier_token37] = ACTIONS(1957), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1957), + [aux_sym_cmd_identifier_token40] = ACTIONS(1957), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1957), + [aux_sym__val_number_decimal_token4] = ACTIONS(1957), + [aux_sym__val_number_token1] = ACTIONS(1957), + [aux_sym__val_number_token2] = ACTIONS(1957), + [aux_sym__val_number_token3] = ACTIONS(1957), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [sym__str_single_quotes] = ACTIONS(1957), + [sym__str_back_ticks] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [sym__entry_separator] = ACTIONS(1959), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2393), + [sym_raw_string_begin] = ACTIONS(1959), }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2391), - [anon_sym_alias] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_let_DASHenv] = ACTIONS(2391), - [anon_sym_mut] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [aux_sym_cmd_identifier_token1] = ACTIONS(2391), - [aux_sym_cmd_identifier_token2] = ACTIONS(2391), - [aux_sym_cmd_identifier_token3] = ACTIONS(2391), - [aux_sym_cmd_identifier_token4] = ACTIONS(2391), - [aux_sym_cmd_identifier_token5] = ACTIONS(2391), - [aux_sym_cmd_identifier_token6] = ACTIONS(2391), - [aux_sym_cmd_identifier_token7] = ACTIONS(2391), - [aux_sym_cmd_identifier_token8] = ACTIONS(2391), - [aux_sym_cmd_identifier_token9] = ACTIONS(2391), - [aux_sym_cmd_identifier_token10] = ACTIONS(2391), - [aux_sym_cmd_identifier_token11] = ACTIONS(2391), - [aux_sym_cmd_identifier_token12] = ACTIONS(2391), - [aux_sym_cmd_identifier_token13] = ACTIONS(2391), - [aux_sym_cmd_identifier_token14] = ACTIONS(2391), - [aux_sym_cmd_identifier_token15] = ACTIONS(2391), - [aux_sym_cmd_identifier_token16] = ACTIONS(2391), - [aux_sym_cmd_identifier_token17] = ACTIONS(2391), - [aux_sym_cmd_identifier_token18] = ACTIONS(2391), - [aux_sym_cmd_identifier_token19] = ACTIONS(2391), - [aux_sym_cmd_identifier_token20] = ACTIONS(2391), - [aux_sym_cmd_identifier_token21] = ACTIONS(2391), - [aux_sym_cmd_identifier_token22] = ACTIONS(2391), - [aux_sym_cmd_identifier_token23] = ACTIONS(2391), - [aux_sym_cmd_identifier_token24] = ACTIONS(2391), - [aux_sym_cmd_identifier_token25] = ACTIONS(2391), - [aux_sym_cmd_identifier_token26] = ACTIONS(2391), - [aux_sym_cmd_identifier_token27] = ACTIONS(2391), - [aux_sym_cmd_identifier_token28] = ACTIONS(2391), - [aux_sym_cmd_identifier_token29] = ACTIONS(2391), - [aux_sym_cmd_identifier_token30] = ACTIONS(2391), - [aux_sym_cmd_identifier_token31] = ACTIONS(2391), - [aux_sym_cmd_identifier_token32] = ACTIONS(2391), - [aux_sym_cmd_identifier_token33] = ACTIONS(2391), - [aux_sym_cmd_identifier_token34] = ACTIONS(2391), - [aux_sym_cmd_identifier_token35] = ACTIONS(2391), - [aux_sym_cmd_identifier_token36] = ACTIONS(2391), - [aux_sym_cmd_identifier_token37] = ACTIONS(2391), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2391), - [aux_sym_cmd_identifier_token40] = ACTIONS(2391), - [anon_sym_def] = ACTIONS(2391), - [anon_sym_export_DASHenv] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_module] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_error] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_in2] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_make] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_do] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_source] = ACTIONS(2391), - [anon_sym_source_DASHenv] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_hide_DASHenv] = ACTIONS(2391), - [anon_sym_overlay] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), - [aux_sym__val_number_decimal_token1] = ACTIONS(2391), - [aux_sym__val_number_decimal_token2] = ACTIONS(2391), - [aux_sym__val_number_decimal_token3] = ACTIONS(2391), - [aux_sym__val_number_decimal_token4] = ACTIONS(2391), - [aux_sym__val_number_token1] = ACTIONS(2391), - [aux_sym__val_number_token2] = ACTIONS(2391), - [aux_sym__val_number_token3] = ACTIONS(2391), - [aux_sym__val_number_token4] = ACTIONS(2391), - [aux_sym__val_number_token5] = ACTIONS(2391), - [aux_sym__val_number_token6] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym__str_single_quotes] = ACTIONS(2391), - [sym__str_back_ticks] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), - [sym__entry_separator] = ACTIONS(2393), + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2481), + [aux_sym_cmd_identifier_token3] = ACTIONS(2481), + [aux_sym_cmd_identifier_token4] = ACTIONS(2481), + [aux_sym_cmd_identifier_token5] = ACTIONS(2481), + [aux_sym_cmd_identifier_token6] = ACTIONS(2481), + [aux_sym_cmd_identifier_token7] = ACTIONS(2481), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2481), + [aux_sym_cmd_identifier_token11] = ACTIONS(2481), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2481), + [aux_sym_cmd_identifier_token17] = ACTIONS(2481), + [aux_sym_cmd_identifier_token18] = ACTIONS(2481), + [aux_sym_cmd_identifier_token19] = ACTIONS(2481), + [aux_sym_cmd_identifier_token20] = ACTIONS(2481), + [aux_sym_cmd_identifier_token21] = ACTIONS(2481), + [aux_sym_cmd_identifier_token22] = ACTIONS(2481), + [aux_sym_cmd_identifier_token23] = ACTIONS(2481), + [aux_sym_cmd_identifier_token24] = ACTIONS(2481), + [aux_sym_cmd_identifier_token25] = ACTIONS(2481), + [aux_sym_cmd_identifier_token26] = ACTIONS(2481), + [aux_sym_cmd_identifier_token27] = ACTIONS(2481), + [aux_sym_cmd_identifier_token28] = ACTIONS(2481), + [aux_sym_cmd_identifier_token29] = ACTIONS(2481), + [aux_sym_cmd_identifier_token30] = ACTIONS(2481), + [aux_sym_cmd_identifier_token31] = ACTIONS(2481), + [aux_sym_cmd_identifier_token32] = ACTIONS(2481), + [aux_sym_cmd_identifier_token33] = ACTIONS(2481), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2481), + [aux_sym_cmd_identifier_token36] = ACTIONS(2481), + [aux_sym_cmd_identifier_token37] = ACTIONS(2481), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2481), + [aux_sym_cmd_identifier_token40] = ACTIONS(2481), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_DOLLAR] = ACTIONS(2481), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in2] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2481), + [aux_sym__val_number_decimal_token3] = ACTIONS(2481), + [aux_sym__val_number_decimal_token4] = ACTIONS(2481), + [aux_sym__val_number_token1] = ACTIONS(2481), + [aux_sym__val_number_token2] = ACTIONS(2481), + [aux_sym__val_number_token3] = ACTIONS(2481), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2481), + [sym__str_single_quotes] = ACTIONS(2481), + [sym__str_back_ticks] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), + [sym__entry_separator] = ACTIONS(2483), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2393), + [sym_raw_string_begin] = ACTIONS(2483), }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(2395), - [anon_sym_alias] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_let_DASHenv] = ACTIONS(2395), - [anon_sym_mut] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [aux_sym_cmd_identifier_token1] = ACTIONS(2395), - [aux_sym_cmd_identifier_token2] = ACTIONS(2395), - [aux_sym_cmd_identifier_token3] = ACTIONS(2395), - [aux_sym_cmd_identifier_token4] = ACTIONS(2395), - [aux_sym_cmd_identifier_token5] = ACTIONS(2395), - [aux_sym_cmd_identifier_token6] = ACTIONS(2395), - [aux_sym_cmd_identifier_token7] = ACTIONS(2395), - [aux_sym_cmd_identifier_token8] = ACTIONS(2395), - [aux_sym_cmd_identifier_token9] = ACTIONS(2395), - [aux_sym_cmd_identifier_token10] = ACTIONS(2395), - [aux_sym_cmd_identifier_token11] = ACTIONS(2395), - [aux_sym_cmd_identifier_token12] = ACTIONS(2395), - [aux_sym_cmd_identifier_token13] = ACTIONS(2395), - [aux_sym_cmd_identifier_token14] = ACTIONS(2395), - [aux_sym_cmd_identifier_token15] = ACTIONS(2395), - [aux_sym_cmd_identifier_token16] = ACTIONS(2395), - [aux_sym_cmd_identifier_token17] = ACTIONS(2395), - [aux_sym_cmd_identifier_token18] = ACTIONS(2395), - [aux_sym_cmd_identifier_token19] = ACTIONS(2395), - [aux_sym_cmd_identifier_token20] = ACTIONS(2395), - [aux_sym_cmd_identifier_token21] = ACTIONS(2395), - [aux_sym_cmd_identifier_token22] = ACTIONS(2395), - [aux_sym_cmd_identifier_token23] = ACTIONS(2395), - [aux_sym_cmd_identifier_token24] = ACTIONS(2395), - [aux_sym_cmd_identifier_token25] = ACTIONS(2395), - [aux_sym_cmd_identifier_token26] = ACTIONS(2395), - [aux_sym_cmd_identifier_token27] = ACTIONS(2395), - [aux_sym_cmd_identifier_token28] = ACTIONS(2395), - [aux_sym_cmd_identifier_token29] = ACTIONS(2395), - [aux_sym_cmd_identifier_token30] = ACTIONS(2395), - [aux_sym_cmd_identifier_token31] = ACTIONS(2395), - [aux_sym_cmd_identifier_token32] = ACTIONS(2395), - [aux_sym_cmd_identifier_token33] = ACTIONS(2395), - [aux_sym_cmd_identifier_token34] = ACTIONS(2395), - [aux_sym_cmd_identifier_token35] = ACTIONS(2395), - [aux_sym_cmd_identifier_token36] = ACTIONS(2395), - [aux_sym_cmd_identifier_token37] = ACTIONS(2395), - [aux_sym_cmd_identifier_token38] = ACTIONS(2395), - [aux_sym_cmd_identifier_token39] = ACTIONS(2395), - [aux_sym_cmd_identifier_token40] = ACTIONS(2395), - [anon_sym_def] = ACTIONS(2395), - [anon_sym_export_DASHenv] = ACTIONS(2395), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_module] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_error] = ACTIONS(2395), - [anon_sym_DASH2] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_in2] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_make] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_do] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_try] = ACTIONS(2395), - [anon_sym_catch] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_source] = ACTIONS(2395), - [anon_sym_source_DASHenv] = ACTIONS(2395), - [anon_sym_register] = ACTIONS(2395), - [anon_sym_hide] = ACTIONS(2395), - [anon_sym_hide_DASHenv] = ACTIONS(2395), - [anon_sym_overlay] = ACTIONS(2395), - [anon_sym_as] = ACTIONS(2395), - [anon_sym_PLUS2] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2395), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2395), - [aux_sym__val_number_decimal_token3] = ACTIONS(2395), - [aux_sym__val_number_decimal_token4] = ACTIONS(2395), - [aux_sym__val_number_token1] = ACTIONS(2395), - [aux_sym__val_number_token2] = ACTIONS(2395), - [aux_sym__val_number_token3] = ACTIONS(2395), - [aux_sym__val_number_token4] = ACTIONS(2395), - [aux_sym__val_number_token5] = ACTIONS(2395), - [aux_sym__val_number_token6] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym__str_single_quotes] = ACTIONS(2395), - [sym__str_back_ticks] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2395), - [sym__entry_separator] = ACTIONS(2397), + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2485), + [aux_sym_cmd_identifier_token3] = ACTIONS(2485), + [aux_sym_cmd_identifier_token4] = ACTIONS(2485), + [aux_sym_cmd_identifier_token5] = ACTIONS(2485), + [aux_sym_cmd_identifier_token6] = ACTIONS(2485), + [aux_sym_cmd_identifier_token7] = ACTIONS(2485), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2485), + [aux_sym_cmd_identifier_token11] = ACTIONS(2485), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2485), + [aux_sym_cmd_identifier_token17] = ACTIONS(2485), + [aux_sym_cmd_identifier_token18] = ACTIONS(2485), + [aux_sym_cmd_identifier_token19] = ACTIONS(2485), + [aux_sym_cmd_identifier_token20] = ACTIONS(2485), + [aux_sym_cmd_identifier_token21] = ACTIONS(2485), + [aux_sym_cmd_identifier_token22] = ACTIONS(2485), + [aux_sym_cmd_identifier_token23] = ACTIONS(2485), + [aux_sym_cmd_identifier_token24] = ACTIONS(2485), + [aux_sym_cmd_identifier_token25] = ACTIONS(2485), + [aux_sym_cmd_identifier_token26] = ACTIONS(2485), + [aux_sym_cmd_identifier_token27] = ACTIONS(2485), + [aux_sym_cmd_identifier_token28] = ACTIONS(2485), + [aux_sym_cmd_identifier_token29] = ACTIONS(2485), + [aux_sym_cmd_identifier_token30] = ACTIONS(2485), + [aux_sym_cmd_identifier_token31] = ACTIONS(2485), + [aux_sym_cmd_identifier_token32] = ACTIONS(2485), + [aux_sym_cmd_identifier_token33] = ACTIONS(2485), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [aux_sym_cmd_identifier_token37] = ACTIONS(2485), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2485), + [aux_sym_cmd_identifier_token40] = ACTIONS(2485), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in2] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2485), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [aux_sym__val_number_token4] = ACTIONS(2485), + [aux_sym__val_number_token5] = ACTIONS(2485), + [aux_sym__val_number_token6] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym__str_single_quotes] = ACTIONS(2485), + [sym__str_back_ticks] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), + [sym__entry_separator] = ACTIONS(2487), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2397), + [sym_raw_string_begin] = ACTIONS(2487), }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2090), - [aux_sym_cmd_identifier_token3] = ACTIONS(2090), - [aux_sym_cmd_identifier_token4] = ACTIONS(2090), - [aux_sym_cmd_identifier_token5] = ACTIONS(2090), - [aux_sym_cmd_identifier_token6] = ACTIONS(2090), - [aux_sym_cmd_identifier_token7] = ACTIONS(2090), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2090), - [aux_sym_cmd_identifier_token11] = ACTIONS(2090), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2090), - [aux_sym_cmd_identifier_token17] = ACTIONS(2090), - [aux_sym_cmd_identifier_token18] = ACTIONS(2090), - [aux_sym_cmd_identifier_token19] = ACTIONS(2090), - [aux_sym_cmd_identifier_token20] = ACTIONS(2090), - [aux_sym_cmd_identifier_token21] = ACTIONS(2090), - [aux_sym_cmd_identifier_token22] = ACTIONS(2090), - [aux_sym_cmd_identifier_token23] = ACTIONS(2090), - [aux_sym_cmd_identifier_token24] = ACTIONS(2090), - [aux_sym_cmd_identifier_token25] = ACTIONS(2090), - [aux_sym_cmd_identifier_token26] = ACTIONS(2090), - [aux_sym_cmd_identifier_token27] = ACTIONS(2090), - [aux_sym_cmd_identifier_token28] = ACTIONS(2090), - [aux_sym_cmd_identifier_token29] = ACTIONS(2090), - [aux_sym_cmd_identifier_token30] = ACTIONS(2090), - [aux_sym_cmd_identifier_token31] = ACTIONS(2090), - [aux_sym_cmd_identifier_token32] = ACTIONS(2090), - [aux_sym_cmd_identifier_token33] = ACTIONS(2090), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2090), - [aux_sym_cmd_identifier_token36] = ACTIONS(2090), - [aux_sym_cmd_identifier_token37] = ACTIONS(2090), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2090), - [aux_sym_cmd_identifier_token40] = ACTIONS(2090), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2090), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2090), - [aux_sym__val_number_decimal_token3] = ACTIONS(2090), - [aux_sym__val_number_decimal_token4] = ACTIONS(2090), - [aux_sym__val_number_token1] = ACTIONS(2090), - [aux_sym__val_number_token2] = ACTIONS(2090), - [aux_sym__val_number_token3] = ACTIONS(2090), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2090), - [sym__str_single_quotes] = ACTIONS(2090), - [sym__str_back_ticks] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2090), - [sym__entry_separator] = ACTIONS(2096), + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [aux_sym_cmd_identifier_token37] = ACTIONS(2489), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2489), + [aux_sym_cmd_identifier_token40] = ACTIONS(2489), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in2] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2489), + [aux_sym__val_number_decimal_token3] = ACTIONS(2489), + [aux_sym__val_number_decimal_token4] = ACTIONS(2489), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [aux_sym__val_number_token4] = ACTIONS(2489), + [aux_sym__val_number_token5] = ACTIONS(2489), + [aux_sym__val_number_token6] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym__str_single_quotes] = ACTIONS(2489), + [sym__str_back_ticks] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), + [sym__entry_separator] = ACTIONS(2491), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), + [sym_raw_string_begin] = ACTIONS(2491), }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_let_DASHenv] = ACTIONS(2098), - [anon_sym_mut] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2098), - [aux_sym_cmd_identifier_token3] = ACTIONS(2098), - [aux_sym_cmd_identifier_token4] = ACTIONS(2098), - [aux_sym_cmd_identifier_token5] = ACTIONS(2098), - [aux_sym_cmd_identifier_token6] = ACTIONS(2098), - [aux_sym_cmd_identifier_token7] = ACTIONS(2098), - [aux_sym_cmd_identifier_token8] = ACTIONS(2098), - [aux_sym_cmd_identifier_token9] = ACTIONS(2098), - [aux_sym_cmd_identifier_token10] = ACTIONS(2098), - [aux_sym_cmd_identifier_token11] = ACTIONS(2098), - [aux_sym_cmd_identifier_token12] = ACTIONS(2098), - [aux_sym_cmd_identifier_token13] = ACTIONS(2098), - [aux_sym_cmd_identifier_token14] = ACTIONS(2098), - [aux_sym_cmd_identifier_token15] = ACTIONS(2098), - [aux_sym_cmd_identifier_token16] = ACTIONS(2098), - [aux_sym_cmd_identifier_token17] = ACTIONS(2098), - [aux_sym_cmd_identifier_token18] = ACTIONS(2098), - [aux_sym_cmd_identifier_token19] = ACTIONS(2098), - [aux_sym_cmd_identifier_token20] = ACTIONS(2098), - [aux_sym_cmd_identifier_token21] = ACTIONS(2098), - [aux_sym_cmd_identifier_token22] = ACTIONS(2098), - [aux_sym_cmd_identifier_token23] = ACTIONS(2098), - [aux_sym_cmd_identifier_token24] = ACTIONS(2098), - [aux_sym_cmd_identifier_token25] = ACTIONS(2098), - [aux_sym_cmd_identifier_token26] = ACTIONS(2098), - [aux_sym_cmd_identifier_token27] = ACTIONS(2098), - [aux_sym_cmd_identifier_token28] = ACTIONS(2098), - [aux_sym_cmd_identifier_token29] = ACTIONS(2098), - [aux_sym_cmd_identifier_token30] = ACTIONS(2098), - [aux_sym_cmd_identifier_token31] = ACTIONS(2098), - [aux_sym_cmd_identifier_token32] = ACTIONS(2098), - [aux_sym_cmd_identifier_token33] = ACTIONS(2098), - [aux_sym_cmd_identifier_token34] = ACTIONS(2098), - [aux_sym_cmd_identifier_token35] = ACTIONS(2098), - [aux_sym_cmd_identifier_token36] = ACTIONS(2098), - [aux_sym_cmd_identifier_token37] = ACTIONS(2098), - [aux_sym_cmd_identifier_token38] = ACTIONS(2098), - [aux_sym_cmd_identifier_token39] = ACTIONS(2098), - [aux_sym_cmd_identifier_token40] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2098), - [anon_sym_export_DASHenv] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_error] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_in2] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_make] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_source] = ACTIONS(2098), - [anon_sym_source_DASHenv] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_hide] = ACTIONS(2098), - [anon_sym_hide_DASHenv] = ACTIONS(2098), - [anon_sym_overlay] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2098), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2098), - [aux_sym__val_number_decimal_token3] = ACTIONS(2098), - [aux_sym__val_number_decimal_token4] = ACTIONS(2098), - [aux_sym__val_number_token1] = ACTIONS(2098), - [aux_sym__val_number_token2] = ACTIONS(2098), - [aux_sym__val_number_token3] = ACTIONS(2098), - [aux_sym__val_number_token4] = ACTIONS(2098), - [aux_sym__val_number_token5] = ACTIONS(2098), - [aux_sym__val_number_token6] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2098), - [sym__str_single_quotes] = ACTIONS(2098), - [sym__str_back_ticks] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2098), - [sym__entry_separator] = ACTIONS(2104), + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(2493), + [anon_sym_alias] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_let_DASHenv] = ACTIONS(2493), + [anon_sym_mut] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [aux_sym_cmd_identifier_token1] = ACTIONS(2493), + [aux_sym_cmd_identifier_token2] = ACTIONS(2493), + [aux_sym_cmd_identifier_token3] = ACTIONS(2493), + [aux_sym_cmd_identifier_token4] = ACTIONS(2493), + [aux_sym_cmd_identifier_token5] = ACTIONS(2493), + [aux_sym_cmd_identifier_token6] = ACTIONS(2493), + [aux_sym_cmd_identifier_token7] = ACTIONS(2493), + [aux_sym_cmd_identifier_token8] = ACTIONS(2493), + [aux_sym_cmd_identifier_token9] = ACTIONS(2493), + [aux_sym_cmd_identifier_token10] = ACTIONS(2493), + [aux_sym_cmd_identifier_token11] = ACTIONS(2493), + [aux_sym_cmd_identifier_token12] = ACTIONS(2493), + [aux_sym_cmd_identifier_token13] = ACTIONS(2493), + [aux_sym_cmd_identifier_token14] = ACTIONS(2493), + [aux_sym_cmd_identifier_token15] = ACTIONS(2493), + [aux_sym_cmd_identifier_token16] = ACTIONS(2493), + [aux_sym_cmd_identifier_token17] = ACTIONS(2493), + [aux_sym_cmd_identifier_token18] = ACTIONS(2493), + [aux_sym_cmd_identifier_token19] = ACTIONS(2493), + [aux_sym_cmd_identifier_token20] = ACTIONS(2493), + [aux_sym_cmd_identifier_token21] = ACTIONS(2493), + [aux_sym_cmd_identifier_token22] = ACTIONS(2493), + [aux_sym_cmd_identifier_token23] = ACTIONS(2493), + [aux_sym_cmd_identifier_token24] = ACTIONS(2493), + [aux_sym_cmd_identifier_token25] = ACTIONS(2493), + [aux_sym_cmd_identifier_token26] = ACTIONS(2493), + [aux_sym_cmd_identifier_token27] = ACTIONS(2493), + [aux_sym_cmd_identifier_token28] = ACTIONS(2493), + [aux_sym_cmd_identifier_token29] = ACTIONS(2493), + [aux_sym_cmd_identifier_token30] = ACTIONS(2493), + [aux_sym_cmd_identifier_token31] = ACTIONS(2493), + [aux_sym_cmd_identifier_token32] = ACTIONS(2493), + [aux_sym_cmd_identifier_token33] = ACTIONS(2493), + [aux_sym_cmd_identifier_token34] = ACTIONS(2493), + [aux_sym_cmd_identifier_token35] = ACTIONS(2493), + [aux_sym_cmd_identifier_token36] = ACTIONS(2493), + [aux_sym_cmd_identifier_token37] = ACTIONS(2493), + [aux_sym_cmd_identifier_token38] = ACTIONS(2493), + [aux_sym_cmd_identifier_token39] = ACTIONS(2493), + [aux_sym_cmd_identifier_token40] = ACTIONS(2493), + [anon_sym_def] = ACTIONS(2493), + [anon_sym_export_DASHenv] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_module] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_DOLLAR] = ACTIONS(2493), + [anon_sym_error] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_in2] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_make] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_catch] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_source] = ACTIONS(2493), + [anon_sym_source_DASHenv] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_hide] = ACTIONS(2493), + [anon_sym_hide_DASHenv] = ACTIONS(2493), + [anon_sym_overlay] = ACTIONS(2493), + [anon_sym_as] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), + [aux_sym__val_number_decimal_token1] = ACTIONS(2493), + [aux_sym__val_number_decimal_token2] = ACTIONS(2493), + [aux_sym__val_number_decimal_token3] = ACTIONS(2493), + [aux_sym__val_number_decimal_token4] = ACTIONS(2493), + [aux_sym__val_number_token1] = ACTIONS(2493), + [aux_sym__val_number_token2] = ACTIONS(2493), + [aux_sym__val_number_token3] = ACTIONS(2493), + [aux_sym__val_number_token4] = ACTIONS(2493), + [aux_sym__val_number_token5] = ACTIONS(2493), + [aux_sym__val_number_token6] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2493), + [sym__str_single_quotes] = ACTIONS(2493), + [sym__str_back_ticks] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), + [sym__entry_separator] = ACTIONS(2495), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2104), + [sym_raw_string_begin] = ACTIONS(2495), }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [aux_sym_cmd_identifier_token1] = ACTIONS(2131), - [aux_sym_cmd_identifier_token2] = ACTIONS(2131), - [aux_sym_cmd_identifier_token3] = ACTIONS(2131), - [aux_sym_cmd_identifier_token4] = ACTIONS(2131), - [aux_sym_cmd_identifier_token5] = ACTIONS(2131), - [aux_sym_cmd_identifier_token6] = ACTIONS(2131), - [aux_sym_cmd_identifier_token7] = ACTIONS(2131), - [aux_sym_cmd_identifier_token8] = ACTIONS(2131), - [aux_sym_cmd_identifier_token9] = ACTIONS(2131), - [aux_sym_cmd_identifier_token10] = ACTIONS(2131), - [aux_sym_cmd_identifier_token11] = ACTIONS(2131), - [aux_sym_cmd_identifier_token12] = ACTIONS(2131), - [aux_sym_cmd_identifier_token13] = ACTIONS(2131), - [aux_sym_cmd_identifier_token14] = ACTIONS(2131), - [aux_sym_cmd_identifier_token15] = ACTIONS(2131), - [aux_sym_cmd_identifier_token16] = ACTIONS(2131), - [aux_sym_cmd_identifier_token17] = ACTIONS(2131), - [aux_sym_cmd_identifier_token18] = ACTIONS(2131), - [aux_sym_cmd_identifier_token19] = ACTIONS(2131), - [aux_sym_cmd_identifier_token20] = ACTIONS(2131), - [aux_sym_cmd_identifier_token21] = ACTIONS(2131), - [aux_sym_cmd_identifier_token22] = ACTIONS(2131), - [aux_sym_cmd_identifier_token23] = ACTIONS(2131), - [aux_sym_cmd_identifier_token24] = ACTIONS(2131), - [aux_sym_cmd_identifier_token25] = ACTIONS(2131), - [aux_sym_cmd_identifier_token26] = ACTIONS(2131), - [aux_sym_cmd_identifier_token27] = ACTIONS(2131), - [aux_sym_cmd_identifier_token28] = ACTIONS(2131), - [aux_sym_cmd_identifier_token29] = ACTIONS(2131), - [aux_sym_cmd_identifier_token30] = ACTIONS(2131), - [aux_sym_cmd_identifier_token31] = ACTIONS(2131), - [aux_sym_cmd_identifier_token32] = ACTIONS(2131), - [aux_sym_cmd_identifier_token33] = ACTIONS(2131), - [aux_sym_cmd_identifier_token34] = ACTIONS(2131), - [aux_sym_cmd_identifier_token35] = ACTIONS(2131), - [aux_sym_cmd_identifier_token36] = ACTIONS(2131), - [aux_sym_cmd_identifier_token37] = ACTIONS(2131), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2131), - [aux_sym_cmd_identifier_token40] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_DASH2] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_in2] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_make] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_catch] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_PLUS2] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2131), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2131), - [aux_sym__val_number_decimal_token3] = ACTIONS(2131), - [aux_sym__val_number_decimal_token4] = ACTIONS(2131), - [aux_sym__val_number_token1] = ACTIONS(2131), - [aux_sym__val_number_token2] = ACTIONS(2131), - [aux_sym__val_number_token3] = ACTIONS(2131), - [aux_sym__val_number_token4] = ACTIONS(2131), - [aux_sym__val_number_token5] = ACTIONS(2131), - [aux_sym__val_number_token6] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2131), - [sym__str_single_quotes] = ACTIONS(2131), - [sym__str_back_ticks] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2131), - [sym__entry_separator] = ACTIONS(2137), + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(2497), + [anon_sym_alias] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_let_DASHenv] = ACTIONS(2497), + [anon_sym_mut] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [aux_sym_cmd_identifier_token1] = ACTIONS(2497), + [aux_sym_cmd_identifier_token2] = ACTIONS(2497), + [aux_sym_cmd_identifier_token3] = ACTIONS(2497), + [aux_sym_cmd_identifier_token4] = ACTIONS(2497), + [aux_sym_cmd_identifier_token5] = ACTIONS(2497), + [aux_sym_cmd_identifier_token6] = ACTIONS(2497), + [aux_sym_cmd_identifier_token7] = ACTIONS(2497), + [aux_sym_cmd_identifier_token8] = ACTIONS(2497), + [aux_sym_cmd_identifier_token9] = ACTIONS(2497), + [aux_sym_cmd_identifier_token10] = ACTIONS(2497), + [aux_sym_cmd_identifier_token11] = ACTIONS(2497), + [aux_sym_cmd_identifier_token12] = ACTIONS(2497), + [aux_sym_cmd_identifier_token13] = ACTIONS(2497), + [aux_sym_cmd_identifier_token14] = ACTIONS(2497), + [aux_sym_cmd_identifier_token15] = ACTIONS(2497), + [aux_sym_cmd_identifier_token16] = ACTIONS(2497), + [aux_sym_cmd_identifier_token17] = ACTIONS(2497), + [aux_sym_cmd_identifier_token18] = ACTIONS(2497), + [aux_sym_cmd_identifier_token19] = ACTIONS(2497), + [aux_sym_cmd_identifier_token20] = ACTIONS(2497), + [aux_sym_cmd_identifier_token21] = ACTIONS(2497), + [aux_sym_cmd_identifier_token22] = ACTIONS(2497), + [aux_sym_cmd_identifier_token23] = ACTIONS(2497), + [aux_sym_cmd_identifier_token24] = ACTIONS(2497), + [aux_sym_cmd_identifier_token25] = ACTIONS(2497), + [aux_sym_cmd_identifier_token26] = ACTIONS(2497), + [aux_sym_cmd_identifier_token27] = ACTIONS(2497), + [aux_sym_cmd_identifier_token28] = ACTIONS(2497), + [aux_sym_cmd_identifier_token29] = ACTIONS(2497), + [aux_sym_cmd_identifier_token30] = ACTIONS(2497), + [aux_sym_cmd_identifier_token31] = ACTIONS(2497), + [aux_sym_cmd_identifier_token32] = ACTIONS(2497), + [aux_sym_cmd_identifier_token33] = ACTIONS(2497), + [aux_sym_cmd_identifier_token34] = ACTIONS(2497), + [aux_sym_cmd_identifier_token35] = ACTIONS(2497), + [aux_sym_cmd_identifier_token36] = ACTIONS(2497), + [aux_sym_cmd_identifier_token37] = ACTIONS(2497), + [aux_sym_cmd_identifier_token38] = ACTIONS(2497), + [aux_sym_cmd_identifier_token39] = ACTIONS(2497), + [aux_sym_cmd_identifier_token40] = ACTIONS(2497), + [anon_sym_def] = ACTIONS(2497), + [anon_sym_export_DASHenv] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_module] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_DOLLAR] = ACTIONS(2497), + [anon_sym_error] = ACTIONS(2497), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_in2] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_make] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_catch] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_source] = ACTIONS(2497), + [anon_sym_source_DASHenv] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2497), + [anon_sym_hide] = ACTIONS(2497), + [anon_sym_hide_DASHenv] = ACTIONS(2497), + [anon_sym_overlay] = ACTIONS(2497), + [anon_sym_as] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), + [aux_sym__val_number_decimal_token1] = ACTIONS(2497), + [aux_sym__val_number_decimal_token2] = ACTIONS(2497), + [aux_sym__val_number_decimal_token3] = ACTIONS(2497), + [aux_sym__val_number_decimal_token4] = ACTIONS(2497), + [aux_sym__val_number_token1] = ACTIONS(2497), + [aux_sym__val_number_token2] = ACTIONS(2497), + [aux_sym__val_number_token3] = ACTIONS(2497), + [aux_sym__val_number_token4] = ACTIONS(2497), + [aux_sym__val_number_token5] = ACTIONS(2497), + [aux_sym__val_number_token6] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2497), + [sym__str_single_quotes] = ACTIONS(2497), + [sym__str_back_ticks] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), + [sym__entry_separator] = ACTIONS(2499), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2137), + [sym_raw_string_begin] = ACTIONS(2499), }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_alias] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_let_DASHenv] = ACTIONS(2399), - [anon_sym_mut] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [aux_sym_cmd_identifier_token1] = ACTIONS(2399), - [aux_sym_cmd_identifier_token2] = ACTIONS(2399), - [aux_sym_cmd_identifier_token3] = ACTIONS(2399), - [aux_sym_cmd_identifier_token4] = ACTIONS(2399), - [aux_sym_cmd_identifier_token5] = ACTIONS(2399), - [aux_sym_cmd_identifier_token6] = ACTIONS(2399), - [aux_sym_cmd_identifier_token7] = ACTIONS(2399), - [aux_sym_cmd_identifier_token8] = ACTIONS(2399), - [aux_sym_cmd_identifier_token9] = ACTIONS(2399), - [aux_sym_cmd_identifier_token10] = ACTIONS(2399), - [aux_sym_cmd_identifier_token11] = ACTIONS(2399), - [aux_sym_cmd_identifier_token12] = ACTIONS(2399), - [aux_sym_cmd_identifier_token13] = ACTIONS(2399), - [aux_sym_cmd_identifier_token14] = ACTIONS(2399), - [aux_sym_cmd_identifier_token15] = ACTIONS(2399), - [aux_sym_cmd_identifier_token16] = ACTIONS(2399), - [aux_sym_cmd_identifier_token17] = ACTIONS(2399), - [aux_sym_cmd_identifier_token18] = ACTIONS(2399), - [aux_sym_cmd_identifier_token19] = ACTIONS(2399), - [aux_sym_cmd_identifier_token20] = ACTIONS(2399), - [aux_sym_cmd_identifier_token21] = ACTIONS(2399), - [aux_sym_cmd_identifier_token22] = ACTIONS(2399), - [aux_sym_cmd_identifier_token23] = ACTIONS(2399), - [aux_sym_cmd_identifier_token24] = ACTIONS(2399), - [aux_sym_cmd_identifier_token25] = ACTIONS(2399), - [aux_sym_cmd_identifier_token26] = ACTIONS(2399), - [aux_sym_cmd_identifier_token27] = ACTIONS(2399), - [aux_sym_cmd_identifier_token28] = ACTIONS(2399), - [aux_sym_cmd_identifier_token29] = ACTIONS(2399), - [aux_sym_cmd_identifier_token30] = ACTIONS(2399), - [aux_sym_cmd_identifier_token31] = ACTIONS(2399), - [aux_sym_cmd_identifier_token32] = ACTIONS(2399), - [aux_sym_cmd_identifier_token33] = ACTIONS(2399), - [aux_sym_cmd_identifier_token34] = ACTIONS(2399), - [aux_sym_cmd_identifier_token35] = ACTIONS(2399), - [aux_sym_cmd_identifier_token36] = ACTIONS(2399), - [aux_sym_cmd_identifier_token37] = ACTIONS(2399), - [aux_sym_cmd_identifier_token38] = ACTIONS(2399), - [aux_sym_cmd_identifier_token39] = ACTIONS(2399), - [aux_sym_cmd_identifier_token40] = ACTIONS(2399), - [anon_sym_def] = ACTIONS(2399), - [anon_sym_export_DASHenv] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_error] = ACTIONS(2399), - [anon_sym_DASH2] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_in2] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_make] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_do] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_catch] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_source] = ACTIONS(2399), - [anon_sym_source_DASHenv] = ACTIONS(2399), - [anon_sym_register] = ACTIONS(2399), - [anon_sym_hide] = ACTIONS(2399), - [anon_sym_hide_DASHenv] = ACTIONS(2399), - [anon_sym_overlay] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_PLUS2] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2399), - [aux_sym__val_number_decimal_token1] = ACTIONS(2399), - [aux_sym__val_number_decimal_token2] = ACTIONS(2399), - [aux_sym__val_number_decimal_token3] = ACTIONS(2399), - [aux_sym__val_number_decimal_token4] = ACTIONS(2399), - [aux_sym__val_number_token1] = ACTIONS(2399), - [aux_sym__val_number_token2] = ACTIONS(2399), - [aux_sym__val_number_token3] = ACTIONS(2399), - [aux_sym__val_number_token4] = ACTIONS(2399), - [aux_sym__val_number_token5] = ACTIONS(2399), - [aux_sym__val_number_token6] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym__str_single_quotes] = ACTIONS(2399), - [sym__str_back_ticks] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), - [sym__entry_separator] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2401), + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1665), + [aux_sym_cmd_identifier_token3] = ACTIONS(1665), + [aux_sym_cmd_identifier_token4] = ACTIONS(1665), + [aux_sym_cmd_identifier_token5] = ACTIONS(1665), + [aux_sym_cmd_identifier_token6] = ACTIONS(1665), + [aux_sym_cmd_identifier_token7] = ACTIONS(1665), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1665), + [aux_sym_cmd_identifier_token11] = ACTIONS(1665), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1665), + [aux_sym_cmd_identifier_token17] = ACTIONS(1665), + [aux_sym_cmd_identifier_token18] = ACTIONS(1665), + [aux_sym_cmd_identifier_token19] = ACTIONS(1665), + [aux_sym_cmd_identifier_token20] = ACTIONS(1665), + [aux_sym_cmd_identifier_token21] = ACTIONS(1665), + [aux_sym_cmd_identifier_token22] = ACTIONS(1665), + [aux_sym_cmd_identifier_token23] = ACTIONS(1665), + [aux_sym_cmd_identifier_token24] = ACTIONS(1665), + [aux_sym_cmd_identifier_token25] = ACTIONS(1665), + [aux_sym_cmd_identifier_token26] = ACTIONS(1665), + [aux_sym_cmd_identifier_token27] = ACTIONS(1665), + [aux_sym_cmd_identifier_token28] = ACTIONS(1665), + [aux_sym_cmd_identifier_token29] = ACTIONS(1665), + [aux_sym_cmd_identifier_token30] = ACTIONS(1665), + [aux_sym_cmd_identifier_token31] = ACTIONS(1665), + [aux_sym_cmd_identifier_token32] = ACTIONS(1665), + [aux_sym_cmd_identifier_token33] = ACTIONS(1665), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1665), + [aux_sym_cmd_identifier_token36] = ACTIONS(1665), + [aux_sym_cmd_identifier_token37] = ACTIONS(1665), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1665), + [aux_sym_cmd_identifier_token40] = ACTIONS(1665), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1653), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1665), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_alias] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_let_DASHenv] = ACTIONS(2403), - [anon_sym_mut] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [aux_sym_cmd_identifier_token1] = ACTIONS(2403), - [aux_sym_cmd_identifier_token2] = ACTIONS(2403), - [aux_sym_cmd_identifier_token3] = ACTIONS(2403), - [aux_sym_cmd_identifier_token4] = ACTIONS(2403), - [aux_sym_cmd_identifier_token5] = ACTIONS(2403), - [aux_sym_cmd_identifier_token6] = ACTIONS(2403), - [aux_sym_cmd_identifier_token7] = ACTIONS(2403), - [aux_sym_cmd_identifier_token8] = ACTIONS(2403), - [aux_sym_cmd_identifier_token9] = ACTIONS(2403), - [aux_sym_cmd_identifier_token10] = ACTIONS(2403), - [aux_sym_cmd_identifier_token11] = ACTIONS(2403), - [aux_sym_cmd_identifier_token12] = ACTIONS(2403), - [aux_sym_cmd_identifier_token13] = ACTIONS(2403), - [aux_sym_cmd_identifier_token14] = ACTIONS(2403), - [aux_sym_cmd_identifier_token15] = ACTIONS(2403), - [aux_sym_cmd_identifier_token16] = ACTIONS(2403), - [aux_sym_cmd_identifier_token17] = ACTIONS(2403), - [aux_sym_cmd_identifier_token18] = ACTIONS(2403), - [aux_sym_cmd_identifier_token19] = ACTIONS(2403), - [aux_sym_cmd_identifier_token20] = ACTIONS(2403), - [aux_sym_cmd_identifier_token21] = ACTIONS(2403), - [aux_sym_cmd_identifier_token22] = ACTIONS(2403), - [aux_sym_cmd_identifier_token23] = ACTIONS(2403), - [aux_sym_cmd_identifier_token24] = ACTIONS(2403), - [aux_sym_cmd_identifier_token25] = ACTIONS(2403), - [aux_sym_cmd_identifier_token26] = ACTIONS(2403), - [aux_sym_cmd_identifier_token27] = ACTIONS(2403), - [aux_sym_cmd_identifier_token28] = ACTIONS(2403), - [aux_sym_cmd_identifier_token29] = ACTIONS(2403), - [aux_sym_cmd_identifier_token30] = ACTIONS(2403), - [aux_sym_cmd_identifier_token31] = ACTIONS(2403), - [aux_sym_cmd_identifier_token32] = ACTIONS(2403), - [aux_sym_cmd_identifier_token33] = ACTIONS(2403), - [aux_sym_cmd_identifier_token34] = ACTIONS(2403), - [aux_sym_cmd_identifier_token35] = ACTIONS(2403), - [aux_sym_cmd_identifier_token36] = ACTIONS(2403), - [aux_sym_cmd_identifier_token37] = ACTIONS(2403), - [aux_sym_cmd_identifier_token38] = ACTIONS(2403), - [aux_sym_cmd_identifier_token39] = ACTIONS(2403), - [aux_sym_cmd_identifier_token40] = ACTIONS(2403), - [anon_sym_def] = ACTIONS(2403), - [anon_sym_export_DASHenv] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_error] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_in2] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_make] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_source] = ACTIONS(2403), - [anon_sym_source_DASHenv] = ACTIONS(2403), - [anon_sym_register] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_hide_DASHenv] = ACTIONS(2403), - [anon_sym_overlay] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2403), - [aux_sym__val_number_decimal_token3] = ACTIONS(2403), - [aux_sym__val_number_decimal_token4] = ACTIONS(2403), - [aux_sym__val_number_token1] = ACTIONS(2403), - [aux_sym__val_number_token2] = ACTIONS(2403), - [aux_sym__val_number_token3] = ACTIONS(2403), - [aux_sym__val_number_token4] = ACTIONS(2403), - [aux_sym__val_number_token5] = ACTIONS(2403), - [aux_sym__val_number_token6] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym__str_single_quotes] = ACTIONS(2403), - [sym__str_back_ticks] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), - [sym__entry_separator] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2405), + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2313), + [aux_sym_cmd_identifier_token3] = ACTIONS(2313), + [aux_sym_cmd_identifier_token4] = ACTIONS(2313), + [aux_sym_cmd_identifier_token5] = ACTIONS(2313), + [aux_sym_cmd_identifier_token6] = ACTIONS(2313), + [aux_sym_cmd_identifier_token7] = ACTIONS(2313), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2313), + [aux_sym_cmd_identifier_token11] = ACTIONS(2313), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2313), + [aux_sym_cmd_identifier_token17] = ACTIONS(2313), + [aux_sym_cmd_identifier_token18] = ACTIONS(2313), + [aux_sym_cmd_identifier_token19] = ACTIONS(2313), + [aux_sym_cmd_identifier_token20] = ACTIONS(2313), + [aux_sym_cmd_identifier_token21] = ACTIONS(2313), + [aux_sym_cmd_identifier_token22] = ACTIONS(2313), + [aux_sym_cmd_identifier_token23] = ACTIONS(2313), + [aux_sym_cmd_identifier_token24] = ACTIONS(2313), + [aux_sym_cmd_identifier_token25] = ACTIONS(2313), + [aux_sym_cmd_identifier_token26] = ACTIONS(2313), + [aux_sym_cmd_identifier_token27] = ACTIONS(2313), + [aux_sym_cmd_identifier_token28] = ACTIONS(2313), + [aux_sym_cmd_identifier_token29] = ACTIONS(2313), + [aux_sym_cmd_identifier_token30] = ACTIONS(2313), + [aux_sym_cmd_identifier_token31] = ACTIONS(2313), + [aux_sym_cmd_identifier_token32] = ACTIONS(2313), + [aux_sym_cmd_identifier_token33] = ACTIONS(2313), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2313), + [aux_sym_cmd_identifier_token36] = ACTIONS(2313), + [aux_sym_cmd_identifier_token37] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_DASH2] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in2] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(2313), + [anon_sym_PLUS2] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [aux_sym__val_number_token4] = ACTIONS(2311), + [aux_sym__val_number_token5] = ACTIONS(2311), + [aux_sym__val_number_token6] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2313), }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(2407), - [anon_sym_alias] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_let_DASHenv] = ACTIONS(2407), - [anon_sym_mut] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [aux_sym_cmd_identifier_token1] = ACTIONS(2407), - [aux_sym_cmd_identifier_token2] = ACTIONS(2407), - [aux_sym_cmd_identifier_token3] = ACTIONS(2407), - [aux_sym_cmd_identifier_token4] = ACTIONS(2407), - [aux_sym_cmd_identifier_token5] = ACTIONS(2407), - [aux_sym_cmd_identifier_token6] = ACTIONS(2407), - [aux_sym_cmd_identifier_token7] = ACTIONS(2407), - [aux_sym_cmd_identifier_token8] = ACTIONS(2407), - [aux_sym_cmd_identifier_token9] = ACTIONS(2407), - [aux_sym_cmd_identifier_token10] = ACTIONS(2407), - [aux_sym_cmd_identifier_token11] = ACTIONS(2407), - [aux_sym_cmd_identifier_token12] = ACTIONS(2407), - [aux_sym_cmd_identifier_token13] = ACTIONS(2407), - [aux_sym_cmd_identifier_token14] = ACTIONS(2407), - [aux_sym_cmd_identifier_token15] = ACTIONS(2407), - [aux_sym_cmd_identifier_token16] = ACTIONS(2407), - [aux_sym_cmd_identifier_token17] = ACTIONS(2407), - [aux_sym_cmd_identifier_token18] = ACTIONS(2407), - [aux_sym_cmd_identifier_token19] = ACTIONS(2407), - [aux_sym_cmd_identifier_token20] = ACTIONS(2407), - [aux_sym_cmd_identifier_token21] = ACTIONS(2407), - [aux_sym_cmd_identifier_token22] = ACTIONS(2407), - [aux_sym_cmd_identifier_token23] = ACTIONS(2407), - [aux_sym_cmd_identifier_token24] = ACTIONS(2407), - [aux_sym_cmd_identifier_token25] = ACTIONS(2407), - [aux_sym_cmd_identifier_token26] = ACTIONS(2407), - [aux_sym_cmd_identifier_token27] = ACTIONS(2407), - [aux_sym_cmd_identifier_token28] = ACTIONS(2407), - [aux_sym_cmd_identifier_token29] = ACTIONS(2407), - [aux_sym_cmd_identifier_token30] = ACTIONS(2407), - [aux_sym_cmd_identifier_token31] = ACTIONS(2407), - [aux_sym_cmd_identifier_token32] = ACTIONS(2407), - [aux_sym_cmd_identifier_token33] = ACTIONS(2407), - [aux_sym_cmd_identifier_token34] = ACTIONS(2407), - [aux_sym_cmd_identifier_token35] = ACTIONS(2407), - [aux_sym_cmd_identifier_token36] = ACTIONS(2407), - [aux_sym_cmd_identifier_token37] = ACTIONS(2407), - [aux_sym_cmd_identifier_token38] = ACTIONS(2407), - [aux_sym_cmd_identifier_token39] = ACTIONS(2407), - [aux_sym_cmd_identifier_token40] = ACTIONS(2407), - [anon_sym_def] = ACTIONS(2407), - [anon_sym_export_DASHenv] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_module] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_error] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_in2] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_make] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_do] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_catch] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_source] = ACTIONS(2407), - [anon_sym_source_DASHenv] = ACTIONS(2407), - [anon_sym_register] = ACTIONS(2407), - [anon_sym_hide] = ACTIONS(2407), - [anon_sym_hide_DASHenv] = ACTIONS(2407), - [anon_sym_overlay] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), - [aux_sym__val_number_decimal_token1] = ACTIONS(2407), - [aux_sym__val_number_decimal_token2] = ACTIONS(2407), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), - [aux_sym__val_number_token1] = ACTIONS(2407), - [aux_sym__val_number_token2] = ACTIONS(2407), - [aux_sym__val_number_token3] = ACTIONS(2407), - [aux_sym__val_number_token4] = ACTIONS(2407), - [aux_sym__val_number_token5] = ACTIONS(2407), - [aux_sym__val_number_token6] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym__str_single_quotes] = ACTIONS(2407), - [sym__str_back_ticks] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), - [sym__entry_separator] = ACTIONS(2409), + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2138), + [aux_sym_cmd_identifier_token3] = ACTIONS(2138), + [aux_sym_cmd_identifier_token4] = ACTIONS(2138), + [aux_sym_cmd_identifier_token5] = ACTIONS(2138), + [aux_sym_cmd_identifier_token6] = ACTIONS(2138), + [aux_sym_cmd_identifier_token7] = ACTIONS(2138), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2138), + [aux_sym_cmd_identifier_token11] = ACTIONS(2138), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2138), + [aux_sym_cmd_identifier_token17] = ACTIONS(2138), + [aux_sym_cmd_identifier_token18] = ACTIONS(2138), + [aux_sym_cmd_identifier_token19] = ACTIONS(2138), + [aux_sym_cmd_identifier_token20] = ACTIONS(2138), + [aux_sym_cmd_identifier_token21] = ACTIONS(2138), + [aux_sym_cmd_identifier_token22] = ACTIONS(2138), + [aux_sym_cmd_identifier_token23] = ACTIONS(2138), + [aux_sym_cmd_identifier_token24] = ACTIONS(2138), + [aux_sym_cmd_identifier_token25] = ACTIONS(2138), + [aux_sym_cmd_identifier_token26] = ACTIONS(2138), + [aux_sym_cmd_identifier_token27] = ACTIONS(2138), + [aux_sym_cmd_identifier_token28] = ACTIONS(2138), + [aux_sym_cmd_identifier_token29] = ACTIONS(2138), + [aux_sym_cmd_identifier_token30] = ACTIONS(2138), + [aux_sym_cmd_identifier_token31] = ACTIONS(2138), + [aux_sym_cmd_identifier_token32] = ACTIONS(2138), + [aux_sym_cmd_identifier_token33] = ACTIONS(2138), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2138), + [aux_sym_cmd_identifier_token36] = ACTIONS(2138), + [aux_sym_cmd_identifier_token37] = ACTIONS(2138), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2138), + [aux_sym_cmd_identifier_token40] = ACTIONS(2138), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2138), + [aux_sym__val_number_decimal_token3] = ACTIONS(2138), + [aux_sym__val_number_decimal_token4] = ACTIONS(2138), + [aux_sym__val_number_token1] = ACTIONS(2138), + [aux_sym__val_number_token2] = ACTIONS(2138), + [aux_sym__val_number_token3] = ACTIONS(2138), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [sym__str_single_quotes] = ACTIONS(2138), + [sym__str_back_ticks] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), + [sym__entry_separator] = ACTIONS(2140), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2409), + [sym_raw_string_begin] = ACTIONS(2140), }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_alias] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_let_DASHenv] = ACTIONS(2411), - [anon_sym_mut] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [aux_sym_cmd_identifier_token1] = ACTIONS(2411), - [aux_sym_cmd_identifier_token2] = ACTIONS(2411), - [aux_sym_cmd_identifier_token3] = ACTIONS(2411), - [aux_sym_cmd_identifier_token4] = ACTIONS(2411), - [aux_sym_cmd_identifier_token5] = ACTIONS(2411), - [aux_sym_cmd_identifier_token6] = ACTIONS(2411), - [aux_sym_cmd_identifier_token7] = ACTIONS(2411), - [aux_sym_cmd_identifier_token8] = ACTIONS(2411), - [aux_sym_cmd_identifier_token9] = ACTIONS(2411), - [aux_sym_cmd_identifier_token10] = ACTIONS(2411), - [aux_sym_cmd_identifier_token11] = ACTIONS(2411), - [aux_sym_cmd_identifier_token12] = ACTIONS(2411), - [aux_sym_cmd_identifier_token13] = ACTIONS(2411), - [aux_sym_cmd_identifier_token14] = ACTIONS(2411), - [aux_sym_cmd_identifier_token15] = ACTIONS(2411), - [aux_sym_cmd_identifier_token16] = ACTIONS(2411), - [aux_sym_cmd_identifier_token17] = ACTIONS(2411), - [aux_sym_cmd_identifier_token18] = ACTIONS(2411), - [aux_sym_cmd_identifier_token19] = ACTIONS(2411), - [aux_sym_cmd_identifier_token20] = ACTIONS(2411), - [aux_sym_cmd_identifier_token21] = ACTIONS(2411), - [aux_sym_cmd_identifier_token22] = ACTIONS(2411), - [aux_sym_cmd_identifier_token23] = ACTIONS(2411), - [aux_sym_cmd_identifier_token24] = ACTIONS(2411), - [aux_sym_cmd_identifier_token25] = ACTIONS(2411), - [aux_sym_cmd_identifier_token26] = ACTIONS(2411), - [aux_sym_cmd_identifier_token27] = ACTIONS(2411), - [aux_sym_cmd_identifier_token28] = ACTIONS(2411), - [aux_sym_cmd_identifier_token29] = ACTIONS(2411), - [aux_sym_cmd_identifier_token30] = ACTIONS(2411), - [aux_sym_cmd_identifier_token31] = ACTIONS(2411), - [aux_sym_cmd_identifier_token32] = ACTIONS(2411), - [aux_sym_cmd_identifier_token33] = ACTIONS(2411), - [aux_sym_cmd_identifier_token34] = ACTIONS(2411), - [aux_sym_cmd_identifier_token35] = ACTIONS(2411), - [aux_sym_cmd_identifier_token36] = ACTIONS(2411), - [aux_sym_cmd_identifier_token37] = ACTIONS(2411), - [aux_sym_cmd_identifier_token38] = ACTIONS(2411), - [aux_sym_cmd_identifier_token39] = ACTIONS(2411), - [aux_sym_cmd_identifier_token40] = ACTIONS(2411), - [anon_sym_def] = ACTIONS(2411), - [anon_sym_export_DASHenv] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_error] = ACTIONS(2411), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_in2] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_make] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_do] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_else] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_catch] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_source] = ACTIONS(2411), - [anon_sym_source_DASHenv] = ACTIONS(2411), - [anon_sym_register] = ACTIONS(2411), - [anon_sym_hide] = ACTIONS(2411), - [anon_sym_hide_DASHenv] = ACTIONS(2411), - [anon_sym_overlay] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), - [aux_sym__val_number_decimal_token1] = ACTIONS(2411), - [aux_sym__val_number_decimal_token2] = ACTIONS(2411), - [aux_sym__val_number_decimal_token3] = ACTIONS(2411), - [aux_sym__val_number_decimal_token4] = ACTIONS(2411), - [aux_sym__val_number_token1] = ACTIONS(2411), - [aux_sym__val_number_token2] = ACTIONS(2411), - [aux_sym__val_number_token3] = ACTIONS(2411), - [aux_sym__val_number_token4] = ACTIONS(2411), - [aux_sym__val_number_token5] = ACTIONS(2411), - [aux_sym__val_number_token6] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2411), - [sym__str_back_ticks] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), - [sym__entry_separator] = ACTIONS(2413), + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_alias] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_let_DASHenv] = ACTIONS(1922), + [anon_sym_mut] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [aux_sym_cmd_identifier_token1] = ACTIONS(1922), + [aux_sym_cmd_identifier_token2] = ACTIONS(1922), + [aux_sym_cmd_identifier_token3] = ACTIONS(1922), + [aux_sym_cmd_identifier_token4] = ACTIONS(1922), + [aux_sym_cmd_identifier_token5] = ACTIONS(1922), + [aux_sym_cmd_identifier_token6] = ACTIONS(1922), + [aux_sym_cmd_identifier_token7] = ACTIONS(1922), + [aux_sym_cmd_identifier_token8] = ACTIONS(1922), + [aux_sym_cmd_identifier_token9] = ACTIONS(1922), + [aux_sym_cmd_identifier_token10] = ACTIONS(1922), + [aux_sym_cmd_identifier_token11] = ACTIONS(1922), + [aux_sym_cmd_identifier_token12] = ACTIONS(1922), + [aux_sym_cmd_identifier_token13] = ACTIONS(1922), + [aux_sym_cmd_identifier_token14] = ACTIONS(1922), + [aux_sym_cmd_identifier_token15] = ACTIONS(1922), + [aux_sym_cmd_identifier_token16] = ACTIONS(1922), + [aux_sym_cmd_identifier_token17] = ACTIONS(1922), + [aux_sym_cmd_identifier_token18] = ACTIONS(1922), + [aux_sym_cmd_identifier_token19] = ACTIONS(1922), + [aux_sym_cmd_identifier_token20] = ACTIONS(1922), + [aux_sym_cmd_identifier_token21] = ACTIONS(1922), + [aux_sym_cmd_identifier_token22] = ACTIONS(1922), + [aux_sym_cmd_identifier_token23] = ACTIONS(1922), + [aux_sym_cmd_identifier_token24] = ACTIONS(1922), + [aux_sym_cmd_identifier_token25] = ACTIONS(1922), + [aux_sym_cmd_identifier_token26] = ACTIONS(1922), + [aux_sym_cmd_identifier_token27] = ACTIONS(1922), + [aux_sym_cmd_identifier_token28] = ACTIONS(1922), + [aux_sym_cmd_identifier_token29] = ACTIONS(1922), + [aux_sym_cmd_identifier_token30] = ACTIONS(1922), + [aux_sym_cmd_identifier_token31] = ACTIONS(1922), + [aux_sym_cmd_identifier_token32] = ACTIONS(1922), + [aux_sym_cmd_identifier_token33] = ACTIONS(1922), + [aux_sym_cmd_identifier_token34] = ACTIONS(1922), + [aux_sym_cmd_identifier_token35] = ACTIONS(1922), + [aux_sym_cmd_identifier_token36] = ACTIONS(1922), + [aux_sym_cmd_identifier_token37] = ACTIONS(1922), + [aux_sym_cmd_identifier_token38] = ACTIONS(1922), + [aux_sym_cmd_identifier_token39] = ACTIONS(1922), + [aux_sym_cmd_identifier_token40] = ACTIONS(1922), + [anon_sym_def] = ACTIONS(1922), + [anon_sym_export_DASHenv] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_error] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_in2] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_make] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_else] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_try] = ACTIONS(1922), + [anon_sym_catch] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_source] = ACTIONS(1922), + [anon_sym_source_DASHenv] = ACTIONS(1922), + [anon_sym_register] = ACTIONS(1922), + [anon_sym_hide] = ACTIONS(1922), + [anon_sym_hide_DASHenv] = ACTIONS(1922), + [anon_sym_overlay] = ACTIONS(1922), + [anon_sym_as] = ACTIONS(1922), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1922), + [aux_sym__val_number_decimal_token2] = ACTIONS(1922), + [aux_sym__val_number_decimal_token3] = ACTIONS(1922), + [aux_sym__val_number_decimal_token4] = ACTIONS(1922), + [aux_sym__val_number_token1] = ACTIONS(1922), + [aux_sym__val_number_token2] = ACTIONS(1922), + [aux_sym__val_number_token3] = ACTIONS(1922), + [aux_sym__val_number_token4] = ACTIONS(1922), + [aux_sym__val_number_token5] = ACTIONS(1922), + [aux_sym__val_number_token6] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [sym__str_single_quotes] = ACTIONS(1922), + [sym__str_back_ticks] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1922), + [sym__entry_separator] = ACTIONS(1924), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2413), + [sym_raw_string_begin] = ACTIONS(1924), }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_alias] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_let_DASHenv] = ACTIONS(2415), - [anon_sym_mut] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [aux_sym_cmd_identifier_token1] = ACTIONS(2415), - [aux_sym_cmd_identifier_token2] = ACTIONS(2415), - [aux_sym_cmd_identifier_token3] = ACTIONS(2415), - [aux_sym_cmd_identifier_token4] = ACTIONS(2415), - [aux_sym_cmd_identifier_token5] = ACTIONS(2415), - [aux_sym_cmd_identifier_token6] = ACTIONS(2415), - [aux_sym_cmd_identifier_token7] = ACTIONS(2415), - [aux_sym_cmd_identifier_token8] = ACTIONS(2415), - [aux_sym_cmd_identifier_token9] = ACTIONS(2415), - [aux_sym_cmd_identifier_token10] = ACTIONS(2415), - [aux_sym_cmd_identifier_token11] = ACTIONS(2415), - [aux_sym_cmd_identifier_token12] = ACTIONS(2415), - [aux_sym_cmd_identifier_token13] = ACTIONS(2415), - [aux_sym_cmd_identifier_token14] = ACTIONS(2415), - [aux_sym_cmd_identifier_token15] = ACTIONS(2415), - [aux_sym_cmd_identifier_token16] = ACTIONS(2415), - [aux_sym_cmd_identifier_token17] = ACTIONS(2415), - [aux_sym_cmd_identifier_token18] = ACTIONS(2415), - [aux_sym_cmd_identifier_token19] = ACTIONS(2415), - [aux_sym_cmd_identifier_token20] = ACTIONS(2415), - [aux_sym_cmd_identifier_token21] = ACTIONS(2415), - [aux_sym_cmd_identifier_token22] = ACTIONS(2415), - [aux_sym_cmd_identifier_token23] = ACTIONS(2415), - [aux_sym_cmd_identifier_token24] = ACTIONS(2415), - [aux_sym_cmd_identifier_token25] = ACTIONS(2415), - [aux_sym_cmd_identifier_token26] = ACTIONS(2415), - [aux_sym_cmd_identifier_token27] = ACTIONS(2415), - [aux_sym_cmd_identifier_token28] = ACTIONS(2415), - [aux_sym_cmd_identifier_token29] = ACTIONS(2415), - [aux_sym_cmd_identifier_token30] = ACTIONS(2415), - [aux_sym_cmd_identifier_token31] = ACTIONS(2415), - [aux_sym_cmd_identifier_token32] = ACTIONS(2415), - [aux_sym_cmd_identifier_token33] = ACTIONS(2415), - [aux_sym_cmd_identifier_token34] = ACTIONS(2415), - [aux_sym_cmd_identifier_token35] = ACTIONS(2415), - [aux_sym_cmd_identifier_token36] = ACTIONS(2415), - [aux_sym_cmd_identifier_token37] = ACTIONS(2415), - [aux_sym_cmd_identifier_token38] = ACTIONS(2415), - [aux_sym_cmd_identifier_token39] = ACTIONS(2415), - [aux_sym_cmd_identifier_token40] = ACTIONS(2415), - [anon_sym_def] = ACTIONS(2415), - [anon_sym_export_DASHenv] = ACTIONS(2415), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2415), - [anon_sym_error] = ACTIONS(2415), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_in2] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_make] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_catch] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_source] = ACTIONS(2415), - [anon_sym_source_DASHenv] = ACTIONS(2415), - [anon_sym_register] = ACTIONS(2415), - [anon_sym_hide] = ACTIONS(2415), - [anon_sym_hide_DASHenv] = ACTIONS(2415), - [anon_sym_overlay] = ACTIONS(2415), - [anon_sym_as] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), - [aux_sym__val_number_decimal_token1] = ACTIONS(2415), - [aux_sym__val_number_decimal_token2] = ACTIONS(2415), - [aux_sym__val_number_decimal_token3] = ACTIONS(2415), - [aux_sym__val_number_decimal_token4] = ACTIONS(2415), - [aux_sym__val_number_token1] = ACTIONS(2415), - [aux_sym__val_number_token2] = ACTIONS(2415), - [aux_sym__val_number_token3] = ACTIONS(2415), - [aux_sym__val_number_token4] = ACTIONS(2415), - [aux_sym__val_number_token5] = ACTIONS(2415), - [aux_sym__val_number_token6] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym__str_single_quotes] = ACTIONS(2415), - [sym__str_back_ticks] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), - [sym__entry_separator] = ACTIONS(2417), + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2049), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2417), + [sym_raw_string_begin] = ACTIONS(2049), }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_alias] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_let_DASHenv] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [aux_sym_cmd_identifier_token1] = ACTIONS(2419), - [aux_sym_cmd_identifier_token2] = ACTIONS(2419), - [aux_sym_cmd_identifier_token3] = ACTIONS(2419), - [aux_sym_cmd_identifier_token4] = ACTIONS(2419), - [aux_sym_cmd_identifier_token5] = ACTIONS(2419), - [aux_sym_cmd_identifier_token6] = ACTIONS(2419), - [aux_sym_cmd_identifier_token7] = ACTIONS(2419), - [aux_sym_cmd_identifier_token8] = ACTIONS(2419), - [aux_sym_cmd_identifier_token9] = ACTIONS(2419), - [aux_sym_cmd_identifier_token10] = ACTIONS(2419), - [aux_sym_cmd_identifier_token11] = ACTIONS(2419), - [aux_sym_cmd_identifier_token12] = ACTIONS(2419), - [aux_sym_cmd_identifier_token13] = ACTIONS(2419), - [aux_sym_cmd_identifier_token14] = ACTIONS(2419), - [aux_sym_cmd_identifier_token15] = ACTIONS(2419), - [aux_sym_cmd_identifier_token16] = ACTIONS(2419), - [aux_sym_cmd_identifier_token17] = ACTIONS(2419), - [aux_sym_cmd_identifier_token18] = ACTIONS(2419), - [aux_sym_cmd_identifier_token19] = ACTIONS(2419), - [aux_sym_cmd_identifier_token20] = ACTIONS(2419), - [aux_sym_cmd_identifier_token21] = ACTIONS(2419), - [aux_sym_cmd_identifier_token22] = ACTIONS(2419), - [aux_sym_cmd_identifier_token23] = ACTIONS(2419), - [aux_sym_cmd_identifier_token24] = ACTIONS(2419), - [aux_sym_cmd_identifier_token25] = ACTIONS(2419), - [aux_sym_cmd_identifier_token26] = ACTIONS(2419), - [aux_sym_cmd_identifier_token27] = ACTIONS(2419), - [aux_sym_cmd_identifier_token28] = ACTIONS(2419), - [aux_sym_cmd_identifier_token29] = ACTIONS(2419), - [aux_sym_cmd_identifier_token30] = ACTIONS(2419), - [aux_sym_cmd_identifier_token31] = ACTIONS(2419), - [aux_sym_cmd_identifier_token32] = ACTIONS(2419), - [aux_sym_cmd_identifier_token33] = ACTIONS(2419), - [aux_sym_cmd_identifier_token34] = ACTIONS(2419), - [aux_sym_cmd_identifier_token35] = ACTIONS(2419), - [aux_sym_cmd_identifier_token36] = ACTIONS(2419), - [aux_sym_cmd_identifier_token37] = ACTIONS(2419), - [aux_sym_cmd_identifier_token38] = ACTIONS(2419), - [aux_sym_cmd_identifier_token39] = ACTIONS(2419), - [aux_sym_cmd_identifier_token40] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2419), - [anon_sym_export_DASHenv] = ACTIONS(2419), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_error] = ACTIONS(2419), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_in2] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_make] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_do] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_else] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_catch] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_source] = ACTIONS(2419), - [anon_sym_source_DASHenv] = ACTIONS(2419), - [anon_sym_register] = ACTIONS(2419), - [anon_sym_hide] = ACTIONS(2419), - [anon_sym_hide_DASHenv] = ACTIONS(2419), - [anon_sym_overlay] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2419), - [aux_sym__val_number_decimal_token2] = ACTIONS(2419), - [aux_sym__val_number_decimal_token3] = ACTIONS(2419), - [aux_sym__val_number_decimal_token4] = ACTIONS(2419), - [aux_sym__val_number_token1] = ACTIONS(2419), - [aux_sym__val_number_token2] = ACTIONS(2419), - [aux_sym__val_number_token3] = ACTIONS(2419), - [aux_sym__val_number_token4] = ACTIONS(2419), - [aux_sym__val_number_token5] = ACTIONS(2419), - [aux_sym__val_number_token6] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym__str_single_quotes] = ACTIONS(2419), - [sym__str_back_ticks] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), - [sym__entry_separator] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2421), + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_alias] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_let_DASHenv] = ACTIONS(2297), + [anon_sym_mut] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [aux_sym_cmd_identifier_token1] = ACTIONS(2297), + [aux_sym_cmd_identifier_token2] = ACTIONS(2299), + [aux_sym_cmd_identifier_token3] = ACTIONS(2299), + [aux_sym_cmd_identifier_token4] = ACTIONS(2299), + [aux_sym_cmd_identifier_token5] = ACTIONS(2299), + [aux_sym_cmd_identifier_token6] = ACTIONS(2299), + [aux_sym_cmd_identifier_token7] = ACTIONS(2299), + [aux_sym_cmd_identifier_token8] = ACTIONS(2297), + [aux_sym_cmd_identifier_token9] = ACTIONS(2297), + [aux_sym_cmd_identifier_token10] = ACTIONS(2299), + [aux_sym_cmd_identifier_token11] = ACTIONS(2299), + [aux_sym_cmd_identifier_token12] = ACTIONS(2297), + [aux_sym_cmd_identifier_token13] = ACTIONS(2297), + [aux_sym_cmd_identifier_token14] = ACTIONS(2297), + [aux_sym_cmd_identifier_token15] = ACTIONS(2297), + [aux_sym_cmd_identifier_token16] = ACTIONS(2299), + [aux_sym_cmd_identifier_token17] = ACTIONS(2299), + [aux_sym_cmd_identifier_token18] = ACTIONS(2299), + [aux_sym_cmd_identifier_token19] = ACTIONS(2299), + [aux_sym_cmd_identifier_token20] = ACTIONS(2299), + [aux_sym_cmd_identifier_token21] = ACTIONS(2299), + [aux_sym_cmd_identifier_token22] = ACTIONS(2299), + [aux_sym_cmd_identifier_token23] = ACTIONS(2299), + [aux_sym_cmd_identifier_token24] = ACTIONS(2299), + [aux_sym_cmd_identifier_token25] = ACTIONS(2299), + [aux_sym_cmd_identifier_token26] = ACTIONS(2299), + [aux_sym_cmd_identifier_token27] = ACTIONS(2299), + [aux_sym_cmd_identifier_token28] = ACTIONS(2299), + [aux_sym_cmd_identifier_token29] = ACTIONS(2299), + [aux_sym_cmd_identifier_token30] = ACTIONS(2299), + [aux_sym_cmd_identifier_token31] = ACTIONS(2299), + [aux_sym_cmd_identifier_token32] = ACTIONS(2299), + [aux_sym_cmd_identifier_token33] = ACTIONS(2299), + [aux_sym_cmd_identifier_token34] = ACTIONS(2297), + [aux_sym_cmd_identifier_token35] = ACTIONS(2299), + [aux_sym_cmd_identifier_token36] = ACTIONS(2299), + [aux_sym_cmd_identifier_token37] = ACTIONS(2299), + [aux_sym_cmd_identifier_token38] = ACTIONS(2297), + [aux_sym_cmd_identifier_token39] = ACTIONS(2299), + [aux_sym_cmd_identifier_token40] = ACTIONS(2299), + [anon_sym_def] = ACTIONS(2297), + [anon_sym_export_DASHenv] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2299), + [anon_sym_error] = ACTIONS(2297), + [anon_sym_DASH2] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_in2] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_make] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_catch] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_source] = ACTIONS(2297), + [anon_sym_source_DASHenv] = ACTIONS(2297), + [anon_sym_register] = ACTIONS(2297), + [anon_sym_hide] = ACTIONS(2297), + [anon_sym_hide_DASHenv] = ACTIONS(2297), + [anon_sym_overlay] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(2299), + [anon_sym_PLUS2] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2299), + [aux_sym__val_number_decimal_token1] = ACTIONS(2297), + [aux_sym__val_number_decimal_token2] = ACTIONS(2299), + [aux_sym__val_number_decimal_token3] = ACTIONS(2299), + [aux_sym__val_number_decimal_token4] = ACTIONS(2299), + [aux_sym__val_number_token1] = ACTIONS(2299), + [aux_sym__val_number_token2] = ACTIONS(2299), + [aux_sym__val_number_token3] = ACTIONS(2299), + [aux_sym__val_number_token4] = ACTIONS(2297), + [aux_sym__val_number_token5] = ACTIONS(2297), + [aux_sym__val_number_token6] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(2299), + [sym__str_single_quotes] = ACTIONS(2299), + [sym__str_back_ticks] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2299), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_alias] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_let_DASHenv] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [aux_sym_cmd_identifier_token1] = ACTIONS(2423), - [aux_sym_cmd_identifier_token2] = ACTIONS(2423), - [aux_sym_cmd_identifier_token3] = ACTIONS(2423), - [aux_sym_cmd_identifier_token4] = ACTIONS(2423), - [aux_sym_cmd_identifier_token5] = ACTIONS(2423), - [aux_sym_cmd_identifier_token6] = ACTIONS(2423), - [aux_sym_cmd_identifier_token7] = ACTIONS(2423), - [aux_sym_cmd_identifier_token8] = ACTIONS(2423), - [aux_sym_cmd_identifier_token9] = ACTIONS(2423), - [aux_sym_cmd_identifier_token10] = ACTIONS(2423), - [aux_sym_cmd_identifier_token11] = ACTIONS(2423), - [aux_sym_cmd_identifier_token12] = ACTIONS(2423), - [aux_sym_cmd_identifier_token13] = ACTIONS(2423), - [aux_sym_cmd_identifier_token14] = ACTIONS(2423), - [aux_sym_cmd_identifier_token15] = ACTIONS(2423), - [aux_sym_cmd_identifier_token16] = ACTIONS(2423), - [aux_sym_cmd_identifier_token17] = ACTIONS(2423), - [aux_sym_cmd_identifier_token18] = ACTIONS(2423), - [aux_sym_cmd_identifier_token19] = ACTIONS(2423), - [aux_sym_cmd_identifier_token20] = ACTIONS(2423), - [aux_sym_cmd_identifier_token21] = ACTIONS(2423), - [aux_sym_cmd_identifier_token22] = ACTIONS(2423), - [aux_sym_cmd_identifier_token23] = ACTIONS(2423), - [aux_sym_cmd_identifier_token24] = ACTIONS(2423), - [aux_sym_cmd_identifier_token25] = ACTIONS(2423), - [aux_sym_cmd_identifier_token26] = ACTIONS(2423), - [aux_sym_cmd_identifier_token27] = ACTIONS(2423), - [aux_sym_cmd_identifier_token28] = ACTIONS(2423), - [aux_sym_cmd_identifier_token29] = ACTIONS(2423), - [aux_sym_cmd_identifier_token30] = ACTIONS(2423), - [aux_sym_cmd_identifier_token31] = ACTIONS(2423), - [aux_sym_cmd_identifier_token32] = ACTIONS(2423), - [aux_sym_cmd_identifier_token33] = ACTIONS(2423), - [aux_sym_cmd_identifier_token34] = ACTIONS(2423), - [aux_sym_cmd_identifier_token35] = ACTIONS(2423), - [aux_sym_cmd_identifier_token36] = ACTIONS(2423), - [aux_sym_cmd_identifier_token37] = ACTIONS(2423), - [aux_sym_cmd_identifier_token38] = ACTIONS(2423), - [aux_sym_cmd_identifier_token39] = ACTIONS(2423), - [aux_sym_cmd_identifier_token40] = ACTIONS(2423), - [anon_sym_def] = ACTIONS(2423), - [anon_sym_export_DASHenv] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2423), - [anon_sym_error] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_in2] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_make] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_else] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_catch] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_source] = ACTIONS(2423), - [anon_sym_source_DASHenv] = ACTIONS(2423), - [anon_sym_register] = ACTIONS(2423), - [anon_sym_hide] = ACTIONS(2423), - [anon_sym_hide_DASHenv] = ACTIONS(2423), - [anon_sym_overlay] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_PLUS2] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), - [aux_sym__val_number_decimal_token1] = ACTIONS(2423), - [aux_sym__val_number_decimal_token2] = ACTIONS(2423), - [aux_sym__val_number_decimal_token3] = ACTIONS(2423), - [aux_sym__val_number_decimal_token4] = ACTIONS(2423), - [aux_sym__val_number_token1] = ACTIONS(2423), - [aux_sym__val_number_token2] = ACTIONS(2423), - [aux_sym__val_number_token3] = ACTIONS(2423), - [aux_sym__val_number_token4] = ACTIONS(2423), - [aux_sym__val_number_token5] = ACTIONS(2423), - [aux_sym__val_number_token6] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym__str_single_quotes] = ACTIONS(2423), - [sym__str_back_ticks] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), - [sym__entry_separator] = ACTIONS(2425), + [684] = { + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_alias] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_let_DASHenv] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [aux_sym_cmd_identifier_token1] = ACTIONS(2501), + [aux_sym_cmd_identifier_token2] = ACTIONS(2501), + [aux_sym_cmd_identifier_token3] = ACTIONS(2501), + [aux_sym_cmd_identifier_token4] = ACTIONS(2501), + [aux_sym_cmd_identifier_token5] = ACTIONS(2501), + [aux_sym_cmd_identifier_token6] = ACTIONS(2501), + [aux_sym_cmd_identifier_token7] = ACTIONS(2501), + [aux_sym_cmd_identifier_token8] = ACTIONS(2501), + [aux_sym_cmd_identifier_token9] = ACTIONS(2501), + [aux_sym_cmd_identifier_token10] = ACTIONS(2501), + [aux_sym_cmd_identifier_token11] = ACTIONS(2501), + [aux_sym_cmd_identifier_token12] = ACTIONS(2501), + [aux_sym_cmd_identifier_token13] = ACTIONS(2501), + [aux_sym_cmd_identifier_token14] = ACTIONS(2501), + [aux_sym_cmd_identifier_token15] = ACTIONS(2501), + [aux_sym_cmd_identifier_token16] = ACTIONS(2501), + [aux_sym_cmd_identifier_token17] = ACTIONS(2501), + [aux_sym_cmd_identifier_token18] = ACTIONS(2501), + [aux_sym_cmd_identifier_token19] = ACTIONS(2501), + [aux_sym_cmd_identifier_token20] = ACTIONS(2501), + [aux_sym_cmd_identifier_token21] = ACTIONS(2501), + [aux_sym_cmd_identifier_token22] = ACTIONS(2501), + [aux_sym_cmd_identifier_token23] = ACTIONS(2501), + [aux_sym_cmd_identifier_token24] = ACTIONS(2501), + [aux_sym_cmd_identifier_token25] = ACTIONS(2501), + [aux_sym_cmd_identifier_token26] = ACTIONS(2501), + [aux_sym_cmd_identifier_token27] = ACTIONS(2501), + [aux_sym_cmd_identifier_token28] = ACTIONS(2501), + [aux_sym_cmd_identifier_token29] = ACTIONS(2501), + [aux_sym_cmd_identifier_token30] = ACTIONS(2501), + [aux_sym_cmd_identifier_token31] = ACTIONS(2501), + [aux_sym_cmd_identifier_token32] = ACTIONS(2501), + [aux_sym_cmd_identifier_token33] = ACTIONS(2501), + [aux_sym_cmd_identifier_token34] = ACTIONS(2501), + [aux_sym_cmd_identifier_token35] = ACTIONS(2501), + [aux_sym_cmd_identifier_token36] = ACTIONS(2501), + [aux_sym_cmd_identifier_token37] = ACTIONS(2501), + [aux_sym_cmd_identifier_token38] = ACTIONS(2501), + [aux_sym_cmd_identifier_token39] = ACTIONS(2501), + [aux_sym_cmd_identifier_token40] = ACTIONS(2501), + [anon_sym_def] = ACTIONS(2501), + [anon_sym_export_DASHenv] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_DOLLAR] = ACTIONS(2501), + [anon_sym_error] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_in2] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_make] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_catch] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_source] = ACTIONS(2501), + [anon_sym_source_DASHenv] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_hide] = ACTIONS(2501), + [anon_sym_hide_DASHenv] = ACTIONS(2501), + [anon_sym_overlay] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), + [aux_sym__val_number_decimal_token1] = ACTIONS(2501), + [aux_sym__val_number_decimal_token2] = ACTIONS(2501), + [aux_sym__val_number_decimal_token3] = ACTIONS(2501), + [aux_sym__val_number_decimal_token4] = ACTIONS(2501), + [aux_sym__val_number_token1] = ACTIONS(2501), + [aux_sym__val_number_token2] = ACTIONS(2501), + [aux_sym__val_number_token3] = ACTIONS(2501), + [aux_sym__val_number_token4] = ACTIONS(2501), + [aux_sym__val_number_token5] = ACTIONS(2501), + [aux_sym__val_number_token6] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym__str_single_quotes] = ACTIONS(2501), + [sym__str_back_ticks] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), + [sym__entry_separator] = ACTIONS(2503), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2425), + [sym_raw_string_begin] = ACTIONS(2503), }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_alias] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_let_DASHenv] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [aux_sym_cmd_identifier_token1] = ACTIONS(2427), - [aux_sym_cmd_identifier_token2] = ACTIONS(2427), - [aux_sym_cmd_identifier_token3] = ACTIONS(2427), - [aux_sym_cmd_identifier_token4] = ACTIONS(2427), - [aux_sym_cmd_identifier_token5] = ACTIONS(2427), - [aux_sym_cmd_identifier_token6] = ACTIONS(2427), - [aux_sym_cmd_identifier_token7] = ACTIONS(2427), - [aux_sym_cmd_identifier_token8] = ACTIONS(2427), - [aux_sym_cmd_identifier_token9] = ACTIONS(2427), - [aux_sym_cmd_identifier_token10] = ACTIONS(2427), - [aux_sym_cmd_identifier_token11] = ACTIONS(2427), - [aux_sym_cmd_identifier_token12] = ACTIONS(2427), - [aux_sym_cmd_identifier_token13] = ACTIONS(2427), - [aux_sym_cmd_identifier_token14] = ACTIONS(2427), - [aux_sym_cmd_identifier_token15] = ACTIONS(2427), - [aux_sym_cmd_identifier_token16] = ACTIONS(2427), - [aux_sym_cmd_identifier_token17] = ACTIONS(2427), - [aux_sym_cmd_identifier_token18] = ACTIONS(2427), - [aux_sym_cmd_identifier_token19] = ACTIONS(2427), - [aux_sym_cmd_identifier_token20] = ACTIONS(2427), - [aux_sym_cmd_identifier_token21] = ACTIONS(2427), - [aux_sym_cmd_identifier_token22] = ACTIONS(2427), - [aux_sym_cmd_identifier_token23] = ACTIONS(2427), - [aux_sym_cmd_identifier_token24] = ACTIONS(2427), - [aux_sym_cmd_identifier_token25] = ACTIONS(2427), - [aux_sym_cmd_identifier_token26] = ACTIONS(2427), - [aux_sym_cmd_identifier_token27] = ACTIONS(2427), - [aux_sym_cmd_identifier_token28] = ACTIONS(2427), - [aux_sym_cmd_identifier_token29] = ACTIONS(2427), - [aux_sym_cmd_identifier_token30] = ACTIONS(2427), - [aux_sym_cmd_identifier_token31] = ACTIONS(2427), - [aux_sym_cmd_identifier_token32] = ACTIONS(2427), - [aux_sym_cmd_identifier_token33] = ACTIONS(2427), - [aux_sym_cmd_identifier_token34] = ACTIONS(2427), - [aux_sym_cmd_identifier_token35] = ACTIONS(2427), - [aux_sym_cmd_identifier_token36] = ACTIONS(2427), - [aux_sym_cmd_identifier_token37] = ACTIONS(2427), - [aux_sym_cmd_identifier_token38] = ACTIONS(2427), - [aux_sym_cmd_identifier_token39] = ACTIONS(2427), - [aux_sym_cmd_identifier_token40] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_export_DASHenv] = ACTIONS(2427), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_error] = ACTIONS(2427), - [anon_sym_DASH2] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_in2] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_make] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_do] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_else] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_catch] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_source] = ACTIONS(2427), - [anon_sym_source_DASHenv] = ACTIONS(2427), - [anon_sym_register] = ACTIONS(2427), - [anon_sym_hide] = ACTIONS(2427), - [anon_sym_hide_DASHenv] = ACTIONS(2427), - [anon_sym_overlay] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_PLUS2] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), - [aux_sym__val_number_decimal_token1] = ACTIONS(2427), - [aux_sym__val_number_decimal_token2] = ACTIONS(2427), - [aux_sym__val_number_decimal_token3] = ACTIONS(2427), - [aux_sym__val_number_decimal_token4] = ACTIONS(2427), - [aux_sym__val_number_token1] = ACTIONS(2427), - [aux_sym__val_number_token2] = ACTIONS(2427), - [aux_sym__val_number_token3] = ACTIONS(2427), - [aux_sym__val_number_token4] = ACTIONS(2427), - [aux_sym__val_number_token5] = ACTIONS(2427), - [aux_sym__val_number_token6] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym__str_single_quotes] = ACTIONS(2427), - [sym__str_back_ticks] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), - [sym__entry_separator] = ACTIONS(2429), + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(2505), + [anon_sym_alias] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_let_DASHenv] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [aux_sym_cmd_identifier_token1] = ACTIONS(2505), + [aux_sym_cmd_identifier_token2] = ACTIONS(2505), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [aux_sym_cmd_identifier_token6] = ACTIONS(2505), + [aux_sym_cmd_identifier_token7] = ACTIONS(2505), + [aux_sym_cmd_identifier_token8] = ACTIONS(2505), + [aux_sym_cmd_identifier_token9] = ACTIONS(2505), + [aux_sym_cmd_identifier_token10] = ACTIONS(2505), + [aux_sym_cmd_identifier_token11] = ACTIONS(2505), + [aux_sym_cmd_identifier_token12] = ACTIONS(2505), + [aux_sym_cmd_identifier_token13] = ACTIONS(2505), + [aux_sym_cmd_identifier_token14] = ACTIONS(2505), + [aux_sym_cmd_identifier_token15] = ACTIONS(2505), + [aux_sym_cmd_identifier_token16] = ACTIONS(2505), + [aux_sym_cmd_identifier_token17] = ACTIONS(2505), + [aux_sym_cmd_identifier_token18] = ACTIONS(2505), + [aux_sym_cmd_identifier_token19] = ACTIONS(2505), + [aux_sym_cmd_identifier_token20] = ACTIONS(2505), + [aux_sym_cmd_identifier_token21] = ACTIONS(2505), + [aux_sym_cmd_identifier_token22] = ACTIONS(2505), + [aux_sym_cmd_identifier_token23] = ACTIONS(2505), + [aux_sym_cmd_identifier_token24] = ACTIONS(2505), + [aux_sym_cmd_identifier_token25] = ACTIONS(2505), + [aux_sym_cmd_identifier_token26] = ACTIONS(2505), + [aux_sym_cmd_identifier_token27] = ACTIONS(2505), + [aux_sym_cmd_identifier_token28] = ACTIONS(2505), + [aux_sym_cmd_identifier_token29] = ACTIONS(2505), + [aux_sym_cmd_identifier_token30] = ACTIONS(2505), + [aux_sym_cmd_identifier_token31] = ACTIONS(2505), + [aux_sym_cmd_identifier_token32] = ACTIONS(2505), + [aux_sym_cmd_identifier_token33] = ACTIONS(2505), + [aux_sym_cmd_identifier_token34] = ACTIONS(2505), + [aux_sym_cmd_identifier_token35] = ACTIONS(2505), + [aux_sym_cmd_identifier_token36] = ACTIONS(2505), + [aux_sym_cmd_identifier_token37] = ACTIONS(2505), + [aux_sym_cmd_identifier_token38] = ACTIONS(2505), + [aux_sym_cmd_identifier_token39] = ACTIONS(2505), + [aux_sym_cmd_identifier_token40] = ACTIONS(2505), + [anon_sym_def] = ACTIONS(2505), + [anon_sym_export_DASHenv] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_module] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_DOLLAR] = ACTIONS(2505), + [anon_sym_error] = ACTIONS(2505), + [anon_sym_DASH2] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_in2] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_make] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_catch] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_source] = ACTIONS(2505), + [anon_sym_source_DASHenv] = ACTIONS(2505), + [anon_sym_register] = ACTIONS(2505), + [anon_sym_hide] = ACTIONS(2505), + [anon_sym_hide_DASHenv] = ACTIONS(2505), + [anon_sym_overlay] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_PLUS2] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2505), + [aux_sym__val_number_decimal_token1] = ACTIONS(2505), + [aux_sym__val_number_decimal_token2] = ACTIONS(2505), + [aux_sym__val_number_decimal_token3] = ACTIONS(2505), + [aux_sym__val_number_decimal_token4] = ACTIONS(2505), + [aux_sym__val_number_token1] = ACTIONS(2505), + [aux_sym__val_number_token2] = ACTIONS(2505), + [aux_sym__val_number_token3] = ACTIONS(2505), + [aux_sym__val_number_token4] = ACTIONS(2505), + [aux_sym__val_number_token5] = ACTIONS(2505), + [aux_sym__val_number_token6] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym__str_single_quotes] = ACTIONS(2505), + [sym__str_back_ticks] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2505), + [sym__entry_separator] = ACTIONS(2507), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2429), + [sym_raw_string_begin] = ACTIONS(2507), }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_alias] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_let_DASHenv] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [aux_sym_cmd_identifier_token1] = ACTIONS(2431), - [aux_sym_cmd_identifier_token2] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), - [aux_sym_cmd_identifier_token6] = ACTIONS(2431), - [aux_sym_cmd_identifier_token7] = ACTIONS(2431), - [aux_sym_cmd_identifier_token8] = ACTIONS(2431), - [aux_sym_cmd_identifier_token9] = ACTIONS(2431), - [aux_sym_cmd_identifier_token10] = ACTIONS(2431), - [aux_sym_cmd_identifier_token11] = ACTIONS(2431), - [aux_sym_cmd_identifier_token12] = ACTIONS(2431), - [aux_sym_cmd_identifier_token13] = ACTIONS(2431), - [aux_sym_cmd_identifier_token14] = ACTIONS(2431), - [aux_sym_cmd_identifier_token15] = ACTIONS(2431), - [aux_sym_cmd_identifier_token16] = ACTIONS(2431), - [aux_sym_cmd_identifier_token17] = ACTIONS(2431), - [aux_sym_cmd_identifier_token18] = ACTIONS(2431), - [aux_sym_cmd_identifier_token19] = ACTIONS(2431), - [aux_sym_cmd_identifier_token20] = ACTIONS(2431), - [aux_sym_cmd_identifier_token21] = ACTIONS(2431), - [aux_sym_cmd_identifier_token22] = ACTIONS(2431), - [aux_sym_cmd_identifier_token23] = ACTIONS(2431), - [aux_sym_cmd_identifier_token24] = ACTIONS(2431), - [aux_sym_cmd_identifier_token25] = ACTIONS(2431), - [aux_sym_cmd_identifier_token26] = ACTIONS(2431), - [aux_sym_cmd_identifier_token27] = ACTIONS(2431), - [aux_sym_cmd_identifier_token28] = ACTIONS(2431), - [aux_sym_cmd_identifier_token29] = ACTIONS(2431), - [aux_sym_cmd_identifier_token30] = ACTIONS(2431), - [aux_sym_cmd_identifier_token31] = ACTIONS(2431), - [aux_sym_cmd_identifier_token32] = ACTIONS(2431), - [aux_sym_cmd_identifier_token33] = ACTIONS(2431), - [aux_sym_cmd_identifier_token34] = ACTIONS(2431), - [aux_sym_cmd_identifier_token35] = ACTIONS(2431), - [aux_sym_cmd_identifier_token36] = ACTIONS(2431), - [aux_sym_cmd_identifier_token37] = ACTIONS(2431), - [aux_sym_cmd_identifier_token38] = ACTIONS(2431), - [aux_sym_cmd_identifier_token39] = ACTIONS(2431), - [aux_sym_cmd_identifier_token40] = ACTIONS(2431), - [anon_sym_def] = ACTIONS(2431), - [anon_sym_export_DASHenv] = ACTIONS(2431), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_error] = ACTIONS(2431), - [anon_sym_DASH2] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_in2] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_make] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_else] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_catch] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_source] = ACTIONS(2431), - [anon_sym_source_DASHenv] = ACTIONS(2431), - [anon_sym_register] = ACTIONS(2431), - [anon_sym_hide] = ACTIONS(2431), - [anon_sym_hide_DASHenv] = ACTIONS(2431), - [anon_sym_overlay] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_PLUS2] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), - [aux_sym__val_number_decimal_token1] = ACTIONS(2431), - [aux_sym__val_number_decimal_token2] = ACTIONS(2431), - [aux_sym__val_number_decimal_token3] = ACTIONS(2431), - [aux_sym__val_number_decimal_token4] = ACTIONS(2431), - [aux_sym__val_number_token1] = ACTIONS(2431), - [aux_sym__val_number_token2] = ACTIONS(2431), - [aux_sym__val_number_token3] = ACTIONS(2431), - [aux_sym__val_number_token4] = ACTIONS(2431), - [aux_sym__val_number_token5] = ACTIONS(2431), - [aux_sym__val_number_token6] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym__str_single_quotes] = ACTIONS(2431), - [sym__str_back_ticks] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), - [sym__entry_separator] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2433), + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2305), + [anon_sym_alias] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_let_DASHenv] = ACTIONS(2305), + [anon_sym_mut] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [aux_sym_cmd_identifier_token1] = ACTIONS(2305), + [aux_sym_cmd_identifier_token2] = ACTIONS(2309), + [aux_sym_cmd_identifier_token3] = ACTIONS(2309), + [aux_sym_cmd_identifier_token4] = ACTIONS(2309), + [aux_sym_cmd_identifier_token5] = ACTIONS(2309), + [aux_sym_cmd_identifier_token6] = ACTIONS(2309), + [aux_sym_cmd_identifier_token7] = ACTIONS(2309), + [aux_sym_cmd_identifier_token8] = ACTIONS(2305), + [aux_sym_cmd_identifier_token9] = ACTIONS(2305), + [aux_sym_cmd_identifier_token10] = ACTIONS(2309), + [aux_sym_cmd_identifier_token11] = ACTIONS(2309), + [aux_sym_cmd_identifier_token12] = ACTIONS(2305), + [aux_sym_cmd_identifier_token13] = ACTIONS(2305), + [aux_sym_cmd_identifier_token14] = ACTIONS(2305), + [aux_sym_cmd_identifier_token15] = ACTIONS(2305), + [aux_sym_cmd_identifier_token16] = ACTIONS(2309), + [aux_sym_cmd_identifier_token17] = ACTIONS(2309), + [aux_sym_cmd_identifier_token18] = ACTIONS(2309), + [aux_sym_cmd_identifier_token19] = ACTIONS(2309), + [aux_sym_cmd_identifier_token20] = ACTIONS(2309), + [aux_sym_cmd_identifier_token21] = ACTIONS(2309), + [aux_sym_cmd_identifier_token22] = ACTIONS(2309), + [aux_sym_cmd_identifier_token23] = ACTIONS(2309), + [aux_sym_cmd_identifier_token24] = ACTIONS(2309), + [aux_sym_cmd_identifier_token25] = ACTIONS(2309), + [aux_sym_cmd_identifier_token26] = ACTIONS(2309), + [aux_sym_cmd_identifier_token27] = ACTIONS(2309), + [aux_sym_cmd_identifier_token28] = ACTIONS(2309), + [aux_sym_cmd_identifier_token29] = ACTIONS(2309), + [aux_sym_cmd_identifier_token30] = ACTIONS(2309), + [aux_sym_cmd_identifier_token31] = ACTIONS(2309), + [aux_sym_cmd_identifier_token32] = ACTIONS(2309), + [aux_sym_cmd_identifier_token33] = ACTIONS(2309), + [aux_sym_cmd_identifier_token34] = ACTIONS(2305), + [aux_sym_cmd_identifier_token35] = ACTIONS(2309), + [aux_sym_cmd_identifier_token36] = ACTIONS(2309), + [aux_sym_cmd_identifier_token37] = ACTIONS(2309), + [aux_sym_cmd_identifier_token38] = ACTIONS(2305), + [aux_sym_cmd_identifier_token39] = ACTIONS(2309), + [aux_sym_cmd_identifier_token40] = ACTIONS(2309), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_export_DASHenv] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_module] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_error] = ACTIONS(2305), + [anon_sym_DASH2] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_in2] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_make] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_do] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_else] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_catch] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_source] = ACTIONS(2305), + [anon_sym_source_DASHenv] = ACTIONS(2305), + [anon_sym_register] = ACTIONS(2305), + [anon_sym_hide] = ACTIONS(2305), + [anon_sym_hide_DASHenv] = ACTIONS(2305), + [anon_sym_overlay] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_PLUS2] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2309), + [aux_sym__val_number_decimal_token3] = ACTIONS(2309), + [aux_sym__val_number_decimal_token4] = ACTIONS(2309), + [aux_sym__val_number_token1] = ACTIONS(2309), + [aux_sym__val_number_token2] = ACTIONS(2309), + [aux_sym__val_number_token3] = ACTIONS(2309), + [aux_sym__val_number_token4] = ACTIONS(2305), + [aux_sym__val_number_token5] = ACTIONS(2305), + [aux_sym__val_number_token6] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym__str_single_quotes] = ACTIONS(2309), + [sym__str_back_ticks] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2309), }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_alias] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_let_DASHenv] = ACTIONS(2435), - [anon_sym_mut] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [aux_sym_cmd_identifier_token1] = ACTIONS(2435), - [aux_sym_cmd_identifier_token2] = ACTIONS(2435), - [aux_sym_cmd_identifier_token3] = ACTIONS(2435), - [aux_sym_cmd_identifier_token4] = ACTIONS(2435), - [aux_sym_cmd_identifier_token5] = ACTIONS(2435), - [aux_sym_cmd_identifier_token6] = ACTIONS(2435), - [aux_sym_cmd_identifier_token7] = ACTIONS(2435), - [aux_sym_cmd_identifier_token8] = ACTIONS(2435), - [aux_sym_cmd_identifier_token9] = ACTIONS(2435), - [aux_sym_cmd_identifier_token10] = ACTIONS(2435), - [aux_sym_cmd_identifier_token11] = ACTIONS(2435), - [aux_sym_cmd_identifier_token12] = ACTIONS(2435), - [aux_sym_cmd_identifier_token13] = ACTIONS(2435), - [aux_sym_cmd_identifier_token14] = ACTIONS(2435), - [aux_sym_cmd_identifier_token15] = ACTIONS(2435), - [aux_sym_cmd_identifier_token16] = ACTIONS(2435), - [aux_sym_cmd_identifier_token17] = ACTIONS(2435), - [aux_sym_cmd_identifier_token18] = ACTIONS(2435), - [aux_sym_cmd_identifier_token19] = ACTIONS(2435), - [aux_sym_cmd_identifier_token20] = ACTIONS(2435), - [aux_sym_cmd_identifier_token21] = ACTIONS(2435), - [aux_sym_cmd_identifier_token22] = ACTIONS(2435), - [aux_sym_cmd_identifier_token23] = ACTIONS(2435), - [aux_sym_cmd_identifier_token24] = ACTIONS(2435), - [aux_sym_cmd_identifier_token25] = ACTIONS(2435), - [aux_sym_cmd_identifier_token26] = ACTIONS(2435), - [aux_sym_cmd_identifier_token27] = ACTIONS(2435), - [aux_sym_cmd_identifier_token28] = ACTIONS(2435), - [aux_sym_cmd_identifier_token29] = ACTIONS(2435), - [aux_sym_cmd_identifier_token30] = ACTIONS(2435), - [aux_sym_cmd_identifier_token31] = ACTIONS(2435), - [aux_sym_cmd_identifier_token32] = ACTIONS(2435), - [aux_sym_cmd_identifier_token33] = ACTIONS(2435), - [aux_sym_cmd_identifier_token34] = ACTIONS(2435), - [aux_sym_cmd_identifier_token35] = ACTIONS(2435), - [aux_sym_cmd_identifier_token36] = ACTIONS(2435), - [aux_sym_cmd_identifier_token37] = ACTIONS(2435), - [aux_sym_cmd_identifier_token38] = ACTIONS(2435), - [aux_sym_cmd_identifier_token39] = ACTIONS(2435), - [aux_sym_cmd_identifier_token40] = ACTIONS(2435), - [anon_sym_def] = ACTIONS(2435), - [anon_sym_export_DASHenv] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_error] = ACTIONS(2435), - [anon_sym_DASH2] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_in2] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_make] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_catch] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_source] = ACTIONS(2435), - [anon_sym_source_DASHenv] = ACTIONS(2435), - [anon_sym_register] = ACTIONS(2435), - [anon_sym_hide] = ACTIONS(2435), - [anon_sym_hide_DASHenv] = ACTIONS(2435), - [anon_sym_overlay] = ACTIONS(2435), - [anon_sym_as] = ACTIONS(2435), - [anon_sym_PLUS2] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), - [aux_sym__val_number_decimal_token1] = ACTIONS(2435), - [aux_sym__val_number_decimal_token2] = ACTIONS(2435), - [aux_sym__val_number_decimal_token3] = ACTIONS(2435), - [aux_sym__val_number_decimal_token4] = ACTIONS(2435), - [aux_sym__val_number_token1] = ACTIONS(2435), - [aux_sym__val_number_token2] = ACTIONS(2435), - [aux_sym__val_number_token3] = ACTIONS(2435), - [aux_sym__val_number_token4] = ACTIONS(2435), - [aux_sym__val_number_token5] = ACTIONS(2435), - [aux_sym__val_number_token6] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym__str_single_quotes] = ACTIONS(2435), - [sym__str_back_ticks] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), - [sym__entry_separator] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2437), + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_let_DASHenv] = ACTIONS(962), + [anon_sym_mut] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [aux_sym_cmd_identifier_token1] = ACTIONS(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(962), + [aux_sym_cmd_identifier_token9] = ACTIONS(962), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(962), + [aux_sym_cmd_identifier_token13] = ACTIONS(962), + [aux_sym_cmd_identifier_token14] = ACTIONS(962), + [aux_sym_cmd_identifier_token15] = ACTIONS(962), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(962), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(962), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(962), + [anon_sym_export_DASHenv] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_make] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_source] = ACTIONS(962), + [anon_sym_source_DASHenv] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_hide] = ACTIONS(962), + [anon_sym_hide_DASHenv] = ACTIONS(962), + [anon_sym_overlay] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(962), + [aux_sym__val_number_token5] = ACTIONS(962), + [aux_sym__val_number_token6] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2439), - [anon_sym_alias] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_let_DASHenv] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [aux_sym_cmd_identifier_token1] = ACTIONS(2439), + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), [aux_sym_cmd_identifier_token2] = ACTIONS(2439), [aux_sym_cmd_identifier_token3] = ACTIONS(2439), [aux_sym_cmd_identifier_token4] = ACTIONS(2439), [aux_sym_cmd_identifier_token5] = ACTIONS(2439), [aux_sym_cmd_identifier_token6] = ACTIONS(2439), [aux_sym_cmd_identifier_token7] = ACTIONS(2439), - [aux_sym_cmd_identifier_token8] = ACTIONS(2439), - [aux_sym_cmd_identifier_token9] = ACTIONS(2439), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), [aux_sym_cmd_identifier_token10] = ACTIONS(2439), [aux_sym_cmd_identifier_token11] = ACTIONS(2439), - [aux_sym_cmd_identifier_token12] = ACTIONS(2439), - [aux_sym_cmd_identifier_token13] = ACTIONS(2439), - [aux_sym_cmd_identifier_token14] = ACTIONS(2439), - [aux_sym_cmd_identifier_token15] = ACTIONS(2439), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), [aux_sym_cmd_identifier_token16] = ACTIONS(2439), [aux_sym_cmd_identifier_token17] = ACTIONS(2439), [aux_sym_cmd_identifier_token18] = ACTIONS(2439), @@ -154692,88 +153614,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2439), [aux_sym_cmd_identifier_token32] = ACTIONS(2439), [aux_sym_cmd_identifier_token33] = ACTIONS(2439), - [aux_sym_cmd_identifier_token34] = ACTIONS(2439), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), [aux_sym_cmd_identifier_token35] = ACTIONS(2439), [aux_sym_cmd_identifier_token36] = ACTIONS(2439), [aux_sym_cmd_identifier_token37] = ACTIONS(2439), - [aux_sym_cmd_identifier_token38] = ACTIONS(2439), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), [aux_sym_cmd_identifier_token39] = ACTIONS(2439), [aux_sym_cmd_identifier_token40] = ACTIONS(2439), - [anon_sym_def] = ACTIONS(2439), - [anon_sym_export_DASHenv] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_module] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), [anon_sym_LPAREN] = ACTIONS(2439), [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_error] = ACTIONS(2439), - [anon_sym_DASH2] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_in2] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_make] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_do] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_else] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_catch] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_source] = ACTIONS(2439), - [anon_sym_source_DASHenv] = ACTIONS(2439), - [anon_sym_register] = ACTIONS(2439), - [anon_sym_hide] = ACTIONS(2439), - [anon_sym_hide_DASHenv] = ACTIONS(2439), - [anon_sym_overlay] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_PLUS2] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2437), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), [aux_sym__val_number_decimal_token2] = ACTIONS(2439), [aux_sym__val_number_decimal_token3] = ACTIONS(2439), [aux_sym__val_number_decimal_token4] = ACTIONS(2439), [aux_sym__val_number_token1] = ACTIONS(2439), [aux_sym__val_number_token2] = ACTIONS(2439), [aux_sym__val_number_token3] = ACTIONS(2439), - [aux_sym__val_number_token4] = ACTIONS(2439), - [aux_sym__val_number_token5] = ACTIONS(2439), - [aux_sym__val_number_token6] = ACTIONS(2439), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), [anon_sym_DQUOTE] = ACTIONS(2439), [sym__str_single_quotes] = ACTIONS(2439), [sym__str_back_ticks] = ACTIONS(2439), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), - [sym__entry_separator] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2441), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2439), }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [aux_sym_cmd_identifier_token1] = ACTIONS(2443), + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), [aux_sym_cmd_identifier_token2] = ACTIONS(2443), [aux_sym_cmd_identifier_token3] = ACTIONS(2443), [aux_sym_cmd_identifier_token4] = ACTIONS(2443), [aux_sym_cmd_identifier_token5] = ACTIONS(2443), [aux_sym_cmd_identifier_token6] = ACTIONS(2443), [aux_sym_cmd_identifier_token7] = ACTIONS(2443), - [aux_sym_cmd_identifier_token8] = ACTIONS(2443), - [aux_sym_cmd_identifier_token9] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), [aux_sym_cmd_identifier_token10] = ACTIONS(2443), [aux_sym_cmd_identifier_token11] = ACTIONS(2443), - [aux_sym_cmd_identifier_token12] = ACTIONS(2443), - [aux_sym_cmd_identifier_token13] = ACTIONS(2443), - [aux_sym_cmd_identifier_token14] = ACTIONS(2443), - [aux_sym_cmd_identifier_token15] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), [aux_sym_cmd_identifier_token16] = ACTIONS(2443), [aux_sym_cmd_identifier_token17] = ACTIONS(2443), [aux_sym_cmd_identifier_token18] = ACTIONS(2443), @@ -154792,88 +153713,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2443), [aux_sym_cmd_identifier_token32] = ACTIONS(2443), [aux_sym_cmd_identifier_token33] = ACTIONS(2443), - [aux_sym_cmd_identifier_token34] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), [aux_sym_cmd_identifier_token35] = ACTIONS(2443), [aux_sym_cmd_identifier_token36] = ACTIONS(2443), [aux_sym_cmd_identifier_token37] = ACTIONS(2443), - [aux_sym_cmd_identifier_token38] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), [aux_sym_cmd_identifier_token39] = ACTIONS(2443), [aux_sym_cmd_identifier_token40] = ACTIONS(2443), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), [anon_sym_LPAREN] = ACTIONS(2443), [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_in2] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_make] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_catch] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2441), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), - [aux_sym__val_number_decimal_token1] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), [aux_sym__val_number_decimal_token2] = ACTIONS(2443), [aux_sym__val_number_decimal_token3] = ACTIONS(2443), [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(2443), [aux_sym__val_number_token2] = ACTIONS(2443), [aux_sym__val_number_token3] = ACTIONS(2443), - [aux_sym__val_number_token4] = ACTIONS(2443), - [aux_sym__val_number_token5] = ACTIONS(2443), - [aux_sym__val_number_token6] = ACTIONS(2443), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), [anon_sym_DQUOTE] = ACTIONS(2443), [sym__str_single_quotes] = ACTIONS(2443), [sym__str_back_ticks] = ACTIONS(2443), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), - [sym__entry_separator] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2443), }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(2447), - [anon_sym_alias] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_let_DASHenv] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [aux_sym_cmd_identifier_token1] = ACTIONS(2447), + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), [aux_sym_cmd_identifier_token2] = ACTIONS(2447), [aux_sym_cmd_identifier_token3] = ACTIONS(2447), [aux_sym_cmd_identifier_token4] = ACTIONS(2447), [aux_sym_cmd_identifier_token5] = ACTIONS(2447), [aux_sym_cmd_identifier_token6] = ACTIONS(2447), [aux_sym_cmd_identifier_token7] = ACTIONS(2447), - [aux_sym_cmd_identifier_token8] = ACTIONS(2447), - [aux_sym_cmd_identifier_token9] = ACTIONS(2447), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), [aux_sym_cmd_identifier_token10] = ACTIONS(2447), [aux_sym_cmd_identifier_token11] = ACTIONS(2447), - [aux_sym_cmd_identifier_token12] = ACTIONS(2447), - [aux_sym_cmd_identifier_token13] = ACTIONS(2447), - [aux_sym_cmd_identifier_token14] = ACTIONS(2447), - [aux_sym_cmd_identifier_token15] = ACTIONS(2447), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), [aux_sym_cmd_identifier_token16] = ACTIONS(2447), [aux_sym_cmd_identifier_token17] = ACTIONS(2447), [aux_sym_cmd_identifier_token18] = ACTIONS(2447), @@ -154892,2388 +153812,2166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2447), [aux_sym_cmd_identifier_token32] = ACTIONS(2447), [aux_sym_cmd_identifier_token33] = ACTIONS(2447), - [aux_sym_cmd_identifier_token34] = ACTIONS(2447), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), [aux_sym_cmd_identifier_token35] = ACTIONS(2447), [aux_sym_cmd_identifier_token36] = ACTIONS(2447), [aux_sym_cmd_identifier_token37] = ACTIONS(2447), - [aux_sym_cmd_identifier_token38] = ACTIONS(2447), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), [aux_sym_cmd_identifier_token39] = ACTIONS(2447), [aux_sym_cmd_identifier_token40] = ACTIONS(2447), - [anon_sym_def] = ACTIONS(2447), - [anon_sym_export_DASHenv] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_module] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), [anon_sym_LPAREN] = ACTIONS(2447), [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_error] = ACTIONS(2447), - [anon_sym_DASH2] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_in2] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_make] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_catch] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_source] = ACTIONS(2447), - [anon_sym_source_DASHenv] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_hide] = ACTIONS(2447), - [anon_sym_hide_DASHenv] = ACTIONS(2447), - [anon_sym_overlay] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), - [aux_sym__val_number_decimal_token1] = ACTIONS(2447), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), [aux_sym__val_number_decimal_token2] = ACTIONS(2447), [aux_sym__val_number_decimal_token3] = ACTIONS(2447), [aux_sym__val_number_decimal_token4] = ACTIONS(2447), [aux_sym__val_number_token1] = ACTIONS(2447), [aux_sym__val_number_token2] = ACTIONS(2447), [aux_sym__val_number_token3] = ACTIONS(2447), - [aux_sym__val_number_token4] = ACTIONS(2447), - [aux_sym__val_number_token5] = ACTIONS(2447), - [aux_sym__val_number_token6] = ACTIONS(2447), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(2447), [sym__str_single_quotes] = ACTIONS(2447), [sym__str_back_ticks] = ACTIONS(2447), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), - [sym__entry_separator] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2449), - }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [aux_sym_cmd_identifier_token37] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), - }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_alias] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_let_DASHenv] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [aux_sym_cmd_identifier_token1] = ACTIONS(2041), - [aux_sym_cmd_identifier_token2] = ACTIONS(2041), - [aux_sym_cmd_identifier_token3] = ACTIONS(2041), - [aux_sym_cmd_identifier_token4] = ACTIONS(2041), - [aux_sym_cmd_identifier_token5] = ACTIONS(2041), - [aux_sym_cmd_identifier_token6] = ACTIONS(2041), - [aux_sym_cmd_identifier_token7] = ACTIONS(2041), - [aux_sym_cmd_identifier_token8] = ACTIONS(2041), - [aux_sym_cmd_identifier_token9] = ACTIONS(2041), - [aux_sym_cmd_identifier_token10] = ACTIONS(2041), - [aux_sym_cmd_identifier_token11] = ACTIONS(2041), - [aux_sym_cmd_identifier_token12] = ACTIONS(2041), - [aux_sym_cmd_identifier_token13] = ACTIONS(2041), - [aux_sym_cmd_identifier_token14] = ACTIONS(2041), - [aux_sym_cmd_identifier_token15] = ACTIONS(2041), - [aux_sym_cmd_identifier_token16] = ACTIONS(2041), - [aux_sym_cmd_identifier_token17] = ACTIONS(2041), - [aux_sym_cmd_identifier_token18] = ACTIONS(2041), - [aux_sym_cmd_identifier_token19] = ACTIONS(2041), - [aux_sym_cmd_identifier_token20] = ACTIONS(2041), - [aux_sym_cmd_identifier_token21] = ACTIONS(2041), - [aux_sym_cmd_identifier_token22] = ACTIONS(2041), - [aux_sym_cmd_identifier_token23] = ACTIONS(2041), - [aux_sym_cmd_identifier_token24] = ACTIONS(2041), - [aux_sym_cmd_identifier_token25] = ACTIONS(2041), - [aux_sym_cmd_identifier_token26] = ACTIONS(2041), - [aux_sym_cmd_identifier_token27] = ACTIONS(2041), - [aux_sym_cmd_identifier_token28] = ACTIONS(2041), - [aux_sym_cmd_identifier_token29] = ACTIONS(2041), - [aux_sym_cmd_identifier_token30] = ACTIONS(2041), - [aux_sym_cmd_identifier_token31] = ACTIONS(2041), - [aux_sym_cmd_identifier_token32] = ACTIONS(2041), - [aux_sym_cmd_identifier_token33] = ACTIONS(2041), - [aux_sym_cmd_identifier_token34] = ACTIONS(2041), - [aux_sym_cmd_identifier_token35] = ACTIONS(2041), - [aux_sym_cmd_identifier_token36] = ACTIONS(2041), - [aux_sym_cmd_identifier_token37] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2041), - [anon_sym_export_DASHenv] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_error] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_in2] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_make] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_source] = ACTIONS(2041), - [anon_sym_source_DASHenv] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_hide] = ACTIONS(2041), - [anon_sym_hide_DASHenv] = ACTIONS(2041), - [anon_sym_overlay] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [sym__entry_separator] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2447), }, - [650] = { - [sym_comment] = STATE(650), - [aux_sym_shebang_repeat1] = STATE(650), - [anon_sym_export] = ACTIONS(1308), - [anon_sym_alias] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_let_DASHenv] = ACTIONS(1308), - [anon_sym_mut] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1308), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1308), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1308), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1310), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1310), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(2451), - [anon_sym_def] = ACTIONS(1308), - [anon_sym_export_DASHenv] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_module] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1310), - [anon_sym_error] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_in2] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_make] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_source] = ACTIONS(1308), - [anon_sym_source_DASHenv] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_hide] = ACTIONS(1308), - [anon_sym_hide_DASHenv] = ACTIONS(1308), - [anon_sym_overlay] = ACTIONS(1308), - [anon_sym_as] = ACTIONS(1308), - [anon_sym_PLUS2] = ACTIONS(1308), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1310), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1310), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), + [691] = { + [sym_comment] = STATE(691), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [aux_sym_cmd_identifier_token2] = ACTIONS(2451), + [aux_sym_cmd_identifier_token3] = ACTIONS(2451), + [aux_sym_cmd_identifier_token4] = ACTIONS(2451), + [aux_sym_cmd_identifier_token5] = ACTIONS(2451), + [aux_sym_cmd_identifier_token6] = ACTIONS(2451), + [aux_sym_cmd_identifier_token7] = ACTIONS(2451), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2451), + [aux_sym_cmd_identifier_token11] = ACTIONS(2451), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [aux_sym_cmd_identifier_token16] = ACTIONS(2451), + [aux_sym_cmd_identifier_token17] = ACTIONS(2451), + [aux_sym_cmd_identifier_token18] = ACTIONS(2451), + [aux_sym_cmd_identifier_token19] = ACTIONS(2451), + [aux_sym_cmd_identifier_token20] = ACTIONS(2451), + [aux_sym_cmd_identifier_token21] = ACTIONS(2451), + [aux_sym_cmd_identifier_token22] = ACTIONS(2451), + [aux_sym_cmd_identifier_token23] = ACTIONS(2451), + [aux_sym_cmd_identifier_token24] = ACTIONS(2451), + [aux_sym_cmd_identifier_token25] = ACTIONS(2451), + [aux_sym_cmd_identifier_token26] = ACTIONS(2451), + [aux_sym_cmd_identifier_token27] = ACTIONS(2451), + [aux_sym_cmd_identifier_token28] = ACTIONS(2451), + [aux_sym_cmd_identifier_token29] = ACTIONS(2451), + [aux_sym_cmd_identifier_token30] = ACTIONS(2451), + [aux_sym_cmd_identifier_token31] = ACTIONS(2451), + [aux_sym_cmd_identifier_token32] = ACTIONS(2451), + [aux_sym_cmd_identifier_token33] = ACTIONS(2451), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2451), + [aux_sym_cmd_identifier_token36] = ACTIONS(2451), + [aux_sym_cmd_identifier_token37] = ACTIONS(2451), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2451), + [aux_sym_cmd_identifier_token40] = ACTIONS(2451), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_DOLLAR] = ACTIONS(2451), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [aux_sym__val_number_decimal_token2] = ACTIONS(2451), + [aux_sym__val_number_decimal_token3] = ACTIONS(2451), + [aux_sym__val_number_decimal_token4] = ACTIONS(2451), + [aux_sym__val_number_token1] = ACTIONS(2451), + [aux_sym__val_number_token2] = ACTIONS(2451), + [aux_sym__val_number_token3] = ACTIONS(2451), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym__str_single_quotes] = ACTIONS(2451), + [sym__str_back_ticks] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2451), }, - [651] = { - [sym_comment] = STATE(651), - [aux_sym__multiple_types_repeat1] = STATE(597), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_alias] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_let_DASHenv] = ACTIONS(2320), - [anon_sym_mut] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [aux_sym_cmd_identifier_token1] = ACTIONS(2320), - [aux_sym_cmd_identifier_token2] = ACTIONS(2320), - [aux_sym_cmd_identifier_token3] = ACTIONS(2320), - [aux_sym_cmd_identifier_token4] = ACTIONS(2320), - [aux_sym_cmd_identifier_token5] = ACTIONS(2320), - [aux_sym_cmd_identifier_token6] = ACTIONS(2320), - [aux_sym_cmd_identifier_token7] = ACTIONS(2320), - [aux_sym_cmd_identifier_token8] = ACTIONS(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2320), - [aux_sym_cmd_identifier_token11] = ACTIONS(2320), - [aux_sym_cmd_identifier_token12] = ACTIONS(2320), - [aux_sym_cmd_identifier_token13] = ACTIONS(2320), - [aux_sym_cmd_identifier_token14] = ACTIONS(2320), - [aux_sym_cmd_identifier_token15] = ACTIONS(2320), - [aux_sym_cmd_identifier_token16] = ACTIONS(2320), - [aux_sym_cmd_identifier_token17] = ACTIONS(2320), - [aux_sym_cmd_identifier_token18] = ACTIONS(2320), - [aux_sym_cmd_identifier_token19] = ACTIONS(2320), - [aux_sym_cmd_identifier_token20] = ACTIONS(2320), - [aux_sym_cmd_identifier_token21] = ACTIONS(2320), - [aux_sym_cmd_identifier_token22] = ACTIONS(2320), - [aux_sym_cmd_identifier_token23] = ACTIONS(2320), - [aux_sym_cmd_identifier_token24] = ACTIONS(2320), - [aux_sym_cmd_identifier_token25] = ACTIONS(2320), - [aux_sym_cmd_identifier_token26] = ACTIONS(2320), - [aux_sym_cmd_identifier_token27] = ACTIONS(2320), - [aux_sym_cmd_identifier_token28] = ACTIONS(2320), - [aux_sym_cmd_identifier_token29] = ACTIONS(2320), - [aux_sym_cmd_identifier_token30] = ACTIONS(2320), - [aux_sym_cmd_identifier_token31] = ACTIONS(2320), - [aux_sym_cmd_identifier_token32] = ACTIONS(2320), - [aux_sym_cmd_identifier_token33] = ACTIONS(2320), - [aux_sym_cmd_identifier_token34] = ACTIONS(2320), - [aux_sym_cmd_identifier_token35] = ACTIONS(2320), - [aux_sym_cmd_identifier_token36] = ACTIONS(2320), - [aux_sym_cmd_identifier_token37] = ACTIONS(2320), - [aux_sym_cmd_identifier_token38] = ACTIONS(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2320), - [aux_sym_cmd_identifier_token40] = ACTIONS(2320), - [anon_sym_def] = ACTIONS(2320), - [anon_sym_export_DASHenv] = ACTIONS(2320), - [anon_sym_extern] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_use] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_DOLLAR] = ACTIONS(2320), - [anon_sym_error] = ACTIONS(2320), - [anon_sym_DASH2] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_in2] = ACTIONS(2320), - [anon_sym_loop] = ACTIONS(2320), - [anon_sym_make] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_else] = ACTIONS(2320), - [anon_sym_match] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_catch] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_source] = ACTIONS(2320), - [anon_sym_source_DASHenv] = ACTIONS(2320), - [anon_sym_register] = ACTIONS(2320), - [anon_sym_hide] = ACTIONS(2320), - [anon_sym_hide_DASHenv] = ACTIONS(2320), - [anon_sym_overlay] = ACTIONS(2320), - [anon_sym_as] = ACTIONS(2320), - [anon_sym_PLUS2] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2320), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [aux_sym__val_number_decimal_token2] = ACTIONS(2320), - [aux_sym__val_number_decimal_token3] = ACTIONS(2320), - [aux_sym__val_number_decimal_token4] = ACTIONS(2320), - [aux_sym__val_number_token1] = ACTIONS(2320), - [aux_sym__val_number_token2] = ACTIONS(2320), - [aux_sym__val_number_token3] = ACTIONS(2320), - [aux_sym__val_number_token4] = ACTIONS(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2320), - [sym__str_single_quotes] = ACTIONS(2320), - [sym__str_back_ticks] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2455), + [aux_sym_cmd_identifier_token3] = ACTIONS(2455), + [aux_sym_cmd_identifier_token4] = ACTIONS(2455), + [aux_sym_cmd_identifier_token5] = ACTIONS(2455), + [aux_sym_cmd_identifier_token6] = ACTIONS(2455), + [aux_sym_cmd_identifier_token7] = ACTIONS(2455), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2455), + [aux_sym_cmd_identifier_token11] = ACTIONS(2455), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2455), + [aux_sym_cmd_identifier_token17] = ACTIONS(2455), + [aux_sym_cmd_identifier_token18] = ACTIONS(2455), + [aux_sym_cmd_identifier_token19] = ACTIONS(2455), + [aux_sym_cmd_identifier_token20] = ACTIONS(2455), + [aux_sym_cmd_identifier_token21] = ACTIONS(2455), + [aux_sym_cmd_identifier_token22] = ACTIONS(2455), + [aux_sym_cmd_identifier_token23] = ACTIONS(2455), + [aux_sym_cmd_identifier_token24] = ACTIONS(2455), + [aux_sym_cmd_identifier_token25] = ACTIONS(2455), + [aux_sym_cmd_identifier_token26] = ACTIONS(2455), + [aux_sym_cmd_identifier_token27] = ACTIONS(2455), + [aux_sym_cmd_identifier_token28] = ACTIONS(2455), + [aux_sym_cmd_identifier_token29] = ACTIONS(2455), + [aux_sym_cmd_identifier_token30] = ACTIONS(2455), + [aux_sym_cmd_identifier_token31] = ACTIONS(2455), + [aux_sym_cmd_identifier_token32] = ACTIONS(2455), + [aux_sym_cmd_identifier_token33] = ACTIONS(2455), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2455), + [aux_sym_cmd_identifier_token36] = ACTIONS(2455), + [aux_sym_cmd_identifier_token37] = ACTIONS(2455), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2455), + [aux_sym_cmd_identifier_token40] = ACTIONS(2455), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(2455), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2455), + [aux_sym__val_number_decimal_token3] = ACTIONS(2455), + [aux_sym__val_number_decimal_token4] = ACTIONS(2455), + [aux_sym__val_number_token1] = ACTIONS(2455), + [aux_sym__val_number_token2] = ACTIONS(2455), + [aux_sym__val_number_token3] = ACTIONS(2455), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym__str_single_quotes] = ACTIONS(2455), + [sym__str_back_ticks] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2455), }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_alias] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_let_DASHenv] = ACTIONS(1895), - [anon_sym_mut] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1895), - [aux_sym_cmd_identifier_token3] = ACTIONS(1895), - [aux_sym_cmd_identifier_token4] = ACTIONS(1895), - [aux_sym_cmd_identifier_token5] = ACTIONS(1895), - [aux_sym_cmd_identifier_token6] = ACTIONS(1895), - [aux_sym_cmd_identifier_token7] = ACTIONS(1895), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1895), - [aux_sym_cmd_identifier_token11] = ACTIONS(1895), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1895), - [aux_sym_cmd_identifier_token17] = ACTIONS(1895), - [aux_sym_cmd_identifier_token18] = ACTIONS(1895), - [aux_sym_cmd_identifier_token19] = ACTIONS(1895), - [aux_sym_cmd_identifier_token20] = ACTIONS(1895), - [aux_sym_cmd_identifier_token21] = ACTIONS(1895), - [aux_sym_cmd_identifier_token22] = ACTIONS(1895), - [aux_sym_cmd_identifier_token23] = ACTIONS(1895), - [aux_sym_cmd_identifier_token24] = ACTIONS(1895), - [aux_sym_cmd_identifier_token25] = ACTIONS(1895), - [aux_sym_cmd_identifier_token26] = ACTIONS(1895), - [aux_sym_cmd_identifier_token27] = ACTIONS(1895), - [aux_sym_cmd_identifier_token28] = ACTIONS(1895), - [aux_sym_cmd_identifier_token29] = ACTIONS(1895), - [aux_sym_cmd_identifier_token30] = ACTIONS(1895), - [aux_sym_cmd_identifier_token31] = ACTIONS(1895), - [aux_sym_cmd_identifier_token32] = ACTIONS(1895), - [aux_sym_cmd_identifier_token33] = ACTIONS(1895), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1895), - [aux_sym_cmd_identifier_token36] = ACTIONS(1895), - [aux_sym_cmd_identifier_token37] = ACTIONS(1895), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1895), - [aux_sym_cmd_identifier_token40] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_export_DASHenv] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_source] = ACTIONS(1895), - [anon_sym_source_DASHenv] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_hide_DASHenv] = ACTIONS(1895), - [anon_sym_overlay] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1895), - [aux_sym__val_number_decimal_token3] = ACTIONS(1895), - [aux_sym__val_number_decimal_token4] = ACTIONS(1895), - [aux_sym__val_number_token1] = ACTIONS(1895), - [aux_sym__val_number_token2] = ACTIONS(1895), - [aux_sym__val_number_token3] = ACTIONS(1895), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym__str_single_quotes] = ACTIONS(1895), - [sym__str_back_ticks] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [sym__entry_separator] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1897), + [693] = { + [sym_comment] = STATE(693), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2459), + [aux_sym_cmd_identifier_token3] = ACTIONS(2459), + [aux_sym_cmd_identifier_token4] = ACTIONS(2459), + [aux_sym_cmd_identifier_token5] = ACTIONS(2459), + [aux_sym_cmd_identifier_token6] = ACTIONS(2459), + [aux_sym_cmd_identifier_token7] = ACTIONS(2459), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2459), + [aux_sym_cmd_identifier_token11] = ACTIONS(2459), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2459), + [aux_sym_cmd_identifier_token17] = ACTIONS(2459), + [aux_sym_cmd_identifier_token18] = ACTIONS(2459), + [aux_sym_cmd_identifier_token19] = ACTIONS(2459), + [aux_sym_cmd_identifier_token20] = ACTIONS(2459), + [aux_sym_cmd_identifier_token21] = ACTIONS(2459), + [aux_sym_cmd_identifier_token22] = ACTIONS(2459), + [aux_sym_cmd_identifier_token23] = ACTIONS(2459), + [aux_sym_cmd_identifier_token24] = ACTIONS(2459), + [aux_sym_cmd_identifier_token25] = ACTIONS(2459), + [aux_sym_cmd_identifier_token26] = ACTIONS(2459), + [aux_sym_cmd_identifier_token27] = ACTIONS(2459), + [aux_sym_cmd_identifier_token28] = ACTIONS(2459), + [aux_sym_cmd_identifier_token29] = ACTIONS(2459), + [aux_sym_cmd_identifier_token30] = ACTIONS(2459), + [aux_sym_cmd_identifier_token31] = ACTIONS(2459), + [aux_sym_cmd_identifier_token32] = ACTIONS(2459), + [aux_sym_cmd_identifier_token33] = ACTIONS(2459), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2459), + [aux_sym_cmd_identifier_token36] = ACTIONS(2459), + [aux_sym_cmd_identifier_token37] = ACTIONS(2459), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in2] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2459), + [aux_sym__val_number_decimal_token3] = ACTIONS(2459), + [aux_sym__val_number_decimal_token4] = ACTIONS(2459), + [aux_sym__val_number_token1] = ACTIONS(2459), + [aux_sym__val_number_token2] = ACTIONS(2459), + [aux_sym__val_number_token3] = ACTIONS(2459), + [aux_sym__val_number_token4] = ACTIONS(2457), + [aux_sym__val_number_token5] = ACTIONS(2457), + [aux_sym__val_number_token6] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym__str_single_quotes] = ACTIONS(2459), + [sym__str_back_ticks] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2459), }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2086), - [aux_sym_cmd_identifier_token3] = ACTIONS(2086), - [aux_sym_cmd_identifier_token4] = ACTIONS(2086), - [aux_sym_cmd_identifier_token5] = ACTIONS(2086), - [aux_sym_cmd_identifier_token6] = ACTIONS(2086), - [aux_sym_cmd_identifier_token7] = ACTIONS(2086), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2086), - [aux_sym_cmd_identifier_token11] = ACTIONS(2086), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2086), - [aux_sym_cmd_identifier_token17] = ACTIONS(2086), - [aux_sym_cmd_identifier_token18] = ACTIONS(2086), - [aux_sym_cmd_identifier_token19] = ACTIONS(2086), - [aux_sym_cmd_identifier_token20] = ACTIONS(2086), - [aux_sym_cmd_identifier_token21] = ACTIONS(2086), - [aux_sym_cmd_identifier_token22] = ACTIONS(2086), - [aux_sym_cmd_identifier_token23] = ACTIONS(2086), - [aux_sym_cmd_identifier_token24] = ACTIONS(2086), - [aux_sym_cmd_identifier_token25] = ACTIONS(2086), - [aux_sym_cmd_identifier_token26] = ACTIONS(2086), - [aux_sym_cmd_identifier_token27] = ACTIONS(2086), - [aux_sym_cmd_identifier_token28] = ACTIONS(2086), - [aux_sym_cmd_identifier_token29] = ACTIONS(2086), - [aux_sym_cmd_identifier_token30] = ACTIONS(2086), - [aux_sym_cmd_identifier_token31] = ACTIONS(2086), - [aux_sym_cmd_identifier_token32] = ACTIONS(2086), - [aux_sym_cmd_identifier_token33] = ACTIONS(2086), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2086), - [aux_sym_cmd_identifier_token36] = ACTIONS(2086), - [aux_sym_cmd_identifier_token37] = ACTIONS(2086), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2086), - [aux_sym_cmd_identifier_token40] = ACTIONS(2086), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2086), - [aux_sym__val_number_decimal_token3] = ACTIONS(2086), - [aux_sym__val_number_decimal_token4] = ACTIONS(2086), - [aux_sym__val_number_token1] = ACTIONS(2086), - [aux_sym__val_number_token2] = ACTIONS(2086), - [aux_sym__val_number_token3] = ACTIONS(2086), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2086), - [sym__str_single_quotes] = ACTIONS(2086), - [sym__str_back_ticks] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), - [sym__entry_separator] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2088), + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2463), + [aux_sym_cmd_identifier_token3] = ACTIONS(2463), + [aux_sym_cmd_identifier_token4] = ACTIONS(2463), + [aux_sym_cmd_identifier_token5] = ACTIONS(2463), + [aux_sym_cmd_identifier_token6] = ACTIONS(2463), + [aux_sym_cmd_identifier_token7] = ACTIONS(2463), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2463), + [aux_sym_cmd_identifier_token11] = ACTIONS(2463), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2463), + [aux_sym_cmd_identifier_token17] = ACTIONS(2463), + [aux_sym_cmd_identifier_token18] = ACTIONS(2463), + [aux_sym_cmd_identifier_token19] = ACTIONS(2463), + [aux_sym_cmd_identifier_token20] = ACTIONS(2463), + [aux_sym_cmd_identifier_token21] = ACTIONS(2463), + [aux_sym_cmd_identifier_token22] = ACTIONS(2463), + [aux_sym_cmd_identifier_token23] = ACTIONS(2463), + [aux_sym_cmd_identifier_token24] = ACTIONS(2463), + [aux_sym_cmd_identifier_token25] = ACTIONS(2463), + [aux_sym_cmd_identifier_token26] = ACTIONS(2463), + [aux_sym_cmd_identifier_token27] = ACTIONS(2463), + [aux_sym_cmd_identifier_token28] = ACTIONS(2463), + [aux_sym_cmd_identifier_token29] = ACTIONS(2463), + [aux_sym_cmd_identifier_token30] = ACTIONS(2463), + [aux_sym_cmd_identifier_token31] = ACTIONS(2463), + [aux_sym_cmd_identifier_token32] = ACTIONS(2463), + [aux_sym_cmd_identifier_token33] = ACTIONS(2463), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2463), + [aux_sym_cmd_identifier_token36] = ACTIONS(2463), + [aux_sym_cmd_identifier_token37] = ACTIONS(2463), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2463), + [aux_sym_cmd_identifier_token40] = ACTIONS(2463), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in2] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2463), + [aux_sym__val_number_decimal_token3] = ACTIONS(2463), + [aux_sym__val_number_decimal_token4] = ACTIONS(2463), + [aux_sym__val_number_token1] = ACTIONS(2463), + [aux_sym__val_number_token2] = ACTIONS(2463), + [aux_sym__val_number_token3] = ACTIONS(2463), + [aux_sym__val_number_token4] = ACTIONS(2461), + [aux_sym__val_number_token5] = ACTIONS(2461), + [aux_sym__val_number_token6] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2463), + [sym__str_single_quotes] = ACTIONS(2463), + [sym__str_back_ticks] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2463), }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_alias] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_let_DASHenv] = ACTIONS(2454), - [anon_sym_mut] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [aux_sym_cmd_identifier_token1] = ACTIONS(2454), - [aux_sym_cmd_identifier_token2] = ACTIONS(2454), - [aux_sym_cmd_identifier_token3] = ACTIONS(2454), - [aux_sym_cmd_identifier_token4] = ACTIONS(2454), - [aux_sym_cmd_identifier_token5] = ACTIONS(2454), - [aux_sym_cmd_identifier_token6] = ACTIONS(2454), - [aux_sym_cmd_identifier_token7] = ACTIONS(2454), - [aux_sym_cmd_identifier_token8] = ACTIONS(2454), - [aux_sym_cmd_identifier_token9] = ACTIONS(2454), - [aux_sym_cmd_identifier_token10] = ACTIONS(2454), - [aux_sym_cmd_identifier_token11] = ACTIONS(2454), - [aux_sym_cmd_identifier_token12] = ACTIONS(2454), - [aux_sym_cmd_identifier_token13] = ACTIONS(2454), - [aux_sym_cmd_identifier_token14] = ACTIONS(2454), - [aux_sym_cmd_identifier_token15] = ACTIONS(2454), - [aux_sym_cmd_identifier_token16] = ACTIONS(2454), - [aux_sym_cmd_identifier_token17] = ACTIONS(2454), - [aux_sym_cmd_identifier_token18] = ACTIONS(2454), - [aux_sym_cmd_identifier_token19] = ACTIONS(2454), - [aux_sym_cmd_identifier_token20] = ACTIONS(2454), - [aux_sym_cmd_identifier_token21] = ACTIONS(2454), - [aux_sym_cmd_identifier_token22] = ACTIONS(2454), - [aux_sym_cmd_identifier_token23] = ACTIONS(2454), - [aux_sym_cmd_identifier_token24] = ACTIONS(2454), - [aux_sym_cmd_identifier_token25] = ACTIONS(2454), - [aux_sym_cmd_identifier_token26] = ACTIONS(2454), - [aux_sym_cmd_identifier_token27] = ACTIONS(2454), - [aux_sym_cmd_identifier_token28] = ACTIONS(2454), - [aux_sym_cmd_identifier_token29] = ACTIONS(2454), - [aux_sym_cmd_identifier_token30] = ACTIONS(2454), - [aux_sym_cmd_identifier_token31] = ACTIONS(2454), - [aux_sym_cmd_identifier_token32] = ACTIONS(2454), - [aux_sym_cmd_identifier_token33] = ACTIONS(2454), - [aux_sym_cmd_identifier_token34] = ACTIONS(2454), - [aux_sym_cmd_identifier_token35] = ACTIONS(2454), - [aux_sym_cmd_identifier_token36] = ACTIONS(2454), - [aux_sym_cmd_identifier_token37] = ACTIONS(2454), - [aux_sym_cmd_identifier_token38] = ACTIONS(2454), - [aux_sym_cmd_identifier_token39] = ACTIONS(2454), - [aux_sym_cmd_identifier_token40] = ACTIONS(2454), - [anon_sym_def] = ACTIONS(2454), - [anon_sym_export_DASHenv] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_module] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_error] = ACTIONS(2454), - [anon_sym_DASH2] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_in2] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_make] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_else] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [anon_sym_catch] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_source] = ACTIONS(2454), - [anon_sym_source_DASHenv] = ACTIONS(2454), - [anon_sym_register] = ACTIONS(2454), - [anon_sym_hide] = ACTIONS(2454), - [anon_sym_hide_DASHenv] = ACTIONS(2454), - [anon_sym_overlay] = ACTIONS(2454), - [anon_sym_as] = ACTIONS(2454), - [anon_sym_PLUS2] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2454), - [aux_sym__val_number_decimal_token1] = ACTIONS(2454), - [aux_sym__val_number_decimal_token2] = ACTIONS(2454), - [aux_sym__val_number_decimal_token3] = ACTIONS(2454), - [aux_sym__val_number_decimal_token4] = ACTIONS(2454), - [aux_sym__val_number_token1] = ACTIONS(2454), - [aux_sym__val_number_token2] = ACTIONS(2454), - [aux_sym__val_number_token3] = ACTIONS(2454), - [aux_sym__val_number_token4] = ACTIONS(2454), - [aux_sym__val_number_token5] = ACTIONS(2454), - [aux_sym__val_number_token6] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2454), - [sym__str_single_quotes] = ACTIONS(2454), - [sym__str_back_ticks] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2454), - [sym__entry_separator] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2456), + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(2467), + [anon_sym_alias] = ACTIONS(2467), + [anon_sym_let] = ACTIONS(2467), + [anon_sym_let_DASHenv] = ACTIONS(2467), + [anon_sym_mut] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [aux_sym_cmd_identifier_token1] = ACTIONS(2467), + [aux_sym_cmd_identifier_token2] = ACTIONS(2469), + [aux_sym_cmd_identifier_token3] = ACTIONS(2469), + [aux_sym_cmd_identifier_token4] = ACTIONS(2469), + [aux_sym_cmd_identifier_token5] = ACTIONS(2469), + [aux_sym_cmd_identifier_token6] = ACTIONS(2469), + [aux_sym_cmd_identifier_token7] = ACTIONS(2469), + [aux_sym_cmd_identifier_token8] = ACTIONS(2467), + [aux_sym_cmd_identifier_token9] = ACTIONS(2467), + [aux_sym_cmd_identifier_token10] = ACTIONS(2469), + [aux_sym_cmd_identifier_token11] = ACTIONS(2469), + [aux_sym_cmd_identifier_token12] = ACTIONS(2467), + [aux_sym_cmd_identifier_token13] = ACTIONS(2467), + [aux_sym_cmd_identifier_token14] = ACTIONS(2467), + [aux_sym_cmd_identifier_token15] = ACTIONS(2467), + [aux_sym_cmd_identifier_token16] = ACTIONS(2469), + [aux_sym_cmd_identifier_token17] = ACTIONS(2469), + [aux_sym_cmd_identifier_token18] = ACTIONS(2469), + [aux_sym_cmd_identifier_token19] = ACTIONS(2469), + [aux_sym_cmd_identifier_token20] = ACTIONS(2469), + [aux_sym_cmd_identifier_token21] = ACTIONS(2469), + [aux_sym_cmd_identifier_token22] = ACTIONS(2469), + [aux_sym_cmd_identifier_token23] = ACTIONS(2469), + [aux_sym_cmd_identifier_token24] = ACTIONS(2469), + [aux_sym_cmd_identifier_token25] = ACTIONS(2469), + [aux_sym_cmd_identifier_token26] = ACTIONS(2469), + [aux_sym_cmd_identifier_token27] = ACTIONS(2469), + [aux_sym_cmd_identifier_token28] = ACTIONS(2469), + [aux_sym_cmd_identifier_token29] = ACTIONS(2469), + [aux_sym_cmd_identifier_token30] = ACTIONS(2469), + [aux_sym_cmd_identifier_token31] = ACTIONS(2469), + [aux_sym_cmd_identifier_token32] = ACTIONS(2469), + [aux_sym_cmd_identifier_token33] = ACTIONS(2469), + [aux_sym_cmd_identifier_token34] = ACTIONS(2467), + [aux_sym_cmd_identifier_token35] = ACTIONS(2469), + [aux_sym_cmd_identifier_token36] = ACTIONS(2469), + [aux_sym_cmd_identifier_token37] = ACTIONS(2469), + [aux_sym_cmd_identifier_token38] = ACTIONS(2467), + [aux_sym_cmd_identifier_token39] = ACTIONS(2469), + [aux_sym_cmd_identifier_token40] = ACTIONS(2469), + [anon_sym_def] = ACTIONS(2467), + [anon_sym_export_DASHenv] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym_module] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_DOLLAR] = ACTIONS(2469), + [anon_sym_error] = ACTIONS(2467), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_in2] = ACTIONS(2467), + [anon_sym_loop] = ACTIONS(2467), + [anon_sym_make] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_do] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_catch] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_source] = ACTIONS(2467), + [anon_sym_source_DASHenv] = ACTIONS(2467), + [anon_sym_register] = ACTIONS(2467), + [anon_sym_hide] = ACTIONS(2467), + [anon_sym_hide_DASHenv] = ACTIONS(2467), + [anon_sym_overlay] = ACTIONS(2467), + [anon_sym_as] = ACTIONS(2467), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), + [aux_sym__val_number_decimal_token1] = ACTIONS(2467), + [aux_sym__val_number_decimal_token2] = ACTIONS(2469), + [aux_sym__val_number_decimal_token3] = ACTIONS(2469), + [aux_sym__val_number_decimal_token4] = ACTIONS(2469), + [aux_sym__val_number_token1] = ACTIONS(2469), + [aux_sym__val_number_token2] = ACTIONS(2469), + [aux_sym__val_number_token3] = ACTIONS(2469), + [aux_sym__val_number_token4] = ACTIONS(2467), + [aux_sym__val_number_token5] = ACTIONS(2467), + [aux_sym__val_number_token6] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2469), + [sym__str_single_quotes] = ACTIONS(2469), + [sym__str_back_ticks] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2469), }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_alias] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_let_DASHenv] = ACTIONS(2458), - [anon_sym_mut] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [aux_sym_cmd_identifier_token1] = ACTIONS(2458), - [aux_sym_cmd_identifier_token2] = ACTIONS(2458), - [aux_sym_cmd_identifier_token3] = ACTIONS(2458), - [aux_sym_cmd_identifier_token4] = ACTIONS(2458), - [aux_sym_cmd_identifier_token5] = ACTIONS(2458), - [aux_sym_cmd_identifier_token6] = ACTIONS(2458), - [aux_sym_cmd_identifier_token7] = ACTIONS(2458), - [aux_sym_cmd_identifier_token8] = ACTIONS(2458), - [aux_sym_cmd_identifier_token9] = ACTIONS(2458), - [aux_sym_cmd_identifier_token10] = ACTIONS(2458), - [aux_sym_cmd_identifier_token11] = ACTIONS(2458), - [aux_sym_cmd_identifier_token12] = ACTIONS(2458), - [aux_sym_cmd_identifier_token13] = ACTIONS(2458), - [aux_sym_cmd_identifier_token14] = ACTIONS(2458), - [aux_sym_cmd_identifier_token15] = ACTIONS(2458), - [aux_sym_cmd_identifier_token16] = ACTIONS(2458), - [aux_sym_cmd_identifier_token17] = ACTIONS(2458), - [aux_sym_cmd_identifier_token18] = ACTIONS(2458), - [aux_sym_cmd_identifier_token19] = ACTIONS(2458), - [aux_sym_cmd_identifier_token20] = ACTIONS(2458), - [aux_sym_cmd_identifier_token21] = ACTIONS(2458), - [aux_sym_cmd_identifier_token22] = ACTIONS(2458), - [aux_sym_cmd_identifier_token23] = ACTIONS(2458), - [aux_sym_cmd_identifier_token24] = ACTIONS(2458), - [aux_sym_cmd_identifier_token25] = ACTIONS(2458), - [aux_sym_cmd_identifier_token26] = ACTIONS(2458), - [aux_sym_cmd_identifier_token27] = ACTIONS(2458), - [aux_sym_cmd_identifier_token28] = ACTIONS(2458), - [aux_sym_cmd_identifier_token29] = ACTIONS(2458), - [aux_sym_cmd_identifier_token30] = ACTIONS(2458), - [aux_sym_cmd_identifier_token31] = ACTIONS(2458), - [aux_sym_cmd_identifier_token32] = ACTIONS(2458), - [aux_sym_cmd_identifier_token33] = ACTIONS(2458), - [aux_sym_cmd_identifier_token34] = ACTIONS(2458), - [aux_sym_cmd_identifier_token35] = ACTIONS(2458), - [aux_sym_cmd_identifier_token36] = ACTIONS(2458), - [aux_sym_cmd_identifier_token37] = ACTIONS(2458), - [aux_sym_cmd_identifier_token38] = ACTIONS(2458), - [aux_sym_cmd_identifier_token39] = ACTIONS(2458), - [aux_sym_cmd_identifier_token40] = ACTIONS(2458), - [anon_sym_def] = ACTIONS(2458), - [anon_sym_export_DASHenv] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_DOLLAR] = ACTIONS(2458), - [anon_sym_error] = ACTIONS(2458), - [anon_sym_DASH2] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_in2] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_make] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_catch] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_source] = ACTIONS(2458), - [anon_sym_source_DASHenv] = ACTIONS(2458), - [anon_sym_register] = ACTIONS(2458), - [anon_sym_hide] = ACTIONS(2458), - [anon_sym_hide_DASHenv] = ACTIONS(2458), - [anon_sym_overlay] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2458), - [anon_sym_PLUS2] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2458), - [aux_sym__val_number_decimal_token1] = ACTIONS(2458), - [aux_sym__val_number_decimal_token2] = ACTIONS(2458), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2458), - [aux_sym__val_number_token2] = ACTIONS(2458), - [aux_sym__val_number_token3] = ACTIONS(2458), - [aux_sym__val_number_token4] = ACTIONS(2458), - [aux_sym__val_number_token5] = ACTIONS(2458), - [aux_sym__val_number_token6] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2458), - [sym__str_single_quotes] = ACTIONS(2458), - [sym__str_back_ticks] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2458), - [sym__entry_separator] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2460), + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(2471), + [anon_sym_alias] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_let_DASHenv] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [aux_sym_cmd_identifier_token1] = ACTIONS(2471), + [aux_sym_cmd_identifier_token2] = ACTIONS(2473), + [aux_sym_cmd_identifier_token3] = ACTIONS(2473), + [aux_sym_cmd_identifier_token4] = ACTIONS(2473), + [aux_sym_cmd_identifier_token5] = ACTIONS(2473), + [aux_sym_cmd_identifier_token6] = ACTIONS(2473), + [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token8] = ACTIONS(2471), + [aux_sym_cmd_identifier_token9] = ACTIONS(2471), + [aux_sym_cmd_identifier_token10] = ACTIONS(2473), + [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token12] = ACTIONS(2471), + [aux_sym_cmd_identifier_token13] = ACTIONS(2471), + [aux_sym_cmd_identifier_token14] = ACTIONS(2471), + [aux_sym_cmd_identifier_token15] = ACTIONS(2471), + [aux_sym_cmd_identifier_token16] = ACTIONS(2473), + [aux_sym_cmd_identifier_token17] = ACTIONS(2473), + [aux_sym_cmd_identifier_token18] = ACTIONS(2473), + [aux_sym_cmd_identifier_token19] = ACTIONS(2473), + [aux_sym_cmd_identifier_token20] = ACTIONS(2473), + [aux_sym_cmd_identifier_token21] = ACTIONS(2473), + [aux_sym_cmd_identifier_token22] = ACTIONS(2473), + [aux_sym_cmd_identifier_token23] = ACTIONS(2473), + [aux_sym_cmd_identifier_token24] = ACTIONS(2473), + [aux_sym_cmd_identifier_token25] = ACTIONS(2473), + [aux_sym_cmd_identifier_token26] = ACTIONS(2473), + [aux_sym_cmd_identifier_token27] = ACTIONS(2473), + [aux_sym_cmd_identifier_token28] = ACTIONS(2473), + [aux_sym_cmd_identifier_token29] = ACTIONS(2473), + [aux_sym_cmd_identifier_token30] = ACTIONS(2473), + [aux_sym_cmd_identifier_token31] = ACTIONS(2473), + [aux_sym_cmd_identifier_token32] = ACTIONS(2473), + [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token34] = ACTIONS(2471), + [aux_sym_cmd_identifier_token35] = ACTIONS(2473), + [aux_sym_cmd_identifier_token36] = ACTIONS(2473), + [aux_sym_cmd_identifier_token37] = ACTIONS(2473), + [aux_sym_cmd_identifier_token38] = ACTIONS(2471), + [aux_sym_cmd_identifier_token39] = ACTIONS(2473), + [aux_sym_cmd_identifier_token40] = ACTIONS(2473), + [anon_sym_def] = ACTIONS(2471), + [anon_sym_export_DASHenv] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_module] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_error] = ACTIONS(2471), + [anon_sym_DASH2] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_in2] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_make] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_catch] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_source] = ACTIONS(2471), + [anon_sym_source_DASHenv] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_hide] = ACTIONS(2471), + [anon_sym_hide_DASHenv] = ACTIONS(2471), + [anon_sym_overlay] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_PLUS2] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [aux_sym__val_number_decimal_token1] = ACTIONS(2471), + [aux_sym__val_number_decimal_token2] = ACTIONS(2473), + [aux_sym__val_number_decimal_token3] = ACTIONS(2473), + [aux_sym__val_number_decimal_token4] = ACTIONS(2473), + [aux_sym__val_number_token1] = ACTIONS(2473), + [aux_sym__val_number_token2] = ACTIONS(2473), + [aux_sym__val_number_token3] = ACTIONS(2473), + [aux_sym__val_number_token4] = ACTIONS(2471), + [aux_sym__val_number_token5] = ACTIONS(2471), + [aux_sym__val_number_token6] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym__str_single_quotes] = ACTIONS(2473), + [sym__str_back_ticks] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2473), }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_alias] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_let_DASHenv] = ACTIONS(2462), - [anon_sym_mut] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [aux_sym_cmd_identifier_token1] = ACTIONS(2462), - [aux_sym_cmd_identifier_token2] = ACTIONS(2462), - [aux_sym_cmd_identifier_token3] = ACTIONS(2462), - [aux_sym_cmd_identifier_token4] = ACTIONS(2462), - [aux_sym_cmd_identifier_token5] = ACTIONS(2462), - [aux_sym_cmd_identifier_token6] = ACTIONS(2462), - [aux_sym_cmd_identifier_token7] = ACTIONS(2462), - [aux_sym_cmd_identifier_token8] = ACTIONS(2462), - [aux_sym_cmd_identifier_token9] = ACTIONS(2462), - [aux_sym_cmd_identifier_token10] = ACTIONS(2462), - [aux_sym_cmd_identifier_token11] = ACTIONS(2462), - [aux_sym_cmd_identifier_token12] = ACTIONS(2462), - [aux_sym_cmd_identifier_token13] = ACTIONS(2462), - [aux_sym_cmd_identifier_token14] = ACTIONS(2462), - [aux_sym_cmd_identifier_token15] = ACTIONS(2462), - [aux_sym_cmd_identifier_token16] = ACTIONS(2462), - [aux_sym_cmd_identifier_token17] = ACTIONS(2462), - [aux_sym_cmd_identifier_token18] = ACTIONS(2462), - [aux_sym_cmd_identifier_token19] = ACTIONS(2462), - [aux_sym_cmd_identifier_token20] = ACTIONS(2462), - [aux_sym_cmd_identifier_token21] = ACTIONS(2462), - [aux_sym_cmd_identifier_token22] = ACTIONS(2462), - [aux_sym_cmd_identifier_token23] = ACTIONS(2462), - [aux_sym_cmd_identifier_token24] = ACTIONS(2462), - [aux_sym_cmd_identifier_token25] = ACTIONS(2462), - [aux_sym_cmd_identifier_token26] = ACTIONS(2462), - [aux_sym_cmd_identifier_token27] = ACTIONS(2462), - [aux_sym_cmd_identifier_token28] = ACTIONS(2462), - [aux_sym_cmd_identifier_token29] = ACTIONS(2462), - [aux_sym_cmd_identifier_token30] = ACTIONS(2462), - [aux_sym_cmd_identifier_token31] = ACTIONS(2462), - [aux_sym_cmd_identifier_token32] = ACTIONS(2462), - [aux_sym_cmd_identifier_token33] = ACTIONS(2462), - [aux_sym_cmd_identifier_token34] = ACTIONS(2462), - [aux_sym_cmd_identifier_token35] = ACTIONS(2462), - [aux_sym_cmd_identifier_token36] = ACTIONS(2462), - [aux_sym_cmd_identifier_token37] = ACTIONS(2462), - [aux_sym_cmd_identifier_token38] = ACTIONS(2462), - [aux_sym_cmd_identifier_token39] = ACTIONS(2462), - [aux_sym_cmd_identifier_token40] = ACTIONS(2462), - [anon_sym_def] = ACTIONS(2462), - [anon_sym_export_DASHenv] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_module] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_DOLLAR] = ACTIONS(2462), - [anon_sym_error] = ACTIONS(2462), - [anon_sym_DASH2] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_in2] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_make] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_do] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_else] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_catch] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_source] = ACTIONS(2462), - [anon_sym_source_DASHenv] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_hide] = ACTIONS(2462), - [anon_sym_hide_DASHenv] = ACTIONS(2462), - [anon_sym_overlay] = ACTIONS(2462), - [anon_sym_as] = ACTIONS(2462), - [anon_sym_PLUS2] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2462), - [aux_sym__val_number_decimal_token1] = ACTIONS(2462), - [aux_sym__val_number_decimal_token2] = ACTIONS(2462), - [aux_sym__val_number_decimal_token3] = ACTIONS(2462), - [aux_sym__val_number_decimal_token4] = ACTIONS(2462), - [aux_sym__val_number_token1] = ACTIONS(2462), - [aux_sym__val_number_token2] = ACTIONS(2462), - [aux_sym__val_number_token3] = ACTIONS(2462), - [aux_sym__val_number_token4] = ACTIONS(2462), - [aux_sym__val_number_token5] = ACTIONS(2462), - [aux_sym__val_number_token6] = ACTIONS(2462), - [anon_sym_DQUOTE] = ACTIONS(2462), - [sym__str_single_quotes] = ACTIONS(2462), - [sym__str_back_ticks] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2462), - [sym__entry_separator] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2464), + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2019), + [aux_sym_cmd_identifier_token3] = ACTIONS(2019), + [aux_sym_cmd_identifier_token4] = ACTIONS(2019), + [aux_sym_cmd_identifier_token5] = ACTIONS(2019), + [aux_sym_cmd_identifier_token6] = ACTIONS(2019), + [aux_sym_cmd_identifier_token7] = ACTIONS(2019), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2019), + [aux_sym_cmd_identifier_token11] = ACTIONS(2019), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2019), + [aux_sym_cmd_identifier_token17] = ACTIONS(2019), + [aux_sym_cmd_identifier_token18] = ACTIONS(2019), + [aux_sym_cmd_identifier_token19] = ACTIONS(2019), + [aux_sym_cmd_identifier_token20] = ACTIONS(2019), + [aux_sym_cmd_identifier_token21] = ACTIONS(2019), + [aux_sym_cmd_identifier_token22] = ACTIONS(2019), + [aux_sym_cmd_identifier_token23] = ACTIONS(2019), + [aux_sym_cmd_identifier_token24] = ACTIONS(2019), + [aux_sym_cmd_identifier_token25] = ACTIONS(2019), + [aux_sym_cmd_identifier_token26] = ACTIONS(2019), + [aux_sym_cmd_identifier_token27] = ACTIONS(2019), + [aux_sym_cmd_identifier_token28] = ACTIONS(2019), + [aux_sym_cmd_identifier_token29] = ACTIONS(2019), + [aux_sym_cmd_identifier_token30] = ACTIONS(2019), + [aux_sym_cmd_identifier_token31] = ACTIONS(2019), + [aux_sym_cmd_identifier_token32] = ACTIONS(2019), + [aux_sym_cmd_identifier_token33] = ACTIONS(2019), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2019), + [aux_sym_cmd_identifier_token36] = ACTIONS(2019), + [aux_sym_cmd_identifier_token37] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_DASH2] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in2] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_PLUS2] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [aux_sym__val_number_token4] = ACTIONS(2017), + [aux_sym__val_number_token5] = ACTIONS(2017), + [aux_sym__val_number_token6] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2019), }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_alias] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_let_DASHenv] = ACTIONS(2466), - [anon_sym_mut] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [aux_sym_cmd_identifier_token1] = ACTIONS(2466), - [aux_sym_cmd_identifier_token2] = ACTIONS(2466), - [aux_sym_cmd_identifier_token3] = ACTIONS(2466), - [aux_sym_cmd_identifier_token4] = ACTIONS(2466), - [aux_sym_cmd_identifier_token5] = ACTIONS(2466), - [aux_sym_cmd_identifier_token6] = ACTIONS(2466), - [aux_sym_cmd_identifier_token7] = ACTIONS(2466), - [aux_sym_cmd_identifier_token8] = ACTIONS(2466), - [aux_sym_cmd_identifier_token9] = ACTIONS(2466), - [aux_sym_cmd_identifier_token10] = ACTIONS(2466), - [aux_sym_cmd_identifier_token11] = ACTIONS(2466), - [aux_sym_cmd_identifier_token12] = ACTIONS(2466), - [aux_sym_cmd_identifier_token13] = ACTIONS(2466), - [aux_sym_cmd_identifier_token14] = ACTIONS(2466), - [aux_sym_cmd_identifier_token15] = ACTIONS(2466), - [aux_sym_cmd_identifier_token16] = ACTIONS(2466), - [aux_sym_cmd_identifier_token17] = ACTIONS(2466), - [aux_sym_cmd_identifier_token18] = ACTIONS(2466), - [aux_sym_cmd_identifier_token19] = ACTIONS(2466), - [aux_sym_cmd_identifier_token20] = ACTIONS(2466), - [aux_sym_cmd_identifier_token21] = ACTIONS(2466), - [aux_sym_cmd_identifier_token22] = ACTIONS(2466), - [aux_sym_cmd_identifier_token23] = ACTIONS(2466), - [aux_sym_cmd_identifier_token24] = ACTIONS(2466), - [aux_sym_cmd_identifier_token25] = ACTIONS(2466), - [aux_sym_cmd_identifier_token26] = ACTIONS(2466), - [aux_sym_cmd_identifier_token27] = ACTIONS(2466), - [aux_sym_cmd_identifier_token28] = ACTIONS(2466), - [aux_sym_cmd_identifier_token29] = ACTIONS(2466), - [aux_sym_cmd_identifier_token30] = ACTIONS(2466), - [aux_sym_cmd_identifier_token31] = ACTIONS(2466), - [aux_sym_cmd_identifier_token32] = ACTIONS(2466), - [aux_sym_cmd_identifier_token33] = ACTIONS(2466), - [aux_sym_cmd_identifier_token34] = ACTIONS(2466), - [aux_sym_cmd_identifier_token35] = ACTIONS(2466), - [aux_sym_cmd_identifier_token36] = ACTIONS(2466), - [aux_sym_cmd_identifier_token37] = ACTIONS(2466), - [aux_sym_cmd_identifier_token38] = ACTIONS(2466), - [aux_sym_cmd_identifier_token39] = ACTIONS(2466), - [aux_sym_cmd_identifier_token40] = ACTIONS(2466), - [anon_sym_def] = ACTIONS(2466), - [anon_sym_export_DASHenv] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_DOLLAR] = ACTIONS(2466), - [anon_sym_error] = ACTIONS(2466), - [anon_sym_DASH2] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_in2] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_make] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_catch] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_source] = ACTIONS(2466), - [anon_sym_source_DASHenv] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_hide] = ACTIONS(2466), - [anon_sym_hide_DASHenv] = ACTIONS(2466), - [anon_sym_overlay] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2466), - [anon_sym_PLUS2] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2466), - [aux_sym__val_number_decimal_token1] = ACTIONS(2466), - [aux_sym__val_number_decimal_token2] = ACTIONS(2466), - [aux_sym__val_number_decimal_token3] = ACTIONS(2466), - [aux_sym__val_number_decimal_token4] = ACTIONS(2466), - [aux_sym__val_number_token1] = ACTIONS(2466), - [aux_sym__val_number_token2] = ACTIONS(2466), - [aux_sym__val_number_token3] = ACTIONS(2466), - [aux_sym__val_number_token4] = ACTIONS(2466), - [aux_sym__val_number_token5] = ACTIONS(2466), - [aux_sym__val_number_token6] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [sym__str_single_quotes] = ACTIONS(2466), - [sym__str_back_ticks] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2466), - [sym__entry_separator] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2468), + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2025), + [anon_sym_alias] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_let_DASHenv] = ACTIONS(2025), + [anon_sym_mut] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [aux_sym_cmd_identifier_token1] = ACTIONS(2025), + [aux_sym_cmd_identifier_token2] = ACTIONS(2027), + [aux_sym_cmd_identifier_token3] = ACTIONS(2027), + [aux_sym_cmd_identifier_token4] = ACTIONS(2027), + [aux_sym_cmd_identifier_token5] = ACTIONS(2027), + [aux_sym_cmd_identifier_token6] = ACTIONS(2027), + [aux_sym_cmd_identifier_token7] = ACTIONS(2027), + [aux_sym_cmd_identifier_token8] = ACTIONS(2025), + [aux_sym_cmd_identifier_token9] = ACTIONS(2025), + [aux_sym_cmd_identifier_token10] = ACTIONS(2027), + [aux_sym_cmd_identifier_token11] = ACTIONS(2027), + [aux_sym_cmd_identifier_token12] = ACTIONS(2025), + [aux_sym_cmd_identifier_token13] = ACTIONS(2025), + [aux_sym_cmd_identifier_token14] = ACTIONS(2025), + [aux_sym_cmd_identifier_token15] = ACTIONS(2025), + [aux_sym_cmd_identifier_token16] = ACTIONS(2027), + [aux_sym_cmd_identifier_token17] = ACTIONS(2027), + [aux_sym_cmd_identifier_token18] = ACTIONS(2027), + [aux_sym_cmd_identifier_token19] = ACTIONS(2027), + [aux_sym_cmd_identifier_token20] = ACTIONS(2027), + [aux_sym_cmd_identifier_token21] = ACTIONS(2027), + [aux_sym_cmd_identifier_token22] = ACTIONS(2027), + [aux_sym_cmd_identifier_token23] = ACTIONS(2027), + [aux_sym_cmd_identifier_token24] = ACTIONS(2027), + [aux_sym_cmd_identifier_token25] = ACTIONS(2027), + [aux_sym_cmd_identifier_token26] = ACTIONS(2027), + [aux_sym_cmd_identifier_token27] = ACTIONS(2027), + [aux_sym_cmd_identifier_token28] = ACTIONS(2027), + [aux_sym_cmd_identifier_token29] = ACTIONS(2027), + [aux_sym_cmd_identifier_token30] = ACTIONS(2027), + [aux_sym_cmd_identifier_token31] = ACTIONS(2027), + [aux_sym_cmd_identifier_token32] = ACTIONS(2027), + [aux_sym_cmd_identifier_token33] = ACTIONS(2027), + [aux_sym_cmd_identifier_token34] = ACTIONS(2025), + [aux_sym_cmd_identifier_token35] = ACTIONS(2027), + [aux_sym_cmd_identifier_token36] = ACTIONS(2027), + [aux_sym_cmd_identifier_token37] = ACTIONS(2027), + [aux_sym_cmd_identifier_token38] = ACTIONS(2025), + [aux_sym_cmd_identifier_token39] = ACTIONS(2027), + [aux_sym_cmd_identifier_token40] = ACTIONS(2027), + [anon_sym_def] = ACTIONS(2025), + [anon_sym_export_DASHenv] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_module] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2027), + [anon_sym_error] = ACTIONS(2025), + [anon_sym_DASH2] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_in2] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_make] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_do] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_else] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2025), + [anon_sym_catch] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_source] = ACTIONS(2025), + [anon_sym_source_DASHenv] = ACTIONS(2025), + [anon_sym_register] = ACTIONS(2025), + [anon_sym_hide] = ACTIONS(2025), + [anon_sym_hide_DASHenv] = ACTIONS(2025), + [anon_sym_overlay] = ACTIONS(2025), + [anon_sym_as] = ACTIONS(2025), + [anon_sym_PLUS2] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2027), + [aux_sym__val_number_decimal_token1] = ACTIONS(2025), + [aux_sym__val_number_decimal_token2] = ACTIONS(2027), + [aux_sym__val_number_decimal_token3] = ACTIONS(2027), + [aux_sym__val_number_decimal_token4] = ACTIONS(2027), + [aux_sym__val_number_token1] = ACTIONS(2027), + [aux_sym__val_number_token2] = ACTIONS(2027), + [aux_sym__val_number_token3] = ACTIONS(2027), + [aux_sym__val_number_token4] = ACTIONS(2025), + [aux_sym__val_number_token5] = ACTIONS(2025), + [aux_sym__val_number_token6] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(2027), + [sym__str_single_quotes] = ACTIONS(2027), + [sym__str_back_ticks] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_alias] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_let_DASHenv] = ACTIONS(2470), - [anon_sym_mut] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [aux_sym_cmd_identifier_token1] = ACTIONS(2470), - [aux_sym_cmd_identifier_token2] = ACTIONS(2470), - [aux_sym_cmd_identifier_token3] = ACTIONS(2470), - [aux_sym_cmd_identifier_token4] = ACTIONS(2470), - [aux_sym_cmd_identifier_token5] = ACTIONS(2470), - [aux_sym_cmd_identifier_token6] = ACTIONS(2470), - [aux_sym_cmd_identifier_token7] = ACTIONS(2470), - [aux_sym_cmd_identifier_token8] = ACTIONS(2470), - [aux_sym_cmd_identifier_token9] = ACTIONS(2470), - [aux_sym_cmd_identifier_token10] = ACTIONS(2470), - [aux_sym_cmd_identifier_token11] = ACTIONS(2470), - [aux_sym_cmd_identifier_token12] = ACTIONS(2470), - [aux_sym_cmd_identifier_token13] = ACTIONS(2470), - [aux_sym_cmd_identifier_token14] = ACTIONS(2470), - [aux_sym_cmd_identifier_token15] = ACTIONS(2470), - [aux_sym_cmd_identifier_token16] = ACTIONS(2470), - [aux_sym_cmd_identifier_token17] = ACTIONS(2470), - [aux_sym_cmd_identifier_token18] = ACTIONS(2470), - [aux_sym_cmd_identifier_token19] = ACTIONS(2470), - [aux_sym_cmd_identifier_token20] = ACTIONS(2470), - [aux_sym_cmd_identifier_token21] = ACTIONS(2470), - [aux_sym_cmd_identifier_token22] = ACTIONS(2470), - [aux_sym_cmd_identifier_token23] = ACTIONS(2470), - [aux_sym_cmd_identifier_token24] = ACTIONS(2470), - [aux_sym_cmd_identifier_token25] = ACTIONS(2470), - [aux_sym_cmd_identifier_token26] = ACTIONS(2470), - [aux_sym_cmd_identifier_token27] = ACTIONS(2470), - [aux_sym_cmd_identifier_token28] = ACTIONS(2470), - [aux_sym_cmd_identifier_token29] = ACTIONS(2470), - [aux_sym_cmd_identifier_token30] = ACTIONS(2470), - [aux_sym_cmd_identifier_token31] = ACTIONS(2470), - [aux_sym_cmd_identifier_token32] = ACTIONS(2470), - [aux_sym_cmd_identifier_token33] = ACTIONS(2470), - [aux_sym_cmd_identifier_token34] = ACTIONS(2470), - [aux_sym_cmd_identifier_token35] = ACTIONS(2470), - [aux_sym_cmd_identifier_token36] = ACTIONS(2470), - [aux_sym_cmd_identifier_token37] = ACTIONS(2470), - [aux_sym_cmd_identifier_token38] = ACTIONS(2470), - [aux_sym_cmd_identifier_token39] = ACTIONS(2470), - [aux_sym_cmd_identifier_token40] = ACTIONS(2470), - [anon_sym_def] = ACTIONS(2470), - [anon_sym_export_DASHenv] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_DOLLAR] = ACTIONS(2470), - [anon_sym_error] = ACTIONS(2470), - [anon_sym_DASH2] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_in2] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_make] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_catch] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_source] = ACTIONS(2470), - [anon_sym_source_DASHenv] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_hide] = ACTIONS(2470), - [anon_sym_hide_DASHenv] = ACTIONS(2470), - [anon_sym_overlay] = ACTIONS(2470), - [anon_sym_as] = ACTIONS(2470), - [anon_sym_PLUS2] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), - [aux_sym__val_number_decimal_token1] = ACTIONS(2470), - [aux_sym__val_number_decimal_token2] = ACTIONS(2470), - [aux_sym__val_number_decimal_token3] = ACTIONS(2470), - [aux_sym__val_number_decimal_token4] = ACTIONS(2470), - [aux_sym__val_number_token1] = ACTIONS(2470), - [aux_sym__val_number_token2] = ACTIONS(2470), - [aux_sym__val_number_token3] = ACTIONS(2470), - [aux_sym__val_number_token4] = ACTIONS(2470), - [aux_sym__val_number_token5] = ACTIONS(2470), - [aux_sym__val_number_token6] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2470), - [sym__str_single_quotes] = ACTIONS(2470), - [sym__str_back_ticks] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), - [sym__entry_separator] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2472), + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1959), + [aux_sym_cmd_identifier_token3] = ACTIONS(1959), + [aux_sym_cmd_identifier_token4] = ACTIONS(1959), + [aux_sym_cmd_identifier_token5] = ACTIONS(1959), + [aux_sym_cmd_identifier_token6] = ACTIONS(1959), + [aux_sym_cmd_identifier_token7] = ACTIONS(1959), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1959), + [aux_sym_cmd_identifier_token11] = ACTIONS(1959), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1959), + [aux_sym_cmd_identifier_token17] = ACTIONS(1959), + [aux_sym_cmd_identifier_token18] = ACTIONS(1959), + [aux_sym_cmd_identifier_token19] = ACTIONS(1959), + [aux_sym_cmd_identifier_token20] = ACTIONS(1959), + [aux_sym_cmd_identifier_token21] = ACTIONS(1959), + [aux_sym_cmd_identifier_token22] = ACTIONS(1959), + [aux_sym_cmd_identifier_token23] = ACTIONS(1959), + [aux_sym_cmd_identifier_token24] = ACTIONS(1959), + [aux_sym_cmd_identifier_token25] = ACTIONS(1959), + [aux_sym_cmd_identifier_token26] = ACTIONS(1959), + [aux_sym_cmd_identifier_token27] = ACTIONS(1959), + [aux_sym_cmd_identifier_token28] = ACTIONS(1959), + [aux_sym_cmd_identifier_token29] = ACTIONS(1959), + [aux_sym_cmd_identifier_token30] = ACTIONS(1959), + [aux_sym_cmd_identifier_token31] = ACTIONS(1959), + [aux_sym_cmd_identifier_token32] = ACTIONS(1959), + [aux_sym_cmd_identifier_token33] = ACTIONS(1959), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1959), + [aux_sym_cmd_identifier_token36] = ACTIONS(1959), + [aux_sym_cmd_identifier_token37] = ACTIONS(1959), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1959), + [aux_sym_cmd_identifier_token40] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1959), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1959), }, - [659] = { - [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1024), - [aux_sym_cmd_identifier_token3] = ACTIONS(1024), - [aux_sym_cmd_identifier_token4] = ACTIONS(1024), - [aux_sym_cmd_identifier_token5] = ACTIONS(1024), - [aux_sym_cmd_identifier_token6] = ACTIONS(1024), - [aux_sym_cmd_identifier_token7] = ACTIONS(1024), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1024), - [aux_sym_cmd_identifier_token11] = ACTIONS(1024), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1024), - [aux_sym_cmd_identifier_token17] = ACTIONS(1024), - [aux_sym_cmd_identifier_token18] = ACTIONS(1024), - [aux_sym_cmd_identifier_token19] = ACTIONS(1024), - [aux_sym_cmd_identifier_token20] = ACTIONS(1024), - [aux_sym_cmd_identifier_token21] = ACTIONS(1024), - [aux_sym_cmd_identifier_token22] = ACTIONS(1024), - [aux_sym_cmd_identifier_token23] = ACTIONS(1024), - [aux_sym_cmd_identifier_token24] = ACTIONS(1024), - [aux_sym_cmd_identifier_token25] = ACTIONS(1024), - [aux_sym_cmd_identifier_token26] = ACTIONS(1024), - [aux_sym_cmd_identifier_token27] = ACTIONS(1024), - [aux_sym_cmd_identifier_token28] = ACTIONS(1024), - [aux_sym_cmd_identifier_token29] = ACTIONS(1024), - [aux_sym_cmd_identifier_token30] = ACTIONS(1024), - [aux_sym_cmd_identifier_token31] = ACTIONS(1024), - [aux_sym_cmd_identifier_token32] = ACTIONS(1024), - [aux_sym_cmd_identifier_token33] = ACTIONS(1024), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1024), - [aux_sym_cmd_identifier_token36] = ACTIONS(1024), - [aux_sym_cmd_identifier_token37] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1022), - [aux_sym__val_number_token5] = ACTIONS(1022), - [aux_sym__val_number_token6] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), + [700] = { + [aux_sym__pipe_separator] = STATE(700), + [sym_comment] = STATE(700), + [aux_sym_shebang_repeat1] = STATE(4979), + [aux_sym_cmd_identifier_token1] = ACTIONS(2509), + [aux_sym_cmd_identifier_token2] = ACTIONS(2511), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [aux_sym_cmd_identifier_token6] = ACTIONS(2511), + [aux_sym_cmd_identifier_token7] = ACTIONS(2511), + [aux_sym_cmd_identifier_token8] = ACTIONS(2511), + [aux_sym_cmd_identifier_token9] = ACTIONS(2509), + [aux_sym_cmd_identifier_token10] = ACTIONS(2511), + [aux_sym_cmd_identifier_token11] = ACTIONS(2511), + [aux_sym_cmd_identifier_token12] = ACTIONS(2511), + [aux_sym_cmd_identifier_token13] = ACTIONS(2509), + [aux_sym_cmd_identifier_token14] = ACTIONS(2511), + [aux_sym_cmd_identifier_token15] = ACTIONS(2509), + [aux_sym_cmd_identifier_token16] = ACTIONS(2511), + [aux_sym_cmd_identifier_token17] = ACTIONS(2511), + [aux_sym_cmd_identifier_token18] = ACTIONS(2509), + [aux_sym_cmd_identifier_token19] = ACTIONS(2511), + [aux_sym_cmd_identifier_token20] = ACTIONS(2511), + [aux_sym_cmd_identifier_token21] = ACTIONS(2511), + [aux_sym_cmd_identifier_token22] = ACTIONS(2511), + [aux_sym_cmd_identifier_token23] = ACTIONS(2511), + [aux_sym_cmd_identifier_token24] = ACTIONS(2511), + [aux_sym_cmd_identifier_token25] = ACTIONS(2511), + [aux_sym_cmd_identifier_token26] = ACTIONS(2511), + [aux_sym_cmd_identifier_token27] = ACTIONS(2511), + [aux_sym_cmd_identifier_token28] = ACTIONS(2511), + [aux_sym_cmd_identifier_token29] = ACTIONS(2511), + [aux_sym_cmd_identifier_token30] = ACTIONS(2511), + [aux_sym_cmd_identifier_token31] = ACTIONS(2511), + [aux_sym_cmd_identifier_token32] = ACTIONS(2509), + [aux_sym_cmd_identifier_token33] = ACTIONS(2511), + [aux_sym_cmd_identifier_token34] = ACTIONS(2509), + [aux_sym_cmd_identifier_token35] = ACTIONS(2511), + [aux_sym_cmd_identifier_token36] = ACTIONS(2511), + [aux_sym_cmd_identifier_token37] = ACTIONS(2511), + [aux_sym_cmd_identifier_token38] = ACTIONS(2509), + [aux_sym_cmd_identifier_token39] = ACTIONS(2511), + [aux_sym_cmd_identifier_token40] = ACTIONS(2511), + [sym__newline] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_err_GT_PIPE] = ACTIONS(2516), + [anon_sym_out_GT_PIPE] = ACTIONS(2516), + [anon_sym_e_GT_PIPE] = ACTIONS(2516), + [anon_sym_o_GT_PIPE] = ACTIONS(2516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_where] = ACTIONS(2511), + [aux_sym_expr_unary_token1] = ACTIONS(2511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2511), + [aux_sym__val_number_decimal_token4] = ACTIONS(2511), + [aux_sym__val_number_token1] = ACTIONS(2511), + [aux_sym__val_number_token2] = ACTIONS(2511), + [aux_sym__val_number_token3] = ACTIONS(2511), + [aux_sym__val_number_token4] = ACTIONS(2509), + [aux_sym__val_number_token5] = ACTIONS(2509), + [aux_sym__val_number_token6] = ACTIONS(2509), + [anon_sym_0b] = ACTIONS(2509), + [anon_sym_0o] = ACTIONS(2509), + [anon_sym_0x] = ACTIONS(2509), + [sym_val_date] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym__str_single_quotes] = ACTIONS(2511), + [sym__str_back_ticks] = ACTIONS(2511), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [aux_sym_env_var_token1] = ACTIONS(2509), + [anon_sym_CARET] = ACTIONS(2511), + [aux_sym_command_token1] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2511), }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_alias] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_let_DASHenv] = ACTIONS(2474), - [anon_sym_mut] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [aux_sym_cmd_identifier_token1] = ACTIONS(2474), - [aux_sym_cmd_identifier_token2] = ACTIONS(2474), - [aux_sym_cmd_identifier_token3] = ACTIONS(2474), - [aux_sym_cmd_identifier_token4] = ACTIONS(2474), - [aux_sym_cmd_identifier_token5] = ACTIONS(2474), - [aux_sym_cmd_identifier_token6] = ACTIONS(2474), - [aux_sym_cmd_identifier_token7] = ACTIONS(2474), - [aux_sym_cmd_identifier_token8] = ACTIONS(2474), - [aux_sym_cmd_identifier_token9] = ACTIONS(2474), - [aux_sym_cmd_identifier_token10] = ACTIONS(2474), - [aux_sym_cmd_identifier_token11] = ACTIONS(2474), - [aux_sym_cmd_identifier_token12] = ACTIONS(2474), - [aux_sym_cmd_identifier_token13] = ACTIONS(2474), - [aux_sym_cmd_identifier_token14] = ACTIONS(2474), - [aux_sym_cmd_identifier_token15] = ACTIONS(2474), - [aux_sym_cmd_identifier_token16] = ACTIONS(2474), - [aux_sym_cmd_identifier_token17] = ACTIONS(2474), - [aux_sym_cmd_identifier_token18] = ACTIONS(2474), - [aux_sym_cmd_identifier_token19] = ACTIONS(2474), - [aux_sym_cmd_identifier_token20] = ACTIONS(2474), - [aux_sym_cmd_identifier_token21] = ACTIONS(2474), - [aux_sym_cmd_identifier_token22] = ACTIONS(2474), - [aux_sym_cmd_identifier_token23] = ACTIONS(2474), - [aux_sym_cmd_identifier_token24] = ACTIONS(2474), - [aux_sym_cmd_identifier_token25] = ACTIONS(2474), - [aux_sym_cmd_identifier_token26] = ACTIONS(2474), - [aux_sym_cmd_identifier_token27] = ACTIONS(2474), - [aux_sym_cmd_identifier_token28] = ACTIONS(2474), - [aux_sym_cmd_identifier_token29] = ACTIONS(2474), - [aux_sym_cmd_identifier_token30] = ACTIONS(2474), - [aux_sym_cmd_identifier_token31] = ACTIONS(2474), - [aux_sym_cmd_identifier_token32] = ACTIONS(2474), - [aux_sym_cmd_identifier_token33] = ACTIONS(2474), - [aux_sym_cmd_identifier_token34] = ACTIONS(2474), - [aux_sym_cmd_identifier_token35] = ACTIONS(2474), - [aux_sym_cmd_identifier_token36] = ACTIONS(2474), - [aux_sym_cmd_identifier_token37] = ACTIONS(2474), - [aux_sym_cmd_identifier_token38] = ACTIONS(2474), - [aux_sym_cmd_identifier_token39] = ACTIONS(2474), - [aux_sym_cmd_identifier_token40] = ACTIONS(2474), - [anon_sym_def] = ACTIONS(2474), - [anon_sym_export_DASHenv] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_DOLLAR] = ACTIONS(2474), - [anon_sym_error] = ACTIONS(2474), - [anon_sym_DASH2] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_in2] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_make] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_catch] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_source] = ACTIONS(2474), - [anon_sym_source_DASHenv] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_hide] = ACTIONS(2474), - [anon_sym_hide_DASHenv] = ACTIONS(2474), - [anon_sym_overlay] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_PLUS2] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), - [aux_sym__val_number_decimal_token1] = ACTIONS(2474), - [aux_sym__val_number_decimal_token2] = ACTIONS(2474), - [aux_sym__val_number_decimal_token3] = ACTIONS(2474), - [aux_sym__val_number_decimal_token4] = ACTIONS(2474), - [aux_sym__val_number_token1] = ACTIONS(2474), - [aux_sym__val_number_token2] = ACTIONS(2474), - [aux_sym__val_number_token3] = ACTIONS(2474), - [aux_sym__val_number_token4] = ACTIONS(2474), - [aux_sym__val_number_token5] = ACTIONS(2474), - [aux_sym__val_number_token6] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [sym__str_single_quotes] = ACTIONS(2474), - [sym__str_back_ticks] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), - [sym__entry_separator] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2476), + [701] = { + [sym_comment] = STATE(701), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_alias] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_let_DASHenv] = ACTIONS(2394), + [anon_sym_mut] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [aux_sym_cmd_identifier_token1] = ACTIONS(2394), + [aux_sym_cmd_identifier_token2] = ACTIONS(2396), + [aux_sym_cmd_identifier_token3] = ACTIONS(2396), + [aux_sym_cmd_identifier_token4] = ACTIONS(2396), + [aux_sym_cmd_identifier_token5] = ACTIONS(2396), + [aux_sym_cmd_identifier_token6] = ACTIONS(2396), + [aux_sym_cmd_identifier_token7] = ACTIONS(2396), + [aux_sym_cmd_identifier_token8] = ACTIONS(2394), + [aux_sym_cmd_identifier_token9] = ACTIONS(2394), + [aux_sym_cmd_identifier_token10] = ACTIONS(2396), + [aux_sym_cmd_identifier_token11] = ACTIONS(2396), + [aux_sym_cmd_identifier_token12] = ACTIONS(2394), + [aux_sym_cmd_identifier_token13] = ACTIONS(2394), + [aux_sym_cmd_identifier_token14] = ACTIONS(2394), + [aux_sym_cmd_identifier_token15] = ACTIONS(2394), + [aux_sym_cmd_identifier_token16] = ACTIONS(2396), + [aux_sym_cmd_identifier_token17] = ACTIONS(2396), + [aux_sym_cmd_identifier_token18] = ACTIONS(2396), + [aux_sym_cmd_identifier_token19] = ACTIONS(2396), + [aux_sym_cmd_identifier_token20] = ACTIONS(2396), + [aux_sym_cmd_identifier_token21] = ACTIONS(2396), + [aux_sym_cmd_identifier_token22] = ACTIONS(2396), + [aux_sym_cmd_identifier_token23] = ACTIONS(2396), + [aux_sym_cmd_identifier_token24] = ACTIONS(2396), + [aux_sym_cmd_identifier_token25] = ACTIONS(2396), + [aux_sym_cmd_identifier_token26] = ACTIONS(2396), + [aux_sym_cmd_identifier_token27] = ACTIONS(2396), + [aux_sym_cmd_identifier_token28] = ACTIONS(2396), + [aux_sym_cmd_identifier_token29] = ACTIONS(2396), + [aux_sym_cmd_identifier_token30] = ACTIONS(2396), + [aux_sym_cmd_identifier_token31] = ACTIONS(2396), + [aux_sym_cmd_identifier_token32] = ACTIONS(2396), + [aux_sym_cmd_identifier_token33] = ACTIONS(2396), + [aux_sym_cmd_identifier_token34] = ACTIONS(2394), + [aux_sym_cmd_identifier_token35] = ACTIONS(2396), + [aux_sym_cmd_identifier_token36] = ACTIONS(2396), + [aux_sym_cmd_identifier_token37] = ACTIONS(2396), + [aux_sym_cmd_identifier_token38] = ACTIONS(2394), + [aux_sym_cmd_identifier_token39] = ACTIONS(2396), + [aux_sym_cmd_identifier_token40] = ACTIONS(2396), + [anon_sym_def] = ACTIONS(2394), + [anon_sym_export_DASHenv] = ACTIONS(2394), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_use] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_DOLLAR] = ACTIONS(2396), + [anon_sym_error] = ACTIONS(2394), + [anon_sym_DASH2] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2394), + [anon_sym_in2] = ACTIONS(2394), + [anon_sym_loop] = ACTIONS(2394), + [anon_sym_make] = ACTIONS(2394), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_do] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_match] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2394), + [anon_sym_catch] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2394), + [anon_sym_source] = ACTIONS(2394), + [anon_sym_source_DASHenv] = ACTIONS(2394), + [anon_sym_register] = ACTIONS(2394), + [anon_sym_hide] = ACTIONS(2394), + [anon_sym_hide_DASHenv] = ACTIONS(2394), + [anon_sym_overlay] = ACTIONS(2394), + [anon_sym_as] = ACTIONS(2394), + [anon_sym_PLUS2] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), + [aux_sym__val_number_decimal_token1] = ACTIONS(2394), + [aux_sym__val_number_decimal_token2] = ACTIONS(2396), + [aux_sym__val_number_decimal_token3] = ACTIONS(2396), + [aux_sym__val_number_decimal_token4] = ACTIONS(2396), + [aux_sym__val_number_token1] = ACTIONS(2396), + [aux_sym__val_number_token2] = ACTIONS(2396), + [aux_sym__val_number_token3] = ACTIONS(2396), + [aux_sym__val_number_token4] = ACTIONS(2394), + [aux_sym__val_number_token5] = ACTIONS(2394), + [aux_sym__val_number_token6] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2396), + [sym__str_single_quotes] = ACTIONS(2396), + [sym__str_back_ticks] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2396), }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2478), - [aux_sym_cmd_identifier_token3] = ACTIONS(2478), - [aux_sym_cmd_identifier_token4] = ACTIONS(2478), - [aux_sym_cmd_identifier_token5] = ACTIONS(2478), - [aux_sym_cmd_identifier_token6] = ACTIONS(2478), - [aux_sym_cmd_identifier_token7] = ACTIONS(2478), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2478), - [aux_sym_cmd_identifier_token11] = ACTIONS(2478), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2478), - [aux_sym_cmd_identifier_token17] = ACTIONS(2478), - [aux_sym_cmd_identifier_token18] = ACTIONS(2478), - [aux_sym_cmd_identifier_token19] = ACTIONS(2478), - [aux_sym_cmd_identifier_token20] = ACTIONS(2478), - [aux_sym_cmd_identifier_token21] = ACTIONS(2478), - [aux_sym_cmd_identifier_token22] = ACTIONS(2478), - [aux_sym_cmd_identifier_token23] = ACTIONS(2478), - [aux_sym_cmd_identifier_token24] = ACTIONS(2478), - [aux_sym_cmd_identifier_token25] = ACTIONS(2478), - [aux_sym_cmd_identifier_token26] = ACTIONS(2478), - [aux_sym_cmd_identifier_token27] = ACTIONS(2478), - [aux_sym_cmd_identifier_token28] = ACTIONS(2478), - [aux_sym_cmd_identifier_token29] = ACTIONS(2478), - [aux_sym_cmd_identifier_token30] = ACTIONS(2478), - [aux_sym_cmd_identifier_token31] = ACTIONS(2478), - [aux_sym_cmd_identifier_token32] = ACTIONS(2478), - [aux_sym_cmd_identifier_token33] = ACTIONS(2478), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2478), - [aux_sym_cmd_identifier_token36] = ACTIONS(2478), - [aux_sym_cmd_identifier_token37] = ACTIONS(2478), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2478), - [aux_sym_cmd_identifier_token40] = ACTIONS(2478), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(2478), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in2] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2478), - [aux_sym__val_number_decimal_token3] = ACTIONS(2478), - [aux_sym__val_number_decimal_token4] = ACTIONS(2478), - [aux_sym__val_number_token1] = ACTIONS(2478), - [aux_sym__val_number_token2] = ACTIONS(2478), - [aux_sym__val_number_token3] = ACTIONS(2478), - [aux_sym__val_number_token4] = ACTIONS(2478), - [aux_sym__val_number_token5] = ACTIONS(2478), - [aux_sym__val_number_token6] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [sym__str_single_quotes] = ACTIONS(2478), - [sym__str_back_ticks] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), - [sym__entry_separator] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2480), + [702] = { + [sym_comment] = STATE(702), + [anon_sym_export] = ACTIONS(2398), + [anon_sym_alias] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_let_DASHenv] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [aux_sym_cmd_identifier_token1] = ACTIONS(2398), + [aux_sym_cmd_identifier_token2] = ACTIONS(2400), + [aux_sym_cmd_identifier_token3] = ACTIONS(2400), + [aux_sym_cmd_identifier_token4] = ACTIONS(2400), + [aux_sym_cmd_identifier_token5] = ACTIONS(2400), + [aux_sym_cmd_identifier_token6] = ACTIONS(2400), + [aux_sym_cmd_identifier_token7] = ACTIONS(2400), + [aux_sym_cmd_identifier_token8] = ACTIONS(2398), + [aux_sym_cmd_identifier_token9] = ACTIONS(2398), + [aux_sym_cmd_identifier_token10] = ACTIONS(2400), + [aux_sym_cmd_identifier_token11] = ACTIONS(2400), + [aux_sym_cmd_identifier_token12] = ACTIONS(2398), + [aux_sym_cmd_identifier_token13] = ACTIONS(2398), + [aux_sym_cmd_identifier_token14] = ACTIONS(2398), + [aux_sym_cmd_identifier_token15] = ACTIONS(2398), + [aux_sym_cmd_identifier_token16] = ACTIONS(2400), + [aux_sym_cmd_identifier_token17] = ACTIONS(2400), + [aux_sym_cmd_identifier_token18] = ACTIONS(2400), + [aux_sym_cmd_identifier_token19] = ACTIONS(2400), + [aux_sym_cmd_identifier_token20] = ACTIONS(2400), + [aux_sym_cmd_identifier_token21] = ACTIONS(2400), + [aux_sym_cmd_identifier_token22] = ACTIONS(2400), + [aux_sym_cmd_identifier_token23] = ACTIONS(2400), + [aux_sym_cmd_identifier_token24] = ACTIONS(2400), + [aux_sym_cmd_identifier_token25] = ACTIONS(2400), + [aux_sym_cmd_identifier_token26] = ACTIONS(2400), + [aux_sym_cmd_identifier_token27] = ACTIONS(2400), + [aux_sym_cmd_identifier_token28] = ACTIONS(2400), + [aux_sym_cmd_identifier_token29] = ACTIONS(2400), + [aux_sym_cmd_identifier_token30] = ACTIONS(2400), + [aux_sym_cmd_identifier_token31] = ACTIONS(2400), + [aux_sym_cmd_identifier_token32] = ACTIONS(2400), + [aux_sym_cmd_identifier_token33] = ACTIONS(2400), + [aux_sym_cmd_identifier_token34] = ACTIONS(2398), + [aux_sym_cmd_identifier_token35] = ACTIONS(2400), + [aux_sym_cmd_identifier_token36] = ACTIONS(2400), + [aux_sym_cmd_identifier_token37] = ACTIONS(2400), + [aux_sym_cmd_identifier_token38] = ACTIONS(2398), + [aux_sym_cmd_identifier_token39] = ACTIONS(2400), + [aux_sym_cmd_identifier_token40] = ACTIONS(2400), + [anon_sym_def] = ACTIONS(2398), + [anon_sym_export_DASHenv] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_module] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_DOLLAR] = ACTIONS(2400), + [anon_sym_error] = ACTIONS(2398), + [anon_sym_DASH2] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_in2] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_make] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_do] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2398), + [anon_sym_catch] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_source] = ACTIONS(2398), + [anon_sym_source_DASHenv] = ACTIONS(2398), + [anon_sym_register] = ACTIONS(2398), + [anon_sym_hide] = ACTIONS(2398), + [anon_sym_hide_DASHenv] = ACTIONS(2398), + [anon_sym_overlay] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_PLUS2] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), + [aux_sym__val_number_decimal_token1] = ACTIONS(2398), + [aux_sym__val_number_decimal_token2] = ACTIONS(2400), + [aux_sym__val_number_decimal_token3] = ACTIONS(2400), + [aux_sym__val_number_decimal_token4] = ACTIONS(2400), + [aux_sym__val_number_token1] = ACTIONS(2400), + [aux_sym__val_number_token2] = ACTIONS(2400), + [aux_sym__val_number_token3] = ACTIONS(2400), + [aux_sym__val_number_token4] = ACTIONS(2398), + [aux_sym__val_number_token5] = ACTIONS(2398), + [aux_sym__val_number_token6] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2400), + [sym__str_single_quotes] = ACTIONS(2400), + [sym__str_back_ticks] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2400), }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(2029), + [anon_sym_alias] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_let_DASHenv] = ACTIONS(2029), + [anon_sym_mut] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [aux_sym_cmd_identifier_token1] = ACTIONS(2029), + [aux_sym_cmd_identifier_token2] = ACTIONS(2031), + [aux_sym_cmd_identifier_token3] = ACTIONS(2031), + [aux_sym_cmd_identifier_token4] = ACTIONS(2031), + [aux_sym_cmd_identifier_token5] = ACTIONS(2031), + [aux_sym_cmd_identifier_token6] = ACTIONS(2031), + [aux_sym_cmd_identifier_token7] = ACTIONS(2031), + [aux_sym_cmd_identifier_token8] = ACTIONS(2029), + [aux_sym_cmd_identifier_token9] = ACTIONS(2029), + [aux_sym_cmd_identifier_token10] = ACTIONS(2031), + [aux_sym_cmd_identifier_token11] = ACTIONS(2031), + [aux_sym_cmd_identifier_token12] = ACTIONS(2029), + [aux_sym_cmd_identifier_token13] = ACTIONS(2029), + [aux_sym_cmd_identifier_token14] = ACTIONS(2029), + [aux_sym_cmd_identifier_token15] = ACTIONS(2029), + [aux_sym_cmd_identifier_token16] = ACTIONS(2031), + [aux_sym_cmd_identifier_token17] = ACTIONS(2031), + [aux_sym_cmd_identifier_token18] = ACTIONS(2031), + [aux_sym_cmd_identifier_token19] = ACTIONS(2031), + [aux_sym_cmd_identifier_token20] = ACTIONS(2031), + [aux_sym_cmd_identifier_token21] = ACTIONS(2031), + [aux_sym_cmd_identifier_token22] = ACTIONS(2031), + [aux_sym_cmd_identifier_token23] = ACTIONS(2031), + [aux_sym_cmd_identifier_token24] = ACTIONS(2031), + [aux_sym_cmd_identifier_token25] = ACTIONS(2031), + [aux_sym_cmd_identifier_token26] = ACTIONS(2031), + [aux_sym_cmd_identifier_token27] = ACTIONS(2031), + [aux_sym_cmd_identifier_token28] = ACTIONS(2031), + [aux_sym_cmd_identifier_token29] = ACTIONS(2031), + [aux_sym_cmd_identifier_token30] = ACTIONS(2031), + [aux_sym_cmd_identifier_token31] = ACTIONS(2031), + [aux_sym_cmd_identifier_token32] = ACTIONS(2031), + [aux_sym_cmd_identifier_token33] = ACTIONS(2031), + [aux_sym_cmd_identifier_token34] = ACTIONS(2029), + [aux_sym_cmd_identifier_token35] = ACTIONS(2031), + [aux_sym_cmd_identifier_token36] = ACTIONS(2031), + [aux_sym_cmd_identifier_token37] = ACTIONS(2031), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_export_DASHenv] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_module] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_error] = ACTIONS(2029), + [anon_sym_DASH2] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_in2] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_make] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_do] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_else] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_catch] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_source] = ACTIONS(2029), + [anon_sym_source_DASHenv] = ACTIONS(2029), + [anon_sym_register] = ACTIONS(2029), + [anon_sym_hide] = ACTIONS(2029), + [anon_sym_hide_DASHenv] = ACTIONS(2029), + [anon_sym_overlay] = ACTIONS(2029), + [anon_sym_as] = ACTIONS(2029), + [anon_sym_PLUS2] = ACTIONS(2029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [aux_sym__val_number_token4] = ACTIONS(2029), + [aux_sym__val_number_token5] = ACTIONS(2029), + [aux_sym__val_number_token6] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2031), }, - [663] = { - [sym_comment] = STATE(663), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_alias] = ACTIONS(1014), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_let_DASHenv] = ACTIONS(1014), - [anon_sym_mut] = ACTIONS(1014), - [anon_sym_const] = ACTIONS(1014), - [aux_sym_cmd_identifier_token1] = ACTIONS(1014), - [aux_sym_cmd_identifier_token2] = ACTIONS(1016), - [aux_sym_cmd_identifier_token3] = ACTIONS(1016), - [aux_sym_cmd_identifier_token4] = ACTIONS(1016), - [aux_sym_cmd_identifier_token5] = ACTIONS(1016), - [aux_sym_cmd_identifier_token6] = ACTIONS(1016), - [aux_sym_cmd_identifier_token7] = ACTIONS(1016), - [aux_sym_cmd_identifier_token8] = ACTIONS(1014), - [aux_sym_cmd_identifier_token9] = ACTIONS(1014), - [aux_sym_cmd_identifier_token10] = ACTIONS(1016), - [aux_sym_cmd_identifier_token11] = ACTIONS(1016), - [aux_sym_cmd_identifier_token12] = ACTIONS(1014), - [aux_sym_cmd_identifier_token13] = ACTIONS(1014), - [aux_sym_cmd_identifier_token14] = ACTIONS(1014), - [aux_sym_cmd_identifier_token15] = ACTIONS(1014), - [aux_sym_cmd_identifier_token16] = ACTIONS(1016), - [aux_sym_cmd_identifier_token17] = ACTIONS(1016), - [aux_sym_cmd_identifier_token18] = ACTIONS(1016), - [aux_sym_cmd_identifier_token19] = ACTIONS(1016), - [aux_sym_cmd_identifier_token20] = ACTIONS(1016), - [aux_sym_cmd_identifier_token21] = ACTIONS(1016), - [aux_sym_cmd_identifier_token22] = ACTIONS(1016), - [aux_sym_cmd_identifier_token23] = ACTIONS(1016), - [aux_sym_cmd_identifier_token24] = ACTIONS(1016), - [aux_sym_cmd_identifier_token25] = ACTIONS(1016), - [aux_sym_cmd_identifier_token26] = ACTIONS(1016), - [aux_sym_cmd_identifier_token27] = ACTIONS(1016), - [aux_sym_cmd_identifier_token28] = ACTIONS(1016), - [aux_sym_cmd_identifier_token29] = ACTIONS(1016), - [aux_sym_cmd_identifier_token30] = ACTIONS(1016), - [aux_sym_cmd_identifier_token31] = ACTIONS(1016), - [aux_sym_cmd_identifier_token32] = ACTIONS(1016), - [aux_sym_cmd_identifier_token33] = ACTIONS(1016), - [aux_sym_cmd_identifier_token34] = ACTIONS(1014), - [aux_sym_cmd_identifier_token35] = ACTIONS(1016), - [aux_sym_cmd_identifier_token36] = ACTIONS(1016), - [aux_sym_cmd_identifier_token37] = ACTIONS(1016), - [aux_sym_cmd_identifier_token38] = ACTIONS(1014), - [aux_sym_cmd_identifier_token39] = ACTIONS(1016), - [aux_sym_cmd_identifier_token40] = ACTIONS(1016), - [anon_sym_def] = ACTIONS(1014), - [anon_sym_export_DASHenv] = ACTIONS(1014), - [anon_sym_extern] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_use] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_error] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_continue] = ACTIONS(1014), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_loop] = ACTIONS(1014), - [anon_sym_make] = ACTIONS(1014), - [anon_sym_while] = ACTIONS(1014), - [anon_sym_do] = ACTIONS(1014), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_else] = ACTIONS(1014), - [anon_sym_match] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1014), - [anon_sym_catch] = ACTIONS(1014), - [anon_sym_return] = ACTIONS(1014), - [anon_sym_source] = ACTIONS(1014), - [anon_sym_source_DASHenv] = ACTIONS(1014), - [anon_sym_register] = ACTIONS(1014), - [anon_sym_hide] = ACTIONS(1014), - [anon_sym_hide_DASHenv] = ACTIONS(1014), - [anon_sym_overlay] = ACTIONS(1014), - [anon_sym_as] = ACTIONS(1014), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1014), - [aux_sym__val_number_token5] = ACTIONS(1014), - [aux_sym__val_number_token6] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_alias] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_let_DASHenv] = ACTIONS(2402), + [anon_sym_mut] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [aux_sym_cmd_identifier_token1] = ACTIONS(2402), + [aux_sym_cmd_identifier_token2] = ACTIONS(2404), + [aux_sym_cmd_identifier_token3] = ACTIONS(2404), + [aux_sym_cmd_identifier_token4] = ACTIONS(2404), + [aux_sym_cmd_identifier_token5] = ACTIONS(2404), + [aux_sym_cmd_identifier_token6] = ACTIONS(2404), + [aux_sym_cmd_identifier_token7] = ACTIONS(2404), + [aux_sym_cmd_identifier_token8] = ACTIONS(2402), + [aux_sym_cmd_identifier_token9] = ACTIONS(2402), + [aux_sym_cmd_identifier_token10] = ACTIONS(2404), + [aux_sym_cmd_identifier_token11] = ACTIONS(2404), + [aux_sym_cmd_identifier_token12] = ACTIONS(2402), + [aux_sym_cmd_identifier_token13] = ACTIONS(2402), + [aux_sym_cmd_identifier_token14] = ACTIONS(2402), + [aux_sym_cmd_identifier_token15] = ACTIONS(2402), + [aux_sym_cmd_identifier_token16] = ACTIONS(2404), + [aux_sym_cmd_identifier_token17] = ACTIONS(2404), + [aux_sym_cmd_identifier_token18] = ACTIONS(2404), + [aux_sym_cmd_identifier_token19] = ACTIONS(2404), + [aux_sym_cmd_identifier_token20] = ACTIONS(2404), + [aux_sym_cmd_identifier_token21] = ACTIONS(2404), + [aux_sym_cmd_identifier_token22] = ACTIONS(2404), + [aux_sym_cmd_identifier_token23] = ACTIONS(2404), + [aux_sym_cmd_identifier_token24] = ACTIONS(2404), + [aux_sym_cmd_identifier_token25] = ACTIONS(2404), + [aux_sym_cmd_identifier_token26] = ACTIONS(2404), + [aux_sym_cmd_identifier_token27] = ACTIONS(2404), + [aux_sym_cmd_identifier_token28] = ACTIONS(2404), + [aux_sym_cmd_identifier_token29] = ACTIONS(2404), + [aux_sym_cmd_identifier_token30] = ACTIONS(2404), + [aux_sym_cmd_identifier_token31] = ACTIONS(2404), + [aux_sym_cmd_identifier_token32] = ACTIONS(2404), + [aux_sym_cmd_identifier_token33] = ACTIONS(2404), + [aux_sym_cmd_identifier_token34] = ACTIONS(2402), + [aux_sym_cmd_identifier_token35] = ACTIONS(2404), + [aux_sym_cmd_identifier_token36] = ACTIONS(2404), + [aux_sym_cmd_identifier_token37] = ACTIONS(2404), + [aux_sym_cmd_identifier_token38] = ACTIONS(2402), + [aux_sym_cmd_identifier_token39] = ACTIONS(2404), + [aux_sym_cmd_identifier_token40] = ACTIONS(2404), + [anon_sym_def] = ACTIONS(2402), + [anon_sym_export_DASHenv] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_DASH2] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in2] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_make] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_catch] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_source] = ACTIONS(2402), + [anon_sym_source_DASHenv] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_hide] = ACTIONS(2402), + [anon_sym_hide_DASHenv] = ACTIONS(2402), + [anon_sym_overlay] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2402), + [anon_sym_PLUS2] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2404), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2404), + [aux_sym__val_number_decimal_token3] = ACTIONS(2404), + [aux_sym__val_number_decimal_token4] = ACTIONS(2404), + [aux_sym__val_number_token1] = ACTIONS(2404), + [aux_sym__val_number_token2] = ACTIONS(2404), + [aux_sym__val_number_token3] = ACTIONS(2404), + [aux_sym__val_number_token4] = ACTIONS(2402), + [aux_sym__val_number_token5] = ACTIONS(2402), + [aux_sym__val_number_token6] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2404), + [sym__str_single_quotes] = ACTIONS(2404), + [sym__str_back_ticks] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2404), }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1052), - [aux_sym_cmd_identifier_token3] = ACTIONS(1052), - [aux_sym_cmd_identifier_token4] = ACTIONS(1052), - [aux_sym_cmd_identifier_token5] = ACTIONS(1052), - [aux_sym_cmd_identifier_token6] = ACTIONS(1052), - [aux_sym_cmd_identifier_token7] = ACTIONS(1052), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1052), - [aux_sym_cmd_identifier_token11] = ACTIONS(1052), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1052), - [aux_sym_cmd_identifier_token17] = ACTIONS(1052), - [aux_sym_cmd_identifier_token18] = ACTIONS(1052), - [aux_sym_cmd_identifier_token19] = ACTIONS(1052), - [aux_sym_cmd_identifier_token20] = ACTIONS(1052), - [aux_sym_cmd_identifier_token21] = ACTIONS(1052), - [aux_sym_cmd_identifier_token22] = ACTIONS(1052), - [aux_sym_cmd_identifier_token23] = ACTIONS(1052), - [aux_sym_cmd_identifier_token24] = ACTIONS(1052), - [aux_sym_cmd_identifier_token25] = ACTIONS(1052), - [aux_sym_cmd_identifier_token26] = ACTIONS(1052), - [aux_sym_cmd_identifier_token27] = ACTIONS(1052), - [aux_sym_cmd_identifier_token28] = ACTIONS(1052), - [aux_sym_cmd_identifier_token29] = ACTIONS(1052), - [aux_sym_cmd_identifier_token30] = ACTIONS(1052), - [aux_sym_cmd_identifier_token31] = ACTIONS(1052), - [aux_sym_cmd_identifier_token32] = ACTIONS(1052), - [aux_sym_cmd_identifier_token33] = ACTIONS(1052), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1052), - [aux_sym_cmd_identifier_token36] = ACTIONS(1052), - [aux_sym_cmd_identifier_token37] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [aux_sym__val_number_token4] = ACTIONS(1052), - [aux_sym__val_number_token5] = ACTIONS(1052), - [aux_sym__val_number_token6] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [sym__entry_separator] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1054), + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_alias] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_let_DASHenv] = ACTIONS(2406), + [anon_sym_mut] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [aux_sym_cmd_identifier_token1] = ACTIONS(2406), + [aux_sym_cmd_identifier_token2] = ACTIONS(2408), + [aux_sym_cmd_identifier_token3] = ACTIONS(2408), + [aux_sym_cmd_identifier_token4] = ACTIONS(2408), + [aux_sym_cmd_identifier_token5] = ACTIONS(2408), + [aux_sym_cmd_identifier_token6] = ACTIONS(2408), + [aux_sym_cmd_identifier_token7] = ACTIONS(2408), + [aux_sym_cmd_identifier_token8] = ACTIONS(2406), + [aux_sym_cmd_identifier_token9] = ACTIONS(2406), + [aux_sym_cmd_identifier_token10] = ACTIONS(2408), + [aux_sym_cmd_identifier_token11] = ACTIONS(2408), + [aux_sym_cmd_identifier_token12] = ACTIONS(2406), + [aux_sym_cmd_identifier_token13] = ACTIONS(2406), + [aux_sym_cmd_identifier_token14] = ACTIONS(2406), + [aux_sym_cmd_identifier_token15] = ACTIONS(2406), + [aux_sym_cmd_identifier_token16] = ACTIONS(2408), + [aux_sym_cmd_identifier_token17] = ACTIONS(2408), + [aux_sym_cmd_identifier_token18] = ACTIONS(2408), + [aux_sym_cmd_identifier_token19] = ACTIONS(2408), + [aux_sym_cmd_identifier_token20] = ACTIONS(2408), + [aux_sym_cmd_identifier_token21] = ACTIONS(2408), + [aux_sym_cmd_identifier_token22] = ACTIONS(2408), + [aux_sym_cmd_identifier_token23] = ACTIONS(2408), + [aux_sym_cmd_identifier_token24] = ACTIONS(2408), + [aux_sym_cmd_identifier_token25] = ACTIONS(2408), + [aux_sym_cmd_identifier_token26] = ACTIONS(2408), + [aux_sym_cmd_identifier_token27] = ACTIONS(2408), + [aux_sym_cmd_identifier_token28] = ACTIONS(2408), + [aux_sym_cmd_identifier_token29] = ACTIONS(2408), + [aux_sym_cmd_identifier_token30] = ACTIONS(2408), + [aux_sym_cmd_identifier_token31] = ACTIONS(2408), + [aux_sym_cmd_identifier_token32] = ACTIONS(2408), + [aux_sym_cmd_identifier_token33] = ACTIONS(2408), + [aux_sym_cmd_identifier_token34] = ACTIONS(2406), + [aux_sym_cmd_identifier_token35] = ACTIONS(2408), + [aux_sym_cmd_identifier_token36] = ACTIONS(2408), + [aux_sym_cmd_identifier_token37] = ACTIONS(2408), + [aux_sym_cmd_identifier_token38] = ACTIONS(2406), + [aux_sym_cmd_identifier_token39] = ACTIONS(2408), + [aux_sym_cmd_identifier_token40] = ACTIONS(2408), + [anon_sym_def] = ACTIONS(2406), + [anon_sym_export_DASHenv] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_DOLLAR] = ACTIONS(2408), + [anon_sym_error] = ACTIONS(2406), + [anon_sym_DASH2] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_in2] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_make] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_do] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2406), + [anon_sym_catch] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_source] = ACTIONS(2406), + [anon_sym_source_DASHenv] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_hide] = ACTIONS(2406), + [anon_sym_hide_DASHenv] = ACTIONS(2406), + [anon_sym_overlay] = ACTIONS(2406), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_PLUS2] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), + [aux_sym__val_number_decimal_token1] = ACTIONS(2406), + [aux_sym__val_number_decimal_token2] = ACTIONS(2408), + [aux_sym__val_number_decimal_token3] = ACTIONS(2408), + [aux_sym__val_number_decimal_token4] = ACTIONS(2408), + [aux_sym__val_number_token1] = ACTIONS(2408), + [aux_sym__val_number_token2] = ACTIONS(2408), + [aux_sym__val_number_token3] = ACTIONS(2408), + [aux_sym__val_number_token4] = ACTIONS(2406), + [aux_sym__val_number_token5] = ACTIONS(2406), + [aux_sym__val_number_token6] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2408), + [sym__str_single_quotes] = ACTIONS(2408), + [sym__str_back_ticks] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2408), }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2482), - [aux_sym_cmd_identifier_token3] = ACTIONS(2482), - [aux_sym_cmd_identifier_token4] = ACTIONS(2482), - [aux_sym_cmd_identifier_token5] = ACTIONS(2482), - [aux_sym_cmd_identifier_token6] = ACTIONS(2482), - [aux_sym_cmd_identifier_token7] = ACTIONS(2482), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2482), - [aux_sym_cmd_identifier_token11] = ACTIONS(2482), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2482), - [aux_sym_cmd_identifier_token17] = ACTIONS(2482), - [aux_sym_cmd_identifier_token18] = ACTIONS(2482), - [aux_sym_cmd_identifier_token19] = ACTIONS(2482), - [aux_sym_cmd_identifier_token20] = ACTIONS(2482), - [aux_sym_cmd_identifier_token21] = ACTIONS(2482), - [aux_sym_cmd_identifier_token22] = ACTIONS(2482), - [aux_sym_cmd_identifier_token23] = ACTIONS(2482), - [aux_sym_cmd_identifier_token24] = ACTIONS(2482), - [aux_sym_cmd_identifier_token25] = ACTIONS(2482), - [aux_sym_cmd_identifier_token26] = ACTIONS(2482), - [aux_sym_cmd_identifier_token27] = ACTIONS(2482), - [aux_sym_cmd_identifier_token28] = ACTIONS(2482), - [aux_sym_cmd_identifier_token29] = ACTIONS(2482), - [aux_sym_cmd_identifier_token30] = ACTIONS(2482), - [aux_sym_cmd_identifier_token31] = ACTIONS(2482), - [aux_sym_cmd_identifier_token32] = ACTIONS(2482), - [aux_sym_cmd_identifier_token33] = ACTIONS(2482), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2482), - [aux_sym_cmd_identifier_token36] = ACTIONS(2482), - [aux_sym_cmd_identifier_token37] = ACTIONS(2482), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2482), - [aux_sym_cmd_identifier_token40] = ACTIONS(2482), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in2] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2482), - [aux_sym__val_number_decimal_token3] = ACTIONS(2482), - [aux_sym__val_number_decimal_token4] = ACTIONS(2482), - [aux_sym__val_number_token1] = ACTIONS(2482), - [aux_sym__val_number_token2] = ACTIONS(2482), - [aux_sym__val_number_token3] = ACTIONS(2482), - [aux_sym__val_number_token4] = ACTIONS(2482), - [aux_sym__val_number_token5] = ACTIONS(2482), - [aux_sym__val_number_token6] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2482), - [sym__str_single_quotes] = ACTIONS(2482), - [sym__str_back_ticks] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), - [sym__entry_separator] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2484), + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2003), + [aux_sym_cmd_identifier_token4] = ACTIONS(2003), + [aux_sym_cmd_identifier_token5] = ACTIONS(2003), + [aux_sym_cmd_identifier_token6] = ACTIONS(2003), + [aux_sym_cmd_identifier_token7] = ACTIONS(2003), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2003), + [aux_sym_cmd_identifier_token11] = ACTIONS(2003), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2003), + [aux_sym_cmd_identifier_token17] = ACTIONS(2003), + [aux_sym_cmd_identifier_token18] = ACTIONS(2003), + [aux_sym_cmd_identifier_token19] = ACTIONS(2003), + [aux_sym_cmd_identifier_token20] = ACTIONS(2003), + [aux_sym_cmd_identifier_token21] = ACTIONS(2003), + [aux_sym_cmd_identifier_token22] = ACTIONS(2003), + [aux_sym_cmd_identifier_token23] = ACTIONS(2003), + [aux_sym_cmd_identifier_token24] = ACTIONS(2003), + [aux_sym_cmd_identifier_token25] = ACTIONS(2003), + [aux_sym_cmd_identifier_token26] = ACTIONS(2003), + [aux_sym_cmd_identifier_token27] = ACTIONS(2003), + [aux_sym_cmd_identifier_token28] = ACTIONS(2003), + [aux_sym_cmd_identifier_token29] = ACTIONS(2003), + [aux_sym_cmd_identifier_token30] = ACTIONS(2003), + [aux_sym_cmd_identifier_token31] = ACTIONS(2003), + [aux_sym_cmd_identifier_token32] = ACTIONS(2003), + [aux_sym_cmd_identifier_token33] = ACTIONS(2003), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2003), + [aux_sym_cmd_identifier_token36] = ACTIONS(2003), + [aux_sym_cmd_identifier_token37] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2003), }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_alias] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_let_DASHenv] = ACTIONS(2486), - [anon_sym_mut] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [aux_sym_cmd_identifier_token1] = ACTIONS(2486), - [aux_sym_cmd_identifier_token2] = ACTIONS(2486), - [aux_sym_cmd_identifier_token3] = ACTIONS(2486), - [aux_sym_cmd_identifier_token4] = ACTIONS(2486), - [aux_sym_cmd_identifier_token5] = ACTIONS(2486), - [aux_sym_cmd_identifier_token6] = ACTIONS(2486), - [aux_sym_cmd_identifier_token7] = ACTIONS(2486), - [aux_sym_cmd_identifier_token8] = ACTIONS(2486), - [aux_sym_cmd_identifier_token9] = ACTIONS(2486), - [aux_sym_cmd_identifier_token10] = ACTIONS(2486), - [aux_sym_cmd_identifier_token11] = ACTIONS(2486), - [aux_sym_cmd_identifier_token12] = ACTIONS(2486), - [aux_sym_cmd_identifier_token13] = ACTIONS(2486), - [aux_sym_cmd_identifier_token14] = ACTIONS(2486), - [aux_sym_cmd_identifier_token15] = ACTIONS(2486), - [aux_sym_cmd_identifier_token16] = ACTIONS(2486), - [aux_sym_cmd_identifier_token17] = ACTIONS(2486), - [aux_sym_cmd_identifier_token18] = ACTIONS(2486), - [aux_sym_cmd_identifier_token19] = ACTIONS(2486), - [aux_sym_cmd_identifier_token20] = ACTIONS(2486), - [aux_sym_cmd_identifier_token21] = ACTIONS(2486), - [aux_sym_cmd_identifier_token22] = ACTIONS(2486), - [aux_sym_cmd_identifier_token23] = ACTIONS(2486), - [aux_sym_cmd_identifier_token24] = ACTIONS(2486), - [aux_sym_cmd_identifier_token25] = ACTIONS(2486), - [aux_sym_cmd_identifier_token26] = ACTIONS(2486), - [aux_sym_cmd_identifier_token27] = ACTIONS(2486), - [aux_sym_cmd_identifier_token28] = ACTIONS(2486), - [aux_sym_cmd_identifier_token29] = ACTIONS(2486), - [aux_sym_cmd_identifier_token30] = ACTIONS(2486), - [aux_sym_cmd_identifier_token31] = ACTIONS(2486), - [aux_sym_cmd_identifier_token32] = ACTIONS(2486), - [aux_sym_cmd_identifier_token33] = ACTIONS(2486), - [aux_sym_cmd_identifier_token34] = ACTIONS(2486), - [aux_sym_cmd_identifier_token35] = ACTIONS(2486), - [aux_sym_cmd_identifier_token36] = ACTIONS(2486), - [aux_sym_cmd_identifier_token37] = ACTIONS(2486), - [aux_sym_cmd_identifier_token38] = ACTIONS(2486), - [aux_sym_cmd_identifier_token39] = ACTIONS(2486), - [aux_sym_cmd_identifier_token40] = ACTIONS(2486), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_export_DASHenv] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_DOLLAR] = ACTIONS(2486), - [anon_sym_error] = ACTIONS(2486), - [anon_sym_DASH2] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_in2] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_make] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_catch] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_source] = ACTIONS(2486), - [anon_sym_source_DASHenv] = ACTIONS(2486), - [anon_sym_register] = ACTIONS(2486), - [anon_sym_hide] = ACTIONS(2486), - [anon_sym_hide_DASHenv] = ACTIONS(2486), - [anon_sym_overlay] = ACTIONS(2486), - [anon_sym_as] = ACTIONS(2486), - [anon_sym_PLUS2] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), - [aux_sym__val_number_decimal_token1] = ACTIONS(2486), - [aux_sym__val_number_decimal_token2] = ACTIONS(2486), - [aux_sym__val_number_decimal_token3] = ACTIONS(2486), - [aux_sym__val_number_decimal_token4] = ACTIONS(2486), - [aux_sym__val_number_token1] = ACTIONS(2486), - [aux_sym__val_number_token2] = ACTIONS(2486), - [aux_sym__val_number_token3] = ACTIONS(2486), - [aux_sym__val_number_token4] = ACTIONS(2486), - [aux_sym__val_number_token5] = ACTIONS(2486), - [aux_sym__val_number_token6] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(2486), - [sym__str_single_quotes] = ACTIONS(2486), - [sym__str_back_ticks] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), - [sym__entry_separator] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2488), + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2487), + [aux_sym_cmd_identifier_token3] = ACTIONS(2487), + [aux_sym_cmd_identifier_token4] = ACTIONS(2487), + [aux_sym_cmd_identifier_token5] = ACTIONS(2487), + [aux_sym_cmd_identifier_token6] = ACTIONS(2487), + [aux_sym_cmd_identifier_token7] = ACTIONS(2487), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2487), + [aux_sym_cmd_identifier_token11] = ACTIONS(2487), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2487), + [aux_sym_cmd_identifier_token17] = ACTIONS(2487), + [aux_sym_cmd_identifier_token18] = ACTIONS(2487), + [aux_sym_cmd_identifier_token19] = ACTIONS(2487), + [aux_sym_cmd_identifier_token20] = ACTIONS(2487), + [aux_sym_cmd_identifier_token21] = ACTIONS(2487), + [aux_sym_cmd_identifier_token22] = ACTIONS(2487), + [aux_sym_cmd_identifier_token23] = ACTIONS(2487), + [aux_sym_cmd_identifier_token24] = ACTIONS(2487), + [aux_sym_cmd_identifier_token25] = ACTIONS(2487), + [aux_sym_cmd_identifier_token26] = ACTIONS(2487), + [aux_sym_cmd_identifier_token27] = ACTIONS(2487), + [aux_sym_cmd_identifier_token28] = ACTIONS(2487), + [aux_sym_cmd_identifier_token29] = ACTIONS(2487), + [aux_sym_cmd_identifier_token30] = ACTIONS(2487), + [aux_sym_cmd_identifier_token31] = ACTIONS(2487), + [aux_sym_cmd_identifier_token32] = ACTIONS(2487), + [aux_sym_cmd_identifier_token33] = ACTIONS(2487), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2487), + [aux_sym_cmd_identifier_token36] = ACTIONS(2487), + [aux_sym_cmd_identifier_token37] = ACTIONS(2487), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2487), + [aux_sym_cmd_identifier_token40] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in2] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2487), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2487), + [aux_sym__val_number_token2] = ACTIONS(2487), + [aux_sym__val_number_token3] = ACTIONS(2487), + [aux_sym__val_number_token4] = ACTIONS(2485), + [aux_sym__val_number_token5] = ACTIONS(2485), + [aux_sym__val_number_token6] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym__str_single_quotes] = ACTIONS(2487), + [sym__str_back_ticks] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2487), }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2304), - [anon_sym_alias] = ACTIONS(2304), - [anon_sym_let] = ACTIONS(2304), - [anon_sym_let_DASHenv] = ACTIONS(2304), - [anon_sym_mut] = ACTIONS(2304), - [anon_sym_const] = ACTIONS(2304), - [aux_sym_cmd_identifier_token1] = ACTIONS(2304), - [aux_sym_cmd_identifier_token2] = ACTIONS(2308), - [aux_sym_cmd_identifier_token3] = ACTIONS(2308), - [aux_sym_cmd_identifier_token4] = ACTIONS(2308), - [aux_sym_cmd_identifier_token5] = ACTIONS(2308), - [aux_sym_cmd_identifier_token6] = ACTIONS(2308), - [aux_sym_cmd_identifier_token7] = ACTIONS(2308), - [aux_sym_cmd_identifier_token8] = ACTIONS(2304), - [aux_sym_cmd_identifier_token9] = ACTIONS(2304), - [aux_sym_cmd_identifier_token10] = ACTIONS(2308), - [aux_sym_cmd_identifier_token11] = ACTIONS(2308), - [aux_sym_cmd_identifier_token12] = ACTIONS(2304), - [aux_sym_cmd_identifier_token13] = ACTIONS(2304), - [aux_sym_cmd_identifier_token14] = ACTIONS(2304), - [aux_sym_cmd_identifier_token15] = ACTIONS(2304), - [aux_sym_cmd_identifier_token16] = ACTIONS(2308), - [aux_sym_cmd_identifier_token17] = ACTIONS(2308), - [aux_sym_cmd_identifier_token18] = ACTIONS(2308), - [aux_sym_cmd_identifier_token19] = ACTIONS(2308), - [aux_sym_cmd_identifier_token20] = ACTIONS(2308), - [aux_sym_cmd_identifier_token21] = ACTIONS(2308), - [aux_sym_cmd_identifier_token22] = ACTIONS(2308), - [aux_sym_cmd_identifier_token23] = ACTIONS(2308), - [aux_sym_cmd_identifier_token24] = ACTIONS(2308), - [aux_sym_cmd_identifier_token25] = ACTIONS(2308), - [aux_sym_cmd_identifier_token26] = ACTIONS(2308), - [aux_sym_cmd_identifier_token27] = ACTIONS(2308), - [aux_sym_cmd_identifier_token28] = ACTIONS(2308), - [aux_sym_cmd_identifier_token29] = ACTIONS(2308), - [aux_sym_cmd_identifier_token30] = ACTIONS(2308), - [aux_sym_cmd_identifier_token31] = ACTIONS(2308), - [aux_sym_cmd_identifier_token32] = ACTIONS(2308), - [aux_sym_cmd_identifier_token33] = ACTIONS(2308), - [aux_sym_cmd_identifier_token34] = ACTIONS(2304), - [aux_sym_cmd_identifier_token35] = ACTIONS(2308), - [aux_sym_cmd_identifier_token36] = ACTIONS(2308), - [aux_sym_cmd_identifier_token37] = ACTIONS(2308), - [aux_sym_cmd_identifier_token38] = ACTIONS(2304), - [aux_sym_cmd_identifier_token39] = ACTIONS(2308), - [aux_sym_cmd_identifier_token40] = ACTIONS(2308), - [anon_sym_def] = ACTIONS(2304), - [anon_sym_export_DASHenv] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_module] = ACTIONS(2304), - [anon_sym_use] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(2308), - [anon_sym_error] = ACTIONS(2304), - [anon_sym_DASH2] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_for] = ACTIONS(2304), - [anon_sym_in2] = ACTIONS(2304), - [anon_sym_loop] = ACTIONS(2304), - [anon_sym_make] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2304), - [anon_sym_do] = ACTIONS(2304), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_else] = ACTIONS(2304), - [anon_sym_match] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2304), - [anon_sym_catch] = ACTIONS(2304), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_source] = ACTIONS(2304), - [anon_sym_source_DASHenv] = ACTIONS(2304), - [anon_sym_register] = ACTIONS(2304), - [anon_sym_hide] = ACTIONS(2304), - [anon_sym_hide_DASHenv] = ACTIONS(2304), - [anon_sym_overlay] = ACTIONS(2304), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_PLUS2] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), - [aux_sym__val_number_decimal_token1] = ACTIONS(2304), - [aux_sym__val_number_decimal_token2] = ACTIONS(2308), - [aux_sym__val_number_decimal_token3] = ACTIONS(2308), - [aux_sym__val_number_decimal_token4] = ACTIONS(2308), - [aux_sym__val_number_token1] = ACTIONS(2308), - [aux_sym__val_number_token2] = ACTIONS(2308), - [aux_sym__val_number_token3] = ACTIONS(2308), - [aux_sym__val_number_token4] = ACTIONS(2304), - [aux_sym__val_number_token5] = ACTIONS(2304), - [aux_sym__val_number_token6] = ACTIONS(2304), - [anon_sym_LBRACK2] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2308), - [sym__str_single_quotes] = ACTIONS(2308), - [sym__str_back_ticks] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2308), + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(1989), + [anon_sym_alias] = ACTIONS(1989), + [anon_sym_let] = ACTIONS(1989), + [anon_sym_let_DASHenv] = ACTIONS(1989), + [anon_sym_mut] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1989), + [aux_sym_cmd_identifier_token1] = ACTIONS(1989), + [aux_sym_cmd_identifier_token2] = ACTIONS(1991), + [aux_sym_cmd_identifier_token3] = ACTIONS(1991), + [aux_sym_cmd_identifier_token4] = ACTIONS(1991), + [aux_sym_cmd_identifier_token5] = ACTIONS(1991), + [aux_sym_cmd_identifier_token6] = ACTIONS(1991), + [aux_sym_cmd_identifier_token7] = ACTIONS(1991), + [aux_sym_cmd_identifier_token8] = ACTIONS(1989), + [aux_sym_cmd_identifier_token9] = ACTIONS(1989), + [aux_sym_cmd_identifier_token10] = ACTIONS(1991), + [aux_sym_cmd_identifier_token11] = ACTIONS(1991), + [aux_sym_cmd_identifier_token12] = ACTIONS(1989), + [aux_sym_cmd_identifier_token13] = ACTIONS(1989), + [aux_sym_cmd_identifier_token14] = ACTIONS(1989), + [aux_sym_cmd_identifier_token15] = ACTIONS(1989), + [aux_sym_cmd_identifier_token16] = ACTIONS(1991), + [aux_sym_cmd_identifier_token17] = ACTIONS(1991), + [aux_sym_cmd_identifier_token18] = ACTIONS(1991), + [aux_sym_cmd_identifier_token19] = ACTIONS(1991), + [aux_sym_cmd_identifier_token20] = ACTIONS(1991), + [aux_sym_cmd_identifier_token21] = ACTIONS(1991), + [aux_sym_cmd_identifier_token22] = ACTIONS(1991), + [aux_sym_cmd_identifier_token23] = ACTIONS(1991), + [aux_sym_cmd_identifier_token24] = ACTIONS(1991), + [aux_sym_cmd_identifier_token25] = ACTIONS(1991), + [aux_sym_cmd_identifier_token26] = ACTIONS(1991), + [aux_sym_cmd_identifier_token27] = ACTIONS(1991), + [aux_sym_cmd_identifier_token28] = ACTIONS(1991), + [aux_sym_cmd_identifier_token29] = ACTIONS(1991), + [aux_sym_cmd_identifier_token30] = ACTIONS(1991), + [aux_sym_cmd_identifier_token31] = ACTIONS(1991), + [aux_sym_cmd_identifier_token32] = ACTIONS(1991), + [aux_sym_cmd_identifier_token33] = ACTIONS(1991), + [aux_sym_cmd_identifier_token34] = ACTIONS(1989), + [aux_sym_cmd_identifier_token35] = ACTIONS(1991), + [aux_sym_cmd_identifier_token36] = ACTIONS(1991), + [aux_sym_cmd_identifier_token37] = ACTIONS(1991), + [aux_sym_cmd_identifier_token38] = ACTIONS(1989), + [aux_sym_cmd_identifier_token39] = ACTIONS(1991), + [aux_sym_cmd_identifier_token40] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1989), + [anon_sym_export_DASHenv] = ACTIONS(1989), + [anon_sym_extern] = ACTIONS(1989), + [anon_sym_module] = ACTIONS(1989), + [anon_sym_use] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_error] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_break] = ACTIONS(1989), + [anon_sym_continue] = ACTIONS(1989), + [anon_sym_for] = ACTIONS(1989), + [anon_sym_in2] = ACTIONS(1989), + [anon_sym_loop] = ACTIONS(1989), + [anon_sym_make] = ACTIONS(1989), + [anon_sym_while] = ACTIONS(1989), + [anon_sym_do] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_else] = ACTIONS(1989), + [anon_sym_match] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1989), + [anon_sym_catch] = ACTIONS(1989), + [anon_sym_return] = ACTIONS(1989), + [anon_sym_source] = ACTIONS(1989), + [anon_sym_source_DASHenv] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1989), + [anon_sym_hide] = ACTIONS(1989), + [anon_sym_hide_DASHenv] = ACTIONS(1989), + [anon_sym_overlay] = ACTIONS(1989), + [anon_sym_as] = ACTIONS(1989), + [anon_sym_PLUS2] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1989), + [aux_sym__val_number_token5] = ACTIONS(1989), + [aux_sym__val_number_token6] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1991), }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2492), - [anon_sym_alias] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_DASHenv] = ACTIONS(2492), - [anon_sym_mut] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [aux_sym_cmd_identifier_token1] = ACTIONS(2492), - [aux_sym_cmd_identifier_token2] = ACTIONS(2492), - [aux_sym_cmd_identifier_token3] = ACTIONS(2492), - [aux_sym_cmd_identifier_token4] = ACTIONS(2492), - [aux_sym_cmd_identifier_token5] = ACTIONS(2492), - [aux_sym_cmd_identifier_token6] = ACTIONS(2492), - [aux_sym_cmd_identifier_token7] = ACTIONS(2492), - [aux_sym_cmd_identifier_token8] = ACTIONS(2492), - [aux_sym_cmd_identifier_token9] = ACTIONS(2492), - [aux_sym_cmd_identifier_token10] = ACTIONS(2492), - [aux_sym_cmd_identifier_token11] = ACTIONS(2492), - [aux_sym_cmd_identifier_token12] = ACTIONS(2492), - [aux_sym_cmd_identifier_token13] = ACTIONS(2492), - [aux_sym_cmd_identifier_token14] = ACTIONS(2492), - [aux_sym_cmd_identifier_token15] = ACTIONS(2492), - [aux_sym_cmd_identifier_token16] = ACTIONS(2492), - [aux_sym_cmd_identifier_token17] = ACTIONS(2492), - [aux_sym_cmd_identifier_token18] = ACTIONS(2492), - [aux_sym_cmd_identifier_token19] = ACTIONS(2492), - [aux_sym_cmd_identifier_token20] = ACTIONS(2492), - [aux_sym_cmd_identifier_token21] = ACTIONS(2492), - [aux_sym_cmd_identifier_token22] = ACTIONS(2492), - [aux_sym_cmd_identifier_token23] = ACTIONS(2492), - [aux_sym_cmd_identifier_token24] = ACTIONS(2492), - [aux_sym_cmd_identifier_token25] = ACTIONS(2492), - [aux_sym_cmd_identifier_token26] = ACTIONS(2492), - [aux_sym_cmd_identifier_token27] = ACTIONS(2492), - [aux_sym_cmd_identifier_token28] = ACTIONS(2492), - [aux_sym_cmd_identifier_token29] = ACTIONS(2492), - [aux_sym_cmd_identifier_token30] = ACTIONS(2492), - [aux_sym_cmd_identifier_token31] = ACTIONS(2492), - [aux_sym_cmd_identifier_token32] = ACTIONS(2492), - [aux_sym_cmd_identifier_token33] = ACTIONS(2492), - [aux_sym_cmd_identifier_token34] = ACTIONS(2492), - [aux_sym_cmd_identifier_token35] = ACTIONS(2492), - [aux_sym_cmd_identifier_token36] = ACTIONS(2492), - [aux_sym_cmd_identifier_token37] = ACTIONS(2492), - [aux_sym_cmd_identifier_token38] = ACTIONS(2492), - [aux_sym_cmd_identifier_token39] = ACTIONS(2492), - [aux_sym_cmd_identifier_token40] = ACTIONS(2492), - [anon_sym_def] = ACTIONS(2492), - [anon_sym_export_DASHenv] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_DOLLAR] = ACTIONS(2492), - [anon_sym_error] = ACTIONS(2492), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_in2] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_make] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_catch] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_source] = ACTIONS(2492), - [anon_sym_source_DASHenv] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_hide] = ACTIONS(2492), - [anon_sym_hide_DASHenv] = ACTIONS(2492), - [anon_sym_overlay] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), - [aux_sym__val_number_decimal_token1] = ACTIONS(2492), - [aux_sym__val_number_decimal_token2] = ACTIONS(2492), - [aux_sym__val_number_decimal_token3] = ACTIONS(2492), - [aux_sym__val_number_decimal_token4] = ACTIONS(2492), - [aux_sym__val_number_token1] = ACTIONS(2492), - [aux_sym__val_number_token2] = ACTIONS(2492), - [aux_sym__val_number_token3] = ACTIONS(2492), - [aux_sym__val_number_token4] = ACTIONS(2492), - [aux_sym__val_number_token5] = ACTIONS(2492), - [aux_sym__val_number_token6] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym__str_single_quotes] = ACTIONS(2492), - [sym__str_back_ticks] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), - [sym__entry_separator] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2494), + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(2519), + [anon_sym_alias] = ACTIONS(2519), + [anon_sym_let] = ACTIONS(2519), + [anon_sym_let_DASHenv] = ACTIONS(2519), + [anon_sym_mut] = ACTIONS(2519), + [anon_sym_const] = ACTIONS(2519), + [aux_sym_cmd_identifier_token1] = ACTIONS(2519), + [aux_sym_cmd_identifier_token2] = ACTIONS(2521), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [aux_sym_cmd_identifier_token6] = ACTIONS(2521), + [aux_sym_cmd_identifier_token7] = ACTIONS(2521), + [aux_sym_cmd_identifier_token8] = ACTIONS(2519), + [aux_sym_cmd_identifier_token9] = ACTIONS(2519), + [aux_sym_cmd_identifier_token10] = ACTIONS(2521), + [aux_sym_cmd_identifier_token11] = ACTIONS(2521), + [aux_sym_cmd_identifier_token12] = ACTIONS(2519), + [aux_sym_cmd_identifier_token13] = ACTIONS(2519), + [aux_sym_cmd_identifier_token14] = ACTIONS(2519), + [aux_sym_cmd_identifier_token15] = ACTIONS(2519), + [aux_sym_cmd_identifier_token16] = ACTIONS(2521), + [aux_sym_cmd_identifier_token17] = ACTIONS(2521), + [aux_sym_cmd_identifier_token18] = ACTIONS(2521), + [aux_sym_cmd_identifier_token19] = ACTIONS(2521), + [aux_sym_cmd_identifier_token20] = ACTIONS(2521), + [aux_sym_cmd_identifier_token21] = ACTIONS(2521), + [aux_sym_cmd_identifier_token22] = ACTIONS(2521), + [aux_sym_cmd_identifier_token23] = ACTIONS(2521), + [aux_sym_cmd_identifier_token24] = ACTIONS(2521), + [aux_sym_cmd_identifier_token25] = ACTIONS(2521), + [aux_sym_cmd_identifier_token26] = ACTIONS(2521), + [aux_sym_cmd_identifier_token27] = ACTIONS(2521), + [aux_sym_cmd_identifier_token28] = ACTIONS(2521), + [aux_sym_cmd_identifier_token29] = ACTIONS(2521), + [aux_sym_cmd_identifier_token30] = ACTIONS(2521), + [aux_sym_cmd_identifier_token31] = ACTIONS(2521), + [aux_sym_cmd_identifier_token32] = ACTIONS(2521), + [aux_sym_cmd_identifier_token33] = ACTIONS(2521), + [aux_sym_cmd_identifier_token34] = ACTIONS(2519), + [aux_sym_cmd_identifier_token35] = ACTIONS(2521), + [aux_sym_cmd_identifier_token36] = ACTIONS(2521), + [aux_sym_cmd_identifier_token37] = ACTIONS(2521), + [aux_sym_cmd_identifier_token38] = ACTIONS(2519), + [aux_sym_cmd_identifier_token39] = ACTIONS(2521), + [aux_sym_cmd_identifier_token40] = ACTIONS(2521), + [anon_sym_def] = ACTIONS(2519), + [anon_sym_export_DASHenv] = ACTIONS(2519), + [anon_sym_extern] = ACTIONS(2519), + [anon_sym_module] = ACTIONS(2519), + [anon_sym_use] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_DOLLAR] = ACTIONS(2521), + [anon_sym_error] = ACTIONS(2519), + [anon_sym_DASH2] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2519), + [anon_sym_continue] = ACTIONS(2519), + [anon_sym_for] = ACTIONS(2519), + [anon_sym_in2] = ACTIONS(2519), + [anon_sym_loop] = ACTIONS(2519), + [anon_sym_make] = ACTIONS(2519), + [anon_sym_while] = ACTIONS(2519), + [anon_sym_do] = ACTIONS(2519), + [anon_sym_if] = ACTIONS(2519), + [anon_sym_else] = ACTIONS(2519), + [anon_sym_match] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2519), + [anon_sym_catch] = ACTIONS(2519), + [anon_sym_return] = ACTIONS(2519), + [anon_sym_source] = ACTIONS(2519), + [anon_sym_source_DASHenv] = ACTIONS(2519), + [anon_sym_register] = ACTIONS(2519), + [anon_sym_hide] = ACTIONS(2519), + [anon_sym_hide_DASHenv] = ACTIONS(2519), + [anon_sym_overlay] = ACTIONS(2519), + [anon_sym_as] = ACTIONS(2519), + [anon_sym_PLUS2] = ACTIONS(2519), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2521), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2521), + [aux_sym__val_number_decimal_token4] = ACTIONS(2521), + [aux_sym__val_number_token1] = ACTIONS(2521), + [aux_sym__val_number_token2] = ACTIONS(2521), + [aux_sym__val_number_token3] = ACTIONS(2521), + [aux_sym__val_number_token4] = ACTIONS(2519), + [aux_sym__val_number_token5] = ACTIONS(2519), + [aux_sym__val_number_token6] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2521), + [sym__str_single_quotes] = ACTIONS(2521), + [sym__str_back_ticks] = ACTIONS(2521), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2521), }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(2496), - [anon_sym_alias] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_let_DASHenv] = ACTIONS(2496), - [anon_sym_mut] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [aux_sym_cmd_identifier_token1] = ACTIONS(2496), - [aux_sym_cmd_identifier_token2] = ACTIONS(2496), - [aux_sym_cmd_identifier_token3] = ACTIONS(2496), - [aux_sym_cmd_identifier_token4] = ACTIONS(2496), - [aux_sym_cmd_identifier_token5] = ACTIONS(2496), - [aux_sym_cmd_identifier_token6] = ACTIONS(2496), - [aux_sym_cmd_identifier_token7] = ACTIONS(2496), - [aux_sym_cmd_identifier_token8] = ACTIONS(2496), - [aux_sym_cmd_identifier_token9] = ACTIONS(2496), - [aux_sym_cmd_identifier_token10] = ACTIONS(2496), - [aux_sym_cmd_identifier_token11] = ACTIONS(2496), - [aux_sym_cmd_identifier_token12] = ACTIONS(2496), - [aux_sym_cmd_identifier_token13] = ACTIONS(2496), - [aux_sym_cmd_identifier_token14] = ACTIONS(2496), - [aux_sym_cmd_identifier_token15] = ACTIONS(2496), - [aux_sym_cmd_identifier_token16] = ACTIONS(2496), - [aux_sym_cmd_identifier_token17] = ACTIONS(2496), - [aux_sym_cmd_identifier_token18] = ACTIONS(2496), - [aux_sym_cmd_identifier_token19] = ACTIONS(2496), - [aux_sym_cmd_identifier_token20] = ACTIONS(2496), - [aux_sym_cmd_identifier_token21] = ACTIONS(2496), - [aux_sym_cmd_identifier_token22] = ACTIONS(2496), - [aux_sym_cmd_identifier_token23] = ACTIONS(2496), - [aux_sym_cmd_identifier_token24] = ACTIONS(2496), - [aux_sym_cmd_identifier_token25] = ACTIONS(2496), - [aux_sym_cmd_identifier_token26] = ACTIONS(2496), - [aux_sym_cmd_identifier_token27] = ACTIONS(2496), - [aux_sym_cmd_identifier_token28] = ACTIONS(2496), - [aux_sym_cmd_identifier_token29] = ACTIONS(2496), - [aux_sym_cmd_identifier_token30] = ACTIONS(2496), - [aux_sym_cmd_identifier_token31] = ACTIONS(2496), - [aux_sym_cmd_identifier_token32] = ACTIONS(2496), - [aux_sym_cmd_identifier_token33] = ACTIONS(2496), - [aux_sym_cmd_identifier_token34] = ACTIONS(2496), - [aux_sym_cmd_identifier_token35] = ACTIONS(2496), - [aux_sym_cmd_identifier_token36] = ACTIONS(2496), - [aux_sym_cmd_identifier_token37] = ACTIONS(2496), - [aux_sym_cmd_identifier_token38] = ACTIONS(2496), - [aux_sym_cmd_identifier_token39] = ACTIONS(2496), - [aux_sym_cmd_identifier_token40] = ACTIONS(2496), - [anon_sym_def] = ACTIONS(2496), - [anon_sym_export_DASHenv] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_module] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_DOLLAR] = ACTIONS(2496), - [anon_sym_error] = ACTIONS(2496), - [anon_sym_DASH2] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_in2] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_make] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_catch] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_source] = ACTIONS(2496), - [anon_sym_source_DASHenv] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_hide] = ACTIONS(2496), - [anon_sym_hide_DASHenv] = ACTIONS(2496), - [anon_sym_overlay] = ACTIONS(2496), - [anon_sym_as] = ACTIONS(2496), - [anon_sym_PLUS2] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), - [aux_sym__val_number_decimal_token1] = ACTIONS(2496), - [aux_sym__val_number_decimal_token2] = ACTIONS(2496), - [aux_sym__val_number_decimal_token3] = ACTIONS(2496), - [aux_sym__val_number_decimal_token4] = ACTIONS(2496), - [aux_sym__val_number_token1] = ACTIONS(2496), - [aux_sym__val_number_token2] = ACTIONS(2496), - [aux_sym__val_number_token3] = ACTIONS(2496), - [aux_sym__val_number_token4] = ACTIONS(2496), - [aux_sym__val_number_token5] = ACTIONS(2496), - [aux_sym__val_number_token6] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [sym__str_single_quotes] = ACTIONS(2496), - [sym__str_back_ticks] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), - [sym__entry_separator] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2498), + [710] = { + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(1277), + [anon_sym_alias] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1277), + [anon_sym_let_DASHenv] = ACTIONS(1277), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_const] = ACTIONS(1277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1277), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1277), + [aux_sym_cmd_identifier_token9] = ACTIONS(1277), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1277), + [aux_sym_cmd_identifier_token13] = ACTIONS(1277), + [aux_sym_cmd_identifier_token14] = ACTIONS(1277), + [aux_sym_cmd_identifier_token15] = ACTIONS(1277), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1275), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1275), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1275), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1275), + [aux_sym_cmd_identifier_token32] = ACTIONS(1275), + [aux_sym_cmd_identifier_token33] = ACTIONS(1275), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1275), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [aux_sym_cmd_identifier_token37] = ACTIONS(1275), + [aux_sym_cmd_identifier_token38] = ACTIONS(1277), + [aux_sym_cmd_identifier_token39] = ACTIONS(1275), + [aux_sym_cmd_identifier_token40] = ACTIONS(1275), + [sym__newline] = ACTIONS(1275), + [anon_sym_def] = ACTIONS(1277), + [anon_sym_export_DASHenv] = ACTIONS(1277), + [anon_sym_extern] = ACTIONS(1277), + [anon_sym_module] = ACTIONS(1277), + [anon_sym_use] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_error] = ACTIONS(1277), + [anon_sym_DASH2] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_for] = ACTIONS(1277), + [anon_sym_in2] = ACTIONS(1277), + [anon_sym_loop] = ACTIONS(1277), + [anon_sym_make] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1277), + [anon_sym_catch] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_source] = ACTIONS(1277), + [anon_sym_source_DASHenv] = ACTIONS(1277), + [anon_sym_register] = ACTIONS(1277), + [anon_sym_hide] = ACTIONS(1277), + [anon_sym_hide_DASHenv] = ACTIONS(1277), + [anon_sym_overlay] = ACTIONS(1277), + [anon_sym_as] = ACTIONS(1277), + [anon_sym_PLUS2] = ACTIONS(1277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1275), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1275), + [aux_sym__val_number_decimal_token1] = ACTIONS(1277), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_decimal_token4] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1275), }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1941), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [aux_sym_cmd_identifier_token6] = ACTIONS(1941), - [aux_sym_cmd_identifier_token7] = ACTIONS(1941), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1941), - [aux_sym_cmd_identifier_token11] = ACTIONS(1941), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1941), - [aux_sym_cmd_identifier_token17] = ACTIONS(1941), - [aux_sym_cmd_identifier_token18] = ACTIONS(1941), - [aux_sym_cmd_identifier_token19] = ACTIONS(1941), - [aux_sym_cmd_identifier_token20] = ACTIONS(1941), - [aux_sym_cmd_identifier_token21] = ACTIONS(1941), - [aux_sym_cmd_identifier_token22] = ACTIONS(1941), - [aux_sym_cmd_identifier_token23] = ACTIONS(1941), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1941), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1941), - [aux_sym_cmd_identifier_token28] = ACTIONS(1941), - [aux_sym_cmd_identifier_token29] = ACTIONS(1941), - [aux_sym_cmd_identifier_token30] = ACTIONS(1941), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1941), - [aux_sym_cmd_identifier_token37] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [sym__entry_separator] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1943), + [711] = { + [sym_comment] = STATE(711), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2491), + [aux_sym_cmd_identifier_token3] = ACTIONS(2491), + [aux_sym_cmd_identifier_token4] = ACTIONS(2491), + [aux_sym_cmd_identifier_token5] = ACTIONS(2491), + [aux_sym_cmd_identifier_token6] = ACTIONS(2491), + [aux_sym_cmd_identifier_token7] = ACTIONS(2491), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2491), + [aux_sym_cmd_identifier_token11] = ACTIONS(2491), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2491), + [aux_sym_cmd_identifier_token17] = ACTIONS(2491), + [aux_sym_cmd_identifier_token18] = ACTIONS(2491), + [aux_sym_cmd_identifier_token19] = ACTIONS(2491), + [aux_sym_cmd_identifier_token20] = ACTIONS(2491), + [aux_sym_cmd_identifier_token21] = ACTIONS(2491), + [aux_sym_cmd_identifier_token22] = ACTIONS(2491), + [aux_sym_cmd_identifier_token23] = ACTIONS(2491), + [aux_sym_cmd_identifier_token24] = ACTIONS(2491), + [aux_sym_cmd_identifier_token25] = ACTIONS(2491), + [aux_sym_cmd_identifier_token26] = ACTIONS(2491), + [aux_sym_cmd_identifier_token27] = ACTIONS(2491), + [aux_sym_cmd_identifier_token28] = ACTIONS(2491), + [aux_sym_cmd_identifier_token29] = ACTIONS(2491), + [aux_sym_cmd_identifier_token30] = ACTIONS(2491), + [aux_sym_cmd_identifier_token31] = ACTIONS(2491), + [aux_sym_cmd_identifier_token32] = ACTIONS(2491), + [aux_sym_cmd_identifier_token33] = ACTIONS(2491), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2491), + [aux_sym_cmd_identifier_token36] = ACTIONS(2491), + [aux_sym_cmd_identifier_token37] = ACTIONS(2491), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2491), + [aux_sym_cmd_identifier_token40] = ACTIONS(2491), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_DOLLAR] = ACTIONS(2491), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in2] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2491), + [aux_sym__val_number_decimal_token3] = ACTIONS(2491), + [aux_sym__val_number_decimal_token4] = ACTIONS(2491), + [aux_sym__val_number_token1] = ACTIONS(2491), + [aux_sym__val_number_token2] = ACTIONS(2491), + [aux_sym__val_number_token3] = ACTIONS(2491), + [aux_sym__val_number_token4] = ACTIONS(2489), + [aux_sym__val_number_token5] = ACTIONS(2489), + [aux_sym__val_number_token6] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym__str_single_quotes] = ACTIONS(2491), + [sym__str_back_ticks] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2491), }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), [aux_sym_cmd_identifier_token2] = ACTIONS(1000), [aux_sym_cmd_identifier_token3] = ACTIONS(1000), [aux_sym_cmd_identifier_token4] = ACTIONS(1000), [aux_sym_cmd_identifier_token5] = ACTIONS(1000), [aux_sym_cmd_identifier_token6] = ACTIONS(1000), [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), [aux_sym_cmd_identifier_token10] = ACTIONS(1000), [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), [aux_sym_cmd_identifier_token16] = ACTIONS(1000), [aux_sym_cmd_identifier_token17] = ACTIONS(1000), [aux_sym_cmd_identifier_token18] = ACTIONS(1000), @@ -157292,120 +155990,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1000), [aux_sym_cmd_identifier_token32] = ACTIONS(1000), [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), [aux_sym_cmd_identifier_token35] = ACTIONS(1000), [aux_sym_cmd_identifier_token36] = ACTIONS(1000), [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), [aux_sym_cmd_identifier_token39] = ACTIONS(1000), [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [sym__entry_separator] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), [anon_sym_def] = ACTIONS(1004), [anon_sym_export_DASHenv] = ACTIONS(1004), [anon_sym_extern] = ACTIONS(1004), [anon_sym_module] = ACTIONS(1004), [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), [anon_sym_error] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_break] = ACTIONS(1004), @@ -157419,7 +156017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1004), [anon_sym_else] = ACTIONS(1004), [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_try] = ACTIONS(1004), [anon_sym_catch] = ACTIONS(1004), [anon_sym_return] = ACTIONS(1004), @@ -157431,1028 +156029,1215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1004), [anon_sym_as] = ACTIONS(1004), [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), [aux_sym__val_number_token4] = ACTIONS(1004), [aux_sym__val_number_token5] = ACTIONS(1004), [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1000), }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(996), - [aux_sym_cmd_identifier_token3] = ACTIONS(996), - [aux_sym_cmd_identifier_token4] = ACTIONS(996), - [aux_sym_cmd_identifier_token5] = ACTIONS(996), - [aux_sym_cmd_identifier_token6] = ACTIONS(996), - [aux_sym_cmd_identifier_token7] = ACTIONS(996), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(996), - [aux_sym_cmd_identifier_token11] = ACTIONS(996), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(996), - [aux_sym_cmd_identifier_token17] = ACTIONS(996), - [aux_sym_cmd_identifier_token18] = ACTIONS(996), - [aux_sym_cmd_identifier_token19] = ACTIONS(996), - [aux_sym_cmd_identifier_token20] = ACTIONS(996), - [aux_sym_cmd_identifier_token21] = ACTIONS(996), - [aux_sym_cmd_identifier_token22] = ACTIONS(996), - [aux_sym_cmd_identifier_token23] = ACTIONS(996), - [aux_sym_cmd_identifier_token24] = ACTIONS(996), - [aux_sym_cmd_identifier_token25] = ACTIONS(996), - [aux_sym_cmd_identifier_token26] = ACTIONS(996), - [aux_sym_cmd_identifier_token27] = ACTIONS(996), - [aux_sym_cmd_identifier_token28] = ACTIONS(996), - [aux_sym_cmd_identifier_token29] = ACTIONS(996), - [aux_sym_cmd_identifier_token30] = ACTIONS(996), - [aux_sym_cmd_identifier_token31] = ACTIONS(996), - [aux_sym_cmd_identifier_token32] = ACTIONS(996), - [aux_sym_cmd_identifier_token33] = ACTIONS(996), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(996), - [aux_sym_cmd_identifier_token36] = ACTIONS(996), - [aux_sym_cmd_identifier_token37] = ACTIONS(996), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(996), - [aux_sym_cmd_identifier_token40] = ACTIONS(996), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(996), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(996), - [aux_sym__val_number_decimal_token3] = ACTIONS(996), - [aux_sym__val_number_decimal_token4] = ACTIONS(996), - [aux_sym__val_number_token1] = ACTIONS(996), - [aux_sym__val_number_token2] = ACTIONS(996), - [aux_sym__val_number_token3] = ACTIONS(996), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [sym__str_single_quotes] = ACTIONS(996), - [sym__str_back_ticks] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(996), - [sym__entry_separator] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(998), + [713] = { + [sym_comment] = STATE(713), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_alias] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_let_DASHenv] = ACTIONS(2115), + [anon_sym_mut] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [aux_sym_cmd_identifier_token1] = ACTIONS(2115), + [aux_sym_cmd_identifier_token2] = ACTIONS(2121), + [aux_sym_cmd_identifier_token3] = ACTIONS(2121), + [aux_sym_cmd_identifier_token4] = ACTIONS(2121), + [aux_sym_cmd_identifier_token5] = ACTIONS(2121), + [aux_sym_cmd_identifier_token6] = ACTIONS(2121), + [aux_sym_cmd_identifier_token7] = ACTIONS(2121), + [aux_sym_cmd_identifier_token8] = ACTIONS(2115), + [aux_sym_cmd_identifier_token9] = ACTIONS(2115), + [aux_sym_cmd_identifier_token10] = ACTIONS(2121), + [aux_sym_cmd_identifier_token11] = ACTIONS(2121), + [aux_sym_cmd_identifier_token12] = ACTIONS(2115), + [aux_sym_cmd_identifier_token13] = ACTIONS(2115), + [aux_sym_cmd_identifier_token14] = ACTIONS(2115), + [aux_sym_cmd_identifier_token15] = ACTIONS(2115), + [aux_sym_cmd_identifier_token16] = ACTIONS(2121), + [aux_sym_cmd_identifier_token17] = ACTIONS(2121), + [aux_sym_cmd_identifier_token18] = ACTIONS(2121), + [aux_sym_cmd_identifier_token19] = ACTIONS(2121), + [aux_sym_cmd_identifier_token20] = ACTIONS(2121), + [aux_sym_cmd_identifier_token21] = ACTIONS(2121), + [aux_sym_cmd_identifier_token22] = ACTIONS(2121), + [aux_sym_cmd_identifier_token23] = ACTIONS(2121), + [aux_sym_cmd_identifier_token24] = ACTIONS(2121), + [aux_sym_cmd_identifier_token25] = ACTIONS(2121), + [aux_sym_cmd_identifier_token26] = ACTIONS(2121), + [aux_sym_cmd_identifier_token27] = ACTIONS(2121), + [aux_sym_cmd_identifier_token28] = ACTIONS(2121), + [aux_sym_cmd_identifier_token29] = ACTIONS(2121), + [aux_sym_cmd_identifier_token30] = ACTIONS(2121), + [aux_sym_cmd_identifier_token31] = ACTIONS(2121), + [aux_sym_cmd_identifier_token32] = ACTIONS(2121), + [aux_sym_cmd_identifier_token33] = ACTIONS(2121), + [aux_sym_cmd_identifier_token34] = ACTIONS(2115), + [aux_sym_cmd_identifier_token35] = ACTIONS(2121), + [aux_sym_cmd_identifier_token36] = ACTIONS(2121), + [aux_sym_cmd_identifier_token37] = ACTIONS(2121), + [aux_sym_cmd_identifier_token38] = ACTIONS(2115), + [aux_sym_cmd_identifier_token39] = ACTIONS(2121), + [aux_sym_cmd_identifier_token40] = ACTIONS(2121), + [anon_sym_def] = ACTIONS(2115), + [anon_sym_export_DASHenv] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_module] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2121), + [anon_sym_error] = ACTIONS(2115), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_in2] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_make] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_do] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_catch] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_source] = ACTIONS(2115), + [anon_sym_source_DASHenv] = ACTIONS(2115), + [anon_sym_register] = ACTIONS(2115), + [anon_sym_hide] = ACTIONS(2115), + [anon_sym_hide_DASHenv] = ACTIONS(2115), + [anon_sym_overlay] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2115), + [anon_sym_PLUS2] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2121), + [aux_sym__val_number_decimal_token3] = ACTIONS(2121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2121), + [aux_sym__val_number_token1] = ACTIONS(2121), + [aux_sym__val_number_token2] = ACTIONS(2121), + [aux_sym__val_number_token3] = ACTIONS(2121), + [aux_sym__val_number_token4] = ACTIONS(2115), + [aux_sym__val_number_token5] = ACTIONS(2115), + [aux_sym__val_number_token6] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2121), }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(988), + [714] = { + [sym_comment] = STATE(714), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [aux_sym_cmd_identifier_token1] = ACTIONS(1735), + [aux_sym_cmd_identifier_token2] = ACTIONS(1737), + [aux_sym_cmd_identifier_token3] = ACTIONS(1737), + [aux_sym_cmd_identifier_token4] = ACTIONS(1737), + [aux_sym_cmd_identifier_token5] = ACTIONS(1737), + [aux_sym_cmd_identifier_token6] = ACTIONS(1737), + [aux_sym_cmd_identifier_token7] = ACTIONS(1737), + [aux_sym_cmd_identifier_token8] = ACTIONS(1735), + [aux_sym_cmd_identifier_token9] = ACTIONS(1735), + [aux_sym_cmd_identifier_token10] = ACTIONS(1737), + [aux_sym_cmd_identifier_token11] = ACTIONS(1737), + [aux_sym_cmd_identifier_token12] = ACTIONS(1735), + [aux_sym_cmd_identifier_token13] = ACTIONS(1735), + [aux_sym_cmd_identifier_token14] = ACTIONS(1735), + [aux_sym_cmd_identifier_token15] = ACTIONS(1735), + [aux_sym_cmd_identifier_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [aux_sym_cmd_identifier_token31] = ACTIONS(1737), + [aux_sym_cmd_identifier_token32] = ACTIONS(1737), + [aux_sym_cmd_identifier_token33] = ACTIONS(1737), + [aux_sym_cmd_identifier_token34] = ACTIONS(1735), + [aux_sym_cmd_identifier_token35] = ACTIONS(1737), + [aux_sym_cmd_identifier_token36] = ACTIONS(1737), + [aux_sym_cmd_identifier_token37] = ACTIONS(1737), + [aux_sym_cmd_identifier_token38] = ACTIONS(1735), + [aux_sym_cmd_identifier_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_in2] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_make] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_catch] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_as] = ACTIONS(1735), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [aux_sym_cmd_identifier_token37] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [sym__entry_separator] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1959), + [715] = { + [sym_comment] = STATE(715), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [aux_sym_cmd_identifier_token37] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in2] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_register] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1945), + [aux_sym__val_number_token5] = ACTIONS(1945), + [aux_sym__val_number_token6] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1947), }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2500), - [anon_sym_alias] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_let_DASHenv] = ACTIONS(2500), - [anon_sym_mut] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [aux_sym_cmd_identifier_token1] = ACTIONS(2500), - [aux_sym_cmd_identifier_token2] = ACTIONS(2500), - [aux_sym_cmd_identifier_token3] = ACTIONS(2500), - [aux_sym_cmd_identifier_token4] = ACTIONS(2500), - [aux_sym_cmd_identifier_token5] = ACTIONS(2500), - [aux_sym_cmd_identifier_token6] = ACTIONS(2500), - [aux_sym_cmd_identifier_token7] = ACTIONS(2500), - [aux_sym_cmd_identifier_token8] = ACTIONS(2500), - [aux_sym_cmd_identifier_token9] = ACTIONS(2500), - [aux_sym_cmd_identifier_token10] = ACTIONS(2500), - [aux_sym_cmd_identifier_token11] = ACTIONS(2500), - [aux_sym_cmd_identifier_token12] = ACTIONS(2500), - [aux_sym_cmd_identifier_token13] = ACTIONS(2500), - [aux_sym_cmd_identifier_token14] = ACTIONS(2500), - [aux_sym_cmd_identifier_token15] = ACTIONS(2500), - [aux_sym_cmd_identifier_token16] = ACTIONS(2500), - [aux_sym_cmd_identifier_token17] = ACTIONS(2500), - [aux_sym_cmd_identifier_token18] = ACTIONS(2500), - [aux_sym_cmd_identifier_token19] = ACTIONS(2500), - [aux_sym_cmd_identifier_token20] = ACTIONS(2500), - [aux_sym_cmd_identifier_token21] = ACTIONS(2500), - [aux_sym_cmd_identifier_token22] = ACTIONS(2500), - [aux_sym_cmd_identifier_token23] = ACTIONS(2500), - [aux_sym_cmd_identifier_token24] = ACTIONS(2500), - [aux_sym_cmd_identifier_token25] = ACTIONS(2500), - [aux_sym_cmd_identifier_token26] = ACTIONS(2500), - [aux_sym_cmd_identifier_token27] = ACTIONS(2500), - [aux_sym_cmd_identifier_token28] = ACTIONS(2500), - [aux_sym_cmd_identifier_token29] = ACTIONS(2500), - [aux_sym_cmd_identifier_token30] = ACTIONS(2500), - [aux_sym_cmd_identifier_token31] = ACTIONS(2500), - [aux_sym_cmd_identifier_token32] = ACTIONS(2500), - [aux_sym_cmd_identifier_token33] = ACTIONS(2500), - [aux_sym_cmd_identifier_token34] = ACTIONS(2500), - [aux_sym_cmd_identifier_token35] = ACTIONS(2500), - [aux_sym_cmd_identifier_token36] = ACTIONS(2500), - [aux_sym_cmd_identifier_token37] = ACTIONS(2500), - [aux_sym_cmd_identifier_token38] = ACTIONS(2500), - [aux_sym_cmd_identifier_token39] = ACTIONS(2500), - [aux_sym_cmd_identifier_token40] = ACTIONS(2500), - [anon_sym_def] = ACTIONS(2500), - [anon_sym_export_DASHenv] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_use] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_DOLLAR] = ACTIONS(2500), - [anon_sym_error] = ACTIONS(2500), - [anon_sym_DASH2] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_in2] = ACTIONS(2500), - [anon_sym_loop] = ACTIONS(2500), - [anon_sym_make] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_catch] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_source] = ACTIONS(2500), - [anon_sym_source_DASHenv] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_hide] = ACTIONS(2500), - [anon_sym_hide_DASHenv] = ACTIONS(2500), - [anon_sym_overlay] = ACTIONS(2500), - [anon_sym_as] = ACTIONS(2500), - [anon_sym_PLUS2] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), - [aux_sym__val_number_decimal_token1] = ACTIONS(2500), - [aux_sym__val_number_decimal_token2] = ACTIONS(2500), - [aux_sym__val_number_decimal_token3] = ACTIONS(2500), - [aux_sym__val_number_decimal_token4] = ACTIONS(2500), - [aux_sym__val_number_token1] = ACTIONS(2500), - [aux_sym__val_number_token2] = ACTIONS(2500), - [aux_sym__val_number_token3] = ACTIONS(2500), - [aux_sym__val_number_token4] = ACTIONS(2500), - [aux_sym__val_number_token5] = ACTIONS(2500), - [aux_sym__val_number_token6] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [sym__str_single_quotes] = ACTIONS(2500), - [sym__str_back_ticks] = ACTIONS(2500), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), - [sym__entry_separator] = ACTIONS(2502), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2502), + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_alias] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_let_DASHenv] = ACTIONS(2413), + [anon_sym_mut] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [aux_sym_cmd_identifier_token1] = ACTIONS(2413), + [aux_sym_cmd_identifier_token2] = ACTIONS(2415), + [aux_sym_cmd_identifier_token3] = ACTIONS(2415), + [aux_sym_cmd_identifier_token4] = ACTIONS(2415), + [aux_sym_cmd_identifier_token5] = ACTIONS(2415), + [aux_sym_cmd_identifier_token6] = ACTIONS(2415), + [aux_sym_cmd_identifier_token7] = ACTIONS(2415), + [aux_sym_cmd_identifier_token8] = ACTIONS(2413), + [aux_sym_cmd_identifier_token9] = ACTIONS(2413), + [aux_sym_cmd_identifier_token10] = ACTIONS(2415), + [aux_sym_cmd_identifier_token11] = ACTIONS(2415), + [aux_sym_cmd_identifier_token12] = ACTIONS(2413), + [aux_sym_cmd_identifier_token13] = ACTIONS(2413), + [aux_sym_cmd_identifier_token14] = ACTIONS(2413), + [aux_sym_cmd_identifier_token15] = ACTIONS(2413), + [aux_sym_cmd_identifier_token16] = ACTIONS(2415), + [aux_sym_cmd_identifier_token17] = ACTIONS(2415), + [aux_sym_cmd_identifier_token18] = ACTIONS(2415), + [aux_sym_cmd_identifier_token19] = ACTIONS(2415), + [aux_sym_cmd_identifier_token20] = ACTIONS(2415), + [aux_sym_cmd_identifier_token21] = ACTIONS(2415), + [aux_sym_cmd_identifier_token22] = ACTIONS(2415), + [aux_sym_cmd_identifier_token23] = ACTIONS(2415), + [aux_sym_cmd_identifier_token24] = ACTIONS(2415), + [aux_sym_cmd_identifier_token25] = ACTIONS(2415), + [aux_sym_cmd_identifier_token26] = ACTIONS(2415), + [aux_sym_cmd_identifier_token27] = ACTIONS(2415), + [aux_sym_cmd_identifier_token28] = ACTIONS(2415), + [aux_sym_cmd_identifier_token29] = ACTIONS(2415), + [aux_sym_cmd_identifier_token30] = ACTIONS(2415), + [aux_sym_cmd_identifier_token31] = ACTIONS(2415), + [aux_sym_cmd_identifier_token32] = ACTIONS(2415), + [aux_sym_cmd_identifier_token33] = ACTIONS(2415), + [aux_sym_cmd_identifier_token34] = ACTIONS(2413), + [aux_sym_cmd_identifier_token35] = ACTIONS(2415), + [aux_sym_cmd_identifier_token36] = ACTIONS(2415), + [aux_sym_cmd_identifier_token37] = ACTIONS(2415), + [aux_sym_cmd_identifier_token38] = ACTIONS(2413), + [aux_sym_cmd_identifier_token39] = ACTIONS(2415), + [aux_sym_cmd_identifier_token40] = ACTIONS(2415), + [anon_sym_def] = ACTIONS(2413), + [anon_sym_export_DASHenv] = ACTIONS(2413), + [anon_sym_extern] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_error] = ACTIONS(2413), + [anon_sym_DASH2] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_in2] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_make] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [anon_sym_do] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_else] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2413), + [anon_sym_catch] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_source] = ACTIONS(2413), + [anon_sym_source_DASHenv] = ACTIONS(2413), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_hide] = ACTIONS(2413), + [anon_sym_hide_DASHenv] = ACTIONS(2413), + [anon_sym_overlay] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_PLUS2] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2415), + [aux_sym__val_number_decimal_token3] = ACTIONS(2415), + [aux_sym__val_number_decimal_token4] = ACTIONS(2415), + [aux_sym__val_number_token1] = ACTIONS(2415), + [aux_sym__val_number_token2] = ACTIONS(2415), + [aux_sym__val_number_token3] = ACTIONS(2415), + [aux_sym__val_number_token4] = ACTIONS(2413), + [aux_sym__val_number_token5] = ACTIONS(2413), + [aux_sym__val_number_token6] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2415), + [sym__str_single_quotes] = ACTIONS(2415), + [sym__str_back_ticks] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2415), }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2504), - [anon_sym_alias] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_let_DASHenv] = ACTIONS(2504), - [anon_sym_mut] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [aux_sym_cmd_identifier_token1] = ACTIONS(2504), - [aux_sym_cmd_identifier_token2] = ACTIONS(2504), - [aux_sym_cmd_identifier_token3] = ACTIONS(2504), - [aux_sym_cmd_identifier_token4] = ACTIONS(2504), - [aux_sym_cmd_identifier_token5] = ACTIONS(2504), - [aux_sym_cmd_identifier_token6] = ACTIONS(2504), - [aux_sym_cmd_identifier_token7] = ACTIONS(2504), - [aux_sym_cmd_identifier_token8] = ACTIONS(2504), - [aux_sym_cmd_identifier_token9] = ACTIONS(2504), - [aux_sym_cmd_identifier_token10] = ACTIONS(2504), - [aux_sym_cmd_identifier_token11] = ACTIONS(2504), - [aux_sym_cmd_identifier_token12] = ACTIONS(2504), - [aux_sym_cmd_identifier_token13] = ACTIONS(2504), - [aux_sym_cmd_identifier_token14] = ACTIONS(2504), - [aux_sym_cmd_identifier_token15] = ACTIONS(2504), - [aux_sym_cmd_identifier_token16] = ACTIONS(2504), - [aux_sym_cmd_identifier_token17] = ACTIONS(2504), - [aux_sym_cmd_identifier_token18] = ACTIONS(2504), - [aux_sym_cmd_identifier_token19] = ACTIONS(2504), - [aux_sym_cmd_identifier_token20] = ACTIONS(2504), - [aux_sym_cmd_identifier_token21] = ACTIONS(2504), - [aux_sym_cmd_identifier_token22] = ACTIONS(2504), - [aux_sym_cmd_identifier_token23] = ACTIONS(2504), - [aux_sym_cmd_identifier_token24] = ACTIONS(2504), - [aux_sym_cmd_identifier_token25] = ACTIONS(2504), - [aux_sym_cmd_identifier_token26] = ACTIONS(2504), - [aux_sym_cmd_identifier_token27] = ACTIONS(2504), - [aux_sym_cmd_identifier_token28] = ACTIONS(2504), - [aux_sym_cmd_identifier_token29] = ACTIONS(2504), - [aux_sym_cmd_identifier_token30] = ACTIONS(2504), - [aux_sym_cmd_identifier_token31] = ACTIONS(2504), - [aux_sym_cmd_identifier_token32] = ACTIONS(2504), - [aux_sym_cmd_identifier_token33] = ACTIONS(2504), - [aux_sym_cmd_identifier_token34] = ACTIONS(2504), - [aux_sym_cmd_identifier_token35] = ACTIONS(2504), - [aux_sym_cmd_identifier_token36] = ACTIONS(2504), - [aux_sym_cmd_identifier_token37] = ACTIONS(2504), - [aux_sym_cmd_identifier_token38] = ACTIONS(2504), - [aux_sym_cmd_identifier_token39] = ACTIONS(2504), - [aux_sym_cmd_identifier_token40] = ACTIONS(2504), - [anon_sym_def] = ACTIONS(2504), - [anon_sym_export_DASHenv] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_module] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_DOLLAR] = ACTIONS(2504), - [anon_sym_error] = ACTIONS(2504), - [anon_sym_DASH2] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_in2] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_make] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_catch] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_source] = ACTIONS(2504), - [anon_sym_source_DASHenv] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_hide] = ACTIONS(2504), - [anon_sym_hide_DASHenv] = ACTIONS(2504), - [anon_sym_overlay] = ACTIONS(2504), - [anon_sym_as] = ACTIONS(2504), - [anon_sym_PLUS2] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_decimal_token2] = ACTIONS(2504), - [aux_sym__val_number_decimal_token3] = ACTIONS(2504), - [aux_sym__val_number_decimal_token4] = ACTIONS(2504), - [aux_sym__val_number_token1] = ACTIONS(2504), - [aux_sym__val_number_token2] = ACTIONS(2504), - [aux_sym__val_number_token3] = ACTIONS(2504), - [aux_sym__val_number_token4] = ACTIONS(2504), - [aux_sym__val_number_token5] = ACTIONS(2504), - [aux_sym__val_number_token6] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [sym__str_single_quotes] = ACTIONS(2504), - [sym__str_back_ticks] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), - [sym__entry_separator] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2506), + [717] = { + [sym_comment] = STATE(717), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(2508), - [anon_sym_alias] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_let_DASHenv] = ACTIONS(2508), - [anon_sym_mut] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [aux_sym_cmd_identifier_token1] = ACTIONS(2508), - [aux_sym_cmd_identifier_token2] = ACTIONS(2508), - [aux_sym_cmd_identifier_token3] = ACTIONS(2508), - [aux_sym_cmd_identifier_token4] = ACTIONS(2508), - [aux_sym_cmd_identifier_token5] = ACTIONS(2508), - [aux_sym_cmd_identifier_token6] = ACTIONS(2508), - [aux_sym_cmd_identifier_token7] = ACTIONS(2508), - [aux_sym_cmd_identifier_token8] = ACTIONS(2508), - [aux_sym_cmd_identifier_token9] = ACTIONS(2508), - [aux_sym_cmd_identifier_token10] = ACTIONS(2508), - [aux_sym_cmd_identifier_token11] = ACTIONS(2508), - [aux_sym_cmd_identifier_token12] = ACTIONS(2508), - [aux_sym_cmd_identifier_token13] = ACTIONS(2508), - [aux_sym_cmd_identifier_token14] = ACTIONS(2508), - [aux_sym_cmd_identifier_token15] = ACTIONS(2508), - [aux_sym_cmd_identifier_token16] = ACTIONS(2508), - [aux_sym_cmd_identifier_token17] = ACTIONS(2508), - [aux_sym_cmd_identifier_token18] = ACTIONS(2508), - [aux_sym_cmd_identifier_token19] = ACTIONS(2508), - [aux_sym_cmd_identifier_token20] = ACTIONS(2508), - [aux_sym_cmd_identifier_token21] = ACTIONS(2508), - [aux_sym_cmd_identifier_token22] = ACTIONS(2508), - [aux_sym_cmd_identifier_token23] = ACTIONS(2508), - [aux_sym_cmd_identifier_token24] = ACTIONS(2508), - [aux_sym_cmd_identifier_token25] = ACTIONS(2508), - [aux_sym_cmd_identifier_token26] = ACTIONS(2508), - [aux_sym_cmd_identifier_token27] = ACTIONS(2508), - [aux_sym_cmd_identifier_token28] = ACTIONS(2508), - [aux_sym_cmd_identifier_token29] = ACTIONS(2508), - [aux_sym_cmd_identifier_token30] = ACTIONS(2508), - [aux_sym_cmd_identifier_token31] = ACTIONS(2508), - [aux_sym_cmd_identifier_token32] = ACTIONS(2508), - [aux_sym_cmd_identifier_token33] = ACTIONS(2508), - [aux_sym_cmd_identifier_token34] = ACTIONS(2508), - [aux_sym_cmd_identifier_token35] = ACTIONS(2508), - [aux_sym_cmd_identifier_token36] = ACTIONS(2508), - [aux_sym_cmd_identifier_token37] = ACTIONS(2508), - [aux_sym_cmd_identifier_token38] = ACTIONS(2508), - [aux_sym_cmd_identifier_token39] = ACTIONS(2508), - [aux_sym_cmd_identifier_token40] = ACTIONS(2508), - [anon_sym_def] = ACTIONS(2508), - [anon_sym_export_DASHenv] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_module] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_DOLLAR] = ACTIONS(2508), - [anon_sym_error] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_in2] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_make] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_catch] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_source] = ACTIONS(2508), - [anon_sym_source_DASHenv] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_hide] = ACTIONS(2508), - [anon_sym_hide_DASHenv] = ACTIONS(2508), - [anon_sym_overlay] = ACTIONS(2508), - [anon_sym_as] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), - [aux_sym__val_number_decimal_token1] = ACTIONS(2508), - [aux_sym__val_number_decimal_token2] = ACTIONS(2508), - [aux_sym__val_number_decimal_token3] = ACTIONS(2508), - [aux_sym__val_number_decimal_token4] = ACTIONS(2508), - [aux_sym__val_number_token1] = ACTIONS(2508), - [aux_sym__val_number_token2] = ACTIONS(2508), - [aux_sym__val_number_token3] = ACTIONS(2508), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [sym__str_single_quotes] = ACTIONS(2508), - [sym__str_back_ticks] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), - [sym__entry_separator] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2510), + [718] = { + [sym_comment] = STATE(718), + [anon_sym_export] = ACTIONS(2505), + [anon_sym_alias] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_let_DASHenv] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [aux_sym_cmd_identifier_token1] = ACTIONS(2505), + [aux_sym_cmd_identifier_token2] = ACTIONS(2507), + [aux_sym_cmd_identifier_token3] = ACTIONS(2507), + [aux_sym_cmd_identifier_token4] = ACTIONS(2507), + [aux_sym_cmd_identifier_token5] = ACTIONS(2507), + [aux_sym_cmd_identifier_token6] = ACTIONS(2507), + [aux_sym_cmd_identifier_token7] = ACTIONS(2507), + [aux_sym_cmd_identifier_token8] = ACTIONS(2505), + [aux_sym_cmd_identifier_token9] = ACTIONS(2505), + [aux_sym_cmd_identifier_token10] = ACTIONS(2507), + [aux_sym_cmd_identifier_token11] = ACTIONS(2507), + [aux_sym_cmd_identifier_token12] = ACTIONS(2505), + [aux_sym_cmd_identifier_token13] = ACTIONS(2505), + [aux_sym_cmd_identifier_token14] = ACTIONS(2505), + [aux_sym_cmd_identifier_token15] = ACTIONS(2505), + [aux_sym_cmd_identifier_token16] = ACTIONS(2507), + [aux_sym_cmd_identifier_token17] = ACTIONS(2507), + [aux_sym_cmd_identifier_token18] = ACTIONS(2507), + [aux_sym_cmd_identifier_token19] = ACTIONS(2507), + [aux_sym_cmd_identifier_token20] = ACTIONS(2507), + [aux_sym_cmd_identifier_token21] = ACTIONS(2507), + [aux_sym_cmd_identifier_token22] = ACTIONS(2507), + [aux_sym_cmd_identifier_token23] = ACTIONS(2507), + [aux_sym_cmd_identifier_token24] = ACTIONS(2507), + [aux_sym_cmd_identifier_token25] = ACTIONS(2507), + [aux_sym_cmd_identifier_token26] = ACTIONS(2507), + [aux_sym_cmd_identifier_token27] = ACTIONS(2507), + [aux_sym_cmd_identifier_token28] = ACTIONS(2507), + [aux_sym_cmd_identifier_token29] = ACTIONS(2507), + [aux_sym_cmd_identifier_token30] = ACTIONS(2507), + [aux_sym_cmd_identifier_token31] = ACTIONS(2507), + [aux_sym_cmd_identifier_token32] = ACTIONS(2507), + [aux_sym_cmd_identifier_token33] = ACTIONS(2507), + [aux_sym_cmd_identifier_token34] = ACTIONS(2505), + [aux_sym_cmd_identifier_token35] = ACTIONS(2507), + [aux_sym_cmd_identifier_token36] = ACTIONS(2507), + [aux_sym_cmd_identifier_token37] = ACTIONS(2507), + [aux_sym_cmd_identifier_token38] = ACTIONS(2505), + [aux_sym_cmd_identifier_token39] = ACTIONS(2507), + [aux_sym_cmd_identifier_token40] = ACTIONS(2507), + [anon_sym_def] = ACTIONS(2505), + [anon_sym_export_DASHenv] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_module] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_DOLLAR] = ACTIONS(2507), + [anon_sym_error] = ACTIONS(2505), + [anon_sym_DASH2] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_in2] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_make] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_do] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_catch] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_source] = ACTIONS(2505), + [anon_sym_source_DASHenv] = ACTIONS(2505), + [anon_sym_register] = ACTIONS(2505), + [anon_sym_hide] = ACTIONS(2505), + [anon_sym_hide_DASHenv] = ACTIONS(2505), + [anon_sym_overlay] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_PLUS2] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), + [aux_sym__val_number_decimal_token1] = ACTIONS(2505), + [aux_sym__val_number_decimal_token2] = ACTIONS(2507), + [aux_sym__val_number_decimal_token3] = ACTIONS(2507), + [aux_sym__val_number_decimal_token4] = ACTIONS(2507), + [aux_sym__val_number_token1] = ACTIONS(2507), + [aux_sym__val_number_token2] = ACTIONS(2507), + [aux_sym__val_number_token3] = ACTIONS(2507), + [aux_sym__val_number_token4] = ACTIONS(2505), + [aux_sym__val_number_token5] = ACTIONS(2505), + [aux_sym__val_number_token6] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2507), + [sym__str_single_quotes] = ACTIONS(2507), + [sym__str_back_ticks] = ACTIONS(2507), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2507), }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1883), - [aux_sym_cmd_identifier_token3] = ACTIONS(1883), - [aux_sym_cmd_identifier_token4] = ACTIONS(1883), - [aux_sym_cmd_identifier_token5] = ACTIONS(1883), - [aux_sym_cmd_identifier_token6] = ACTIONS(1883), - [aux_sym_cmd_identifier_token7] = ACTIONS(1883), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1883), - [aux_sym_cmd_identifier_token11] = ACTIONS(1883), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1883), - [aux_sym_cmd_identifier_token17] = ACTIONS(1883), - [aux_sym_cmd_identifier_token18] = ACTIONS(1883), - [aux_sym_cmd_identifier_token19] = ACTIONS(1883), - [aux_sym_cmd_identifier_token20] = ACTIONS(1883), - [aux_sym_cmd_identifier_token21] = ACTIONS(1883), - [aux_sym_cmd_identifier_token22] = ACTIONS(1883), - [aux_sym_cmd_identifier_token23] = ACTIONS(1883), - [aux_sym_cmd_identifier_token24] = ACTIONS(1883), - [aux_sym_cmd_identifier_token25] = ACTIONS(1883), - [aux_sym_cmd_identifier_token26] = ACTIONS(1883), - [aux_sym_cmd_identifier_token27] = ACTIONS(1883), - [aux_sym_cmd_identifier_token28] = ACTIONS(1883), - [aux_sym_cmd_identifier_token29] = ACTIONS(1883), - [aux_sym_cmd_identifier_token30] = ACTIONS(1883), - [aux_sym_cmd_identifier_token31] = ACTIONS(1883), - [aux_sym_cmd_identifier_token32] = ACTIONS(1883), - [aux_sym_cmd_identifier_token33] = ACTIONS(1883), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1883), - [aux_sym_cmd_identifier_token36] = ACTIONS(1883), - [aux_sym_cmd_identifier_token37] = ACTIONS(1883), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1883), - [aux_sym_cmd_identifier_token40] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in2] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1883), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1883), - [aux_sym__val_number_decimal_token3] = ACTIONS(1883), - [aux_sym__val_number_decimal_token4] = ACTIONS(1883), - [aux_sym__val_number_token1] = ACTIONS(1883), - [aux_sym__val_number_token2] = ACTIONS(1883), - [aux_sym__val_number_token3] = ACTIONS(1883), - [aux_sym__val_number_token4] = ACTIONS(1883), - [aux_sym__val_number_token5] = ACTIONS(1883), - [aux_sym__val_number_token6] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1883), - [sym__str_single_quotes] = ACTIONS(1883), - [sym__str_back_ticks] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), - [sym__entry_separator] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1885), + [719] = { + [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_alias] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_let_DASHenv] = ACTIONS(1771), + [anon_sym_mut] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [aux_sym_cmd_identifier_token1] = ACTIONS(1771), + [aux_sym_cmd_identifier_token2] = ACTIONS(1773), + [aux_sym_cmd_identifier_token3] = ACTIONS(1773), + [aux_sym_cmd_identifier_token4] = ACTIONS(1773), + [aux_sym_cmd_identifier_token5] = ACTIONS(1773), + [aux_sym_cmd_identifier_token6] = ACTIONS(1773), + [aux_sym_cmd_identifier_token7] = ACTIONS(1773), + [aux_sym_cmd_identifier_token8] = ACTIONS(1771), + [aux_sym_cmd_identifier_token9] = ACTIONS(1771), + [aux_sym_cmd_identifier_token10] = ACTIONS(1773), + [aux_sym_cmd_identifier_token11] = ACTIONS(1773), + [aux_sym_cmd_identifier_token12] = ACTIONS(1771), + [aux_sym_cmd_identifier_token13] = ACTIONS(1771), + [aux_sym_cmd_identifier_token14] = ACTIONS(1771), + [aux_sym_cmd_identifier_token15] = ACTIONS(1771), + [aux_sym_cmd_identifier_token16] = ACTIONS(1773), + [aux_sym_cmd_identifier_token17] = ACTIONS(1773), + [aux_sym_cmd_identifier_token18] = ACTIONS(1773), + [aux_sym_cmd_identifier_token19] = ACTIONS(1773), + [aux_sym_cmd_identifier_token20] = ACTIONS(1773), + [aux_sym_cmd_identifier_token21] = ACTIONS(1773), + [aux_sym_cmd_identifier_token22] = ACTIONS(1773), + [aux_sym_cmd_identifier_token23] = ACTIONS(1773), + [aux_sym_cmd_identifier_token24] = ACTIONS(1773), + [aux_sym_cmd_identifier_token25] = ACTIONS(1773), + [aux_sym_cmd_identifier_token26] = ACTIONS(1773), + [aux_sym_cmd_identifier_token27] = ACTIONS(1773), + [aux_sym_cmd_identifier_token28] = ACTIONS(1773), + [aux_sym_cmd_identifier_token29] = ACTIONS(1773), + [aux_sym_cmd_identifier_token30] = ACTIONS(1773), + [aux_sym_cmd_identifier_token31] = ACTIONS(1773), + [aux_sym_cmd_identifier_token32] = ACTIONS(1773), + [aux_sym_cmd_identifier_token33] = ACTIONS(1773), + [aux_sym_cmd_identifier_token34] = ACTIONS(1771), + [aux_sym_cmd_identifier_token35] = ACTIONS(1773), + [aux_sym_cmd_identifier_token36] = ACTIONS(1773), + [aux_sym_cmd_identifier_token37] = ACTIONS(1773), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1773), + [aux_sym_cmd_identifier_token40] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_export_DASHenv] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_in2] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_make] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_source] = ACTIONS(1771), + [anon_sym_source_DASHenv] = ACTIONS(1771), + [anon_sym_register] = ACTIONS(1771), + [anon_sym_hide] = ACTIONS(1771), + [anon_sym_hide_DASHenv] = ACTIONS(1771), + [anon_sym_overlay] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1771), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1771), + [aux_sym__val_number_token5] = ACTIONS(1771), + [aux_sym__val_number_token6] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [680] = { - [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2512), - [anon_sym_alias] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_let_DASHenv] = ACTIONS(2512), - [anon_sym_mut] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [aux_sym_cmd_identifier_token1] = ACTIONS(2512), - [aux_sym_cmd_identifier_token2] = ACTIONS(2512), - [aux_sym_cmd_identifier_token3] = ACTIONS(2512), - [aux_sym_cmd_identifier_token4] = ACTIONS(2512), - [aux_sym_cmd_identifier_token5] = ACTIONS(2512), - [aux_sym_cmd_identifier_token6] = ACTIONS(2512), - [aux_sym_cmd_identifier_token7] = ACTIONS(2512), - [aux_sym_cmd_identifier_token8] = ACTIONS(2512), - [aux_sym_cmd_identifier_token9] = ACTIONS(2512), - [aux_sym_cmd_identifier_token10] = ACTIONS(2512), - [aux_sym_cmd_identifier_token11] = ACTIONS(2512), - [aux_sym_cmd_identifier_token12] = ACTIONS(2512), - [aux_sym_cmd_identifier_token13] = ACTIONS(2512), - [aux_sym_cmd_identifier_token14] = ACTIONS(2512), - [aux_sym_cmd_identifier_token15] = ACTIONS(2512), - [aux_sym_cmd_identifier_token16] = ACTIONS(2512), - [aux_sym_cmd_identifier_token17] = ACTIONS(2512), - [aux_sym_cmd_identifier_token18] = ACTIONS(2512), - [aux_sym_cmd_identifier_token19] = ACTIONS(2512), - [aux_sym_cmd_identifier_token20] = ACTIONS(2512), - [aux_sym_cmd_identifier_token21] = ACTIONS(2512), - [aux_sym_cmd_identifier_token22] = ACTIONS(2512), - [aux_sym_cmd_identifier_token23] = ACTIONS(2512), - [aux_sym_cmd_identifier_token24] = ACTIONS(2512), - [aux_sym_cmd_identifier_token25] = ACTIONS(2512), - [aux_sym_cmd_identifier_token26] = ACTIONS(2512), - [aux_sym_cmd_identifier_token27] = ACTIONS(2512), - [aux_sym_cmd_identifier_token28] = ACTIONS(2512), - [aux_sym_cmd_identifier_token29] = ACTIONS(2512), - [aux_sym_cmd_identifier_token30] = ACTIONS(2512), - [aux_sym_cmd_identifier_token31] = ACTIONS(2512), - [aux_sym_cmd_identifier_token32] = ACTIONS(2512), - [aux_sym_cmd_identifier_token33] = ACTIONS(2512), - [aux_sym_cmd_identifier_token34] = ACTIONS(2512), - [aux_sym_cmd_identifier_token35] = ACTIONS(2512), - [aux_sym_cmd_identifier_token36] = ACTIONS(2512), - [aux_sym_cmd_identifier_token37] = ACTIONS(2512), - [aux_sym_cmd_identifier_token38] = ACTIONS(2512), - [aux_sym_cmd_identifier_token39] = ACTIONS(2512), - [aux_sym_cmd_identifier_token40] = ACTIONS(2512), - [anon_sym_def] = ACTIONS(2512), - [anon_sym_export_DASHenv] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_DOLLAR] = ACTIONS(2512), - [anon_sym_error] = ACTIONS(2512), - [anon_sym_DASH2] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_in2] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_make] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_source] = ACTIONS(2512), - [anon_sym_source_DASHenv] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_hide] = ACTIONS(2512), - [anon_sym_hide_DASHenv] = ACTIONS(2512), - [anon_sym_overlay] = ACTIONS(2512), - [anon_sym_as] = ACTIONS(2512), - [anon_sym_PLUS2] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), - [aux_sym__val_number_decimal_token1] = ACTIONS(2512), - [aux_sym__val_number_decimal_token2] = ACTIONS(2512), - [aux_sym__val_number_decimal_token3] = ACTIONS(2512), - [aux_sym__val_number_decimal_token4] = ACTIONS(2512), - [aux_sym__val_number_token1] = ACTIONS(2512), - [aux_sym__val_number_token2] = ACTIONS(2512), - [aux_sym__val_number_token3] = ACTIONS(2512), - [aux_sym__val_number_token4] = ACTIONS(2512), - [aux_sym__val_number_token5] = ACTIONS(2512), - [aux_sym__val_number_token6] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym__str_single_quotes] = ACTIONS(2512), - [sym__str_back_ticks] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), - [sym__entry_separator] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2514), + [720] = { + [sym_comment] = STATE(720), + [anon_sym_export] = ACTIONS(1786), + [anon_sym_alias] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_let_DASHenv] = ACTIONS(1786), + [anon_sym_mut] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [aux_sym_cmd_identifier_token1] = ACTIONS(1786), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1786), + [aux_sym_cmd_identifier_token9] = ACTIONS(1786), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1786), + [aux_sym_cmd_identifier_token13] = ACTIONS(1786), + [aux_sym_cmd_identifier_token14] = ACTIONS(1786), + [aux_sym_cmd_identifier_token15] = ACTIONS(1786), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1786), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [aux_sym_cmd_identifier_token37] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1786), + [anon_sym_export_DASHenv] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_module] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1786), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_in2] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_make] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_do] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_else] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1786), + [anon_sym_catch] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_source] = ACTIONS(1786), + [anon_sym_source_DASHenv] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_hide] = ACTIONS(1786), + [anon_sym_hide_DASHenv] = ACTIONS(1786), + [anon_sym_overlay] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1786), + [anon_sym_PLUS2] = ACTIONS(1786), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1786), + [aux_sym__val_number_token5] = ACTIONS(1786), + [aux_sym__val_number_token6] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), }, - [681] = { - [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(2516), - [anon_sym_alias] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_let_DASHenv] = ACTIONS(2516), - [anon_sym_mut] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [aux_sym_cmd_identifier_token1] = ACTIONS(2516), - [aux_sym_cmd_identifier_token2] = ACTIONS(2516), - [aux_sym_cmd_identifier_token3] = ACTIONS(2516), - [aux_sym_cmd_identifier_token4] = ACTIONS(2516), - [aux_sym_cmd_identifier_token5] = ACTIONS(2516), - [aux_sym_cmd_identifier_token6] = ACTIONS(2516), - [aux_sym_cmd_identifier_token7] = ACTIONS(2516), - [aux_sym_cmd_identifier_token8] = ACTIONS(2516), - [aux_sym_cmd_identifier_token9] = ACTIONS(2516), - [aux_sym_cmd_identifier_token10] = ACTIONS(2516), - [aux_sym_cmd_identifier_token11] = ACTIONS(2516), - [aux_sym_cmd_identifier_token12] = ACTIONS(2516), - [aux_sym_cmd_identifier_token13] = ACTIONS(2516), - [aux_sym_cmd_identifier_token14] = ACTIONS(2516), - [aux_sym_cmd_identifier_token15] = ACTIONS(2516), - [aux_sym_cmd_identifier_token16] = ACTIONS(2516), - [aux_sym_cmd_identifier_token17] = ACTIONS(2516), - [aux_sym_cmd_identifier_token18] = ACTIONS(2516), - [aux_sym_cmd_identifier_token19] = ACTIONS(2516), - [aux_sym_cmd_identifier_token20] = ACTIONS(2516), - [aux_sym_cmd_identifier_token21] = ACTIONS(2516), - [aux_sym_cmd_identifier_token22] = ACTIONS(2516), - [aux_sym_cmd_identifier_token23] = ACTIONS(2516), - [aux_sym_cmd_identifier_token24] = ACTIONS(2516), - [aux_sym_cmd_identifier_token25] = ACTIONS(2516), - [aux_sym_cmd_identifier_token26] = ACTIONS(2516), - [aux_sym_cmd_identifier_token27] = ACTIONS(2516), - [aux_sym_cmd_identifier_token28] = ACTIONS(2516), - [aux_sym_cmd_identifier_token29] = ACTIONS(2516), - [aux_sym_cmd_identifier_token30] = ACTIONS(2516), - [aux_sym_cmd_identifier_token31] = ACTIONS(2516), - [aux_sym_cmd_identifier_token32] = ACTIONS(2516), - [aux_sym_cmd_identifier_token33] = ACTIONS(2516), - [aux_sym_cmd_identifier_token34] = ACTIONS(2516), - [aux_sym_cmd_identifier_token35] = ACTIONS(2516), - [aux_sym_cmd_identifier_token36] = ACTIONS(2516), - [aux_sym_cmd_identifier_token37] = ACTIONS(2516), - [aux_sym_cmd_identifier_token38] = ACTIONS(2516), - [aux_sym_cmd_identifier_token39] = ACTIONS(2516), - [aux_sym_cmd_identifier_token40] = ACTIONS(2516), - [anon_sym_def] = ACTIONS(2516), - [anon_sym_export_DASHenv] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_module] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_DOLLAR] = ACTIONS(2516), - [anon_sym_error] = ACTIONS(2516), - [anon_sym_DASH2] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_in2] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_make] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_source] = ACTIONS(2516), - [anon_sym_source_DASHenv] = ACTIONS(2516), - [anon_sym_register] = ACTIONS(2516), - [anon_sym_hide] = ACTIONS(2516), - [anon_sym_hide_DASHenv] = ACTIONS(2516), - [anon_sym_overlay] = ACTIONS(2516), - [anon_sym_as] = ACTIONS(2516), - [anon_sym_PLUS2] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2516), - [aux_sym__val_number_decimal_token1] = ACTIONS(2516), - [aux_sym__val_number_decimal_token2] = ACTIONS(2516), - [aux_sym__val_number_decimal_token3] = ACTIONS(2516), - [aux_sym__val_number_decimal_token4] = ACTIONS(2516), - [aux_sym__val_number_token1] = ACTIONS(2516), - [aux_sym__val_number_token2] = ACTIONS(2516), - [aux_sym__val_number_token3] = ACTIONS(2516), - [aux_sym__val_number_token4] = ACTIONS(2516), - [aux_sym__val_number_token5] = ACTIONS(2516), - [aux_sym__val_number_token6] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym__str_single_quotes] = ACTIONS(2516), - [sym__str_back_ticks] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2516), - [sym__entry_separator] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2518), + [721] = { + [aux_sym__pipe_separator] = STATE(700), + [sym_comment] = STATE(721), + [aux_sym_shebang_repeat1] = STATE(4979), + [aux_sym_cmd_identifier_token1] = ACTIONS(2523), + [aux_sym_cmd_identifier_token2] = ACTIONS(2525), + [aux_sym_cmd_identifier_token3] = ACTIONS(2525), + [aux_sym_cmd_identifier_token4] = ACTIONS(2525), + [aux_sym_cmd_identifier_token5] = ACTIONS(2525), + [aux_sym_cmd_identifier_token6] = ACTIONS(2525), + [aux_sym_cmd_identifier_token7] = ACTIONS(2525), + [aux_sym_cmd_identifier_token8] = ACTIONS(2525), + [aux_sym_cmd_identifier_token9] = ACTIONS(2523), + [aux_sym_cmd_identifier_token10] = ACTIONS(2525), + [aux_sym_cmd_identifier_token11] = ACTIONS(2525), + [aux_sym_cmd_identifier_token12] = ACTIONS(2525), + [aux_sym_cmd_identifier_token13] = ACTIONS(2523), + [aux_sym_cmd_identifier_token14] = ACTIONS(2525), + [aux_sym_cmd_identifier_token15] = ACTIONS(2523), + [aux_sym_cmd_identifier_token16] = ACTIONS(2525), + [aux_sym_cmd_identifier_token17] = ACTIONS(2525), + [aux_sym_cmd_identifier_token18] = ACTIONS(2523), + [aux_sym_cmd_identifier_token19] = ACTIONS(2525), + [aux_sym_cmd_identifier_token20] = ACTIONS(2525), + [aux_sym_cmd_identifier_token21] = ACTIONS(2525), + [aux_sym_cmd_identifier_token22] = ACTIONS(2525), + [aux_sym_cmd_identifier_token23] = ACTIONS(2525), + [aux_sym_cmd_identifier_token24] = ACTIONS(2525), + [aux_sym_cmd_identifier_token25] = ACTIONS(2525), + [aux_sym_cmd_identifier_token26] = ACTIONS(2525), + [aux_sym_cmd_identifier_token27] = ACTIONS(2525), + [aux_sym_cmd_identifier_token28] = ACTIONS(2525), + [aux_sym_cmd_identifier_token29] = ACTIONS(2525), + [aux_sym_cmd_identifier_token30] = ACTIONS(2525), + [aux_sym_cmd_identifier_token31] = ACTIONS(2525), + [aux_sym_cmd_identifier_token32] = ACTIONS(2523), + [aux_sym_cmd_identifier_token33] = ACTIONS(2525), + [aux_sym_cmd_identifier_token34] = ACTIONS(2523), + [aux_sym_cmd_identifier_token35] = ACTIONS(2525), + [aux_sym_cmd_identifier_token36] = ACTIONS(2525), + [aux_sym_cmd_identifier_token37] = ACTIONS(2525), + [aux_sym_cmd_identifier_token38] = ACTIONS(2523), + [aux_sym_cmd_identifier_token39] = ACTIONS(2525), + [aux_sym_cmd_identifier_token40] = ACTIONS(2525), + [sym__newline] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_DOLLAR] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_match] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [anon_sym_try] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_where] = ACTIONS(2525), + [aux_sym_expr_unary_token1] = ACTIONS(2525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2525), + [anon_sym_DOT_DOT_LT] = ACTIONS(2525), + [anon_sym_null] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(2523), + [anon_sym_false] = ACTIONS(2523), + [aux_sym__val_number_decimal_token1] = ACTIONS(2523), + [aux_sym__val_number_decimal_token2] = ACTIONS(2525), + [aux_sym__val_number_decimal_token3] = ACTIONS(2525), + [aux_sym__val_number_decimal_token4] = ACTIONS(2525), + [aux_sym__val_number_token1] = ACTIONS(2525), + [aux_sym__val_number_token2] = ACTIONS(2525), + [aux_sym__val_number_token3] = ACTIONS(2525), + [aux_sym__val_number_token4] = ACTIONS(2523), + [aux_sym__val_number_token5] = ACTIONS(2523), + [aux_sym__val_number_token6] = ACTIONS(2523), + [anon_sym_0b] = ACTIONS(2523), + [anon_sym_0o] = ACTIONS(2523), + [anon_sym_0x] = ACTIONS(2523), + [sym_val_date] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym__str_single_quotes] = ACTIONS(2525), + [sym__str_back_ticks] = ACTIONS(2525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2525), + [aux_sym_env_var_token1] = ACTIONS(2523), + [anon_sym_CARET] = ACTIONS(2525), + [aux_sym_command_token1] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2525), }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(1687), - [anon_sym_alias] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_let_DASHenv] = ACTIONS(1687), - [anon_sym_mut] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1687), - [aux_sym_cmd_identifier_token2] = ACTIONS(1699), - [aux_sym_cmd_identifier_token3] = ACTIONS(1699), - [aux_sym_cmd_identifier_token4] = ACTIONS(1699), - [aux_sym_cmd_identifier_token5] = ACTIONS(1699), - [aux_sym_cmd_identifier_token6] = ACTIONS(1699), - [aux_sym_cmd_identifier_token7] = ACTIONS(1699), - [aux_sym_cmd_identifier_token8] = ACTIONS(1687), - [aux_sym_cmd_identifier_token9] = ACTIONS(1687), - [aux_sym_cmd_identifier_token10] = ACTIONS(1699), - [aux_sym_cmd_identifier_token11] = ACTIONS(1699), - [aux_sym_cmd_identifier_token12] = ACTIONS(1687), - [aux_sym_cmd_identifier_token13] = ACTIONS(1687), - [aux_sym_cmd_identifier_token14] = ACTIONS(1687), - [aux_sym_cmd_identifier_token15] = ACTIONS(1687), - [aux_sym_cmd_identifier_token16] = ACTIONS(1699), - [aux_sym_cmd_identifier_token17] = ACTIONS(1699), - [aux_sym_cmd_identifier_token18] = ACTIONS(1699), - [aux_sym_cmd_identifier_token19] = ACTIONS(1699), - [aux_sym_cmd_identifier_token20] = ACTIONS(1699), - [aux_sym_cmd_identifier_token21] = ACTIONS(1699), - [aux_sym_cmd_identifier_token22] = ACTIONS(1699), - [aux_sym_cmd_identifier_token23] = ACTIONS(1699), - [aux_sym_cmd_identifier_token24] = ACTIONS(1699), - [aux_sym_cmd_identifier_token25] = ACTIONS(1699), - [aux_sym_cmd_identifier_token26] = ACTIONS(1699), - [aux_sym_cmd_identifier_token27] = ACTIONS(1699), - [aux_sym_cmd_identifier_token28] = ACTIONS(1699), - [aux_sym_cmd_identifier_token29] = ACTIONS(1699), - [aux_sym_cmd_identifier_token30] = ACTIONS(1699), - [aux_sym_cmd_identifier_token31] = ACTIONS(1699), - [aux_sym_cmd_identifier_token32] = ACTIONS(1699), - [aux_sym_cmd_identifier_token33] = ACTIONS(1699), - [aux_sym_cmd_identifier_token34] = ACTIONS(1687), - [aux_sym_cmd_identifier_token35] = ACTIONS(1699), - [aux_sym_cmd_identifier_token36] = ACTIONS(1699), - [aux_sym_cmd_identifier_token37] = ACTIONS(1699), - [aux_sym_cmd_identifier_token38] = ACTIONS(1687), - [aux_sym_cmd_identifier_token39] = ACTIONS(1699), - [aux_sym_cmd_identifier_token40] = ACTIONS(1699), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_export_DASHenv] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_module] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1699), - [anon_sym_error] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_make] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_catch] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_source] = ACTIONS(1687), - [anon_sym_source_DASHenv] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_hide] = ACTIONS(1687), - [anon_sym_hide_DASHenv] = ACTIONS(1687), - [anon_sym_overlay] = ACTIONS(1687), - [anon_sym_as] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1687), - [aux_sym__val_number_token5] = ACTIONS(1687), - [aux_sym__val_number_token6] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [aux_sym_cmd_identifier_token37] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1999), }, - [683] = { - [sym_comment] = STATE(683), + [723] = { + [sym_comment] = STATE(723), + [anon_sym_export] = ACTIONS(1653), + [anon_sym_alias] = ACTIONS(1653), + [anon_sym_let] = ACTIONS(1653), + [anon_sym_let_DASHenv] = ACTIONS(1653), + [anon_sym_mut] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(1653), + [aux_sym_cmd_identifier_token2] = ACTIONS(1665), + [aux_sym_cmd_identifier_token3] = ACTIONS(1665), + [aux_sym_cmd_identifier_token4] = ACTIONS(1665), + [aux_sym_cmd_identifier_token5] = ACTIONS(1665), + [aux_sym_cmd_identifier_token6] = ACTIONS(1665), + [aux_sym_cmd_identifier_token7] = ACTIONS(1665), + [aux_sym_cmd_identifier_token8] = ACTIONS(1653), + [aux_sym_cmd_identifier_token9] = ACTIONS(1653), + [aux_sym_cmd_identifier_token10] = ACTIONS(1665), + [aux_sym_cmd_identifier_token11] = ACTIONS(1665), + [aux_sym_cmd_identifier_token12] = ACTIONS(1653), + [aux_sym_cmd_identifier_token13] = ACTIONS(1653), + [aux_sym_cmd_identifier_token14] = ACTIONS(1653), + [aux_sym_cmd_identifier_token15] = ACTIONS(1653), + [aux_sym_cmd_identifier_token16] = ACTIONS(1665), + [aux_sym_cmd_identifier_token17] = ACTIONS(1665), + [aux_sym_cmd_identifier_token18] = ACTIONS(1665), + [aux_sym_cmd_identifier_token19] = ACTIONS(1665), + [aux_sym_cmd_identifier_token20] = ACTIONS(1665), + [aux_sym_cmd_identifier_token21] = ACTIONS(1665), + [aux_sym_cmd_identifier_token22] = ACTIONS(1665), + [aux_sym_cmd_identifier_token23] = ACTIONS(1665), + [aux_sym_cmd_identifier_token24] = ACTIONS(1665), + [aux_sym_cmd_identifier_token25] = ACTIONS(1665), + [aux_sym_cmd_identifier_token26] = ACTIONS(1665), + [aux_sym_cmd_identifier_token27] = ACTIONS(1665), + [aux_sym_cmd_identifier_token28] = ACTIONS(1665), + [aux_sym_cmd_identifier_token29] = ACTIONS(1665), + [aux_sym_cmd_identifier_token30] = ACTIONS(1665), + [aux_sym_cmd_identifier_token31] = ACTIONS(1665), + [aux_sym_cmd_identifier_token32] = ACTIONS(1665), + [aux_sym_cmd_identifier_token33] = ACTIONS(1665), + [aux_sym_cmd_identifier_token34] = ACTIONS(1653), + [aux_sym_cmd_identifier_token35] = ACTIONS(1665), + [aux_sym_cmd_identifier_token36] = ACTIONS(1665), + [aux_sym_cmd_identifier_token37] = ACTIONS(1665), + [aux_sym_cmd_identifier_token38] = ACTIONS(1653), + [aux_sym_cmd_identifier_token39] = ACTIONS(1665), + [aux_sym_cmd_identifier_token40] = ACTIONS(1665), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_export_DASHenv] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym_module] = ACTIONS(1653), + [anon_sym_use] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1665), + [anon_sym_error] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_loop] = ACTIONS(1653), + [anon_sym_make] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_catch] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_source] = ACTIONS(1653), + [anon_sym_source_DASHenv] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_hide] = ACTIONS(1653), + [anon_sym_hide_DASHenv] = ACTIONS(1653), + [anon_sym_overlay] = ACTIONS(1653), + [anon_sym_as] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1653), + [aux_sym__val_number_token5] = ACTIONS(1653), + [aux_sym__val_number_token6] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), + }, + [724] = { + [sym_comment] = STATE(724), + [anon_sym_export] = ACTIONS(2382), + [anon_sym_alias] = ACTIONS(2382), + [anon_sym_let] = ACTIONS(2382), + [anon_sym_let_DASHenv] = ACTIONS(2382), + [anon_sym_mut] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [aux_sym_cmd_identifier_token1] = ACTIONS(2382), + [aux_sym_cmd_identifier_token2] = ACTIONS(2384), + [aux_sym_cmd_identifier_token3] = ACTIONS(2384), + [aux_sym_cmd_identifier_token4] = ACTIONS(2384), + [aux_sym_cmd_identifier_token5] = ACTIONS(2384), + [aux_sym_cmd_identifier_token6] = ACTIONS(2384), + [aux_sym_cmd_identifier_token7] = ACTIONS(2384), + [aux_sym_cmd_identifier_token8] = ACTIONS(2382), + [aux_sym_cmd_identifier_token9] = ACTIONS(2382), + [aux_sym_cmd_identifier_token10] = ACTIONS(2384), + [aux_sym_cmd_identifier_token11] = ACTIONS(2384), + [aux_sym_cmd_identifier_token12] = ACTIONS(2382), + [aux_sym_cmd_identifier_token13] = ACTIONS(2382), + [aux_sym_cmd_identifier_token14] = ACTIONS(2382), + [aux_sym_cmd_identifier_token15] = ACTIONS(2382), + [aux_sym_cmd_identifier_token16] = ACTIONS(2384), + [aux_sym_cmd_identifier_token17] = ACTIONS(2384), + [aux_sym_cmd_identifier_token18] = ACTIONS(2384), + [aux_sym_cmd_identifier_token19] = ACTIONS(2384), + [aux_sym_cmd_identifier_token20] = ACTIONS(2384), + [aux_sym_cmd_identifier_token21] = ACTIONS(2384), + [aux_sym_cmd_identifier_token22] = ACTIONS(2384), + [aux_sym_cmd_identifier_token23] = ACTIONS(2384), + [aux_sym_cmd_identifier_token24] = ACTIONS(2384), + [aux_sym_cmd_identifier_token25] = ACTIONS(2384), + [aux_sym_cmd_identifier_token26] = ACTIONS(2384), + [aux_sym_cmd_identifier_token27] = ACTIONS(2384), + [aux_sym_cmd_identifier_token28] = ACTIONS(2384), + [aux_sym_cmd_identifier_token29] = ACTIONS(2384), + [aux_sym_cmd_identifier_token30] = ACTIONS(2384), + [aux_sym_cmd_identifier_token31] = ACTIONS(2384), + [aux_sym_cmd_identifier_token32] = ACTIONS(2384), + [aux_sym_cmd_identifier_token33] = ACTIONS(2384), + [aux_sym_cmd_identifier_token34] = ACTIONS(2382), + [aux_sym_cmd_identifier_token35] = ACTIONS(2384), + [aux_sym_cmd_identifier_token36] = ACTIONS(2384), + [aux_sym_cmd_identifier_token37] = ACTIONS(2384), + [aux_sym_cmd_identifier_token38] = ACTIONS(2382), + [aux_sym_cmd_identifier_token39] = ACTIONS(2384), + [aux_sym_cmd_identifier_token40] = ACTIONS(2384), + [anon_sym_def] = ACTIONS(2382), + [anon_sym_export_DASHenv] = ACTIONS(2382), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym_module] = ACTIONS(2382), + [anon_sym_use] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_DOLLAR] = ACTIONS(2384), + [anon_sym_error] = ACTIONS(2382), + [anon_sym_DASH2] = ACTIONS(2382), + [anon_sym_break] = ACTIONS(2382), + [anon_sym_continue] = ACTIONS(2382), + [anon_sym_for] = ACTIONS(2382), + [anon_sym_in2] = ACTIONS(2382), + [anon_sym_loop] = ACTIONS(2382), + [anon_sym_make] = ACTIONS(2382), + [anon_sym_while] = ACTIONS(2382), + [anon_sym_do] = ACTIONS(2382), + [anon_sym_if] = ACTIONS(2382), + [anon_sym_else] = ACTIONS(2382), + [anon_sym_match] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2382), + [anon_sym_catch] = ACTIONS(2382), + [anon_sym_return] = ACTIONS(2382), + [anon_sym_source] = ACTIONS(2382), + [anon_sym_source_DASHenv] = ACTIONS(2382), + [anon_sym_register] = ACTIONS(2382), + [anon_sym_hide] = ACTIONS(2382), + [anon_sym_hide_DASHenv] = ACTIONS(2382), + [anon_sym_overlay] = ACTIONS(2382), + [anon_sym_as] = ACTIONS(2382), + [anon_sym_PLUS2] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), + [aux_sym__val_number_decimal_token1] = ACTIONS(2382), + [aux_sym__val_number_decimal_token2] = ACTIONS(2384), + [aux_sym__val_number_decimal_token3] = ACTIONS(2384), + [aux_sym__val_number_decimal_token4] = ACTIONS(2384), + [aux_sym__val_number_token1] = ACTIONS(2384), + [aux_sym__val_number_token2] = ACTIONS(2384), + [aux_sym__val_number_token3] = ACTIONS(2384), + [aux_sym__val_number_token4] = ACTIONS(2382), + [aux_sym__val_number_token5] = ACTIONS(2382), + [aux_sym__val_number_token6] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2384), + [sym__str_single_quotes] = ACTIONS(2384), + [sym__str_back_ticks] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2384), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2384), + }, + [725] = { + [sym_comment] = STATE(725), [anon_sym_export] = ACTIONS(2334), [anon_sym_alias] = ACTIONS(2334), [anon_sym_let] = ACTIONS(2334), @@ -158504,7 +157289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2334), [anon_sym_module] = ACTIONS(2334), [anon_sym_use] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2336), [anon_sym_DOLLAR] = ACTIONS(2336), [anon_sym_error] = ACTIONS(2334), [anon_sym_DASH2] = ACTIONS(2334), @@ -158530,7 +157315,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(2334), [anon_sym_overlay] = ACTIONS(2334), [anon_sym_as] = ACTIONS(2334), - [anon_sym_LPAREN2] = ACTIONS(2336), [anon_sym_PLUS2] = ACTIONS(2334), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), @@ -158551,1502 +157335,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2336), }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2064), - [aux_sym_cmd_identifier_token3] = ACTIONS(2064), - [aux_sym_cmd_identifier_token4] = ACTIONS(2064), - [aux_sym_cmd_identifier_token5] = ACTIONS(2064), - [aux_sym_cmd_identifier_token6] = ACTIONS(2064), - [aux_sym_cmd_identifier_token7] = ACTIONS(2064), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2064), - [aux_sym_cmd_identifier_token11] = ACTIONS(2064), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2064), - [aux_sym_cmd_identifier_token17] = ACTIONS(2064), - [aux_sym_cmd_identifier_token18] = ACTIONS(2064), - [aux_sym_cmd_identifier_token19] = ACTIONS(2064), - [aux_sym_cmd_identifier_token20] = ACTIONS(2064), - [aux_sym_cmd_identifier_token21] = ACTIONS(2064), - [aux_sym_cmd_identifier_token22] = ACTIONS(2064), - [aux_sym_cmd_identifier_token23] = ACTIONS(2064), - [aux_sym_cmd_identifier_token24] = ACTIONS(2064), - [aux_sym_cmd_identifier_token25] = ACTIONS(2064), - [aux_sym_cmd_identifier_token26] = ACTIONS(2064), - [aux_sym_cmd_identifier_token27] = ACTIONS(2064), - [aux_sym_cmd_identifier_token28] = ACTIONS(2064), - [aux_sym_cmd_identifier_token29] = ACTIONS(2064), - [aux_sym_cmd_identifier_token30] = ACTIONS(2064), - [aux_sym_cmd_identifier_token31] = ACTIONS(2064), - [aux_sym_cmd_identifier_token32] = ACTIONS(2064), - [aux_sym_cmd_identifier_token33] = ACTIONS(2064), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2064), - [aux_sym_cmd_identifier_token36] = ACTIONS(2064), - [aux_sym_cmd_identifier_token37] = ACTIONS(2064), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2064), - [aux_sym_cmd_identifier_token40] = ACTIONS(2064), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2064), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2064), - [aux_sym__val_number_decimal_token3] = ACTIONS(2064), - [aux_sym__val_number_decimal_token4] = ACTIONS(2064), - [aux_sym__val_number_token1] = ACTIONS(2064), - [aux_sym__val_number_token2] = ACTIONS(2064), - [aux_sym__val_number_token3] = ACTIONS(2064), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym__str_single_quotes] = ACTIONS(2064), - [sym__str_back_ticks] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2064), - [sym__entry_separator] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2070), - }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_alias] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_let_DASHenv] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [aux_sym_cmd_identifier_token1] = ACTIONS(2045), - [aux_sym_cmd_identifier_token2] = ACTIONS(2045), - [aux_sym_cmd_identifier_token3] = ACTIONS(2045), - [aux_sym_cmd_identifier_token4] = ACTIONS(2045), - [aux_sym_cmd_identifier_token5] = ACTIONS(2045), - [aux_sym_cmd_identifier_token6] = ACTIONS(2045), - [aux_sym_cmd_identifier_token7] = ACTIONS(2045), - [aux_sym_cmd_identifier_token8] = ACTIONS(2045), - [aux_sym_cmd_identifier_token9] = ACTIONS(2045), - [aux_sym_cmd_identifier_token10] = ACTIONS(2045), - [aux_sym_cmd_identifier_token11] = ACTIONS(2045), - [aux_sym_cmd_identifier_token12] = ACTIONS(2045), - [aux_sym_cmd_identifier_token13] = ACTIONS(2045), - [aux_sym_cmd_identifier_token14] = ACTIONS(2045), - [aux_sym_cmd_identifier_token15] = ACTIONS(2045), - [aux_sym_cmd_identifier_token16] = ACTIONS(2045), - [aux_sym_cmd_identifier_token17] = ACTIONS(2045), - [aux_sym_cmd_identifier_token18] = ACTIONS(2045), - [aux_sym_cmd_identifier_token19] = ACTIONS(2045), - [aux_sym_cmd_identifier_token20] = ACTIONS(2045), - [aux_sym_cmd_identifier_token21] = ACTIONS(2045), - [aux_sym_cmd_identifier_token22] = ACTIONS(2045), - [aux_sym_cmd_identifier_token23] = ACTIONS(2045), - [aux_sym_cmd_identifier_token24] = ACTIONS(2045), - [aux_sym_cmd_identifier_token25] = ACTIONS(2045), - [aux_sym_cmd_identifier_token26] = ACTIONS(2045), - [aux_sym_cmd_identifier_token27] = ACTIONS(2045), - [aux_sym_cmd_identifier_token28] = ACTIONS(2045), - [aux_sym_cmd_identifier_token29] = ACTIONS(2045), - [aux_sym_cmd_identifier_token30] = ACTIONS(2045), - [aux_sym_cmd_identifier_token31] = ACTIONS(2045), - [aux_sym_cmd_identifier_token32] = ACTIONS(2045), - [aux_sym_cmd_identifier_token33] = ACTIONS(2045), - [aux_sym_cmd_identifier_token34] = ACTIONS(2045), - [aux_sym_cmd_identifier_token35] = ACTIONS(2045), - [aux_sym_cmd_identifier_token36] = ACTIONS(2045), - [aux_sym_cmd_identifier_token37] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2045), - [anon_sym_export_DASHenv] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_module] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_error] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_in2] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_make] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_source] = ACTIONS(2045), - [anon_sym_source_DASHenv] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_hide] = ACTIONS(2045), - [anon_sym_hide_DASHenv] = ACTIONS(2045), - [anon_sym_overlay] = ACTIONS(2045), - [anon_sym_as] = ACTIONS(2045), - [anon_sym_PLUS2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), - [sym__entry_separator] = ACTIONS(2047), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), - }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_alias] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_let_DASHenv] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [aux_sym_cmd_identifier_token1] = ACTIONS(2197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2197), - [aux_sym_cmd_identifier_token3] = ACTIONS(2197), - [aux_sym_cmd_identifier_token4] = ACTIONS(2197), - [aux_sym_cmd_identifier_token5] = ACTIONS(2197), - [aux_sym_cmd_identifier_token6] = ACTIONS(2197), - [aux_sym_cmd_identifier_token7] = ACTIONS(2197), - [aux_sym_cmd_identifier_token8] = ACTIONS(2197), - [aux_sym_cmd_identifier_token9] = ACTIONS(2197), - [aux_sym_cmd_identifier_token10] = ACTIONS(2197), - [aux_sym_cmd_identifier_token11] = ACTIONS(2197), - [aux_sym_cmd_identifier_token12] = ACTIONS(2197), - [aux_sym_cmd_identifier_token13] = ACTIONS(2197), - [aux_sym_cmd_identifier_token14] = ACTIONS(2197), - [aux_sym_cmd_identifier_token15] = ACTIONS(2197), - [aux_sym_cmd_identifier_token16] = ACTIONS(2197), - [aux_sym_cmd_identifier_token17] = ACTIONS(2197), - [aux_sym_cmd_identifier_token18] = ACTIONS(2197), - [aux_sym_cmd_identifier_token19] = ACTIONS(2197), - [aux_sym_cmd_identifier_token20] = ACTIONS(2197), - [aux_sym_cmd_identifier_token21] = ACTIONS(2197), - [aux_sym_cmd_identifier_token22] = ACTIONS(2197), - [aux_sym_cmd_identifier_token23] = ACTIONS(2197), - [aux_sym_cmd_identifier_token24] = ACTIONS(2197), - [aux_sym_cmd_identifier_token25] = ACTIONS(2197), - [aux_sym_cmd_identifier_token26] = ACTIONS(2197), - [aux_sym_cmd_identifier_token27] = ACTIONS(2197), - [aux_sym_cmd_identifier_token28] = ACTIONS(2197), - [aux_sym_cmd_identifier_token29] = ACTIONS(2197), - [aux_sym_cmd_identifier_token30] = ACTIONS(2197), - [aux_sym_cmd_identifier_token31] = ACTIONS(2197), - [aux_sym_cmd_identifier_token32] = ACTIONS(2197), - [aux_sym_cmd_identifier_token33] = ACTIONS(2197), - [aux_sym_cmd_identifier_token34] = ACTIONS(2197), - [aux_sym_cmd_identifier_token35] = ACTIONS(2197), - [aux_sym_cmd_identifier_token36] = ACTIONS(2197), - [aux_sym_cmd_identifier_token37] = ACTIONS(2197), - [aux_sym_cmd_identifier_token38] = ACTIONS(2197), - [aux_sym_cmd_identifier_token39] = ACTIONS(2197), - [aux_sym_cmd_identifier_token40] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_export_DASHenv] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2197), - [anon_sym_error] = ACTIONS(2197), - [anon_sym_DASH2] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_in2] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_make] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_source] = ACTIONS(2197), - [anon_sym_source_DASHenv] = ACTIONS(2197), - [anon_sym_register] = ACTIONS(2197), - [anon_sym_hide] = ACTIONS(2197), - [anon_sym_hide_DASHenv] = ACTIONS(2197), - [anon_sym_overlay] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_PLUS2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2197), - [aux_sym__val_number_decimal_token1] = ACTIONS(2197), - [aux_sym__val_number_decimal_token2] = ACTIONS(2197), - [aux_sym__val_number_decimal_token3] = ACTIONS(2197), - [aux_sym__val_number_decimal_token4] = ACTIONS(2197), - [aux_sym__val_number_token1] = ACTIONS(2197), - [aux_sym__val_number_token2] = ACTIONS(2197), - [aux_sym__val_number_token3] = ACTIONS(2197), - [aux_sym__val_number_token4] = ACTIONS(2197), - [aux_sym__val_number_token5] = ACTIONS(2197), - [aux_sym__val_number_token6] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [sym__str_single_quotes] = ACTIONS(2197), - [sym__str_back_ticks] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2197), - [sym__entry_separator] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2199), + [726] = { + [sym_comment] = STATE(726), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_alias] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_let_DASHenv] = ACTIONS(2170), + [anon_sym_mut] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [aux_sym_cmd_identifier_token1] = ACTIONS(2170), + [aux_sym_cmd_identifier_token2] = ACTIONS(2172), + [aux_sym_cmd_identifier_token3] = ACTIONS(2172), + [aux_sym_cmd_identifier_token4] = ACTIONS(2172), + [aux_sym_cmd_identifier_token5] = ACTIONS(2172), + [aux_sym_cmd_identifier_token6] = ACTIONS(2172), + [aux_sym_cmd_identifier_token7] = ACTIONS(2172), + [aux_sym_cmd_identifier_token8] = ACTIONS(2170), + [aux_sym_cmd_identifier_token9] = ACTIONS(2170), + [aux_sym_cmd_identifier_token10] = ACTIONS(2172), + [aux_sym_cmd_identifier_token11] = ACTIONS(2172), + [aux_sym_cmd_identifier_token12] = ACTIONS(2170), + [aux_sym_cmd_identifier_token13] = ACTIONS(2170), + [aux_sym_cmd_identifier_token14] = ACTIONS(2170), + [aux_sym_cmd_identifier_token15] = ACTIONS(2170), + [aux_sym_cmd_identifier_token16] = ACTIONS(2172), + [aux_sym_cmd_identifier_token17] = ACTIONS(2172), + [aux_sym_cmd_identifier_token18] = ACTIONS(2172), + [aux_sym_cmd_identifier_token19] = ACTIONS(2172), + [aux_sym_cmd_identifier_token20] = ACTIONS(2172), + [aux_sym_cmd_identifier_token21] = ACTIONS(2172), + [aux_sym_cmd_identifier_token22] = ACTIONS(2172), + [aux_sym_cmd_identifier_token23] = ACTIONS(2172), + [aux_sym_cmd_identifier_token24] = ACTIONS(2172), + [aux_sym_cmd_identifier_token25] = ACTIONS(2172), + [aux_sym_cmd_identifier_token26] = ACTIONS(2172), + [aux_sym_cmd_identifier_token27] = ACTIONS(2172), + [aux_sym_cmd_identifier_token28] = ACTIONS(2172), + [aux_sym_cmd_identifier_token29] = ACTIONS(2172), + [aux_sym_cmd_identifier_token30] = ACTIONS(2172), + [aux_sym_cmd_identifier_token31] = ACTIONS(2172), + [aux_sym_cmd_identifier_token32] = ACTIONS(2172), + [aux_sym_cmd_identifier_token33] = ACTIONS(2172), + [aux_sym_cmd_identifier_token34] = ACTIONS(2170), + [aux_sym_cmd_identifier_token35] = ACTIONS(2172), + [aux_sym_cmd_identifier_token36] = ACTIONS(2172), + [aux_sym_cmd_identifier_token37] = ACTIONS(2172), + [aux_sym_cmd_identifier_token38] = ACTIONS(2170), + [aux_sym_cmd_identifier_token39] = ACTIONS(2172), + [aux_sym_cmd_identifier_token40] = ACTIONS(2172), + [anon_sym_def] = ACTIONS(2170), + [anon_sym_export_DASHenv] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2172), + [anon_sym_error] = ACTIONS(2170), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_in2] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_make] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_source] = ACTIONS(2170), + [anon_sym_source_DASHenv] = ACTIONS(2170), + [anon_sym_register] = ACTIONS(2170), + [anon_sym_hide] = ACTIONS(2170), + [anon_sym_hide_DASHenv] = ACTIONS(2170), + [anon_sym_overlay] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_PLUS2] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2170), + [aux_sym__val_number_token5] = ACTIONS(2170), + [aux_sym__val_number_token6] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2172), }, - [687] = { - [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_alias] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_DASHenv] = ACTIONS(2520), - [anon_sym_mut] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [aux_sym_cmd_identifier_token1] = ACTIONS(2520), - [aux_sym_cmd_identifier_token2] = ACTIONS(2520), - [aux_sym_cmd_identifier_token3] = ACTIONS(2520), - [aux_sym_cmd_identifier_token4] = ACTIONS(2520), - [aux_sym_cmd_identifier_token5] = ACTIONS(2520), - [aux_sym_cmd_identifier_token6] = ACTIONS(2520), - [aux_sym_cmd_identifier_token7] = ACTIONS(2520), - [aux_sym_cmd_identifier_token8] = ACTIONS(2520), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2520), - [aux_sym_cmd_identifier_token11] = ACTIONS(2520), - [aux_sym_cmd_identifier_token12] = ACTIONS(2520), - [aux_sym_cmd_identifier_token13] = ACTIONS(2520), - [aux_sym_cmd_identifier_token14] = ACTIONS(2520), - [aux_sym_cmd_identifier_token15] = ACTIONS(2520), - [aux_sym_cmd_identifier_token16] = ACTIONS(2520), - [aux_sym_cmd_identifier_token17] = ACTIONS(2520), - [aux_sym_cmd_identifier_token18] = ACTIONS(2520), - [aux_sym_cmd_identifier_token19] = ACTIONS(2520), - [aux_sym_cmd_identifier_token20] = ACTIONS(2520), - [aux_sym_cmd_identifier_token21] = ACTIONS(2520), - [aux_sym_cmd_identifier_token22] = ACTIONS(2520), - [aux_sym_cmd_identifier_token23] = ACTIONS(2520), - [aux_sym_cmd_identifier_token24] = ACTIONS(2520), - [aux_sym_cmd_identifier_token25] = ACTIONS(2520), - [aux_sym_cmd_identifier_token26] = ACTIONS(2520), - [aux_sym_cmd_identifier_token27] = ACTIONS(2520), - [aux_sym_cmd_identifier_token28] = ACTIONS(2520), - [aux_sym_cmd_identifier_token29] = ACTIONS(2520), - [aux_sym_cmd_identifier_token30] = ACTIONS(2520), - [aux_sym_cmd_identifier_token31] = ACTIONS(2520), - [aux_sym_cmd_identifier_token32] = ACTIONS(2520), - [aux_sym_cmd_identifier_token33] = ACTIONS(2520), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2520), - [aux_sym_cmd_identifier_token36] = ACTIONS(2520), - [aux_sym_cmd_identifier_token37] = ACTIONS(2520), - [aux_sym_cmd_identifier_token38] = ACTIONS(2520), - [aux_sym_cmd_identifier_token39] = ACTIONS(2520), - [aux_sym_cmd_identifier_token40] = ACTIONS(2520), - [anon_sym_def] = ACTIONS(2520), - [anon_sym_export_DASHenv] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_DOLLAR] = ACTIONS(2520), - [anon_sym_error] = ACTIONS(2520), - [anon_sym_DASH2] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_in2] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_make] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_catch] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_source] = ACTIONS(2520), - [anon_sym_source_DASHenv] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_hide] = ACTIONS(2520), - [anon_sym_hide_DASHenv] = ACTIONS(2520), - [anon_sym_overlay] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_PLUS2] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2520), - [aux_sym__val_number_decimal_token3] = ACTIONS(2520), - [aux_sym__val_number_decimal_token4] = ACTIONS(2520), - [aux_sym__val_number_token1] = ACTIONS(2520), - [aux_sym__val_number_token2] = ACTIONS(2520), - [aux_sym__val_number_token3] = ACTIONS(2520), - [aux_sym__val_number_token4] = ACTIONS(2520), - [aux_sym__val_number_token5] = ACTIONS(2520), - [aux_sym__val_number_token6] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym__str_single_quotes] = ACTIONS(2520), - [sym__str_back_ticks] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), - [sym__entry_separator] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2522), + [727] = { + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2340), + [aux_sym_cmd_identifier_token3] = ACTIONS(2340), + [aux_sym_cmd_identifier_token4] = ACTIONS(2340), + [aux_sym_cmd_identifier_token5] = ACTIONS(2340), + [aux_sym_cmd_identifier_token6] = ACTIONS(2340), + [aux_sym_cmd_identifier_token7] = ACTIONS(2340), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2340), + [aux_sym_cmd_identifier_token17] = ACTIONS(2340), + [aux_sym_cmd_identifier_token18] = ACTIONS(2340), + [aux_sym_cmd_identifier_token19] = ACTIONS(2340), + [aux_sym_cmd_identifier_token20] = ACTIONS(2340), + [aux_sym_cmd_identifier_token21] = ACTIONS(2340), + [aux_sym_cmd_identifier_token22] = ACTIONS(2340), + [aux_sym_cmd_identifier_token23] = ACTIONS(2340), + [aux_sym_cmd_identifier_token24] = ACTIONS(2340), + [aux_sym_cmd_identifier_token25] = ACTIONS(2340), + [aux_sym_cmd_identifier_token26] = ACTIONS(2340), + [aux_sym_cmd_identifier_token27] = ACTIONS(2340), + [aux_sym_cmd_identifier_token28] = ACTIONS(2340), + [aux_sym_cmd_identifier_token29] = ACTIONS(2340), + [aux_sym_cmd_identifier_token30] = ACTIONS(2340), + [aux_sym_cmd_identifier_token31] = ACTIONS(2340), + [aux_sym_cmd_identifier_token32] = ACTIONS(2340), + [aux_sym_cmd_identifier_token33] = ACTIONS(2340), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [aux_sym_cmd_identifier_token37] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2340), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2340), + [aux_sym__val_number_decimal_token3] = ACTIONS(2340), + [aux_sym__val_number_decimal_token4] = ACTIONS(2340), + [aux_sym__val_number_token1] = ACTIONS(2340), + [aux_sym__val_number_token2] = ACTIONS(2340), + [aux_sym__val_number_token3] = ACTIONS(2340), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2340), }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_alias] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_let_DASHenv] = ACTIONS(2300), - [anon_sym_mut] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [aux_sym_cmd_identifier_token1] = ACTIONS(2300), - [aux_sym_cmd_identifier_token2] = ACTIONS(2302), - [aux_sym_cmd_identifier_token3] = ACTIONS(2302), - [aux_sym_cmd_identifier_token4] = ACTIONS(2302), - [aux_sym_cmd_identifier_token5] = ACTIONS(2302), - [aux_sym_cmd_identifier_token6] = ACTIONS(2302), - [aux_sym_cmd_identifier_token7] = ACTIONS(2302), - [aux_sym_cmd_identifier_token8] = ACTIONS(2300), - [aux_sym_cmd_identifier_token9] = ACTIONS(2300), - [aux_sym_cmd_identifier_token10] = ACTIONS(2302), - [aux_sym_cmd_identifier_token11] = ACTIONS(2302), - [aux_sym_cmd_identifier_token12] = ACTIONS(2300), - [aux_sym_cmd_identifier_token13] = ACTIONS(2300), - [aux_sym_cmd_identifier_token14] = ACTIONS(2300), - [aux_sym_cmd_identifier_token15] = ACTIONS(2300), - [aux_sym_cmd_identifier_token16] = ACTIONS(2302), - [aux_sym_cmd_identifier_token17] = ACTIONS(2302), - [aux_sym_cmd_identifier_token18] = ACTIONS(2302), - [aux_sym_cmd_identifier_token19] = ACTIONS(2302), - [aux_sym_cmd_identifier_token20] = ACTIONS(2302), - [aux_sym_cmd_identifier_token21] = ACTIONS(2302), - [aux_sym_cmd_identifier_token22] = ACTIONS(2302), - [aux_sym_cmd_identifier_token23] = ACTIONS(2302), - [aux_sym_cmd_identifier_token24] = ACTIONS(2302), - [aux_sym_cmd_identifier_token25] = ACTIONS(2302), - [aux_sym_cmd_identifier_token26] = ACTIONS(2302), - [aux_sym_cmd_identifier_token27] = ACTIONS(2302), - [aux_sym_cmd_identifier_token28] = ACTIONS(2302), - [aux_sym_cmd_identifier_token29] = ACTIONS(2302), - [aux_sym_cmd_identifier_token30] = ACTIONS(2302), - [aux_sym_cmd_identifier_token31] = ACTIONS(2302), - [aux_sym_cmd_identifier_token32] = ACTIONS(2302), - [aux_sym_cmd_identifier_token33] = ACTIONS(2302), - [aux_sym_cmd_identifier_token34] = ACTIONS(2300), - [aux_sym_cmd_identifier_token35] = ACTIONS(2302), - [aux_sym_cmd_identifier_token36] = ACTIONS(2302), - [aux_sym_cmd_identifier_token37] = ACTIONS(2302), - [aux_sym_cmd_identifier_token38] = ACTIONS(2300), - [aux_sym_cmd_identifier_token39] = ACTIONS(2302), - [aux_sym_cmd_identifier_token40] = ACTIONS(2302), - [anon_sym_def] = ACTIONS(2300), - [anon_sym_export_DASHenv] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2302), - [anon_sym_error] = ACTIONS(2300), - [anon_sym_DASH2] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_in2] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_make] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_source] = ACTIONS(2300), - [anon_sym_source_DASHenv] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_hide] = ACTIONS(2300), - [anon_sym_hide_DASHenv] = ACTIONS(2300), - [anon_sym_overlay] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_LPAREN2] = ACTIONS(2302), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2302), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), - [aux_sym__val_number_decimal_token1] = ACTIONS(2300), - [aux_sym__val_number_decimal_token2] = ACTIONS(2302), - [aux_sym__val_number_decimal_token3] = ACTIONS(2302), - [aux_sym__val_number_decimal_token4] = ACTIONS(2302), - [aux_sym__val_number_token1] = ACTIONS(2302), - [aux_sym__val_number_token2] = ACTIONS(2302), - [aux_sym__val_number_token3] = ACTIONS(2302), - [aux_sym__val_number_token4] = ACTIONS(2300), - [aux_sym__val_number_token5] = ACTIONS(2300), - [aux_sym__val_number_token6] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2302), - [sym__str_single_quotes] = ACTIONS(2302), - [sym__str_back_ticks] = ACTIONS(2302), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2302), + [728] = { + [sym_comment] = STATE(728), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2340), + [aux_sym_cmd_identifier_token3] = ACTIONS(2340), + [aux_sym_cmd_identifier_token4] = ACTIONS(2340), + [aux_sym_cmd_identifier_token5] = ACTIONS(2340), + [aux_sym_cmd_identifier_token6] = ACTIONS(2340), + [aux_sym_cmd_identifier_token7] = ACTIONS(2340), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2340), + [aux_sym_cmd_identifier_token17] = ACTIONS(2340), + [aux_sym_cmd_identifier_token18] = ACTIONS(2340), + [aux_sym_cmd_identifier_token19] = ACTIONS(2340), + [aux_sym_cmd_identifier_token20] = ACTIONS(2340), + [aux_sym_cmd_identifier_token21] = ACTIONS(2340), + [aux_sym_cmd_identifier_token22] = ACTIONS(2340), + [aux_sym_cmd_identifier_token23] = ACTIONS(2340), + [aux_sym_cmd_identifier_token24] = ACTIONS(2340), + [aux_sym_cmd_identifier_token25] = ACTIONS(2340), + [aux_sym_cmd_identifier_token26] = ACTIONS(2340), + [aux_sym_cmd_identifier_token27] = ACTIONS(2340), + [aux_sym_cmd_identifier_token28] = ACTIONS(2340), + [aux_sym_cmd_identifier_token29] = ACTIONS(2340), + [aux_sym_cmd_identifier_token30] = ACTIONS(2340), + [aux_sym_cmd_identifier_token31] = ACTIONS(2340), + [aux_sym_cmd_identifier_token32] = ACTIONS(2340), + [aux_sym_cmd_identifier_token33] = ACTIONS(2340), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [aux_sym_cmd_identifier_token37] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2340), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2340), + [aux_sym__val_number_decimal_token3] = ACTIONS(2340), + [aux_sym__val_number_decimal_token4] = ACTIONS(2340), + [aux_sym__val_number_token1] = ACTIONS(2340), + [aux_sym__val_number_token2] = ACTIONS(2340), + [aux_sym__val_number_token3] = ACTIONS(2340), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2340), }, - [689] = { - [sym_comment] = STATE(689), - [anon_sym_export] = ACTIONS(2524), - [anon_sym_alias] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_let_DASHenv] = ACTIONS(2524), - [anon_sym_mut] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [aux_sym_cmd_identifier_token1] = ACTIONS(2524), - [aux_sym_cmd_identifier_token2] = ACTIONS(2524), - [aux_sym_cmd_identifier_token3] = ACTIONS(2524), - [aux_sym_cmd_identifier_token4] = ACTIONS(2524), - [aux_sym_cmd_identifier_token5] = ACTIONS(2524), - [aux_sym_cmd_identifier_token6] = ACTIONS(2524), - [aux_sym_cmd_identifier_token7] = ACTIONS(2524), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2524), - [aux_sym_cmd_identifier_token10] = ACTIONS(2524), - [aux_sym_cmd_identifier_token11] = ACTIONS(2524), - [aux_sym_cmd_identifier_token12] = ACTIONS(2524), - [aux_sym_cmd_identifier_token13] = ACTIONS(2524), - [aux_sym_cmd_identifier_token14] = ACTIONS(2524), - [aux_sym_cmd_identifier_token15] = ACTIONS(2524), - [aux_sym_cmd_identifier_token16] = ACTIONS(2524), - [aux_sym_cmd_identifier_token17] = ACTIONS(2524), - [aux_sym_cmd_identifier_token18] = ACTIONS(2524), - [aux_sym_cmd_identifier_token19] = ACTIONS(2524), - [aux_sym_cmd_identifier_token20] = ACTIONS(2524), - [aux_sym_cmd_identifier_token21] = ACTIONS(2524), - [aux_sym_cmd_identifier_token22] = ACTIONS(2524), - [aux_sym_cmd_identifier_token23] = ACTIONS(2524), - [aux_sym_cmd_identifier_token24] = ACTIONS(2524), - [aux_sym_cmd_identifier_token25] = ACTIONS(2524), - [aux_sym_cmd_identifier_token26] = ACTIONS(2524), - [aux_sym_cmd_identifier_token27] = ACTIONS(2524), - [aux_sym_cmd_identifier_token28] = ACTIONS(2524), - [aux_sym_cmd_identifier_token29] = ACTIONS(2524), - [aux_sym_cmd_identifier_token30] = ACTIONS(2524), - [aux_sym_cmd_identifier_token31] = ACTIONS(2524), - [aux_sym_cmd_identifier_token32] = ACTIONS(2524), - [aux_sym_cmd_identifier_token33] = ACTIONS(2524), - [aux_sym_cmd_identifier_token34] = ACTIONS(2524), - [aux_sym_cmd_identifier_token35] = ACTIONS(2524), - [aux_sym_cmd_identifier_token36] = ACTIONS(2524), - [aux_sym_cmd_identifier_token37] = ACTIONS(2524), - [aux_sym_cmd_identifier_token38] = ACTIONS(2524), - [aux_sym_cmd_identifier_token39] = ACTIONS(2524), - [aux_sym_cmd_identifier_token40] = ACTIONS(2524), - [anon_sym_def] = ACTIONS(2524), - [anon_sym_export_DASHenv] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_DOLLAR] = ACTIONS(2524), - [anon_sym_error] = ACTIONS(2524), - [anon_sym_DASH2] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_in2] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_make] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_catch] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_source] = ACTIONS(2524), - [anon_sym_source_DASHenv] = ACTIONS(2524), - [anon_sym_register] = ACTIONS(2524), - [anon_sym_hide] = ACTIONS(2524), - [anon_sym_hide_DASHenv] = ACTIONS(2524), - [anon_sym_overlay] = ACTIONS(2524), - [anon_sym_as] = ACTIONS(2524), - [anon_sym_PLUS2] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2524), - [aux_sym__val_number_decimal_token1] = ACTIONS(2524), - [aux_sym__val_number_decimal_token2] = ACTIONS(2524), - [aux_sym__val_number_decimal_token3] = ACTIONS(2524), - [aux_sym__val_number_decimal_token4] = ACTIONS(2524), - [aux_sym__val_number_token1] = ACTIONS(2524), - [aux_sym__val_number_token2] = ACTIONS(2524), - [aux_sym__val_number_token3] = ACTIONS(2524), - [aux_sym__val_number_token4] = ACTIONS(2524), - [aux_sym__val_number_token5] = ACTIONS(2524), - [aux_sym__val_number_token6] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym__str_single_quotes] = ACTIONS(2524), - [sym__str_back_ticks] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2524), - [sym__entry_separator] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2526), + [729] = { + [sym_comment] = STATE(729), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2483), + [aux_sym_cmd_identifier_token3] = ACTIONS(2483), + [aux_sym_cmd_identifier_token4] = ACTIONS(2483), + [aux_sym_cmd_identifier_token5] = ACTIONS(2483), + [aux_sym_cmd_identifier_token6] = ACTIONS(2483), + [aux_sym_cmd_identifier_token7] = ACTIONS(2483), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2483), + [aux_sym_cmd_identifier_token11] = ACTIONS(2483), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2483), + [aux_sym_cmd_identifier_token17] = ACTIONS(2483), + [aux_sym_cmd_identifier_token18] = ACTIONS(2483), + [aux_sym_cmd_identifier_token19] = ACTIONS(2483), + [aux_sym_cmd_identifier_token20] = ACTIONS(2483), + [aux_sym_cmd_identifier_token21] = ACTIONS(2483), + [aux_sym_cmd_identifier_token22] = ACTIONS(2483), + [aux_sym_cmd_identifier_token23] = ACTIONS(2483), + [aux_sym_cmd_identifier_token24] = ACTIONS(2483), + [aux_sym_cmd_identifier_token25] = ACTIONS(2483), + [aux_sym_cmd_identifier_token26] = ACTIONS(2483), + [aux_sym_cmd_identifier_token27] = ACTIONS(2483), + [aux_sym_cmd_identifier_token28] = ACTIONS(2483), + [aux_sym_cmd_identifier_token29] = ACTIONS(2483), + [aux_sym_cmd_identifier_token30] = ACTIONS(2483), + [aux_sym_cmd_identifier_token31] = ACTIONS(2483), + [aux_sym_cmd_identifier_token32] = ACTIONS(2483), + [aux_sym_cmd_identifier_token33] = ACTIONS(2483), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2483), + [aux_sym_cmd_identifier_token36] = ACTIONS(2483), + [aux_sym_cmd_identifier_token37] = ACTIONS(2483), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2483), + [aux_sym_cmd_identifier_token40] = ACTIONS(2483), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2483), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in2] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2483), + [aux_sym__val_number_decimal_token4] = ACTIONS(2483), + [aux_sym__val_number_token1] = ACTIONS(2483), + [aux_sym__val_number_token2] = ACTIONS(2483), + [aux_sym__val_number_token3] = ACTIONS(2483), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2483), + [sym__str_single_quotes] = ACTIONS(2483), + [sym__str_back_ticks] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2483), }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_alias] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_DASHenv] = ACTIONS(2528), - [anon_sym_mut] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [aux_sym_cmd_identifier_token1] = ACTIONS(2528), - [aux_sym_cmd_identifier_token2] = ACTIONS(2528), - [aux_sym_cmd_identifier_token3] = ACTIONS(2528), - [aux_sym_cmd_identifier_token4] = ACTIONS(2528), - [aux_sym_cmd_identifier_token5] = ACTIONS(2528), - [aux_sym_cmd_identifier_token6] = ACTIONS(2528), - [aux_sym_cmd_identifier_token7] = ACTIONS(2528), - [aux_sym_cmd_identifier_token8] = ACTIONS(2528), - [aux_sym_cmd_identifier_token9] = ACTIONS(2528), - [aux_sym_cmd_identifier_token10] = ACTIONS(2528), - [aux_sym_cmd_identifier_token11] = ACTIONS(2528), - [aux_sym_cmd_identifier_token12] = ACTIONS(2528), - [aux_sym_cmd_identifier_token13] = ACTIONS(2528), - [aux_sym_cmd_identifier_token14] = ACTIONS(2528), - [aux_sym_cmd_identifier_token15] = ACTIONS(2528), - [aux_sym_cmd_identifier_token16] = ACTIONS(2528), - [aux_sym_cmd_identifier_token17] = ACTIONS(2528), - [aux_sym_cmd_identifier_token18] = ACTIONS(2528), - [aux_sym_cmd_identifier_token19] = ACTIONS(2528), - [aux_sym_cmd_identifier_token20] = ACTIONS(2528), - [aux_sym_cmd_identifier_token21] = ACTIONS(2528), - [aux_sym_cmd_identifier_token22] = ACTIONS(2528), - [aux_sym_cmd_identifier_token23] = ACTIONS(2528), - [aux_sym_cmd_identifier_token24] = ACTIONS(2528), - [aux_sym_cmd_identifier_token25] = ACTIONS(2528), - [aux_sym_cmd_identifier_token26] = ACTIONS(2528), - [aux_sym_cmd_identifier_token27] = ACTIONS(2528), - [aux_sym_cmd_identifier_token28] = ACTIONS(2528), - [aux_sym_cmd_identifier_token29] = ACTIONS(2528), - [aux_sym_cmd_identifier_token30] = ACTIONS(2528), - [aux_sym_cmd_identifier_token31] = ACTIONS(2528), - [aux_sym_cmd_identifier_token32] = ACTIONS(2528), - [aux_sym_cmd_identifier_token33] = ACTIONS(2528), - [aux_sym_cmd_identifier_token34] = ACTIONS(2528), - [aux_sym_cmd_identifier_token35] = ACTIONS(2528), - [aux_sym_cmd_identifier_token36] = ACTIONS(2528), - [aux_sym_cmd_identifier_token37] = ACTIONS(2528), - [aux_sym_cmd_identifier_token38] = ACTIONS(2528), - [aux_sym_cmd_identifier_token39] = ACTIONS(2528), - [aux_sym_cmd_identifier_token40] = ACTIONS(2528), - [anon_sym_def] = ACTIONS(2528), - [anon_sym_export_DASHenv] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_DOLLAR] = ACTIONS(2528), - [anon_sym_error] = ACTIONS(2528), - [anon_sym_DASH2] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_in2] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_make] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_catch] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_source] = ACTIONS(2528), - [anon_sym_source_DASHenv] = ACTIONS(2528), - [anon_sym_register] = ACTIONS(2528), - [anon_sym_hide] = ACTIONS(2528), - [anon_sym_hide_DASHenv] = ACTIONS(2528), - [anon_sym_overlay] = ACTIONS(2528), - [anon_sym_as] = ACTIONS(2528), - [anon_sym_PLUS2] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2528), - [aux_sym__val_number_decimal_token1] = ACTIONS(2528), - [aux_sym__val_number_decimal_token2] = ACTIONS(2528), - [aux_sym__val_number_decimal_token3] = ACTIONS(2528), - [aux_sym__val_number_decimal_token4] = ACTIONS(2528), - [aux_sym__val_number_token1] = ACTIONS(2528), - [aux_sym__val_number_token2] = ACTIONS(2528), - [aux_sym__val_number_token3] = ACTIONS(2528), - [aux_sym__val_number_token4] = ACTIONS(2528), - [aux_sym__val_number_token5] = ACTIONS(2528), - [aux_sym__val_number_token6] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym__str_single_quotes] = ACTIONS(2528), - [sym__str_back_ticks] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2528), - [sym__entry_separator] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2530), - }, - [691] = { - [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_alias] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_let_DASHenv] = ACTIONS(1891), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1891), - [aux_sym_cmd_identifier_token3] = ACTIONS(1891), - [aux_sym_cmd_identifier_token4] = ACTIONS(1891), - [aux_sym_cmd_identifier_token5] = ACTIONS(1891), - [aux_sym_cmd_identifier_token6] = ACTIONS(1891), - [aux_sym_cmd_identifier_token7] = ACTIONS(1891), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1891), - [aux_sym_cmd_identifier_token11] = ACTIONS(1891), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1891), - [aux_sym_cmd_identifier_token17] = ACTIONS(1891), - [aux_sym_cmd_identifier_token18] = ACTIONS(1891), - [aux_sym_cmd_identifier_token19] = ACTIONS(1891), - [aux_sym_cmd_identifier_token20] = ACTIONS(1891), - [aux_sym_cmd_identifier_token21] = ACTIONS(1891), - [aux_sym_cmd_identifier_token22] = ACTIONS(1891), - [aux_sym_cmd_identifier_token23] = ACTIONS(1891), - [aux_sym_cmd_identifier_token24] = ACTIONS(1891), - [aux_sym_cmd_identifier_token25] = ACTIONS(1891), - [aux_sym_cmd_identifier_token26] = ACTIONS(1891), - [aux_sym_cmd_identifier_token27] = ACTIONS(1891), - [aux_sym_cmd_identifier_token28] = ACTIONS(1891), - [aux_sym_cmd_identifier_token29] = ACTIONS(1891), - [aux_sym_cmd_identifier_token30] = ACTIONS(1891), - [aux_sym_cmd_identifier_token31] = ACTIONS(1891), - [aux_sym_cmd_identifier_token32] = ACTIONS(1891), - [aux_sym_cmd_identifier_token33] = ACTIONS(1891), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1891), - [aux_sym_cmd_identifier_token36] = ACTIONS(1891), - [aux_sym_cmd_identifier_token37] = ACTIONS(1891), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1891), - [aux_sym_cmd_identifier_token40] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_export_DASHenv] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_source] = ACTIONS(1891), - [anon_sym_source_DASHenv] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_hide_DASHenv] = ACTIONS(1891), - [anon_sym_overlay] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1891), - [aux_sym__val_number_decimal_token3] = ACTIONS(1891), - [aux_sym__val_number_decimal_token4] = ACTIONS(1891), - [aux_sym__val_number_token1] = ACTIONS(1891), - [aux_sym__val_number_token2] = ACTIONS(1891), - [aux_sym__val_number_token3] = ACTIONS(1891), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [sym__str_single_quotes] = ACTIONS(1891), - [sym__str_back_ticks] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [692] = { - [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_alias] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_let_DASHenv] = ACTIONS(2082), - [anon_sym_mut] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [aux_sym_cmd_identifier_token1] = ACTIONS(2082), - [aux_sym_cmd_identifier_token2] = ACTIONS(2082), - [aux_sym_cmd_identifier_token3] = ACTIONS(2082), - [aux_sym_cmd_identifier_token4] = ACTIONS(2082), - [aux_sym_cmd_identifier_token5] = ACTIONS(2082), - [aux_sym_cmd_identifier_token6] = ACTIONS(2082), - [aux_sym_cmd_identifier_token7] = ACTIONS(2082), - [aux_sym_cmd_identifier_token8] = ACTIONS(2082), - [aux_sym_cmd_identifier_token9] = ACTIONS(2082), - [aux_sym_cmd_identifier_token10] = ACTIONS(2082), - [aux_sym_cmd_identifier_token11] = ACTIONS(2082), - [aux_sym_cmd_identifier_token12] = ACTIONS(2082), - [aux_sym_cmd_identifier_token13] = ACTIONS(2082), - [aux_sym_cmd_identifier_token14] = ACTIONS(2082), - [aux_sym_cmd_identifier_token15] = ACTIONS(2082), - [aux_sym_cmd_identifier_token16] = ACTIONS(2082), - [aux_sym_cmd_identifier_token17] = ACTIONS(2082), - [aux_sym_cmd_identifier_token18] = ACTIONS(2082), - [aux_sym_cmd_identifier_token19] = ACTIONS(2082), - [aux_sym_cmd_identifier_token20] = ACTIONS(2082), - [aux_sym_cmd_identifier_token21] = ACTIONS(2082), - [aux_sym_cmd_identifier_token22] = ACTIONS(2082), - [aux_sym_cmd_identifier_token23] = ACTIONS(2082), - [aux_sym_cmd_identifier_token24] = ACTIONS(2082), - [aux_sym_cmd_identifier_token25] = ACTIONS(2082), - [aux_sym_cmd_identifier_token26] = ACTIONS(2082), - [aux_sym_cmd_identifier_token27] = ACTIONS(2082), - [aux_sym_cmd_identifier_token28] = ACTIONS(2082), - [aux_sym_cmd_identifier_token29] = ACTIONS(2082), - [aux_sym_cmd_identifier_token30] = ACTIONS(2082), - [aux_sym_cmd_identifier_token31] = ACTIONS(2082), - [aux_sym_cmd_identifier_token32] = ACTIONS(2082), - [aux_sym_cmd_identifier_token33] = ACTIONS(2082), - [aux_sym_cmd_identifier_token34] = ACTIONS(2082), - [aux_sym_cmd_identifier_token35] = ACTIONS(2082), - [aux_sym_cmd_identifier_token36] = ACTIONS(2082), - [aux_sym_cmd_identifier_token37] = ACTIONS(2082), - [aux_sym_cmd_identifier_token38] = ACTIONS(2082), - [aux_sym_cmd_identifier_token39] = ACTIONS(2082), - [aux_sym_cmd_identifier_token40] = ACTIONS(2082), - [anon_sym_def] = ACTIONS(2082), - [anon_sym_export_DASHenv] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_error] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_in2] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_make] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2082), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_source] = ACTIONS(2082), - [anon_sym_source_DASHenv] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_hide] = ACTIONS(2082), - [anon_sym_hide_DASHenv] = ACTIONS(2082), - [anon_sym_overlay] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2082), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2082), - [aux_sym__val_number_decimal_token3] = ACTIONS(2082), - [aux_sym__val_number_decimal_token4] = ACTIONS(2082), - [aux_sym__val_number_token1] = ACTIONS(2082), - [aux_sym__val_number_token2] = ACTIONS(2082), - [aux_sym__val_number_token3] = ACTIONS(2082), - [aux_sym__val_number_token4] = ACTIONS(2082), - [aux_sym__val_number_token5] = ACTIONS(2082), - [aux_sym__val_number_token6] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2082), - [sym__str_single_quotes] = ACTIONS(2082), - [sym__str_back_ticks] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2082), - [sym__entry_separator] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [693] = { - [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(2504), - [anon_sym_alias] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2504), - [anon_sym_let_DASHenv] = ACTIONS(2504), - [anon_sym_mut] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [aux_sym_cmd_identifier_token1] = ACTIONS(2504), - [aux_sym_cmd_identifier_token2] = ACTIONS(2506), - [aux_sym_cmd_identifier_token3] = ACTIONS(2506), - [aux_sym_cmd_identifier_token4] = ACTIONS(2506), - [aux_sym_cmd_identifier_token5] = ACTIONS(2506), - [aux_sym_cmd_identifier_token6] = ACTIONS(2506), - [aux_sym_cmd_identifier_token7] = ACTIONS(2506), - [aux_sym_cmd_identifier_token8] = ACTIONS(2504), - [aux_sym_cmd_identifier_token9] = ACTIONS(2504), - [aux_sym_cmd_identifier_token10] = ACTIONS(2506), - [aux_sym_cmd_identifier_token11] = ACTIONS(2506), - [aux_sym_cmd_identifier_token12] = ACTIONS(2504), - [aux_sym_cmd_identifier_token13] = ACTIONS(2504), - [aux_sym_cmd_identifier_token14] = ACTIONS(2504), - [aux_sym_cmd_identifier_token15] = ACTIONS(2504), - [aux_sym_cmd_identifier_token16] = ACTIONS(2506), - [aux_sym_cmd_identifier_token17] = ACTIONS(2506), - [aux_sym_cmd_identifier_token18] = ACTIONS(2506), - [aux_sym_cmd_identifier_token19] = ACTIONS(2506), - [aux_sym_cmd_identifier_token20] = ACTIONS(2506), - [aux_sym_cmd_identifier_token21] = ACTIONS(2506), - [aux_sym_cmd_identifier_token22] = ACTIONS(2506), - [aux_sym_cmd_identifier_token23] = ACTIONS(2506), - [aux_sym_cmd_identifier_token24] = ACTIONS(2506), - [aux_sym_cmd_identifier_token25] = ACTIONS(2506), - [aux_sym_cmd_identifier_token26] = ACTIONS(2506), - [aux_sym_cmd_identifier_token27] = ACTIONS(2506), - [aux_sym_cmd_identifier_token28] = ACTIONS(2506), - [aux_sym_cmd_identifier_token29] = ACTIONS(2506), - [aux_sym_cmd_identifier_token30] = ACTIONS(2506), - [aux_sym_cmd_identifier_token31] = ACTIONS(2506), - [aux_sym_cmd_identifier_token32] = ACTIONS(2506), - [aux_sym_cmd_identifier_token33] = ACTIONS(2506), - [aux_sym_cmd_identifier_token34] = ACTIONS(2504), - [aux_sym_cmd_identifier_token35] = ACTIONS(2506), - [aux_sym_cmd_identifier_token36] = ACTIONS(2506), - [aux_sym_cmd_identifier_token37] = ACTIONS(2506), - [aux_sym_cmd_identifier_token38] = ACTIONS(2504), - [aux_sym_cmd_identifier_token39] = ACTIONS(2506), - [aux_sym_cmd_identifier_token40] = ACTIONS(2506), - [anon_sym_def] = ACTIONS(2504), - [anon_sym_export_DASHenv] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym_module] = ACTIONS(2504), - [anon_sym_use] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_DOLLAR] = ACTIONS(2506), - [anon_sym_error] = ACTIONS(2504), - [anon_sym_DASH2] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_in2] = ACTIONS(2504), - [anon_sym_loop] = ACTIONS(2504), - [anon_sym_make] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_match] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_catch] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_source] = ACTIONS(2504), - [anon_sym_source_DASHenv] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_hide] = ACTIONS(2504), - [anon_sym_hide_DASHenv] = ACTIONS(2504), - [anon_sym_overlay] = ACTIONS(2504), - [anon_sym_as] = ACTIONS(2504), - [anon_sym_PLUS2] = ACTIONS(2504), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), - [aux_sym__val_number_decimal_token1] = ACTIONS(2504), - [aux_sym__val_number_decimal_token2] = ACTIONS(2506), - [aux_sym__val_number_decimal_token3] = ACTIONS(2506), - [aux_sym__val_number_decimal_token4] = ACTIONS(2506), - [aux_sym__val_number_token1] = ACTIONS(2506), - [aux_sym__val_number_token2] = ACTIONS(2506), - [aux_sym__val_number_token3] = ACTIONS(2506), - [aux_sym__val_number_token4] = ACTIONS(2504), - [aux_sym__val_number_token5] = ACTIONS(2504), - [aux_sym__val_number_token6] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym__str_single_quotes] = ACTIONS(2506), - [sym__str_back_ticks] = ACTIONS(2506), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2506), - }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(2359), - [anon_sym_alias] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_let_DASHenv] = ACTIONS(2359), - [anon_sym_mut] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [aux_sym_cmd_identifier_token1] = ACTIONS(2359), - [aux_sym_cmd_identifier_token2] = ACTIONS(2361), - [aux_sym_cmd_identifier_token3] = ACTIONS(2361), - [aux_sym_cmd_identifier_token4] = ACTIONS(2361), - [aux_sym_cmd_identifier_token5] = ACTIONS(2361), - [aux_sym_cmd_identifier_token6] = ACTIONS(2361), - [aux_sym_cmd_identifier_token7] = ACTIONS(2361), - [aux_sym_cmd_identifier_token8] = ACTIONS(2359), - [aux_sym_cmd_identifier_token9] = ACTIONS(2359), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2359), - [aux_sym_cmd_identifier_token13] = ACTIONS(2359), - [aux_sym_cmd_identifier_token14] = ACTIONS(2359), - [aux_sym_cmd_identifier_token15] = ACTIONS(2359), - [aux_sym_cmd_identifier_token16] = ACTIONS(2361), - [aux_sym_cmd_identifier_token17] = ACTIONS(2361), - [aux_sym_cmd_identifier_token18] = ACTIONS(2361), - [aux_sym_cmd_identifier_token19] = ACTIONS(2361), - [aux_sym_cmd_identifier_token20] = ACTIONS(2361), - [aux_sym_cmd_identifier_token21] = ACTIONS(2361), - [aux_sym_cmd_identifier_token22] = ACTIONS(2361), - [aux_sym_cmd_identifier_token23] = ACTIONS(2361), - [aux_sym_cmd_identifier_token24] = ACTIONS(2361), - [aux_sym_cmd_identifier_token25] = ACTIONS(2361), - [aux_sym_cmd_identifier_token26] = ACTIONS(2361), - [aux_sym_cmd_identifier_token27] = ACTIONS(2361), - [aux_sym_cmd_identifier_token28] = ACTIONS(2361), - [aux_sym_cmd_identifier_token29] = ACTIONS(2361), - [aux_sym_cmd_identifier_token30] = ACTIONS(2361), - [aux_sym_cmd_identifier_token31] = ACTIONS(2361), - [aux_sym_cmd_identifier_token32] = ACTIONS(2361), - [aux_sym_cmd_identifier_token33] = ACTIONS(2361), - [aux_sym_cmd_identifier_token34] = ACTIONS(2359), - [aux_sym_cmd_identifier_token35] = ACTIONS(2361), - [aux_sym_cmd_identifier_token36] = ACTIONS(2361), - [aux_sym_cmd_identifier_token37] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2359), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_export_DASHenv] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_module] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2359), - [anon_sym_DASH2] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_in2] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_make] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_catch] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_source] = ACTIONS(2359), - [anon_sym_source_DASHenv] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_hide_DASHenv] = ACTIONS(2359), - [anon_sym_overlay] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_PLUS2] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2359), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_decimal_token4] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [aux_sym__val_number_token4] = ACTIONS(2359), - [aux_sym__val_number_token5] = ACTIONS(2359), - [aux_sym__val_number_token6] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2361), - }, - [695] = { - [sym_comment] = STATE(695), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1951), - [aux_sym_cmd_identifier_token4] = ACTIONS(1951), - [aux_sym_cmd_identifier_token5] = ACTIONS(1951), - [aux_sym_cmd_identifier_token6] = ACTIONS(1951), - [aux_sym_cmd_identifier_token7] = ACTIONS(1951), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1951), - [aux_sym_cmd_identifier_token11] = ACTIONS(1951), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1951), - [aux_sym_cmd_identifier_token17] = ACTIONS(1951), - [aux_sym_cmd_identifier_token18] = ACTIONS(1951), - [aux_sym_cmd_identifier_token19] = ACTIONS(1951), - [aux_sym_cmd_identifier_token20] = ACTIONS(1951), - [aux_sym_cmd_identifier_token21] = ACTIONS(1951), - [aux_sym_cmd_identifier_token22] = ACTIONS(1951), - [aux_sym_cmd_identifier_token23] = ACTIONS(1951), - [aux_sym_cmd_identifier_token24] = ACTIONS(1951), - [aux_sym_cmd_identifier_token25] = ACTIONS(1951), - [aux_sym_cmd_identifier_token26] = ACTIONS(1951), - [aux_sym_cmd_identifier_token27] = ACTIONS(1951), - [aux_sym_cmd_identifier_token28] = ACTIONS(1951), - [aux_sym_cmd_identifier_token29] = ACTIONS(1951), - [aux_sym_cmd_identifier_token30] = ACTIONS(1951), - [aux_sym_cmd_identifier_token31] = ACTIONS(1951), - [aux_sym_cmd_identifier_token32] = ACTIONS(1951), - [aux_sym_cmd_identifier_token33] = ACTIONS(1951), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1951), - [aux_sym_cmd_identifier_token36] = ACTIONS(1951), - [aux_sym_cmd_identifier_token37] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_alias] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_let_DASHenv] = ACTIONS(2387), - [anon_sym_mut] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [aux_sym_cmd_identifier_token1] = ACTIONS(2387), - [aux_sym_cmd_identifier_token2] = ACTIONS(2389), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [aux_sym_cmd_identifier_token6] = ACTIONS(2389), - [aux_sym_cmd_identifier_token7] = ACTIONS(2389), - [aux_sym_cmd_identifier_token8] = ACTIONS(2387), - [aux_sym_cmd_identifier_token9] = ACTIONS(2387), - [aux_sym_cmd_identifier_token10] = ACTIONS(2389), - [aux_sym_cmd_identifier_token11] = ACTIONS(2389), - [aux_sym_cmd_identifier_token12] = ACTIONS(2387), - [aux_sym_cmd_identifier_token13] = ACTIONS(2387), - [aux_sym_cmd_identifier_token14] = ACTIONS(2387), - [aux_sym_cmd_identifier_token15] = ACTIONS(2387), - [aux_sym_cmd_identifier_token16] = ACTIONS(2389), - [aux_sym_cmd_identifier_token17] = ACTIONS(2389), - [aux_sym_cmd_identifier_token18] = ACTIONS(2389), - [aux_sym_cmd_identifier_token19] = ACTIONS(2389), - [aux_sym_cmd_identifier_token20] = ACTIONS(2389), - [aux_sym_cmd_identifier_token21] = ACTIONS(2389), - [aux_sym_cmd_identifier_token22] = ACTIONS(2389), - [aux_sym_cmd_identifier_token23] = ACTIONS(2389), - [aux_sym_cmd_identifier_token24] = ACTIONS(2389), - [aux_sym_cmd_identifier_token25] = ACTIONS(2389), - [aux_sym_cmd_identifier_token26] = ACTIONS(2389), - [aux_sym_cmd_identifier_token27] = ACTIONS(2389), - [aux_sym_cmd_identifier_token28] = ACTIONS(2389), - [aux_sym_cmd_identifier_token29] = ACTIONS(2389), - [aux_sym_cmd_identifier_token30] = ACTIONS(2389), - [aux_sym_cmd_identifier_token31] = ACTIONS(2389), - [aux_sym_cmd_identifier_token32] = ACTIONS(2389), - [aux_sym_cmd_identifier_token33] = ACTIONS(2389), - [aux_sym_cmd_identifier_token34] = ACTIONS(2387), - [aux_sym_cmd_identifier_token35] = ACTIONS(2389), - [aux_sym_cmd_identifier_token36] = ACTIONS(2389), - [aux_sym_cmd_identifier_token37] = ACTIONS(2389), - [aux_sym_cmd_identifier_token38] = ACTIONS(2387), - [aux_sym_cmd_identifier_token39] = ACTIONS(2389), - [aux_sym_cmd_identifier_token40] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2387), - [anon_sym_export_DASHenv] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_error] = ACTIONS(2387), - [anon_sym_DASH2] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_in2] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_make] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_catch] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_source] = ACTIONS(2387), - [anon_sym_source_DASHenv] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_hide_DASHenv] = ACTIONS(2387), - [anon_sym_overlay] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_PLUS2] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2389), - [aux_sym__val_number_decimal_token3] = ACTIONS(2389), - [aux_sym__val_number_decimal_token4] = ACTIONS(2389), - [aux_sym__val_number_token1] = ACTIONS(2389), - [aux_sym__val_number_token2] = ACTIONS(2389), - [aux_sym__val_number_token3] = ACTIONS(2389), - [aux_sym__val_number_token4] = ACTIONS(2387), - [aux_sym__val_number_token5] = ACTIONS(2387), - [aux_sym__val_number_token6] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym__str_single_quotes] = ACTIONS(2389), - [sym__str_back_ticks] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2389), - }, - [697] = { - [sym_comment] = STATE(697), - [anon_sym_export] = ACTIONS(2082), - [anon_sym_alias] = ACTIONS(2082), - [anon_sym_let] = ACTIONS(2082), - [anon_sym_let_DASHenv] = ACTIONS(2082), - [anon_sym_mut] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [aux_sym_cmd_identifier_token1] = ACTIONS(2082), - [aux_sym_cmd_identifier_token2] = ACTIONS(2084), - [aux_sym_cmd_identifier_token3] = ACTIONS(2084), - [aux_sym_cmd_identifier_token4] = ACTIONS(2084), - [aux_sym_cmd_identifier_token5] = ACTIONS(2084), - [aux_sym_cmd_identifier_token6] = ACTIONS(2084), - [aux_sym_cmd_identifier_token7] = ACTIONS(2084), - [aux_sym_cmd_identifier_token8] = ACTIONS(2082), - [aux_sym_cmd_identifier_token9] = ACTIONS(2082), - [aux_sym_cmd_identifier_token10] = ACTIONS(2084), - [aux_sym_cmd_identifier_token11] = ACTIONS(2084), - [aux_sym_cmd_identifier_token12] = ACTIONS(2082), - [aux_sym_cmd_identifier_token13] = ACTIONS(2082), - [aux_sym_cmd_identifier_token14] = ACTIONS(2082), - [aux_sym_cmd_identifier_token15] = ACTIONS(2082), - [aux_sym_cmd_identifier_token16] = ACTIONS(2084), - [aux_sym_cmd_identifier_token17] = ACTIONS(2084), - [aux_sym_cmd_identifier_token18] = ACTIONS(2084), - [aux_sym_cmd_identifier_token19] = ACTIONS(2084), - [aux_sym_cmd_identifier_token20] = ACTIONS(2084), - [aux_sym_cmd_identifier_token21] = ACTIONS(2084), - [aux_sym_cmd_identifier_token22] = ACTIONS(2084), - [aux_sym_cmd_identifier_token23] = ACTIONS(2084), - [aux_sym_cmd_identifier_token24] = ACTIONS(2084), - [aux_sym_cmd_identifier_token25] = ACTIONS(2084), - [aux_sym_cmd_identifier_token26] = ACTIONS(2084), - [aux_sym_cmd_identifier_token27] = ACTIONS(2084), - [aux_sym_cmd_identifier_token28] = ACTIONS(2084), - [aux_sym_cmd_identifier_token29] = ACTIONS(2084), - [aux_sym_cmd_identifier_token30] = ACTIONS(2084), - [aux_sym_cmd_identifier_token31] = ACTIONS(2084), - [aux_sym_cmd_identifier_token32] = ACTIONS(2084), - [aux_sym_cmd_identifier_token33] = ACTIONS(2084), - [aux_sym_cmd_identifier_token34] = ACTIONS(2082), - [aux_sym_cmd_identifier_token35] = ACTIONS(2084), - [aux_sym_cmd_identifier_token36] = ACTIONS(2084), - [aux_sym_cmd_identifier_token37] = ACTIONS(2084), - [aux_sym_cmd_identifier_token38] = ACTIONS(2082), - [aux_sym_cmd_identifier_token39] = ACTIONS(2084), - [aux_sym_cmd_identifier_token40] = ACTIONS(2084), - [anon_sym_def] = ACTIONS(2082), - [anon_sym_export_DASHenv] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym_module] = ACTIONS(2082), - [anon_sym_use] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_error] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_in2] = ACTIONS(2082), - [anon_sym_loop] = ACTIONS(2082), - [anon_sym_make] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_else] = ACTIONS(2082), - [anon_sym_match] = ACTIONS(2082), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2082), - [anon_sym_catch] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_source] = ACTIONS(2082), - [anon_sym_source_DASHenv] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_hide] = ACTIONS(2082), - [anon_sym_hide_DASHenv] = ACTIONS(2082), - [anon_sym_overlay] = ACTIONS(2082), - [anon_sym_as] = ACTIONS(2082), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2082), - [aux_sym__val_number_token5] = ACTIONS(2082), - [aux_sym__val_number_token6] = ACTIONS(2082), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), - }, - [698] = { - [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_alias] = ACTIONS(2086), - [anon_sym_let] = ACTIONS(2086), - [anon_sym_let_DASHenv] = ACTIONS(2086), - [anon_sym_mut] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [aux_sym_cmd_identifier_token1] = ACTIONS(2086), - [aux_sym_cmd_identifier_token2] = ACTIONS(2088), - [aux_sym_cmd_identifier_token3] = ACTIONS(2088), - [aux_sym_cmd_identifier_token4] = ACTIONS(2088), - [aux_sym_cmd_identifier_token5] = ACTIONS(2088), - [aux_sym_cmd_identifier_token6] = ACTIONS(2088), - [aux_sym_cmd_identifier_token7] = ACTIONS(2088), - [aux_sym_cmd_identifier_token8] = ACTIONS(2086), - [aux_sym_cmd_identifier_token9] = ACTIONS(2086), - [aux_sym_cmd_identifier_token10] = ACTIONS(2088), - [aux_sym_cmd_identifier_token11] = ACTIONS(2088), - [aux_sym_cmd_identifier_token12] = ACTIONS(2086), - [aux_sym_cmd_identifier_token13] = ACTIONS(2086), - [aux_sym_cmd_identifier_token14] = ACTIONS(2086), - [aux_sym_cmd_identifier_token15] = ACTIONS(2086), - [aux_sym_cmd_identifier_token16] = ACTIONS(2088), - [aux_sym_cmd_identifier_token17] = ACTIONS(2088), - [aux_sym_cmd_identifier_token18] = ACTIONS(2088), - [aux_sym_cmd_identifier_token19] = ACTIONS(2088), - [aux_sym_cmd_identifier_token20] = ACTIONS(2088), - [aux_sym_cmd_identifier_token21] = ACTIONS(2088), - [aux_sym_cmd_identifier_token22] = ACTIONS(2088), - [aux_sym_cmd_identifier_token23] = ACTIONS(2088), - [aux_sym_cmd_identifier_token24] = ACTIONS(2088), - [aux_sym_cmd_identifier_token25] = ACTIONS(2088), - [aux_sym_cmd_identifier_token26] = ACTIONS(2088), - [aux_sym_cmd_identifier_token27] = ACTIONS(2088), - [aux_sym_cmd_identifier_token28] = ACTIONS(2088), - [aux_sym_cmd_identifier_token29] = ACTIONS(2088), - [aux_sym_cmd_identifier_token30] = ACTIONS(2088), - [aux_sym_cmd_identifier_token31] = ACTIONS(2088), - [aux_sym_cmd_identifier_token32] = ACTIONS(2088), - [aux_sym_cmd_identifier_token33] = ACTIONS(2088), - [aux_sym_cmd_identifier_token34] = ACTIONS(2086), - [aux_sym_cmd_identifier_token35] = ACTIONS(2088), - [aux_sym_cmd_identifier_token36] = ACTIONS(2088), - [aux_sym_cmd_identifier_token37] = ACTIONS(2088), - [aux_sym_cmd_identifier_token38] = ACTIONS(2086), - [aux_sym_cmd_identifier_token39] = ACTIONS(2088), - [aux_sym_cmd_identifier_token40] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2086), - [anon_sym_export_DASHenv] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_use] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_error] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_in2] = ACTIONS(2086), - [anon_sym_loop] = ACTIONS(2086), - [anon_sym_make] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_else] = ACTIONS(2086), - [anon_sym_match] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2086), - [anon_sym_catch] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_source] = ACTIONS(2086), - [anon_sym_source_DASHenv] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_hide] = ACTIONS(2086), - [anon_sym_hide_DASHenv] = ACTIONS(2086), - [anon_sym_overlay] = ACTIONS(2086), - [anon_sym_as] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2088), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2088), - [aux_sym__val_number_token1] = ACTIONS(2088), - [aux_sym__val_number_token2] = ACTIONS(2088), - [aux_sym__val_number_token3] = ACTIONS(2088), - [aux_sym__val_number_token4] = ACTIONS(2086), - [aux_sym__val_number_token5] = ACTIONS(2086), - [aux_sym__val_number_token6] = ACTIONS(2086), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym__str_single_quotes] = ACTIONS(2088), - [sym__str_back_ticks] = ACTIONS(2088), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2088), - }, - [699] = { - [sym_comment] = STATE(699), + [730] = { + [sym_comment] = STATE(730), [anon_sym_export] = ACTIONS(2342), [anon_sym_alias] = ACTIONS(2342), [anon_sym_let] = ACTIONS(2342), @@ -160054,52 +157740,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2342), [anon_sym_const] = ACTIONS(2342), [aux_sym_cmd_identifier_token1] = ACTIONS(2342), - [aux_sym_cmd_identifier_token2] = ACTIONS(2346), - [aux_sym_cmd_identifier_token3] = ACTIONS(2346), - [aux_sym_cmd_identifier_token4] = ACTIONS(2346), - [aux_sym_cmd_identifier_token5] = ACTIONS(2346), - [aux_sym_cmd_identifier_token6] = ACTIONS(2346), - [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2344), + [aux_sym_cmd_identifier_token3] = ACTIONS(2344), + [aux_sym_cmd_identifier_token4] = ACTIONS(2344), + [aux_sym_cmd_identifier_token5] = ACTIONS(2344), + [aux_sym_cmd_identifier_token6] = ACTIONS(2344), + [aux_sym_cmd_identifier_token7] = ACTIONS(2344), [aux_sym_cmd_identifier_token8] = ACTIONS(2342), [aux_sym_cmd_identifier_token9] = ACTIONS(2342), - [aux_sym_cmd_identifier_token10] = ACTIONS(2346), - [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2344), + [aux_sym_cmd_identifier_token11] = ACTIONS(2344), [aux_sym_cmd_identifier_token12] = ACTIONS(2342), [aux_sym_cmd_identifier_token13] = ACTIONS(2342), [aux_sym_cmd_identifier_token14] = ACTIONS(2342), [aux_sym_cmd_identifier_token15] = ACTIONS(2342), - [aux_sym_cmd_identifier_token16] = ACTIONS(2346), - [aux_sym_cmd_identifier_token17] = ACTIONS(2346), - [aux_sym_cmd_identifier_token18] = ACTIONS(2346), - [aux_sym_cmd_identifier_token19] = ACTIONS(2346), - [aux_sym_cmd_identifier_token20] = ACTIONS(2346), - [aux_sym_cmd_identifier_token21] = ACTIONS(2346), - [aux_sym_cmd_identifier_token22] = ACTIONS(2346), - [aux_sym_cmd_identifier_token23] = ACTIONS(2346), - [aux_sym_cmd_identifier_token24] = ACTIONS(2346), - [aux_sym_cmd_identifier_token25] = ACTIONS(2346), - [aux_sym_cmd_identifier_token26] = ACTIONS(2346), - [aux_sym_cmd_identifier_token27] = ACTIONS(2346), - [aux_sym_cmd_identifier_token28] = ACTIONS(2346), - [aux_sym_cmd_identifier_token29] = ACTIONS(2346), - [aux_sym_cmd_identifier_token30] = ACTIONS(2346), - [aux_sym_cmd_identifier_token31] = ACTIONS(2346), - [aux_sym_cmd_identifier_token32] = ACTIONS(2346), - [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2344), + [aux_sym_cmd_identifier_token17] = ACTIONS(2344), + [aux_sym_cmd_identifier_token18] = ACTIONS(2344), + [aux_sym_cmd_identifier_token19] = ACTIONS(2344), + [aux_sym_cmd_identifier_token20] = ACTIONS(2344), + [aux_sym_cmd_identifier_token21] = ACTIONS(2344), + [aux_sym_cmd_identifier_token22] = ACTIONS(2344), + [aux_sym_cmd_identifier_token23] = ACTIONS(2344), + [aux_sym_cmd_identifier_token24] = ACTIONS(2344), + [aux_sym_cmd_identifier_token25] = ACTIONS(2344), + [aux_sym_cmd_identifier_token26] = ACTIONS(2344), + [aux_sym_cmd_identifier_token27] = ACTIONS(2344), + [aux_sym_cmd_identifier_token28] = ACTIONS(2344), + [aux_sym_cmd_identifier_token29] = ACTIONS(2344), + [aux_sym_cmd_identifier_token30] = ACTIONS(2344), + [aux_sym_cmd_identifier_token31] = ACTIONS(2344), + [aux_sym_cmd_identifier_token32] = ACTIONS(2344), + [aux_sym_cmd_identifier_token33] = ACTIONS(2344), [aux_sym_cmd_identifier_token34] = ACTIONS(2342), - [aux_sym_cmd_identifier_token35] = ACTIONS(2346), - [aux_sym_cmd_identifier_token36] = ACTIONS(2346), - [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2344), + [aux_sym_cmd_identifier_token36] = ACTIONS(2344), + [aux_sym_cmd_identifier_token37] = ACTIONS(2344), [aux_sym_cmd_identifier_token38] = ACTIONS(2342), - [aux_sym_cmd_identifier_token39] = ACTIONS(2346), - [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2344), + [aux_sym_cmd_identifier_token40] = ACTIONS(2344), [anon_sym_def] = ACTIONS(2342), [anon_sym_export_DASHenv] = ACTIONS(2342), [anon_sym_extern] = ACTIONS(2342), [anon_sym_module] = ACTIONS(2342), [anon_sym_use] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_DOLLAR] = ACTIONS(2344), [anon_sym_error] = ACTIONS(2342), [anon_sym_DASH2] = ACTIONS(2342), [anon_sym_break] = ACTIONS(2342), @@ -160113,7 +157799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2342), [anon_sym_else] = ACTIONS(2342), [anon_sym_match] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2344), [anon_sym_try] = ACTIONS(2342), [anon_sym_catch] = ACTIONS(2342), [anon_sym_return] = ACTIONS(2342), @@ -160125,56897 +157811,53154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2342), [anon_sym_as] = ACTIONS(2342), [anon_sym_PLUS2] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), [aux_sym__val_number_decimal_token1] = ACTIONS(2342), - [aux_sym__val_number_decimal_token2] = ACTIONS(2346), - [aux_sym__val_number_decimal_token3] = ACTIONS(2346), - [aux_sym__val_number_decimal_token4] = ACTIONS(2346), - [aux_sym__val_number_token1] = ACTIONS(2346), - [aux_sym__val_number_token2] = ACTIONS(2346), - [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2344), + [aux_sym__val_number_decimal_token3] = ACTIONS(2344), + [aux_sym__val_number_decimal_token4] = ACTIONS(2344), + [aux_sym__val_number_token1] = ACTIONS(2344), + [aux_sym__val_number_token2] = ACTIONS(2344), + [aux_sym__val_number_token3] = ACTIONS(2344), [aux_sym__val_number_token4] = ACTIONS(2342), [aux_sym__val_number_token5] = ACTIONS(2342), [aux_sym__val_number_token6] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2346), - [sym__str_single_quotes] = ACTIONS(2346), - [sym__str_back_ticks] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2346), - }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1799), - [anon_sym_alias] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_let_DASHenv] = ACTIONS(1799), - [anon_sym_mut] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [aux_sym_cmd_identifier_token1] = ACTIONS(1799), - [aux_sym_cmd_identifier_token2] = ACTIONS(1801), - [aux_sym_cmd_identifier_token3] = ACTIONS(1801), - [aux_sym_cmd_identifier_token4] = ACTIONS(1801), - [aux_sym_cmd_identifier_token5] = ACTIONS(1801), - [aux_sym_cmd_identifier_token6] = ACTIONS(1801), - [aux_sym_cmd_identifier_token7] = ACTIONS(1801), - [aux_sym_cmd_identifier_token8] = ACTIONS(1799), - [aux_sym_cmd_identifier_token9] = ACTIONS(1799), - [aux_sym_cmd_identifier_token10] = ACTIONS(1801), - [aux_sym_cmd_identifier_token11] = ACTIONS(1801), - [aux_sym_cmd_identifier_token12] = ACTIONS(1799), - [aux_sym_cmd_identifier_token13] = ACTIONS(1799), - [aux_sym_cmd_identifier_token14] = ACTIONS(1799), - [aux_sym_cmd_identifier_token15] = ACTIONS(1799), - [aux_sym_cmd_identifier_token16] = ACTIONS(1801), - [aux_sym_cmd_identifier_token17] = ACTIONS(1801), - [aux_sym_cmd_identifier_token18] = ACTIONS(1801), - [aux_sym_cmd_identifier_token19] = ACTIONS(1801), - [aux_sym_cmd_identifier_token20] = ACTIONS(1801), - [aux_sym_cmd_identifier_token21] = ACTIONS(1801), - [aux_sym_cmd_identifier_token22] = ACTIONS(1801), - [aux_sym_cmd_identifier_token23] = ACTIONS(1801), - [aux_sym_cmd_identifier_token24] = ACTIONS(1801), - [aux_sym_cmd_identifier_token25] = ACTIONS(1801), - [aux_sym_cmd_identifier_token26] = ACTIONS(1801), - [aux_sym_cmd_identifier_token27] = ACTIONS(1801), - [aux_sym_cmd_identifier_token28] = ACTIONS(1801), - [aux_sym_cmd_identifier_token29] = ACTIONS(1801), - [aux_sym_cmd_identifier_token30] = ACTIONS(1801), - [aux_sym_cmd_identifier_token31] = ACTIONS(1801), - [aux_sym_cmd_identifier_token32] = ACTIONS(1801), - [aux_sym_cmd_identifier_token33] = ACTIONS(1801), - [aux_sym_cmd_identifier_token34] = ACTIONS(1799), - [aux_sym_cmd_identifier_token35] = ACTIONS(1801), - [aux_sym_cmd_identifier_token36] = ACTIONS(1801), - [aux_sym_cmd_identifier_token37] = ACTIONS(1801), - [aux_sym_cmd_identifier_token38] = ACTIONS(1799), - [aux_sym_cmd_identifier_token39] = ACTIONS(1801), - [aux_sym_cmd_identifier_token40] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_export_DASHenv] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_module] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_in2] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_make] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_do] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_catch] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_source] = ACTIONS(1799), - [anon_sym_source_DASHenv] = ACTIONS(1799), - [anon_sym_register] = ACTIONS(1799), - [anon_sym_hide] = ACTIONS(1799), - [anon_sym_hide_DASHenv] = ACTIONS(1799), - [anon_sym_overlay] = ACTIONS(1799), - [anon_sym_as] = ACTIONS(1799), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1799), - [aux_sym__val_number_token5] = ACTIONS(1799), - [aux_sym__val_number_token6] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_alias] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_let_DASHenv] = ACTIONS(2454), - [anon_sym_mut] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [aux_sym_cmd_identifier_token1] = ACTIONS(2454), - [aux_sym_cmd_identifier_token2] = ACTIONS(2456), - [aux_sym_cmd_identifier_token3] = ACTIONS(2456), - [aux_sym_cmd_identifier_token4] = ACTIONS(2456), - [aux_sym_cmd_identifier_token5] = ACTIONS(2456), - [aux_sym_cmd_identifier_token6] = ACTIONS(2456), - [aux_sym_cmd_identifier_token7] = ACTIONS(2456), - [aux_sym_cmd_identifier_token8] = ACTIONS(2454), - [aux_sym_cmd_identifier_token9] = ACTIONS(2454), - [aux_sym_cmd_identifier_token10] = ACTIONS(2456), - [aux_sym_cmd_identifier_token11] = ACTIONS(2456), - [aux_sym_cmd_identifier_token12] = ACTIONS(2454), - [aux_sym_cmd_identifier_token13] = ACTIONS(2454), - [aux_sym_cmd_identifier_token14] = ACTIONS(2454), - [aux_sym_cmd_identifier_token15] = ACTIONS(2454), - [aux_sym_cmd_identifier_token16] = ACTIONS(2456), - [aux_sym_cmd_identifier_token17] = ACTIONS(2456), - [aux_sym_cmd_identifier_token18] = ACTIONS(2456), - [aux_sym_cmd_identifier_token19] = ACTIONS(2456), - [aux_sym_cmd_identifier_token20] = ACTIONS(2456), - [aux_sym_cmd_identifier_token21] = ACTIONS(2456), - [aux_sym_cmd_identifier_token22] = ACTIONS(2456), - [aux_sym_cmd_identifier_token23] = ACTIONS(2456), - [aux_sym_cmd_identifier_token24] = ACTIONS(2456), - [aux_sym_cmd_identifier_token25] = ACTIONS(2456), - [aux_sym_cmd_identifier_token26] = ACTIONS(2456), - [aux_sym_cmd_identifier_token27] = ACTIONS(2456), - [aux_sym_cmd_identifier_token28] = ACTIONS(2456), - [aux_sym_cmd_identifier_token29] = ACTIONS(2456), - [aux_sym_cmd_identifier_token30] = ACTIONS(2456), - [aux_sym_cmd_identifier_token31] = ACTIONS(2456), - [aux_sym_cmd_identifier_token32] = ACTIONS(2456), - [aux_sym_cmd_identifier_token33] = ACTIONS(2456), - [aux_sym_cmd_identifier_token34] = ACTIONS(2454), - [aux_sym_cmd_identifier_token35] = ACTIONS(2456), - [aux_sym_cmd_identifier_token36] = ACTIONS(2456), - [aux_sym_cmd_identifier_token37] = ACTIONS(2456), - [aux_sym_cmd_identifier_token38] = ACTIONS(2454), - [aux_sym_cmd_identifier_token39] = ACTIONS(2456), - [aux_sym_cmd_identifier_token40] = ACTIONS(2456), - [anon_sym_def] = ACTIONS(2454), - [anon_sym_export_DASHenv] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_module] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_DOLLAR] = ACTIONS(2456), - [anon_sym_error] = ACTIONS(2454), - [anon_sym_DASH2] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_in2] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_make] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_else] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2454), - [anon_sym_catch] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_source] = ACTIONS(2454), - [anon_sym_source_DASHenv] = ACTIONS(2454), - [anon_sym_register] = ACTIONS(2454), - [anon_sym_hide] = ACTIONS(2454), - [anon_sym_hide_DASHenv] = ACTIONS(2454), - [anon_sym_overlay] = ACTIONS(2454), - [anon_sym_as] = ACTIONS(2454), - [anon_sym_PLUS2] = ACTIONS(2454), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2456), - [aux_sym__val_number_decimal_token1] = ACTIONS(2454), - [aux_sym__val_number_decimal_token2] = ACTIONS(2456), - [aux_sym__val_number_decimal_token3] = ACTIONS(2456), - [aux_sym__val_number_decimal_token4] = ACTIONS(2456), - [aux_sym__val_number_token1] = ACTIONS(2456), - [aux_sym__val_number_token2] = ACTIONS(2456), - [aux_sym__val_number_token3] = ACTIONS(2456), - [aux_sym__val_number_token4] = ACTIONS(2454), - [aux_sym__val_number_token5] = ACTIONS(2454), - [aux_sym__val_number_token6] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2456), - [sym__str_single_quotes] = ACTIONS(2456), - [sym__str_back_ticks] = ACTIONS(2456), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2456), - }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), - }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [aux_sym_cmd_identifier_token1] = ACTIONS(1917), - [aux_sym_cmd_identifier_token2] = ACTIONS(1919), - [aux_sym_cmd_identifier_token3] = ACTIONS(1919), - [aux_sym_cmd_identifier_token4] = ACTIONS(1919), - [aux_sym_cmd_identifier_token5] = ACTIONS(1919), - [aux_sym_cmd_identifier_token6] = ACTIONS(1919), - [aux_sym_cmd_identifier_token7] = ACTIONS(1919), - [aux_sym_cmd_identifier_token8] = ACTIONS(1917), - [aux_sym_cmd_identifier_token9] = ACTIONS(1917), - [aux_sym_cmd_identifier_token10] = ACTIONS(1919), - [aux_sym_cmd_identifier_token11] = ACTIONS(1919), - [aux_sym_cmd_identifier_token12] = ACTIONS(1917), - [aux_sym_cmd_identifier_token13] = ACTIONS(1917), - [aux_sym_cmd_identifier_token14] = ACTIONS(1917), - [aux_sym_cmd_identifier_token15] = ACTIONS(1917), - [aux_sym_cmd_identifier_token16] = ACTIONS(1919), - [aux_sym_cmd_identifier_token17] = ACTIONS(1919), - [aux_sym_cmd_identifier_token18] = ACTIONS(1919), - [aux_sym_cmd_identifier_token19] = ACTIONS(1919), - [aux_sym_cmd_identifier_token20] = ACTIONS(1919), - [aux_sym_cmd_identifier_token21] = ACTIONS(1919), - [aux_sym_cmd_identifier_token22] = ACTIONS(1919), - [aux_sym_cmd_identifier_token23] = ACTIONS(1919), - [aux_sym_cmd_identifier_token24] = ACTIONS(1919), - [aux_sym_cmd_identifier_token25] = ACTIONS(1919), - [aux_sym_cmd_identifier_token26] = ACTIONS(1919), - [aux_sym_cmd_identifier_token27] = ACTIONS(1919), - [aux_sym_cmd_identifier_token28] = ACTIONS(1919), - [aux_sym_cmd_identifier_token29] = ACTIONS(1919), - [aux_sym_cmd_identifier_token30] = ACTIONS(1919), - [aux_sym_cmd_identifier_token31] = ACTIONS(1919), - [aux_sym_cmd_identifier_token32] = ACTIONS(1919), - [aux_sym_cmd_identifier_token33] = ACTIONS(1919), - [aux_sym_cmd_identifier_token34] = ACTIONS(1917), - [aux_sym_cmd_identifier_token35] = ACTIONS(1919), - [aux_sym_cmd_identifier_token36] = ACTIONS(1919), - [aux_sym_cmd_identifier_token37] = ACTIONS(1919), - [aux_sym_cmd_identifier_token38] = ACTIONS(1917), - [aux_sym_cmd_identifier_token39] = ACTIONS(1919), - [aux_sym_cmd_identifier_token40] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1919), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_in2] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_make] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_catch] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1917), - [aux_sym__val_number_token5] = ACTIONS(1917), - [aux_sym__val_number_token6] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(1818), - [anon_sym_alias] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_let_DASHenv] = ACTIONS(1818), - [anon_sym_mut] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [aux_sym_cmd_identifier_token1] = ACTIONS(1818), - [aux_sym_cmd_identifier_token2] = ACTIONS(1820), - [aux_sym_cmd_identifier_token3] = ACTIONS(1820), - [aux_sym_cmd_identifier_token4] = ACTIONS(1820), - [aux_sym_cmd_identifier_token5] = ACTIONS(1820), - [aux_sym_cmd_identifier_token6] = ACTIONS(1820), - [aux_sym_cmd_identifier_token7] = ACTIONS(1820), - [aux_sym_cmd_identifier_token8] = ACTIONS(1818), - [aux_sym_cmd_identifier_token9] = ACTIONS(1818), - [aux_sym_cmd_identifier_token10] = ACTIONS(1820), - [aux_sym_cmd_identifier_token11] = ACTIONS(1820), - [aux_sym_cmd_identifier_token12] = ACTIONS(1818), - [aux_sym_cmd_identifier_token13] = ACTIONS(1818), - [aux_sym_cmd_identifier_token14] = ACTIONS(1818), - [aux_sym_cmd_identifier_token15] = ACTIONS(1818), - [aux_sym_cmd_identifier_token16] = ACTIONS(1820), - [aux_sym_cmd_identifier_token17] = ACTIONS(1820), - [aux_sym_cmd_identifier_token18] = ACTIONS(1820), - [aux_sym_cmd_identifier_token19] = ACTIONS(1820), - [aux_sym_cmd_identifier_token20] = ACTIONS(1820), - [aux_sym_cmd_identifier_token21] = ACTIONS(1820), - [aux_sym_cmd_identifier_token22] = ACTIONS(1820), - [aux_sym_cmd_identifier_token23] = ACTIONS(1820), - [aux_sym_cmd_identifier_token24] = ACTIONS(1820), - [aux_sym_cmd_identifier_token25] = ACTIONS(1820), - [aux_sym_cmd_identifier_token26] = ACTIONS(1820), - [aux_sym_cmd_identifier_token27] = ACTIONS(1820), - [aux_sym_cmd_identifier_token28] = ACTIONS(1820), - [aux_sym_cmd_identifier_token29] = ACTIONS(1820), - [aux_sym_cmd_identifier_token30] = ACTIONS(1820), - [aux_sym_cmd_identifier_token31] = ACTIONS(1820), - [aux_sym_cmd_identifier_token32] = ACTIONS(1820), - [aux_sym_cmd_identifier_token33] = ACTIONS(1820), - [aux_sym_cmd_identifier_token34] = ACTIONS(1818), - [aux_sym_cmd_identifier_token35] = ACTIONS(1820), - [aux_sym_cmd_identifier_token36] = ACTIONS(1820), - [aux_sym_cmd_identifier_token37] = ACTIONS(1820), - [aux_sym_cmd_identifier_token38] = ACTIONS(1818), - [aux_sym_cmd_identifier_token39] = ACTIONS(1820), - [aux_sym_cmd_identifier_token40] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1818), - [anon_sym_export_DASHenv] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_module] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_error] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_in2] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_make] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1818), - [anon_sym_catch] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_source] = ACTIONS(1818), - [anon_sym_source_DASHenv] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_hide] = ACTIONS(1818), - [anon_sym_hide_DASHenv] = ACTIONS(1818), - [anon_sym_overlay] = ACTIONS(1818), - [anon_sym_as] = ACTIONS(1818), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1818), - [aux_sym__val_number_token5] = ACTIONS(1818), - [aux_sym__val_number_token6] = ACTIONS(1818), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), - }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_alias] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_let_DASHenv] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [aux_sym_cmd_identifier_token1] = ACTIONS(2431), - [aux_sym_cmd_identifier_token2] = ACTIONS(2433), - [aux_sym_cmd_identifier_token3] = ACTIONS(2433), - [aux_sym_cmd_identifier_token4] = ACTIONS(2433), - [aux_sym_cmd_identifier_token5] = ACTIONS(2433), - [aux_sym_cmd_identifier_token6] = ACTIONS(2433), - [aux_sym_cmd_identifier_token7] = ACTIONS(2433), - [aux_sym_cmd_identifier_token8] = ACTIONS(2431), - [aux_sym_cmd_identifier_token9] = ACTIONS(2431), - [aux_sym_cmd_identifier_token10] = ACTIONS(2433), - [aux_sym_cmd_identifier_token11] = ACTIONS(2433), - [aux_sym_cmd_identifier_token12] = ACTIONS(2431), - [aux_sym_cmd_identifier_token13] = ACTIONS(2431), - [aux_sym_cmd_identifier_token14] = ACTIONS(2431), - [aux_sym_cmd_identifier_token15] = ACTIONS(2431), - [aux_sym_cmd_identifier_token16] = ACTIONS(2433), - [aux_sym_cmd_identifier_token17] = ACTIONS(2433), - [aux_sym_cmd_identifier_token18] = ACTIONS(2433), - [aux_sym_cmd_identifier_token19] = ACTIONS(2433), - [aux_sym_cmd_identifier_token20] = ACTIONS(2433), - [aux_sym_cmd_identifier_token21] = ACTIONS(2433), - [aux_sym_cmd_identifier_token22] = ACTIONS(2433), - [aux_sym_cmd_identifier_token23] = ACTIONS(2433), - [aux_sym_cmd_identifier_token24] = ACTIONS(2433), - [aux_sym_cmd_identifier_token25] = ACTIONS(2433), - [aux_sym_cmd_identifier_token26] = ACTIONS(2433), - [aux_sym_cmd_identifier_token27] = ACTIONS(2433), - [aux_sym_cmd_identifier_token28] = ACTIONS(2433), - [aux_sym_cmd_identifier_token29] = ACTIONS(2433), - [aux_sym_cmd_identifier_token30] = ACTIONS(2433), - [aux_sym_cmd_identifier_token31] = ACTIONS(2433), - [aux_sym_cmd_identifier_token32] = ACTIONS(2433), - [aux_sym_cmd_identifier_token33] = ACTIONS(2433), - [aux_sym_cmd_identifier_token34] = ACTIONS(2431), - [aux_sym_cmd_identifier_token35] = ACTIONS(2433), - [aux_sym_cmd_identifier_token36] = ACTIONS(2433), - [aux_sym_cmd_identifier_token37] = ACTIONS(2433), - [aux_sym_cmd_identifier_token38] = ACTIONS(2431), - [aux_sym_cmd_identifier_token39] = ACTIONS(2433), - [aux_sym_cmd_identifier_token40] = ACTIONS(2433), - [anon_sym_def] = ACTIONS(2431), - [anon_sym_export_DASHenv] = ACTIONS(2431), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_error] = ACTIONS(2431), - [anon_sym_DASH2] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_in2] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_make] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_else] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_catch] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_source] = ACTIONS(2431), - [anon_sym_source_DASHenv] = ACTIONS(2431), - [anon_sym_register] = ACTIONS(2431), - [anon_sym_hide] = ACTIONS(2431), - [anon_sym_hide_DASHenv] = ACTIONS(2431), - [anon_sym_overlay] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_PLUS2] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), - [aux_sym__val_number_decimal_token1] = ACTIONS(2431), - [aux_sym__val_number_decimal_token2] = ACTIONS(2433), - [aux_sym__val_number_decimal_token3] = ACTIONS(2433), - [aux_sym__val_number_decimal_token4] = ACTIONS(2433), - [aux_sym__val_number_token1] = ACTIONS(2433), - [aux_sym__val_number_token2] = ACTIONS(2433), - [aux_sym__val_number_token3] = ACTIONS(2433), - [aux_sym__val_number_token4] = ACTIONS(2431), - [aux_sym__val_number_token5] = ACTIONS(2431), - [aux_sym__val_number_token6] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2433), - [sym__str_single_quotes] = ACTIONS(2433), - [sym__str_back_ticks] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2433), - }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2532), - [anon_sym_alias] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_let_DASHenv] = ACTIONS(2532), - [anon_sym_mut] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [aux_sym_cmd_identifier_token1] = ACTIONS(2532), - [aux_sym_cmd_identifier_token2] = ACTIONS(2534), - [aux_sym_cmd_identifier_token3] = ACTIONS(2534), - [aux_sym_cmd_identifier_token4] = ACTIONS(2534), - [aux_sym_cmd_identifier_token5] = ACTIONS(2534), - [aux_sym_cmd_identifier_token6] = ACTIONS(2534), - [aux_sym_cmd_identifier_token7] = ACTIONS(2534), - [aux_sym_cmd_identifier_token8] = ACTIONS(2532), - [aux_sym_cmd_identifier_token9] = ACTIONS(2532), - [aux_sym_cmd_identifier_token10] = ACTIONS(2534), - [aux_sym_cmd_identifier_token11] = ACTIONS(2534), - [aux_sym_cmd_identifier_token12] = ACTIONS(2532), - [aux_sym_cmd_identifier_token13] = ACTIONS(2532), - [aux_sym_cmd_identifier_token14] = ACTIONS(2532), - [aux_sym_cmd_identifier_token15] = ACTIONS(2532), - [aux_sym_cmd_identifier_token16] = ACTIONS(2534), - [aux_sym_cmd_identifier_token17] = ACTIONS(2534), - [aux_sym_cmd_identifier_token18] = ACTIONS(2534), - [aux_sym_cmd_identifier_token19] = ACTIONS(2534), - [aux_sym_cmd_identifier_token20] = ACTIONS(2534), - [aux_sym_cmd_identifier_token21] = ACTIONS(2534), - [aux_sym_cmd_identifier_token22] = ACTIONS(2534), - [aux_sym_cmd_identifier_token23] = ACTIONS(2534), - [aux_sym_cmd_identifier_token24] = ACTIONS(2534), - [aux_sym_cmd_identifier_token25] = ACTIONS(2534), - [aux_sym_cmd_identifier_token26] = ACTIONS(2534), - [aux_sym_cmd_identifier_token27] = ACTIONS(2534), - [aux_sym_cmd_identifier_token28] = ACTIONS(2534), - [aux_sym_cmd_identifier_token29] = ACTIONS(2534), - [aux_sym_cmd_identifier_token30] = ACTIONS(2534), - [aux_sym_cmd_identifier_token31] = ACTIONS(2534), - [aux_sym_cmd_identifier_token32] = ACTIONS(2534), - [aux_sym_cmd_identifier_token33] = ACTIONS(2534), - [aux_sym_cmd_identifier_token34] = ACTIONS(2532), - [aux_sym_cmd_identifier_token35] = ACTIONS(2534), - [aux_sym_cmd_identifier_token36] = ACTIONS(2534), - [aux_sym_cmd_identifier_token37] = ACTIONS(2534), - [aux_sym_cmd_identifier_token38] = ACTIONS(2532), - [aux_sym_cmd_identifier_token39] = ACTIONS(2534), - [aux_sym_cmd_identifier_token40] = ACTIONS(2534), - [anon_sym_def] = ACTIONS(2532), - [anon_sym_export_DASHenv] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_module] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_DOLLAR] = ACTIONS(2534), - [anon_sym_error] = ACTIONS(2532), - [anon_sym_DASH2] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_in2] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_make] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_do] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_catch] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_source] = ACTIONS(2532), - [anon_sym_source_DASHenv] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_hide] = ACTIONS(2532), - [anon_sym_hide_DASHenv] = ACTIONS(2532), - [anon_sym_overlay] = ACTIONS(2532), - [anon_sym_as] = ACTIONS(2532), - [anon_sym_PLUS2] = ACTIONS(2532), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2534), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2534), - [aux_sym__val_number_decimal_token1] = ACTIONS(2532), - [aux_sym__val_number_decimal_token2] = ACTIONS(2534), - [aux_sym__val_number_decimal_token3] = ACTIONS(2534), - [aux_sym__val_number_decimal_token4] = ACTIONS(2534), - [aux_sym__val_number_token1] = ACTIONS(2534), - [aux_sym__val_number_token2] = ACTIONS(2534), - [aux_sym__val_number_token3] = ACTIONS(2534), - [aux_sym__val_number_token4] = ACTIONS(2532), - [aux_sym__val_number_token5] = ACTIONS(2532), - [aux_sym__val_number_token6] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym__str_single_quotes] = ACTIONS(2534), - [sym__str_back_ticks] = ACTIONS(2534), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2534), - }, - [707] = { - [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(1052), - [anon_sym_alias] = ACTIONS(1052), - [anon_sym_let] = ACTIONS(1052), - [anon_sym_let_DASHenv] = ACTIONS(1052), - [anon_sym_mut] = ACTIONS(1052), - [anon_sym_const] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1052), - [aux_sym_cmd_identifier_token2] = ACTIONS(1054), - [aux_sym_cmd_identifier_token3] = ACTIONS(1054), - [aux_sym_cmd_identifier_token4] = ACTIONS(1054), - [aux_sym_cmd_identifier_token5] = ACTIONS(1054), - [aux_sym_cmd_identifier_token6] = ACTIONS(1054), - [aux_sym_cmd_identifier_token7] = ACTIONS(1054), - [aux_sym_cmd_identifier_token8] = ACTIONS(1052), - [aux_sym_cmd_identifier_token9] = ACTIONS(1052), - [aux_sym_cmd_identifier_token10] = ACTIONS(1054), - [aux_sym_cmd_identifier_token11] = ACTIONS(1054), - [aux_sym_cmd_identifier_token12] = ACTIONS(1052), - [aux_sym_cmd_identifier_token13] = ACTIONS(1052), - [aux_sym_cmd_identifier_token14] = ACTIONS(1052), - [aux_sym_cmd_identifier_token15] = ACTIONS(1052), - [aux_sym_cmd_identifier_token16] = ACTIONS(1054), - [aux_sym_cmd_identifier_token17] = ACTIONS(1054), - [aux_sym_cmd_identifier_token18] = ACTIONS(1054), - [aux_sym_cmd_identifier_token19] = ACTIONS(1054), - [aux_sym_cmd_identifier_token20] = ACTIONS(1054), - [aux_sym_cmd_identifier_token21] = ACTIONS(1054), - [aux_sym_cmd_identifier_token22] = ACTIONS(1054), - [aux_sym_cmd_identifier_token23] = ACTIONS(1054), - [aux_sym_cmd_identifier_token24] = ACTIONS(1054), - [aux_sym_cmd_identifier_token25] = ACTIONS(1054), - [aux_sym_cmd_identifier_token26] = ACTIONS(1054), - [aux_sym_cmd_identifier_token27] = ACTIONS(1054), - [aux_sym_cmd_identifier_token28] = ACTIONS(1054), - [aux_sym_cmd_identifier_token29] = ACTIONS(1054), - [aux_sym_cmd_identifier_token30] = ACTIONS(1054), - [aux_sym_cmd_identifier_token31] = ACTIONS(1054), - [aux_sym_cmd_identifier_token32] = ACTIONS(1054), - [aux_sym_cmd_identifier_token33] = ACTIONS(1054), - [aux_sym_cmd_identifier_token34] = ACTIONS(1052), - [aux_sym_cmd_identifier_token35] = ACTIONS(1054), - [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [aux_sym_cmd_identifier_token37] = ACTIONS(1054), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), - [anon_sym_def] = ACTIONS(1052), - [anon_sym_export_DASHenv] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(1052), - [anon_sym_module] = ACTIONS(1052), - [anon_sym_use] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_error] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1052), - [anon_sym_loop] = ACTIONS(1052), - [anon_sym_make] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_do] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_source] = ACTIONS(1052), - [anon_sym_source_DASHenv] = ACTIONS(1052), - [anon_sym_register] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_hide_DASHenv] = ACTIONS(1052), - [anon_sym_overlay] = ACTIONS(1052), - [anon_sym_as] = ACTIONS(1052), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1052), - [aux_sym__val_number_token5] = ACTIONS(1052), - [aux_sym__val_number_token6] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1054), - }, - [708] = { - [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_alias] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_let_DASHenv] = ACTIONS(2520), - [anon_sym_mut] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [aux_sym_cmd_identifier_token1] = ACTIONS(2520), - [aux_sym_cmd_identifier_token2] = ACTIONS(2522), - [aux_sym_cmd_identifier_token3] = ACTIONS(2522), - [aux_sym_cmd_identifier_token4] = ACTIONS(2522), - [aux_sym_cmd_identifier_token5] = ACTIONS(2522), - [aux_sym_cmd_identifier_token6] = ACTIONS(2522), - [aux_sym_cmd_identifier_token7] = ACTIONS(2522), - [aux_sym_cmd_identifier_token8] = ACTIONS(2520), - [aux_sym_cmd_identifier_token9] = ACTIONS(2520), - [aux_sym_cmd_identifier_token10] = ACTIONS(2522), - [aux_sym_cmd_identifier_token11] = ACTIONS(2522), - [aux_sym_cmd_identifier_token12] = ACTIONS(2520), - [aux_sym_cmd_identifier_token13] = ACTIONS(2520), - [aux_sym_cmd_identifier_token14] = ACTIONS(2520), - [aux_sym_cmd_identifier_token15] = ACTIONS(2520), - [aux_sym_cmd_identifier_token16] = ACTIONS(2522), - [aux_sym_cmd_identifier_token17] = ACTIONS(2522), - [aux_sym_cmd_identifier_token18] = ACTIONS(2522), - [aux_sym_cmd_identifier_token19] = ACTIONS(2522), - [aux_sym_cmd_identifier_token20] = ACTIONS(2522), - [aux_sym_cmd_identifier_token21] = ACTIONS(2522), - [aux_sym_cmd_identifier_token22] = ACTIONS(2522), - [aux_sym_cmd_identifier_token23] = ACTIONS(2522), - [aux_sym_cmd_identifier_token24] = ACTIONS(2522), - [aux_sym_cmd_identifier_token25] = ACTIONS(2522), - [aux_sym_cmd_identifier_token26] = ACTIONS(2522), - [aux_sym_cmd_identifier_token27] = ACTIONS(2522), - [aux_sym_cmd_identifier_token28] = ACTIONS(2522), - [aux_sym_cmd_identifier_token29] = ACTIONS(2522), - [aux_sym_cmd_identifier_token30] = ACTIONS(2522), - [aux_sym_cmd_identifier_token31] = ACTIONS(2522), - [aux_sym_cmd_identifier_token32] = ACTIONS(2522), - [aux_sym_cmd_identifier_token33] = ACTIONS(2522), - [aux_sym_cmd_identifier_token34] = ACTIONS(2520), - [aux_sym_cmd_identifier_token35] = ACTIONS(2522), - [aux_sym_cmd_identifier_token36] = ACTIONS(2522), - [aux_sym_cmd_identifier_token37] = ACTIONS(2522), - [aux_sym_cmd_identifier_token38] = ACTIONS(2520), - [aux_sym_cmd_identifier_token39] = ACTIONS(2522), - [aux_sym_cmd_identifier_token40] = ACTIONS(2522), - [anon_sym_def] = ACTIONS(2520), - [anon_sym_export_DASHenv] = ACTIONS(2520), - [anon_sym_extern] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_use] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_DOLLAR] = ACTIONS(2522), - [anon_sym_error] = ACTIONS(2520), - [anon_sym_DASH2] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_in2] = ACTIONS(2520), - [anon_sym_loop] = ACTIONS(2520), - [anon_sym_make] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_match] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_catch] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_source] = ACTIONS(2520), - [anon_sym_source_DASHenv] = ACTIONS(2520), - [anon_sym_register] = ACTIONS(2520), - [anon_sym_hide] = ACTIONS(2520), - [anon_sym_hide_DASHenv] = ACTIONS(2520), - [anon_sym_overlay] = ACTIONS(2520), - [anon_sym_as] = ACTIONS(2520), - [anon_sym_PLUS2] = ACTIONS(2520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2522), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2522), - [aux_sym__val_number_decimal_token1] = ACTIONS(2520), - [aux_sym__val_number_decimal_token2] = ACTIONS(2522), - [aux_sym__val_number_decimal_token3] = ACTIONS(2522), - [aux_sym__val_number_decimal_token4] = ACTIONS(2522), - [aux_sym__val_number_token1] = ACTIONS(2522), - [aux_sym__val_number_token2] = ACTIONS(2522), - [aux_sym__val_number_token3] = ACTIONS(2522), - [aux_sym__val_number_token4] = ACTIONS(2520), - [aux_sym__val_number_token5] = ACTIONS(2520), - [aux_sym__val_number_token6] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2522), - [sym__str_single_quotes] = ACTIONS(2522), - [sym__str_back_ticks] = ACTIONS(2522), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2522), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2522), - }, - [709] = { - [sym_comment] = STATE(709), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_alias] = ACTIONS(2072), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_let_DASHenv] = ACTIONS(2072), - [anon_sym_mut] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [aux_sym_cmd_identifier_token1] = ACTIONS(2072), - [aux_sym_cmd_identifier_token2] = ACTIONS(2078), - [aux_sym_cmd_identifier_token3] = ACTIONS(2078), - [aux_sym_cmd_identifier_token4] = ACTIONS(2078), - [aux_sym_cmd_identifier_token5] = ACTIONS(2078), - [aux_sym_cmd_identifier_token6] = ACTIONS(2078), - [aux_sym_cmd_identifier_token7] = ACTIONS(2078), - [aux_sym_cmd_identifier_token8] = ACTIONS(2072), - [aux_sym_cmd_identifier_token9] = ACTIONS(2072), - [aux_sym_cmd_identifier_token10] = ACTIONS(2078), - [aux_sym_cmd_identifier_token11] = ACTIONS(2078), - [aux_sym_cmd_identifier_token12] = ACTIONS(2072), - [aux_sym_cmd_identifier_token13] = ACTIONS(2072), - [aux_sym_cmd_identifier_token14] = ACTIONS(2072), - [aux_sym_cmd_identifier_token15] = ACTIONS(2072), - [aux_sym_cmd_identifier_token16] = ACTIONS(2078), - [aux_sym_cmd_identifier_token17] = ACTIONS(2078), - [aux_sym_cmd_identifier_token18] = ACTIONS(2078), - [aux_sym_cmd_identifier_token19] = ACTIONS(2078), - [aux_sym_cmd_identifier_token20] = ACTIONS(2078), - [aux_sym_cmd_identifier_token21] = ACTIONS(2078), - [aux_sym_cmd_identifier_token22] = ACTIONS(2078), - [aux_sym_cmd_identifier_token23] = ACTIONS(2078), - [aux_sym_cmd_identifier_token24] = ACTIONS(2078), - [aux_sym_cmd_identifier_token25] = ACTIONS(2078), - [aux_sym_cmd_identifier_token26] = ACTIONS(2078), - [aux_sym_cmd_identifier_token27] = ACTIONS(2078), - [aux_sym_cmd_identifier_token28] = ACTIONS(2078), - [aux_sym_cmd_identifier_token29] = ACTIONS(2078), - [aux_sym_cmd_identifier_token30] = ACTIONS(2078), - [aux_sym_cmd_identifier_token31] = ACTIONS(2078), - [aux_sym_cmd_identifier_token32] = ACTIONS(2078), - [aux_sym_cmd_identifier_token33] = ACTIONS(2078), - [aux_sym_cmd_identifier_token34] = ACTIONS(2072), - [aux_sym_cmd_identifier_token35] = ACTIONS(2078), - [aux_sym_cmd_identifier_token36] = ACTIONS(2078), - [aux_sym_cmd_identifier_token37] = ACTIONS(2078), - [aux_sym_cmd_identifier_token38] = ACTIONS(2072), - [aux_sym_cmd_identifier_token39] = ACTIONS(2078), - [aux_sym_cmd_identifier_token40] = ACTIONS(2078), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_export_DASHenv] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_use] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2078), - [anon_sym_error] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_in2] = ACTIONS(2072), - [anon_sym_loop] = ACTIONS(2072), - [anon_sym_make] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_do] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_else] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_catch] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_source] = ACTIONS(2072), - [anon_sym_source_DASHenv] = ACTIONS(2072), - [anon_sym_register] = ACTIONS(2072), - [anon_sym_hide] = ACTIONS(2072), - [anon_sym_hide_DASHenv] = ACTIONS(2072), - [anon_sym_overlay] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2078), - [aux_sym__val_number_decimal_token3] = ACTIONS(2078), - [aux_sym__val_number_decimal_token4] = ACTIONS(2078), - [aux_sym__val_number_token1] = ACTIONS(2078), - [aux_sym__val_number_token2] = ACTIONS(2078), - [aux_sym__val_number_token3] = ACTIONS(2078), - [aux_sym__val_number_token4] = ACTIONS(2072), - [aux_sym__val_number_token5] = ACTIONS(2072), - [aux_sym__val_number_token6] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2078), - [sym__str_single_quotes] = ACTIONS(2078), - [sym__str_back_ticks] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2078), - }, - [710] = { - [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(1000), - [anon_sym_alias] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_let_DASHenv] = ACTIONS(1000), - [anon_sym_mut] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [aux_sym_cmd_identifier_token1] = ACTIONS(1000), - [aux_sym_cmd_identifier_token2] = ACTIONS(1002), - [aux_sym_cmd_identifier_token3] = ACTIONS(1002), - [aux_sym_cmd_identifier_token4] = ACTIONS(1002), - [aux_sym_cmd_identifier_token5] = ACTIONS(1002), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [aux_sym_cmd_identifier_token7] = ACTIONS(1002), - [aux_sym_cmd_identifier_token8] = ACTIONS(1000), - [aux_sym_cmd_identifier_token9] = ACTIONS(1000), - [aux_sym_cmd_identifier_token10] = ACTIONS(1002), - [aux_sym_cmd_identifier_token11] = ACTIONS(1002), - [aux_sym_cmd_identifier_token12] = ACTIONS(1000), - [aux_sym_cmd_identifier_token13] = ACTIONS(1000), - [aux_sym_cmd_identifier_token14] = ACTIONS(1000), - [aux_sym_cmd_identifier_token15] = ACTIONS(1000), - [aux_sym_cmd_identifier_token16] = ACTIONS(1002), - [aux_sym_cmd_identifier_token17] = ACTIONS(1002), - [aux_sym_cmd_identifier_token18] = ACTIONS(1002), - [aux_sym_cmd_identifier_token19] = ACTIONS(1002), - [aux_sym_cmd_identifier_token20] = ACTIONS(1002), - [aux_sym_cmd_identifier_token21] = ACTIONS(1002), - [aux_sym_cmd_identifier_token22] = ACTIONS(1002), - [aux_sym_cmd_identifier_token23] = ACTIONS(1002), - [aux_sym_cmd_identifier_token24] = ACTIONS(1002), - [aux_sym_cmd_identifier_token25] = ACTIONS(1002), - [aux_sym_cmd_identifier_token26] = ACTIONS(1002), - [aux_sym_cmd_identifier_token27] = ACTIONS(1002), - [aux_sym_cmd_identifier_token28] = ACTIONS(1002), - [aux_sym_cmd_identifier_token29] = ACTIONS(1002), - [aux_sym_cmd_identifier_token30] = ACTIONS(1002), - [aux_sym_cmd_identifier_token31] = ACTIONS(1002), - [aux_sym_cmd_identifier_token32] = ACTIONS(1002), - [aux_sym_cmd_identifier_token33] = ACTIONS(1002), - [aux_sym_cmd_identifier_token34] = ACTIONS(1000), - [aux_sym_cmd_identifier_token35] = ACTIONS(1002), - [aux_sym_cmd_identifier_token36] = ACTIONS(1002), - [aux_sym_cmd_identifier_token37] = ACTIONS(1002), - [aux_sym_cmd_identifier_token38] = ACTIONS(1000), - [aux_sym_cmd_identifier_token39] = ACTIONS(1002), - [aux_sym_cmd_identifier_token40] = ACTIONS(1002), - [anon_sym_def] = ACTIONS(1000), - [anon_sym_export_DASHenv] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_module] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1002), - [anon_sym_error] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_make] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1000), - [anon_sym_catch] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_source] = ACTIONS(1000), - [anon_sym_source_DASHenv] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_hide] = ACTIONS(1000), - [anon_sym_hide_DASHenv] = ACTIONS(1000), - [anon_sym_overlay] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [711] = { - [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1006), - [aux_sym_cmd_identifier_token3] = ACTIONS(1006), - [aux_sym_cmd_identifier_token4] = ACTIONS(1006), - [aux_sym_cmd_identifier_token5] = ACTIONS(1006), - [aux_sym_cmd_identifier_token6] = ACTIONS(1006), - [aux_sym_cmd_identifier_token7] = ACTIONS(1006), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1006), - [aux_sym_cmd_identifier_token11] = ACTIONS(1006), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1006), - [aux_sym_cmd_identifier_token17] = ACTIONS(1006), - [aux_sym_cmd_identifier_token18] = ACTIONS(1006), - [aux_sym_cmd_identifier_token19] = ACTIONS(1006), - [aux_sym_cmd_identifier_token20] = ACTIONS(1006), - [aux_sym_cmd_identifier_token21] = ACTIONS(1006), - [aux_sym_cmd_identifier_token22] = ACTIONS(1006), - [aux_sym_cmd_identifier_token23] = ACTIONS(1006), - [aux_sym_cmd_identifier_token24] = ACTIONS(1006), - [aux_sym_cmd_identifier_token25] = ACTIONS(1006), - [aux_sym_cmd_identifier_token26] = ACTIONS(1006), - [aux_sym_cmd_identifier_token27] = ACTIONS(1006), - [aux_sym_cmd_identifier_token28] = ACTIONS(1006), - [aux_sym_cmd_identifier_token29] = ACTIONS(1006), - [aux_sym_cmd_identifier_token30] = ACTIONS(1006), - [aux_sym_cmd_identifier_token31] = ACTIONS(1006), - [aux_sym_cmd_identifier_token32] = ACTIONS(1006), - [aux_sym_cmd_identifier_token33] = ACTIONS(1006), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1006), - [aux_sym_cmd_identifier_token36] = ACTIONS(1006), - [aux_sym_cmd_identifier_token37] = ACTIONS(1006), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1006), - [aux_sym_cmd_identifier_token40] = ACTIONS(1006), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [712] = { - [sym_comment] = STATE(712), - [anon_sym_export] = ACTIONS(996), - [anon_sym_alias] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_let_DASHenv] = ACTIONS(996), - [anon_sym_mut] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [aux_sym_cmd_identifier_token1] = ACTIONS(996), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(996), - [aux_sym_cmd_identifier_token9] = ACTIONS(996), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(996), - [aux_sym_cmd_identifier_token13] = ACTIONS(996), - [aux_sym_cmd_identifier_token14] = ACTIONS(996), - [aux_sym_cmd_identifier_token15] = ACTIONS(996), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(996), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(996), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(996), - [anon_sym_export_DASHenv] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_module] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_make] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_do] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_else] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(996), - [anon_sym_catch] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_source] = ACTIONS(996), - [anon_sym_source_DASHenv] = ACTIONS(996), - [anon_sym_register] = ACTIONS(996), - [anon_sym_hide] = ACTIONS(996), - [anon_sym_hide_DASHenv] = ACTIONS(996), - [anon_sym_overlay] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(996), - [aux_sym__val_number_token5] = ACTIONS(996), - [aux_sym__val_number_token6] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [aux_sym_cmd_identifier_token2] = ACTIONS(988), - [aux_sym_cmd_identifier_token3] = ACTIONS(988), - [aux_sym_cmd_identifier_token4] = ACTIONS(988), - [aux_sym_cmd_identifier_token5] = ACTIONS(988), - [aux_sym_cmd_identifier_token6] = ACTIONS(988), - [aux_sym_cmd_identifier_token7] = ACTIONS(988), - [aux_sym_cmd_identifier_token8] = ACTIONS(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(988), - [aux_sym_cmd_identifier_token11] = ACTIONS(988), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [aux_sym_cmd_identifier_token16] = ACTIONS(988), - [aux_sym_cmd_identifier_token17] = ACTIONS(988), - [aux_sym_cmd_identifier_token18] = ACTIONS(988), - [aux_sym_cmd_identifier_token19] = ACTIONS(988), - [aux_sym_cmd_identifier_token20] = ACTIONS(988), - [aux_sym_cmd_identifier_token21] = ACTIONS(988), - [aux_sym_cmd_identifier_token22] = ACTIONS(988), - [aux_sym_cmd_identifier_token23] = ACTIONS(988), - [aux_sym_cmd_identifier_token24] = ACTIONS(988), - [aux_sym_cmd_identifier_token25] = ACTIONS(988), - [aux_sym_cmd_identifier_token26] = ACTIONS(988), - [aux_sym_cmd_identifier_token27] = ACTIONS(988), - [aux_sym_cmd_identifier_token28] = ACTIONS(988), - [aux_sym_cmd_identifier_token29] = ACTIONS(988), - [aux_sym_cmd_identifier_token30] = ACTIONS(988), - [aux_sym_cmd_identifier_token31] = ACTIONS(988), - [aux_sym_cmd_identifier_token32] = ACTIONS(988), - [aux_sym_cmd_identifier_token33] = ACTIONS(988), - [aux_sym_cmd_identifier_token34] = ACTIONS(986), - [aux_sym_cmd_identifier_token35] = ACTIONS(988), - [aux_sym_cmd_identifier_token36] = ACTIONS(988), - [aux_sym_cmd_identifier_token37] = ACTIONS(988), - [aux_sym_cmd_identifier_token38] = ACTIONS(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(988), - [aux_sym_cmd_identifier_token40] = ACTIONS(988), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_register] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [714] = { - [sym_comment] = STATE(714), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [aux_sym_cmd_identifier_token1] = ACTIONS(1779), - [aux_sym_cmd_identifier_token2] = ACTIONS(1781), - [aux_sym_cmd_identifier_token3] = ACTIONS(1781), - [aux_sym_cmd_identifier_token4] = ACTIONS(1781), - [aux_sym_cmd_identifier_token5] = ACTIONS(1781), - [aux_sym_cmd_identifier_token6] = ACTIONS(1781), - [aux_sym_cmd_identifier_token7] = ACTIONS(1781), - [aux_sym_cmd_identifier_token8] = ACTIONS(1779), - [aux_sym_cmd_identifier_token9] = ACTIONS(1779), - [aux_sym_cmd_identifier_token10] = ACTIONS(1781), - [aux_sym_cmd_identifier_token11] = ACTIONS(1781), - [aux_sym_cmd_identifier_token12] = ACTIONS(1779), - [aux_sym_cmd_identifier_token13] = ACTIONS(1779), - [aux_sym_cmd_identifier_token14] = ACTIONS(1779), - [aux_sym_cmd_identifier_token15] = ACTIONS(1779), - [aux_sym_cmd_identifier_token16] = ACTIONS(1781), - [aux_sym_cmd_identifier_token17] = ACTIONS(1781), - [aux_sym_cmd_identifier_token18] = ACTIONS(1781), - [aux_sym_cmd_identifier_token19] = ACTIONS(1781), - [aux_sym_cmd_identifier_token20] = ACTIONS(1781), - [aux_sym_cmd_identifier_token21] = ACTIONS(1781), - [aux_sym_cmd_identifier_token22] = ACTIONS(1781), - [aux_sym_cmd_identifier_token23] = ACTIONS(1781), - [aux_sym_cmd_identifier_token24] = ACTIONS(1781), - [aux_sym_cmd_identifier_token25] = ACTIONS(1781), - [aux_sym_cmd_identifier_token26] = ACTIONS(1781), - [aux_sym_cmd_identifier_token27] = ACTIONS(1781), - [aux_sym_cmd_identifier_token28] = ACTIONS(1781), - [aux_sym_cmd_identifier_token29] = ACTIONS(1781), - [aux_sym_cmd_identifier_token30] = ACTIONS(1781), - [aux_sym_cmd_identifier_token31] = ACTIONS(1781), - [aux_sym_cmd_identifier_token32] = ACTIONS(1781), - [aux_sym_cmd_identifier_token33] = ACTIONS(1781), - [aux_sym_cmd_identifier_token34] = ACTIONS(1779), - [aux_sym_cmd_identifier_token35] = ACTIONS(1781), - [aux_sym_cmd_identifier_token36] = ACTIONS(1781), - [aux_sym_cmd_identifier_token37] = ACTIONS(1781), - [aux_sym_cmd_identifier_token38] = ACTIONS(1779), - [aux_sym_cmd_identifier_token39] = ACTIONS(1781), - [aux_sym_cmd_identifier_token40] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1781), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_in2] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_make] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_catch] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1779), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1779), - [aux_sym__val_number_token5] = ACTIONS(1779), - [aux_sym__val_number_token6] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1781), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [715] = { - [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_alias] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_let_DASHenv] = ACTIONS(1304), - [anon_sym_mut] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [aux_sym_cmd_identifier_token1] = ACTIONS(1304), - [aux_sym_cmd_identifier_token2] = ACTIONS(1302), - [aux_sym_cmd_identifier_token3] = ACTIONS(1302), - [aux_sym_cmd_identifier_token4] = ACTIONS(1302), - [aux_sym_cmd_identifier_token5] = ACTIONS(1302), - [aux_sym_cmd_identifier_token6] = ACTIONS(1302), - [aux_sym_cmd_identifier_token7] = ACTIONS(1302), - [aux_sym_cmd_identifier_token8] = ACTIONS(1304), - [aux_sym_cmd_identifier_token9] = ACTIONS(1304), - [aux_sym_cmd_identifier_token10] = ACTIONS(1302), - [aux_sym_cmd_identifier_token11] = ACTIONS(1302), - [aux_sym_cmd_identifier_token12] = ACTIONS(1304), - [aux_sym_cmd_identifier_token13] = ACTIONS(1304), - [aux_sym_cmd_identifier_token14] = ACTIONS(1304), - [aux_sym_cmd_identifier_token15] = ACTIONS(1304), - [aux_sym_cmd_identifier_token16] = ACTIONS(1302), - [aux_sym_cmd_identifier_token17] = ACTIONS(1302), - [aux_sym_cmd_identifier_token18] = ACTIONS(1302), - [aux_sym_cmd_identifier_token19] = ACTIONS(1302), - [aux_sym_cmd_identifier_token20] = ACTIONS(1302), - [aux_sym_cmd_identifier_token21] = ACTIONS(1302), - [aux_sym_cmd_identifier_token22] = ACTIONS(1302), - [aux_sym_cmd_identifier_token23] = ACTIONS(1302), - [aux_sym_cmd_identifier_token24] = ACTIONS(1302), - [aux_sym_cmd_identifier_token25] = ACTIONS(1302), - [aux_sym_cmd_identifier_token26] = ACTIONS(1302), - [aux_sym_cmd_identifier_token27] = ACTIONS(1302), - [aux_sym_cmd_identifier_token28] = ACTIONS(1302), - [aux_sym_cmd_identifier_token29] = ACTIONS(1302), - [aux_sym_cmd_identifier_token30] = ACTIONS(1302), - [aux_sym_cmd_identifier_token31] = ACTIONS(1302), - [aux_sym_cmd_identifier_token32] = ACTIONS(1302), - [aux_sym_cmd_identifier_token33] = ACTIONS(1302), - [aux_sym_cmd_identifier_token34] = ACTIONS(1304), - [aux_sym_cmd_identifier_token35] = ACTIONS(1302), - [aux_sym_cmd_identifier_token36] = ACTIONS(1302), - [aux_sym_cmd_identifier_token37] = ACTIONS(1302), - [aux_sym_cmd_identifier_token38] = ACTIONS(1304), - [aux_sym_cmd_identifier_token39] = ACTIONS(1302), - [aux_sym_cmd_identifier_token40] = ACTIONS(1302), - [sym__newline] = ACTIONS(1302), - [anon_sym_def] = ACTIONS(1304), - [anon_sym_export_DASHenv] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1302), - [anon_sym_error] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_in2] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_make] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1304), - [anon_sym_catch] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_source] = ACTIONS(1304), - [anon_sym_source_DASHenv] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_hide] = ACTIONS(1304), - [anon_sym_hide_DASHenv] = ACTIONS(1304), - [anon_sym_overlay] = ACTIONS(1304), - [anon_sym_as] = ACTIONS(1304), - [anon_sym_PLUS2] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1302), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1302), - }, - [716] = { - [sym_comment] = STATE(716), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_alias] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_let_DASHenv] = ACTIONS(2435), - [anon_sym_mut] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [aux_sym_cmd_identifier_token1] = ACTIONS(2435), - [aux_sym_cmd_identifier_token2] = ACTIONS(2437), - [aux_sym_cmd_identifier_token3] = ACTIONS(2437), - [aux_sym_cmd_identifier_token4] = ACTIONS(2437), - [aux_sym_cmd_identifier_token5] = ACTIONS(2437), - [aux_sym_cmd_identifier_token6] = ACTIONS(2437), - [aux_sym_cmd_identifier_token7] = ACTIONS(2437), - [aux_sym_cmd_identifier_token8] = ACTIONS(2435), - [aux_sym_cmd_identifier_token9] = ACTIONS(2435), - [aux_sym_cmd_identifier_token10] = ACTIONS(2437), - [aux_sym_cmd_identifier_token11] = ACTIONS(2437), - [aux_sym_cmd_identifier_token12] = ACTIONS(2435), - [aux_sym_cmd_identifier_token13] = ACTIONS(2435), - [aux_sym_cmd_identifier_token14] = ACTIONS(2435), - [aux_sym_cmd_identifier_token15] = ACTIONS(2435), - [aux_sym_cmd_identifier_token16] = ACTIONS(2437), - [aux_sym_cmd_identifier_token17] = ACTIONS(2437), - [aux_sym_cmd_identifier_token18] = ACTIONS(2437), - [aux_sym_cmd_identifier_token19] = ACTIONS(2437), - [aux_sym_cmd_identifier_token20] = ACTIONS(2437), - [aux_sym_cmd_identifier_token21] = ACTIONS(2437), - [aux_sym_cmd_identifier_token22] = ACTIONS(2437), - [aux_sym_cmd_identifier_token23] = ACTIONS(2437), - [aux_sym_cmd_identifier_token24] = ACTIONS(2437), - [aux_sym_cmd_identifier_token25] = ACTIONS(2437), - [aux_sym_cmd_identifier_token26] = ACTIONS(2437), - [aux_sym_cmd_identifier_token27] = ACTIONS(2437), - [aux_sym_cmd_identifier_token28] = ACTIONS(2437), - [aux_sym_cmd_identifier_token29] = ACTIONS(2437), - [aux_sym_cmd_identifier_token30] = ACTIONS(2437), - [aux_sym_cmd_identifier_token31] = ACTIONS(2437), - [aux_sym_cmd_identifier_token32] = ACTIONS(2437), - [aux_sym_cmd_identifier_token33] = ACTIONS(2437), - [aux_sym_cmd_identifier_token34] = ACTIONS(2435), - [aux_sym_cmd_identifier_token35] = ACTIONS(2437), - [aux_sym_cmd_identifier_token36] = ACTIONS(2437), - [aux_sym_cmd_identifier_token37] = ACTIONS(2437), - [aux_sym_cmd_identifier_token38] = ACTIONS(2435), - [aux_sym_cmd_identifier_token39] = ACTIONS(2437), - [aux_sym_cmd_identifier_token40] = ACTIONS(2437), - [anon_sym_def] = ACTIONS(2435), - [anon_sym_export_DASHenv] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2435), - [anon_sym_DASH2] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_in2] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_make] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_catch] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_source] = ACTIONS(2435), - [anon_sym_source_DASHenv] = ACTIONS(2435), - [anon_sym_register] = ACTIONS(2435), - [anon_sym_hide] = ACTIONS(2435), - [anon_sym_hide_DASHenv] = ACTIONS(2435), - [anon_sym_overlay] = ACTIONS(2435), - [anon_sym_as] = ACTIONS(2435), - [anon_sym_PLUS2] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2435), - [aux_sym__val_number_decimal_token2] = ACTIONS(2437), - [aux_sym__val_number_decimal_token3] = ACTIONS(2437), - [aux_sym__val_number_decimal_token4] = ACTIONS(2437), - [aux_sym__val_number_token1] = ACTIONS(2437), - [aux_sym__val_number_token2] = ACTIONS(2437), - [aux_sym__val_number_token3] = ACTIONS(2437), - [aux_sym__val_number_token4] = ACTIONS(2435), - [aux_sym__val_number_token5] = ACTIONS(2435), - [aux_sym__val_number_token6] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2437), - [sym__str_single_quotes] = ACTIONS(2437), - [sym__str_back_ticks] = ACTIONS(2437), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2437), - }, - [717] = { - [aux_sym__pipe_separator] = STATE(717), - [sym_comment] = STATE(717), - [aux_sym_shebang_repeat1] = STATE(5492), - [aux_sym_cmd_identifier_token1] = ACTIONS(2536), - [aux_sym_cmd_identifier_token2] = ACTIONS(2538), - [aux_sym_cmd_identifier_token3] = ACTIONS(2538), - [aux_sym_cmd_identifier_token4] = ACTIONS(2538), - [aux_sym_cmd_identifier_token5] = ACTIONS(2538), - [aux_sym_cmd_identifier_token6] = ACTIONS(2538), - [aux_sym_cmd_identifier_token7] = ACTIONS(2538), - [aux_sym_cmd_identifier_token8] = ACTIONS(2538), - [aux_sym_cmd_identifier_token9] = ACTIONS(2536), - [aux_sym_cmd_identifier_token10] = ACTIONS(2538), - [aux_sym_cmd_identifier_token11] = ACTIONS(2538), - [aux_sym_cmd_identifier_token12] = ACTIONS(2538), - [aux_sym_cmd_identifier_token13] = ACTIONS(2536), - [aux_sym_cmd_identifier_token14] = ACTIONS(2538), - [aux_sym_cmd_identifier_token15] = ACTIONS(2536), - [aux_sym_cmd_identifier_token16] = ACTIONS(2538), - [aux_sym_cmd_identifier_token17] = ACTIONS(2538), - [aux_sym_cmd_identifier_token18] = ACTIONS(2536), - [aux_sym_cmd_identifier_token19] = ACTIONS(2538), - [aux_sym_cmd_identifier_token20] = ACTIONS(2538), - [aux_sym_cmd_identifier_token21] = ACTIONS(2538), - [aux_sym_cmd_identifier_token22] = ACTIONS(2538), - [aux_sym_cmd_identifier_token23] = ACTIONS(2538), - [aux_sym_cmd_identifier_token24] = ACTIONS(2538), - [aux_sym_cmd_identifier_token25] = ACTIONS(2538), - [aux_sym_cmd_identifier_token26] = ACTIONS(2538), - [aux_sym_cmd_identifier_token27] = ACTIONS(2538), - [aux_sym_cmd_identifier_token28] = ACTIONS(2538), - [aux_sym_cmd_identifier_token29] = ACTIONS(2538), - [aux_sym_cmd_identifier_token30] = ACTIONS(2538), - [aux_sym_cmd_identifier_token31] = ACTIONS(2538), - [aux_sym_cmd_identifier_token32] = ACTIONS(2536), - [aux_sym_cmd_identifier_token33] = ACTIONS(2538), - [aux_sym_cmd_identifier_token34] = ACTIONS(2536), - [aux_sym_cmd_identifier_token35] = ACTIONS(2538), - [aux_sym_cmd_identifier_token36] = ACTIONS(2538), - [aux_sym_cmd_identifier_token37] = ACTIONS(2538), - [aux_sym_cmd_identifier_token38] = ACTIONS(2536), - [aux_sym_cmd_identifier_token39] = ACTIONS(2538), - [aux_sym_cmd_identifier_token40] = ACTIONS(2538), - [sym__newline] = ACTIONS(2540), - [anon_sym_PIPE] = ACTIONS(2543), - [anon_sym_err_GT_PIPE] = ACTIONS(2543), - [anon_sym_out_GT_PIPE] = ACTIONS(2543), - [anon_sym_e_GT_PIPE] = ACTIONS(2543), - [anon_sym_o_GT_PIPE] = ACTIONS(2543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(2536), - [anon_sym_DASH2] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_do] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_where] = ACTIONS(2538), - [aux_sym_expr_unary_token1] = ACTIONS(2538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2536), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [aux_sym__val_number_decimal_token1] = ACTIONS(2536), - [aux_sym__val_number_decimal_token2] = ACTIONS(2538), - [aux_sym__val_number_decimal_token3] = ACTIONS(2538), - [aux_sym__val_number_decimal_token4] = ACTIONS(2538), - [aux_sym__val_number_token1] = ACTIONS(2538), - [aux_sym__val_number_token2] = ACTIONS(2538), - [aux_sym__val_number_token3] = ACTIONS(2538), - [aux_sym__val_number_token4] = ACTIONS(2536), - [aux_sym__val_number_token5] = ACTIONS(2536), - [aux_sym__val_number_token6] = ACTIONS(2536), - [anon_sym_0b] = ACTIONS(2536), - [anon_sym_0o] = ACTIONS(2536), - [anon_sym_0x] = ACTIONS(2536), - [sym_val_date] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym__str_single_quotes] = ACTIONS(2538), - [sym__str_back_ticks] = ACTIONS(2538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2538), - [aux_sym_env_var_token1] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2538), - [aux_sym_command_token1] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2538), - }, - [718] = { - [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(2395), - [anon_sym_alias] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_let_DASHenv] = ACTIONS(2395), - [anon_sym_mut] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [aux_sym_cmd_identifier_token1] = ACTIONS(2395), - [aux_sym_cmd_identifier_token2] = ACTIONS(2397), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), - [aux_sym_cmd_identifier_token6] = ACTIONS(2397), - [aux_sym_cmd_identifier_token7] = ACTIONS(2397), - [aux_sym_cmd_identifier_token8] = ACTIONS(2395), - [aux_sym_cmd_identifier_token9] = ACTIONS(2395), - [aux_sym_cmd_identifier_token10] = ACTIONS(2397), - [aux_sym_cmd_identifier_token11] = ACTIONS(2397), - [aux_sym_cmd_identifier_token12] = ACTIONS(2395), - [aux_sym_cmd_identifier_token13] = ACTIONS(2395), - [aux_sym_cmd_identifier_token14] = ACTIONS(2395), - [aux_sym_cmd_identifier_token15] = ACTIONS(2395), - [aux_sym_cmd_identifier_token16] = ACTIONS(2397), - [aux_sym_cmd_identifier_token17] = ACTIONS(2397), - [aux_sym_cmd_identifier_token18] = ACTIONS(2397), - [aux_sym_cmd_identifier_token19] = ACTIONS(2397), - [aux_sym_cmd_identifier_token20] = ACTIONS(2397), - [aux_sym_cmd_identifier_token21] = ACTIONS(2397), - [aux_sym_cmd_identifier_token22] = ACTIONS(2397), - [aux_sym_cmd_identifier_token23] = ACTIONS(2397), - [aux_sym_cmd_identifier_token24] = ACTIONS(2397), - [aux_sym_cmd_identifier_token25] = ACTIONS(2397), - [aux_sym_cmd_identifier_token26] = ACTIONS(2397), - [aux_sym_cmd_identifier_token27] = ACTIONS(2397), - [aux_sym_cmd_identifier_token28] = ACTIONS(2397), - [aux_sym_cmd_identifier_token29] = ACTIONS(2397), - [aux_sym_cmd_identifier_token30] = ACTIONS(2397), - [aux_sym_cmd_identifier_token31] = ACTIONS(2397), - [aux_sym_cmd_identifier_token32] = ACTIONS(2397), - [aux_sym_cmd_identifier_token33] = ACTIONS(2397), - [aux_sym_cmd_identifier_token34] = ACTIONS(2395), - [aux_sym_cmd_identifier_token35] = ACTIONS(2397), - [aux_sym_cmd_identifier_token36] = ACTIONS(2397), - [aux_sym_cmd_identifier_token37] = ACTIONS(2397), - [aux_sym_cmd_identifier_token38] = ACTIONS(2395), - [aux_sym_cmd_identifier_token39] = ACTIONS(2397), - [aux_sym_cmd_identifier_token40] = ACTIONS(2397), - [anon_sym_def] = ACTIONS(2395), - [anon_sym_export_DASHenv] = ACTIONS(2395), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_module] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_error] = ACTIONS(2395), - [anon_sym_DASH2] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_in2] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_make] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_do] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2395), - [anon_sym_catch] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_source] = ACTIONS(2395), - [anon_sym_source_DASHenv] = ACTIONS(2395), - [anon_sym_register] = ACTIONS(2395), - [anon_sym_hide] = ACTIONS(2395), - [anon_sym_hide_DASHenv] = ACTIONS(2395), - [anon_sym_overlay] = ACTIONS(2395), - [anon_sym_as] = ACTIONS(2395), - [anon_sym_PLUS2] = ACTIONS(2395), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), - [aux_sym__val_number_decimal_token1] = ACTIONS(2395), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2397), - [aux_sym__val_number_decimal_token4] = ACTIONS(2397), - [aux_sym__val_number_token1] = ACTIONS(2397), - [aux_sym__val_number_token2] = ACTIONS(2397), - [aux_sym__val_number_token3] = ACTIONS(2397), - [aux_sym__val_number_token4] = ACTIONS(2395), - [aux_sym__val_number_token5] = ACTIONS(2395), - [aux_sym__val_number_token6] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2397), - [sym__str_single_quotes] = ACTIONS(2397), - [sym__str_back_ticks] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2397), - }, - [719] = { - [sym_comment] = STATE(719), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_alias] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_let_DASHenv] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [aux_sym_cmd_identifier_token1] = ACTIONS(2423), - [aux_sym_cmd_identifier_token2] = ACTIONS(2425), - [aux_sym_cmd_identifier_token3] = ACTIONS(2425), - [aux_sym_cmd_identifier_token4] = ACTIONS(2425), - [aux_sym_cmd_identifier_token5] = ACTIONS(2425), - [aux_sym_cmd_identifier_token6] = ACTIONS(2425), - [aux_sym_cmd_identifier_token7] = ACTIONS(2425), - [aux_sym_cmd_identifier_token8] = ACTIONS(2423), - [aux_sym_cmd_identifier_token9] = ACTIONS(2423), - [aux_sym_cmd_identifier_token10] = ACTIONS(2425), - [aux_sym_cmd_identifier_token11] = ACTIONS(2425), - [aux_sym_cmd_identifier_token12] = ACTIONS(2423), - [aux_sym_cmd_identifier_token13] = ACTIONS(2423), - [aux_sym_cmd_identifier_token14] = ACTIONS(2423), - [aux_sym_cmd_identifier_token15] = ACTIONS(2423), - [aux_sym_cmd_identifier_token16] = ACTIONS(2425), - [aux_sym_cmd_identifier_token17] = ACTIONS(2425), - [aux_sym_cmd_identifier_token18] = ACTIONS(2425), - [aux_sym_cmd_identifier_token19] = ACTIONS(2425), - [aux_sym_cmd_identifier_token20] = ACTIONS(2425), - [aux_sym_cmd_identifier_token21] = ACTIONS(2425), - [aux_sym_cmd_identifier_token22] = ACTIONS(2425), - [aux_sym_cmd_identifier_token23] = ACTIONS(2425), - [aux_sym_cmd_identifier_token24] = ACTIONS(2425), - [aux_sym_cmd_identifier_token25] = ACTIONS(2425), - [aux_sym_cmd_identifier_token26] = ACTIONS(2425), - [aux_sym_cmd_identifier_token27] = ACTIONS(2425), - [aux_sym_cmd_identifier_token28] = ACTIONS(2425), - [aux_sym_cmd_identifier_token29] = ACTIONS(2425), - [aux_sym_cmd_identifier_token30] = ACTIONS(2425), - [aux_sym_cmd_identifier_token31] = ACTIONS(2425), - [aux_sym_cmd_identifier_token32] = ACTIONS(2425), - [aux_sym_cmd_identifier_token33] = ACTIONS(2425), - [aux_sym_cmd_identifier_token34] = ACTIONS(2423), - [aux_sym_cmd_identifier_token35] = ACTIONS(2425), - [aux_sym_cmd_identifier_token36] = ACTIONS(2425), - [aux_sym_cmd_identifier_token37] = ACTIONS(2425), - [aux_sym_cmd_identifier_token38] = ACTIONS(2423), - [aux_sym_cmd_identifier_token39] = ACTIONS(2425), - [aux_sym_cmd_identifier_token40] = ACTIONS(2425), - [anon_sym_def] = ACTIONS(2423), - [anon_sym_export_DASHenv] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_error] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_in2] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_make] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_else] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_catch] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_source] = ACTIONS(2423), - [anon_sym_source_DASHenv] = ACTIONS(2423), - [anon_sym_register] = ACTIONS(2423), - [anon_sym_hide] = ACTIONS(2423), - [anon_sym_hide_DASHenv] = ACTIONS(2423), - [anon_sym_overlay] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_PLUS2] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), - [aux_sym__val_number_decimal_token1] = ACTIONS(2423), - [aux_sym__val_number_decimal_token2] = ACTIONS(2425), - [aux_sym__val_number_decimal_token3] = ACTIONS(2425), - [aux_sym__val_number_decimal_token4] = ACTIONS(2425), - [aux_sym__val_number_token1] = ACTIONS(2425), - [aux_sym__val_number_token2] = ACTIONS(2425), - [aux_sym__val_number_token3] = ACTIONS(2425), - [aux_sym__val_number_token4] = ACTIONS(2423), - [aux_sym__val_number_token5] = ACTIONS(2423), - [aux_sym__val_number_token6] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2425), - [sym__str_single_quotes] = ACTIONS(2425), - [sym__str_back_ticks] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2425), - }, - [720] = { - [sym_comment] = STATE(720), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1939), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1939), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1939), - [aux_sym_cmd_identifier_token32] = ACTIONS(1939), - [aux_sym_cmd_identifier_token33] = ACTIONS(1939), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [aux_sym_cmd_identifier_token37] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), - }, - [721] = { - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(2391), - [anon_sym_alias] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_let_DASHenv] = ACTIONS(2391), - [anon_sym_mut] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [aux_sym_cmd_identifier_token1] = ACTIONS(2391), - [aux_sym_cmd_identifier_token2] = ACTIONS(2393), - [aux_sym_cmd_identifier_token3] = ACTIONS(2393), - [aux_sym_cmd_identifier_token4] = ACTIONS(2393), - [aux_sym_cmd_identifier_token5] = ACTIONS(2393), - [aux_sym_cmd_identifier_token6] = ACTIONS(2393), - [aux_sym_cmd_identifier_token7] = ACTIONS(2393), - [aux_sym_cmd_identifier_token8] = ACTIONS(2391), - [aux_sym_cmd_identifier_token9] = ACTIONS(2391), - [aux_sym_cmd_identifier_token10] = ACTIONS(2393), - [aux_sym_cmd_identifier_token11] = ACTIONS(2393), - [aux_sym_cmd_identifier_token12] = ACTIONS(2391), - [aux_sym_cmd_identifier_token13] = ACTIONS(2391), - [aux_sym_cmd_identifier_token14] = ACTIONS(2391), - [aux_sym_cmd_identifier_token15] = ACTIONS(2391), - [aux_sym_cmd_identifier_token16] = ACTIONS(2393), - [aux_sym_cmd_identifier_token17] = ACTIONS(2393), - [aux_sym_cmd_identifier_token18] = ACTIONS(2393), - [aux_sym_cmd_identifier_token19] = ACTIONS(2393), - [aux_sym_cmd_identifier_token20] = ACTIONS(2393), - [aux_sym_cmd_identifier_token21] = ACTIONS(2393), - [aux_sym_cmd_identifier_token22] = ACTIONS(2393), - [aux_sym_cmd_identifier_token23] = ACTIONS(2393), - [aux_sym_cmd_identifier_token24] = ACTIONS(2393), - [aux_sym_cmd_identifier_token25] = ACTIONS(2393), - [aux_sym_cmd_identifier_token26] = ACTIONS(2393), - [aux_sym_cmd_identifier_token27] = ACTIONS(2393), - [aux_sym_cmd_identifier_token28] = ACTIONS(2393), - [aux_sym_cmd_identifier_token29] = ACTIONS(2393), - [aux_sym_cmd_identifier_token30] = ACTIONS(2393), - [aux_sym_cmd_identifier_token31] = ACTIONS(2393), - [aux_sym_cmd_identifier_token32] = ACTIONS(2393), - [aux_sym_cmd_identifier_token33] = ACTIONS(2393), - [aux_sym_cmd_identifier_token34] = ACTIONS(2391), - [aux_sym_cmd_identifier_token35] = ACTIONS(2393), - [aux_sym_cmd_identifier_token36] = ACTIONS(2393), - [aux_sym_cmd_identifier_token37] = ACTIONS(2393), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2393), - [aux_sym_cmd_identifier_token40] = ACTIONS(2393), - [anon_sym_def] = ACTIONS(2391), - [anon_sym_export_DASHenv] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_module] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_error] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_in2] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_make] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_do] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_source] = ACTIONS(2391), - [anon_sym_source_DASHenv] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_hide_DASHenv] = ACTIONS(2391), - [anon_sym_overlay] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2391), - [aux_sym__val_number_decimal_token2] = ACTIONS(2393), - [aux_sym__val_number_decimal_token3] = ACTIONS(2393), - [aux_sym__val_number_decimal_token4] = ACTIONS(2393), - [aux_sym__val_number_token1] = ACTIONS(2393), - [aux_sym__val_number_token2] = ACTIONS(2393), - [aux_sym__val_number_token3] = ACTIONS(2393), - [aux_sym__val_number_token4] = ACTIONS(2391), - [aux_sym__val_number_token5] = ACTIONS(2391), - [aux_sym__val_number_token6] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2393), - [sym__str_single_quotes] = ACTIONS(2393), - [sym__str_back_ticks] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2393), - }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_alias] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_let_DASHenv] = ACTIONS(2090), - [anon_sym_mut] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [aux_sym_cmd_identifier_token1] = ACTIONS(2090), - [aux_sym_cmd_identifier_token2] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [aux_sym_cmd_identifier_token6] = ACTIONS(2096), - [aux_sym_cmd_identifier_token7] = ACTIONS(2096), - [aux_sym_cmd_identifier_token8] = ACTIONS(2090), - [aux_sym_cmd_identifier_token9] = ACTIONS(2090), - [aux_sym_cmd_identifier_token10] = ACTIONS(2096), - [aux_sym_cmd_identifier_token11] = ACTIONS(2096), - [aux_sym_cmd_identifier_token12] = ACTIONS(2090), - [aux_sym_cmd_identifier_token13] = ACTIONS(2090), - [aux_sym_cmd_identifier_token14] = ACTIONS(2090), - [aux_sym_cmd_identifier_token15] = ACTIONS(2090), - [aux_sym_cmd_identifier_token16] = ACTIONS(2096), - [aux_sym_cmd_identifier_token17] = ACTIONS(2096), - [aux_sym_cmd_identifier_token18] = ACTIONS(2096), - [aux_sym_cmd_identifier_token19] = ACTIONS(2096), - [aux_sym_cmd_identifier_token20] = ACTIONS(2096), - [aux_sym_cmd_identifier_token21] = ACTIONS(2096), - [aux_sym_cmd_identifier_token22] = ACTIONS(2096), - [aux_sym_cmd_identifier_token23] = ACTIONS(2096), - [aux_sym_cmd_identifier_token24] = ACTIONS(2096), - [aux_sym_cmd_identifier_token25] = ACTIONS(2096), - [aux_sym_cmd_identifier_token26] = ACTIONS(2096), - [aux_sym_cmd_identifier_token27] = ACTIONS(2096), - [aux_sym_cmd_identifier_token28] = ACTIONS(2096), - [aux_sym_cmd_identifier_token29] = ACTIONS(2096), - [aux_sym_cmd_identifier_token30] = ACTIONS(2096), - [aux_sym_cmd_identifier_token31] = ACTIONS(2096), - [aux_sym_cmd_identifier_token32] = ACTIONS(2096), - [aux_sym_cmd_identifier_token33] = ACTIONS(2096), - [aux_sym_cmd_identifier_token34] = ACTIONS(2090), - [aux_sym_cmd_identifier_token35] = ACTIONS(2096), - [aux_sym_cmd_identifier_token36] = ACTIONS(2096), - [aux_sym_cmd_identifier_token37] = ACTIONS(2096), - [aux_sym_cmd_identifier_token38] = ACTIONS(2090), - [aux_sym_cmd_identifier_token39] = ACTIONS(2096), - [aux_sym_cmd_identifier_token40] = ACTIONS(2096), - [anon_sym_def] = ACTIONS(2090), - [anon_sym_export_DASHenv] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_use] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2096), - [anon_sym_error] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_in2] = ACTIONS(2090), - [anon_sym_loop] = ACTIONS(2090), - [anon_sym_make] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_match] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_catch] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_source] = ACTIONS(2090), - [anon_sym_source_DASHenv] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_hide] = ACTIONS(2090), - [anon_sym_hide_DASHenv] = ACTIONS(2090), - [anon_sym_overlay] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2090), - [aux_sym__val_number_token5] = ACTIONS(2090), - [aux_sym__val_number_token6] = ACTIONS(2090), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2096), - }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_alias] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_let_DASHenv] = ACTIONS(2458), - [anon_sym_mut] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [aux_sym_cmd_identifier_token1] = ACTIONS(2458), - [aux_sym_cmd_identifier_token2] = ACTIONS(2460), - [aux_sym_cmd_identifier_token3] = ACTIONS(2460), - [aux_sym_cmd_identifier_token4] = ACTIONS(2460), - [aux_sym_cmd_identifier_token5] = ACTIONS(2460), - [aux_sym_cmd_identifier_token6] = ACTIONS(2460), - [aux_sym_cmd_identifier_token7] = ACTIONS(2460), - [aux_sym_cmd_identifier_token8] = ACTIONS(2458), - [aux_sym_cmd_identifier_token9] = ACTIONS(2458), - [aux_sym_cmd_identifier_token10] = ACTIONS(2460), - [aux_sym_cmd_identifier_token11] = ACTIONS(2460), - [aux_sym_cmd_identifier_token12] = ACTIONS(2458), - [aux_sym_cmd_identifier_token13] = ACTIONS(2458), - [aux_sym_cmd_identifier_token14] = ACTIONS(2458), - [aux_sym_cmd_identifier_token15] = ACTIONS(2458), - [aux_sym_cmd_identifier_token16] = ACTIONS(2460), - [aux_sym_cmd_identifier_token17] = ACTIONS(2460), - [aux_sym_cmd_identifier_token18] = ACTIONS(2460), - [aux_sym_cmd_identifier_token19] = ACTIONS(2460), - [aux_sym_cmd_identifier_token20] = ACTIONS(2460), - [aux_sym_cmd_identifier_token21] = ACTIONS(2460), - [aux_sym_cmd_identifier_token22] = ACTIONS(2460), - [aux_sym_cmd_identifier_token23] = ACTIONS(2460), - [aux_sym_cmd_identifier_token24] = ACTIONS(2460), - [aux_sym_cmd_identifier_token25] = ACTIONS(2460), - [aux_sym_cmd_identifier_token26] = ACTIONS(2460), - [aux_sym_cmd_identifier_token27] = ACTIONS(2460), - [aux_sym_cmd_identifier_token28] = ACTIONS(2460), - [aux_sym_cmd_identifier_token29] = ACTIONS(2460), - [aux_sym_cmd_identifier_token30] = ACTIONS(2460), - [aux_sym_cmd_identifier_token31] = ACTIONS(2460), - [aux_sym_cmd_identifier_token32] = ACTIONS(2460), - [aux_sym_cmd_identifier_token33] = ACTIONS(2460), - [aux_sym_cmd_identifier_token34] = ACTIONS(2458), - [aux_sym_cmd_identifier_token35] = ACTIONS(2460), - [aux_sym_cmd_identifier_token36] = ACTIONS(2460), - [aux_sym_cmd_identifier_token37] = ACTIONS(2460), - [aux_sym_cmd_identifier_token38] = ACTIONS(2458), - [aux_sym_cmd_identifier_token39] = ACTIONS(2460), - [aux_sym_cmd_identifier_token40] = ACTIONS(2460), - [anon_sym_def] = ACTIONS(2458), - [anon_sym_export_DASHenv] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_DOLLAR] = ACTIONS(2460), - [anon_sym_error] = ACTIONS(2458), - [anon_sym_DASH2] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_in2] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_make] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_catch] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_source] = ACTIONS(2458), - [anon_sym_source_DASHenv] = ACTIONS(2458), - [anon_sym_register] = ACTIONS(2458), - [anon_sym_hide] = ACTIONS(2458), - [anon_sym_hide_DASHenv] = ACTIONS(2458), - [anon_sym_overlay] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2458), - [anon_sym_PLUS2] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), - [aux_sym__val_number_decimal_token1] = ACTIONS(2458), - [aux_sym__val_number_decimal_token2] = ACTIONS(2460), - [aux_sym__val_number_decimal_token3] = ACTIONS(2460), - [aux_sym__val_number_decimal_token4] = ACTIONS(2460), - [aux_sym__val_number_token1] = ACTIONS(2460), - [aux_sym__val_number_token2] = ACTIONS(2460), - [aux_sym__val_number_token3] = ACTIONS(2460), - [aux_sym__val_number_token4] = ACTIONS(2458), - [aux_sym__val_number_token5] = ACTIONS(2458), - [aux_sym__val_number_token6] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2460), - [sym__str_single_quotes] = ACTIONS(2460), - [sym__str_back_ticks] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2460), - }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_let_DASHenv] = ACTIONS(2098), - [anon_sym_mut] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [aux_sym_cmd_identifier_token2] = ACTIONS(2104), - [aux_sym_cmd_identifier_token3] = ACTIONS(2104), - [aux_sym_cmd_identifier_token4] = ACTIONS(2104), - [aux_sym_cmd_identifier_token5] = ACTIONS(2104), - [aux_sym_cmd_identifier_token6] = ACTIONS(2104), - [aux_sym_cmd_identifier_token7] = ACTIONS(2104), - [aux_sym_cmd_identifier_token8] = ACTIONS(2098), - [aux_sym_cmd_identifier_token9] = ACTIONS(2098), - [aux_sym_cmd_identifier_token10] = ACTIONS(2104), - [aux_sym_cmd_identifier_token11] = ACTIONS(2104), - [aux_sym_cmd_identifier_token12] = ACTIONS(2098), - [aux_sym_cmd_identifier_token13] = ACTIONS(2098), - [aux_sym_cmd_identifier_token14] = ACTIONS(2098), - [aux_sym_cmd_identifier_token15] = ACTIONS(2098), - [aux_sym_cmd_identifier_token16] = ACTIONS(2104), - [aux_sym_cmd_identifier_token17] = ACTIONS(2104), - [aux_sym_cmd_identifier_token18] = ACTIONS(2104), - [aux_sym_cmd_identifier_token19] = ACTIONS(2104), - [aux_sym_cmd_identifier_token20] = ACTIONS(2104), - [aux_sym_cmd_identifier_token21] = ACTIONS(2104), - [aux_sym_cmd_identifier_token22] = ACTIONS(2104), - [aux_sym_cmd_identifier_token23] = ACTIONS(2104), - [aux_sym_cmd_identifier_token24] = ACTIONS(2104), - [aux_sym_cmd_identifier_token25] = ACTIONS(2104), - [aux_sym_cmd_identifier_token26] = ACTIONS(2104), - [aux_sym_cmd_identifier_token27] = ACTIONS(2104), - [aux_sym_cmd_identifier_token28] = ACTIONS(2104), - [aux_sym_cmd_identifier_token29] = ACTIONS(2104), - [aux_sym_cmd_identifier_token30] = ACTIONS(2104), - [aux_sym_cmd_identifier_token31] = ACTIONS(2104), - [aux_sym_cmd_identifier_token32] = ACTIONS(2104), - [aux_sym_cmd_identifier_token33] = ACTIONS(2104), - [aux_sym_cmd_identifier_token34] = ACTIONS(2098), - [aux_sym_cmd_identifier_token35] = ACTIONS(2104), - [aux_sym_cmd_identifier_token36] = ACTIONS(2104), - [aux_sym_cmd_identifier_token37] = ACTIONS(2104), - [aux_sym_cmd_identifier_token38] = ACTIONS(2098), - [aux_sym_cmd_identifier_token39] = ACTIONS(2104), - [aux_sym_cmd_identifier_token40] = ACTIONS(2104), - [anon_sym_def] = ACTIONS(2098), - [anon_sym_export_DASHenv] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_use] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_error] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_in2] = ACTIONS(2098), - [anon_sym_loop] = ACTIONS(2098), - [anon_sym_make] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_match] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_catch] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_source] = ACTIONS(2098), - [anon_sym_source_DASHenv] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_hide] = ACTIONS(2098), - [anon_sym_hide_DASHenv] = ACTIONS(2098), - [anon_sym_overlay] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2098), - [aux_sym__val_number_token5] = ACTIONS(2098), - [aux_sym__val_number_token6] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [725] = { - [sym_comment] = STATE(725), - [anon_sym_export] = ACTIONS(2391), - [anon_sym_alias] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_let_DASHenv] = ACTIONS(2391), - [anon_sym_mut] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [aux_sym_cmd_identifier_token1] = ACTIONS(2391), - [aux_sym_cmd_identifier_token2] = ACTIONS(2393), - [aux_sym_cmd_identifier_token3] = ACTIONS(2393), - [aux_sym_cmd_identifier_token4] = ACTIONS(2393), - [aux_sym_cmd_identifier_token5] = ACTIONS(2393), - [aux_sym_cmd_identifier_token6] = ACTIONS(2393), - [aux_sym_cmd_identifier_token7] = ACTIONS(2393), - [aux_sym_cmd_identifier_token8] = ACTIONS(2391), - [aux_sym_cmd_identifier_token9] = ACTIONS(2391), - [aux_sym_cmd_identifier_token10] = ACTIONS(2393), - [aux_sym_cmd_identifier_token11] = ACTIONS(2393), - [aux_sym_cmd_identifier_token12] = ACTIONS(2391), - [aux_sym_cmd_identifier_token13] = ACTIONS(2391), - [aux_sym_cmd_identifier_token14] = ACTIONS(2391), - [aux_sym_cmd_identifier_token15] = ACTIONS(2391), - [aux_sym_cmd_identifier_token16] = ACTIONS(2393), - [aux_sym_cmd_identifier_token17] = ACTIONS(2393), - [aux_sym_cmd_identifier_token18] = ACTIONS(2393), - [aux_sym_cmd_identifier_token19] = ACTIONS(2393), - [aux_sym_cmd_identifier_token20] = ACTIONS(2393), - [aux_sym_cmd_identifier_token21] = ACTIONS(2393), - [aux_sym_cmd_identifier_token22] = ACTIONS(2393), - [aux_sym_cmd_identifier_token23] = ACTIONS(2393), - [aux_sym_cmd_identifier_token24] = ACTIONS(2393), - [aux_sym_cmd_identifier_token25] = ACTIONS(2393), - [aux_sym_cmd_identifier_token26] = ACTIONS(2393), - [aux_sym_cmd_identifier_token27] = ACTIONS(2393), - [aux_sym_cmd_identifier_token28] = ACTIONS(2393), - [aux_sym_cmd_identifier_token29] = ACTIONS(2393), - [aux_sym_cmd_identifier_token30] = ACTIONS(2393), - [aux_sym_cmd_identifier_token31] = ACTIONS(2393), - [aux_sym_cmd_identifier_token32] = ACTIONS(2393), - [aux_sym_cmd_identifier_token33] = ACTIONS(2393), - [aux_sym_cmd_identifier_token34] = ACTIONS(2391), - [aux_sym_cmd_identifier_token35] = ACTIONS(2393), - [aux_sym_cmd_identifier_token36] = ACTIONS(2393), - [aux_sym_cmd_identifier_token37] = ACTIONS(2393), - [aux_sym_cmd_identifier_token38] = ACTIONS(2391), - [aux_sym_cmd_identifier_token39] = ACTIONS(2393), - [aux_sym_cmd_identifier_token40] = ACTIONS(2393), - [anon_sym_def] = ACTIONS(2391), - [anon_sym_export_DASHenv] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_module] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_error] = ACTIONS(2391), - [anon_sym_DASH2] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_in2] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_make] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_do] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_source] = ACTIONS(2391), - [anon_sym_source_DASHenv] = ACTIONS(2391), - [anon_sym_register] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_hide_DASHenv] = ACTIONS(2391), - [anon_sym_overlay] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_PLUS2] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2391), - [aux_sym__val_number_decimal_token2] = ACTIONS(2393), - [aux_sym__val_number_decimal_token3] = ACTIONS(2393), - [aux_sym__val_number_decimal_token4] = ACTIONS(2393), - [aux_sym__val_number_token1] = ACTIONS(2393), - [aux_sym__val_number_token2] = ACTIONS(2393), - [aux_sym__val_number_token3] = ACTIONS(2393), - [aux_sym__val_number_token4] = ACTIONS(2391), - [aux_sym__val_number_token5] = ACTIONS(2391), - [aux_sym__val_number_token6] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(2393), - [sym__str_single_quotes] = ACTIONS(2393), - [sym__str_back_ticks] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2393), - }, - [726] = { - [sym_comment] = STATE(726), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_alias] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_let_DASHenv] = ACTIONS(2399), - [anon_sym_mut] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [aux_sym_cmd_identifier_token1] = ACTIONS(2399), - [aux_sym_cmd_identifier_token2] = ACTIONS(2401), - [aux_sym_cmd_identifier_token3] = ACTIONS(2401), - [aux_sym_cmd_identifier_token4] = ACTIONS(2401), - [aux_sym_cmd_identifier_token5] = ACTIONS(2401), - [aux_sym_cmd_identifier_token6] = ACTIONS(2401), - [aux_sym_cmd_identifier_token7] = ACTIONS(2401), - [aux_sym_cmd_identifier_token8] = ACTIONS(2399), - [aux_sym_cmd_identifier_token9] = ACTIONS(2399), - [aux_sym_cmd_identifier_token10] = ACTIONS(2401), - [aux_sym_cmd_identifier_token11] = ACTIONS(2401), - [aux_sym_cmd_identifier_token12] = ACTIONS(2399), - [aux_sym_cmd_identifier_token13] = ACTIONS(2399), - [aux_sym_cmd_identifier_token14] = ACTIONS(2399), - [aux_sym_cmd_identifier_token15] = ACTIONS(2399), - [aux_sym_cmd_identifier_token16] = ACTIONS(2401), - [aux_sym_cmd_identifier_token17] = ACTIONS(2401), - [aux_sym_cmd_identifier_token18] = ACTIONS(2401), - [aux_sym_cmd_identifier_token19] = ACTIONS(2401), - [aux_sym_cmd_identifier_token20] = ACTIONS(2401), - [aux_sym_cmd_identifier_token21] = ACTIONS(2401), - [aux_sym_cmd_identifier_token22] = ACTIONS(2401), - [aux_sym_cmd_identifier_token23] = ACTIONS(2401), - [aux_sym_cmd_identifier_token24] = ACTIONS(2401), - [aux_sym_cmd_identifier_token25] = ACTIONS(2401), - [aux_sym_cmd_identifier_token26] = ACTIONS(2401), - [aux_sym_cmd_identifier_token27] = ACTIONS(2401), - [aux_sym_cmd_identifier_token28] = ACTIONS(2401), - [aux_sym_cmd_identifier_token29] = ACTIONS(2401), - [aux_sym_cmd_identifier_token30] = ACTIONS(2401), - [aux_sym_cmd_identifier_token31] = ACTIONS(2401), - [aux_sym_cmd_identifier_token32] = ACTIONS(2401), - [aux_sym_cmd_identifier_token33] = ACTIONS(2401), - [aux_sym_cmd_identifier_token34] = ACTIONS(2399), - [aux_sym_cmd_identifier_token35] = ACTIONS(2401), - [aux_sym_cmd_identifier_token36] = ACTIONS(2401), - [aux_sym_cmd_identifier_token37] = ACTIONS(2401), - [aux_sym_cmd_identifier_token38] = ACTIONS(2399), - [aux_sym_cmd_identifier_token39] = ACTIONS(2401), - [aux_sym_cmd_identifier_token40] = ACTIONS(2401), - [anon_sym_def] = ACTIONS(2399), - [anon_sym_export_DASHenv] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_error] = ACTIONS(2399), - [anon_sym_DASH2] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_in2] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_make] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_do] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_catch] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_source] = ACTIONS(2399), - [anon_sym_source_DASHenv] = ACTIONS(2399), - [anon_sym_register] = ACTIONS(2399), - [anon_sym_hide] = ACTIONS(2399), - [anon_sym_hide_DASHenv] = ACTIONS(2399), - [anon_sym_overlay] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_PLUS2] = ACTIONS(2399), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2401), - [aux_sym__val_number_decimal_token1] = ACTIONS(2399), - [aux_sym__val_number_decimal_token2] = ACTIONS(2401), - [aux_sym__val_number_decimal_token3] = ACTIONS(2401), - [aux_sym__val_number_decimal_token4] = ACTIONS(2401), - [aux_sym__val_number_token1] = ACTIONS(2401), - [aux_sym__val_number_token2] = ACTIONS(2401), - [aux_sym__val_number_token3] = ACTIONS(2401), - [aux_sym__val_number_token4] = ACTIONS(2399), - [aux_sym__val_number_token5] = ACTIONS(2399), - [aux_sym__val_number_token6] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2401), - [sym__str_single_quotes] = ACTIONS(2401), - [sym__str_back_ticks] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2401), - }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_alias] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_let_DASHenv] = ACTIONS(2462), - [anon_sym_mut] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [aux_sym_cmd_identifier_token1] = ACTIONS(2462), - [aux_sym_cmd_identifier_token2] = ACTIONS(2464), - [aux_sym_cmd_identifier_token3] = ACTIONS(2464), - [aux_sym_cmd_identifier_token4] = ACTIONS(2464), - [aux_sym_cmd_identifier_token5] = ACTIONS(2464), - [aux_sym_cmd_identifier_token6] = ACTIONS(2464), - [aux_sym_cmd_identifier_token7] = ACTIONS(2464), - [aux_sym_cmd_identifier_token8] = ACTIONS(2462), - [aux_sym_cmd_identifier_token9] = ACTIONS(2462), - [aux_sym_cmd_identifier_token10] = ACTIONS(2464), - [aux_sym_cmd_identifier_token11] = ACTIONS(2464), - [aux_sym_cmd_identifier_token12] = ACTIONS(2462), - [aux_sym_cmd_identifier_token13] = ACTIONS(2462), - [aux_sym_cmd_identifier_token14] = ACTIONS(2462), - [aux_sym_cmd_identifier_token15] = ACTIONS(2462), - [aux_sym_cmd_identifier_token16] = ACTIONS(2464), - [aux_sym_cmd_identifier_token17] = ACTIONS(2464), - [aux_sym_cmd_identifier_token18] = ACTIONS(2464), - [aux_sym_cmd_identifier_token19] = ACTIONS(2464), - [aux_sym_cmd_identifier_token20] = ACTIONS(2464), - [aux_sym_cmd_identifier_token21] = ACTIONS(2464), - [aux_sym_cmd_identifier_token22] = ACTIONS(2464), - [aux_sym_cmd_identifier_token23] = ACTIONS(2464), - [aux_sym_cmd_identifier_token24] = ACTIONS(2464), - [aux_sym_cmd_identifier_token25] = ACTIONS(2464), - [aux_sym_cmd_identifier_token26] = ACTIONS(2464), - [aux_sym_cmd_identifier_token27] = ACTIONS(2464), - [aux_sym_cmd_identifier_token28] = ACTIONS(2464), - [aux_sym_cmd_identifier_token29] = ACTIONS(2464), - [aux_sym_cmd_identifier_token30] = ACTIONS(2464), - [aux_sym_cmd_identifier_token31] = ACTIONS(2464), - [aux_sym_cmd_identifier_token32] = ACTIONS(2464), - [aux_sym_cmd_identifier_token33] = ACTIONS(2464), - [aux_sym_cmd_identifier_token34] = ACTIONS(2462), - [aux_sym_cmd_identifier_token35] = ACTIONS(2464), - [aux_sym_cmd_identifier_token36] = ACTIONS(2464), - [aux_sym_cmd_identifier_token37] = ACTIONS(2464), - [aux_sym_cmd_identifier_token38] = ACTIONS(2462), - [aux_sym_cmd_identifier_token39] = ACTIONS(2464), - [aux_sym_cmd_identifier_token40] = ACTIONS(2464), - [anon_sym_def] = ACTIONS(2462), - [anon_sym_export_DASHenv] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_module] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_error] = ACTIONS(2462), - [anon_sym_DASH2] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_in2] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_make] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_do] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_else] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_catch] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_source] = ACTIONS(2462), - [anon_sym_source_DASHenv] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_hide] = ACTIONS(2462), - [anon_sym_hide_DASHenv] = ACTIONS(2462), - [anon_sym_overlay] = ACTIONS(2462), - [anon_sym_as] = ACTIONS(2462), - [anon_sym_PLUS2] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), - [aux_sym__val_number_decimal_token1] = ACTIONS(2462), - [aux_sym__val_number_decimal_token2] = ACTIONS(2464), - [aux_sym__val_number_decimal_token3] = ACTIONS(2464), - [aux_sym__val_number_decimal_token4] = ACTIONS(2464), - [aux_sym__val_number_token1] = ACTIONS(2464), - [aux_sym__val_number_token2] = ACTIONS(2464), - [aux_sym__val_number_token3] = ACTIONS(2464), - [aux_sym__val_number_token4] = ACTIONS(2462), - [aux_sym__val_number_token5] = ACTIONS(2462), - [aux_sym__val_number_token6] = ACTIONS(2462), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym__str_single_quotes] = ACTIONS(2464), - [sym__str_back_ticks] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2464), - }, - [728] = { - [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_alias] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_let_DASHenv] = ACTIONS(2403), - [anon_sym_mut] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [aux_sym_cmd_identifier_token1] = ACTIONS(2403), - [aux_sym_cmd_identifier_token2] = ACTIONS(2405), - [aux_sym_cmd_identifier_token3] = ACTIONS(2405), - [aux_sym_cmd_identifier_token4] = ACTIONS(2405), - [aux_sym_cmd_identifier_token5] = ACTIONS(2405), - [aux_sym_cmd_identifier_token6] = ACTIONS(2405), - [aux_sym_cmd_identifier_token7] = ACTIONS(2405), - [aux_sym_cmd_identifier_token8] = ACTIONS(2403), - [aux_sym_cmd_identifier_token9] = ACTIONS(2403), - [aux_sym_cmd_identifier_token10] = ACTIONS(2405), - [aux_sym_cmd_identifier_token11] = ACTIONS(2405), - [aux_sym_cmd_identifier_token12] = ACTIONS(2403), - [aux_sym_cmd_identifier_token13] = ACTIONS(2403), - [aux_sym_cmd_identifier_token14] = ACTIONS(2403), - [aux_sym_cmd_identifier_token15] = ACTIONS(2403), - [aux_sym_cmd_identifier_token16] = ACTIONS(2405), - [aux_sym_cmd_identifier_token17] = ACTIONS(2405), - [aux_sym_cmd_identifier_token18] = ACTIONS(2405), - [aux_sym_cmd_identifier_token19] = ACTIONS(2405), - [aux_sym_cmd_identifier_token20] = ACTIONS(2405), - [aux_sym_cmd_identifier_token21] = ACTIONS(2405), - [aux_sym_cmd_identifier_token22] = ACTIONS(2405), - [aux_sym_cmd_identifier_token23] = ACTIONS(2405), - [aux_sym_cmd_identifier_token24] = ACTIONS(2405), - [aux_sym_cmd_identifier_token25] = ACTIONS(2405), - [aux_sym_cmd_identifier_token26] = ACTIONS(2405), - [aux_sym_cmd_identifier_token27] = ACTIONS(2405), - [aux_sym_cmd_identifier_token28] = ACTIONS(2405), - [aux_sym_cmd_identifier_token29] = ACTIONS(2405), - [aux_sym_cmd_identifier_token30] = ACTIONS(2405), - [aux_sym_cmd_identifier_token31] = ACTIONS(2405), - [aux_sym_cmd_identifier_token32] = ACTIONS(2405), - [aux_sym_cmd_identifier_token33] = ACTIONS(2405), - [aux_sym_cmd_identifier_token34] = ACTIONS(2403), - [aux_sym_cmd_identifier_token35] = ACTIONS(2405), - [aux_sym_cmd_identifier_token36] = ACTIONS(2405), - [aux_sym_cmd_identifier_token37] = ACTIONS(2405), - [aux_sym_cmd_identifier_token38] = ACTIONS(2403), - [aux_sym_cmd_identifier_token39] = ACTIONS(2405), - [aux_sym_cmd_identifier_token40] = ACTIONS(2405), - [anon_sym_def] = ACTIONS(2403), - [anon_sym_export_DASHenv] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_error] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_in2] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_make] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_source] = ACTIONS(2403), - [anon_sym_source_DASHenv] = ACTIONS(2403), - [anon_sym_register] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_hide_DASHenv] = ACTIONS(2403), - [anon_sym_overlay] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2405), - [aux_sym__val_number_decimal_token4] = ACTIONS(2405), - [aux_sym__val_number_token1] = ACTIONS(2405), - [aux_sym__val_number_token2] = ACTIONS(2405), - [aux_sym__val_number_token3] = ACTIONS(2405), - [aux_sym__val_number_token4] = ACTIONS(2403), - [aux_sym__val_number_token5] = ACTIONS(2403), - [aux_sym__val_number_token6] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym__str_single_quotes] = ACTIONS(2405), - [sym__str_back_ticks] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2405), - }, - [729] = { - [aux_sym__pipe_separator] = STATE(717), - [sym_comment] = STATE(729), - [aux_sym_shebang_repeat1] = STATE(774), - [aux_sym_cmd_identifier_token1] = ACTIONS(2546), - [aux_sym_cmd_identifier_token2] = ACTIONS(2548), - [aux_sym_cmd_identifier_token3] = ACTIONS(2548), - [aux_sym_cmd_identifier_token4] = ACTIONS(2548), - [aux_sym_cmd_identifier_token5] = ACTIONS(2548), - [aux_sym_cmd_identifier_token6] = ACTIONS(2548), - [aux_sym_cmd_identifier_token7] = ACTIONS(2548), - [aux_sym_cmd_identifier_token8] = ACTIONS(2548), - [aux_sym_cmd_identifier_token9] = ACTIONS(2546), - [aux_sym_cmd_identifier_token10] = ACTIONS(2548), - [aux_sym_cmd_identifier_token11] = ACTIONS(2548), - [aux_sym_cmd_identifier_token12] = ACTIONS(2548), - [aux_sym_cmd_identifier_token13] = ACTIONS(2546), - [aux_sym_cmd_identifier_token14] = ACTIONS(2548), - [aux_sym_cmd_identifier_token15] = ACTIONS(2546), - [aux_sym_cmd_identifier_token16] = ACTIONS(2548), - [aux_sym_cmd_identifier_token17] = ACTIONS(2548), - [aux_sym_cmd_identifier_token18] = ACTIONS(2546), - [aux_sym_cmd_identifier_token19] = ACTIONS(2548), - [aux_sym_cmd_identifier_token20] = ACTIONS(2548), - [aux_sym_cmd_identifier_token21] = ACTIONS(2548), - [aux_sym_cmd_identifier_token22] = ACTIONS(2548), - [aux_sym_cmd_identifier_token23] = ACTIONS(2548), - [aux_sym_cmd_identifier_token24] = ACTIONS(2548), - [aux_sym_cmd_identifier_token25] = ACTIONS(2548), - [aux_sym_cmd_identifier_token26] = ACTIONS(2548), - [aux_sym_cmd_identifier_token27] = ACTIONS(2548), - [aux_sym_cmd_identifier_token28] = ACTIONS(2548), - [aux_sym_cmd_identifier_token29] = ACTIONS(2548), - [aux_sym_cmd_identifier_token30] = ACTIONS(2548), - [aux_sym_cmd_identifier_token31] = ACTIONS(2548), - [aux_sym_cmd_identifier_token32] = ACTIONS(2546), - [aux_sym_cmd_identifier_token33] = ACTIONS(2548), - [aux_sym_cmd_identifier_token34] = ACTIONS(2546), - [aux_sym_cmd_identifier_token35] = ACTIONS(2548), - [aux_sym_cmd_identifier_token36] = ACTIONS(2548), - [aux_sym_cmd_identifier_token37] = ACTIONS(2548), - [aux_sym_cmd_identifier_token38] = ACTIONS(2546), - [aux_sym_cmd_identifier_token39] = ACTIONS(2548), - [aux_sym_cmd_identifier_token40] = ACTIONS(2548), - [sym__newline] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_err_GT_PIPE] = ACTIONS(2552), - [anon_sym_out_GT_PIPE] = ACTIONS(2552), - [anon_sym_e_GT_PIPE] = ACTIONS(2552), - [anon_sym_o_GT_PIPE] = ACTIONS(2552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_DOLLAR] = ACTIONS(2546), - [anon_sym_DASH2] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_match] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_where] = ACTIONS(2548), - [aux_sym_expr_unary_token1] = ACTIONS(2548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT] = ACTIONS(2548), - [anon_sym_null] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2546), - [anon_sym_false] = ACTIONS(2546), - [aux_sym__val_number_decimal_token1] = ACTIONS(2546), - [aux_sym__val_number_decimal_token2] = ACTIONS(2548), - [aux_sym__val_number_decimal_token3] = ACTIONS(2548), - [aux_sym__val_number_decimal_token4] = ACTIONS(2548), - [aux_sym__val_number_token1] = ACTIONS(2548), - [aux_sym__val_number_token2] = ACTIONS(2548), - [aux_sym__val_number_token3] = ACTIONS(2548), - [aux_sym__val_number_token4] = ACTIONS(2546), - [aux_sym__val_number_token5] = ACTIONS(2546), - [aux_sym__val_number_token6] = ACTIONS(2546), - [anon_sym_0b] = ACTIONS(2546), - [anon_sym_0o] = ACTIONS(2546), - [anon_sym_0x] = ACTIONS(2546), - [sym_val_date] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [sym__str_single_quotes] = ACTIONS(2548), - [sym__str_back_ticks] = ACTIONS(2548), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2548), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2548), - [aux_sym_env_var_token1] = ACTIONS(2546), - [anon_sym_CARET] = ACTIONS(2548), - [aux_sym_command_token1] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2548), - }, - [730] = { - [sym_comment] = STATE(730), - [anon_sym_export] = ACTIONS(2439), - [anon_sym_alias] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_let_DASHenv] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [aux_sym_cmd_identifier_token1] = ACTIONS(2439), - [aux_sym_cmd_identifier_token2] = ACTIONS(2441), - [aux_sym_cmd_identifier_token3] = ACTIONS(2441), - [aux_sym_cmd_identifier_token4] = ACTIONS(2441), - [aux_sym_cmd_identifier_token5] = ACTIONS(2441), - [aux_sym_cmd_identifier_token6] = ACTIONS(2441), - [aux_sym_cmd_identifier_token7] = ACTIONS(2441), - [aux_sym_cmd_identifier_token8] = ACTIONS(2439), - [aux_sym_cmd_identifier_token9] = ACTIONS(2439), - [aux_sym_cmd_identifier_token10] = ACTIONS(2441), - [aux_sym_cmd_identifier_token11] = ACTIONS(2441), - [aux_sym_cmd_identifier_token12] = ACTIONS(2439), - [aux_sym_cmd_identifier_token13] = ACTIONS(2439), - [aux_sym_cmd_identifier_token14] = ACTIONS(2439), - [aux_sym_cmd_identifier_token15] = ACTIONS(2439), - [aux_sym_cmd_identifier_token16] = ACTIONS(2441), - [aux_sym_cmd_identifier_token17] = ACTIONS(2441), - [aux_sym_cmd_identifier_token18] = ACTIONS(2441), - [aux_sym_cmd_identifier_token19] = ACTIONS(2441), - [aux_sym_cmd_identifier_token20] = ACTIONS(2441), - [aux_sym_cmd_identifier_token21] = ACTIONS(2441), - [aux_sym_cmd_identifier_token22] = ACTIONS(2441), - [aux_sym_cmd_identifier_token23] = ACTIONS(2441), - [aux_sym_cmd_identifier_token24] = ACTIONS(2441), - [aux_sym_cmd_identifier_token25] = ACTIONS(2441), - [aux_sym_cmd_identifier_token26] = ACTIONS(2441), - [aux_sym_cmd_identifier_token27] = ACTIONS(2441), - [aux_sym_cmd_identifier_token28] = ACTIONS(2441), - [aux_sym_cmd_identifier_token29] = ACTIONS(2441), - [aux_sym_cmd_identifier_token30] = ACTIONS(2441), - [aux_sym_cmd_identifier_token31] = ACTIONS(2441), - [aux_sym_cmd_identifier_token32] = ACTIONS(2441), - [aux_sym_cmd_identifier_token33] = ACTIONS(2441), - [aux_sym_cmd_identifier_token34] = ACTIONS(2439), - [aux_sym_cmd_identifier_token35] = ACTIONS(2441), - [aux_sym_cmd_identifier_token36] = ACTIONS(2441), - [aux_sym_cmd_identifier_token37] = ACTIONS(2441), - [aux_sym_cmd_identifier_token38] = ACTIONS(2439), - [aux_sym_cmd_identifier_token39] = ACTIONS(2441), - [aux_sym_cmd_identifier_token40] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2439), - [anon_sym_export_DASHenv] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_module] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_error] = ACTIONS(2439), - [anon_sym_DASH2] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_in2] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_make] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_do] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_else] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_catch] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_source] = ACTIONS(2439), - [anon_sym_source_DASHenv] = ACTIONS(2439), - [anon_sym_register] = ACTIONS(2439), - [anon_sym_hide] = ACTIONS(2439), - [anon_sym_hide_DASHenv] = ACTIONS(2439), - [anon_sym_overlay] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_PLUS2] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2441), - [aux_sym__val_number_decimal_token4] = ACTIONS(2441), - [aux_sym__val_number_token1] = ACTIONS(2441), - [aux_sym__val_number_token2] = ACTIONS(2441), - [aux_sym__val_number_token3] = ACTIONS(2441), - [aux_sym__val_number_token4] = ACTIONS(2439), - [aux_sym__val_number_token5] = ACTIONS(2439), - [aux_sym__val_number_token6] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym__str_single_quotes] = ACTIONS(2441), - [sym__str_back_ticks] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym__str_single_quotes] = ACTIONS(2344), + [sym__str_back_ticks] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2441), + [sym_raw_string_begin] = ACTIONS(2344), }, [731] = { [sym_comment] = STATE(731), - [anon_sym_export] = ACTIONS(2512), - [anon_sym_alias] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_let_DASHenv] = ACTIONS(2512), - [anon_sym_mut] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [aux_sym_cmd_identifier_token1] = ACTIONS(2512), - [aux_sym_cmd_identifier_token2] = ACTIONS(2514), - [aux_sym_cmd_identifier_token3] = ACTIONS(2514), - [aux_sym_cmd_identifier_token4] = ACTIONS(2514), - [aux_sym_cmd_identifier_token5] = ACTIONS(2514), - [aux_sym_cmd_identifier_token6] = ACTIONS(2514), - [aux_sym_cmd_identifier_token7] = ACTIONS(2514), - [aux_sym_cmd_identifier_token8] = ACTIONS(2512), - [aux_sym_cmd_identifier_token9] = ACTIONS(2512), - [aux_sym_cmd_identifier_token10] = ACTIONS(2514), - [aux_sym_cmd_identifier_token11] = ACTIONS(2514), - [aux_sym_cmd_identifier_token12] = ACTIONS(2512), - [aux_sym_cmd_identifier_token13] = ACTIONS(2512), - [aux_sym_cmd_identifier_token14] = ACTIONS(2512), - [aux_sym_cmd_identifier_token15] = ACTIONS(2512), - [aux_sym_cmd_identifier_token16] = ACTIONS(2514), - [aux_sym_cmd_identifier_token17] = ACTIONS(2514), - [aux_sym_cmd_identifier_token18] = ACTIONS(2514), - [aux_sym_cmd_identifier_token19] = ACTIONS(2514), - [aux_sym_cmd_identifier_token20] = ACTIONS(2514), - [aux_sym_cmd_identifier_token21] = ACTIONS(2514), - [aux_sym_cmd_identifier_token22] = ACTIONS(2514), - [aux_sym_cmd_identifier_token23] = ACTIONS(2514), - [aux_sym_cmd_identifier_token24] = ACTIONS(2514), - [aux_sym_cmd_identifier_token25] = ACTIONS(2514), - [aux_sym_cmd_identifier_token26] = ACTIONS(2514), - [aux_sym_cmd_identifier_token27] = ACTIONS(2514), - [aux_sym_cmd_identifier_token28] = ACTIONS(2514), - [aux_sym_cmd_identifier_token29] = ACTIONS(2514), - [aux_sym_cmd_identifier_token30] = ACTIONS(2514), - [aux_sym_cmd_identifier_token31] = ACTIONS(2514), - [aux_sym_cmd_identifier_token32] = ACTIONS(2514), - [aux_sym_cmd_identifier_token33] = ACTIONS(2514), - [aux_sym_cmd_identifier_token34] = ACTIONS(2512), - [aux_sym_cmd_identifier_token35] = ACTIONS(2514), - [aux_sym_cmd_identifier_token36] = ACTIONS(2514), - [aux_sym_cmd_identifier_token37] = ACTIONS(2514), - [aux_sym_cmd_identifier_token38] = ACTIONS(2512), - [aux_sym_cmd_identifier_token39] = ACTIONS(2514), - [aux_sym_cmd_identifier_token40] = ACTIONS(2514), - [anon_sym_def] = ACTIONS(2512), - [anon_sym_export_DASHenv] = ACTIONS(2512), - [anon_sym_extern] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_use] = ACTIONS(2512), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_DOLLAR] = ACTIONS(2514), - [anon_sym_error] = ACTIONS(2512), - [anon_sym_DASH2] = ACTIONS(2512), - [anon_sym_break] = ACTIONS(2512), - [anon_sym_continue] = ACTIONS(2512), - [anon_sym_for] = ACTIONS(2512), - [anon_sym_in2] = ACTIONS(2512), - [anon_sym_loop] = ACTIONS(2512), - [anon_sym_make] = ACTIONS(2512), - [anon_sym_while] = ACTIONS(2512), - [anon_sym_do] = ACTIONS(2512), - [anon_sym_if] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2512), - [anon_sym_match] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2512), - [anon_sym_catch] = ACTIONS(2512), - [anon_sym_return] = ACTIONS(2512), - [anon_sym_source] = ACTIONS(2512), - [anon_sym_source_DASHenv] = ACTIONS(2512), - [anon_sym_register] = ACTIONS(2512), - [anon_sym_hide] = ACTIONS(2512), - [anon_sym_hide_DASHenv] = ACTIONS(2512), - [anon_sym_overlay] = ACTIONS(2512), - [anon_sym_as] = ACTIONS(2512), - [anon_sym_PLUS2] = ACTIONS(2512), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2514), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2514), - [aux_sym__val_number_decimal_token1] = ACTIONS(2512), - [aux_sym__val_number_decimal_token2] = ACTIONS(2514), - [aux_sym__val_number_decimal_token3] = ACTIONS(2514), - [aux_sym__val_number_decimal_token4] = ACTIONS(2514), - [aux_sym__val_number_token1] = ACTIONS(2514), - [aux_sym__val_number_token2] = ACTIONS(2514), - [aux_sym__val_number_token3] = ACTIONS(2514), - [aux_sym__val_number_token4] = ACTIONS(2512), - [aux_sym__val_number_token5] = ACTIONS(2512), - [aux_sym__val_number_token6] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2514), - [sym__str_single_quotes] = ACTIONS(2514), - [sym__str_back_ticks] = ACTIONS(2514), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2514), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_alias] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_let_DASHenv] = ACTIONS(2142), + [anon_sym_mut] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [aux_sym_cmd_identifier_token1] = ACTIONS(2142), + [aux_sym_cmd_identifier_token2] = ACTIONS(2148), + [aux_sym_cmd_identifier_token3] = ACTIONS(2148), + [aux_sym_cmd_identifier_token4] = ACTIONS(2148), + [aux_sym_cmd_identifier_token5] = ACTIONS(2148), + [aux_sym_cmd_identifier_token6] = ACTIONS(2148), + [aux_sym_cmd_identifier_token7] = ACTIONS(2148), + [aux_sym_cmd_identifier_token8] = ACTIONS(2142), + [aux_sym_cmd_identifier_token9] = ACTIONS(2142), + [aux_sym_cmd_identifier_token10] = ACTIONS(2148), + [aux_sym_cmd_identifier_token11] = ACTIONS(2148), + [aux_sym_cmd_identifier_token12] = ACTIONS(2142), + [aux_sym_cmd_identifier_token13] = ACTIONS(2142), + [aux_sym_cmd_identifier_token14] = ACTIONS(2142), + [aux_sym_cmd_identifier_token15] = ACTIONS(2142), + [aux_sym_cmd_identifier_token16] = ACTIONS(2148), + [aux_sym_cmd_identifier_token17] = ACTIONS(2148), + [aux_sym_cmd_identifier_token18] = ACTIONS(2148), + [aux_sym_cmd_identifier_token19] = ACTIONS(2148), + [aux_sym_cmd_identifier_token20] = ACTIONS(2148), + [aux_sym_cmd_identifier_token21] = ACTIONS(2148), + [aux_sym_cmd_identifier_token22] = ACTIONS(2148), + [aux_sym_cmd_identifier_token23] = ACTIONS(2148), + [aux_sym_cmd_identifier_token24] = ACTIONS(2148), + [aux_sym_cmd_identifier_token25] = ACTIONS(2148), + [aux_sym_cmd_identifier_token26] = ACTIONS(2148), + [aux_sym_cmd_identifier_token27] = ACTIONS(2148), + [aux_sym_cmd_identifier_token28] = ACTIONS(2148), + [aux_sym_cmd_identifier_token29] = ACTIONS(2148), + [aux_sym_cmd_identifier_token30] = ACTIONS(2148), + [aux_sym_cmd_identifier_token31] = ACTIONS(2148), + [aux_sym_cmd_identifier_token32] = ACTIONS(2148), + [aux_sym_cmd_identifier_token33] = ACTIONS(2148), + [aux_sym_cmd_identifier_token34] = ACTIONS(2142), + [aux_sym_cmd_identifier_token35] = ACTIONS(2148), + [aux_sym_cmd_identifier_token36] = ACTIONS(2148), + [aux_sym_cmd_identifier_token37] = ACTIONS(2148), + [aux_sym_cmd_identifier_token38] = ACTIONS(2142), + [aux_sym_cmd_identifier_token39] = ACTIONS(2148), + [aux_sym_cmd_identifier_token40] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2142), + [anon_sym_export_DASHenv] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_error] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_in2] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_make] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_source] = ACTIONS(2142), + [anon_sym_source_DASHenv] = ACTIONS(2142), + [anon_sym_register] = ACTIONS(2142), + [anon_sym_hide] = ACTIONS(2142), + [anon_sym_hide_DASHenv] = ACTIONS(2142), + [anon_sym_overlay] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2142), + [anon_sym_PLUS2] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2148), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2142), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2142), + [aux_sym__val_number_token5] = ACTIONS(2142), + [aux_sym__val_number_token6] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2148), }, [732] = { [sym_comment] = STATE(732), - [anon_sym_export] = ACTIONS(2516), - [anon_sym_alias] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_let_DASHenv] = ACTIONS(2516), - [anon_sym_mut] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [aux_sym_cmd_identifier_token1] = ACTIONS(2516), - [aux_sym_cmd_identifier_token2] = ACTIONS(2518), - [aux_sym_cmd_identifier_token3] = ACTIONS(2518), - [aux_sym_cmd_identifier_token4] = ACTIONS(2518), - [aux_sym_cmd_identifier_token5] = ACTIONS(2518), - [aux_sym_cmd_identifier_token6] = ACTIONS(2518), - [aux_sym_cmd_identifier_token7] = ACTIONS(2518), - [aux_sym_cmd_identifier_token8] = ACTIONS(2516), - [aux_sym_cmd_identifier_token9] = ACTIONS(2516), - [aux_sym_cmd_identifier_token10] = ACTIONS(2518), - [aux_sym_cmd_identifier_token11] = ACTIONS(2518), - [aux_sym_cmd_identifier_token12] = ACTIONS(2516), - [aux_sym_cmd_identifier_token13] = ACTIONS(2516), - [aux_sym_cmd_identifier_token14] = ACTIONS(2516), - [aux_sym_cmd_identifier_token15] = ACTIONS(2516), - [aux_sym_cmd_identifier_token16] = ACTIONS(2518), - [aux_sym_cmd_identifier_token17] = ACTIONS(2518), - [aux_sym_cmd_identifier_token18] = ACTIONS(2518), - [aux_sym_cmd_identifier_token19] = ACTIONS(2518), - [aux_sym_cmd_identifier_token20] = ACTIONS(2518), - [aux_sym_cmd_identifier_token21] = ACTIONS(2518), - [aux_sym_cmd_identifier_token22] = ACTIONS(2518), - [aux_sym_cmd_identifier_token23] = ACTIONS(2518), - [aux_sym_cmd_identifier_token24] = ACTIONS(2518), - [aux_sym_cmd_identifier_token25] = ACTIONS(2518), - [aux_sym_cmd_identifier_token26] = ACTIONS(2518), - [aux_sym_cmd_identifier_token27] = ACTIONS(2518), - [aux_sym_cmd_identifier_token28] = ACTIONS(2518), - [aux_sym_cmd_identifier_token29] = ACTIONS(2518), - [aux_sym_cmd_identifier_token30] = ACTIONS(2518), - [aux_sym_cmd_identifier_token31] = ACTIONS(2518), - [aux_sym_cmd_identifier_token32] = ACTIONS(2518), - [aux_sym_cmd_identifier_token33] = ACTIONS(2518), - [aux_sym_cmd_identifier_token34] = ACTIONS(2516), - [aux_sym_cmd_identifier_token35] = ACTIONS(2518), - [aux_sym_cmd_identifier_token36] = ACTIONS(2518), - [aux_sym_cmd_identifier_token37] = ACTIONS(2518), - [aux_sym_cmd_identifier_token38] = ACTIONS(2516), - [aux_sym_cmd_identifier_token39] = ACTIONS(2518), - [aux_sym_cmd_identifier_token40] = ACTIONS(2518), - [anon_sym_def] = ACTIONS(2516), - [anon_sym_export_DASHenv] = ACTIONS(2516), - [anon_sym_extern] = ACTIONS(2516), - [anon_sym_module] = ACTIONS(2516), - [anon_sym_use] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_DOLLAR] = ACTIONS(2518), - [anon_sym_error] = ACTIONS(2516), - [anon_sym_DASH2] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_in2] = ACTIONS(2516), - [anon_sym_loop] = ACTIONS(2516), - [anon_sym_make] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_match] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_catch] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_source] = ACTIONS(2516), - [anon_sym_source_DASHenv] = ACTIONS(2516), - [anon_sym_register] = ACTIONS(2516), - [anon_sym_hide] = ACTIONS(2516), - [anon_sym_hide_DASHenv] = ACTIONS(2516), - [anon_sym_overlay] = ACTIONS(2516), - [anon_sym_as] = ACTIONS(2516), - [anon_sym_PLUS2] = ACTIONS(2516), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2518), - [aux_sym__val_number_decimal_token1] = ACTIONS(2516), - [aux_sym__val_number_decimal_token2] = ACTIONS(2518), - [aux_sym__val_number_decimal_token3] = ACTIONS(2518), - [aux_sym__val_number_decimal_token4] = ACTIONS(2518), - [aux_sym__val_number_token1] = ACTIONS(2518), - [aux_sym__val_number_token2] = ACTIONS(2518), - [aux_sym__val_number_token3] = ACTIONS(2518), - [aux_sym__val_number_token4] = ACTIONS(2516), - [aux_sym__val_number_token5] = ACTIONS(2516), - [aux_sym__val_number_token6] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2518), - [sym__str_single_quotes] = ACTIONS(2518), - [sym__str_back_ticks] = ACTIONS(2518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2518), + [anon_sym_export] = ACTIONS(2150), + [anon_sym_alias] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_let_DASHenv] = ACTIONS(2150), + [anon_sym_mut] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [aux_sym_cmd_identifier_token1] = ACTIONS(2150), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2150), + [aux_sym_cmd_identifier_token9] = ACTIONS(2150), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2150), + [aux_sym_cmd_identifier_token13] = ACTIONS(2150), + [aux_sym_cmd_identifier_token14] = ACTIONS(2150), + [aux_sym_cmd_identifier_token15] = ACTIONS(2150), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2150), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [aux_sym_cmd_identifier_token37] = ACTIONS(2156), + [aux_sym_cmd_identifier_token38] = ACTIONS(2150), + [aux_sym_cmd_identifier_token39] = ACTIONS(2156), + [aux_sym_cmd_identifier_token40] = ACTIONS(2156), + [anon_sym_def] = ACTIONS(2150), + [anon_sym_export_DASHenv] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_module] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_error] = ACTIONS(2150), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_in2] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_make] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_do] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_else] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2150), + [anon_sym_catch] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_source] = ACTIONS(2150), + [anon_sym_source_DASHenv] = ACTIONS(2150), + [anon_sym_register] = ACTIONS(2150), + [anon_sym_hide] = ACTIONS(2150), + [anon_sym_hide_DASHenv] = ACTIONS(2150), + [anon_sym_overlay] = ACTIONS(2150), + [anon_sym_as] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2150), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2150), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2150), + [aux_sym__val_number_token5] = ACTIONS(2150), + [aux_sym__val_number_token6] = ACTIONS(2150), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2156), }, [733] = { [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_alias] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_let_DASHenv] = ACTIONS(2466), - [anon_sym_mut] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [aux_sym_cmd_identifier_token1] = ACTIONS(2466), - [aux_sym_cmd_identifier_token2] = ACTIONS(2468), - [aux_sym_cmd_identifier_token3] = ACTIONS(2468), - [aux_sym_cmd_identifier_token4] = ACTIONS(2468), - [aux_sym_cmd_identifier_token5] = ACTIONS(2468), - [aux_sym_cmd_identifier_token6] = ACTIONS(2468), - [aux_sym_cmd_identifier_token7] = ACTIONS(2468), - [aux_sym_cmd_identifier_token8] = ACTIONS(2466), - [aux_sym_cmd_identifier_token9] = ACTIONS(2466), - [aux_sym_cmd_identifier_token10] = ACTIONS(2468), - [aux_sym_cmd_identifier_token11] = ACTIONS(2468), - [aux_sym_cmd_identifier_token12] = ACTIONS(2466), - [aux_sym_cmd_identifier_token13] = ACTIONS(2466), - [aux_sym_cmd_identifier_token14] = ACTIONS(2466), - [aux_sym_cmd_identifier_token15] = ACTIONS(2466), - [aux_sym_cmd_identifier_token16] = ACTIONS(2468), - [aux_sym_cmd_identifier_token17] = ACTIONS(2468), - [aux_sym_cmd_identifier_token18] = ACTIONS(2468), - [aux_sym_cmd_identifier_token19] = ACTIONS(2468), - [aux_sym_cmd_identifier_token20] = ACTIONS(2468), - [aux_sym_cmd_identifier_token21] = ACTIONS(2468), - [aux_sym_cmd_identifier_token22] = ACTIONS(2468), - [aux_sym_cmd_identifier_token23] = ACTIONS(2468), - [aux_sym_cmd_identifier_token24] = ACTIONS(2468), - [aux_sym_cmd_identifier_token25] = ACTIONS(2468), - [aux_sym_cmd_identifier_token26] = ACTIONS(2468), - [aux_sym_cmd_identifier_token27] = ACTIONS(2468), - [aux_sym_cmd_identifier_token28] = ACTIONS(2468), - [aux_sym_cmd_identifier_token29] = ACTIONS(2468), - [aux_sym_cmd_identifier_token30] = ACTIONS(2468), - [aux_sym_cmd_identifier_token31] = ACTIONS(2468), - [aux_sym_cmd_identifier_token32] = ACTIONS(2468), - [aux_sym_cmd_identifier_token33] = ACTIONS(2468), - [aux_sym_cmd_identifier_token34] = ACTIONS(2466), - [aux_sym_cmd_identifier_token35] = ACTIONS(2468), - [aux_sym_cmd_identifier_token36] = ACTIONS(2468), - [aux_sym_cmd_identifier_token37] = ACTIONS(2468), - [aux_sym_cmd_identifier_token38] = ACTIONS(2466), - [aux_sym_cmd_identifier_token39] = ACTIONS(2468), - [aux_sym_cmd_identifier_token40] = ACTIONS(2468), - [anon_sym_def] = ACTIONS(2466), - [anon_sym_export_DASHenv] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_error] = ACTIONS(2466), - [anon_sym_DASH2] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_in2] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_make] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_catch] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_source] = ACTIONS(2466), - [anon_sym_source_DASHenv] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_hide] = ACTIONS(2466), - [anon_sym_hide_DASHenv] = ACTIONS(2466), - [anon_sym_overlay] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2466), - [anon_sym_PLUS2] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), - [aux_sym__val_number_decimal_token1] = ACTIONS(2466), - [aux_sym__val_number_decimal_token2] = ACTIONS(2468), - [aux_sym__val_number_decimal_token3] = ACTIONS(2468), - [aux_sym__val_number_decimal_token4] = ACTIONS(2468), - [aux_sym__val_number_token1] = ACTIONS(2468), - [aux_sym__val_number_token2] = ACTIONS(2468), - [aux_sym__val_number_token3] = ACTIONS(2468), - [aux_sym__val_number_token4] = ACTIONS(2466), - [aux_sym__val_number_token5] = ACTIONS(2466), - [aux_sym__val_number_token6] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym__str_single_quotes] = ACTIONS(2468), - [sym__str_back_ticks] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2348), + [aux_sym_cmd_identifier_token4] = ACTIONS(2348), + [aux_sym_cmd_identifier_token5] = ACTIONS(2348), + [aux_sym_cmd_identifier_token6] = ACTIONS(2348), + [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2348), + [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2348), + [aux_sym_cmd_identifier_token17] = ACTIONS(2348), + [aux_sym_cmd_identifier_token18] = ACTIONS(2348), + [aux_sym_cmd_identifier_token19] = ACTIONS(2348), + [aux_sym_cmd_identifier_token20] = ACTIONS(2348), + [aux_sym_cmd_identifier_token21] = ACTIONS(2348), + [aux_sym_cmd_identifier_token22] = ACTIONS(2348), + [aux_sym_cmd_identifier_token23] = ACTIONS(2348), + [aux_sym_cmd_identifier_token24] = ACTIONS(2348), + [aux_sym_cmd_identifier_token25] = ACTIONS(2348), + [aux_sym_cmd_identifier_token26] = ACTIONS(2348), + [aux_sym_cmd_identifier_token27] = ACTIONS(2348), + [aux_sym_cmd_identifier_token28] = ACTIONS(2348), + [aux_sym_cmd_identifier_token29] = ACTIONS(2348), + [aux_sym_cmd_identifier_token30] = ACTIONS(2348), + [aux_sym_cmd_identifier_token31] = ACTIONS(2348), + [aux_sym_cmd_identifier_token32] = ACTIONS(2348), + [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2348), + [aux_sym_cmd_identifier_token36] = ACTIONS(2348), + [aux_sym_cmd_identifier_token37] = ACTIONS(2348), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2348), + [aux_sym_cmd_identifier_token40] = ACTIONS(2348), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_DOLLAR] = ACTIONS(2348), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2348), + [aux_sym__val_number_decimal_token3] = ACTIONS(2348), + [aux_sym__val_number_decimal_token4] = ACTIONS(2348), + [aux_sym__val_number_token1] = ACTIONS(2348), + [aux_sym__val_number_token2] = ACTIONS(2348), + [aux_sym__val_number_token3] = ACTIONS(2348), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2348), }, [734] = { [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(2131), - [anon_sym_alias] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_let_DASHenv] = ACTIONS(2131), - [anon_sym_mut] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [aux_sym_cmd_identifier_token1] = ACTIONS(2131), - [aux_sym_cmd_identifier_token2] = ACTIONS(2137), - [aux_sym_cmd_identifier_token3] = ACTIONS(2137), - [aux_sym_cmd_identifier_token4] = ACTIONS(2137), - [aux_sym_cmd_identifier_token5] = ACTIONS(2137), - [aux_sym_cmd_identifier_token6] = ACTIONS(2137), - [aux_sym_cmd_identifier_token7] = ACTIONS(2137), - [aux_sym_cmd_identifier_token8] = ACTIONS(2131), - [aux_sym_cmd_identifier_token9] = ACTIONS(2131), - [aux_sym_cmd_identifier_token10] = ACTIONS(2137), - [aux_sym_cmd_identifier_token11] = ACTIONS(2137), - [aux_sym_cmd_identifier_token12] = ACTIONS(2131), - [aux_sym_cmd_identifier_token13] = ACTIONS(2131), - [aux_sym_cmd_identifier_token14] = ACTIONS(2131), - [aux_sym_cmd_identifier_token15] = ACTIONS(2131), - [aux_sym_cmd_identifier_token16] = ACTIONS(2137), - [aux_sym_cmd_identifier_token17] = ACTIONS(2137), - [aux_sym_cmd_identifier_token18] = ACTIONS(2137), - [aux_sym_cmd_identifier_token19] = ACTIONS(2137), - [aux_sym_cmd_identifier_token20] = ACTIONS(2137), - [aux_sym_cmd_identifier_token21] = ACTIONS(2137), - [aux_sym_cmd_identifier_token22] = ACTIONS(2137), - [aux_sym_cmd_identifier_token23] = ACTIONS(2137), - [aux_sym_cmd_identifier_token24] = ACTIONS(2137), - [aux_sym_cmd_identifier_token25] = ACTIONS(2137), - [aux_sym_cmd_identifier_token26] = ACTIONS(2137), - [aux_sym_cmd_identifier_token27] = ACTIONS(2137), - [aux_sym_cmd_identifier_token28] = ACTIONS(2137), - [aux_sym_cmd_identifier_token29] = ACTIONS(2137), - [aux_sym_cmd_identifier_token30] = ACTIONS(2137), - [aux_sym_cmd_identifier_token31] = ACTIONS(2137), - [aux_sym_cmd_identifier_token32] = ACTIONS(2137), - [aux_sym_cmd_identifier_token33] = ACTIONS(2137), - [aux_sym_cmd_identifier_token34] = ACTIONS(2131), - [aux_sym_cmd_identifier_token35] = ACTIONS(2137), - [aux_sym_cmd_identifier_token36] = ACTIONS(2137), - [aux_sym_cmd_identifier_token37] = ACTIONS(2137), - [aux_sym_cmd_identifier_token38] = ACTIONS(2131), - [aux_sym_cmd_identifier_token39] = ACTIONS(2137), - [aux_sym_cmd_identifier_token40] = ACTIONS(2137), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_export_DASHenv] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_module] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2137), - [anon_sym_error] = ACTIONS(2131), - [anon_sym_DASH2] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_in2] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_make] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_do] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_else] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_catch] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_source] = ACTIONS(2131), - [anon_sym_source_DASHenv] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_hide] = ACTIONS(2131), - [anon_sym_hide_DASHenv] = ACTIONS(2131), - [anon_sym_overlay] = ACTIONS(2131), - [anon_sym_as] = ACTIONS(2131), - [anon_sym_PLUS2] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2137), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2137), - [aux_sym__val_number_decimal_token3] = ACTIONS(2137), - [aux_sym__val_number_decimal_token4] = ACTIONS(2137), - [aux_sym__val_number_token1] = ACTIONS(2137), - [aux_sym__val_number_token2] = ACTIONS(2137), - [aux_sym__val_number_token3] = ACTIONS(2137), - [aux_sym__val_number_token4] = ACTIONS(2131), - [aux_sym__val_number_token5] = ACTIONS(2131), - [aux_sym__val_number_token6] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(2137), - [sym__str_single_quotes] = ACTIONS(2137), - [sym__str_back_ticks] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2350), + [anon_sym_alias] = ACTIONS(2350), + [anon_sym_let] = ACTIONS(2350), + [anon_sym_let_DASHenv] = ACTIONS(2350), + [anon_sym_mut] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [aux_sym_cmd_identifier_token1] = ACTIONS(2350), + [aux_sym_cmd_identifier_token2] = ACTIONS(2352), + [aux_sym_cmd_identifier_token3] = ACTIONS(2352), + [aux_sym_cmd_identifier_token4] = ACTIONS(2352), + [aux_sym_cmd_identifier_token5] = ACTIONS(2352), + [aux_sym_cmd_identifier_token6] = ACTIONS(2352), + [aux_sym_cmd_identifier_token7] = ACTIONS(2352), + [aux_sym_cmd_identifier_token8] = ACTIONS(2350), + [aux_sym_cmd_identifier_token9] = ACTIONS(2350), + [aux_sym_cmd_identifier_token10] = ACTIONS(2352), + [aux_sym_cmd_identifier_token11] = ACTIONS(2352), + [aux_sym_cmd_identifier_token12] = ACTIONS(2350), + [aux_sym_cmd_identifier_token13] = ACTIONS(2350), + [aux_sym_cmd_identifier_token14] = ACTIONS(2350), + [aux_sym_cmd_identifier_token15] = ACTIONS(2350), + [aux_sym_cmd_identifier_token16] = ACTIONS(2352), + [aux_sym_cmd_identifier_token17] = ACTIONS(2352), + [aux_sym_cmd_identifier_token18] = ACTIONS(2352), + [aux_sym_cmd_identifier_token19] = ACTIONS(2352), + [aux_sym_cmd_identifier_token20] = ACTIONS(2352), + [aux_sym_cmd_identifier_token21] = ACTIONS(2352), + [aux_sym_cmd_identifier_token22] = ACTIONS(2352), + [aux_sym_cmd_identifier_token23] = ACTIONS(2352), + [aux_sym_cmd_identifier_token24] = ACTIONS(2352), + [aux_sym_cmd_identifier_token25] = ACTIONS(2352), + [aux_sym_cmd_identifier_token26] = ACTIONS(2352), + [aux_sym_cmd_identifier_token27] = ACTIONS(2352), + [aux_sym_cmd_identifier_token28] = ACTIONS(2352), + [aux_sym_cmd_identifier_token29] = ACTIONS(2352), + [aux_sym_cmd_identifier_token30] = ACTIONS(2352), + [aux_sym_cmd_identifier_token31] = ACTIONS(2352), + [aux_sym_cmd_identifier_token32] = ACTIONS(2352), + [aux_sym_cmd_identifier_token33] = ACTIONS(2352), + [aux_sym_cmd_identifier_token34] = ACTIONS(2350), + [aux_sym_cmd_identifier_token35] = ACTIONS(2352), + [aux_sym_cmd_identifier_token36] = ACTIONS(2352), + [aux_sym_cmd_identifier_token37] = ACTIONS(2352), + [aux_sym_cmd_identifier_token38] = ACTIONS(2350), + [aux_sym_cmd_identifier_token39] = ACTIONS(2352), + [aux_sym_cmd_identifier_token40] = ACTIONS(2352), + [anon_sym_def] = ACTIONS(2350), + [anon_sym_export_DASHenv] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym_module] = ACTIONS(2350), + [anon_sym_use] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_error] = ACTIONS(2350), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in2] = ACTIONS(2350), + [anon_sym_loop] = ACTIONS(2350), + [anon_sym_make] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_match] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2350), + [anon_sym_catch] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_source] = ACTIONS(2350), + [anon_sym_source_DASHenv] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_hide] = ACTIONS(2350), + [anon_sym_hide_DASHenv] = ACTIONS(2350), + [anon_sym_overlay] = ACTIONS(2350), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), + [aux_sym__val_number_decimal_token1] = ACTIONS(2350), + [aux_sym__val_number_decimal_token2] = ACTIONS(2352), + [aux_sym__val_number_decimal_token3] = ACTIONS(2352), + [aux_sym__val_number_decimal_token4] = ACTIONS(2352), + [aux_sym__val_number_token1] = ACTIONS(2352), + [aux_sym__val_number_token2] = ACTIONS(2352), + [aux_sym__val_number_token3] = ACTIONS(2352), + [aux_sym__val_number_token4] = ACTIONS(2350), + [aux_sym__val_number_token5] = ACTIONS(2350), + [aux_sym__val_number_token6] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [sym__str_single_quotes] = ACTIONS(2352), + [sym__str_back_ticks] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2352), }, [735] = { [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(2407), - [anon_sym_alias] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_let_DASHenv] = ACTIONS(2407), - [anon_sym_mut] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [aux_sym_cmd_identifier_token1] = ACTIONS(2407), - [aux_sym_cmd_identifier_token2] = ACTIONS(2409), - [aux_sym_cmd_identifier_token3] = ACTIONS(2409), - [aux_sym_cmd_identifier_token4] = ACTIONS(2409), - [aux_sym_cmd_identifier_token5] = ACTIONS(2409), - [aux_sym_cmd_identifier_token6] = ACTIONS(2409), - [aux_sym_cmd_identifier_token7] = ACTIONS(2409), - [aux_sym_cmd_identifier_token8] = ACTIONS(2407), - [aux_sym_cmd_identifier_token9] = ACTIONS(2407), - [aux_sym_cmd_identifier_token10] = ACTIONS(2409), - [aux_sym_cmd_identifier_token11] = ACTIONS(2409), - [aux_sym_cmd_identifier_token12] = ACTIONS(2407), - [aux_sym_cmd_identifier_token13] = ACTIONS(2407), - [aux_sym_cmd_identifier_token14] = ACTIONS(2407), - [aux_sym_cmd_identifier_token15] = ACTIONS(2407), - [aux_sym_cmd_identifier_token16] = ACTIONS(2409), - [aux_sym_cmd_identifier_token17] = ACTIONS(2409), - [aux_sym_cmd_identifier_token18] = ACTIONS(2409), - [aux_sym_cmd_identifier_token19] = ACTIONS(2409), - [aux_sym_cmd_identifier_token20] = ACTIONS(2409), - [aux_sym_cmd_identifier_token21] = ACTIONS(2409), - [aux_sym_cmd_identifier_token22] = ACTIONS(2409), - [aux_sym_cmd_identifier_token23] = ACTIONS(2409), - [aux_sym_cmd_identifier_token24] = ACTIONS(2409), - [aux_sym_cmd_identifier_token25] = ACTIONS(2409), - [aux_sym_cmd_identifier_token26] = ACTIONS(2409), - [aux_sym_cmd_identifier_token27] = ACTIONS(2409), - [aux_sym_cmd_identifier_token28] = ACTIONS(2409), - [aux_sym_cmd_identifier_token29] = ACTIONS(2409), - [aux_sym_cmd_identifier_token30] = ACTIONS(2409), - [aux_sym_cmd_identifier_token31] = ACTIONS(2409), - [aux_sym_cmd_identifier_token32] = ACTIONS(2409), - [aux_sym_cmd_identifier_token33] = ACTIONS(2409), - [aux_sym_cmd_identifier_token34] = ACTIONS(2407), - [aux_sym_cmd_identifier_token35] = ACTIONS(2409), - [aux_sym_cmd_identifier_token36] = ACTIONS(2409), - [aux_sym_cmd_identifier_token37] = ACTIONS(2409), - [aux_sym_cmd_identifier_token38] = ACTIONS(2407), - [aux_sym_cmd_identifier_token39] = ACTIONS(2409), - [aux_sym_cmd_identifier_token40] = ACTIONS(2409), - [anon_sym_def] = ACTIONS(2407), - [anon_sym_export_DASHenv] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_module] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_error] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_in2] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_make] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_do] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_catch] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_source] = ACTIONS(2407), - [anon_sym_source_DASHenv] = ACTIONS(2407), - [anon_sym_register] = ACTIONS(2407), - [anon_sym_hide] = ACTIONS(2407), - [anon_sym_hide_DASHenv] = ACTIONS(2407), - [anon_sym_overlay] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), - [aux_sym__val_number_decimal_token1] = ACTIONS(2407), - [aux_sym__val_number_decimal_token2] = ACTIONS(2409), - [aux_sym__val_number_decimal_token3] = ACTIONS(2409), - [aux_sym__val_number_decimal_token4] = ACTIONS(2409), - [aux_sym__val_number_token1] = ACTIONS(2409), - [aux_sym__val_number_token2] = ACTIONS(2409), - [aux_sym__val_number_token3] = ACTIONS(2409), - [aux_sym__val_number_token4] = ACTIONS(2407), - [aux_sym__val_number_token5] = ACTIONS(2407), - [aux_sym__val_number_token6] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2409), - [sym__str_single_quotes] = ACTIONS(2409), - [sym__str_back_ticks] = ACTIONS(2409), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2409), + [anon_sym_export] = ACTIONS(2493), + [anon_sym_alias] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_let_DASHenv] = ACTIONS(2493), + [anon_sym_mut] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [aux_sym_cmd_identifier_token1] = ACTIONS(2493), + [aux_sym_cmd_identifier_token2] = ACTIONS(2495), + [aux_sym_cmd_identifier_token3] = ACTIONS(2495), + [aux_sym_cmd_identifier_token4] = ACTIONS(2495), + [aux_sym_cmd_identifier_token5] = ACTIONS(2495), + [aux_sym_cmd_identifier_token6] = ACTIONS(2495), + [aux_sym_cmd_identifier_token7] = ACTIONS(2495), + [aux_sym_cmd_identifier_token8] = ACTIONS(2493), + [aux_sym_cmd_identifier_token9] = ACTIONS(2493), + [aux_sym_cmd_identifier_token10] = ACTIONS(2495), + [aux_sym_cmd_identifier_token11] = ACTIONS(2495), + [aux_sym_cmd_identifier_token12] = ACTIONS(2493), + [aux_sym_cmd_identifier_token13] = ACTIONS(2493), + [aux_sym_cmd_identifier_token14] = ACTIONS(2493), + [aux_sym_cmd_identifier_token15] = ACTIONS(2493), + [aux_sym_cmd_identifier_token16] = ACTIONS(2495), + [aux_sym_cmd_identifier_token17] = ACTIONS(2495), + [aux_sym_cmd_identifier_token18] = ACTIONS(2495), + [aux_sym_cmd_identifier_token19] = ACTIONS(2495), + [aux_sym_cmd_identifier_token20] = ACTIONS(2495), + [aux_sym_cmd_identifier_token21] = ACTIONS(2495), + [aux_sym_cmd_identifier_token22] = ACTIONS(2495), + [aux_sym_cmd_identifier_token23] = ACTIONS(2495), + [aux_sym_cmd_identifier_token24] = ACTIONS(2495), + [aux_sym_cmd_identifier_token25] = ACTIONS(2495), + [aux_sym_cmd_identifier_token26] = ACTIONS(2495), + [aux_sym_cmd_identifier_token27] = ACTIONS(2495), + [aux_sym_cmd_identifier_token28] = ACTIONS(2495), + [aux_sym_cmd_identifier_token29] = ACTIONS(2495), + [aux_sym_cmd_identifier_token30] = ACTIONS(2495), + [aux_sym_cmd_identifier_token31] = ACTIONS(2495), + [aux_sym_cmd_identifier_token32] = ACTIONS(2495), + [aux_sym_cmd_identifier_token33] = ACTIONS(2495), + [aux_sym_cmd_identifier_token34] = ACTIONS(2493), + [aux_sym_cmd_identifier_token35] = ACTIONS(2495), + [aux_sym_cmd_identifier_token36] = ACTIONS(2495), + [aux_sym_cmd_identifier_token37] = ACTIONS(2495), + [aux_sym_cmd_identifier_token38] = ACTIONS(2493), + [aux_sym_cmd_identifier_token39] = ACTIONS(2495), + [aux_sym_cmd_identifier_token40] = ACTIONS(2495), + [anon_sym_def] = ACTIONS(2493), + [anon_sym_export_DASHenv] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_module] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_DOLLAR] = ACTIONS(2495), + [anon_sym_error] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_in2] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_make] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_catch] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_source] = ACTIONS(2493), + [anon_sym_source_DASHenv] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_hide] = ACTIONS(2493), + [anon_sym_hide_DASHenv] = ACTIONS(2493), + [anon_sym_overlay] = ACTIONS(2493), + [anon_sym_as] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2495), + [aux_sym__val_number_decimal_token1] = ACTIONS(2493), + [aux_sym__val_number_decimal_token2] = ACTIONS(2495), + [aux_sym__val_number_decimal_token3] = ACTIONS(2495), + [aux_sym__val_number_decimal_token4] = ACTIONS(2495), + [aux_sym__val_number_token1] = ACTIONS(2495), + [aux_sym__val_number_token2] = ACTIONS(2495), + [aux_sym__val_number_token3] = ACTIONS(2495), + [aux_sym__val_number_token4] = ACTIONS(2493), + [aux_sym__val_number_token5] = ACTIONS(2493), + [aux_sym__val_number_token6] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym__str_single_quotes] = ACTIONS(2495), + [sym__str_back_ticks] = ACTIONS(2495), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2495), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2495), }, [736] = { [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(2064), - [anon_sym_alias] = ACTIONS(2064), - [anon_sym_let] = ACTIONS(2064), - [anon_sym_let_DASHenv] = ACTIONS(2064), - [anon_sym_mut] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [aux_sym_cmd_identifier_token1] = ACTIONS(2064), - [aux_sym_cmd_identifier_token2] = ACTIONS(2070), - [aux_sym_cmd_identifier_token3] = ACTIONS(2070), - [aux_sym_cmd_identifier_token4] = ACTIONS(2070), - [aux_sym_cmd_identifier_token5] = ACTIONS(2070), - [aux_sym_cmd_identifier_token6] = ACTIONS(2070), - [aux_sym_cmd_identifier_token7] = ACTIONS(2070), - [aux_sym_cmd_identifier_token8] = ACTIONS(2064), - [aux_sym_cmd_identifier_token9] = ACTIONS(2064), - [aux_sym_cmd_identifier_token10] = ACTIONS(2070), - [aux_sym_cmd_identifier_token11] = ACTIONS(2070), - [aux_sym_cmd_identifier_token12] = ACTIONS(2064), - [aux_sym_cmd_identifier_token13] = ACTIONS(2064), - [aux_sym_cmd_identifier_token14] = ACTIONS(2064), - [aux_sym_cmd_identifier_token15] = ACTIONS(2064), - [aux_sym_cmd_identifier_token16] = ACTIONS(2070), - [aux_sym_cmd_identifier_token17] = ACTIONS(2070), - [aux_sym_cmd_identifier_token18] = ACTIONS(2070), - [aux_sym_cmd_identifier_token19] = ACTIONS(2070), - [aux_sym_cmd_identifier_token20] = ACTIONS(2070), - [aux_sym_cmd_identifier_token21] = ACTIONS(2070), - [aux_sym_cmd_identifier_token22] = ACTIONS(2070), - [aux_sym_cmd_identifier_token23] = ACTIONS(2070), - [aux_sym_cmd_identifier_token24] = ACTIONS(2070), - [aux_sym_cmd_identifier_token25] = ACTIONS(2070), - [aux_sym_cmd_identifier_token26] = ACTIONS(2070), - [aux_sym_cmd_identifier_token27] = ACTIONS(2070), - [aux_sym_cmd_identifier_token28] = ACTIONS(2070), - [aux_sym_cmd_identifier_token29] = ACTIONS(2070), - [aux_sym_cmd_identifier_token30] = ACTIONS(2070), - [aux_sym_cmd_identifier_token31] = ACTIONS(2070), - [aux_sym_cmd_identifier_token32] = ACTIONS(2070), - [aux_sym_cmd_identifier_token33] = ACTIONS(2070), - [aux_sym_cmd_identifier_token34] = ACTIONS(2064), - [aux_sym_cmd_identifier_token35] = ACTIONS(2070), - [aux_sym_cmd_identifier_token36] = ACTIONS(2070), - [aux_sym_cmd_identifier_token37] = ACTIONS(2070), - [aux_sym_cmd_identifier_token38] = ACTIONS(2064), - [aux_sym_cmd_identifier_token39] = ACTIONS(2070), - [aux_sym_cmd_identifier_token40] = ACTIONS(2070), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_export_DASHenv] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_module] = ACTIONS(2064), - [anon_sym_use] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_DOLLAR] = ACTIONS(2070), - [anon_sym_error] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_in2] = ACTIONS(2064), - [anon_sym_loop] = ACTIONS(2064), - [anon_sym_make] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_do] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_catch] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_source] = ACTIONS(2064), - [anon_sym_source_DASHenv] = ACTIONS(2064), - [anon_sym_register] = ACTIONS(2064), - [anon_sym_hide] = ACTIONS(2064), - [anon_sym_hide_DASHenv] = ACTIONS(2064), - [anon_sym_overlay] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(2064), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2070), - [aux_sym__val_number_decimal_token1] = ACTIONS(2064), - [aux_sym__val_number_decimal_token2] = ACTIONS(2070), - [aux_sym__val_number_decimal_token3] = ACTIONS(2070), - [aux_sym__val_number_decimal_token4] = ACTIONS(2070), - [aux_sym__val_number_token1] = ACTIONS(2070), - [aux_sym__val_number_token2] = ACTIONS(2070), - [aux_sym__val_number_token3] = ACTIONS(2070), - [aux_sym__val_number_token4] = ACTIONS(2064), - [aux_sym__val_number_token5] = ACTIONS(2064), - [aux_sym__val_number_token6] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2070), - [sym__str_single_quotes] = ACTIONS(2070), - [sym__str_back_ticks] = ACTIONS(2070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2070), + [anon_sym_export] = ACTIONS(2497), + [anon_sym_alias] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_let_DASHenv] = ACTIONS(2497), + [anon_sym_mut] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [aux_sym_cmd_identifier_token1] = ACTIONS(2497), + [aux_sym_cmd_identifier_token2] = ACTIONS(2499), + [aux_sym_cmd_identifier_token3] = ACTIONS(2499), + [aux_sym_cmd_identifier_token4] = ACTIONS(2499), + [aux_sym_cmd_identifier_token5] = ACTIONS(2499), + [aux_sym_cmd_identifier_token6] = ACTIONS(2499), + [aux_sym_cmd_identifier_token7] = ACTIONS(2499), + [aux_sym_cmd_identifier_token8] = ACTIONS(2497), + [aux_sym_cmd_identifier_token9] = ACTIONS(2497), + [aux_sym_cmd_identifier_token10] = ACTIONS(2499), + [aux_sym_cmd_identifier_token11] = ACTIONS(2499), + [aux_sym_cmd_identifier_token12] = ACTIONS(2497), + [aux_sym_cmd_identifier_token13] = ACTIONS(2497), + [aux_sym_cmd_identifier_token14] = ACTIONS(2497), + [aux_sym_cmd_identifier_token15] = ACTIONS(2497), + [aux_sym_cmd_identifier_token16] = ACTIONS(2499), + [aux_sym_cmd_identifier_token17] = ACTIONS(2499), + [aux_sym_cmd_identifier_token18] = ACTIONS(2499), + [aux_sym_cmd_identifier_token19] = ACTIONS(2499), + [aux_sym_cmd_identifier_token20] = ACTIONS(2499), + [aux_sym_cmd_identifier_token21] = ACTIONS(2499), + [aux_sym_cmd_identifier_token22] = ACTIONS(2499), + [aux_sym_cmd_identifier_token23] = ACTIONS(2499), + [aux_sym_cmd_identifier_token24] = ACTIONS(2499), + [aux_sym_cmd_identifier_token25] = ACTIONS(2499), + [aux_sym_cmd_identifier_token26] = ACTIONS(2499), + [aux_sym_cmd_identifier_token27] = ACTIONS(2499), + [aux_sym_cmd_identifier_token28] = ACTIONS(2499), + [aux_sym_cmd_identifier_token29] = ACTIONS(2499), + [aux_sym_cmd_identifier_token30] = ACTIONS(2499), + [aux_sym_cmd_identifier_token31] = ACTIONS(2499), + [aux_sym_cmd_identifier_token32] = ACTIONS(2499), + [aux_sym_cmd_identifier_token33] = ACTIONS(2499), + [aux_sym_cmd_identifier_token34] = ACTIONS(2497), + [aux_sym_cmd_identifier_token35] = ACTIONS(2499), + [aux_sym_cmd_identifier_token36] = ACTIONS(2499), + [aux_sym_cmd_identifier_token37] = ACTIONS(2499), + [aux_sym_cmd_identifier_token38] = ACTIONS(2497), + [aux_sym_cmd_identifier_token39] = ACTIONS(2499), + [aux_sym_cmd_identifier_token40] = ACTIONS(2499), + [anon_sym_def] = ACTIONS(2497), + [anon_sym_export_DASHenv] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_module] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_DOLLAR] = ACTIONS(2499), + [anon_sym_error] = ACTIONS(2497), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_in2] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_make] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_do] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2497), + [anon_sym_catch] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_source] = ACTIONS(2497), + [anon_sym_source_DASHenv] = ACTIONS(2497), + [anon_sym_register] = ACTIONS(2497), + [anon_sym_hide] = ACTIONS(2497), + [anon_sym_hide_DASHenv] = ACTIONS(2497), + [anon_sym_overlay] = ACTIONS(2497), + [anon_sym_as] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), + [aux_sym__val_number_decimal_token1] = ACTIONS(2497), + [aux_sym__val_number_decimal_token2] = ACTIONS(2499), + [aux_sym__val_number_decimal_token3] = ACTIONS(2499), + [aux_sym__val_number_decimal_token4] = ACTIONS(2499), + [aux_sym__val_number_token1] = ACTIONS(2499), + [aux_sym__val_number_token2] = ACTIONS(2499), + [aux_sym__val_number_token3] = ACTIONS(2499), + [aux_sym__val_number_token4] = ACTIONS(2497), + [aux_sym__val_number_token5] = ACTIONS(2497), + [aux_sym__val_number_token6] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(2499), + [sym__str_single_quotes] = ACTIONS(2499), + [sym__str_back_ticks] = ACTIONS(2499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2499), }, [737] = { + [aux_sym__pipe_separator] = STATE(700), [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [aux_sym_shebang_repeat1] = STATE(767), + [aux_sym_cmd_identifier_token1] = ACTIONS(2531), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [aux_sym_cmd_identifier_token3] = ACTIONS(2533), + [aux_sym_cmd_identifier_token4] = ACTIONS(2533), + [aux_sym_cmd_identifier_token5] = ACTIONS(2533), + [aux_sym_cmd_identifier_token6] = ACTIONS(2533), + [aux_sym_cmd_identifier_token7] = ACTIONS(2533), + [aux_sym_cmd_identifier_token8] = ACTIONS(2533), + [aux_sym_cmd_identifier_token9] = ACTIONS(2531), + [aux_sym_cmd_identifier_token10] = ACTIONS(2533), + [aux_sym_cmd_identifier_token11] = ACTIONS(2533), + [aux_sym_cmd_identifier_token12] = ACTIONS(2533), + [aux_sym_cmd_identifier_token13] = ACTIONS(2531), + [aux_sym_cmd_identifier_token14] = ACTIONS(2533), + [aux_sym_cmd_identifier_token15] = ACTIONS(2531), + [aux_sym_cmd_identifier_token16] = ACTIONS(2533), + [aux_sym_cmd_identifier_token17] = ACTIONS(2533), + [aux_sym_cmd_identifier_token18] = ACTIONS(2531), + [aux_sym_cmd_identifier_token19] = ACTIONS(2533), + [aux_sym_cmd_identifier_token20] = ACTIONS(2533), + [aux_sym_cmd_identifier_token21] = ACTIONS(2533), + [aux_sym_cmd_identifier_token22] = ACTIONS(2533), + [aux_sym_cmd_identifier_token23] = ACTIONS(2533), + [aux_sym_cmd_identifier_token24] = ACTIONS(2533), + [aux_sym_cmd_identifier_token25] = ACTIONS(2533), + [aux_sym_cmd_identifier_token26] = ACTIONS(2533), + [aux_sym_cmd_identifier_token27] = ACTIONS(2533), + [aux_sym_cmd_identifier_token28] = ACTIONS(2533), + [aux_sym_cmd_identifier_token29] = ACTIONS(2533), + [aux_sym_cmd_identifier_token30] = ACTIONS(2533), + [aux_sym_cmd_identifier_token31] = ACTIONS(2533), + [aux_sym_cmd_identifier_token32] = ACTIONS(2531), + [aux_sym_cmd_identifier_token33] = ACTIONS(2533), + [aux_sym_cmd_identifier_token34] = ACTIONS(2531), + [aux_sym_cmd_identifier_token35] = ACTIONS(2533), + [aux_sym_cmd_identifier_token36] = ACTIONS(2533), + [aux_sym_cmd_identifier_token37] = ACTIONS(2533), + [aux_sym_cmd_identifier_token38] = ACTIONS(2531), + [aux_sym_cmd_identifier_token39] = ACTIONS(2533), + [aux_sym_cmd_identifier_token40] = ACTIONS(2533), + [sym__newline] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_DOLLAR] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_DOT_DOT] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_where] = ACTIONS(2533), + [aux_sym_expr_unary_token1] = ACTIONS(2533), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2533), + [anon_sym_DOT_DOT_LT] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2531), + [anon_sym_false] = ACTIONS(2531), + [aux_sym__val_number_decimal_token1] = ACTIONS(2531), + [aux_sym__val_number_decimal_token2] = ACTIONS(2533), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(2533), + [aux_sym__val_number_token2] = ACTIONS(2533), + [aux_sym__val_number_token3] = ACTIONS(2533), + [aux_sym__val_number_token4] = ACTIONS(2531), + [aux_sym__val_number_token5] = ACTIONS(2531), + [aux_sym__val_number_token6] = ACTIONS(2531), + [anon_sym_0b] = ACTIONS(2531), + [anon_sym_0o] = ACTIONS(2531), + [anon_sym_0x] = ACTIONS(2531), + [sym_val_date] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym__str_single_quotes] = ACTIONS(2533), + [sym__str_back_ticks] = ACTIONS(2533), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2533), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2533), + [aux_sym_env_var_token1] = ACTIONS(2531), + [anon_sym_CARET] = ACTIONS(2533), + [aux_sym_command_token1] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2533), }, [738] = { [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_alias] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_let_DASHenv] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [aux_sym_cmd_identifier_token1] = ACTIONS(2045), - [aux_sym_cmd_identifier_token2] = ACTIONS(2047), - [aux_sym_cmd_identifier_token3] = ACTIONS(2047), - [aux_sym_cmd_identifier_token4] = ACTIONS(2047), - [aux_sym_cmd_identifier_token5] = ACTIONS(2047), - [aux_sym_cmd_identifier_token6] = ACTIONS(2047), - [aux_sym_cmd_identifier_token7] = ACTIONS(2047), - [aux_sym_cmd_identifier_token8] = ACTIONS(2045), - [aux_sym_cmd_identifier_token9] = ACTIONS(2045), - [aux_sym_cmd_identifier_token10] = ACTIONS(2047), - [aux_sym_cmd_identifier_token11] = ACTIONS(2047), - [aux_sym_cmd_identifier_token12] = ACTIONS(2045), - [aux_sym_cmd_identifier_token13] = ACTIONS(2045), - [aux_sym_cmd_identifier_token14] = ACTIONS(2045), - [aux_sym_cmd_identifier_token15] = ACTIONS(2045), - [aux_sym_cmd_identifier_token16] = ACTIONS(2047), - [aux_sym_cmd_identifier_token17] = ACTIONS(2047), - [aux_sym_cmd_identifier_token18] = ACTIONS(2047), - [aux_sym_cmd_identifier_token19] = ACTIONS(2047), - [aux_sym_cmd_identifier_token20] = ACTIONS(2047), - [aux_sym_cmd_identifier_token21] = ACTIONS(2047), - [aux_sym_cmd_identifier_token22] = ACTIONS(2047), - [aux_sym_cmd_identifier_token23] = ACTIONS(2047), - [aux_sym_cmd_identifier_token24] = ACTIONS(2047), - [aux_sym_cmd_identifier_token25] = ACTIONS(2047), - [aux_sym_cmd_identifier_token26] = ACTIONS(2047), - [aux_sym_cmd_identifier_token27] = ACTIONS(2047), - [aux_sym_cmd_identifier_token28] = ACTIONS(2047), - [aux_sym_cmd_identifier_token29] = ACTIONS(2047), - [aux_sym_cmd_identifier_token30] = ACTIONS(2047), - [aux_sym_cmd_identifier_token31] = ACTIONS(2047), - [aux_sym_cmd_identifier_token32] = ACTIONS(2047), - [aux_sym_cmd_identifier_token33] = ACTIONS(2047), - [aux_sym_cmd_identifier_token34] = ACTIONS(2045), - [aux_sym_cmd_identifier_token35] = ACTIONS(2047), - [aux_sym_cmd_identifier_token36] = ACTIONS(2047), - [aux_sym_cmd_identifier_token37] = ACTIONS(2047), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2047), - [aux_sym_cmd_identifier_token40] = ACTIONS(2047), - [anon_sym_def] = ACTIONS(2045), - [anon_sym_export_DASHenv] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_module] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_error] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_in2] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_make] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_source] = ACTIONS(2045), - [anon_sym_source_DASHenv] = ACTIONS(2045), - [anon_sym_register] = ACTIONS(2045), - [anon_sym_hide] = ACTIONS(2045), - [anon_sym_hide_DASHenv] = ACTIONS(2045), - [anon_sym_overlay] = ACTIONS(2045), - [anon_sym_as] = ACTIONS(2045), - [anon_sym_PLUS2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2047), - [aux_sym__val_number_decimal_token3] = ACTIONS(2047), - [aux_sym__val_number_decimal_token4] = ACTIONS(2047), - [aux_sym__val_number_token1] = ACTIONS(2047), - [aux_sym__val_number_token2] = ACTIONS(2047), - [aux_sym__val_number_token3] = ACTIONS(2047), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_let_DASHenv] = ACTIONS(2174), + [anon_sym_mut] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [aux_sym_cmd_identifier_token2] = ACTIONS(2176), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [aux_sym_cmd_identifier_token6] = ACTIONS(2176), + [aux_sym_cmd_identifier_token7] = ACTIONS(2176), + [aux_sym_cmd_identifier_token8] = ACTIONS(2174), + [aux_sym_cmd_identifier_token9] = ACTIONS(2174), + [aux_sym_cmd_identifier_token10] = ACTIONS(2176), + [aux_sym_cmd_identifier_token11] = ACTIONS(2176), + [aux_sym_cmd_identifier_token12] = ACTIONS(2174), + [aux_sym_cmd_identifier_token13] = ACTIONS(2174), + [aux_sym_cmd_identifier_token14] = ACTIONS(2174), + [aux_sym_cmd_identifier_token15] = ACTIONS(2174), + [aux_sym_cmd_identifier_token16] = ACTIONS(2176), + [aux_sym_cmd_identifier_token17] = ACTIONS(2176), + [aux_sym_cmd_identifier_token18] = ACTIONS(2176), + [aux_sym_cmd_identifier_token19] = ACTIONS(2176), + [aux_sym_cmd_identifier_token20] = ACTIONS(2176), + [aux_sym_cmd_identifier_token21] = ACTIONS(2176), + [aux_sym_cmd_identifier_token22] = ACTIONS(2176), + [aux_sym_cmd_identifier_token23] = ACTIONS(2176), + [aux_sym_cmd_identifier_token24] = ACTIONS(2176), + [aux_sym_cmd_identifier_token25] = ACTIONS(2176), + [aux_sym_cmd_identifier_token26] = ACTIONS(2176), + [aux_sym_cmd_identifier_token27] = ACTIONS(2176), + [aux_sym_cmd_identifier_token28] = ACTIONS(2176), + [aux_sym_cmd_identifier_token29] = ACTIONS(2176), + [aux_sym_cmd_identifier_token30] = ACTIONS(2176), + [aux_sym_cmd_identifier_token31] = ACTIONS(2176), + [aux_sym_cmd_identifier_token32] = ACTIONS(2176), + [aux_sym_cmd_identifier_token33] = ACTIONS(2176), + [aux_sym_cmd_identifier_token34] = ACTIONS(2174), + [aux_sym_cmd_identifier_token35] = ACTIONS(2176), + [aux_sym_cmd_identifier_token36] = ACTIONS(2176), + [aux_sym_cmd_identifier_token37] = ACTIONS(2176), + [aux_sym_cmd_identifier_token38] = ACTIONS(2174), + [aux_sym_cmd_identifier_token39] = ACTIONS(2176), + [aux_sym_cmd_identifier_token40] = ACTIONS(2176), + [anon_sym_def] = ACTIONS(2174), + [anon_sym_export_DASHenv] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2176), + [anon_sym_error] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_in2] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_make] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_do] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_else] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2174), + [anon_sym_catch] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_source] = ACTIONS(2174), + [anon_sym_source_DASHenv] = ACTIONS(2174), + [anon_sym_register] = ACTIONS(2174), + [anon_sym_hide] = ACTIONS(2174), + [anon_sym_hide_DASHenv] = ACTIONS(2174), + [anon_sym_overlay] = ACTIONS(2174), + [anon_sym_as] = ACTIONS(2174), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2176), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2176), + [aux_sym__val_number_decimal_token3] = ACTIONS(2176), + [aux_sym__val_number_decimal_token4] = ACTIONS(2176), + [aux_sym__val_number_token1] = ACTIONS(2176), + [aux_sym__val_number_token2] = ACTIONS(2176), + [aux_sym__val_number_token3] = ACTIONS(2176), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym__str_single_quotes] = ACTIONS(2176), + [sym__str_back_ticks] = ACTIONS(2176), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2176), }, [739] = { [sym_comment] = STATE(739), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [aux_sym_cmd_identifier_token1] = ACTIONS(1771), - [aux_sym_cmd_identifier_token2] = ACTIONS(1773), - [aux_sym_cmd_identifier_token3] = ACTIONS(1773), - [aux_sym_cmd_identifier_token4] = ACTIONS(1773), - [aux_sym_cmd_identifier_token5] = ACTIONS(1773), - [aux_sym_cmd_identifier_token6] = ACTIONS(1773), - [aux_sym_cmd_identifier_token7] = ACTIONS(1773), - [aux_sym_cmd_identifier_token8] = ACTIONS(1771), - [aux_sym_cmd_identifier_token9] = ACTIONS(1771), - [aux_sym_cmd_identifier_token10] = ACTIONS(1773), - [aux_sym_cmd_identifier_token11] = ACTIONS(1773), - [aux_sym_cmd_identifier_token12] = ACTIONS(1771), - [aux_sym_cmd_identifier_token13] = ACTIONS(1771), - [aux_sym_cmd_identifier_token14] = ACTIONS(1771), - [aux_sym_cmd_identifier_token15] = ACTIONS(1771), - [aux_sym_cmd_identifier_token16] = ACTIONS(1773), - [aux_sym_cmd_identifier_token17] = ACTIONS(1773), - [aux_sym_cmd_identifier_token18] = ACTIONS(1773), - [aux_sym_cmd_identifier_token19] = ACTIONS(1773), - [aux_sym_cmd_identifier_token20] = ACTIONS(1773), - [aux_sym_cmd_identifier_token21] = ACTIONS(1773), - [aux_sym_cmd_identifier_token22] = ACTIONS(1773), - [aux_sym_cmd_identifier_token23] = ACTIONS(1773), - [aux_sym_cmd_identifier_token24] = ACTIONS(1773), - [aux_sym_cmd_identifier_token25] = ACTIONS(1773), - [aux_sym_cmd_identifier_token26] = ACTIONS(1773), - [aux_sym_cmd_identifier_token27] = ACTIONS(1773), - [aux_sym_cmd_identifier_token28] = ACTIONS(1773), - [aux_sym_cmd_identifier_token29] = ACTIONS(1773), - [aux_sym_cmd_identifier_token30] = ACTIONS(1773), - [aux_sym_cmd_identifier_token31] = ACTIONS(1773), - [aux_sym_cmd_identifier_token32] = ACTIONS(1773), - [aux_sym_cmd_identifier_token33] = ACTIONS(1773), - [aux_sym_cmd_identifier_token34] = ACTIONS(1771), - [aux_sym_cmd_identifier_token35] = ACTIONS(1773), - [aux_sym_cmd_identifier_token36] = ACTIONS(1773), - [aux_sym_cmd_identifier_token37] = ACTIONS(1773), - [aux_sym_cmd_identifier_token38] = ACTIONS(1771), - [aux_sym_cmd_identifier_token39] = ACTIONS(1773), - [aux_sym_cmd_identifier_token40] = ACTIONS(1773), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_in2] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_make] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_catch] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1771), - [aux_sym__val_number_token5] = ACTIONS(1771), - [aux_sym__val_number_token6] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [aux_sym_cmd_identifier_token1] = ACTIONS(2013), + [aux_sym_cmd_identifier_token2] = ACTIONS(2015), + [aux_sym_cmd_identifier_token3] = ACTIONS(2015), + [aux_sym_cmd_identifier_token4] = ACTIONS(2015), + [aux_sym_cmd_identifier_token5] = ACTIONS(2015), + [aux_sym_cmd_identifier_token6] = ACTIONS(2015), + [aux_sym_cmd_identifier_token7] = ACTIONS(2015), + [aux_sym_cmd_identifier_token8] = ACTIONS(2013), + [aux_sym_cmd_identifier_token9] = ACTIONS(2013), + [aux_sym_cmd_identifier_token10] = ACTIONS(2015), + [aux_sym_cmd_identifier_token11] = ACTIONS(2015), + [aux_sym_cmd_identifier_token12] = ACTIONS(2013), + [aux_sym_cmd_identifier_token13] = ACTIONS(2013), + [aux_sym_cmd_identifier_token14] = ACTIONS(2013), + [aux_sym_cmd_identifier_token15] = ACTIONS(2013), + [aux_sym_cmd_identifier_token16] = ACTIONS(2015), + [aux_sym_cmd_identifier_token17] = ACTIONS(2015), + [aux_sym_cmd_identifier_token18] = ACTIONS(2015), + [aux_sym_cmd_identifier_token19] = ACTIONS(2015), + [aux_sym_cmd_identifier_token20] = ACTIONS(2015), + [aux_sym_cmd_identifier_token21] = ACTIONS(2015), + [aux_sym_cmd_identifier_token22] = ACTIONS(2015), + [aux_sym_cmd_identifier_token23] = ACTIONS(2015), + [aux_sym_cmd_identifier_token24] = ACTIONS(2015), + [aux_sym_cmd_identifier_token25] = ACTIONS(2015), + [aux_sym_cmd_identifier_token26] = ACTIONS(2015), + [aux_sym_cmd_identifier_token27] = ACTIONS(2015), + [aux_sym_cmd_identifier_token28] = ACTIONS(2015), + [aux_sym_cmd_identifier_token29] = ACTIONS(2015), + [aux_sym_cmd_identifier_token30] = ACTIONS(2015), + [aux_sym_cmd_identifier_token31] = ACTIONS(2015), + [aux_sym_cmd_identifier_token32] = ACTIONS(2015), + [aux_sym_cmd_identifier_token33] = ACTIONS(2015), + [aux_sym_cmd_identifier_token34] = ACTIONS(2013), + [aux_sym_cmd_identifier_token35] = ACTIONS(2015), + [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [aux_sym_cmd_identifier_token37] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2015), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_in2] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_make] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_catch] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2013), + [aux_sym__val_number_token5] = ACTIONS(2013), + [aux_sym__val_number_token6] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), + [sym_raw_string_begin] = ACTIONS(2015), }, [740] = { [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(2379), - [anon_sym_alias] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_let_DASHenv] = ACTIONS(2379), - [anon_sym_mut] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [aux_sym_cmd_identifier_token1] = ACTIONS(2379), - [aux_sym_cmd_identifier_token2] = ACTIONS(2381), - [aux_sym_cmd_identifier_token3] = ACTIONS(2381), - [aux_sym_cmd_identifier_token4] = ACTIONS(2381), - [aux_sym_cmd_identifier_token5] = ACTIONS(2381), - [aux_sym_cmd_identifier_token6] = ACTIONS(2381), - [aux_sym_cmd_identifier_token7] = ACTIONS(2381), - [aux_sym_cmd_identifier_token8] = ACTIONS(2379), - [aux_sym_cmd_identifier_token9] = ACTIONS(2379), - [aux_sym_cmd_identifier_token10] = ACTIONS(2381), - [aux_sym_cmd_identifier_token11] = ACTIONS(2381), - [aux_sym_cmd_identifier_token12] = ACTIONS(2379), - [aux_sym_cmd_identifier_token13] = ACTIONS(2379), - [aux_sym_cmd_identifier_token14] = ACTIONS(2379), - [aux_sym_cmd_identifier_token15] = ACTIONS(2379), - [aux_sym_cmd_identifier_token16] = ACTIONS(2381), - [aux_sym_cmd_identifier_token17] = ACTIONS(2381), - [aux_sym_cmd_identifier_token18] = ACTIONS(2381), - [aux_sym_cmd_identifier_token19] = ACTIONS(2381), - [aux_sym_cmd_identifier_token20] = ACTIONS(2381), - [aux_sym_cmd_identifier_token21] = ACTIONS(2381), - [aux_sym_cmd_identifier_token22] = ACTIONS(2381), - [aux_sym_cmd_identifier_token23] = ACTIONS(2381), - [aux_sym_cmd_identifier_token24] = ACTIONS(2381), - [aux_sym_cmd_identifier_token25] = ACTIONS(2381), - [aux_sym_cmd_identifier_token26] = ACTIONS(2381), - [aux_sym_cmd_identifier_token27] = ACTIONS(2381), - [aux_sym_cmd_identifier_token28] = ACTIONS(2381), - [aux_sym_cmd_identifier_token29] = ACTIONS(2381), - [aux_sym_cmd_identifier_token30] = ACTIONS(2381), - [aux_sym_cmd_identifier_token31] = ACTIONS(2381), - [aux_sym_cmd_identifier_token32] = ACTIONS(2381), - [aux_sym_cmd_identifier_token33] = ACTIONS(2381), - [aux_sym_cmd_identifier_token34] = ACTIONS(2379), - [aux_sym_cmd_identifier_token35] = ACTIONS(2381), - [aux_sym_cmd_identifier_token36] = ACTIONS(2381), - [aux_sym_cmd_identifier_token37] = ACTIONS(2381), - [aux_sym_cmd_identifier_token38] = ACTIONS(2379), - [aux_sym_cmd_identifier_token39] = ACTIONS(2381), - [aux_sym_cmd_identifier_token40] = ACTIONS(2381), - [anon_sym_def] = ACTIONS(2379), - [anon_sym_export_DASHenv] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_module] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_error] = ACTIONS(2379), - [anon_sym_DASH2] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_in2] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_make] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_catch] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_source] = ACTIONS(2379), - [anon_sym_source_DASHenv] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_hide_DASHenv] = ACTIONS(2379), - [anon_sym_overlay] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_PLUS2] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2379), - [aux_sym__val_number_decimal_token2] = ACTIONS(2381), - [aux_sym__val_number_decimal_token3] = ACTIONS(2381), - [aux_sym__val_number_decimal_token4] = ACTIONS(2381), - [aux_sym__val_number_token1] = ACTIONS(2381), - [aux_sym__val_number_token2] = ACTIONS(2381), - [aux_sym__val_number_token3] = ACTIONS(2381), - [aux_sym__val_number_token4] = ACTIONS(2379), - [aux_sym__val_number_token5] = ACTIONS(2379), - [aux_sym__val_number_token6] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym__str_single_quotes] = ACTIONS(2381), - [sym__str_back_ticks] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2381), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2140), + [aux_sym_cmd_identifier_token3] = ACTIONS(2140), + [aux_sym_cmd_identifier_token4] = ACTIONS(2140), + [aux_sym_cmd_identifier_token5] = ACTIONS(2140), + [aux_sym_cmd_identifier_token6] = ACTIONS(2140), + [aux_sym_cmd_identifier_token7] = ACTIONS(2140), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2140), + [aux_sym_cmd_identifier_token11] = ACTIONS(2140), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2140), + [aux_sym_cmd_identifier_token17] = ACTIONS(2140), + [aux_sym_cmd_identifier_token18] = ACTIONS(2140), + [aux_sym_cmd_identifier_token19] = ACTIONS(2140), + [aux_sym_cmd_identifier_token20] = ACTIONS(2140), + [aux_sym_cmd_identifier_token21] = ACTIONS(2140), + [aux_sym_cmd_identifier_token22] = ACTIONS(2140), + [aux_sym_cmd_identifier_token23] = ACTIONS(2140), + [aux_sym_cmd_identifier_token24] = ACTIONS(2140), + [aux_sym_cmd_identifier_token25] = ACTIONS(2140), + [aux_sym_cmd_identifier_token26] = ACTIONS(2140), + [aux_sym_cmd_identifier_token27] = ACTIONS(2140), + [aux_sym_cmd_identifier_token28] = ACTIONS(2140), + [aux_sym_cmd_identifier_token29] = ACTIONS(2140), + [aux_sym_cmd_identifier_token30] = ACTIONS(2140), + [aux_sym_cmd_identifier_token31] = ACTIONS(2140), + [aux_sym_cmd_identifier_token32] = ACTIONS(2140), + [aux_sym_cmd_identifier_token33] = ACTIONS(2140), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2140), + [aux_sym_cmd_identifier_token36] = ACTIONS(2140), + [aux_sym_cmd_identifier_token37] = ACTIONS(2140), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2140), + [aux_sym_cmd_identifier_token40] = ACTIONS(2140), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_DOLLAR] = ACTIONS(2140), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2140), + [aux_sym__val_number_decimal_token3] = ACTIONS(2140), + [aux_sym__val_number_decimal_token4] = ACTIONS(2140), + [aux_sym__val_number_token1] = ACTIONS(2140), + [aux_sym__val_number_token2] = ACTIONS(2140), + [aux_sym__val_number_token3] = ACTIONS(2140), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2140), + [sym__str_single_quotes] = ACTIONS(2140), + [sym__str_back_ticks] = ACTIONS(2140), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2140), }, [741] = { [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(2197), - [anon_sym_alias] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_let_DASHenv] = ACTIONS(2197), - [anon_sym_mut] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [aux_sym_cmd_identifier_token1] = ACTIONS(2197), - [aux_sym_cmd_identifier_token2] = ACTIONS(2199), - [aux_sym_cmd_identifier_token3] = ACTIONS(2199), - [aux_sym_cmd_identifier_token4] = ACTIONS(2199), - [aux_sym_cmd_identifier_token5] = ACTIONS(2199), - [aux_sym_cmd_identifier_token6] = ACTIONS(2199), - [aux_sym_cmd_identifier_token7] = ACTIONS(2199), - [aux_sym_cmd_identifier_token8] = ACTIONS(2197), - [aux_sym_cmd_identifier_token9] = ACTIONS(2197), - [aux_sym_cmd_identifier_token10] = ACTIONS(2199), - [aux_sym_cmd_identifier_token11] = ACTIONS(2199), - [aux_sym_cmd_identifier_token12] = ACTIONS(2197), - [aux_sym_cmd_identifier_token13] = ACTIONS(2197), - [aux_sym_cmd_identifier_token14] = ACTIONS(2197), - [aux_sym_cmd_identifier_token15] = ACTIONS(2197), - [aux_sym_cmd_identifier_token16] = ACTIONS(2199), - [aux_sym_cmd_identifier_token17] = ACTIONS(2199), - [aux_sym_cmd_identifier_token18] = ACTIONS(2199), - [aux_sym_cmd_identifier_token19] = ACTIONS(2199), - [aux_sym_cmd_identifier_token20] = ACTIONS(2199), - [aux_sym_cmd_identifier_token21] = ACTIONS(2199), - [aux_sym_cmd_identifier_token22] = ACTIONS(2199), - [aux_sym_cmd_identifier_token23] = ACTIONS(2199), - [aux_sym_cmd_identifier_token24] = ACTIONS(2199), - [aux_sym_cmd_identifier_token25] = ACTIONS(2199), - [aux_sym_cmd_identifier_token26] = ACTIONS(2199), - [aux_sym_cmd_identifier_token27] = ACTIONS(2199), - [aux_sym_cmd_identifier_token28] = ACTIONS(2199), - [aux_sym_cmd_identifier_token29] = ACTIONS(2199), - [aux_sym_cmd_identifier_token30] = ACTIONS(2199), - [aux_sym_cmd_identifier_token31] = ACTIONS(2199), - [aux_sym_cmd_identifier_token32] = ACTIONS(2199), - [aux_sym_cmd_identifier_token33] = ACTIONS(2199), - [aux_sym_cmd_identifier_token34] = ACTIONS(2197), - [aux_sym_cmd_identifier_token35] = ACTIONS(2199), - [aux_sym_cmd_identifier_token36] = ACTIONS(2199), - [aux_sym_cmd_identifier_token37] = ACTIONS(2199), - [aux_sym_cmd_identifier_token38] = ACTIONS(2197), - [aux_sym_cmd_identifier_token39] = ACTIONS(2199), - [aux_sym_cmd_identifier_token40] = ACTIONS(2199), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_export_DASHenv] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_error] = ACTIONS(2197), - [anon_sym_DASH2] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_in2] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_make] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_do] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_else] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_catch] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_source] = ACTIONS(2197), - [anon_sym_source_DASHenv] = ACTIONS(2197), - [anon_sym_register] = ACTIONS(2197), - [anon_sym_hide] = ACTIONS(2197), - [anon_sym_hide_DASHenv] = ACTIONS(2197), - [anon_sym_overlay] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_PLUS2] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2199), - [aux_sym__val_number_decimal_token1] = ACTIONS(2197), - [aux_sym__val_number_decimal_token2] = ACTIONS(2199), - [aux_sym__val_number_decimal_token3] = ACTIONS(2199), - [aux_sym__val_number_decimal_token4] = ACTIONS(2199), - [aux_sym__val_number_token1] = ACTIONS(2199), - [aux_sym__val_number_token2] = ACTIONS(2199), - [aux_sym__val_number_token3] = ACTIONS(2199), - [aux_sym__val_number_token4] = ACTIONS(2197), - [aux_sym__val_number_token5] = ACTIONS(2197), - [aux_sym__val_number_token6] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2199), - [sym__str_single_quotes] = ACTIONS(2199), - [sym__str_back_ticks] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2199), + [anon_sym_export] = ACTIONS(2354), + [anon_sym_alias] = ACTIONS(2354), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_let_DASHenv] = ACTIONS(2354), + [anon_sym_mut] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [aux_sym_cmd_identifier_token1] = ACTIONS(2354), + [aux_sym_cmd_identifier_token2] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2356), + [aux_sym_cmd_identifier_token4] = ACTIONS(2356), + [aux_sym_cmd_identifier_token5] = ACTIONS(2356), + [aux_sym_cmd_identifier_token6] = ACTIONS(2356), + [aux_sym_cmd_identifier_token7] = ACTIONS(2356), + [aux_sym_cmd_identifier_token8] = ACTIONS(2354), + [aux_sym_cmd_identifier_token9] = ACTIONS(2354), + [aux_sym_cmd_identifier_token10] = ACTIONS(2356), + [aux_sym_cmd_identifier_token11] = ACTIONS(2356), + [aux_sym_cmd_identifier_token12] = ACTIONS(2354), + [aux_sym_cmd_identifier_token13] = ACTIONS(2354), + [aux_sym_cmd_identifier_token14] = ACTIONS(2354), + [aux_sym_cmd_identifier_token15] = ACTIONS(2354), + [aux_sym_cmd_identifier_token16] = ACTIONS(2356), + [aux_sym_cmd_identifier_token17] = ACTIONS(2356), + [aux_sym_cmd_identifier_token18] = ACTIONS(2356), + [aux_sym_cmd_identifier_token19] = ACTIONS(2356), + [aux_sym_cmd_identifier_token20] = ACTIONS(2356), + [aux_sym_cmd_identifier_token21] = ACTIONS(2356), + [aux_sym_cmd_identifier_token22] = ACTIONS(2356), + [aux_sym_cmd_identifier_token23] = ACTIONS(2356), + [aux_sym_cmd_identifier_token24] = ACTIONS(2356), + [aux_sym_cmd_identifier_token25] = ACTIONS(2356), + [aux_sym_cmd_identifier_token26] = ACTIONS(2356), + [aux_sym_cmd_identifier_token27] = ACTIONS(2356), + [aux_sym_cmd_identifier_token28] = ACTIONS(2356), + [aux_sym_cmd_identifier_token29] = ACTIONS(2356), + [aux_sym_cmd_identifier_token30] = ACTIONS(2356), + [aux_sym_cmd_identifier_token31] = ACTIONS(2356), + [aux_sym_cmd_identifier_token32] = ACTIONS(2356), + [aux_sym_cmd_identifier_token33] = ACTIONS(2356), + [aux_sym_cmd_identifier_token34] = ACTIONS(2354), + [aux_sym_cmd_identifier_token35] = ACTIONS(2356), + [aux_sym_cmd_identifier_token36] = ACTIONS(2356), + [aux_sym_cmd_identifier_token37] = ACTIONS(2356), + [aux_sym_cmd_identifier_token38] = ACTIONS(2354), + [aux_sym_cmd_identifier_token39] = ACTIONS(2356), + [aux_sym_cmd_identifier_token40] = ACTIONS(2356), + [anon_sym_def] = ACTIONS(2354), + [anon_sym_export_DASHenv] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym_module] = ACTIONS(2354), + [anon_sym_use] = ACTIONS(2354), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_DOLLAR] = ACTIONS(2356), + [anon_sym_error] = ACTIONS(2354), + [anon_sym_DASH2] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_in2] = ACTIONS(2354), + [anon_sym_loop] = ACTIONS(2354), + [anon_sym_make] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_do] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2354), + [anon_sym_match] = ACTIONS(2354), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2354), + [anon_sym_catch] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_source] = ACTIONS(2354), + [anon_sym_source_DASHenv] = ACTIONS(2354), + [anon_sym_register] = ACTIONS(2354), + [anon_sym_hide] = ACTIONS(2354), + [anon_sym_hide_DASHenv] = ACTIONS(2354), + [anon_sym_overlay] = ACTIONS(2354), + [anon_sym_as] = ACTIONS(2354), + [anon_sym_PLUS2] = ACTIONS(2354), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2356), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2356), + [aux_sym__val_number_decimal_token1] = ACTIONS(2354), + [aux_sym__val_number_decimal_token2] = ACTIONS(2356), + [aux_sym__val_number_decimal_token3] = ACTIONS(2356), + [aux_sym__val_number_decimal_token4] = ACTIONS(2356), + [aux_sym__val_number_token1] = ACTIONS(2356), + [aux_sym__val_number_token2] = ACTIONS(2356), + [aux_sym__val_number_token3] = ACTIONS(2356), + [aux_sym__val_number_token4] = ACTIONS(2354), + [aux_sym__val_number_token5] = ACTIONS(2354), + [aux_sym__val_number_token6] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [sym__str_single_quotes] = ACTIONS(2356), + [sym__str_back_ticks] = ACTIONS(2356), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2356), }, [742] = { [sym_comment] = STATE(742), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [aux_sym_cmd_identifier_token37] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1922), + [anon_sym_alias] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_let_DASHenv] = ACTIONS(1922), + [anon_sym_mut] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [aux_sym_cmd_identifier_token1] = ACTIONS(1922), + [aux_sym_cmd_identifier_token2] = ACTIONS(1924), + [aux_sym_cmd_identifier_token3] = ACTIONS(1924), + [aux_sym_cmd_identifier_token4] = ACTIONS(1924), + [aux_sym_cmd_identifier_token5] = ACTIONS(1924), + [aux_sym_cmd_identifier_token6] = ACTIONS(1924), + [aux_sym_cmd_identifier_token7] = ACTIONS(1924), + [aux_sym_cmd_identifier_token8] = ACTIONS(1922), + [aux_sym_cmd_identifier_token9] = ACTIONS(1922), + [aux_sym_cmd_identifier_token10] = ACTIONS(1924), + [aux_sym_cmd_identifier_token11] = ACTIONS(1924), + [aux_sym_cmd_identifier_token12] = ACTIONS(1922), + [aux_sym_cmd_identifier_token13] = ACTIONS(1922), + [aux_sym_cmd_identifier_token14] = ACTIONS(1922), + [aux_sym_cmd_identifier_token15] = ACTIONS(1922), + [aux_sym_cmd_identifier_token16] = ACTIONS(1924), + [aux_sym_cmd_identifier_token17] = ACTIONS(1924), + [aux_sym_cmd_identifier_token18] = ACTIONS(1924), + [aux_sym_cmd_identifier_token19] = ACTIONS(1924), + [aux_sym_cmd_identifier_token20] = ACTIONS(1924), + [aux_sym_cmd_identifier_token21] = ACTIONS(1924), + [aux_sym_cmd_identifier_token22] = ACTIONS(1924), + [aux_sym_cmd_identifier_token23] = ACTIONS(1924), + [aux_sym_cmd_identifier_token24] = ACTIONS(1924), + [aux_sym_cmd_identifier_token25] = ACTIONS(1924), + [aux_sym_cmd_identifier_token26] = ACTIONS(1924), + [aux_sym_cmd_identifier_token27] = ACTIONS(1924), + [aux_sym_cmd_identifier_token28] = ACTIONS(1924), + [aux_sym_cmd_identifier_token29] = ACTIONS(1924), + [aux_sym_cmd_identifier_token30] = ACTIONS(1924), + [aux_sym_cmd_identifier_token31] = ACTIONS(1924), + [aux_sym_cmd_identifier_token32] = ACTIONS(1924), + [aux_sym_cmd_identifier_token33] = ACTIONS(1924), + [aux_sym_cmd_identifier_token34] = ACTIONS(1922), + [aux_sym_cmd_identifier_token35] = ACTIONS(1924), + [aux_sym_cmd_identifier_token36] = ACTIONS(1924), + [aux_sym_cmd_identifier_token37] = ACTIONS(1924), + [aux_sym_cmd_identifier_token38] = ACTIONS(1922), + [aux_sym_cmd_identifier_token39] = ACTIONS(1924), + [aux_sym_cmd_identifier_token40] = ACTIONS(1924), + [anon_sym_def] = ACTIONS(1922), + [anon_sym_export_DASHenv] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_module] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1924), + [anon_sym_error] = ACTIONS(1922), + [anon_sym_DASH2] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_in2] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_make] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_do] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_else] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1922), + [anon_sym_catch] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_source] = ACTIONS(1922), + [anon_sym_source_DASHenv] = ACTIONS(1922), + [anon_sym_register] = ACTIONS(1922), + [anon_sym_hide] = ACTIONS(1922), + [anon_sym_hide_DASHenv] = ACTIONS(1922), + [anon_sym_overlay] = ACTIONS(1922), + [anon_sym_as] = ACTIONS(1922), + [anon_sym_PLUS2] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1924), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1922), + [aux_sym__val_number_decimal_token2] = ACTIONS(1924), + [aux_sym__val_number_decimal_token3] = ACTIONS(1924), + [aux_sym__val_number_decimal_token4] = ACTIONS(1924), + [aux_sym__val_number_token1] = ACTIONS(1924), + [aux_sym__val_number_token2] = ACTIONS(1924), + [aux_sym__val_number_token3] = ACTIONS(1924), + [aux_sym__val_number_token4] = ACTIONS(1922), + [aux_sym__val_number_token5] = ACTIONS(1922), + [aux_sym__val_number_token6] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1924), + [sym__str_single_quotes] = ACTIONS(1924), + [sym__str_back_ticks] = ACTIONS(1924), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1924), }, [743] = { - [aux_sym__pipe_separator] = STATE(717), [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(5492), - [aux_sym_cmd_identifier_token1] = ACTIONS(2554), - [aux_sym_cmd_identifier_token2] = ACTIONS(2556), - [aux_sym_cmd_identifier_token3] = ACTIONS(2556), - [aux_sym_cmd_identifier_token4] = ACTIONS(2556), - [aux_sym_cmd_identifier_token5] = ACTIONS(2556), - [aux_sym_cmd_identifier_token6] = ACTIONS(2556), - [aux_sym_cmd_identifier_token7] = ACTIONS(2556), - [aux_sym_cmd_identifier_token8] = ACTIONS(2556), - [aux_sym_cmd_identifier_token9] = ACTIONS(2554), - [aux_sym_cmd_identifier_token10] = ACTIONS(2556), - [aux_sym_cmd_identifier_token11] = ACTIONS(2556), - [aux_sym_cmd_identifier_token12] = ACTIONS(2556), - [aux_sym_cmd_identifier_token13] = ACTIONS(2554), - [aux_sym_cmd_identifier_token14] = ACTIONS(2556), - [aux_sym_cmd_identifier_token15] = ACTIONS(2554), - [aux_sym_cmd_identifier_token16] = ACTIONS(2556), - [aux_sym_cmd_identifier_token17] = ACTIONS(2556), - [aux_sym_cmd_identifier_token18] = ACTIONS(2554), - [aux_sym_cmd_identifier_token19] = ACTIONS(2556), - [aux_sym_cmd_identifier_token20] = ACTIONS(2556), - [aux_sym_cmd_identifier_token21] = ACTIONS(2556), - [aux_sym_cmd_identifier_token22] = ACTIONS(2556), - [aux_sym_cmd_identifier_token23] = ACTIONS(2556), - [aux_sym_cmd_identifier_token24] = ACTIONS(2556), - [aux_sym_cmd_identifier_token25] = ACTIONS(2556), - [aux_sym_cmd_identifier_token26] = ACTIONS(2556), - [aux_sym_cmd_identifier_token27] = ACTIONS(2556), - [aux_sym_cmd_identifier_token28] = ACTIONS(2556), - [aux_sym_cmd_identifier_token29] = ACTIONS(2556), - [aux_sym_cmd_identifier_token30] = ACTIONS(2556), - [aux_sym_cmd_identifier_token31] = ACTIONS(2556), - [aux_sym_cmd_identifier_token32] = ACTIONS(2554), - [aux_sym_cmd_identifier_token33] = ACTIONS(2556), - [aux_sym_cmd_identifier_token34] = ACTIONS(2554), - [aux_sym_cmd_identifier_token35] = ACTIONS(2556), - [aux_sym_cmd_identifier_token36] = ACTIONS(2556), - [aux_sym_cmd_identifier_token37] = ACTIONS(2556), - [aux_sym_cmd_identifier_token38] = ACTIONS(2554), - [aux_sym_cmd_identifier_token39] = ACTIONS(2556), - [aux_sym_cmd_identifier_token40] = ACTIONS(2556), - [sym__newline] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_err_GT_PIPE] = ACTIONS(2552), - [anon_sym_out_GT_PIPE] = ACTIONS(2552), - [anon_sym_e_GT_PIPE] = ACTIONS(2552), - [anon_sym_o_GT_PIPE] = ACTIONS(2552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_DOLLAR] = ACTIONS(2554), - [anon_sym_DASH2] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_match] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_DOT_DOT] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_where] = ACTIONS(2556), - [aux_sym_expr_unary_token1] = ACTIONS(2556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2556), - [anon_sym_DOT_DOT_LT] = ACTIONS(2556), - [anon_sym_null] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2554), - [anon_sym_false] = ACTIONS(2554), - [aux_sym__val_number_decimal_token1] = ACTIONS(2554), - [aux_sym__val_number_decimal_token2] = ACTIONS(2556), - [aux_sym__val_number_decimal_token3] = ACTIONS(2556), - [aux_sym__val_number_decimal_token4] = ACTIONS(2556), - [aux_sym__val_number_token1] = ACTIONS(2556), - [aux_sym__val_number_token2] = ACTIONS(2556), - [aux_sym__val_number_token3] = ACTIONS(2556), - [aux_sym__val_number_token4] = ACTIONS(2554), - [aux_sym__val_number_token5] = ACTIONS(2554), - [aux_sym__val_number_token6] = ACTIONS(2554), - [anon_sym_0b] = ACTIONS(2554), - [anon_sym_0o] = ACTIONS(2554), - [anon_sym_0x] = ACTIONS(2554), - [sym_val_date] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [sym__str_single_quotes] = ACTIONS(2556), - [sym__str_back_ticks] = ACTIONS(2556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2556), - [aux_sym_env_var_token1] = ACTIONS(2554), - [anon_sym_CARET] = ACTIONS(2556), - [aux_sym_command_token1] = ACTIONS(2556), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2556), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2360), + [aux_sym_cmd_identifier_token3] = ACTIONS(2360), + [aux_sym_cmd_identifier_token4] = ACTIONS(2360), + [aux_sym_cmd_identifier_token5] = ACTIONS(2360), + [aux_sym_cmd_identifier_token6] = ACTIONS(2360), + [aux_sym_cmd_identifier_token7] = ACTIONS(2360), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2360), + [aux_sym_cmd_identifier_token11] = ACTIONS(2360), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2360), + [aux_sym_cmd_identifier_token17] = ACTIONS(2360), + [aux_sym_cmd_identifier_token18] = ACTIONS(2360), + [aux_sym_cmd_identifier_token19] = ACTIONS(2360), + [aux_sym_cmd_identifier_token20] = ACTIONS(2360), + [aux_sym_cmd_identifier_token21] = ACTIONS(2360), + [aux_sym_cmd_identifier_token22] = ACTIONS(2360), + [aux_sym_cmd_identifier_token23] = ACTIONS(2360), + [aux_sym_cmd_identifier_token24] = ACTIONS(2360), + [aux_sym_cmd_identifier_token25] = ACTIONS(2360), + [aux_sym_cmd_identifier_token26] = ACTIONS(2360), + [aux_sym_cmd_identifier_token27] = ACTIONS(2360), + [aux_sym_cmd_identifier_token28] = ACTIONS(2360), + [aux_sym_cmd_identifier_token29] = ACTIONS(2360), + [aux_sym_cmd_identifier_token30] = ACTIONS(2360), + [aux_sym_cmd_identifier_token31] = ACTIONS(2360), + [aux_sym_cmd_identifier_token32] = ACTIONS(2360), + [aux_sym_cmd_identifier_token33] = ACTIONS(2360), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2360), + [aux_sym_cmd_identifier_token36] = ACTIONS(2360), + [aux_sym_cmd_identifier_token37] = ACTIONS(2360), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2360), + [aux_sym_cmd_identifier_token40] = ACTIONS(2360), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in2] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2360), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(2360), + [aux_sym__val_number_token2] = ACTIONS(2360), + [aux_sym__val_number_token3] = ACTIONS(2360), + [aux_sym__val_number_token4] = ACTIONS(2358), + [aux_sym__val_number_token5] = ACTIONS(2358), + [aux_sym__val_number_token6] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym__str_single_quotes] = ACTIONS(2360), + [sym__str_back_ticks] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2360), }, [744] = { [sym_comment] = STATE(744), - [anon_sym_export] = ACTIONS(2524), - [anon_sym_alias] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_let_DASHenv] = ACTIONS(2524), - [anon_sym_mut] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [aux_sym_cmd_identifier_token1] = ACTIONS(2524), - [aux_sym_cmd_identifier_token2] = ACTIONS(2526), - [aux_sym_cmd_identifier_token3] = ACTIONS(2526), - [aux_sym_cmd_identifier_token4] = ACTIONS(2526), - [aux_sym_cmd_identifier_token5] = ACTIONS(2526), - [aux_sym_cmd_identifier_token6] = ACTIONS(2526), - [aux_sym_cmd_identifier_token7] = ACTIONS(2526), - [aux_sym_cmd_identifier_token8] = ACTIONS(2524), - [aux_sym_cmd_identifier_token9] = ACTIONS(2524), - [aux_sym_cmd_identifier_token10] = ACTIONS(2526), - [aux_sym_cmd_identifier_token11] = ACTIONS(2526), - [aux_sym_cmd_identifier_token12] = ACTIONS(2524), - [aux_sym_cmd_identifier_token13] = ACTIONS(2524), - [aux_sym_cmd_identifier_token14] = ACTIONS(2524), - [aux_sym_cmd_identifier_token15] = ACTIONS(2524), - [aux_sym_cmd_identifier_token16] = ACTIONS(2526), - [aux_sym_cmd_identifier_token17] = ACTIONS(2526), - [aux_sym_cmd_identifier_token18] = ACTIONS(2526), - [aux_sym_cmd_identifier_token19] = ACTIONS(2526), - [aux_sym_cmd_identifier_token20] = ACTIONS(2526), - [aux_sym_cmd_identifier_token21] = ACTIONS(2526), - [aux_sym_cmd_identifier_token22] = ACTIONS(2526), - [aux_sym_cmd_identifier_token23] = ACTIONS(2526), - [aux_sym_cmd_identifier_token24] = ACTIONS(2526), - [aux_sym_cmd_identifier_token25] = ACTIONS(2526), - [aux_sym_cmd_identifier_token26] = ACTIONS(2526), - [aux_sym_cmd_identifier_token27] = ACTIONS(2526), - [aux_sym_cmd_identifier_token28] = ACTIONS(2526), - [aux_sym_cmd_identifier_token29] = ACTIONS(2526), - [aux_sym_cmd_identifier_token30] = ACTIONS(2526), - [aux_sym_cmd_identifier_token31] = ACTIONS(2526), - [aux_sym_cmd_identifier_token32] = ACTIONS(2526), - [aux_sym_cmd_identifier_token33] = ACTIONS(2526), - [aux_sym_cmd_identifier_token34] = ACTIONS(2524), - [aux_sym_cmd_identifier_token35] = ACTIONS(2526), - [aux_sym_cmd_identifier_token36] = ACTIONS(2526), - [aux_sym_cmd_identifier_token37] = ACTIONS(2526), - [aux_sym_cmd_identifier_token38] = ACTIONS(2524), - [aux_sym_cmd_identifier_token39] = ACTIONS(2526), - [aux_sym_cmd_identifier_token40] = ACTIONS(2526), - [anon_sym_def] = ACTIONS(2524), - [anon_sym_export_DASHenv] = ACTIONS(2524), - [anon_sym_extern] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_use] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_DOLLAR] = ACTIONS(2526), - [anon_sym_error] = ACTIONS(2524), - [anon_sym_DASH2] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_in2] = ACTIONS(2524), - [anon_sym_loop] = ACTIONS(2524), - [anon_sym_make] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_match] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_catch] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_source] = ACTIONS(2524), - [anon_sym_source_DASHenv] = ACTIONS(2524), - [anon_sym_register] = ACTIONS(2524), - [anon_sym_hide] = ACTIONS(2524), - [anon_sym_hide_DASHenv] = ACTIONS(2524), - [anon_sym_overlay] = ACTIONS(2524), - [anon_sym_as] = ACTIONS(2524), - [anon_sym_PLUS2] = ACTIONS(2524), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2526), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2526), - [aux_sym__val_number_decimal_token1] = ACTIONS(2524), - [aux_sym__val_number_decimal_token2] = ACTIONS(2526), - [aux_sym__val_number_decimal_token3] = ACTIONS(2526), - [aux_sym__val_number_decimal_token4] = ACTIONS(2526), - [aux_sym__val_number_token1] = ACTIONS(2526), - [aux_sym__val_number_token2] = ACTIONS(2526), - [aux_sym__val_number_token3] = ACTIONS(2526), - [aux_sym__val_number_token4] = ACTIONS(2524), - [aux_sym__val_number_token5] = ACTIONS(2524), - [aux_sym__val_number_token6] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2526), - [sym__str_single_quotes] = ACTIONS(2526), - [sym__str_back_ticks] = ACTIONS(2526), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2049), + [aux_sym_cmd_identifier_token3] = ACTIONS(2049), + [aux_sym_cmd_identifier_token4] = ACTIONS(2049), + [aux_sym_cmd_identifier_token5] = ACTIONS(2049), + [aux_sym_cmd_identifier_token6] = ACTIONS(2049), + [aux_sym_cmd_identifier_token7] = ACTIONS(2049), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2049), + [aux_sym_cmd_identifier_token11] = ACTIONS(2049), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2049), + [aux_sym_cmd_identifier_token17] = ACTIONS(2049), + [aux_sym_cmd_identifier_token18] = ACTIONS(2049), + [aux_sym_cmd_identifier_token19] = ACTIONS(2049), + [aux_sym_cmd_identifier_token20] = ACTIONS(2049), + [aux_sym_cmd_identifier_token21] = ACTIONS(2049), + [aux_sym_cmd_identifier_token22] = ACTIONS(2049), + [aux_sym_cmd_identifier_token23] = ACTIONS(2049), + [aux_sym_cmd_identifier_token24] = ACTIONS(2049), + [aux_sym_cmd_identifier_token25] = ACTIONS(2049), + [aux_sym_cmd_identifier_token26] = ACTIONS(2049), + [aux_sym_cmd_identifier_token27] = ACTIONS(2049), + [aux_sym_cmd_identifier_token28] = ACTIONS(2049), + [aux_sym_cmd_identifier_token29] = ACTIONS(2049), + [aux_sym_cmd_identifier_token30] = ACTIONS(2049), + [aux_sym_cmd_identifier_token31] = ACTIONS(2049), + [aux_sym_cmd_identifier_token32] = ACTIONS(2049), + [aux_sym_cmd_identifier_token33] = ACTIONS(2049), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2049), + [aux_sym_cmd_identifier_token36] = ACTIONS(2049), + [aux_sym_cmd_identifier_token37] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2049), }, [745] = { [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_alias] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_let_DASHenv] = ACTIONS(2482), - [anon_sym_mut] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [aux_sym_cmd_identifier_token1] = ACTIONS(2482), - [aux_sym_cmd_identifier_token2] = ACTIONS(2484), - [aux_sym_cmd_identifier_token3] = ACTIONS(2484), - [aux_sym_cmd_identifier_token4] = ACTIONS(2484), - [aux_sym_cmd_identifier_token5] = ACTIONS(2484), - [aux_sym_cmd_identifier_token6] = ACTIONS(2484), - [aux_sym_cmd_identifier_token7] = ACTIONS(2484), - [aux_sym_cmd_identifier_token8] = ACTIONS(2482), - [aux_sym_cmd_identifier_token9] = ACTIONS(2482), - [aux_sym_cmd_identifier_token10] = ACTIONS(2484), - [aux_sym_cmd_identifier_token11] = ACTIONS(2484), - [aux_sym_cmd_identifier_token12] = ACTIONS(2482), - [aux_sym_cmd_identifier_token13] = ACTIONS(2482), - [aux_sym_cmd_identifier_token14] = ACTIONS(2482), - [aux_sym_cmd_identifier_token15] = ACTIONS(2482), - [aux_sym_cmd_identifier_token16] = ACTIONS(2484), - [aux_sym_cmd_identifier_token17] = ACTIONS(2484), - [aux_sym_cmd_identifier_token18] = ACTIONS(2484), - [aux_sym_cmd_identifier_token19] = ACTIONS(2484), - [aux_sym_cmd_identifier_token20] = ACTIONS(2484), - [aux_sym_cmd_identifier_token21] = ACTIONS(2484), - [aux_sym_cmd_identifier_token22] = ACTIONS(2484), - [aux_sym_cmd_identifier_token23] = ACTIONS(2484), - [aux_sym_cmd_identifier_token24] = ACTIONS(2484), - [aux_sym_cmd_identifier_token25] = ACTIONS(2484), - [aux_sym_cmd_identifier_token26] = ACTIONS(2484), - [aux_sym_cmd_identifier_token27] = ACTIONS(2484), - [aux_sym_cmd_identifier_token28] = ACTIONS(2484), - [aux_sym_cmd_identifier_token29] = ACTIONS(2484), - [aux_sym_cmd_identifier_token30] = ACTIONS(2484), - [aux_sym_cmd_identifier_token31] = ACTIONS(2484), - [aux_sym_cmd_identifier_token32] = ACTIONS(2484), - [aux_sym_cmd_identifier_token33] = ACTIONS(2484), - [aux_sym_cmd_identifier_token34] = ACTIONS(2482), - [aux_sym_cmd_identifier_token35] = ACTIONS(2484), - [aux_sym_cmd_identifier_token36] = ACTIONS(2484), - [aux_sym_cmd_identifier_token37] = ACTIONS(2484), - [aux_sym_cmd_identifier_token38] = ACTIONS(2482), - [aux_sym_cmd_identifier_token39] = ACTIONS(2484), - [aux_sym_cmd_identifier_token40] = ACTIONS(2484), - [anon_sym_def] = ACTIONS(2482), - [anon_sym_export_DASHenv] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_DOLLAR] = ACTIONS(2484), - [anon_sym_error] = ACTIONS(2482), - [anon_sym_DASH2] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_in2] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_make] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_catch] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_source] = ACTIONS(2482), - [anon_sym_source_DASHenv] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_hide] = ACTIONS(2482), - [anon_sym_hide_DASHenv] = ACTIONS(2482), - [anon_sym_overlay] = ACTIONS(2482), - [anon_sym_as] = ACTIONS(2482), - [anon_sym_PLUS2] = ACTIONS(2482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), - [aux_sym__val_number_decimal_token1] = ACTIONS(2482), - [aux_sym__val_number_decimal_token2] = ACTIONS(2484), - [aux_sym__val_number_decimal_token3] = ACTIONS(2484), - [aux_sym__val_number_decimal_token4] = ACTIONS(2484), - [aux_sym__val_number_token1] = ACTIONS(2484), - [aux_sym__val_number_token2] = ACTIONS(2484), - [aux_sym__val_number_token3] = ACTIONS(2484), - [aux_sym__val_number_token4] = ACTIONS(2482), - [aux_sym__val_number_token5] = ACTIONS(2482), - [aux_sym__val_number_token6] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym__str_single_quotes] = ACTIONS(2484), - [sym__str_back_ticks] = ACTIONS(2484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [aux_sym_cmd_identifier_token37] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in2] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [aux_sym__val_number_token4] = ACTIONS(2362), + [aux_sym__val_number_token5] = ACTIONS(2362), + [aux_sym__val_number_token6] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2364), }, [746] = { [sym_comment] = STATE(746), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_alias] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_let_DASHenv] = ACTIONS(2470), - [anon_sym_mut] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [aux_sym_cmd_identifier_token1] = ACTIONS(2470), - [aux_sym_cmd_identifier_token2] = ACTIONS(2472), - [aux_sym_cmd_identifier_token3] = ACTIONS(2472), - [aux_sym_cmd_identifier_token4] = ACTIONS(2472), - [aux_sym_cmd_identifier_token5] = ACTIONS(2472), - [aux_sym_cmd_identifier_token6] = ACTIONS(2472), - [aux_sym_cmd_identifier_token7] = ACTIONS(2472), - [aux_sym_cmd_identifier_token8] = ACTIONS(2470), - [aux_sym_cmd_identifier_token9] = ACTIONS(2470), - [aux_sym_cmd_identifier_token10] = ACTIONS(2472), - [aux_sym_cmd_identifier_token11] = ACTIONS(2472), - [aux_sym_cmd_identifier_token12] = ACTIONS(2470), - [aux_sym_cmd_identifier_token13] = ACTIONS(2470), - [aux_sym_cmd_identifier_token14] = ACTIONS(2470), - [aux_sym_cmd_identifier_token15] = ACTIONS(2470), - [aux_sym_cmd_identifier_token16] = ACTIONS(2472), - [aux_sym_cmd_identifier_token17] = ACTIONS(2472), - [aux_sym_cmd_identifier_token18] = ACTIONS(2472), - [aux_sym_cmd_identifier_token19] = ACTIONS(2472), - [aux_sym_cmd_identifier_token20] = ACTIONS(2472), - [aux_sym_cmd_identifier_token21] = ACTIONS(2472), - [aux_sym_cmd_identifier_token22] = ACTIONS(2472), - [aux_sym_cmd_identifier_token23] = ACTIONS(2472), - [aux_sym_cmd_identifier_token24] = ACTIONS(2472), - [aux_sym_cmd_identifier_token25] = ACTIONS(2472), - [aux_sym_cmd_identifier_token26] = ACTIONS(2472), - [aux_sym_cmd_identifier_token27] = ACTIONS(2472), - [aux_sym_cmd_identifier_token28] = ACTIONS(2472), - [aux_sym_cmd_identifier_token29] = ACTIONS(2472), - [aux_sym_cmd_identifier_token30] = ACTIONS(2472), - [aux_sym_cmd_identifier_token31] = ACTIONS(2472), - [aux_sym_cmd_identifier_token32] = ACTIONS(2472), - [aux_sym_cmd_identifier_token33] = ACTIONS(2472), - [aux_sym_cmd_identifier_token34] = ACTIONS(2470), - [aux_sym_cmd_identifier_token35] = ACTIONS(2472), - [aux_sym_cmd_identifier_token36] = ACTIONS(2472), - [aux_sym_cmd_identifier_token37] = ACTIONS(2472), - [aux_sym_cmd_identifier_token38] = ACTIONS(2470), - [aux_sym_cmd_identifier_token39] = ACTIONS(2472), - [aux_sym_cmd_identifier_token40] = ACTIONS(2472), - [anon_sym_def] = ACTIONS(2470), - [anon_sym_export_DASHenv] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_DOLLAR] = ACTIONS(2472), - [anon_sym_error] = ACTIONS(2470), - [anon_sym_DASH2] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_in2] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_make] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_catch] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_source] = ACTIONS(2470), - [anon_sym_source_DASHenv] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_hide] = ACTIONS(2470), - [anon_sym_hide_DASHenv] = ACTIONS(2470), - [anon_sym_overlay] = ACTIONS(2470), - [anon_sym_as] = ACTIONS(2470), - [anon_sym_PLUS2] = ACTIONS(2470), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2472), - [aux_sym__val_number_decimal_token1] = ACTIONS(2470), - [aux_sym__val_number_decimal_token2] = ACTIONS(2472), - [aux_sym__val_number_decimal_token3] = ACTIONS(2472), - [aux_sym__val_number_decimal_token4] = ACTIONS(2472), - [aux_sym__val_number_token1] = ACTIONS(2472), - [aux_sym__val_number_token2] = ACTIONS(2472), - [aux_sym__val_number_token3] = ACTIONS(2472), - [aux_sym__val_number_token4] = ACTIONS(2470), - [aux_sym__val_number_token5] = ACTIONS(2470), - [aux_sym__val_number_token6] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym__str_single_quotes] = ACTIONS(2472), - [sym__str_back_ticks] = ACTIONS(2472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2472), + [anon_sym_export] = ACTIONS(2501), + [anon_sym_alias] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_let_DASHenv] = ACTIONS(2501), + [anon_sym_mut] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [aux_sym_cmd_identifier_token1] = ACTIONS(2501), + [aux_sym_cmd_identifier_token2] = ACTIONS(2503), + [aux_sym_cmd_identifier_token3] = ACTIONS(2503), + [aux_sym_cmd_identifier_token4] = ACTIONS(2503), + [aux_sym_cmd_identifier_token5] = ACTIONS(2503), + [aux_sym_cmd_identifier_token6] = ACTIONS(2503), + [aux_sym_cmd_identifier_token7] = ACTIONS(2503), + [aux_sym_cmd_identifier_token8] = ACTIONS(2501), + [aux_sym_cmd_identifier_token9] = ACTIONS(2501), + [aux_sym_cmd_identifier_token10] = ACTIONS(2503), + [aux_sym_cmd_identifier_token11] = ACTIONS(2503), + [aux_sym_cmd_identifier_token12] = ACTIONS(2501), + [aux_sym_cmd_identifier_token13] = ACTIONS(2501), + [aux_sym_cmd_identifier_token14] = ACTIONS(2501), + [aux_sym_cmd_identifier_token15] = ACTIONS(2501), + [aux_sym_cmd_identifier_token16] = ACTIONS(2503), + [aux_sym_cmd_identifier_token17] = ACTIONS(2503), + [aux_sym_cmd_identifier_token18] = ACTIONS(2503), + [aux_sym_cmd_identifier_token19] = ACTIONS(2503), + [aux_sym_cmd_identifier_token20] = ACTIONS(2503), + [aux_sym_cmd_identifier_token21] = ACTIONS(2503), + [aux_sym_cmd_identifier_token22] = ACTIONS(2503), + [aux_sym_cmd_identifier_token23] = ACTIONS(2503), + [aux_sym_cmd_identifier_token24] = ACTIONS(2503), + [aux_sym_cmd_identifier_token25] = ACTIONS(2503), + [aux_sym_cmd_identifier_token26] = ACTIONS(2503), + [aux_sym_cmd_identifier_token27] = ACTIONS(2503), + [aux_sym_cmd_identifier_token28] = ACTIONS(2503), + [aux_sym_cmd_identifier_token29] = ACTIONS(2503), + [aux_sym_cmd_identifier_token30] = ACTIONS(2503), + [aux_sym_cmd_identifier_token31] = ACTIONS(2503), + [aux_sym_cmd_identifier_token32] = ACTIONS(2503), + [aux_sym_cmd_identifier_token33] = ACTIONS(2503), + [aux_sym_cmd_identifier_token34] = ACTIONS(2501), + [aux_sym_cmd_identifier_token35] = ACTIONS(2503), + [aux_sym_cmd_identifier_token36] = ACTIONS(2503), + [aux_sym_cmd_identifier_token37] = ACTIONS(2503), + [aux_sym_cmd_identifier_token38] = ACTIONS(2501), + [aux_sym_cmd_identifier_token39] = ACTIONS(2503), + [aux_sym_cmd_identifier_token40] = ACTIONS(2503), + [anon_sym_def] = ACTIONS(2501), + [anon_sym_export_DASHenv] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_module] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_DOLLAR] = ACTIONS(2503), + [anon_sym_error] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_in2] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_make] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2501), + [anon_sym_catch] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_source] = ACTIONS(2501), + [anon_sym_source_DASHenv] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_hide] = ACTIONS(2501), + [anon_sym_hide_DASHenv] = ACTIONS(2501), + [anon_sym_overlay] = ACTIONS(2501), + [anon_sym_as] = ACTIONS(2501), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), + [aux_sym__val_number_decimal_token1] = ACTIONS(2501), + [aux_sym__val_number_decimal_token2] = ACTIONS(2503), + [aux_sym__val_number_decimal_token3] = ACTIONS(2503), + [aux_sym__val_number_decimal_token4] = ACTIONS(2503), + [aux_sym__val_number_token1] = ACTIONS(2503), + [aux_sym__val_number_token2] = ACTIONS(2503), + [aux_sym__val_number_token3] = ACTIONS(2503), + [aux_sym__val_number_token4] = ACTIONS(2501), + [aux_sym__val_number_token5] = ACTIONS(2501), + [aux_sym__val_number_token6] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2503), + [sym__str_single_quotes] = ACTIONS(2503), + [sym__str_back_ticks] = ACTIONS(2503), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2503), }, [747] = { [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [aux_sym_cmd_identifier_token1] = ACTIONS(2443), - [aux_sym_cmd_identifier_token2] = ACTIONS(2445), - [aux_sym_cmd_identifier_token3] = ACTIONS(2445), - [aux_sym_cmd_identifier_token4] = ACTIONS(2445), - [aux_sym_cmd_identifier_token5] = ACTIONS(2445), - [aux_sym_cmd_identifier_token6] = ACTIONS(2445), - [aux_sym_cmd_identifier_token7] = ACTIONS(2445), - [aux_sym_cmd_identifier_token8] = ACTIONS(2443), - [aux_sym_cmd_identifier_token9] = ACTIONS(2443), - [aux_sym_cmd_identifier_token10] = ACTIONS(2445), - [aux_sym_cmd_identifier_token11] = ACTIONS(2445), - [aux_sym_cmd_identifier_token12] = ACTIONS(2443), - [aux_sym_cmd_identifier_token13] = ACTIONS(2443), - [aux_sym_cmd_identifier_token14] = ACTIONS(2443), - [aux_sym_cmd_identifier_token15] = ACTIONS(2443), - [aux_sym_cmd_identifier_token16] = ACTIONS(2445), - [aux_sym_cmd_identifier_token17] = ACTIONS(2445), - [aux_sym_cmd_identifier_token18] = ACTIONS(2445), - [aux_sym_cmd_identifier_token19] = ACTIONS(2445), - [aux_sym_cmd_identifier_token20] = ACTIONS(2445), - [aux_sym_cmd_identifier_token21] = ACTIONS(2445), - [aux_sym_cmd_identifier_token22] = ACTIONS(2445), - [aux_sym_cmd_identifier_token23] = ACTIONS(2445), - [aux_sym_cmd_identifier_token24] = ACTIONS(2445), - [aux_sym_cmd_identifier_token25] = ACTIONS(2445), - [aux_sym_cmd_identifier_token26] = ACTIONS(2445), - [aux_sym_cmd_identifier_token27] = ACTIONS(2445), - [aux_sym_cmd_identifier_token28] = ACTIONS(2445), - [aux_sym_cmd_identifier_token29] = ACTIONS(2445), - [aux_sym_cmd_identifier_token30] = ACTIONS(2445), - [aux_sym_cmd_identifier_token31] = ACTIONS(2445), - [aux_sym_cmd_identifier_token32] = ACTIONS(2445), - [aux_sym_cmd_identifier_token33] = ACTIONS(2445), - [aux_sym_cmd_identifier_token34] = ACTIONS(2443), - [aux_sym_cmd_identifier_token35] = ACTIONS(2445), - [aux_sym_cmd_identifier_token36] = ACTIONS(2445), - [aux_sym_cmd_identifier_token37] = ACTIONS(2445), - [aux_sym_cmd_identifier_token38] = ACTIONS(2443), - [aux_sym_cmd_identifier_token39] = ACTIONS(2445), - [aux_sym_cmd_identifier_token40] = ACTIONS(2445), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_in2] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_make] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_catch] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), - [aux_sym__val_number_decimal_token1] = ACTIONS(2443), - [aux_sym__val_number_decimal_token2] = ACTIONS(2445), - [aux_sym__val_number_decimal_token3] = ACTIONS(2445), - [aux_sym__val_number_decimal_token4] = ACTIONS(2445), - [aux_sym__val_number_token1] = ACTIONS(2445), - [aux_sym__val_number_token2] = ACTIONS(2445), - [aux_sym__val_number_token3] = ACTIONS(2445), - [aux_sym__val_number_token4] = ACTIONS(2443), - [aux_sym__val_number_token5] = ACTIONS(2443), - [aux_sym__val_number_token6] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym__str_single_quotes] = ACTIONS(2445), - [sym__str_back_ticks] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2445), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_alias] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_let_DASHenv] = ACTIONS(2158), + [anon_sym_mut] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [aux_sym_cmd_identifier_token1] = ACTIONS(2158), + [aux_sym_cmd_identifier_token2] = ACTIONS(2164), + [aux_sym_cmd_identifier_token3] = ACTIONS(2164), + [aux_sym_cmd_identifier_token4] = ACTIONS(2164), + [aux_sym_cmd_identifier_token5] = ACTIONS(2164), + [aux_sym_cmd_identifier_token6] = ACTIONS(2164), + [aux_sym_cmd_identifier_token7] = ACTIONS(2164), + [aux_sym_cmd_identifier_token8] = ACTIONS(2158), + [aux_sym_cmd_identifier_token9] = ACTIONS(2158), + [aux_sym_cmd_identifier_token10] = ACTIONS(2164), + [aux_sym_cmd_identifier_token11] = ACTIONS(2164), + [aux_sym_cmd_identifier_token12] = ACTIONS(2158), + [aux_sym_cmd_identifier_token13] = ACTIONS(2158), + [aux_sym_cmd_identifier_token14] = ACTIONS(2158), + [aux_sym_cmd_identifier_token15] = ACTIONS(2158), + [aux_sym_cmd_identifier_token16] = ACTIONS(2164), + [aux_sym_cmd_identifier_token17] = ACTIONS(2164), + [aux_sym_cmd_identifier_token18] = ACTIONS(2164), + [aux_sym_cmd_identifier_token19] = ACTIONS(2164), + [aux_sym_cmd_identifier_token20] = ACTIONS(2164), + [aux_sym_cmd_identifier_token21] = ACTIONS(2164), + [aux_sym_cmd_identifier_token22] = ACTIONS(2164), + [aux_sym_cmd_identifier_token23] = ACTIONS(2164), + [aux_sym_cmd_identifier_token24] = ACTIONS(2164), + [aux_sym_cmd_identifier_token25] = ACTIONS(2164), + [aux_sym_cmd_identifier_token26] = ACTIONS(2164), + [aux_sym_cmd_identifier_token27] = ACTIONS(2164), + [aux_sym_cmd_identifier_token28] = ACTIONS(2164), + [aux_sym_cmd_identifier_token29] = ACTIONS(2164), + [aux_sym_cmd_identifier_token30] = ACTIONS(2164), + [aux_sym_cmd_identifier_token31] = ACTIONS(2164), + [aux_sym_cmd_identifier_token32] = ACTIONS(2164), + [aux_sym_cmd_identifier_token33] = ACTIONS(2164), + [aux_sym_cmd_identifier_token34] = ACTIONS(2158), + [aux_sym_cmd_identifier_token35] = ACTIONS(2164), + [aux_sym_cmd_identifier_token36] = ACTIONS(2164), + [aux_sym_cmd_identifier_token37] = ACTIONS(2164), + [aux_sym_cmd_identifier_token38] = ACTIONS(2158), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [anon_sym_def] = ACTIONS(2158), + [anon_sym_export_DASHenv] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2158), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_in2] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_make] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_do] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_else] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2158), + [anon_sym_catch] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_source] = ACTIONS(2158), + [anon_sym_source_DASHenv] = ACTIONS(2158), + [anon_sym_register] = ACTIONS(2158), + [anon_sym_hide] = ACTIONS(2158), + [anon_sym_hide_DASHenv] = ACTIONS(2158), + [anon_sym_overlay] = ACTIONS(2158), + [anon_sym_as] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2158), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2158), + [aux_sym__val_number_token5] = ACTIONS(2158), + [aux_sym__val_number_token6] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2164), }, [748] = { [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_alias] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_let_DASHenv] = ACTIONS(2474), - [anon_sym_mut] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [aux_sym_cmd_identifier_token1] = ACTIONS(2474), - [aux_sym_cmd_identifier_token2] = ACTIONS(2476), - [aux_sym_cmd_identifier_token3] = ACTIONS(2476), - [aux_sym_cmd_identifier_token4] = ACTIONS(2476), - [aux_sym_cmd_identifier_token5] = ACTIONS(2476), - [aux_sym_cmd_identifier_token6] = ACTIONS(2476), - [aux_sym_cmd_identifier_token7] = ACTIONS(2476), - [aux_sym_cmd_identifier_token8] = ACTIONS(2474), - [aux_sym_cmd_identifier_token9] = ACTIONS(2474), - [aux_sym_cmd_identifier_token10] = ACTIONS(2476), - [aux_sym_cmd_identifier_token11] = ACTIONS(2476), - [aux_sym_cmd_identifier_token12] = ACTIONS(2474), - [aux_sym_cmd_identifier_token13] = ACTIONS(2474), - [aux_sym_cmd_identifier_token14] = ACTIONS(2474), - [aux_sym_cmd_identifier_token15] = ACTIONS(2474), - [aux_sym_cmd_identifier_token16] = ACTIONS(2476), - [aux_sym_cmd_identifier_token17] = ACTIONS(2476), - [aux_sym_cmd_identifier_token18] = ACTIONS(2476), - [aux_sym_cmd_identifier_token19] = ACTIONS(2476), - [aux_sym_cmd_identifier_token20] = ACTIONS(2476), - [aux_sym_cmd_identifier_token21] = ACTIONS(2476), - [aux_sym_cmd_identifier_token22] = ACTIONS(2476), - [aux_sym_cmd_identifier_token23] = ACTIONS(2476), - [aux_sym_cmd_identifier_token24] = ACTIONS(2476), - [aux_sym_cmd_identifier_token25] = ACTIONS(2476), - [aux_sym_cmd_identifier_token26] = ACTIONS(2476), - [aux_sym_cmd_identifier_token27] = ACTIONS(2476), - [aux_sym_cmd_identifier_token28] = ACTIONS(2476), - [aux_sym_cmd_identifier_token29] = ACTIONS(2476), - [aux_sym_cmd_identifier_token30] = ACTIONS(2476), - [aux_sym_cmd_identifier_token31] = ACTIONS(2476), - [aux_sym_cmd_identifier_token32] = ACTIONS(2476), - [aux_sym_cmd_identifier_token33] = ACTIONS(2476), - [aux_sym_cmd_identifier_token34] = ACTIONS(2474), - [aux_sym_cmd_identifier_token35] = ACTIONS(2476), - [aux_sym_cmd_identifier_token36] = ACTIONS(2476), - [aux_sym_cmd_identifier_token37] = ACTIONS(2476), - [aux_sym_cmd_identifier_token38] = ACTIONS(2474), - [aux_sym_cmd_identifier_token39] = ACTIONS(2476), - [aux_sym_cmd_identifier_token40] = ACTIONS(2476), - [anon_sym_def] = ACTIONS(2474), - [anon_sym_export_DASHenv] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_DOLLAR] = ACTIONS(2476), - [anon_sym_error] = ACTIONS(2474), - [anon_sym_DASH2] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_in2] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_make] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_catch] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_source] = ACTIONS(2474), - [anon_sym_source_DASHenv] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_hide] = ACTIONS(2474), - [anon_sym_hide_DASHenv] = ACTIONS(2474), - [anon_sym_overlay] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_PLUS2] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2476), - [aux_sym__val_number_decimal_token1] = ACTIONS(2474), - [aux_sym__val_number_decimal_token2] = ACTIONS(2476), - [aux_sym__val_number_decimal_token3] = ACTIONS(2476), - [aux_sym__val_number_decimal_token4] = ACTIONS(2476), - [aux_sym__val_number_token1] = ACTIONS(2476), - [aux_sym__val_number_token2] = ACTIONS(2476), - [aux_sym__val_number_token3] = ACTIONS(2476), - [aux_sym__val_number_token4] = ACTIONS(2474), - [aux_sym__val_number_token5] = ACTIONS(2474), - [aux_sym__val_number_token6] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym__str_single_quotes] = ACTIONS(2476), - [sym__str_back_ticks] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2476), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2053), + [aux_sym_cmd_identifier_token3] = ACTIONS(2053), + [aux_sym_cmd_identifier_token4] = ACTIONS(2053), + [aux_sym_cmd_identifier_token5] = ACTIONS(2053), + [aux_sym_cmd_identifier_token6] = ACTIONS(2053), + [aux_sym_cmd_identifier_token7] = ACTIONS(2053), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2053), + [aux_sym_cmd_identifier_token11] = ACTIONS(2053), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2053), + [aux_sym_cmd_identifier_token17] = ACTIONS(2053), + [aux_sym_cmd_identifier_token18] = ACTIONS(2053), + [aux_sym_cmd_identifier_token19] = ACTIONS(2053), + [aux_sym_cmd_identifier_token20] = ACTIONS(2053), + [aux_sym_cmd_identifier_token21] = ACTIONS(2053), + [aux_sym_cmd_identifier_token22] = ACTIONS(2053), + [aux_sym_cmd_identifier_token23] = ACTIONS(2053), + [aux_sym_cmd_identifier_token24] = ACTIONS(2053), + [aux_sym_cmd_identifier_token25] = ACTIONS(2053), + [aux_sym_cmd_identifier_token26] = ACTIONS(2053), + [aux_sym_cmd_identifier_token27] = ACTIONS(2053), + [aux_sym_cmd_identifier_token28] = ACTIONS(2053), + [aux_sym_cmd_identifier_token29] = ACTIONS(2053), + [aux_sym_cmd_identifier_token30] = ACTIONS(2053), + [aux_sym_cmd_identifier_token31] = ACTIONS(2053), + [aux_sym_cmd_identifier_token32] = ACTIONS(2053), + [aux_sym_cmd_identifier_token33] = ACTIONS(2053), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2053), + [aux_sym_cmd_identifier_token36] = ACTIONS(2053), + [aux_sym_cmd_identifier_token37] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_DASH2] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in2] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_PLUS2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2051), + [aux_sym__val_number_token5] = ACTIONS(2051), + [aux_sym__val_number_token6] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), }, [749] = { [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_alias] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_let_DASHenv] = ACTIONS(2478), - [anon_sym_mut] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [aux_sym_cmd_identifier_token1] = ACTIONS(2478), - [aux_sym_cmd_identifier_token2] = ACTIONS(2480), - [aux_sym_cmd_identifier_token3] = ACTIONS(2480), - [aux_sym_cmd_identifier_token4] = ACTIONS(2480), - [aux_sym_cmd_identifier_token5] = ACTIONS(2480), - [aux_sym_cmd_identifier_token6] = ACTIONS(2480), - [aux_sym_cmd_identifier_token7] = ACTIONS(2480), - [aux_sym_cmd_identifier_token8] = ACTIONS(2478), - [aux_sym_cmd_identifier_token9] = ACTIONS(2478), - [aux_sym_cmd_identifier_token10] = ACTIONS(2480), - [aux_sym_cmd_identifier_token11] = ACTIONS(2480), - [aux_sym_cmd_identifier_token12] = ACTIONS(2478), - [aux_sym_cmd_identifier_token13] = ACTIONS(2478), - [aux_sym_cmd_identifier_token14] = ACTIONS(2478), - [aux_sym_cmd_identifier_token15] = ACTIONS(2478), - [aux_sym_cmd_identifier_token16] = ACTIONS(2480), - [aux_sym_cmd_identifier_token17] = ACTIONS(2480), - [aux_sym_cmd_identifier_token18] = ACTIONS(2480), - [aux_sym_cmd_identifier_token19] = ACTIONS(2480), - [aux_sym_cmd_identifier_token20] = ACTIONS(2480), - [aux_sym_cmd_identifier_token21] = ACTIONS(2480), - [aux_sym_cmd_identifier_token22] = ACTIONS(2480), - [aux_sym_cmd_identifier_token23] = ACTIONS(2480), - [aux_sym_cmd_identifier_token24] = ACTIONS(2480), - [aux_sym_cmd_identifier_token25] = ACTIONS(2480), - [aux_sym_cmd_identifier_token26] = ACTIONS(2480), - [aux_sym_cmd_identifier_token27] = ACTIONS(2480), - [aux_sym_cmd_identifier_token28] = ACTIONS(2480), - [aux_sym_cmd_identifier_token29] = ACTIONS(2480), - [aux_sym_cmd_identifier_token30] = ACTIONS(2480), - [aux_sym_cmd_identifier_token31] = ACTIONS(2480), - [aux_sym_cmd_identifier_token32] = ACTIONS(2480), - [aux_sym_cmd_identifier_token33] = ACTIONS(2480), - [aux_sym_cmd_identifier_token34] = ACTIONS(2478), - [aux_sym_cmd_identifier_token35] = ACTIONS(2480), - [aux_sym_cmd_identifier_token36] = ACTIONS(2480), - [aux_sym_cmd_identifier_token37] = ACTIONS(2480), - [aux_sym_cmd_identifier_token38] = ACTIONS(2478), - [aux_sym_cmd_identifier_token39] = ACTIONS(2480), - [aux_sym_cmd_identifier_token40] = ACTIONS(2480), - [anon_sym_def] = ACTIONS(2478), - [anon_sym_export_DASHenv] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_DOLLAR] = ACTIONS(2480), - [anon_sym_error] = ACTIONS(2478), - [anon_sym_DASH2] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_in2] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_make] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_catch] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_source] = ACTIONS(2478), - [anon_sym_source_DASHenv] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_hide] = ACTIONS(2478), - [anon_sym_hide_DASHenv] = ACTIONS(2478), - [anon_sym_overlay] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2478), - [anon_sym_PLUS2] = ACTIONS(2478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), - [aux_sym__val_number_decimal_token1] = ACTIONS(2478), - [aux_sym__val_number_decimal_token2] = ACTIONS(2480), - [aux_sym__val_number_decimal_token3] = ACTIONS(2480), - [aux_sym__val_number_decimal_token4] = ACTIONS(2480), - [aux_sym__val_number_token1] = ACTIONS(2480), - [aux_sym__val_number_token2] = ACTIONS(2480), - [aux_sym__val_number_token3] = ACTIONS(2480), - [aux_sym__val_number_token4] = ACTIONS(2478), - [aux_sym__val_number_token5] = ACTIONS(2478), - [aux_sym__val_number_token6] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym__str_single_quotes] = ACTIONS(2480), - [sym__str_back_ticks] = ACTIONS(2480), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2480), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2419), + [aux_sym_cmd_identifier_token3] = ACTIONS(2419), + [aux_sym_cmd_identifier_token4] = ACTIONS(2419), + [aux_sym_cmd_identifier_token5] = ACTIONS(2419), + [aux_sym_cmd_identifier_token6] = ACTIONS(2419), + [aux_sym_cmd_identifier_token7] = ACTIONS(2419), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2419), + [aux_sym_cmd_identifier_token11] = ACTIONS(2419), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2419), + [aux_sym_cmd_identifier_token17] = ACTIONS(2419), + [aux_sym_cmd_identifier_token18] = ACTIONS(2419), + [aux_sym_cmd_identifier_token19] = ACTIONS(2419), + [aux_sym_cmd_identifier_token20] = ACTIONS(2419), + [aux_sym_cmd_identifier_token21] = ACTIONS(2419), + [aux_sym_cmd_identifier_token22] = ACTIONS(2419), + [aux_sym_cmd_identifier_token23] = ACTIONS(2419), + [aux_sym_cmd_identifier_token24] = ACTIONS(2419), + [aux_sym_cmd_identifier_token25] = ACTIONS(2419), + [aux_sym_cmd_identifier_token26] = ACTIONS(2419), + [aux_sym_cmd_identifier_token27] = ACTIONS(2419), + [aux_sym_cmd_identifier_token28] = ACTIONS(2419), + [aux_sym_cmd_identifier_token29] = ACTIONS(2419), + [aux_sym_cmd_identifier_token30] = ACTIONS(2419), + [aux_sym_cmd_identifier_token31] = ACTIONS(2419), + [aux_sym_cmd_identifier_token32] = ACTIONS(2419), + [aux_sym_cmd_identifier_token33] = ACTIONS(2419), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2419), + [aux_sym_cmd_identifier_token36] = ACTIONS(2419), + [aux_sym_cmd_identifier_token37] = ACTIONS(2419), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2419), + [aux_sym_cmd_identifier_token40] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2419), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [aux_sym__val_number_token1] = ACTIONS(2419), + [aux_sym__val_number_token2] = ACTIONS(2419), + [aux_sym__val_number_token3] = ACTIONS(2419), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2419), }, [750] = { [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(2383), - [anon_sym_alias] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_let_DASHenv] = ACTIONS(2383), - [anon_sym_mut] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [aux_sym_cmd_identifier_token1] = ACTIONS(2383), - [aux_sym_cmd_identifier_token2] = ACTIONS(2385), - [aux_sym_cmd_identifier_token3] = ACTIONS(2385), - [aux_sym_cmd_identifier_token4] = ACTIONS(2385), - [aux_sym_cmd_identifier_token5] = ACTIONS(2385), - [aux_sym_cmd_identifier_token6] = ACTIONS(2385), - [aux_sym_cmd_identifier_token7] = ACTIONS(2385), - [aux_sym_cmd_identifier_token8] = ACTIONS(2383), - [aux_sym_cmd_identifier_token9] = ACTIONS(2383), - [aux_sym_cmd_identifier_token10] = ACTIONS(2385), - [aux_sym_cmd_identifier_token11] = ACTIONS(2385), - [aux_sym_cmd_identifier_token12] = ACTIONS(2383), - [aux_sym_cmd_identifier_token13] = ACTIONS(2383), - [aux_sym_cmd_identifier_token14] = ACTIONS(2383), - [aux_sym_cmd_identifier_token15] = ACTIONS(2383), - [aux_sym_cmd_identifier_token16] = ACTIONS(2385), - [aux_sym_cmd_identifier_token17] = ACTIONS(2385), - [aux_sym_cmd_identifier_token18] = ACTIONS(2385), - [aux_sym_cmd_identifier_token19] = ACTIONS(2385), - [aux_sym_cmd_identifier_token20] = ACTIONS(2385), - [aux_sym_cmd_identifier_token21] = ACTIONS(2385), - [aux_sym_cmd_identifier_token22] = ACTIONS(2385), - [aux_sym_cmd_identifier_token23] = ACTIONS(2385), - [aux_sym_cmd_identifier_token24] = ACTIONS(2385), - [aux_sym_cmd_identifier_token25] = ACTIONS(2385), - [aux_sym_cmd_identifier_token26] = ACTIONS(2385), - [aux_sym_cmd_identifier_token27] = ACTIONS(2385), - [aux_sym_cmd_identifier_token28] = ACTIONS(2385), - [aux_sym_cmd_identifier_token29] = ACTIONS(2385), - [aux_sym_cmd_identifier_token30] = ACTIONS(2385), - [aux_sym_cmd_identifier_token31] = ACTIONS(2385), - [aux_sym_cmd_identifier_token32] = ACTIONS(2385), - [aux_sym_cmd_identifier_token33] = ACTIONS(2385), - [aux_sym_cmd_identifier_token34] = ACTIONS(2383), - [aux_sym_cmd_identifier_token35] = ACTIONS(2385), - [aux_sym_cmd_identifier_token36] = ACTIONS(2385), - [aux_sym_cmd_identifier_token37] = ACTIONS(2385), - [aux_sym_cmd_identifier_token38] = ACTIONS(2383), - [aux_sym_cmd_identifier_token39] = ACTIONS(2385), - [aux_sym_cmd_identifier_token40] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2383), - [anon_sym_export_DASHenv] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_module] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2383), - [anon_sym_DASH2] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_in2] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_make] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_catch] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_source] = ACTIONS(2383), - [anon_sym_source_DASHenv] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_hide_DASHenv] = ACTIONS(2383), - [anon_sym_overlay] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_PLUS2] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), - [aux_sym__val_number_decimal_token1] = ACTIONS(2383), - [aux_sym__val_number_decimal_token2] = ACTIONS(2385), - [aux_sym__val_number_decimal_token3] = ACTIONS(2385), - [aux_sym__val_number_decimal_token4] = ACTIONS(2385), - [aux_sym__val_number_token1] = ACTIONS(2385), - [aux_sym__val_number_token2] = ACTIONS(2385), - [aux_sym__val_number_token3] = ACTIONS(2385), - [aux_sym__val_number_token4] = ACTIONS(2383), - [aux_sym__val_number_token5] = ACTIONS(2383), - [aux_sym__val_number_token6] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2385), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2423), + [aux_sym_cmd_identifier_token4] = ACTIONS(2423), + [aux_sym_cmd_identifier_token5] = ACTIONS(2423), + [aux_sym_cmd_identifier_token6] = ACTIONS(2423), + [aux_sym_cmd_identifier_token7] = ACTIONS(2423), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2423), + [aux_sym_cmd_identifier_token11] = ACTIONS(2423), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2423), + [aux_sym_cmd_identifier_token17] = ACTIONS(2423), + [aux_sym_cmd_identifier_token18] = ACTIONS(2423), + [aux_sym_cmd_identifier_token19] = ACTIONS(2423), + [aux_sym_cmd_identifier_token20] = ACTIONS(2423), + [aux_sym_cmd_identifier_token21] = ACTIONS(2423), + [aux_sym_cmd_identifier_token22] = ACTIONS(2423), + [aux_sym_cmd_identifier_token23] = ACTIONS(2423), + [aux_sym_cmd_identifier_token24] = ACTIONS(2423), + [aux_sym_cmd_identifier_token25] = ACTIONS(2423), + [aux_sym_cmd_identifier_token26] = ACTIONS(2423), + [aux_sym_cmd_identifier_token27] = ACTIONS(2423), + [aux_sym_cmd_identifier_token28] = ACTIONS(2423), + [aux_sym_cmd_identifier_token29] = ACTIONS(2423), + [aux_sym_cmd_identifier_token30] = ACTIONS(2423), + [aux_sym_cmd_identifier_token31] = ACTIONS(2423), + [aux_sym_cmd_identifier_token32] = ACTIONS(2423), + [aux_sym_cmd_identifier_token33] = ACTIONS(2423), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2423), + [aux_sym_cmd_identifier_token36] = ACTIONS(2423), + [aux_sym_cmd_identifier_token37] = ACTIONS(2423), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2423), + [aux_sym_cmd_identifier_token40] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2423), + [aux_sym__val_number_decimal_token3] = ACTIONS(2423), + [aux_sym__val_number_decimal_token4] = ACTIONS(2423), + [aux_sym__val_number_token1] = ACTIONS(2423), + [aux_sym__val_number_token2] = ACTIONS(2423), + [aux_sym__val_number_token3] = ACTIONS(2423), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2423), }, [751] = { [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(2447), - [anon_sym_alias] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_let_DASHenv] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [aux_sym_cmd_identifier_token1] = ACTIONS(2447), - [aux_sym_cmd_identifier_token2] = ACTIONS(2449), - [aux_sym_cmd_identifier_token3] = ACTIONS(2449), - [aux_sym_cmd_identifier_token4] = ACTIONS(2449), - [aux_sym_cmd_identifier_token5] = ACTIONS(2449), - [aux_sym_cmd_identifier_token6] = ACTIONS(2449), - [aux_sym_cmd_identifier_token7] = ACTIONS(2449), - [aux_sym_cmd_identifier_token8] = ACTIONS(2447), - [aux_sym_cmd_identifier_token9] = ACTIONS(2447), - [aux_sym_cmd_identifier_token10] = ACTIONS(2449), - [aux_sym_cmd_identifier_token11] = ACTIONS(2449), - [aux_sym_cmd_identifier_token12] = ACTIONS(2447), - [aux_sym_cmd_identifier_token13] = ACTIONS(2447), - [aux_sym_cmd_identifier_token14] = ACTIONS(2447), - [aux_sym_cmd_identifier_token15] = ACTIONS(2447), - [aux_sym_cmd_identifier_token16] = ACTIONS(2449), - [aux_sym_cmd_identifier_token17] = ACTIONS(2449), - [aux_sym_cmd_identifier_token18] = ACTIONS(2449), - [aux_sym_cmd_identifier_token19] = ACTIONS(2449), - [aux_sym_cmd_identifier_token20] = ACTIONS(2449), - [aux_sym_cmd_identifier_token21] = ACTIONS(2449), - [aux_sym_cmd_identifier_token22] = ACTIONS(2449), - [aux_sym_cmd_identifier_token23] = ACTIONS(2449), - [aux_sym_cmd_identifier_token24] = ACTIONS(2449), - [aux_sym_cmd_identifier_token25] = ACTIONS(2449), - [aux_sym_cmd_identifier_token26] = ACTIONS(2449), - [aux_sym_cmd_identifier_token27] = ACTIONS(2449), - [aux_sym_cmd_identifier_token28] = ACTIONS(2449), - [aux_sym_cmd_identifier_token29] = ACTIONS(2449), - [aux_sym_cmd_identifier_token30] = ACTIONS(2449), - [aux_sym_cmd_identifier_token31] = ACTIONS(2449), - [aux_sym_cmd_identifier_token32] = ACTIONS(2449), - [aux_sym_cmd_identifier_token33] = ACTIONS(2449), - [aux_sym_cmd_identifier_token34] = ACTIONS(2447), - [aux_sym_cmd_identifier_token35] = ACTIONS(2449), - [aux_sym_cmd_identifier_token36] = ACTIONS(2449), - [aux_sym_cmd_identifier_token37] = ACTIONS(2449), - [aux_sym_cmd_identifier_token38] = ACTIONS(2447), - [aux_sym_cmd_identifier_token39] = ACTIONS(2449), - [aux_sym_cmd_identifier_token40] = ACTIONS(2449), - [anon_sym_def] = ACTIONS(2447), - [anon_sym_export_DASHenv] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_module] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_error] = ACTIONS(2447), - [anon_sym_DASH2] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_in2] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_make] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_catch] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_source] = ACTIONS(2447), - [anon_sym_source_DASHenv] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_hide] = ACTIONS(2447), - [anon_sym_hide_DASHenv] = ACTIONS(2447), - [anon_sym_overlay] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_PLUS2] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2447), - [aux_sym__val_number_decimal_token2] = ACTIONS(2449), - [aux_sym__val_number_decimal_token3] = ACTIONS(2449), - [aux_sym__val_number_decimal_token4] = ACTIONS(2449), - [aux_sym__val_number_token1] = ACTIONS(2449), - [aux_sym__val_number_token2] = ACTIONS(2449), - [aux_sym__val_number_token3] = ACTIONS(2449), - [aux_sym__val_number_token4] = ACTIONS(2447), - [aux_sym__val_number_token5] = ACTIONS(2447), - [aux_sym__val_number_token6] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym__str_single_quotes] = ACTIONS(2449), - [sym__str_back_ticks] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2449), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_alias] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_let_DASHenv] = ACTIONS(2386), + [anon_sym_mut] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [aux_sym_cmd_identifier_token1] = ACTIONS(2386), + [aux_sym_cmd_identifier_token2] = ACTIONS(2388), + [aux_sym_cmd_identifier_token3] = ACTIONS(2388), + [aux_sym_cmd_identifier_token4] = ACTIONS(2388), + [aux_sym_cmd_identifier_token5] = ACTIONS(2388), + [aux_sym_cmd_identifier_token6] = ACTIONS(2388), + [aux_sym_cmd_identifier_token7] = ACTIONS(2388), + [aux_sym_cmd_identifier_token8] = ACTIONS(2386), + [aux_sym_cmd_identifier_token9] = ACTIONS(2386), + [aux_sym_cmd_identifier_token10] = ACTIONS(2388), + [aux_sym_cmd_identifier_token11] = ACTIONS(2388), + [aux_sym_cmd_identifier_token12] = ACTIONS(2386), + [aux_sym_cmd_identifier_token13] = ACTIONS(2386), + [aux_sym_cmd_identifier_token14] = ACTIONS(2386), + [aux_sym_cmd_identifier_token15] = ACTIONS(2386), + [aux_sym_cmd_identifier_token16] = ACTIONS(2388), + [aux_sym_cmd_identifier_token17] = ACTIONS(2388), + [aux_sym_cmd_identifier_token18] = ACTIONS(2388), + [aux_sym_cmd_identifier_token19] = ACTIONS(2388), + [aux_sym_cmd_identifier_token20] = ACTIONS(2388), + [aux_sym_cmd_identifier_token21] = ACTIONS(2388), + [aux_sym_cmd_identifier_token22] = ACTIONS(2388), + [aux_sym_cmd_identifier_token23] = ACTIONS(2388), + [aux_sym_cmd_identifier_token24] = ACTIONS(2388), + [aux_sym_cmd_identifier_token25] = ACTIONS(2388), + [aux_sym_cmd_identifier_token26] = ACTIONS(2388), + [aux_sym_cmd_identifier_token27] = ACTIONS(2388), + [aux_sym_cmd_identifier_token28] = ACTIONS(2388), + [aux_sym_cmd_identifier_token29] = ACTIONS(2388), + [aux_sym_cmd_identifier_token30] = ACTIONS(2388), + [aux_sym_cmd_identifier_token31] = ACTIONS(2388), + [aux_sym_cmd_identifier_token32] = ACTIONS(2388), + [aux_sym_cmd_identifier_token33] = ACTIONS(2388), + [aux_sym_cmd_identifier_token34] = ACTIONS(2386), + [aux_sym_cmd_identifier_token35] = ACTIONS(2388), + [aux_sym_cmd_identifier_token36] = ACTIONS(2388), + [aux_sym_cmd_identifier_token37] = ACTIONS(2388), + [aux_sym_cmd_identifier_token38] = ACTIONS(2386), + [aux_sym_cmd_identifier_token39] = ACTIONS(2388), + [aux_sym_cmd_identifier_token40] = ACTIONS(2388), + [anon_sym_def] = ACTIONS(2386), + [anon_sym_export_DASHenv] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_use] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_DOLLAR] = ACTIONS(2388), + [anon_sym_error] = ACTIONS(2386), + [anon_sym_DASH2] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_in2] = ACTIONS(2386), + [anon_sym_loop] = ACTIONS(2386), + [anon_sym_make] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_match] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_catch] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_source] = ACTIONS(2386), + [anon_sym_source_DASHenv] = ACTIONS(2386), + [anon_sym_register] = ACTIONS(2386), + [anon_sym_hide] = ACTIONS(2386), + [anon_sym_hide_DASHenv] = ACTIONS(2386), + [anon_sym_overlay] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2386), + [anon_sym_PLUS2] = ACTIONS(2386), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2388), + [aux_sym__val_number_decimal_token1] = ACTIONS(2386), + [aux_sym__val_number_decimal_token2] = ACTIONS(2388), + [aux_sym__val_number_decimal_token3] = ACTIONS(2388), + [aux_sym__val_number_decimal_token4] = ACTIONS(2388), + [aux_sym__val_number_token1] = ACTIONS(2388), + [aux_sym__val_number_token2] = ACTIONS(2388), + [aux_sym__val_number_token3] = ACTIONS(2388), + [aux_sym__val_number_token4] = ACTIONS(2386), + [aux_sym__val_number_token5] = ACTIONS(2386), + [aux_sym__val_number_token6] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2388), + [sym__str_single_quotes] = ACTIONS(2388), + [sym__str_back_ticks] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2388), }, [752] = { [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(1687), - [anon_sym_alias] = ACTIONS(1687), - [anon_sym_let] = ACTIONS(1687), - [anon_sym_let_DASHenv] = ACTIONS(1687), - [anon_sym_mut] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [aux_sym_cmd_identifier_token1] = ACTIONS(1687), - [aux_sym_cmd_identifier_token2] = ACTIONS(1699), - [aux_sym_cmd_identifier_token3] = ACTIONS(1699), - [aux_sym_cmd_identifier_token4] = ACTIONS(1699), - [aux_sym_cmd_identifier_token5] = ACTIONS(1699), - [aux_sym_cmd_identifier_token6] = ACTIONS(1699), - [aux_sym_cmd_identifier_token7] = ACTIONS(1699), - [aux_sym_cmd_identifier_token8] = ACTIONS(1687), - [aux_sym_cmd_identifier_token9] = ACTIONS(1687), - [aux_sym_cmd_identifier_token10] = ACTIONS(1699), - [aux_sym_cmd_identifier_token11] = ACTIONS(1699), - [aux_sym_cmd_identifier_token12] = ACTIONS(1687), - [aux_sym_cmd_identifier_token13] = ACTIONS(1687), - [aux_sym_cmd_identifier_token14] = ACTIONS(1687), - [aux_sym_cmd_identifier_token15] = ACTIONS(1687), - [aux_sym_cmd_identifier_token16] = ACTIONS(1699), - [aux_sym_cmd_identifier_token17] = ACTIONS(1699), - [aux_sym_cmd_identifier_token18] = ACTIONS(1699), - [aux_sym_cmd_identifier_token19] = ACTIONS(1699), - [aux_sym_cmd_identifier_token20] = ACTIONS(1699), - [aux_sym_cmd_identifier_token21] = ACTIONS(1699), - [aux_sym_cmd_identifier_token22] = ACTIONS(1699), - [aux_sym_cmd_identifier_token23] = ACTIONS(1699), - [aux_sym_cmd_identifier_token24] = ACTIONS(1699), - [aux_sym_cmd_identifier_token25] = ACTIONS(1699), - [aux_sym_cmd_identifier_token26] = ACTIONS(1699), - [aux_sym_cmd_identifier_token27] = ACTIONS(1699), - [aux_sym_cmd_identifier_token28] = ACTIONS(1699), - [aux_sym_cmd_identifier_token29] = ACTIONS(1699), - [aux_sym_cmd_identifier_token30] = ACTIONS(1699), - [aux_sym_cmd_identifier_token31] = ACTIONS(1699), - [aux_sym_cmd_identifier_token32] = ACTIONS(1699), - [aux_sym_cmd_identifier_token33] = ACTIONS(1699), - [aux_sym_cmd_identifier_token34] = ACTIONS(1687), - [aux_sym_cmd_identifier_token35] = ACTIONS(1699), - [aux_sym_cmd_identifier_token36] = ACTIONS(1699), - [aux_sym_cmd_identifier_token37] = ACTIONS(1699), - [aux_sym_cmd_identifier_token38] = ACTIONS(1687), - [aux_sym_cmd_identifier_token39] = ACTIONS(1699), - [aux_sym_cmd_identifier_token40] = ACTIONS(1699), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_export_DASHenv] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(1687), - [anon_sym_module] = ACTIONS(1687), - [anon_sym_use] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1699), - [anon_sym_error] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_loop] = ACTIONS(1687), - [anon_sym_make] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_else] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_catch] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_source] = ACTIONS(1687), - [anon_sym_source_DASHenv] = ACTIONS(1687), - [anon_sym_register] = ACTIONS(1687), - [anon_sym_hide] = ACTIONS(1687), - [anon_sym_hide_DASHenv] = ACTIONS(1687), - [anon_sym_overlay] = ACTIONS(1687), - [anon_sym_as] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1687), - [aux_sym__val_number_token5] = ACTIONS(1687), - [aux_sym__val_number_token6] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_alias] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_let_DASHenv] = ACTIONS(2390), + [anon_sym_mut] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [aux_sym_cmd_identifier_token1] = ACTIONS(2390), + [aux_sym_cmd_identifier_token2] = ACTIONS(2392), + [aux_sym_cmd_identifier_token3] = ACTIONS(2392), + [aux_sym_cmd_identifier_token4] = ACTIONS(2392), + [aux_sym_cmd_identifier_token5] = ACTIONS(2392), + [aux_sym_cmd_identifier_token6] = ACTIONS(2392), + [aux_sym_cmd_identifier_token7] = ACTIONS(2392), + [aux_sym_cmd_identifier_token8] = ACTIONS(2390), + [aux_sym_cmd_identifier_token9] = ACTIONS(2390), + [aux_sym_cmd_identifier_token10] = ACTIONS(2392), + [aux_sym_cmd_identifier_token11] = ACTIONS(2392), + [aux_sym_cmd_identifier_token12] = ACTIONS(2390), + [aux_sym_cmd_identifier_token13] = ACTIONS(2390), + [aux_sym_cmd_identifier_token14] = ACTIONS(2390), + [aux_sym_cmd_identifier_token15] = ACTIONS(2390), + [aux_sym_cmd_identifier_token16] = ACTIONS(2392), + [aux_sym_cmd_identifier_token17] = ACTIONS(2392), + [aux_sym_cmd_identifier_token18] = ACTIONS(2392), + [aux_sym_cmd_identifier_token19] = ACTIONS(2392), + [aux_sym_cmd_identifier_token20] = ACTIONS(2392), + [aux_sym_cmd_identifier_token21] = ACTIONS(2392), + [aux_sym_cmd_identifier_token22] = ACTIONS(2392), + [aux_sym_cmd_identifier_token23] = ACTIONS(2392), + [aux_sym_cmd_identifier_token24] = ACTIONS(2392), + [aux_sym_cmd_identifier_token25] = ACTIONS(2392), + [aux_sym_cmd_identifier_token26] = ACTIONS(2392), + [aux_sym_cmd_identifier_token27] = ACTIONS(2392), + [aux_sym_cmd_identifier_token28] = ACTIONS(2392), + [aux_sym_cmd_identifier_token29] = ACTIONS(2392), + [aux_sym_cmd_identifier_token30] = ACTIONS(2392), + [aux_sym_cmd_identifier_token31] = ACTIONS(2392), + [aux_sym_cmd_identifier_token32] = ACTIONS(2392), + [aux_sym_cmd_identifier_token33] = ACTIONS(2392), + [aux_sym_cmd_identifier_token34] = ACTIONS(2390), + [aux_sym_cmd_identifier_token35] = ACTIONS(2392), + [aux_sym_cmd_identifier_token36] = ACTIONS(2392), + [aux_sym_cmd_identifier_token37] = ACTIONS(2392), + [aux_sym_cmd_identifier_token38] = ACTIONS(2390), + [aux_sym_cmd_identifier_token39] = ACTIONS(2392), + [aux_sym_cmd_identifier_token40] = ACTIONS(2392), + [anon_sym_def] = ACTIONS(2390), + [anon_sym_export_DASHenv] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_use] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_DOLLAR] = ACTIONS(2392), + [anon_sym_error] = ACTIONS(2390), + [anon_sym_DASH2] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2390), + [anon_sym_continue] = ACTIONS(2390), + [anon_sym_for] = ACTIONS(2390), + [anon_sym_in2] = ACTIONS(2390), + [anon_sym_loop] = ACTIONS(2390), + [anon_sym_make] = ACTIONS(2390), + [anon_sym_while] = ACTIONS(2390), + [anon_sym_do] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2390), + [anon_sym_catch] = ACTIONS(2390), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_source] = ACTIONS(2390), + [anon_sym_source_DASHenv] = ACTIONS(2390), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_hide] = ACTIONS(2390), + [anon_sym_hide_DASHenv] = ACTIONS(2390), + [anon_sym_overlay] = ACTIONS(2390), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_PLUS2] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), + [aux_sym__val_number_decimal_token1] = ACTIONS(2390), + [aux_sym__val_number_decimal_token2] = ACTIONS(2392), + [aux_sym__val_number_decimal_token3] = ACTIONS(2392), + [aux_sym__val_number_decimal_token4] = ACTIONS(2392), + [aux_sym__val_number_token1] = ACTIONS(2392), + [aux_sym__val_number_token2] = ACTIONS(2392), + [aux_sym__val_number_token3] = ACTIONS(2392), + [aux_sym__val_number_token4] = ACTIONS(2390), + [aux_sym__val_number_token5] = ACTIONS(2390), + [aux_sym__val_number_token6] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2392), + [sym__str_single_quotes] = ACTIONS(2392), + [sym__str_back_ticks] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2392), }, [753] = { [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_alias] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_let_DASHenv] = ACTIONS(2411), - [anon_sym_mut] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [aux_sym_cmd_identifier_token1] = ACTIONS(2411), - [aux_sym_cmd_identifier_token2] = ACTIONS(2413), - [aux_sym_cmd_identifier_token3] = ACTIONS(2413), - [aux_sym_cmd_identifier_token4] = ACTIONS(2413), - [aux_sym_cmd_identifier_token5] = ACTIONS(2413), - [aux_sym_cmd_identifier_token6] = ACTIONS(2413), - [aux_sym_cmd_identifier_token7] = ACTIONS(2413), - [aux_sym_cmd_identifier_token8] = ACTIONS(2411), - [aux_sym_cmd_identifier_token9] = ACTIONS(2411), - [aux_sym_cmd_identifier_token10] = ACTIONS(2413), - [aux_sym_cmd_identifier_token11] = ACTIONS(2413), - [aux_sym_cmd_identifier_token12] = ACTIONS(2411), - [aux_sym_cmd_identifier_token13] = ACTIONS(2411), - [aux_sym_cmd_identifier_token14] = ACTIONS(2411), - [aux_sym_cmd_identifier_token15] = ACTIONS(2411), - [aux_sym_cmd_identifier_token16] = ACTIONS(2413), - [aux_sym_cmd_identifier_token17] = ACTIONS(2413), - [aux_sym_cmd_identifier_token18] = ACTIONS(2413), - [aux_sym_cmd_identifier_token19] = ACTIONS(2413), - [aux_sym_cmd_identifier_token20] = ACTIONS(2413), - [aux_sym_cmd_identifier_token21] = ACTIONS(2413), - [aux_sym_cmd_identifier_token22] = ACTIONS(2413), - [aux_sym_cmd_identifier_token23] = ACTIONS(2413), - [aux_sym_cmd_identifier_token24] = ACTIONS(2413), - [aux_sym_cmd_identifier_token25] = ACTIONS(2413), - [aux_sym_cmd_identifier_token26] = ACTIONS(2413), - [aux_sym_cmd_identifier_token27] = ACTIONS(2413), - [aux_sym_cmd_identifier_token28] = ACTIONS(2413), - [aux_sym_cmd_identifier_token29] = ACTIONS(2413), - [aux_sym_cmd_identifier_token30] = ACTIONS(2413), - [aux_sym_cmd_identifier_token31] = ACTIONS(2413), - [aux_sym_cmd_identifier_token32] = ACTIONS(2413), - [aux_sym_cmd_identifier_token33] = ACTIONS(2413), - [aux_sym_cmd_identifier_token34] = ACTIONS(2411), - [aux_sym_cmd_identifier_token35] = ACTIONS(2413), - [aux_sym_cmd_identifier_token36] = ACTIONS(2413), - [aux_sym_cmd_identifier_token37] = ACTIONS(2413), - [aux_sym_cmd_identifier_token38] = ACTIONS(2411), - [aux_sym_cmd_identifier_token39] = ACTIONS(2413), - [aux_sym_cmd_identifier_token40] = ACTIONS(2413), - [anon_sym_def] = ACTIONS(2411), - [anon_sym_export_DASHenv] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_error] = ACTIONS(2411), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_in2] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_make] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_do] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_else] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_catch] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_source] = ACTIONS(2411), - [anon_sym_source_DASHenv] = ACTIONS(2411), - [anon_sym_register] = ACTIONS(2411), - [anon_sym_hide] = ACTIONS(2411), - [anon_sym_hide_DASHenv] = ACTIONS(2411), - [anon_sym_overlay] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), - [aux_sym__val_number_decimal_token1] = ACTIONS(2411), - [aux_sym__val_number_decimal_token2] = ACTIONS(2413), - [aux_sym__val_number_decimal_token3] = ACTIONS(2413), - [aux_sym__val_number_decimal_token4] = ACTIONS(2413), - [aux_sym__val_number_token1] = ACTIONS(2413), - [aux_sym__val_number_token2] = ACTIONS(2413), - [aux_sym__val_number_token3] = ACTIONS(2413), - [aux_sym__val_number_token4] = ACTIONS(2411), - [aux_sym__val_number_token5] = ACTIONS(2411), - [aux_sym__val_number_token6] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2413), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2427), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [aux_sym_cmd_identifier_token6] = ACTIONS(2427), + [aux_sym_cmd_identifier_token7] = ACTIONS(2427), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2427), + [aux_sym_cmd_identifier_token11] = ACTIONS(2427), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2427), + [aux_sym_cmd_identifier_token17] = ACTIONS(2427), + [aux_sym_cmd_identifier_token18] = ACTIONS(2427), + [aux_sym_cmd_identifier_token19] = ACTIONS(2427), + [aux_sym_cmd_identifier_token20] = ACTIONS(2427), + [aux_sym_cmd_identifier_token21] = ACTIONS(2427), + [aux_sym_cmd_identifier_token22] = ACTIONS(2427), + [aux_sym_cmd_identifier_token23] = ACTIONS(2427), + [aux_sym_cmd_identifier_token24] = ACTIONS(2427), + [aux_sym_cmd_identifier_token25] = ACTIONS(2427), + [aux_sym_cmd_identifier_token26] = ACTIONS(2427), + [aux_sym_cmd_identifier_token27] = ACTIONS(2427), + [aux_sym_cmd_identifier_token28] = ACTIONS(2427), + [aux_sym_cmd_identifier_token29] = ACTIONS(2427), + [aux_sym_cmd_identifier_token30] = ACTIONS(2427), + [aux_sym_cmd_identifier_token31] = ACTIONS(2427), + [aux_sym_cmd_identifier_token32] = ACTIONS(2427), + [aux_sym_cmd_identifier_token33] = ACTIONS(2427), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2427), + [aux_sym_cmd_identifier_token36] = ACTIONS(2427), + [aux_sym_cmd_identifier_token37] = ACTIONS(2427), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2427), + [aux_sym_cmd_identifier_token40] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2427), + [aux_sym__val_number_decimal_token3] = ACTIONS(2427), + [aux_sym__val_number_decimal_token4] = ACTIONS(2427), + [aux_sym__val_number_token1] = ACTIONS(2427), + [aux_sym__val_number_token2] = ACTIONS(2427), + [aux_sym__val_number_token3] = ACTIONS(2427), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2413), + [sym_raw_string_begin] = ACTIONS(2427), }, [754] = { [sym_comment] = STATE(754), - [anon_sym_export] = ACTIONS(2371), - [anon_sym_alias] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_let_DASHenv] = ACTIONS(2371), - [anon_sym_mut] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [aux_sym_cmd_identifier_token1] = ACTIONS(2371), - [aux_sym_cmd_identifier_token2] = ACTIONS(2373), - [aux_sym_cmd_identifier_token3] = ACTIONS(2373), - [aux_sym_cmd_identifier_token4] = ACTIONS(2373), - [aux_sym_cmd_identifier_token5] = ACTIONS(2373), - [aux_sym_cmd_identifier_token6] = ACTIONS(2373), - [aux_sym_cmd_identifier_token7] = ACTIONS(2373), - [aux_sym_cmd_identifier_token8] = ACTIONS(2371), - [aux_sym_cmd_identifier_token9] = ACTIONS(2371), - [aux_sym_cmd_identifier_token10] = ACTIONS(2373), - [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2371), - [aux_sym_cmd_identifier_token13] = ACTIONS(2371), - [aux_sym_cmd_identifier_token14] = ACTIONS(2371), - [aux_sym_cmd_identifier_token15] = ACTIONS(2371), - [aux_sym_cmd_identifier_token16] = ACTIONS(2373), - [aux_sym_cmd_identifier_token17] = ACTIONS(2373), - [aux_sym_cmd_identifier_token18] = ACTIONS(2373), - [aux_sym_cmd_identifier_token19] = ACTIONS(2373), - [aux_sym_cmd_identifier_token20] = ACTIONS(2373), - [aux_sym_cmd_identifier_token21] = ACTIONS(2373), - [aux_sym_cmd_identifier_token22] = ACTIONS(2373), - [aux_sym_cmd_identifier_token23] = ACTIONS(2373), - [aux_sym_cmd_identifier_token24] = ACTIONS(2373), - [aux_sym_cmd_identifier_token25] = ACTIONS(2373), - [aux_sym_cmd_identifier_token26] = ACTIONS(2373), - [aux_sym_cmd_identifier_token27] = ACTIONS(2373), - [aux_sym_cmd_identifier_token28] = ACTIONS(2373), - [aux_sym_cmd_identifier_token29] = ACTIONS(2373), - [aux_sym_cmd_identifier_token30] = ACTIONS(2373), - [aux_sym_cmd_identifier_token31] = ACTIONS(2373), - [aux_sym_cmd_identifier_token32] = ACTIONS(2373), - [aux_sym_cmd_identifier_token33] = ACTIONS(2373), - [aux_sym_cmd_identifier_token34] = ACTIONS(2371), - [aux_sym_cmd_identifier_token35] = ACTIONS(2373), - [aux_sym_cmd_identifier_token36] = ACTIONS(2373), - [aux_sym_cmd_identifier_token37] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2371), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_export_DASHenv] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_module] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2371), - [anon_sym_DASH2] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_in2] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_make] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_catch] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_source] = ACTIONS(2371), - [anon_sym_source_DASHenv] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_hide_DASHenv] = ACTIONS(2371), - [anon_sym_overlay] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_PLUS2] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2371), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_decimal_token4] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [aux_sym__val_number_token4] = ACTIONS(2371), - [aux_sym__val_number_token5] = ACTIONS(2371), - [aux_sym__val_number_token6] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2373), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, [755] = { [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(2375), - [anon_sym_alias] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_let_DASHenv] = ACTIONS(2375), - [anon_sym_mut] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [aux_sym_cmd_identifier_token1] = ACTIONS(2375), - [aux_sym_cmd_identifier_token2] = ACTIONS(2377), - [aux_sym_cmd_identifier_token3] = ACTIONS(2377), - [aux_sym_cmd_identifier_token4] = ACTIONS(2377), - [aux_sym_cmd_identifier_token5] = ACTIONS(2377), - [aux_sym_cmd_identifier_token6] = ACTIONS(2377), - [aux_sym_cmd_identifier_token7] = ACTIONS(2377), - [aux_sym_cmd_identifier_token8] = ACTIONS(2375), - [aux_sym_cmd_identifier_token9] = ACTIONS(2375), - [aux_sym_cmd_identifier_token10] = ACTIONS(2377), - [aux_sym_cmd_identifier_token11] = ACTIONS(2377), - [aux_sym_cmd_identifier_token12] = ACTIONS(2375), - [aux_sym_cmd_identifier_token13] = ACTIONS(2375), - [aux_sym_cmd_identifier_token14] = ACTIONS(2375), - [aux_sym_cmd_identifier_token15] = ACTIONS(2375), - [aux_sym_cmd_identifier_token16] = ACTIONS(2377), - [aux_sym_cmd_identifier_token17] = ACTIONS(2377), - [aux_sym_cmd_identifier_token18] = ACTIONS(2377), - [aux_sym_cmd_identifier_token19] = ACTIONS(2377), - [aux_sym_cmd_identifier_token20] = ACTIONS(2377), - [aux_sym_cmd_identifier_token21] = ACTIONS(2377), - [aux_sym_cmd_identifier_token22] = ACTIONS(2377), - [aux_sym_cmd_identifier_token23] = ACTIONS(2377), - [aux_sym_cmd_identifier_token24] = ACTIONS(2377), - [aux_sym_cmd_identifier_token25] = ACTIONS(2377), - [aux_sym_cmd_identifier_token26] = ACTIONS(2377), - [aux_sym_cmd_identifier_token27] = ACTIONS(2377), - [aux_sym_cmd_identifier_token28] = ACTIONS(2377), - [aux_sym_cmd_identifier_token29] = ACTIONS(2377), - [aux_sym_cmd_identifier_token30] = ACTIONS(2377), - [aux_sym_cmd_identifier_token31] = ACTIONS(2377), - [aux_sym_cmd_identifier_token32] = ACTIONS(2377), - [aux_sym_cmd_identifier_token33] = ACTIONS(2377), - [aux_sym_cmd_identifier_token34] = ACTIONS(2375), - [aux_sym_cmd_identifier_token35] = ACTIONS(2377), - [aux_sym_cmd_identifier_token36] = ACTIONS(2377), - [aux_sym_cmd_identifier_token37] = ACTIONS(2377), - [aux_sym_cmd_identifier_token38] = ACTIONS(2375), - [aux_sym_cmd_identifier_token39] = ACTIONS(2377), - [aux_sym_cmd_identifier_token40] = ACTIONS(2377), - [anon_sym_def] = ACTIONS(2375), - [anon_sym_export_DASHenv] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_error] = ACTIONS(2375), - [anon_sym_DASH2] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_in2] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_make] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_catch] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_source] = ACTIONS(2375), - [anon_sym_source_DASHenv] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_hide_DASHenv] = ACTIONS(2375), - [anon_sym_overlay] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_PLUS2] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), - [aux_sym__val_number_decimal_token1] = ACTIONS(2375), - [aux_sym__val_number_decimal_token2] = ACTIONS(2377), - [aux_sym__val_number_decimal_token3] = ACTIONS(2377), - [aux_sym__val_number_decimal_token4] = ACTIONS(2377), - [aux_sym__val_number_token1] = ACTIONS(2377), - [aux_sym__val_number_token2] = ACTIONS(2377), - [aux_sym__val_number_token3] = ACTIONS(2377), - [aux_sym__val_number_token4] = ACTIONS(2375), - [aux_sym__val_number_token5] = ACTIONS(2375), - [aux_sym__val_number_token6] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym__str_single_quotes] = ACTIONS(2377), - [sym__str_back_ticks] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2377), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_alias] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_let_DASHenv] = ACTIONS(2366), + [anon_sym_mut] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [aux_sym_cmd_identifier_token1] = ACTIONS(2366), + [aux_sym_cmd_identifier_token2] = ACTIONS(2368), + [aux_sym_cmd_identifier_token3] = ACTIONS(2368), + [aux_sym_cmd_identifier_token4] = ACTIONS(2368), + [aux_sym_cmd_identifier_token5] = ACTIONS(2368), + [aux_sym_cmd_identifier_token6] = ACTIONS(2368), + [aux_sym_cmd_identifier_token7] = ACTIONS(2368), + [aux_sym_cmd_identifier_token8] = ACTIONS(2366), + [aux_sym_cmd_identifier_token9] = ACTIONS(2366), + [aux_sym_cmd_identifier_token10] = ACTIONS(2368), + [aux_sym_cmd_identifier_token11] = ACTIONS(2368), + [aux_sym_cmd_identifier_token12] = ACTIONS(2366), + [aux_sym_cmd_identifier_token13] = ACTIONS(2366), + [aux_sym_cmd_identifier_token14] = ACTIONS(2366), + [aux_sym_cmd_identifier_token15] = ACTIONS(2366), + [aux_sym_cmd_identifier_token16] = ACTIONS(2368), + [aux_sym_cmd_identifier_token17] = ACTIONS(2368), + [aux_sym_cmd_identifier_token18] = ACTIONS(2368), + [aux_sym_cmd_identifier_token19] = ACTIONS(2368), + [aux_sym_cmd_identifier_token20] = ACTIONS(2368), + [aux_sym_cmd_identifier_token21] = ACTIONS(2368), + [aux_sym_cmd_identifier_token22] = ACTIONS(2368), + [aux_sym_cmd_identifier_token23] = ACTIONS(2368), + [aux_sym_cmd_identifier_token24] = ACTIONS(2368), + [aux_sym_cmd_identifier_token25] = ACTIONS(2368), + [aux_sym_cmd_identifier_token26] = ACTIONS(2368), + [aux_sym_cmd_identifier_token27] = ACTIONS(2368), + [aux_sym_cmd_identifier_token28] = ACTIONS(2368), + [aux_sym_cmd_identifier_token29] = ACTIONS(2368), + [aux_sym_cmd_identifier_token30] = ACTIONS(2368), + [aux_sym_cmd_identifier_token31] = ACTIONS(2368), + [aux_sym_cmd_identifier_token32] = ACTIONS(2368), + [aux_sym_cmd_identifier_token33] = ACTIONS(2368), + [aux_sym_cmd_identifier_token34] = ACTIONS(2366), + [aux_sym_cmd_identifier_token35] = ACTIONS(2368), + [aux_sym_cmd_identifier_token36] = ACTIONS(2368), + [aux_sym_cmd_identifier_token37] = ACTIONS(2368), + [aux_sym_cmd_identifier_token38] = ACTIONS(2366), + [aux_sym_cmd_identifier_token39] = ACTIONS(2368), + [aux_sym_cmd_identifier_token40] = ACTIONS(2368), + [anon_sym_def] = ACTIONS(2366), + [anon_sym_export_DASHenv] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2368), + [anon_sym_error] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_in2] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_make] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_catch] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_source] = ACTIONS(2366), + [anon_sym_source_DASHenv] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2366), + [anon_sym_hide] = ACTIONS(2366), + [anon_sym_hide_DASHenv] = ACTIONS(2366), + [anon_sym_overlay] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), + [aux_sym__val_number_decimal_token1] = ACTIONS(2366), + [aux_sym__val_number_decimal_token2] = ACTIONS(2368), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(2368), + [aux_sym__val_number_token2] = ACTIONS(2368), + [aux_sym__val_number_token3] = ACTIONS(2368), + [aux_sym__val_number_token4] = ACTIONS(2366), + [aux_sym__val_number_token5] = ACTIONS(2366), + [aux_sym__val_number_token6] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym__str_single_quotes] = ACTIONS(2368), + [sym__str_back_ticks] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2368), }, [756] = { [sym_comment] = STATE(756), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_alias] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_let_DASHenv] = ACTIONS(2415), - [anon_sym_mut] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [aux_sym_cmd_identifier_token1] = ACTIONS(2415), - [aux_sym_cmd_identifier_token2] = ACTIONS(2417), - [aux_sym_cmd_identifier_token3] = ACTIONS(2417), - [aux_sym_cmd_identifier_token4] = ACTIONS(2417), - [aux_sym_cmd_identifier_token5] = ACTIONS(2417), - [aux_sym_cmd_identifier_token6] = ACTIONS(2417), - [aux_sym_cmd_identifier_token7] = ACTIONS(2417), - [aux_sym_cmd_identifier_token8] = ACTIONS(2415), - [aux_sym_cmd_identifier_token9] = ACTIONS(2415), - [aux_sym_cmd_identifier_token10] = ACTIONS(2417), - [aux_sym_cmd_identifier_token11] = ACTIONS(2417), - [aux_sym_cmd_identifier_token12] = ACTIONS(2415), - [aux_sym_cmd_identifier_token13] = ACTIONS(2415), - [aux_sym_cmd_identifier_token14] = ACTIONS(2415), - [aux_sym_cmd_identifier_token15] = ACTIONS(2415), - [aux_sym_cmd_identifier_token16] = ACTIONS(2417), - [aux_sym_cmd_identifier_token17] = ACTIONS(2417), - [aux_sym_cmd_identifier_token18] = ACTIONS(2417), - [aux_sym_cmd_identifier_token19] = ACTIONS(2417), - [aux_sym_cmd_identifier_token20] = ACTIONS(2417), - [aux_sym_cmd_identifier_token21] = ACTIONS(2417), - [aux_sym_cmd_identifier_token22] = ACTIONS(2417), - [aux_sym_cmd_identifier_token23] = ACTIONS(2417), - [aux_sym_cmd_identifier_token24] = ACTIONS(2417), - [aux_sym_cmd_identifier_token25] = ACTIONS(2417), - [aux_sym_cmd_identifier_token26] = ACTIONS(2417), - [aux_sym_cmd_identifier_token27] = ACTIONS(2417), - [aux_sym_cmd_identifier_token28] = ACTIONS(2417), - [aux_sym_cmd_identifier_token29] = ACTIONS(2417), - [aux_sym_cmd_identifier_token30] = ACTIONS(2417), - [aux_sym_cmd_identifier_token31] = ACTIONS(2417), - [aux_sym_cmd_identifier_token32] = ACTIONS(2417), - [aux_sym_cmd_identifier_token33] = ACTIONS(2417), - [aux_sym_cmd_identifier_token34] = ACTIONS(2415), - [aux_sym_cmd_identifier_token35] = ACTIONS(2417), - [aux_sym_cmd_identifier_token36] = ACTIONS(2417), - [aux_sym_cmd_identifier_token37] = ACTIONS(2417), - [aux_sym_cmd_identifier_token38] = ACTIONS(2415), - [aux_sym_cmd_identifier_token39] = ACTIONS(2417), - [aux_sym_cmd_identifier_token40] = ACTIONS(2417), - [anon_sym_def] = ACTIONS(2415), - [anon_sym_export_DASHenv] = ACTIONS(2415), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_error] = ACTIONS(2415), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_in2] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_make] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_catch] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_source] = ACTIONS(2415), - [anon_sym_source_DASHenv] = ACTIONS(2415), - [anon_sym_register] = ACTIONS(2415), - [anon_sym_hide] = ACTIONS(2415), - [anon_sym_hide_DASHenv] = ACTIONS(2415), - [anon_sym_overlay] = ACTIONS(2415), - [anon_sym_as] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), - [aux_sym__val_number_decimal_token1] = ACTIONS(2415), - [aux_sym__val_number_decimal_token2] = ACTIONS(2417), - [aux_sym__val_number_decimal_token3] = ACTIONS(2417), - [aux_sym__val_number_decimal_token4] = ACTIONS(2417), - [aux_sym__val_number_token1] = ACTIONS(2417), - [aux_sym__val_number_token2] = ACTIONS(2417), - [aux_sym__val_number_token3] = ACTIONS(2417), - [aux_sym__val_number_token4] = ACTIONS(2415), - [aux_sym__val_number_token5] = ACTIONS(2415), - [aux_sym__val_number_token6] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2417), - [sym__str_single_quotes] = ACTIONS(2417), - [sym__str_back_ticks] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2431), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [aux_sym_cmd_identifier_token6] = ACTIONS(2431), + [aux_sym_cmd_identifier_token7] = ACTIONS(2431), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2431), + [aux_sym_cmd_identifier_token11] = ACTIONS(2431), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2431), + [aux_sym_cmd_identifier_token17] = ACTIONS(2431), + [aux_sym_cmd_identifier_token18] = ACTIONS(2431), + [aux_sym_cmd_identifier_token19] = ACTIONS(2431), + [aux_sym_cmd_identifier_token20] = ACTIONS(2431), + [aux_sym_cmd_identifier_token21] = ACTIONS(2431), + [aux_sym_cmd_identifier_token22] = ACTIONS(2431), + [aux_sym_cmd_identifier_token23] = ACTIONS(2431), + [aux_sym_cmd_identifier_token24] = ACTIONS(2431), + [aux_sym_cmd_identifier_token25] = ACTIONS(2431), + [aux_sym_cmd_identifier_token26] = ACTIONS(2431), + [aux_sym_cmd_identifier_token27] = ACTIONS(2431), + [aux_sym_cmd_identifier_token28] = ACTIONS(2431), + [aux_sym_cmd_identifier_token29] = ACTIONS(2431), + [aux_sym_cmd_identifier_token30] = ACTIONS(2431), + [aux_sym_cmd_identifier_token31] = ACTIONS(2431), + [aux_sym_cmd_identifier_token32] = ACTIONS(2431), + [aux_sym_cmd_identifier_token33] = ACTIONS(2431), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2431), + [aux_sym_cmd_identifier_token36] = ACTIONS(2431), + [aux_sym_cmd_identifier_token37] = ACTIONS(2431), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2431), + [aux_sym_cmd_identifier_token40] = ACTIONS(2431), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2431), + [aux_sym__val_number_decimal_token3] = ACTIONS(2431), + [aux_sym__val_number_decimal_token4] = ACTIONS(2431), + [aux_sym__val_number_token1] = ACTIONS(2431), + [aux_sym__val_number_token2] = ACTIONS(2431), + [aux_sym__val_number_token3] = ACTIONS(2431), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym__str_single_quotes] = ACTIONS(2431), + [sym__str_back_ticks] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2417), + [sym_raw_string_begin] = ACTIONS(2431), }, [757] = { [sym_comment] = STATE(757), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_alias] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_let_DASHenv] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [aux_sym_cmd_identifier_token1] = ACTIONS(2427), - [aux_sym_cmd_identifier_token2] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2429), - [aux_sym_cmd_identifier_token4] = ACTIONS(2429), - [aux_sym_cmd_identifier_token5] = ACTIONS(2429), - [aux_sym_cmd_identifier_token6] = ACTIONS(2429), - [aux_sym_cmd_identifier_token7] = ACTIONS(2429), - [aux_sym_cmd_identifier_token8] = ACTIONS(2427), - [aux_sym_cmd_identifier_token9] = ACTIONS(2427), - [aux_sym_cmd_identifier_token10] = ACTIONS(2429), - [aux_sym_cmd_identifier_token11] = ACTIONS(2429), - [aux_sym_cmd_identifier_token12] = ACTIONS(2427), - [aux_sym_cmd_identifier_token13] = ACTIONS(2427), - [aux_sym_cmd_identifier_token14] = ACTIONS(2427), - [aux_sym_cmd_identifier_token15] = ACTIONS(2427), - [aux_sym_cmd_identifier_token16] = ACTIONS(2429), - [aux_sym_cmd_identifier_token17] = ACTIONS(2429), - [aux_sym_cmd_identifier_token18] = ACTIONS(2429), - [aux_sym_cmd_identifier_token19] = ACTIONS(2429), - [aux_sym_cmd_identifier_token20] = ACTIONS(2429), - [aux_sym_cmd_identifier_token21] = ACTIONS(2429), - [aux_sym_cmd_identifier_token22] = ACTIONS(2429), - [aux_sym_cmd_identifier_token23] = ACTIONS(2429), - [aux_sym_cmd_identifier_token24] = ACTIONS(2429), - [aux_sym_cmd_identifier_token25] = ACTIONS(2429), - [aux_sym_cmd_identifier_token26] = ACTIONS(2429), - [aux_sym_cmd_identifier_token27] = ACTIONS(2429), - [aux_sym_cmd_identifier_token28] = ACTIONS(2429), - [aux_sym_cmd_identifier_token29] = ACTIONS(2429), - [aux_sym_cmd_identifier_token30] = ACTIONS(2429), - [aux_sym_cmd_identifier_token31] = ACTIONS(2429), - [aux_sym_cmd_identifier_token32] = ACTIONS(2429), - [aux_sym_cmd_identifier_token33] = ACTIONS(2429), - [aux_sym_cmd_identifier_token34] = ACTIONS(2427), - [aux_sym_cmd_identifier_token35] = ACTIONS(2429), - [aux_sym_cmd_identifier_token36] = ACTIONS(2429), - [aux_sym_cmd_identifier_token37] = ACTIONS(2429), - [aux_sym_cmd_identifier_token38] = ACTIONS(2427), - [aux_sym_cmd_identifier_token39] = ACTIONS(2429), - [aux_sym_cmd_identifier_token40] = ACTIONS(2429), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_export_DASHenv] = ACTIONS(2427), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_error] = ACTIONS(2427), - [anon_sym_DASH2] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_in2] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_make] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_do] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_else] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_catch] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_source] = ACTIONS(2427), - [anon_sym_source_DASHenv] = ACTIONS(2427), - [anon_sym_register] = ACTIONS(2427), - [anon_sym_hide] = ACTIONS(2427), - [anon_sym_hide_DASHenv] = ACTIONS(2427), - [anon_sym_overlay] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_PLUS2] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), - [aux_sym__val_number_decimal_token1] = ACTIONS(2427), - [aux_sym__val_number_decimal_token2] = ACTIONS(2429), - [aux_sym__val_number_decimal_token3] = ACTIONS(2429), - [aux_sym__val_number_decimal_token4] = ACTIONS(2429), - [aux_sym__val_number_token1] = ACTIONS(2429), - [aux_sym__val_number_token2] = ACTIONS(2429), - [aux_sym__val_number_token3] = ACTIONS(2429), - [aux_sym__val_number_token4] = ACTIONS(2427), - [aux_sym__val_number_token5] = ACTIONS(2427), - [aux_sym__val_number_token6] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2429), - [sym__str_single_quotes] = ACTIONS(2429), - [sym__str_back_ticks] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2429), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), }, [758] = { [sym_comment] = STATE(758), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_alias] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_let_DASHenv] = ACTIONS(2486), - [anon_sym_mut] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [aux_sym_cmd_identifier_token1] = ACTIONS(2486), - [aux_sym_cmd_identifier_token2] = ACTIONS(2488), - [aux_sym_cmd_identifier_token3] = ACTIONS(2488), - [aux_sym_cmd_identifier_token4] = ACTIONS(2488), - [aux_sym_cmd_identifier_token5] = ACTIONS(2488), - [aux_sym_cmd_identifier_token6] = ACTIONS(2488), - [aux_sym_cmd_identifier_token7] = ACTIONS(2488), - [aux_sym_cmd_identifier_token8] = ACTIONS(2486), - [aux_sym_cmd_identifier_token9] = ACTIONS(2486), - [aux_sym_cmd_identifier_token10] = ACTIONS(2488), - [aux_sym_cmd_identifier_token11] = ACTIONS(2488), - [aux_sym_cmd_identifier_token12] = ACTIONS(2486), - [aux_sym_cmd_identifier_token13] = ACTIONS(2486), - [aux_sym_cmd_identifier_token14] = ACTIONS(2486), - [aux_sym_cmd_identifier_token15] = ACTIONS(2486), - [aux_sym_cmd_identifier_token16] = ACTIONS(2488), - [aux_sym_cmd_identifier_token17] = ACTIONS(2488), - [aux_sym_cmd_identifier_token18] = ACTIONS(2488), - [aux_sym_cmd_identifier_token19] = ACTIONS(2488), - [aux_sym_cmd_identifier_token20] = ACTIONS(2488), - [aux_sym_cmd_identifier_token21] = ACTIONS(2488), - [aux_sym_cmd_identifier_token22] = ACTIONS(2488), - [aux_sym_cmd_identifier_token23] = ACTIONS(2488), - [aux_sym_cmd_identifier_token24] = ACTIONS(2488), - [aux_sym_cmd_identifier_token25] = ACTIONS(2488), - [aux_sym_cmd_identifier_token26] = ACTIONS(2488), - [aux_sym_cmd_identifier_token27] = ACTIONS(2488), - [aux_sym_cmd_identifier_token28] = ACTIONS(2488), - [aux_sym_cmd_identifier_token29] = ACTIONS(2488), - [aux_sym_cmd_identifier_token30] = ACTIONS(2488), - [aux_sym_cmd_identifier_token31] = ACTIONS(2488), - [aux_sym_cmd_identifier_token32] = ACTIONS(2488), - [aux_sym_cmd_identifier_token33] = ACTIONS(2488), - [aux_sym_cmd_identifier_token34] = ACTIONS(2486), - [aux_sym_cmd_identifier_token35] = ACTIONS(2488), - [aux_sym_cmd_identifier_token36] = ACTIONS(2488), - [aux_sym_cmd_identifier_token37] = ACTIONS(2488), - [aux_sym_cmd_identifier_token38] = ACTIONS(2486), - [aux_sym_cmd_identifier_token39] = ACTIONS(2488), - [aux_sym_cmd_identifier_token40] = ACTIONS(2488), - [anon_sym_def] = ACTIONS(2486), - [anon_sym_export_DASHenv] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_DOLLAR] = ACTIONS(2488), - [anon_sym_error] = ACTIONS(2486), - [anon_sym_DASH2] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_in2] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_make] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_catch] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_source] = ACTIONS(2486), - [anon_sym_source_DASHenv] = ACTIONS(2486), - [anon_sym_register] = ACTIONS(2486), - [anon_sym_hide] = ACTIONS(2486), - [anon_sym_hide_DASHenv] = ACTIONS(2486), - [anon_sym_overlay] = ACTIONS(2486), - [anon_sym_as] = ACTIONS(2486), - [anon_sym_PLUS2] = ACTIONS(2486), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), - [aux_sym__val_number_decimal_token1] = ACTIONS(2486), - [aux_sym__val_number_decimal_token2] = ACTIONS(2488), - [aux_sym__val_number_decimal_token3] = ACTIONS(2488), - [aux_sym__val_number_decimal_token4] = ACTIONS(2488), - [aux_sym__val_number_token1] = ACTIONS(2488), - [aux_sym__val_number_token2] = ACTIONS(2488), - [aux_sym__val_number_token3] = ACTIONS(2488), - [aux_sym__val_number_token4] = ACTIONS(2486), - [aux_sym__val_number_token5] = ACTIONS(2486), - [aux_sym__val_number_token6] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(2488), - [sym__str_single_quotes] = ACTIONS(2488), - [sym__str_back_ticks] = ACTIONS(2488), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2488), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_alias] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_let_DASHenv] = ACTIONS(2370), + [anon_sym_mut] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [aux_sym_cmd_identifier_token1] = ACTIONS(2370), + [aux_sym_cmd_identifier_token2] = ACTIONS(2372), + [aux_sym_cmd_identifier_token3] = ACTIONS(2372), + [aux_sym_cmd_identifier_token4] = ACTIONS(2372), + [aux_sym_cmd_identifier_token5] = ACTIONS(2372), + [aux_sym_cmd_identifier_token6] = ACTIONS(2372), + [aux_sym_cmd_identifier_token7] = ACTIONS(2372), + [aux_sym_cmd_identifier_token8] = ACTIONS(2370), + [aux_sym_cmd_identifier_token9] = ACTIONS(2370), + [aux_sym_cmd_identifier_token10] = ACTIONS(2372), + [aux_sym_cmd_identifier_token11] = ACTIONS(2372), + [aux_sym_cmd_identifier_token12] = ACTIONS(2370), + [aux_sym_cmd_identifier_token13] = ACTIONS(2370), + [aux_sym_cmd_identifier_token14] = ACTIONS(2370), + [aux_sym_cmd_identifier_token15] = ACTIONS(2370), + [aux_sym_cmd_identifier_token16] = ACTIONS(2372), + [aux_sym_cmd_identifier_token17] = ACTIONS(2372), + [aux_sym_cmd_identifier_token18] = ACTIONS(2372), + [aux_sym_cmd_identifier_token19] = ACTIONS(2372), + [aux_sym_cmd_identifier_token20] = ACTIONS(2372), + [aux_sym_cmd_identifier_token21] = ACTIONS(2372), + [aux_sym_cmd_identifier_token22] = ACTIONS(2372), + [aux_sym_cmd_identifier_token23] = ACTIONS(2372), + [aux_sym_cmd_identifier_token24] = ACTIONS(2372), + [aux_sym_cmd_identifier_token25] = ACTIONS(2372), + [aux_sym_cmd_identifier_token26] = ACTIONS(2372), + [aux_sym_cmd_identifier_token27] = ACTIONS(2372), + [aux_sym_cmd_identifier_token28] = ACTIONS(2372), + [aux_sym_cmd_identifier_token29] = ACTIONS(2372), + [aux_sym_cmd_identifier_token30] = ACTIONS(2372), + [aux_sym_cmd_identifier_token31] = ACTIONS(2372), + [aux_sym_cmd_identifier_token32] = ACTIONS(2372), + [aux_sym_cmd_identifier_token33] = ACTIONS(2372), + [aux_sym_cmd_identifier_token34] = ACTIONS(2370), + [aux_sym_cmd_identifier_token35] = ACTIONS(2372), + [aux_sym_cmd_identifier_token36] = ACTIONS(2372), + [aux_sym_cmd_identifier_token37] = ACTIONS(2372), + [aux_sym_cmd_identifier_token38] = ACTIONS(2370), + [aux_sym_cmd_identifier_token39] = ACTIONS(2372), + [aux_sym_cmd_identifier_token40] = ACTIONS(2372), + [anon_sym_def] = ACTIONS(2370), + [anon_sym_export_DASHenv] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2372), + [anon_sym_error] = ACTIONS(2370), + [anon_sym_DASH2] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_in2] = ACTIONS(2370), + [anon_sym_loop] = ACTIONS(2370), + [anon_sym_make] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_source] = ACTIONS(2370), + [anon_sym_source_DASHenv] = ACTIONS(2370), + [anon_sym_register] = ACTIONS(2370), + [anon_sym_hide] = ACTIONS(2370), + [anon_sym_hide_DASHenv] = ACTIONS(2370), + [anon_sym_overlay] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_PLUS2] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2372), + [aux_sym__val_number_decimal_token1] = ACTIONS(2370), + [aux_sym__val_number_decimal_token2] = ACTIONS(2372), + [aux_sym__val_number_decimal_token3] = ACTIONS(2372), + [aux_sym__val_number_decimal_token4] = ACTIONS(2372), + [aux_sym__val_number_token1] = ACTIONS(2372), + [aux_sym__val_number_token2] = ACTIONS(2372), + [aux_sym__val_number_token3] = ACTIONS(2372), + [aux_sym__val_number_token4] = ACTIONS(2370), + [aux_sym__val_number_token5] = ACTIONS(2370), + [aux_sym__val_number_token6] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym__str_single_quotes] = ACTIONS(2372), + [sym__str_back_ticks] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2372), }, [759] = { [sym_comment] = STATE(759), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_alias] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_let_DASHenv] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [aux_sym_cmd_identifier_token1] = ACTIONS(2041), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2041), - [aux_sym_cmd_identifier_token9] = ACTIONS(2041), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2041), - [aux_sym_cmd_identifier_token13] = ACTIONS(2041), - [aux_sym_cmd_identifier_token14] = ACTIONS(2041), - [aux_sym_cmd_identifier_token15] = ACTIONS(2041), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2041), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [aux_sym_cmd_identifier_token37] = ACTIONS(2043), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2043), - [aux_sym_cmd_identifier_token40] = ACTIONS(2043), - [anon_sym_def] = ACTIONS(2041), - [anon_sym_export_DASHenv] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2043), - [anon_sym_error] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_in2] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_make] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_source] = ACTIONS(2041), - [anon_sym_source_DASHenv] = ACTIONS(2041), - [anon_sym_register] = ACTIONS(2041), - [anon_sym_hide] = ACTIONS(2041), - [anon_sym_hide_DASHenv] = ACTIONS(2041), - [anon_sym_overlay] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), }, [760] = { [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(2492), - [anon_sym_alias] = ACTIONS(2492), - [anon_sym_let] = ACTIONS(2492), - [anon_sym_let_DASHenv] = ACTIONS(2492), - [anon_sym_mut] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [aux_sym_cmd_identifier_token1] = ACTIONS(2492), - [aux_sym_cmd_identifier_token2] = ACTIONS(2494), - [aux_sym_cmd_identifier_token3] = ACTIONS(2494), - [aux_sym_cmd_identifier_token4] = ACTIONS(2494), - [aux_sym_cmd_identifier_token5] = ACTIONS(2494), - [aux_sym_cmd_identifier_token6] = ACTIONS(2494), - [aux_sym_cmd_identifier_token7] = ACTIONS(2494), - [aux_sym_cmd_identifier_token8] = ACTIONS(2492), - [aux_sym_cmd_identifier_token9] = ACTIONS(2492), - [aux_sym_cmd_identifier_token10] = ACTIONS(2494), - [aux_sym_cmd_identifier_token11] = ACTIONS(2494), - [aux_sym_cmd_identifier_token12] = ACTIONS(2492), - [aux_sym_cmd_identifier_token13] = ACTIONS(2492), - [aux_sym_cmd_identifier_token14] = ACTIONS(2492), - [aux_sym_cmd_identifier_token15] = ACTIONS(2492), - [aux_sym_cmd_identifier_token16] = ACTIONS(2494), - [aux_sym_cmd_identifier_token17] = ACTIONS(2494), - [aux_sym_cmd_identifier_token18] = ACTIONS(2494), - [aux_sym_cmd_identifier_token19] = ACTIONS(2494), - [aux_sym_cmd_identifier_token20] = ACTIONS(2494), - [aux_sym_cmd_identifier_token21] = ACTIONS(2494), - [aux_sym_cmd_identifier_token22] = ACTIONS(2494), - [aux_sym_cmd_identifier_token23] = ACTIONS(2494), - [aux_sym_cmd_identifier_token24] = ACTIONS(2494), - [aux_sym_cmd_identifier_token25] = ACTIONS(2494), - [aux_sym_cmd_identifier_token26] = ACTIONS(2494), - [aux_sym_cmd_identifier_token27] = ACTIONS(2494), - [aux_sym_cmd_identifier_token28] = ACTIONS(2494), - [aux_sym_cmd_identifier_token29] = ACTIONS(2494), - [aux_sym_cmd_identifier_token30] = ACTIONS(2494), - [aux_sym_cmd_identifier_token31] = ACTIONS(2494), - [aux_sym_cmd_identifier_token32] = ACTIONS(2494), - [aux_sym_cmd_identifier_token33] = ACTIONS(2494), - [aux_sym_cmd_identifier_token34] = ACTIONS(2492), - [aux_sym_cmd_identifier_token35] = ACTIONS(2494), - [aux_sym_cmd_identifier_token36] = ACTIONS(2494), - [aux_sym_cmd_identifier_token37] = ACTIONS(2494), - [aux_sym_cmd_identifier_token38] = ACTIONS(2492), - [aux_sym_cmd_identifier_token39] = ACTIONS(2494), - [aux_sym_cmd_identifier_token40] = ACTIONS(2494), - [anon_sym_def] = ACTIONS(2492), - [anon_sym_export_DASHenv] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym_module] = ACTIONS(2492), - [anon_sym_use] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2494), - [anon_sym_DOLLAR] = ACTIONS(2494), - [anon_sym_error] = ACTIONS(2492), - [anon_sym_DASH2] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_in2] = ACTIONS(2492), - [anon_sym_loop] = ACTIONS(2492), - [anon_sym_make] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_match] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_catch] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_source] = ACTIONS(2492), - [anon_sym_source_DASHenv] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_hide] = ACTIONS(2492), - [anon_sym_hide_DASHenv] = ACTIONS(2492), - [anon_sym_overlay] = ACTIONS(2492), - [anon_sym_as] = ACTIONS(2492), - [anon_sym_PLUS2] = ACTIONS(2492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), - [aux_sym__val_number_decimal_token1] = ACTIONS(2492), - [aux_sym__val_number_decimal_token2] = ACTIONS(2494), - [aux_sym__val_number_decimal_token3] = ACTIONS(2494), - [aux_sym__val_number_decimal_token4] = ACTIONS(2494), - [aux_sym__val_number_token1] = ACTIONS(2494), - [aux_sym__val_number_token2] = ACTIONS(2494), - [aux_sym__val_number_token3] = ACTIONS(2494), - [aux_sym__val_number_token4] = ACTIONS(2492), - [aux_sym__val_number_token5] = ACTIONS(2492), - [aux_sym__val_number_token6] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym__str_single_quotes] = ACTIONS(2494), - [sym__str_back_ticks] = ACTIONS(2494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2435), + [aux_sym_cmd_identifier_token3] = ACTIONS(2435), + [aux_sym_cmd_identifier_token4] = ACTIONS(2435), + [aux_sym_cmd_identifier_token5] = ACTIONS(2435), + [aux_sym_cmd_identifier_token6] = ACTIONS(2435), + [aux_sym_cmd_identifier_token7] = ACTIONS(2435), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2435), + [aux_sym_cmd_identifier_token11] = ACTIONS(2435), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2435), + [aux_sym_cmd_identifier_token17] = ACTIONS(2435), + [aux_sym_cmd_identifier_token18] = ACTIONS(2435), + [aux_sym_cmd_identifier_token19] = ACTIONS(2435), + [aux_sym_cmd_identifier_token20] = ACTIONS(2435), + [aux_sym_cmd_identifier_token21] = ACTIONS(2435), + [aux_sym_cmd_identifier_token22] = ACTIONS(2435), + [aux_sym_cmd_identifier_token23] = ACTIONS(2435), + [aux_sym_cmd_identifier_token24] = ACTIONS(2435), + [aux_sym_cmd_identifier_token25] = ACTIONS(2435), + [aux_sym_cmd_identifier_token26] = ACTIONS(2435), + [aux_sym_cmd_identifier_token27] = ACTIONS(2435), + [aux_sym_cmd_identifier_token28] = ACTIONS(2435), + [aux_sym_cmd_identifier_token29] = ACTIONS(2435), + [aux_sym_cmd_identifier_token30] = ACTIONS(2435), + [aux_sym_cmd_identifier_token31] = ACTIONS(2435), + [aux_sym_cmd_identifier_token32] = ACTIONS(2435), + [aux_sym_cmd_identifier_token33] = ACTIONS(2435), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2435), + [aux_sym_cmd_identifier_token36] = ACTIONS(2435), + [aux_sym_cmd_identifier_token37] = ACTIONS(2435), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2435), + [aux_sym_cmd_identifier_token40] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2435), + [aux_sym__val_number_decimal_token4] = ACTIONS(2435), + [aux_sym__val_number_token1] = ACTIONS(2435), + [aux_sym__val_number_token2] = ACTIONS(2435), + [aux_sym__val_number_token3] = ACTIONS(2435), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2435), }, [761] = { [sym_comment] = STATE(761), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_alias] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_let_DASHenv] = ACTIONS(2528), - [anon_sym_mut] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [aux_sym_cmd_identifier_token1] = ACTIONS(2528), - [aux_sym_cmd_identifier_token2] = ACTIONS(2530), - [aux_sym_cmd_identifier_token3] = ACTIONS(2530), - [aux_sym_cmd_identifier_token4] = ACTIONS(2530), - [aux_sym_cmd_identifier_token5] = ACTIONS(2530), - [aux_sym_cmd_identifier_token6] = ACTIONS(2530), - [aux_sym_cmd_identifier_token7] = ACTIONS(2530), - [aux_sym_cmd_identifier_token8] = ACTIONS(2528), - [aux_sym_cmd_identifier_token9] = ACTIONS(2528), - [aux_sym_cmd_identifier_token10] = ACTIONS(2530), - [aux_sym_cmd_identifier_token11] = ACTIONS(2530), - [aux_sym_cmd_identifier_token12] = ACTIONS(2528), - [aux_sym_cmd_identifier_token13] = ACTIONS(2528), - [aux_sym_cmd_identifier_token14] = ACTIONS(2528), - [aux_sym_cmd_identifier_token15] = ACTIONS(2528), - [aux_sym_cmd_identifier_token16] = ACTIONS(2530), - [aux_sym_cmd_identifier_token17] = ACTIONS(2530), - [aux_sym_cmd_identifier_token18] = ACTIONS(2530), - [aux_sym_cmd_identifier_token19] = ACTIONS(2530), - [aux_sym_cmd_identifier_token20] = ACTIONS(2530), - [aux_sym_cmd_identifier_token21] = ACTIONS(2530), - [aux_sym_cmd_identifier_token22] = ACTIONS(2530), - [aux_sym_cmd_identifier_token23] = ACTIONS(2530), - [aux_sym_cmd_identifier_token24] = ACTIONS(2530), - [aux_sym_cmd_identifier_token25] = ACTIONS(2530), - [aux_sym_cmd_identifier_token26] = ACTIONS(2530), - [aux_sym_cmd_identifier_token27] = ACTIONS(2530), - [aux_sym_cmd_identifier_token28] = ACTIONS(2530), - [aux_sym_cmd_identifier_token29] = ACTIONS(2530), - [aux_sym_cmd_identifier_token30] = ACTIONS(2530), - [aux_sym_cmd_identifier_token31] = ACTIONS(2530), - [aux_sym_cmd_identifier_token32] = ACTIONS(2530), - [aux_sym_cmd_identifier_token33] = ACTIONS(2530), - [aux_sym_cmd_identifier_token34] = ACTIONS(2528), - [aux_sym_cmd_identifier_token35] = ACTIONS(2530), - [aux_sym_cmd_identifier_token36] = ACTIONS(2530), - [aux_sym_cmd_identifier_token37] = ACTIONS(2530), - [aux_sym_cmd_identifier_token38] = ACTIONS(2528), - [aux_sym_cmd_identifier_token39] = ACTIONS(2530), - [aux_sym_cmd_identifier_token40] = ACTIONS(2530), - [anon_sym_def] = ACTIONS(2528), - [anon_sym_export_DASHenv] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_DOLLAR] = ACTIONS(2530), - [anon_sym_error] = ACTIONS(2528), - [anon_sym_DASH2] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_in2] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_make] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_catch] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_source] = ACTIONS(2528), - [anon_sym_source_DASHenv] = ACTIONS(2528), - [anon_sym_register] = ACTIONS(2528), - [anon_sym_hide] = ACTIONS(2528), - [anon_sym_hide_DASHenv] = ACTIONS(2528), - [anon_sym_overlay] = ACTIONS(2528), - [anon_sym_as] = ACTIONS(2528), - [anon_sym_PLUS2] = ACTIONS(2528), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2530), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2530), - [aux_sym__val_number_decimal_token1] = ACTIONS(2528), - [aux_sym__val_number_decimal_token2] = ACTIONS(2530), - [aux_sym__val_number_decimal_token3] = ACTIONS(2530), - [aux_sym__val_number_decimal_token4] = ACTIONS(2530), - [aux_sym__val_number_token1] = ACTIONS(2530), - [aux_sym__val_number_token2] = ACTIONS(2530), - [aux_sym__val_number_token3] = ACTIONS(2530), - [aux_sym__val_number_token4] = ACTIONS(2528), - [aux_sym__val_number_token5] = ACTIONS(2528), - [aux_sym__val_number_token6] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2530), - [sym__str_single_quotes] = ACTIONS(2530), - [sym__str_back_ticks] = ACTIONS(2530), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1020), }, [762] = { [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1036), - [aux_sym_cmd_identifier_token3] = ACTIONS(1036), - [aux_sym_cmd_identifier_token4] = ACTIONS(1036), - [aux_sym_cmd_identifier_token5] = ACTIONS(1036), - [aux_sym_cmd_identifier_token6] = ACTIONS(1036), - [aux_sym_cmd_identifier_token7] = ACTIONS(1036), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1036), - [aux_sym_cmd_identifier_token11] = ACTIONS(1036), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1036), - [aux_sym_cmd_identifier_token17] = ACTIONS(1036), - [aux_sym_cmd_identifier_token18] = ACTIONS(1036), - [aux_sym_cmd_identifier_token19] = ACTIONS(1036), - [aux_sym_cmd_identifier_token20] = ACTIONS(1036), - [aux_sym_cmd_identifier_token21] = ACTIONS(1036), - [aux_sym_cmd_identifier_token22] = ACTIONS(1036), - [aux_sym_cmd_identifier_token23] = ACTIONS(1036), - [aux_sym_cmd_identifier_token24] = ACTIONS(1036), - [aux_sym_cmd_identifier_token25] = ACTIONS(1036), - [aux_sym_cmd_identifier_token26] = ACTIONS(1036), - [aux_sym_cmd_identifier_token27] = ACTIONS(1036), - [aux_sym_cmd_identifier_token28] = ACTIONS(1036), - [aux_sym_cmd_identifier_token29] = ACTIONS(1036), - [aux_sym_cmd_identifier_token30] = ACTIONS(1036), - [aux_sym_cmd_identifier_token31] = ACTIONS(1036), - [aux_sym_cmd_identifier_token32] = ACTIONS(1036), - [aux_sym_cmd_identifier_token33] = ACTIONS(1036), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1036), - [aux_sym_cmd_identifier_token36] = ACTIONS(1036), - [aux_sym_cmd_identifier_token37] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1977), + [anon_sym_alias] = ACTIONS(1977), + [anon_sym_let] = ACTIONS(1977), + [anon_sym_let_DASHenv] = ACTIONS(1977), + [anon_sym_mut] = ACTIONS(1977), + [anon_sym_const] = ACTIONS(1977), + [aux_sym_cmd_identifier_token1] = ACTIONS(1977), + [aux_sym_cmd_identifier_token2] = ACTIONS(1979), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [aux_sym_cmd_identifier_token6] = ACTIONS(1979), + [aux_sym_cmd_identifier_token7] = ACTIONS(1979), + [aux_sym_cmd_identifier_token8] = ACTIONS(1977), + [aux_sym_cmd_identifier_token9] = ACTIONS(1977), + [aux_sym_cmd_identifier_token10] = ACTIONS(1979), + [aux_sym_cmd_identifier_token11] = ACTIONS(1979), + [aux_sym_cmd_identifier_token12] = ACTIONS(1977), + [aux_sym_cmd_identifier_token13] = ACTIONS(1977), + [aux_sym_cmd_identifier_token14] = ACTIONS(1977), + [aux_sym_cmd_identifier_token15] = ACTIONS(1977), + [aux_sym_cmd_identifier_token16] = ACTIONS(1979), + [aux_sym_cmd_identifier_token17] = ACTIONS(1979), + [aux_sym_cmd_identifier_token18] = ACTIONS(1979), + [aux_sym_cmd_identifier_token19] = ACTIONS(1979), + [aux_sym_cmd_identifier_token20] = ACTIONS(1979), + [aux_sym_cmd_identifier_token21] = ACTIONS(1979), + [aux_sym_cmd_identifier_token22] = ACTIONS(1979), + [aux_sym_cmd_identifier_token23] = ACTIONS(1979), + [aux_sym_cmd_identifier_token24] = ACTIONS(1979), + [aux_sym_cmd_identifier_token25] = ACTIONS(1979), + [aux_sym_cmd_identifier_token26] = ACTIONS(1979), + [aux_sym_cmd_identifier_token27] = ACTIONS(1979), + [aux_sym_cmd_identifier_token28] = ACTIONS(1979), + [aux_sym_cmd_identifier_token29] = ACTIONS(1979), + [aux_sym_cmd_identifier_token30] = ACTIONS(1979), + [aux_sym_cmd_identifier_token31] = ACTIONS(1979), + [aux_sym_cmd_identifier_token32] = ACTIONS(1979), + [aux_sym_cmd_identifier_token33] = ACTIONS(1979), + [aux_sym_cmd_identifier_token34] = ACTIONS(1977), + [aux_sym_cmd_identifier_token35] = ACTIONS(1979), + [aux_sym_cmd_identifier_token36] = ACTIONS(1979), + [aux_sym_cmd_identifier_token37] = ACTIONS(1979), + [aux_sym_cmd_identifier_token38] = ACTIONS(1977), + [aux_sym_cmd_identifier_token39] = ACTIONS(1979), + [aux_sym_cmd_identifier_token40] = ACTIONS(1979), + [anon_sym_def] = ACTIONS(1977), + [anon_sym_export_DASHenv] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_module] = ACTIONS(1977), + [anon_sym_use] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1979), + [anon_sym_error] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_in2] = ACTIONS(1977), + [anon_sym_loop] = ACTIONS(1977), + [anon_sym_make] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_match] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_source] = ACTIONS(1977), + [anon_sym_source_DASHenv] = ACTIONS(1977), + [anon_sym_register] = ACTIONS(1977), + [anon_sym_hide] = ACTIONS(1977), + [anon_sym_hide_DASHenv] = ACTIONS(1977), + [anon_sym_overlay] = ACTIONS(1977), + [anon_sym_as] = ACTIONS(1977), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1977), + [aux_sym__val_number_token5] = ACTIONS(1977), + [aux_sym__val_number_token6] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1979), }, [763] = { [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_alias] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_let_DASHenv] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [aux_sym_cmd_identifier_token1] = ACTIONS(2419), - [aux_sym_cmd_identifier_token2] = ACTIONS(2421), - [aux_sym_cmd_identifier_token3] = ACTIONS(2421), - [aux_sym_cmd_identifier_token4] = ACTIONS(2421), - [aux_sym_cmd_identifier_token5] = ACTIONS(2421), - [aux_sym_cmd_identifier_token6] = ACTIONS(2421), - [aux_sym_cmd_identifier_token7] = ACTIONS(2421), - [aux_sym_cmd_identifier_token8] = ACTIONS(2419), - [aux_sym_cmd_identifier_token9] = ACTIONS(2419), - [aux_sym_cmd_identifier_token10] = ACTIONS(2421), - [aux_sym_cmd_identifier_token11] = ACTIONS(2421), - [aux_sym_cmd_identifier_token12] = ACTIONS(2419), - [aux_sym_cmd_identifier_token13] = ACTIONS(2419), - [aux_sym_cmd_identifier_token14] = ACTIONS(2419), - [aux_sym_cmd_identifier_token15] = ACTIONS(2419), - [aux_sym_cmd_identifier_token16] = ACTIONS(2421), - [aux_sym_cmd_identifier_token17] = ACTIONS(2421), - [aux_sym_cmd_identifier_token18] = ACTIONS(2421), - [aux_sym_cmd_identifier_token19] = ACTIONS(2421), - [aux_sym_cmd_identifier_token20] = ACTIONS(2421), - [aux_sym_cmd_identifier_token21] = ACTIONS(2421), - [aux_sym_cmd_identifier_token22] = ACTIONS(2421), - [aux_sym_cmd_identifier_token23] = ACTIONS(2421), - [aux_sym_cmd_identifier_token24] = ACTIONS(2421), - [aux_sym_cmd_identifier_token25] = ACTIONS(2421), - [aux_sym_cmd_identifier_token26] = ACTIONS(2421), - [aux_sym_cmd_identifier_token27] = ACTIONS(2421), - [aux_sym_cmd_identifier_token28] = ACTIONS(2421), - [aux_sym_cmd_identifier_token29] = ACTIONS(2421), - [aux_sym_cmd_identifier_token30] = ACTIONS(2421), - [aux_sym_cmd_identifier_token31] = ACTIONS(2421), - [aux_sym_cmd_identifier_token32] = ACTIONS(2421), - [aux_sym_cmd_identifier_token33] = ACTIONS(2421), - [aux_sym_cmd_identifier_token34] = ACTIONS(2419), - [aux_sym_cmd_identifier_token35] = ACTIONS(2421), - [aux_sym_cmd_identifier_token36] = ACTIONS(2421), - [aux_sym_cmd_identifier_token37] = ACTIONS(2421), - [aux_sym_cmd_identifier_token38] = ACTIONS(2419), - [aux_sym_cmd_identifier_token39] = ACTIONS(2421), - [aux_sym_cmd_identifier_token40] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2419), - [anon_sym_export_DASHenv] = ACTIONS(2419), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_error] = ACTIONS(2419), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_in2] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_make] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_do] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_else] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_catch] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_source] = ACTIONS(2419), - [anon_sym_source_DASHenv] = ACTIONS(2419), - [anon_sym_register] = ACTIONS(2419), - [anon_sym_hide] = ACTIONS(2419), - [anon_sym_hide_DASHenv] = ACTIONS(2419), - [anon_sym_overlay] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), - [aux_sym__val_number_decimal_token1] = ACTIONS(2419), - [aux_sym__val_number_decimal_token2] = ACTIONS(2421), - [aux_sym__val_number_decimal_token3] = ACTIONS(2421), - [aux_sym__val_number_decimal_token4] = ACTIONS(2421), - [aux_sym__val_number_token1] = ACTIONS(2421), - [aux_sym__val_number_token2] = ACTIONS(2421), - [aux_sym__val_number_token3] = ACTIONS(2421), - [aux_sym__val_number_token4] = ACTIONS(2419), - [aux_sym__val_number_token5] = ACTIONS(2419), - [aux_sym__val_number_token6] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2421), - [sym__str_single_quotes] = ACTIONS(2421), - [sym__str_back_ticks] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2421), + [anon_sym_export] = ACTIONS(2374), + [anon_sym_alias] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_let_DASHenv] = ACTIONS(2374), + [anon_sym_mut] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [aux_sym_cmd_identifier_token1] = ACTIONS(2374), + [aux_sym_cmd_identifier_token2] = ACTIONS(2376), + [aux_sym_cmd_identifier_token3] = ACTIONS(2376), + [aux_sym_cmd_identifier_token4] = ACTIONS(2376), + [aux_sym_cmd_identifier_token5] = ACTIONS(2376), + [aux_sym_cmd_identifier_token6] = ACTIONS(2376), + [aux_sym_cmd_identifier_token7] = ACTIONS(2376), + [aux_sym_cmd_identifier_token8] = ACTIONS(2374), + [aux_sym_cmd_identifier_token9] = ACTIONS(2374), + [aux_sym_cmd_identifier_token10] = ACTIONS(2376), + [aux_sym_cmd_identifier_token11] = ACTIONS(2376), + [aux_sym_cmd_identifier_token12] = ACTIONS(2374), + [aux_sym_cmd_identifier_token13] = ACTIONS(2374), + [aux_sym_cmd_identifier_token14] = ACTIONS(2374), + [aux_sym_cmd_identifier_token15] = ACTIONS(2374), + [aux_sym_cmd_identifier_token16] = ACTIONS(2376), + [aux_sym_cmd_identifier_token17] = ACTIONS(2376), + [aux_sym_cmd_identifier_token18] = ACTIONS(2376), + [aux_sym_cmd_identifier_token19] = ACTIONS(2376), + [aux_sym_cmd_identifier_token20] = ACTIONS(2376), + [aux_sym_cmd_identifier_token21] = ACTIONS(2376), + [aux_sym_cmd_identifier_token22] = ACTIONS(2376), + [aux_sym_cmd_identifier_token23] = ACTIONS(2376), + [aux_sym_cmd_identifier_token24] = ACTIONS(2376), + [aux_sym_cmd_identifier_token25] = ACTIONS(2376), + [aux_sym_cmd_identifier_token26] = ACTIONS(2376), + [aux_sym_cmd_identifier_token27] = ACTIONS(2376), + [aux_sym_cmd_identifier_token28] = ACTIONS(2376), + [aux_sym_cmd_identifier_token29] = ACTIONS(2376), + [aux_sym_cmd_identifier_token30] = ACTIONS(2376), + [aux_sym_cmd_identifier_token31] = ACTIONS(2376), + [aux_sym_cmd_identifier_token32] = ACTIONS(2376), + [aux_sym_cmd_identifier_token33] = ACTIONS(2376), + [aux_sym_cmd_identifier_token34] = ACTIONS(2374), + [aux_sym_cmd_identifier_token35] = ACTIONS(2376), + [aux_sym_cmd_identifier_token36] = ACTIONS(2376), + [aux_sym_cmd_identifier_token37] = ACTIONS(2376), + [aux_sym_cmd_identifier_token38] = ACTIONS(2374), + [aux_sym_cmd_identifier_token39] = ACTIONS(2376), + [aux_sym_cmd_identifier_token40] = ACTIONS(2376), + [anon_sym_def] = ACTIONS(2374), + [anon_sym_export_DASHenv] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_module] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(2376), + [anon_sym_error] = ACTIONS(2374), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_in2] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_make] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_do] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2374), + [anon_sym_catch] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_source] = ACTIONS(2374), + [anon_sym_source_DASHenv] = ACTIONS(2374), + [anon_sym_register] = ACTIONS(2374), + [anon_sym_hide] = ACTIONS(2374), + [anon_sym_hide_DASHenv] = ACTIONS(2374), + [anon_sym_overlay] = ACTIONS(2374), + [anon_sym_as] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), + [aux_sym__val_number_decimal_token1] = ACTIONS(2374), + [aux_sym__val_number_decimal_token2] = ACTIONS(2376), + [aux_sym__val_number_decimal_token3] = ACTIONS(2376), + [aux_sym__val_number_decimal_token4] = ACTIONS(2376), + [aux_sym__val_number_token1] = ACTIONS(2376), + [aux_sym__val_number_token2] = ACTIONS(2376), + [aux_sym__val_number_token3] = ACTIONS(2376), + [aux_sym__val_number_token4] = ACTIONS(2374), + [aux_sym__val_number_token5] = ACTIONS(2374), + [aux_sym__val_number_token6] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2376), + [sym__str_single_quotes] = ACTIONS(2376), + [sym__str_back_ticks] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2376), }, [764] = { [sym_comment] = STATE(764), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [aux_sym_cmd_identifier_token1] = ACTIONS(2378), + [aux_sym_cmd_identifier_token2] = ACTIONS(2380), + [aux_sym_cmd_identifier_token3] = ACTIONS(2380), + [aux_sym_cmd_identifier_token4] = ACTIONS(2380), + [aux_sym_cmd_identifier_token5] = ACTIONS(2380), + [aux_sym_cmd_identifier_token6] = ACTIONS(2380), + [aux_sym_cmd_identifier_token7] = ACTIONS(2380), + [aux_sym_cmd_identifier_token8] = ACTIONS(2378), + [aux_sym_cmd_identifier_token9] = ACTIONS(2378), + [aux_sym_cmd_identifier_token10] = ACTIONS(2380), + [aux_sym_cmd_identifier_token11] = ACTIONS(2380), + [aux_sym_cmd_identifier_token12] = ACTIONS(2378), + [aux_sym_cmd_identifier_token13] = ACTIONS(2378), + [aux_sym_cmd_identifier_token14] = ACTIONS(2378), + [aux_sym_cmd_identifier_token15] = ACTIONS(2378), + [aux_sym_cmd_identifier_token16] = ACTIONS(2380), + [aux_sym_cmd_identifier_token17] = ACTIONS(2380), + [aux_sym_cmd_identifier_token18] = ACTIONS(2380), + [aux_sym_cmd_identifier_token19] = ACTIONS(2380), + [aux_sym_cmd_identifier_token20] = ACTIONS(2380), + [aux_sym_cmd_identifier_token21] = ACTIONS(2380), + [aux_sym_cmd_identifier_token22] = ACTIONS(2380), + [aux_sym_cmd_identifier_token23] = ACTIONS(2380), + [aux_sym_cmd_identifier_token24] = ACTIONS(2380), + [aux_sym_cmd_identifier_token25] = ACTIONS(2380), + [aux_sym_cmd_identifier_token26] = ACTIONS(2380), + [aux_sym_cmd_identifier_token27] = ACTIONS(2380), + [aux_sym_cmd_identifier_token28] = ACTIONS(2380), + [aux_sym_cmd_identifier_token29] = ACTIONS(2380), + [aux_sym_cmd_identifier_token30] = ACTIONS(2380), + [aux_sym_cmd_identifier_token31] = ACTIONS(2380), + [aux_sym_cmd_identifier_token32] = ACTIONS(2380), + [aux_sym_cmd_identifier_token33] = ACTIONS(2380), + [aux_sym_cmd_identifier_token34] = ACTIONS(2378), + [aux_sym_cmd_identifier_token35] = ACTIONS(2380), + [aux_sym_cmd_identifier_token36] = ACTIONS(2380), + [aux_sym_cmd_identifier_token37] = ACTIONS(2380), + [aux_sym_cmd_identifier_token38] = ACTIONS(2378), + [aux_sym_cmd_identifier_token39] = ACTIONS(2380), + [aux_sym_cmd_identifier_token40] = ACTIONS(2380), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(2380), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_DASH2] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_in2] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_make] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_catch] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_register] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_PLUS2] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_decimal_token2] = ACTIONS(2380), + [aux_sym__val_number_decimal_token3] = ACTIONS(2380), + [aux_sym__val_number_decimal_token4] = ACTIONS(2380), + [aux_sym__val_number_token1] = ACTIONS(2380), + [aux_sym__val_number_token2] = ACTIONS(2380), + [aux_sym__val_number_token3] = ACTIONS(2380), + [aux_sym__val_number_token4] = ACTIONS(2378), + [aux_sym__val_number_token5] = ACTIONS(2378), + [aux_sym__val_number_token6] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2380), + [sym__str_single_quotes] = ACTIONS(2380), + [sym__str_back_ticks] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2380), }, [765] = { [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(2496), - [anon_sym_alias] = ACTIONS(2496), - [anon_sym_let] = ACTIONS(2496), - [anon_sym_let_DASHenv] = ACTIONS(2496), - [anon_sym_mut] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [aux_sym_cmd_identifier_token1] = ACTIONS(2496), - [aux_sym_cmd_identifier_token2] = ACTIONS(2498), - [aux_sym_cmd_identifier_token3] = ACTIONS(2498), - [aux_sym_cmd_identifier_token4] = ACTIONS(2498), - [aux_sym_cmd_identifier_token5] = ACTIONS(2498), - [aux_sym_cmd_identifier_token6] = ACTIONS(2498), - [aux_sym_cmd_identifier_token7] = ACTIONS(2498), - [aux_sym_cmd_identifier_token8] = ACTIONS(2496), - [aux_sym_cmd_identifier_token9] = ACTIONS(2496), - [aux_sym_cmd_identifier_token10] = ACTIONS(2498), - [aux_sym_cmd_identifier_token11] = ACTIONS(2498), - [aux_sym_cmd_identifier_token12] = ACTIONS(2496), - [aux_sym_cmd_identifier_token13] = ACTIONS(2496), - [aux_sym_cmd_identifier_token14] = ACTIONS(2496), - [aux_sym_cmd_identifier_token15] = ACTIONS(2496), - [aux_sym_cmd_identifier_token16] = ACTIONS(2498), - [aux_sym_cmd_identifier_token17] = ACTIONS(2498), - [aux_sym_cmd_identifier_token18] = ACTIONS(2498), - [aux_sym_cmd_identifier_token19] = ACTIONS(2498), - [aux_sym_cmd_identifier_token20] = ACTIONS(2498), - [aux_sym_cmd_identifier_token21] = ACTIONS(2498), - [aux_sym_cmd_identifier_token22] = ACTIONS(2498), - [aux_sym_cmd_identifier_token23] = ACTIONS(2498), - [aux_sym_cmd_identifier_token24] = ACTIONS(2498), - [aux_sym_cmd_identifier_token25] = ACTIONS(2498), - [aux_sym_cmd_identifier_token26] = ACTIONS(2498), - [aux_sym_cmd_identifier_token27] = ACTIONS(2498), - [aux_sym_cmd_identifier_token28] = ACTIONS(2498), - [aux_sym_cmd_identifier_token29] = ACTIONS(2498), - [aux_sym_cmd_identifier_token30] = ACTIONS(2498), - [aux_sym_cmd_identifier_token31] = ACTIONS(2498), - [aux_sym_cmd_identifier_token32] = ACTIONS(2498), - [aux_sym_cmd_identifier_token33] = ACTIONS(2498), - [aux_sym_cmd_identifier_token34] = ACTIONS(2496), - [aux_sym_cmd_identifier_token35] = ACTIONS(2498), - [aux_sym_cmd_identifier_token36] = ACTIONS(2498), - [aux_sym_cmd_identifier_token37] = ACTIONS(2498), - [aux_sym_cmd_identifier_token38] = ACTIONS(2496), - [aux_sym_cmd_identifier_token39] = ACTIONS(2498), - [aux_sym_cmd_identifier_token40] = ACTIONS(2498), - [anon_sym_def] = ACTIONS(2496), - [anon_sym_export_DASHenv] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym_module] = ACTIONS(2496), - [anon_sym_use] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_DOLLAR] = ACTIONS(2498), - [anon_sym_error] = ACTIONS(2496), - [anon_sym_DASH2] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_in2] = ACTIONS(2496), - [anon_sym_loop] = ACTIONS(2496), - [anon_sym_make] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_match] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_catch] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_source] = ACTIONS(2496), - [anon_sym_source_DASHenv] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_hide] = ACTIONS(2496), - [anon_sym_hide_DASHenv] = ACTIONS(2496), - [anon_sym_overlay] = ACTIONS(2496), - [anon_sym_as] = ACTIONS(2496), - [anon_sym_PLUS2] = ACTIONS(2496), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), - [aux_sym__val_number_decimal_token1] = ACTIONS(2496), - [aux_sym__val_number_decimal_token2] = ACTIONS(2498), - [aux_sym__val_number_decimal_token3] = ACTIONS(2498), - [aux_sym__val_number_decimal_token4] = ACTIONS(2498), - [aux_sym__val_number_token1] = ACTIONS(2498), - [aux_sym__val_number_token2] = ACTIONS(2498), - [aux_sym__val_number_token3] = ACTIONS(2498), - [aux_sym__val_number_token4] = ACTIONS(2496), - [aux_sym__val_number_token5] = ACTIONS(2496), - [aux_sym__val_number_token6] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym__str_single_quotes] = ACTIONS(2498), - [sym__str_back_ticks] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(1937), + [anon_sym_alias] = ACTIONS(1937), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_let_DASHenv] = ACTIONS(1937), + [anon_sym_mut] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [aux_sym_cmd_identifier_token1] = ACTIONS(1937), + [aux_sym_cmd_identifier_token2] = ACTIONS(1939), + [aux_sym_cmd_identifier_token3] = ACTIONS(1939), + [aux_sym_cmd_identifier_token4] = ACTIONS(1939), + [aux_sym_cmd_identifier_token5] = ACTIONS(1939), + [aux_sym_cmd_identifier_token6] = ACTIONS(1939), + [aux_sym_cmd_identifier_token7] = ACTIONS(1939), + [aux_sym_cmd_identifier_token8] = ACTIONS(1937), + [aux_sym_cmd_identifier_token9] = ACTIONS(1937), + [aux_sym_cmd_identifier_token10] = ACTIONS(1939), + [aux_sym_cmd_identifier_token11] = ACTIONS(1939), + [aux_sym_cmd_identifier_token12] = ACTIONS(1937), + [aux_sym_cmd_identifier_token13] = ACTIONS(1937), + [aux_sym_cmd_identifier_token14] = ACTIONS(1937), + [aux_sym_cmd_identifier_token15] = ACTIONS(1937), + [aux_sym_cmd_identifier_token16] = ACTIONS(1939), + [aux_sym_cmd_identifier_token17] = ACTIONS(1939), + [aux_sym_cmd_identifier_token18] = ACTIONS(1939), + [aux_sym_cmd_identifier_token19] = ACTIONS(1939), + [aux_sym_cmd_identifier_token20] = ACTIONS(1939), + [aux_sym_cmd_identifier_token21] = ACTIONS(1939), + [aux_sym_cmd_identifier_token22] = ACTIONS(1939), + [aux_sym_cmd_identifier_token23] = ACTIONS(1939), + [aux_sym_cmd_identifier_token24] = ACTIONS(1939), + [aux_sym_cmd_identifier_token25] = ACTIONS(1939), + [aux_sym_cmd_identifier_token26] = ACTIONS(1939), + [aux_sym_cmd_identifier_token27] = ACTIONS(1939), + [aux_sym_cmd_identifier_token28] = ACTIONS(1939), + [aux_sym_cmd_identifier_token29] = ACTIONS(1939), + [aux_sym_cmd_identifier_token30] = ACTIONS(1939), + [aux_sym_cmd_identifier_token31] = ACTIONS(1939), + [aux_sym_cmd_identifier_token32] = ACTIONS(1939), + [aux_sym_cmd_identifier_token33] = ACTIONS(1939), + [aux_sym_cmd_identifier_token34] = ACTIONS(1937), + [aux_sym_cmd_identifier_token35] = ACTIONS(1939), + [aux_sym_cmd_identifier_token36] = ACTIONS(1939), + [aux_sym_cmd_identifier_token37] = ACTIONS(1939), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1939), + [aux_sym_cmd_identifier_token40] = ACTIONS(1939), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_export_DASHenv] = ACTIONS(1937), + [anon_sym_extern] = ACTIONS(1937), + [anon_sym_module] = ACTIONS(1937), + [anon_sym_use] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1939), + [anon_sym_error] = ACTIONS(1937), + [anon_sym_DASH2] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_in2] = ACTIONS(1937), + [anon_sym_loop] = ACTIONS(1937), + [anon_sym_make] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_do] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_else] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_catch] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_source] = ACTIONS(1937), + [anon_sym_source_DASHenv] = ACTIONS(1937), + [anon_sym_register] = ACTIONS(1937), + [anon_sym_hide] = ACTIONS(1937), + [anon_sym_hide_DASHenv] = ACTIONS(1937), + [anon_sym_overlay] = ACTIONS(1937), + [anon_sym_as] = ACTIONS(1937), + [anon_sym_PLUS2] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), + [aux_sym__val_number_decimal_token1] = ACTIONS(1937), + [aux_sym__val_number_decimal_token2] = ACTIONS(1939), + [aux_sym__val_number_decimal_token3] = ACTIONS(1939), + [aux_sym__val_number_decimal_token4] = ACTIONS(1939), + [aux_sym__val_number_token1] = ACTIONS(1939), + [aux_sym__val_number_token2] = ACTIONS(1939), + [aux_sym__val_number_token3] = ACTIONS(1939), + [aux_sym__val_number_token4] = ACTIONS(1937), + [aux_sym__val_number_token5] = ACTIONS(1937), + [aux_sym__val_number_token6] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1939), + [sym__str_single_quotes] = ACTIONS(1939), + [sym__str_back_ticks] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1939), }, [766] = { [sym_comment] = STATE(766), - [anon_sym_export] = ACTIONS(2363), - [anon_sym_alias] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_let_DASHenv] = ACTIONS(2363), - [anon_sym_mut] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [aux_sym_cmd_identifier_token2] = ACTIONS(2365), - [aux_sym_cmd_identifier_token3] = ACTIONS(2365), - [aux_sym_cmd_identifier_token4] = ACTIONS(2365), - [aux_sym_cmd_identifier_token5] = ACTIONS(2365), - [aux_sym_cmd_identifier_token6] = ACTIONS(2365), - [aux_sym_cmd_identifier_token7] = ACTIONS(2365), - [aux_sym_cmd_identifier_token8] = ACTIONS(2363), - [aux_sym_cmd_identifier_token9] = ACTIONS(2363), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2363), - [aux_sym_cmd_identifier_token13] = ACTIONS(2363), - [aux_sym_cmd_identifier_token14] = ACTIONS(2363), - [aux_sym_cmd_identifier_token15] = ACTIONS(2363), - [aux_sym_cmd_identifier_token16] = ACTIONS(2365), - [aux_sym_cmd_identifier_token17] = ACTIONS(2365), - [aux_sym_cmd_identifier_token18] = ACTIONS(2365), - [aux_sym_cmd_identifier_token19] = ACTIONS(2365), - [aux_sym_cmd_identifier_token20] = ACTIONS(2365), - [aux_sym_cmd_identifier_token21] = ACTIONS(2365), - [aux_sym_cmd_identifier_token22] = ACTIONS(2365), - [aux_sym_cmd_identifier_token23] = ACTIONS(2365), - [aux_sym_cmd_identifier_token24] = ACTIONS(2365), - [aux_sym_cmd_identifier_token25] = ACTIONS(2365), - [aux_sym_cmd_identifier_token26] = ACTIONS(2365), - [aux_sym_cmd_identifier_token27] = ACTIONS(2365), - [aux_sym_cmd_identifier_token28] = ACTIONS(2365), - [aux_sym_cmd_identifier_token29] = ACTIONS(2365), - [aux_sym_cmd_identifier_token30] = ACTIONS(2365), - [aux_sym_cmd_identifier_token31] = ACTIONS(2365), - [aux_sym_cmd_identifier_token32] = ACTIONS(2365), - [aux_sym_cmd_identifier_token33] = ACTIONS(2365), - [aux_sym_cmd_identifier_token34] = ACTIONS(2363), - [aux_sym_cmd_identifier_token35] = ACTIONS(2365), - [aux_sym_cmd_identifier_token36] = ACTIONS(2365), - [aux_sym_cmd_identifier_token37] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2363), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_export_DASHenv] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_module] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2363), - [anon_sym_DASH2] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_in2] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_make] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_do] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_catch] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_source] = ACTIONS(2363), - [anon_sym_source_DASHenv] = ACTIONS(2363), - [anon_sym_register] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_hide_DASHenv] = ACTIONS(2363), - [anon_sym_overlay] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_PLUS2] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2363), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_decimal_token4] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [aux_sym__val_number_token4] = ACTIONS(2363), - [aux_sym__val_number_token5] = ACTIONS(2363), - [aux_sym__val_number_token6] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2365), + [aux_sym_shebang_repeat1] = STATE(766), + [aux_sym_cmd_identifier_token1] = ACTIONS(1262), + [aux_sym_cmd_identifier_token2] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1264), + [aux_sym_cmd_identifier_token4] = ACTIONS(1264), + [aux_sym_cmd_identifier_token5] = ACTIONS(1264), + [aux_sym_cmd_identifier_token6] = ACTIONS(1264), + [aux_sym_cmd_identifier_token7] = ACTIONS(1264), + [aux_sym_cmd_identifier_token8] = ACTIONS(1264), + [aux_sym_cmd_identifier_token9] = ACTIONS(1262), + [aux_sym_cmd_identifier_token10] = ACTIONS(1264), + [aux_sym_cmd_identifier_token11] = ACTIONS(1264), + [aux_sym_cmd_identifier_token12] = ACTIONS(1264), + [aux_sym_cmd_identifier_token13] = ACTIONS(1262), + [aux_sym_cmd_identifier_token14] = ACTIONS(1264), + [aux_sym_cmd_identifier_token15] = ACTIONS(1262), + [aux_sym_cmd_identifier_token16] = ACTIONS(1264), + [aux_sym_cmd_identifier_token17] = ACTIONS(1264), + [aux_sym_cmd_identifier_token18] = ACTIONS(1262), + [aux_sym_cmd_identifier_token19] = ACTIONS(1264), + [aux_sym_cmd_identifier_token20] = ACTIONS(1264), + [aux_sym_cmd_identifier_token21] = ACTIONS(1264), + [aux_sym_cmd_identifier_token22] = ACTIONS(1264), + [aux_sym_cmd_identifier_token23] = ACTIONS(1264), + [aux_sym_cmd_identifier_token24] = ACTIONS(1264), + [aux_sym_cmd_identifier_token25] = ACTIONS(1264), + [aux_sym_cmd_identifier_token26] = ACTIONS(1264), + [aux_sym_cmd_identifier_token27] = ACTIONS(1264), + [aux_sym_cmd_identifier_token28] = ACTIONS(1264), + [aux_sym_cmd_identifier_token29] = ACTIONS(1264), + [aux_sym_cmd_identifier_token30] = ACTIONS(1264), + [aux_sym_cmd_identifier_token31] = ACTIONS(1264), + [aux_sym_cmd_identifier_token32] = ACTIONS(1262), + [aux_sym_cmd_identifier_token33] = ACTIONS(1264), + [aux_sym_cmd_identifier_token34] = ACTIONS(1262), + [aux_sym_cmd_identifier_token35] = ACTIONS(1264), + [aux_sym_cmd_identifier_token36] = ACTIONS(1264), + [aux_sym_cmd_identifier_token37] = ACTIONS(1264), + [aux_sym_cmd_identifier_token38] = ACTIONS(1262), + [aux_sym_cmd_identifier_token39] = ACTIONS(1264), + [aux_sym_cmd_identifier_token40] = ACTIONS(1264), + [sym__newline] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_err_GT_PIPE] = ACTIONS(1264), + [anon_sym_out_GT_PIPE] = ACTIONS(1264), + [anon_sym_e_GT_PIPE] = ACTIONS(1264), + [anon_sym_o_GT_PIPE] = ACTIONS(1264), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1264), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1264), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1264), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_where] = ACTIONS(1264), + [aux_sym_expr_unary_token1] = ACTIONS(1264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1264), + [anon_sym_DOT_DOT_LT] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [aux_sym__val_number_decimal_token1] = ACTIONS(1262), + [aux_sym__val_number_decimal_token2] = ACTIONS(1264), + [aux_sym__val_number_decimal_token3] = ACTIONS(1264), + [aux_sym__val_number_decimal_token4] = ACTIONS(1264), + [aux_sym__val_number_token1] = ACTIONS(1264), + [aux_sym__val_number_token2] = ACTIONS(1264), + [aux_sym__val_number_token3] = ACTIONS(1264), + [aux_sym__val_number_token4] = ACTIONS(1262), + [aux_sym__val_number_token5] = ACTIONS(1262), + [aux_sym__val_number_token6] = ACTIONS(1262), + [anon_sym_0b] = ACTIONS(1262), + [anon_sym_0o] = ACTIONS(1262), + [anon_sym_0x] = ACTIONS(1262), + [sym_val_date] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1264), + [aux_sym_env_var_token1] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1264), + [aux_sym_command_token1] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1264), }, [767] = { [sym_comment] = STATE(767), - [anon_sym_export] = ACTIONS(2508), - [anon_sym_alias] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_let_DASHenv] = ACTIONS(2508), - [anon_sym_mut] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [aux_sym_cmd_identifier_token1] = ACTIONS(2508), - [aux_sym_cmd_identifier_token2] = ACTIONS(2510), - [aux_sym_cmd_identifier_token3] = ACTIONS(2510), - [aux_sym_cmd_identifier_token4] = ACTIONS(2510), - [aux_sym_cmd_identifier_token5] = ACTIONS(2510), - [aux_sym_cmd_identifier_token6] = ACTIONS(2510), - [aux_sym_cmd_identifier_token7] = ACTIONS(2510), - [aux_sym_cmd_identifier_token8] = ACTIONS(2508), - [aux_sym_cmd_identifier_token9] = ACTIONS(2508), - [aux_sym_cmd_identifier_token10] = ACTIONS(2510), - [aux_sym_cmd_identifier_token11] = ACTIONS(2510), - [aux_sym_cmd_identifier_token12] = ACTIONS(2508), - [aux_sym_cmd_identifier_token13] = ACTIONS(2508), - [aux_sym_cmd_identifier_token14] = ACTIONS(2508), - [aux_sym_cmd_identifier_token15] = ACTIONS(2508), - [aux_sym_cmd_identifier_token16] = ACTIONS(2510), - [aux_sym_cmd_identifier_token17] = ACTIONS(2510), - [aux_sym_cmd_identifier_token18] = ACTIONS(2510), - [aux_sym_cmd_identifier_token19] = ACTIONS(2510), - [aux_sym_cmd_identifier_token20] = ACTIONS(2510), - [aux_sym_cmd_identifier_token21] = ACTIONS(2510), - [aux_sym_cmd_identifier_token22] = ACTIONS(2510), - [aux_sym_cmd_identifier_token23] = ACTIONS(2510), - [aux_sym_cmd_identifier_token24] = ACTIONS(2510), - [aux_sym_cmd_identifier_token25] = ACTIONS(2510), - [aux_sym_cmd_identifier_token26] = ACTIONS(2510), - [aux_sym_cmd_identifier_token27] = ACTIONS(2510), - [aux_sym_cmd_identifier_token28] = ACTIONS(2510), - [aux_sym_cmd_identifier_token29] = ACTIONS(2510), - [aux_sym_cmd_identifier_token30] = ACTIONS(2510), - [aux_sym_cmd_identifier_token31] = ACTIONS(2510), - [aux_sym_cmd_identifier_token32] = ACTIONS(2510), - [aux_sym_cmd_identifier_token33] = ACTIONS(2510), - [aux_sym_cmd_identifier_token34] = ACTIONS(2508), - [aux_sym_cmd_identifier_token35] = ACTIONS(2510), - [aux_sym_cmd_identifier_token36] = ACTIONS(2510), - [aux_sym_cmd_identifier_token37] = ACTIONS(2510), - [aux_sym_cmd_identifier_token38] = ACTIONS(2508), - [aux_sym_cmd_identifier_token39] = ACTIONS(2510), - [aux_sym_cmd_identifier_token40] = ACTIONS(2510), - [anon_sym_def] = ACTIONS(2508), - [anon_sym_export_DASHenv] = ACTIONS(2508), - [anon_sym_extern] = ACTIONS(2508), - [anon_sym_module] = ACTIONS(2508), - [anon_sym_use] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2510), - [anon_sym_DOLLAR] = ACTIONS(2510), - [anon_sym_error] = ACTIONS(2508), - [anon_sym_DASH2] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_in2] = ACTIONS(2508), - [anon_sym_loop] = ACTIONS(2508), - [anon_sym_make] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_match] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_catch] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_source] = ACTIONS(2508), - [anon_sym_source_DASHenv] = ACTIONS(2508), - [anon_sym_register] = ACTIONS(2508), - [anon_sym_hide] = ACTIONS(2508), - [anon_sym_hide_DASHenv] = ACTIONS(2508), - [anon_sym_overlay] = ACTIONS(2508), - [anon_sym_as] = ACTIONS(2508), - [anon_sym_PLUS2] = ACTIONS(2508), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), - [aux_sym__val_number_decimal_token1] = ACTIONS(2508), - [aux_sym__val_number_decimal_token2] = ACTIONS(2510), - [aux_sym__val_number_decimal_token3] = ACTIONS(2510), - [aux_sym__val_number_decimal_token4] = ACTIONS(2510), - [aux_sym__val_number_token1] = ACTIONS(2510), - [aux_sym__val_number_token2] = ACTIONS(2510), - [aux_sym__val_number_token3] = ACTIONS(2510), - [aux_sym__val_number_token4] = ACTIONS(2508), - [aux_sym__val_number_token5] = ACTIONS(2508), - [aux_sym__val_number_token6] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2510), - [sym__str_single_quotes] = ACTIONS(2510), - [sym__str_back_ticks] = ACTIONS(2510), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2510), + [aux_sym_shebang_repeat1] = STATE(766), + [aux_sym_cmd_identifier_token1] = ACTIONS(2540), + [aux_sym_cmd_identifier_token2] = ACTIONS(2542), + [aux_sym_cmd_identifier_token3] = ACTIONS(2542), + [aux_sym_cmd_identifier_token4] = ACTIONS(2542), + [aux_sym_cmd_identifier_token5] = ACTIONS(2542), + [aux_sym_cmd_identifier_token6] = ACTIONS(2542), + [aux_sym_cmd_identifier_token7] = ACTIONS(2542), + [aux_sym_cmd_identifier_token8] = ACTIONS(2542), + [aux_sym_cmd_identifier_token9] = ACTIONS(2540), + [aux_sym_cmd_identifier_token10] = ACTIONS(2542), + [aux_sym_cmd_identifier_token11] = ACTIONS(2542), + [aux_sym_cmd_identifier_token12] = ACTIONS(2542), + [aux_sym_cmd_identifier_token13] = ACTIONS(2540), + [aux_sym_cmd_identifier_token14] = ACTIONS(2542), + [aux_sym_cmd_identifier_token15] = ACTIONS(2540), + [aux_sym_cmd_identifier_token16] = ACTIONS(2542), + [aux_sym_cmd_identifier_token17] = ACTIONS(2542), + [aux_sym_cmd_identifier_token18] = ACTIONS(2540), + [aux_sym_cmd_identifier_token19] = ACTIONS(2542), + [aux_sym_cmd_identifier_token20] = ACTIONS(2542), + [aux_sym_cmd_identifier_token21] = ACTIONS(2542), + [aux_sym_cmd_identifier_token22] = ACTIONS(2542), + [aux_sym_cmd_identifier_token23] = ACTIONS(2542), + [aux_sym_cmd_identifier_token24] = ACTIONS(2542), + [aux_sym_cmd_identifier_token25] = ACTIONS(2542), + [aux_sym_cmd_identifier_token26] = ACTIONS(2542), + [aux_sym_cmd_identifier_token27] = ACTIONS(2542), + [aux_sym_cmd_identifier_token28] = ACTIONS(2542), + [aux_sym_cmd_identifier_token29] = ACTIONS(2542), + [aux_sym_cmd_identifier_token30] = ACTIONS(2542), + [aux_sym_cmd_identifier_token31] = ACTIONS(2542), + [aux_sym_cmd_identifier_token32] = ACTIONS(2540), + [aux_sym_cmd_identifier_token33] = ACTIONS(2542), + [aux_sym_cmd_identifier_token34] = ACTIONS(2540), + [aux_sym_cmd_identifier_token35] = ACTIONS(2542), + [aux_sym_cmd_identifier_token36] = ACTIONS(2542), + [aux_sym_cmd_identifier_token37] = ACTIONS(2542), + [aux_sym_cmd_identifier_token38] = ACTIONS(2540), + [aux_sym_cmd_identifier_token39] = ACTIONS(2542), + [aux_sym_cmd_identifier_token40] = ACTIONS(2542), + [sym__newline] = ACTIONS(2535), + [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_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_where] = ACTIONS(2542), + [aux_sym_expr_unary_token1] = ACTIONS(2542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2542), + [anon_sym_DOT_DOT_LT] = ACTIONS(2542), + [anon_sym_null] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [aux_sym__val_number_decimal_token1] = ACTIONS(2540), + [aux_sym__val_number_decimal_token2] = ACTIONS(2542), + [aux_sym__val_number_decimal_token3] = ACTIONS(2542), + [aux_sym__val_number_decimal_token4] = ACTIONS(2542), + [aux_sym__val_number_token1] = ACTIONS(2542), + [aux_sym__val_number_token2] = ACTIONS(2542), + [aux_sym__val_number_token3] = ACTIONS(2542), + [aux_sym__val_number_token4] = ACTIONS(2540), + [aux_sym__val_number_token5] = ACTIONS(2540), + [aux_sym__val_number_token6] = ACTIONS(2540), + [anon_sym_0b] = ACTIONS(2540), + [anon_sym_0o] = ACTIONS(2540), + [anon_sym_0x] = ACTIONS(2540), + [sym_val_date] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [sym__str_single_quotes] = ACTIONS(2542), + [sym__str_back_ticks] = ACTIONS(2542), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2542), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2542), + [aux_sym_env_var_token1] = ACTIONS(2540), + [anon_sym_CARET] = ACTIONS(2542), + [aux_sym_command_token1] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2542), }, [768] = { + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_rest] = STATE(7759), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2845), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(3094), + [sym__val_range] = STATE(7379), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(2878), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(2848), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2535), + [sym__val_number] = STATE(3105), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__raw_str] = STATE(3064), + [sym__str_double_quotes] = STATE(3064), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7124), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7499), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(3096), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(2889), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6909), [sym_comment] = STATE(768), - [anon_sym_export] = ACTIONS(1883), - [anon_sym_alias] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_let_DASHenv] = ACTIONS(1883), - [anon_sym_mut] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [aux_sym_cmd_identifier_token1] = ACTIONS(1883), - [aux_sym_cmd_identifier_token2] = ACTIONS(1885), - [aux_sym_cmd_identifier_token3] = ACTIONS(1885), - [aux_sym_cmd_identifier_token4] = ACTIONS(1885), - [aux_sym_cmd_identifier_token5] = ACTIONS(1885), - [aux_sym_cmd_identifier_token6] = ACTIONS(1885), - [aux_sym_cmd_identifier_token7] = ACTIONS(1885), - [aux_sym_cmd_identifier_token8] = ACTIONS(1883), - [aux_sym_cmd_identifier_token9] = ACTIONS(1883), - [aux_sym_cmd_identifier_token10] = ACTIONS(1885), - [aux_sym_cmd_identifier_token11] = ACTIONS(1885), - [aux_sym_cmd_identifier_token12] = ACTIONS(1883), - [aux_sym_cmd_identifier_token13] = ACTIONS(1883), - [aux_sym_cmd_identifier_token14] = ACTIONS(1883), - [aux_sym_cmd_identifier_token15] = ACTIONS(1883), - [aux_sym_cmd_identifier_token16] = ACTIONS(1885), - [aux_sym_cmd_identifier_token17] = ACTIONS(1885), - [aux_sym_cmd_identifier_token18] = ACTIONS(1885), - [aux_sym_cmd_identifier_token19] = ACTIONS(1885), - [aux_sym_cmd_identifier_token20] = ACTIONS(1885), - [aux_sym_cmd_identifier_token21] = ACTIONS(1885), - [aux_sym_cmd_identifier_token22] = ACTIONS(1885), - [aux_sym_cmd_identifier_token23] = ACTIONS(1885), - [aux_sym_cmd_identifier_token24] = ACTIONS(1885), - [aux_sym_cmd_identifier_token25] = ACTIONS(1885), - [aux_sym_cmd_identifier_token26] = ACTIONS(1885), - [aux_sym_cmd_identifier_token27] = ACTIONS(1885), - [aux_sym_cmd_identifier_token28] = ACTIONS(1885), - [aux_sym_cmd_identifier_token29] = ACTIONS(1885), - [aux_sym_cmd_identifier_token30] = ACTIONS(1885), - [aux_sym_cmd_identifier_token31] = ACTIONS(1885), - [aux_sym_cmd_identifier_token32] = ACTIONS(1885), - [aux_sym_cmd_identifier_token33] = ACTIONS(1885), - [aux_sym_cmd_identifier_token34] = ACTIONS(1883), - [aux_sym_cmd_identifier_token35] = ACTIONS(1885), - [aux_sym_cmd_identifier_token36] = ACTIONS(1885), - [aux_sym_cmd_identifier_token37] = ACTIONS(1885), - [aux_sym_cmd_identifier_token38] = ACTIONS(1883), - [aux_sym_cmd_identifier_token39] = ACTIONS(1885), - [aux_sym_cmd_identifier_token40] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_export_DASHenv] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_module] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1883), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_in2] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_make] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_do] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_else] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_catch] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_source] = ACTIONS(1883), - [anon_sym_source_DASHenv] = ACTIONS(1883), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_hide] = ACTIONS(1883), - [anon_sym_hide_DASHenv] = ACTIONS(1883), - [anon_sym_overlay] = ACTIONS(1883), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_PLUS2] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1883), - [aux_sym__val_number_token5] = ACTIONS(1883), - [aux_sym__val_number_token6] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1885), + [aux_sym_shebang_repeat1] = STATE(887), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym__match_pattern_list_repeat1] = STATE(1256), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2548), + [anon_sym_RBRACK] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_DOT_DOT] = ACTIONS(2560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [anon_sym_null] = ACTIONS(2564), + [anon_sym_true] = ACTIONS(2566), + [anon_sym_false] = ACTIONS(2566), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2568), + [aux_sym__val_number_decimal_token2] = ACTIONS(2570), + [aux_sym__val_number_decimal_token3] = ACTIONS(2572), + [aux_sym__val_number_decimal_token4] = ACTIONS(2574), + [aux_sym__val_number_token1] = ACTIONS(2576), + [aux_sym__val_number_token2] = ACTIONS(2576), + [aux_sym__val_number_token3] = ACTIONS(2576), + [aux_sym__val_number_token4] = ACTIONS(2578), + [aux_sym__val_number_token5] = ACTIONS(2578), + [aux_sym__val_number_token6] = ACTIONS(2578), + [anon_sym_0b] = ACTIONS(2580), + [anon_sym_0o] = ACTIONS(2582), + [anon_sym_0x] = ACTIONS(2582), + [sym_val_date] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(2586), + [sym__str_single_quotes] = ACTIONS(2588), + [sym__str_back_ticks] = ACTIONS(2588), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2600), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2602), }, [769] = { + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_rest] = STATE(7759), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2845), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(3094), + [sym__val_range] = STATE(7379), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(3096), + [sym_val_bool] = STATE(2878), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(2848), + [sym_val_number] = STATE(3096), + [sym__val_number_decimal] = STATE(2535), + [sym__val_number] = STATE(3105), + [sym_val_duration] = STATE(3096), + [sym_val_filesize] = STATE(3096), + [sym_val_binary] = STATE(3096), + [sym_val_string] = STATE(3096), + [sym__raw_str] = STATE(3064), + [sym__str_double_quotes] = STATE(3064), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7141), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7480), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(3096), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(2889), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6909), [sym_comment] = STATE(769), - [anon_sym_export] = ACTIONS(1891), - [anon_sym_alias] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_let_DASHenv] = ACTIONS(1891), - [anon_sym_mut] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [aux_sym_cmd_identifier_token1] = ACTIONS(1891), - [aux_sym_cmd_identifier_token2] = ACTIONS(1893), - [aux_sym_cmd_identifier_token3] = ACTIONS(1893), - [aux_sym_cmd_identifier_token4] = ACTIONS(1893), - [aux_sym_cmd_identifier_token5] = ACTIONS(1893), - [aux_sym_cmd_identifier_token6] = ACTIONS(1893), - [aux_sym_cmd_identifier_token7] = ACTIONS(1893), - [aux_sym_cmd_identifier_token8] = ACTIONS(1891), - [aux_sym_cmd_identifier_token9] = ACTIONS(1891), - [aux_sym_cmd_identifier_token10] = ACTIONS(1893), - [aux_sym_cmd_identifier_token11] = ACTIONS(1893), - [aux_sym_cmd_identifier_token12] = ACTIONS(1891), - [aux_sym_cmd_identifier_token13] = ACTIONS(1891), - [aux_sym_cmd_identifier_token14] = ACTIONS(1891), - [aux_sym_cmd_identifier_token15] = ACTIONS(1891), - [aux_sym_cmd_identifier_token16] = ACTIONS(1893), - [aux_sym_cmd_identifier_token17] = ACTIONS(1893), - [aux_sym_cmd_identifier_token18] = ACTIONS(1893), - [aux_sym_cmd_identifier_token19] = ACTIONS(1893), - [aux_sym_cmd_identifier_token20] = ACTIONS(1893), - [aux_sym_cmd_identifier_token21] = ACTIONS(1893), - [aux_sym_cmd_identifier_token22] = ACTIONS(1893), - [aux_sym_cmd_identifier_token23] = ACTIONS(1893), - [aux_sym_cmd_identifier_token24] = ACTIONS(1893), - [aux_sym_cmd_identifier_token25] = ACTIONS(1893), - [aux_sym_cmd_identifier_token26] = ACTIONS(1893), - [aux_sym_cmd_identifier_token27] = ACTIONS(1893), - [aux_sym_cmd_identifier_token28] = ACTIONS(1893), - [aux_sym_cmd_identifier_token29] = ACTIONS(1893), - [aux_sym_cmd_identifier_token30] = ACTIONS(1893), - [aux_sym_cmd_identifier_token31] = ACTIONS(1893), - [aux_sym_cmd_identifier_token32] = ACTIONS(1893), - [aux_sym_cmd_identifier_token33] = ACTIONS(1893), - [aux_sym_cmd_identifier_token34] = ACTIONS(1891), - [aux_sym_cmd_identifier_token35] = ACTIONS(1893), - [aux_sym_cmd_identifier_token36] = ACTIONS(1893), - [aux_sym_cmd_identifier_token37] = ACTIONS(1893), - [aux_sym_cmd_identifier_token38] = ACTIONS(1891), - [aux_sym_cmd_identifier_token39] = ACTIONS(1893), - [aux_sym_cmd_identifier_token40] = ACTIONS(1893), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_export_DASHenv] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_module] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_in2] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_make] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_catch] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_source] = ACTIONS(1891), - [anon_sym_source_DASHenv] = ACTIONS(1891), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_hide] = ACTIONS(1891), - [anon_sym_hide_DASHenv] = ACTIONS(1891), - [anon_sym_overlay] = ACTIONS(1891), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1891), - [aux_sym__val_number_token5] = ACTIONS(1891), - [aux_sym__val_number_token6] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1893), + [aux_sym_shebang_repeat1] = STATE(889), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym__match_pattern_list_repeat1] = STATE(1256), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2548), + [anon_sym_RBRACK] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2552), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_DOT_DOT] = ACTIONS(2560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2562), + [anon_sym_DOT_DOT_LT] = ACTIONS(2562), + [anon_sym_null] = ACTIONS(2564), + [anon_sym_true] = ACTIONS(2566), + [anon_sym_false] = ACTIONS(2566), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2568), + [aux_sym__val_number_decimal_token2] = ACTIONS(2570), + [aux_sym__val_number_decimal_token3] = ACTIONS(2572), + [aux_sym__val_number_decimal_token4] = ACTIONS(2574), + [aux_sym__val_number_token1] = ACTIONS(2576), + [aux_sym__val_number_token2] = ACTIONS(2576), + [aux_sym__val_number_token3] = ACTIONS(2576), + [aux_sym__val_number_token4] = ACTIONS(2578), + [aux_sym__val_number_token5] = ACTIONS(2578), + [aux_sym__val_number_token6] = ACTIONS(2578), + [anon_sym_0b] = ACTIONS(2580), + [anon_sym_0o] = ACTIONS(2582), + [anon_sym_0x] = ACTIONS(2582), + [sym_val_date] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(2586), + [sym__str_single_quotes] = ACTIONS(2588), + [sym__str_back_ticks] = ACTIONS(2588), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2600), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2602), }, [770] = { [sym_comment] = STATE(770), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_alias] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_let_DASHenv] = ACTIONS(1895), - [anon_sym_mut] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [aux_sym_cmd_identifier_token1] = ACTIONS(1895), - [aux_sym_cmd_identifier_token2] = ACTIONS(1897), - [aux_sym_cmd_identifier_token3] = ACTIONS(1897), - [aux_sym_cmd_identifier_token4] = ACTIONS(1897), - [aux_sym_cmd_identifier_token5] = ACTIONS(1897), - [aux_sym_cmd_identifier_token6] = ACTIONS(1897), - [aux_sym_cmd_identifier_token7] = ACTIONS(1897), - [aux_sym_cmd_identifier_token8] = ACTIONS(1895), - [aux_sym_cmd_identifier_token9] = ACTIONS(1895), - [aux_sym_cmd_identifier_token10] = ACTIONS(1897), - [aux_sym_cmd_identifier_token11] = ACTIONS(1897), - [aux_sym_cmd_identifier_token12] = ACTIONS(1895), - [aux_sym_cmd_identifier_token13] = ACTIONS(1895), - [aux_sym_cmd_identifier_token14] = ACTIONS(1895), - [aux_sym_cmd_identifier_token15] = ACTIONS(1895), - [aux_sym_cmd_identifier_token16] = ACTIONS(1897), - [aux_sym_cmd_identifier_token17] = ACTIONS(1897), - [aux_sym_cmd_identifier_token18] = ACTIONS(1897), - [aux_sym_cmd_identifier_token19] = ACTIONS(1897), - [aux_sym_cmd_identifier_token20] = ACTIONS(1897), - [aux_sym_cmd_identifier_token21] = ACTIONS(1897), - [aux_sym_cmd_identifier_token22] = ACTIONS(1897), - [aux_sym_cmd_identifier_token23] = ACTIONS(1897), - [aux_sym_cmd_identifier_token24] = ACTIONS(1897), - [aux_sym_cmd_identifier_token25] = ACTIONS(1897), - [aux_sym_cmd_identifier_token26] = ACTIONS(1897), - [aux_sym_cmd_identifier_token27] = ACTIONS(1897), - [aux_sym_cmd_identifier_token28] = ACTIONS(1897), - [aux_sym_cmd_identifier_token29] = ACTIONS(1897), - [aux_sym_cmd_identifier_token30] = ACTIONS(1897), - [aux_sym_cmd_identifier_token31] = ACTIONS(1897), - [aux_sym_cmd_identifier_token32] = ACTIONS(1897), - [aux_sym_cmd_identifier_token33] = ACTIONS(1897), - [aux_sym_cmd_identifier_token34] = ACTIONS(1895), - [aux_sym_cmd_identifier_token35] = ACTIONS(1897), - [aux_sym_cmd_identifier_token36] = ACTIONS(1897), - [aux_sym_cmd_identifier_token37] = ACTIONS(1897), - [aux_sym_cmd_identifier_token38] = ACTIONS(1895), - [aux_sym_cmd_identifier_token39] = ACTIONS(1897), - [aux_sym_cmd_identifier_token40] = ACTIONS(1897), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_export_DASHenv] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_in2] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_make] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_catch] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_source] = ACTIONS(1895), - [anon_sym_source_DASHenv] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_hide] = ACTIONS(1895), - [anon_sym_hide_DASHenv] = ACTIONS(1895), - [anon_sym_overlay] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1895), - [aux_sym__val_number_token5] = ACTIONS(1895), - [aux_sym__val_number_token6] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(2606), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2608), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_COLON2] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [771] = { [sym_comment] = STATE(771), - [anon_sym_export] = ACTIONS(2367), - [anon_sym_alias] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_let_DASHenv] = ACTIONS(2367), - [anon_sym_mut] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [aux_sym_cmd_identifier_token1] = ACTIONS(2367), - [aux_sym_cmd_identifier_token2] = ACTIONS(2369), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [aux_sym_cmd_identifier_token6] = ACTIONS(2369), - [aux_sym_cmd_identifier_token7] = ACTIONS(2369), - [aux_sym_cmd_identifier_token8] = ACTIONS(2367), - [aux_sym_cmd_identifier_token9] = ACTIONS(2367), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2367), - [aux_sym_cmd_identifier_token13] = ACTIONS(2367), - [aux_sym_cmd_identifier_token14] = ACTIONS(2367), - [aux_sym_cmd_identifier_token15] = ACTIONS(2367), - [aux_sym_cmd_identifier_token16] = ACTIONS(2369), - [aux_sym_cmd_identifier_token17] = ACTIONS(2369), - [aux_sym_cmd_identifier_token18] = ACTIONS(2369), - [aux_sym_cmd_identifier_token19] = ACTIONS(2369), - [aux_sym_cmd_identifier_token20] = ACTIONS(2369), - [aux_sym_cmd_identifier_token21] = ACTIONS(2369), - [aux_sym_cmd_identifier_token22] = ACTIONS(2369), - [aux_sym_cmd_identifier_token23] = ACTIONS(2369), - [aux_sym_cmd_identifier_token24] = ACTIONS(2369), - [aux_sym_cmd_identifier_token25] = ACTIONS(2369), - [aux_sym_cmd_identifier_token26] = ACTIONS(2369), - [aux_sym_cmd_identifier_token27] = ACTIONS(2369), - [aux_sym_cmd_identifier_token28] = ACTIONS(2369), - [aux_sym_cmd_identifier_token29] = ACTIONS(2369), - [aux_sym_cmd_identifier_token30] = ACTIONS(2369), - [aux_sym_cmd_identifier_token31] = ACTIONS(2369), - [aux_sym_cmd_identifier_token32] = ACTIONS(2369), - [aux_sym_cmd_identifier_token33] = ACTIONS(2369), - [aux_sym_cmd_identifier_token34] = ACTIONS(2367), - [aux_sym_cmd_identifier_token35] = ACTIONS(2369), - [aux_sym_cmd_identifier_token36] = ACTIONS(2369), - [aux_sym_cmd_identifier_token37] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2367), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_export_DASHenv] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_module] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2367), - [anon_sym_DASH2] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_in2] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_make] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_do] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_catch] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_source] = ACTIONS(2367), - [anon_sym_source_DASHenv] = ACTIONS(2367), - [anon_sym_register] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_hide_DASHenv] = ACTIONS(2367), - [anon_sym_overlay] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_PLUS2] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2367), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_decimal_token4] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [aux_sym__val_number_token4] = ACTIONS(2367), - [aux_sym__val_number_token5] = ACTIONS(2367), - [aux_sym__val_number_token6] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2369), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(2610), + [aux_sym__immediate_decimal_token2] = ACTIONS(2612), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_COLON2] = ACTIONS(1623), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [772] = { [sym_comment] = STATE(772), - [aux_sym_shebang_repeat1] = STATE(772), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1310), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1310), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1310), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_err_GT_PIPE] = ACTIONS(1310), - [anon_sym_out_GT_PIPE] = ACTIONS(1310), - [anon_sym_e_GT_PIPE] = ACTIONS(1310), - [anon_sym_o_GT_PIPE] = ACTIONS(1310), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1310), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1310), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1310), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_where] = ACTIONS(1310), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [aux_sym_env_var_token1] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), + [aux_sym_cmd_identifier_token1] = ACTIONS(2614), + [aux_sym_cmd_identifier_token2] = ACTIONS(2616), + [aux_sym_cmd_identifier_token3] = ACTIONS(2616), + [aux_sym_cmd_identifier_token4] = ACTIONS(2616), + [aux_sym_cmd_identifier_token5] = ACTIONS(2616), + [aux_sym_cmd_identifier_token6] = ACTIONS(2616), + [aux_sym_cmd_identifier_token7] = ACTIONS(2616), + [aux_sym_cmd_identifier_token8] = ACTIONS(2616), + [aux_sym_cmd_identifier_token9] = ACTIONS(2614), + [aux_sym_cmd_identifier_token10] = ACTIONS(2616), + [aux_sym_cmd_identifier_token11] = ACTIONS(2616), + [aux_sym_cmd_identifier_token12] = ACTIONS(2616), + [aux_sym_cmd_identifier_token13] = ACTIONS(2614), + [aux_sym_cmd_identifier_token14] = ACTIONS(2616), + [aux_sym_cmd_identifier_token15] = ACTIONS(2614), + [aux_sym_cmd_identifier_token16] = ACTIONS(2616), + [aux_sym_cmd_identifier_token17] = ACTIONS(2616), + [aux_sym_cmd_identifier_token18] = ACTIONS(2614), + [aux_sym_cmd_identifier_token19] = ACTIONS(2616), + [aux_sym_cmd_identifier_token20] = ACTIONS(2616), + [aux_sym_cmd_identifier_token21] = ACTIONS(2616), + [aux_sym_cmd_identifier_token22] = ACTIONS(2616), + [aux_sym_cmd_identifier_token23] = ACTIONS(2616), + [aux_sym_cmd_identifier_token24] = ACTIONS(2616), + [aux_sym_cmd_identifier_token25] = ACTIONS(2616), + [aux_sym_cmd_identifier_token26] = ACTIONS(2616), + [aux_sym_cmd_identifier_token27] = ACTIONS(2616), + [aux_sym_cmd_identifier_token28] = ACTIONS(2616), + [aux_sym_cmd_identifier_token29] = ACTIONS(2616), + [aux_sym_cmd_identifier_token30] = ACTIONS(2616), + [aux_sym_cmd_identifier_token31] = ACTIONS(2616), + [aux_sym_cmd_identifier_token32] = ACTIONS(2614), + [aux_sym_cmd_identifier_token33] = ACTIONS(2616), + [aux_sym_cmd_identifier_token34] = ACTIONS(2614), + [aux_sym_cmd_identifier_token35] = ACTIONS(2616), + [aux_sym_cmd_identifier_token36] = ACTIONS(2616), + [aux_sym_cmd_identifier_token37] = ACTIONS(2616), + [aux_sym_cmd_identifier_token38] = ACTIONS(2614), + [aux_sym_cmd_identifier_token39] = ACTIONS(2616), + [aux_sym_cmd_identifier_token40] = ACTIONS(2616), + [sym__newline] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_err_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_GT_PIPE] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_DOLLAR] = ACTIONS(2614), + [anon_sym_DASH2] = ACTIONS(2614), + [anon_sym_break] = ACTIONS(2614), + [anon_sym_continue] = ACTIONS(2614), + [anon_sym_do] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_match] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_DOT_DOT] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_where] = ACTIONS(2616), + [aux_sym_expr_unary_token1] = ACTIONS(2616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2616), + [anon_sym_DOT_DOT_LT] = ACTIONS(2616), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2614), + [anon_sym_false] = ACTIONS(2614), + [aux_sym__val_number_decimal_token1] = ACTIONS(2614), + [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), + [aux_sym__val_number_token4] = ACTIONS(2614), + [aux_sym__val_number_token5] = ACTIONS(2614), + [aux_sym__val_number_token6] = ACTIONS(2614), + [anon_sym_0b] = ACTIONS(2614), + [anon_sym_0o] = ACTIONS(2614), + [anon_sym_0x] = ACTIONS(2614), + [sym_val_date] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2616), + [sym__str_single_quotes] = ACTIONS(2616), + [sym__str_back_ticks] = ACTIONS(2616), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2616), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2616), + [aux_sym_env_var_token1] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2616), + [aux_sym_command_token1] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2616), }, [773] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_rest] = STATE(8508), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(2964), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(3228), - [sym__val_range] = STATE(8680), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(3229), - [sym_val_bool] = STATE(3023), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(2966), - [sym_val_number] = STATE(3229), - [sym__val_number_decimal] = STATE(2596), - [sym__val_number] = STATE(3151), - [sym_val_duration] = STATE(3229), - [sym_val_filesize] = STATE(3229), - [sym_val_binary] = STATE(3229), - [sym_val_string] = STATE(3229), - [sym__raw_str] = STATE(3162), - [sym__str_double_quotes] = STATE(3162), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7917), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8502), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(3229), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(3004), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7362), [sym_comment] = STATE(773), - [aux_sym_shebang_repeat1] = STATE(900), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym__match_pattern_list_repeat1] = STATE(1278), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2565), - [anon_sym_RBRACK] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_DOT_DOT] = ACTIONS(2577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2579), - [anon_sym_DOT_DOT_LT] = ACTIONS(2579), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2583), - [anon_sym_false] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2585), - [aux_sym__val_number_decimal_token2] = ACTIONS(2587), - [aux_sym__val_number_decimal_token3] = ACTIONS(2589), - [aux_sym__val_number_decimal_token4] = ACTIONS(2591), - [aux_sym__val_number_token1] = ACTIONS(2593), - [aux_sym__val_number_token2] = ACTIONS(2593), - [aux_sym__val_number_token3] = ACTIONS(2593), - [aux_sym__val_number_token4] = ACTIONS(2595), - [aux_sym__val_number_token5] = ACTIONS(2595), - [aux_sym__val_number_token6] = ACTIONS(2595), - [anon_sym_0b] = ACTIONS(2597), - [anon_sym_0o] = ACTIONS(2599), - [anon_sym_0x] = ACTIONS(2599), - [sym_val_date] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym__str_single_quotes] = ACTIONS(2605), - [sym__str_back_ticks] = ACTIONS(2605), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2617), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2619), + [aux_sym_cmd_identifier_token1] = ACTIONS(2509), + [aux_sym_cmd_identifier_token2] = ACTIONS(2511), + [aux_sym_cmd_identifier_token3] = ACTIONS(2511), + [aux_sym_cmd_identifier_token4] = ACTIONS(2511), + [aux_sym_cmd_identifier_token5] = ACTIONS(2511), + [aux_sym_cmd_identifier_token6] = ACTIONS(2511), + [aux_sym_cmd_identifier_token7] = ACTIONS(2511), + [aux_sym_cmd_identifier_token8] = ACTIONS(2511), + [aux_sym_cmd_identifier_token9] = ACTIONS(2509), + [aux_sym_cmd_identifier_token10] = ACTIONS(2511), + [aux_sym_cmd_identifier_token11] = ACTIONS(2511), + [aux_sym_cmd_identifier_token12] = ACTIONS(2511), + [aux_sym_cmd_identifier_token13] = ACTIONS(2509), + [aux_sym_cmd_identifier_token14] = ACTIONS(2511), + [aux_sym_cmd_identifier_token15] = ACTIONS(2509), + [aux_sym_cmd_identifier_token16] = ACTIONS(2511), + [aux_sym_cmd_identifier_token17] = ACTIONS(2511), + [aux_sym_cmd_identifier_token18] = ACTIONS(2509), + [aux_sym_cmd_identifier_token19] = ACTIONS(2511), + [aux_sym_cmd_identifier_token20] = ACTIONS(2511), + [aux_sym_cmd_identifier_token21] = ACTIONS(2511), + [aux_sym_cmd_identifier_token22] = ACTIONS(2511), + [aux_sym_cmd_identifier_token23] = ACTIONS(2511), + [aux_sym_cmd_identifier_token24] = ACTIONS(2511), + [aux_sym_cmd_identifier_token25] = ACTIONS(2511), + [aux_sym_cmd_identifier_token26] = ACTIONS(2511), + [aux_sym_cmd_identifier_token27] = ACTIONS(2511), + [aux_sym_cmd_identifier_token28] = ACTIONS(2511), + [aux_sym_cmd_identifier_token29] = ACTIONS(2511), + [aux_sym_cmd_identifier_token30] = ACTIONS(2511), + [aux_sym_cmd_identifier_token31] = ACTIONS(2511), + [aux_sym_cmd_identifier_token32] = ACTIONS(2509), + [aux_sym_cmd_identifier_token33] = ACTIONS(2511), + [aux_sym_cmd_identifier_token34] = ACTIONS(2509), + [aux_sym_cmd_identifier_token35] = ACTIONS(2511), + [aux_sym_cmd_identifier_token36] = ACTIONS(2511), + [aux_sym_cmd_identifier_token37] = ACTIONS(2511), + [aux_sym_cmd_identifier_token38] = ACTIONS(2509), + [aux_sym_cmd_identifier_token39] = ACTIONS(2511), + [aux_sym_cmd_identifier_token40] = ACTIONS(2511), + [sym__newline] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2511), + [anon_sym_err_GT_PIPE] = ACTIONS(2511), + [anon_sym_out_GT_PIPE] = ACTIONS(2511), + [anon_sym_e_GT_PIPE] = ACTIONS(2511), + [anon_sym_o_GT_PIPE] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_DOLLAR] = ACTIONS(2509), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_where] = ACTIONS(2511), + [aux_sym_expr_unary_token1] = ACTIONS(2511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2511), + [anon_sym_DOT_DOT_LT] = ACTIONS(2511), + [anon_sym_null] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [aux_sym__val_number_decimal_token1] = ACTIONS(2509), + [aux_sym__val_number_decimal_token2] = ACTIONS(2511), + [aux_sym__val_number_decimal_token3] = ACTIONS(2511), + [aux_sym__val_number_decimal_token4] = ACTIONS(2511), + [aux_sym__val_number_token1] = ACTIONS(2511), + [aux_sym__val_number_token2] = ACTIONS(2511), + [aux_sym__val_number_token3] = ACTIONS(2511), + [aux_sym__val_number_token4] = ACTIONS(2509), + [aux_sym__val_number_token5] = ACTIONS(2509), + [aux_sym__val_number_token6] = ACTIONS(2509), + [anon_sym_0b] = ACTIONS(2509), + [anon_sym_0o] = ACTIONS(2509), + [anon_sym_0x] = ACTIONS(2509), + [sym_val_date] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym__str_single_quotes] = ACTIONS(2511), + [sym__str_back_ticks] = ACTIONS(2511), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2511), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2511), + [aux_sym_env_var_token1] = ACTIONS(2509), + [anon_sym_CARET] = ACTIONS(2511), + [aux_sym_command_token1] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2511), }, [774] = { [sym_comment] = STATE(774), - [aux_sym_shebang_repeat1] = STATE(772), - [aux_sym_cmd_identifier_token1] = ACTIONS(2621), - [aux_sym_cmd_identifier_token2] = ACTIONS(2623), - [aux_sym_cmd_identifier_token3] = ACTIONS(2623), - [aux_sym_cmd_identifier_token4] = ACTIONS(2623), - [aux_sym_cmd_identifier_token5] = ACTIONS(2623), - [aux_sym_cmd_identifier_token6] = ACTIONS(2623), - [aux_sym_cmd_identifier_token7] = ACTIONS(2623), - [aux_sym_cmd_identifier_token8] = ACTIONS(2623), - [aux_sym_cmd_identifier_token9] = ACTIONS(2621), - [aux_sym_cmd_identifier_token10] = ACTIONS(2623), - [aux_sym_cmd_identifier_token11] = ACTIONS(2623), - [aux_sym_cmd_identifier_token12] = ACTIONS(2623), - [aux_sym_cmd_identifier_token13] = ACTIONS(2621), - [aux_sym_cmd_identifier_token14] = ACTIONS(2623), - [aux_sym_cmd_identifier_token15] = ACTIONS(2621), - [aux_sym_cmd_identifier_token16] = ACTIONS(2623), - [aux_sym_cmd_identifier_token17] = ACTIONS(2623), - [aux_sym_cmd_identifier_token18] = ACTIONS(2621), - [aux_sym_cmd_identifier_token19] = ACTIONS(2623), - [aux_sym_cmd_identifier_token20] = ACTIONS(2623), - [aux_sym_cmd_identifier_token21] = ACTIONS(2623), - [aux_sym_cmd_identifier_token22] = ACTIONS(2623), - [aux_sym_cmd_identifier_token23] = ACTIONS(2623), - [aux_sym_cmd_identifier_token24] = ACTIONS(2623), - [aux_sym_cmd_identifier_token25] = ACTIONS(2623), - [aux_sym_cmd_identifier_token26] = ACTIONS(2623), - [aux_sym_cmd_identifier_token27] = ACTIONS(2623), - [aux_sym_cmd_identifier_token28] = ACTIONS(2623), - [aux_sym_cmd_identifier_token29] = ACTIONS(2623), - [aux_sym_cmd_identifier_token30] = ACTIONS(2623), - [aux_sym_cmd_identifier_token31] = ACTIONS(2623), - [aux_sym_cmd_identifier_token32] = ACTIONS(2621), - [aux_sym_cmd_identifier_token33] = ACTIONS(2623), - [aux_sym_cmd_identifier_token34] = ACTIONS(2621), - [aux_sym_cmd_identifier_token35] = ACTIONS(2623), - [aux_sym_cmd_identifier_token36] = ACTIONS(2623), - [aux_sym_cmd_identifier_token37] = ACTIONS(2623), - [aux_sym_cmd_identifier_token38] = ACTIONS(2621), - [aux_sym_cmd_identifier_token39] = ACTIONS(2623), - [aux_sym_cmd_identifier_token40] = ACTIONS(2623), - [sym__newline] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_err_GT_PIPE] = ACTIONS(2625), - [anon_sym_out_GT_PIPE] = ACTIONS(2625), - [anon_sym_e_GT_PIPE] = ACTIONS(2625), - [anon_sym_o_GT_PIPE] = ACTIONS(2625), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2625), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2625), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2625), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_match] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_where] = ACTIONS(2623), - [aux_sym_expr_unary_token1] = ACTIONS(2623), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2623), - [anon_sym_DOT_DOT_LT] = ACTIONS(2623), - [anon_sym_null] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [aux_sym__val_number_decimal_token1] = ACTIONS(2621), - [aux_sym__val_number_decimal_token2] = ACTIONS(2623), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2623), - [aux_sym__val_number_token1] = ACTIONS(2623), - [aux_sym__val_number_token2] = ACTIONS(2623), - [aux_sym__val_number_token3] = ACTIONS(2623), - [aux_sym__val_number_token4] = ACTIONS(2621), - [aux_sym__val_number_token5] = ACTIONS(2621), - [aux_sym__val_number_token6] = ACTIONS(2621), - [anon_sym_0b] = ACTIONS(2621), - [anon_sym_0o] = ACTIONS(2621), - [anon_sym_0x] = ACTIONS(2621), - [sym_val_date] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym__str_single_quotes] = ACTIONS(2623), - [sym__str_back_ticks] = ACTIONS(2623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2623), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), - [aux_sym_env_var_token1] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2623), - [aux_sym_command_token1] = ACTIONS(2623), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2623), + [aux_sym_cmd_identifier_token1] = ACTIONS(2618), + [aux_sym_cmd_identifier_token2] = ACTIONS(2620), + [aux_sym_cmd_identifier_token3] = ACTIONS(2620), + [aux_sym_cmd_identifier_token4] = ACTIONS(2620), + [aux_sym_cmd_identifier_token5] = ACTIONS(2620), + [aux_sym_cmd_identifier_token6] = ACTIONS(2620), + [aux_sym_cmd_identifier_token7] = ACTIONS(2620), + [aux_sym_cmd_identifier_token8] = ACTIONS(2620), + [aux_sym_cmd_identifier_token9] = ACTIONS(2618), + [aux_sym_cmd_identifier_token10] = ACTIONS(2620), + [aux_sym_cmd_identifier_token11] = ACTIONS(2620), + [aux_sym_cmd_identifier_token12] = ACTIONS(2620), + [aux_sym_cmd_identifier_token13] = ACTIONS(2618), + [aux_sym_cmd_identifier_token14] = ACTIONS(2620), + [aux_sym_cmd_identifier_token15] = ACTIONS(2618), + [aux_sym_cmd_identifier_token16] = ACTIONS(2620), + [aux_sym_cmd_identifier_token17] = ACTIONS(2620), + [aux_sym_cmd_identifier_token18] = ACTIONS(2618), + [aux_sym_cmd_identifier_token19] = ACTIONS(2620), + [aux_sym_cmd_identifier_token20] = ACTIONS(2620), + [aux_sym_cmd_identifier_token21] = ACTIONS(2620), + [aux_sym_cmd_identifier_token22] = ACTIONS(2620), + [aux_sym_cmd_identifier_token23] = ACTIONS(2620), + [aux_sym_cmd_identifier_token24] = ACTIONS(2620), + [aux_sym_cmd_identifier_token25] = ACTIONS(2620), + [aux_sym_cmd_identifier_token26] = ACTIONS(2620), + [aux_sym_cmd_identifier_token27] = ACTIONS(2620), + [aux_sym_cmd_identifier_token28] = ACTIONS(2620), + [aux_sym_cmd_identifier_token29] = ACTIONS(2620), + [aux_sym_cmd_identifier_token30] = ACTIONS(2620), + [aux_sym_cmd_identifier_token31] = ACTIONS(2620), + [aux_sym_cmd_identifier_token32] = ACTIONS(2618), + [aux_sym_cmd_identifier_token33] = ACTIONS(2620), + [aux_sym_cmd_identifier_token34] = ACTIONS(2618), + [aux_sym_cmd_identifier_token35] = ACTIONS(2620), + [aux_sym_cmd_identifier_token36] = ACTIONS(2620), + [aux_sym_cmd_identifier_token37] = ACTIONS(2620), + [aux_sym_cmd_identifier_token38] = ACTIONS(2618), + [aux_sym_cmd_identifier_token39] = ACTIONS(2620), + [aux_sym_cmd_identifier_token40] = ACTIONS(2620), + [sym__newline] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_err_GT_PIPE] = ACTIONS(1275), + [anon_sym_out_GT_PIPE] = ACTIONS(1275), + [anon_sym_e_GT_PIPE] = ACTIONS(1275), + [anon_sym_o_GT_PIPE] = ACTIONS(1275), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1275), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1275), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1275), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_DOLLAR] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2618), + [anon_sym_break] = ACTIONS(2618), + [anon_sym_continue] = ACTIONS(2618), + [anon_sym_do] = ACTIONS(2618), + [anon_sym_if] = ACTIONS(2618), + [anon_sym_match] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_DOT_DOT] = ACTIONS(2618), + [anon_sym_try] = ACTIONS(2618), + [anon_sym_return] = ACTIONS(2618), + [anon_sym_where] = ACTIONS(2620), + [aux_sym_expr_unary_token1] = ACTIONS(2620), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2620), + [anon_sym_DOT_DOT_LT] = ACTIONS(2620), + [anon_sym_null] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2618), + [anon_sym_false] = ACTIONS(2618), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2620), + [aux_sym__val_number_decimal_token4] = ACTIONS(2620), + [aux_sym__val_number_token1] = ACTIONS(2620), + [aux_sym__val_number_token2] = ACTIONS(2620), + [aux_sym__val_number_token3] = ACTIONS(2620), + [aux_sym__val_number_token4] = ACTIONS(2618), + [aux_sym__val_number_token5] = ACTIONS(2618), + [aux_sym__val_number_token6] = ACTIONS(2618), + [anon_sym_0b] = ACTIONS(2618), + [anon_sym_0o] = ACTIONS(2618), + [anon_sym_0x] = ACTIONS(2618), + [sym_val_date] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2620), + [sym__str_single_quotes] = ACTIONS(2620), + [sym__str_back_ticks] = ACTIONS(2620), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2620), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2620), + [aux_sym_env_var_token1] = ACTIONS(2618), + [anon_sym_CARET] = ACTIONS(2620), + [aux_sym_command_token1] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2620), }, [775] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_rest] = STATE(8508), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(2964), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(3228), - [sym__val_range] = STATE(8680), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(3229), - [sym_val_bool] = STATE(3023), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(2966), - [sym_val_number] = STATE(3229), - [sym__val_number_decimal] = STATE(2596), - [sym__val_number] = STATE(3151), - [sym_val_duration] = STATE(3229), - [sym_val_filesize] = STATE(3229), - [sym_val_binary] = STATE(3229), - [sym_val_string] = STATE(3229), - [sym__raw_str] = STATE(3162), - [sym__str_double_quotes] = STATE(3162), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7889), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8537), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(3229), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(3004), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7362), [sym_comment] = STATE(775), - [aux_sym_shebang_repeat1] = STATE(898), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym__match_pattern_list_repeat1] = STATE(1278), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(2565), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_DOT_DOT] = ACTIONS(2577), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2579), - [anon_sym_DOT_DOT_LT] = ACTIONS(2579), - [anon_sym_null] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2583), - [anon_sym_false] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2585), - [aux_sym__val_number_decimal_token2] = ACTIONS(2587), - [aux_sym__val_number_decimal_token3] = ACTIONS(2589), - [aux_sym__val_number_decimal_token4] = ACTIONS(2591), - [aux_sym__val_number_token1] = ACTIONS(2593), - [aux_sym__val_number_token2] = ACTIONS(2593), - [aux_sym__val_number_token3] = ACTIONS(2593), - [aux_sym__val_number_token4] = ACTIONS(2595), - [aux_sym__val_number_token5] = ACTIONS(2595), - [aux_sym__val_number_token6] = ACTIONS(2595), - [anon_sym_0b] = ACTIONS(2597), - [anon_sym_0o] = ACTIONS(2599), - [anon_sym_0x] = ACTIONS(2599), - [sym_val_date] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym__str_single_quotes] = ACTIONS(2605), - [sym__str_back_ticks] = ACTIONS(2605), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2617), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2619), + [aux_sym_cmd_identifier_token1] = ACTIONS(1277), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1275), + [aux_sym_cmd_identifier_token9] = ACTIONS(1277), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1275), + [aux_sym_cmd_identifier_token13] = ACTIONS(1277), + [aux_sym_cmd_identifier_token14] = ACTIONS(1275), + [aux_sym_cmd_identifier_token15] = ACTIONS(1277), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1277), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1275), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1275), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1275), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1275), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1275), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [aux_sym_cmd_identifier_token37] = ACTIONS(1275), + [aux_sym_cmd_identifier_token38] = ACTIONS(1277), + [aux_sym_cmd_identifier_token39] = ACTIONS(1275), + [aux_sym_cmd_identifier_token40] = ACTIONS(1275), + [sym__newline] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_err_GT_PIPE] = ACTIONS(1275), + [anon_sym_out_GT_PIPE] = ACTIONS(1275), + [anon_sym_e_GT_PIPE] = ACTIONS(1275), + [anon_sym_o_GT_PIPE] = ACTIONS(1275), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1275), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1275), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1275), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_DASH2] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1277), + [anon_sym_continue] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(1277), + [anon_sym_where] = ACTIONS(1275), + [aux_sym_expr_unary_token1] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1277), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_decimal_token4] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1277), + [anon_sym_0o] = ACTIONS(1277), + [anon_sym_0x] = ACTIONS(1277), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [aux_sym_env_var_token1] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1275), + [aux_sym_command_token1] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1275), }, [776] = { [sym_comment] = STATE(776), - [aux_sym_cmd_identifier_token1] = ACTIONS(2536), - [aux_sym_cmd_identifier_token2] = ACTIONS(2538), - [aux_sym_cmd_identifier_token3] = ACTIONS(2538), - [aux_sym_cmd_identifier_token4] = ACTIONS(2538), - [aux_sym_cmd_identifier_token5] = ACTIONS(2538), - [aux_sym_cmd_identifier_token6] = ACTIONS(2538), - [aux_sym_cmd_identifier_token7] = ACTIONS(2538), - [aux_sym_cmd_identifier_token8] = ACTIONS(2538), - [aux_sym_cmd_identifier_token9] = ACTIONS(2536), - [aux_sym_cmd_identifier_token10] = ACTIONS(2538), - [aux_sym_cmd_identifier_token11] = ACTIONS(2538), - [aux_sym_cmd_identifier_token12] = ACTIONS(2538), - [aux_sym_cmd_identifier_token13] = ACTIONS(2536), - [aux_sym_cmd_identifier_token14] = ACTIONS(2538), - [aux_sym_cmd_identifier_token15] = ACTIONS(2536), - [aux_sym_cmd_identifier_token16] = ACTIONS(2538), - [aux_sym_cmd_identifier_token17] = ACTIONS(2538), - [aux_sym_cmd_identifier_token18] = ACTIONS(2536), - [aux_sym_cmd_identifier_token19] = ACTIONS(2538), - [aux_sym_cmd_identifier_token20] = ACTIONS(2538), - [aux_sym_cmd_identifier_token21] = ACTIONS(2538), - [aux_sym_cmd_identifier_token22] = ACTIONS(2538), - [aux_sym_cmd_identifier_token23] = ACTIONS(2538), - [aux_sym_cmd_identifier_token24] = ACTIONS(2538), - [aux_sym_cmd_identifier_token25] = ACTIONS(2538), - [aux_sym_cmd_identifier_token26] = ACTIONS(2538), - [aux_sym_cmd_identifier_token27] = ACTIONS(2538), - [aux_sym_cmd_identifier_token28] = ACTIONS(2538), - [aux_sym_cmd_identifier_token29] = ACTIONS(2538), - [aux_sym_cmd_identifier_token30] = ACTIONS(2538), - [aux_sym_cmd_identifier_token31] = ACTIONS(2538), - [aux_sym_cmd_identifier_token32] = ACTIONS(2536), - [aux_sym_cmd_identifier_token33] = ACTIONS(2538), - [aux_sym_cmd_identifier_token34] = ACTIONS(2536), - [aux_sym_cmd_identifier_token35] = ACTIONS(2538), - [aux_sym_cmd_identifier_token36] = ACTIONS(2538), - [aux_sym_cmd_identifier_token37] = ACTIONS(2538), - [aux_sym_cmd_identifier_token38] = ACTIONS(2536), - [aux_sym_cmd_identifier_token39] = ACTIONS(2538), - [aux_sym_cmd_identifier_token40] = ACTIONS(2538), - [sym__newline] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_err_GT_PIPE] = ACTIONS(2538), - [anon_sym_out_GT_PIPE] = ACTIONS(2538), - [anon_sym_e_GT_PIPE] = ACTIONS(2538), - [anon_sym_o_GT_PIPE] = ACTIONS(2538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(2536), - [anon_sym_DASH2] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_do] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_where] = ACTIONS(2538), - [aux_sym_expr_unary_token1] = ACTIONS(2538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2538), - [anon_sym_DOT_DOT_LT] = ACTIONS(2538), - [anon_sym_null] = ACTIONS(2536), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [aux_sym__val_number_decimal_token1] = ACTIONS(2536), - [aux_sym__val_number_decimal_token2] = ACTIONS(2538), - [aux_sym__val_number_decimal_token3] = ACTIONS(2538), - [aux_sym__val_number_decimal_token4] = ACTIONS(2538), - [aux_sym__val_number_token1] = ACTIONS(2538), - [aux_sym__val_number_token2] = ACTIONS(2538), - [aux_sym__val_number_token3] = ACTIONS(2538), - [aux_sym__val_number_token4] = ACTIONS(2536), - [aux_sym__val_number_token5] = ACTIONS(2536), - [aux_sym__val_number_token6] = ACTIONS(2536), - [anon_sym_0b] = ACTIONS(2536), - [anon_sym_0o] = ACTIONS(2536), - [anon_sym_0x] = ACTIONS(2536), - [sym_val_date] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym__str_single_quotes] = ACTIONS(2538), - [sym__str_back_ticks] = ACTIONS(2538), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2538), - [aux_sym_env_var_token1] = ACTIONS(2536), - [anon_sym_CARET] = ACTIONS(2538), - [aux_sym_command_token1] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2538), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2608), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_COLON2] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [777] = { + [sym_expr_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1945), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1945), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1945), + [sym_long_flag] = STATE(1945), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(1918), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(777), - [aux_sym_cmd_identifier_token1] = ACTIONS(2629), - [aux_sym_cmd_identifier_token2] = ACTIONS(2631), - [aux_sym_cmd_identifier_token3] = ACTIONS(2631), - [aux_sym_cmd_identifier_token4] = ACTIONS(2631), - [aux_sym_cmd_identifier_token5] = ACTIONS(2631), - [aux_sym_cmd_identifier_token6] = ACTIONS(2631), - [aux_sym_cmd_identifier_token7] = ACTIONS(2631), - [aux_sym_cmd_identifier_token8] = ACTIONS(2631), - [aux_sym_cmd_identifier_token9] = ACTIONS(2629), - [aux_sym_cmd_identifier_token10] = ACTIONS(2631), - [aux_sym_cmd_identifier_token11] = ACTIONS(2631), - [aux_sym_cmd_identifier_token12] = ACTIONS(2631), - [aux_sym_cmd_identifier_token13] = ACTIONS(2629), - [aux_sym_cmd_identifier_token14] = ACTIONS(2631), - [aux_sym_cmd_identifier_token15] = ACTIONS(2629), - [aux_sym_cmd_identifier_token16] = ACTIONS(2631), - [aux_sym_cmd_identifier_token17] = ACTIONS(2631), - [aux_sym_cmd_identifier_token18] = ACTIONS(2629), - [aux_sym_cmd_identifier_token19] = ACTIONS(2631), - [aux_sym_cmd_identifier_token20] = ACTIONS(2631), - [aux_sym_cmd_identifier_token21] = ACTIONS(2631), - [aux_sym_cmd_identifier_token22] = ACTIONS(2631), - [aux_sym_cmd_identifier_token23] = ACTIONS(2631), - [aux_sym_cmd_identifier_token24] = ACTIONS(2631), - [aux_sym_cmd_identifier_token25] = ACTIONS(2631), - [aux_sym_cmd_identifier_token26] = ACTIONS(2631), - [aux_sym_cmd_identifier_token27] = ACTIONS(2631), - [aux_sym_cmd_identifier_token28] = ACTIONS(2631), - [aux_sym_cmd_identifier_token29] = ACTIONS(2631), - [aux_sym_cmd_identifier_token30] = ACTIONS(2631), - [aux_sym_cmd_identifier_token31] = ACTIONS(2631), - [aux_sym_cmd_identifier_token32] = ACTIONS(2629), - [aux_sym_cmd_identifier_token33] = ACTIONS(2631), - [aux_sym_cmd_identifier_token34] = ACTIONS(2629), - [aux_sym_cmd_identifier_token35] = ACTIONS(2631), - [aux_sym_cmd_identifier_token36] = ACTIONS(2631), - [aux_sym_cmd_identifier_token37] = ACTIONS(2631), - [aux_sym_cmd_identifier_token38] = ACTIONS(2629), - [aux_sym_cmd_identifier_token39] = ACTIONS(2631), - [aux_sym_cmd_identifier_token40] = ACTIONS(2631), - [sym__newline] = ACTIONS(2631), - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_err_GT_PIPE] = ACTIONS(2631), - [anon_sym_out_GT_PIPE] = ACTIONS(2631), - [anon_sym_e_GT_PIPE] = ACTIONS(2631), - [anon_sym_o_GT_PIPE] = ACTIONS(2631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_DASH2] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_match] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_where] = ACTIONS(2631), - [aux_sym_expr_unary_token1] = ACTIONS(2631), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2631), - [anon_sym_DOT_DOT_LT] = ACTIONS(2631), - [anon_sym_null] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [aux_sym__val_number_decimal_token1] = ACTIONS(2629), - [aux_sym__val_number_decimal_token2] = ACTIONS(2631), - [aux_sym__val_number_decimal_token3] = ACTIONS(2631), - [aux_sym__val_number_decimal_token4] = ACTIONS(2631), - [aux_sym__val_number_token1] = ACTIONS(2631), - [aux_sym__val_number_token2] = ACTIONS(2631), - [aux_sym__val_number_token3] = ACTIONS(2631), - [aux_sym__val_number_token4] = ACTIONS(2629), - [aux_sym__val_number_token5] = ACTIONS(2629), - [aux_sym__val_number_token6] = ACTIONS(2629), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2629), - [anon_sym_0x] = ACTIONS(2629), - [sym_val_date] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym__str_single_quotes] = ACTIONS(2631), - [sym__str_back_ticks] = ACTIONS(2631), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2631), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2631), - [aux_sym_env_var_token1] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2631), - [aux_sym_command_token1] = ACTIONS(2631), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2631), + [aux_sym_shebang_repeat1] = STATE(1107), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(778), + [sym__newline] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_PIPE] = ACTIONS(2624), + [anon_sym_err_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_GT_PIPE] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2624), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [778] = { + [sym_expr_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1945), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1945), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1945), + [sym_long_flag] = STATE(1945), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(1918), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(778), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2635), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [aux_sym_record_entry_token1] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_shebang_repeat1] = STATE(1107), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(778), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_err_GT_PIPE] = ACTIONS(2683), + [anon_sym_out_GT_PIPE] = ACTIONS(2683), + [anon_sym_e_GT_PIPE] = ACTIONS(2683), + [anon_sym_o_GT_PIPE] = ACTIONS(2683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_DOLLAR] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2706), + [anon_sym_DOT_DOT_LT] = ACTIONS(2706), + [anon_sym_null] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [aux_sym__val_number_decimal_token1] = ACTIONS(2715), + [aux_sym__val_number_decimal_token2] = ACTIONS(2718), + [aux_sym__val_number_decimal_token3] = ACTIONS(2721), + [aux_sym__val_number_decimal_token4] = ACTIONS(2724), + [aux_sym__val_number_token1] = ACTIONS(2727), + [aux_sym__val_number_token2] = ACTIONS(2727), + [aux_sym__val_number_token3] = ACTIONS(2727), + [aux_sym__val_number_token4] = ACTIONS(2730), + [aux_sym__val_number_token5] = ACTIONS(2730), + [aux_sym__val_number_token6] = ACTIONS(2730), + [anon_sym_0b] = ACTIONS(2733), + [anon_sym_0o] = ACTIONS(2736), + [anon_sym_0x] = ACTIONS(2736), + [sym_val_date] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2742), + [sym__str_single_quotes] = ACTIONS(2745), + [sym__str_back_ticks] = ACTIONS(2745), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2751), + [anon_sym_err_GT] = ACTIONS(2754), + [anon_sym_out_GT] = ACTIONS(2754), + [anon_sym_e_GT] = ACTIONS(2754), + [anon_sym_o_GT] = ACTIONS(2754), + [anon_sym_err_PLUSout_GT] = ACTIONS(2754), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2754), + [anon_sym_o_PLUSe_GT] = ACTIONS(2754), + [anon_sym_e_PLUSo_GT] = ACTIONS(2754), + [anon_sym_err_GT_GT] = ACTIONS(2757), + [anon_sym_out_GT_GT] = ACTIONS(2757), + [anon_sym_e_GT_GT] = ACTIONS(2757), + [anon_sym_o_GT_GT] = ACTIONS(2757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2757), + [aux_sym_unquoted_token1] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2763), }, [779] = { + [sym_expr_parenthesized] = STATE(1505), + [sym_val_range] = STATE(1768), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1768), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1768), + [sym_long_flag] = STATE(1768), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1770), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(779), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(2637), - [aux_sym__immediate_decimal_token2] = ACTIONS(2639), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [aux_sym_record_entry_token1] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(785), + [sym__newline] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_err_GT_PIPE] = ACTIONS(2766), + [anon_sym_out_GT_PIPE] = ACTIONS(2766), + [anon_sym_e_GT_PIPE] = ACTIONS(2766), + [anon_sym_o_GT_PIPE] = ACTIONS(2766), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2766), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2766), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2766), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [780] = { + [sym_expr_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1945), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1945), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1945), + [sym_long_flag] = STATE(1945), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(1918), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(780), - [aux_sym_cmd_identifier_token1] = ACTIONS(2641), - [aux_sym_cmd_identifier_token2] = ACTIONS(2643), - [aux_sym_cmd_identifier_token3] = ACTIONS(2643), - [aux_sym_cmd_identifier_token4] = ACTIONS(2643), - [aux_sym_cmd_identifier_token5] = ACTIONS(2643), - [aux_sym_cmd_identifier_token6] = ACTIONS(2643), - [aux_sym_cmd_identifier_token7] = ACTIONS(2643), - [aux_sym_cmd_identifier_token8] = ACTIONS(2643), - [aux_sym_cmd_identifier_token9] = ACTIONS(2641), - [aux_sym_cmd_identifier_token10] = ACTIONS(2643), - [aux_sym_cmd_identifier_token11] = ACTIONS(2643), - [aux_sym_cmd_identifier_token12] = ACTIONS(2643), - [aux_sym_cmd_identifier_token13] = ACTIONS(2641), - [aux_sym_cmd_identifier_token14] = ACTIONS(2643), - [aux_sym_cmd_identifier_token15] = ACTIONS(2641), - [aux_sym_cmd_identifier_token16] = ACTIONS(2643), - [aux_sym_cmd_identifier_token17] = ACTIONS(2643), - [aux_sym_cmd_identifier_token18] = ACTIONS(2641), - [aux_sym_cmd_identifier_token19] = ACTIONS(2643), - [aux_sym_cmd_identifier_token20] = ACTIONS(2643), - [aux_sym_cmd_identifier_token21] = ACTIONS(2643), - [aux_sym_cmd_identifier_token22] = ACTIONS(2643), - [aux_sym_cmd_identifier_token23] = ACTIONS(2643), - [aux_sym_cmd_identifier_token24] = ACTIONS(2643), - [aux_sym_cmd_identifier_token25] = ACTIONS(2643), - [aux_sym_cmd_identifier_token26] = ACTIONS(2643), - [aux_sym_cmd_identifier_token27] = ACTIONS(2643), - [aux_sym_cmd_identifier_token28] = ACTIONS(2643), - [aux_sym_cmd_identifier_token29] = ACTIONS(2643), - [aux_sym_cmd_identifier_token30] = ACTIONS(2643), - [aux_sym_cmd_identifier_token31] = ACTIONS(2643), - [aux_sym_cmd_identifier_token32] = ACTIONS(2641), - [aux_sym_cmd_identifier_token33] = ACTIONS(2643), - [aux_sym_cmd_identifier_token34] = ACTIONS(2641), - [aux_sym_cmd_identifier_token35] = ACTIONS(2643), - [aux_sym_cmd_identifier_token36] = ACTIONS(2643), - [aux_sym_cmd_identifier_token37] = ACTIONS(2643), - [aux_sym_cmd_identifier_token38] = ACTIONS(2641), - [aux_sym_cmd_identifier_token39] = ACTIONS(2643), - [aux_sym_cmd_identifier_token40] = ACTIONS(2643), - [sym__newline] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_err_GT_PIPE] = ACTIONS(1302), - [anon_sym_out_GT_PIPE] = ACTIONS(1302), - [anon_sym_e_GT_PIPE] = ACTIONS(1302), - [anon_sym_o_GT_PIPE] = ACTIONS(1302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_DOLLAR] = ACTIONS(2641), - [anon_sym_DASH2] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_where] = ACTIONS(2643), - [aux_sym_expr_unary_token1] = ACTIONS(2643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_null] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [aux_sym__val_number_decimal_token1] = ACTIONS(2641), - [aux_sym__val_number_decimal_token2] = ACTIONS(2643), - [aux_sym__val_number_decimal_token3] = ACTIONS(2643), - [aux_sym__val_number_decimal_token4] = ACTIONS(2643), - [aux_sym__val_number_token1] = ACTIONS(2643), - [aux_sym__val_number_token2] = ACTIONS(2643), - [aux_sym__val_number_token3] = ACTIONS(2643), - [aux_sym__val_number_token4] = ACTIONS(2641), - [aux_sym__val_number_token5] = ACTIONS(2641), - [aux_sym__val_number_token6] = ACTIONS(2641), - [anon_sym_0b] = ACTIONS(2641), - [anon_sym_0o] = ACTIONS(2641), - [anon_sym_0x] = ACTIONS(2641), - [sym_val_date] = ACTIONS(2643), - [anon_sym_DQUOTE] = ACTIONS(2643), - [sym__str_single_quotes] = ACTIONS(2643), - [sym__str_back_ticks] = ACTIONS(2643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2643), - [aux_sym_env_var_token1] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2643), - [aux_sym_command_token1] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2643), + [aux_sym_shebang_repeat1] = STATE(1107), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(777), + [sym__newline] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [781] = { [sym_comment] = STATE(781), - [aux_sym_cmd_identifier_token1] = ACTIONS(1304), - [aux_sym_cmd_identifier_token2] = ACTIONS(1302), - [aux_sym_cmd_identifier_token3] = ACTIONS(1302), - [aux_sym_cmd_identifier_token4] = ACTIONS(1302), - [aux_sym_cmd_identifier_token5] = ACTIONS(1302), - [aux_sym_cmd_identifier_token6] = ACTIONS(1302), - [aux_sym_cmd_identifier_token7] = ACTIONS(1302), - [aux_sym_cmd_identifier_token8] = ACTIONS(1302), - [aux_sym_cmd_identifier_token9] = ACTIONS(1304), - [aux_sym_cmd_identifier_token10] = ACTIONS(1302), - [aux_sym_cmd_identifier_token11] = ACTIONS(1302), - [aux_sym_cmd_identifier_token12] = ACTIONS(1302), - [aux_sym_cmd_identifier_token13] = ACTIONS(1304), - [aux_sym_cmd_identifier_token14] = ACTIONS(1302), - [aux_sym_cmd_identifier_token15] = ACTIONS(1304), - [aux_sym_cmd_identifier_token16] = ACTIONS(1302), - [aux_sym_cmd_identifier_token17] = ACTIONS(1302), - [aux_sym_cmd_identifier_token18] = ACTIONS(1304), - [aux_sym_cmd_identifier_token19] = ACTIONS(1302), - [aux_sym_cmd_identifier_token20] = ACTIONS(1302), - [aux_sym_cmd_identifier_token21] = ACTIONS(1302), - [aux_sym_cmd_identifier_token22] = ACTIONS(1302), - [aux_sym_cmd_identifier_token23] = ACTIONS(1302), - [aux_sym_cmd_identifier_token24] = ACTIONS(1302), - [aux_sym_cmd_identifier_token25] = ACTIONS(1302), - [aux_sym_cmd_identifier_token26] = ACTIONS(1302), - [aux_sym_cmd_identifier_token27] = ACTIONS(1302), - [aux_sym_cmd_identifier_token28] = ACTIONS(1302), - [aux_sym_cmd_identifier_token29] = ACTIONS(1302), - [aux_sym_cmd_identifier_token30] = ACTIONS(1302), - [aux_sym_cmd_identifier_token31] = ACTIONS(1302), - [aux_sym_cmd_identifier_token32] = ACTIONS(1304), - [aux_sym_cmd_identifier_token33] = ACTIONS(1302), - [aux_sym_cmd_identifier_token34] = ACTIONS(1304), - [aux_sym_cmd_identifier_token35] = ACTIONS(1302), - [aux_sym_cmd_identifier_token36] = ACTIONS(1302), - [aux_sym_cmd_identifier_token37] = ACTIONS(1302), - [aux_sym_cmd_identifier_token38] = ACTIONS(1304), - [aux_sym_cmd_identifier_token39] = ACTIONS(1302), - [aux_sym_cmd_identifier_token40] = ACTIONS(1302), - [sym__newline] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_err_GT_PIPE] = ACTIONS(1302), - [anon_sym_out_GT_PIPE] = ACTIONS(1302), - [anon_sym_e_GT_PIPE] = ACTIONS(1302), - [anon_sym_o_GT_PIPE] = ACTIONS(1302), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1302), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1302), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1302), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_where] = ACTIONS(1302), - [aux_sym_expr_unary_token1] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1304), - [anon_sym_0o] = ACTIONS(1304), - [anon_sym_0x] = ACTIONS(1304), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [aux_sym_env_var_token1] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1302), - [aux_sym_command_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1302), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(2770), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_COLON2] = ACTIONS(1709), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), }, [782] = { - [sym_expr_parenthesized] = STATE(1610), - [sym_val_range] = STATE(1925), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1925), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1925), - [sym_long_flag] = STATE(1925), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1894), - [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(782), - [aux_sym_shebang_repeat1] = STATE(1076), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(793), - [sym__newline] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_err_GT_PIPE] = ACTIONS(2647), - [anon_sym_out_GT_PIPE] = ACTIONS(2647), - [anon_sym_e_GT_PIPE] = ACTIONS(2647), - [anon_sym_o_GT_PIPE] = ACTIONS(2647), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2647), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2647), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2647), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2647), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(2772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2774), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [783] = { + [sym_expr_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1945), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1945), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1945), + [sym_long_flag] = STATE(1945), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(1918), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(783), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(2703), - [aux_sym__immediate_decimal_token2] = ACTIONS(2705), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1107), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(778), + [sym__newline] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [784] = { - [sym_expr_parenthesized] = STATE(1610), - [sym_val_range] = STATE(1925), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1925), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1925), - [sym_long_flag] = STATE(1925), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1894), - [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(784), - [aux_sym_shebang_repeat1] = STATE(1076), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(782), - [sym__newline] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_err_GT_PIPE] = ACTIONS(2707), - [anon_sym_out_GT_PIPE] = ACTIONS(2707), - [anon_sym_e_GT_PIPE] = ACTIONS(2707), - [anon_sym_o_GT_PIPE] = ACTIONS(2707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(2776), + [aux_sym__immediate_decimal_token2] = ACTIONS(2778), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [785] = { - [sym_expr_parenthesized] = STATE(1576), - [sym_val_range] = STATE(1869), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1869), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1869), - [sym_long_flag] = STATE(1869), - [sym_unquoted] = STATE(1625), - [sym__unquoted_with_expr] = STATE(1870), - [sym__unquoted_anonymous_prefix] = STATE(7321), + [sym_expr_parenthesized] = STATE(1505), + [sym_val_range] = STATE(1768), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1768), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1768), + [sym_long_flag] = STATE(1768), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1770), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(785), - [aux_sym_ctrl_do_repeat2] = STATE(798), - [sym__newline] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_err_GT_PIPE] = ACTIONS(2709), - [anon_sym_out_GT_PIPE] = ACTIONS(2709), - [anon_sym_e_GT_PIPE] = ACTIONS(2709), - [anon_sym_o_GT_PIPE] = ACTIONS(2709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [aux_sym_ctrl_do_repeat2] = STATE(785), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2780), + [anon_sym_DOLLAR] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_DASH2] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2780), + [anon_sym_DOT_DOT] = ACTIONS(2800), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2803), + [anon_sym_DOT_DOT_LT] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2806), + [anon_sym_true] = ACTIONS(2809), + [anon_sym_false] = ACTIONS(2809), + [aux_sym__val_number_decimal_token1] = ACTIONS(2812), + [aux_sym__val_number_decimal_token2] = ACTIONS(2815), + [aux_sym__val_number_decimal_token3] = ACTIONS(2818), + [aux_sym__val_number_decimal_token4] = ACTIONS(2821), + [aux_sym__val_number_token1] = ACTIONS(2824), + [aux_sym__val_number_token2] = ACTIONS(2824), + [aux_sym__val_number_token3] = ACTIONS(2824), + [aux_sym__val_number_token4] = ACTIONS(2827), + [aux_sym__val_number_token5] = ACTIONS(2827), + [aux_sym__val_number_token6] = ACTIONS(2827), + [anon_sym_0b] = ACTIONS(2830), + [anon_sym_0o] = ACTIONS(2833), + [anon_sym_0x] = ACTIONS(2833), + [sym_val_date] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym__str_single_quotes] = ACTIONS(2842), + [sym__str_back_ticks] = ACTIONS(2842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2848), + [anon_sym_err_GT] = ACTIONS(2851), + [anon_sym_out_GT] = ACTIONS(2851), + [anon_sym_e_GT] = ACTIONS(2851), + [anon_sym_o_GT] = ACTIONS(2851), + [anon_sym_err_PLUSout_GT] = ACTIONS(2851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2851), + [anon_sym_o_PLUSe_GT] = ACTIONS(2851), + [anon_sym_e_PLUSo_GT] = ACTIONS(2851), + [anon_sym_err_GT_GT] = ACTIONS(2854), + [anon_sym_out_GT_GT] = ACTIONS(2854), + [anon_sym_e_GT_GT] = ACTIONS(2854), + [anon_sym_o_GT_GT] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2854), + [aux_sym_unquoted_token1] = ACTIONS(2857), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2860), }, [786] = { - [sym_expr_parenthesized] = STATE(1576), - [sym_val_range] = STATE(1869), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1869), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1869), - [sym_long_flag] = STATE(1869), - [sym_unquoted] = STATE(1625), - [sym__unquoted_with_expr] = STATE(1870), - [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(786), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [sym__newline] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_err_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_GT_PIPE] = ACTIONS(2711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_DOT_DOT] = ACTIONS(2731), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2734), - [anon_sym_DOT_DOT_LT] = ACTIONS(2734), - [anon_sym_null] = ACTIONS(2737), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [aux_sym__val_number_decimal_token1] = ACTIONS(2743), - [aux_sym__val_number_decimal_token2] = ACTIONS(2746), - [aux_sym__val_number_decimal_token3] = ACTIONS(2749), - [aux_sym__val_number_decimal_token4] = ACTIONS(2752), - [aux_sym__val_number_token1] = ACTIONS(2755), - [aux_sym__val_number_token2] = ACTIONS(2755), - [aux_sym__val_number_token3] = ACTIONS(2755), - [aux_sym__val_number_token4] = ACTIONS(2758), - [aux_sym__val_number_token5] = ACTIONS(2758), - [aux_sym__val_number_token6] = ACTIONS(2758), - [anon_sym_0b] = ACTIONS(2761), - [anon_sym_0o] = ACTIONS(2764), - [anon_sym_0x] = ACTIONS(2764), - [sym_val_date] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym__str_single_quotes] = ACTIONS(2773), - [sym__str_back_ticks] = ACTIONS(2773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2776), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2779), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2785), - [anon_sym_out_GT_GT] = ACTIONS(2785), - [anon_sym_e_GT_GT] = ACTIONS(2785), - [anon_sym_o_GT_GT] = ACTIONS(2785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), - [aux_sym_unquoted_token1] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2791), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(2863), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2865), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [787] = { - [sym_expr_parenthesized] = STATE(1576), - [sym_val_range] = STATE(1869), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1869), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1869), - [sym_long_flag] = STATE(1869), - [sym_unquoted] = STATE(1625), - [sym__unquoted_with_expr] = STATE(1870), - [sym__unquoted_anonymous_prefix] = STATE(7321), + [sym_expr_parenthesized] = STATE(1505), + [sym_val_range] = STATE(1768), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1768), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1768), + [sym_long_flag] = STATE(1768), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1770), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(787), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2794), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [aux_sym_ctrl_do_repeat2] = STATE(791), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_err_GT_PIPE] = ACTIONS(2867), + [anon_sym_out_GT_PIPE] = ACTIONS(2867), + [anon_sym_e_GT_PIPE] = ACTIONS(2867), + [anon_sym_o_GT_PIPE] = ACTIONS(2867), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2867), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2867), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2867), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [788] = { [sym_comment] = STATE(788), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2798), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(2869), + [aux_sym__immediate_decimal_token2] = ACTIONS(2871), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [789] = { [sym_comment] = STATE(789), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(2800), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [aux_sym_record_entry_token1] = ACTIONS(1711), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(2873), + [aux_sym__immediate_decimal_token2] = ACTIONS(2875), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [790] = { - [sym_expr_parenthesized] = STATE(1610), - [sym_val_range] = STATE(1925), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1925), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1925), - [sym_long_flag] = STATE(1925), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1894), - [sym__unquoted_anonymous_prefix] = STATE(7321), + [sym_expr_parenthesized] = STATE(1583), + [sym_val_range] = STATE(1945), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1945), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1945), + [sym_long_flag] = STATE(1945), + [sym_unquoted] = STATE(1667), + [sym__unquoted_with_expr] = STATE(1918), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(790), - [aux_sym_shebang_repeat1] = STATE(1076), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(797), - [sym__newline] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_err_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_GT_PIPE] = ACTIONS(2802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2802), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [aux_sym_shebang_repeat1] = STATE(1107), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(783), + [sym__newline] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_err_GT_PIPE] = ACTIONS(2877), + [anon_sym_out_GT_PIPE] = ACTIONS(2877), + [anon_sym_e_GT_PIPE] = ACTIONS(2877), + [anon_sym_o_GT_PIPE] = ACTIONS(2877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [791] = { + [sym_expr_parenthesized] = STATE(1505), + [sym_val_range] = STATE(1768), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1768), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1768), + [sym_long_flag] = STATE(1768), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1770), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(791), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(2804), - [aux_sym__immediate_decimal_token2] = ACTIONS(2806), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(785), + [sym__newline] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_err_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_GT_PIPE] = ACTIONS(2879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [792] = { + [sym_expr_parenthesized] = STATE(1505), + [sym_val_range] = STATE(1768), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1768), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1768), + [sym_long_flag] = STATE(1768), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1770), + [sym__unquoted_anonymous_prefix] = STATE(6652), [sym_comment] = STATE(792), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(2808), - [aux_sym__immediate_decimal_token2] = ACTIONS(2810), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(779), + [sym__newline] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_err_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_GT_PIPE] = ACTIONS(2879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [793] = { - [sym_expr_parenthesized] = STATE(1610), - [sym_val_range] = STATE(1925), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1925), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1925), - [sym_long_flag] = STATE(1925), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1894), - [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(793), - [aux_sym_shebang_repeat1] = STATE(1076), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(793), - [sym__newline] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_err_GT_PIPE] = ACTIONS(2815), - [anon_sym_out_GT_PIPE] = ACTIONS(2815), - [anon_sym_e_GT_PIPE] = ACTIONS(2815), - [anon_sym_o_GT_PIPE] = ACTIONS(2815), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2815), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2815), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2815), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_DOLLAR] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_DASH2] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_DOT_DOT] = ACTIONS(2835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2838), - [anon_sym_DOT_DOT_LT] = ACTIONS(2838), - [anon_sym_null] = ACTIONS(2841), - [anon_sym_true] = ACTIONS(2844), - [anon_sym_false] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(2847), - [aux_sym__val_number_decimal_token2] = ACTIONS(2850), - [aux_sym__val_number_decimal_token3] = ACTIONS(2853), - [aux_sym__val_number_decimal_token4] = ACTIONS(2856), - [aux_sym__val_number_token1] = ACTIONS(2859), - [aux_sym__val_number_token2] = ACTIONS(2859), - [aux_sym__val_number_token3] = ACTIONS(2859), - [aux_sym__val_number_token4] = ACTIONS(2862), - [aux_sym__val_number_token5] = ACTIONS(2862), - [aux_sym__val_number_token6] = ACTIONS(2862), - [anon_sym_0b] = ACTIONS(2865), - [anon_sym_0o] = ACTIONS(2868), - [anon_sym_0x] = ACTIONS(2868), - [sym_val_date] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym__str_single_quotes] = ACTIONS(2877), - [sym__str_back_ticks] = ACTIONS(2877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2880), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2883), - [anon_sym_err_GT] = ACTIONS(2886), - [anon_sym_out_GT] = ACTIONS(2886), - [anon_sym_e_GT] = ACTIONS(2886), - [anon_sym_o_GT] = ACTIONS(2886), - [anon_sym_err_PLUSout_GT] = ACTIONS(2886), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2886), - [anon_sym_o_PLUSe_GT] = ACTIONS(2886), - [anon_sym_e_PLUSo_GT] = ACTIONS(2886), - [anon_sym_err_GT_GT] = ACTIONS(2889), - [anon_sym_out_GT_GT] = ACTIONS(2889), - [anon_sym_e_GT_GT] = ACTIONS(2889), - [anon_sym_o_GT_GT] = ACTIONS(2889), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2889), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2889), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2889), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2889), - [aux_sym_unquoted_token1] = ACTIONS(2892), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2895), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(2881), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2883), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [794] = { + [sym_expr_parenthesized] = STATE(1603), + [sym_val_range] = STATE(1852), + [sym__val_range] = STATE(7725), + [sym__val_range_with_end] = STATE(7255), + [sym__value] = STATE(1852), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1663), + [sym_val_variable] = STATE(1563), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1312), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_short_flag] = STATE(1852), + [sym_long_flag] = STATE(1852), + [sym_unquoted] = STATE(1696), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(794), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2635), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [aux_sym_record_entry_token1] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_ctrl_do_repeat2] = STATE(797), + [ts_builtin_sym_end] = ACTIONS(2879), + [sym__newline] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_err_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_GT_PIPE] = ACTIONS(2879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_DASH2] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2899), + [anon_sym_DOT_DOT_LT] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [aux_sym__val_number_decimal_token1] = ACTIONS(2905), + [aux_sym__val_number_decimal_token2] = ACTIONS(2907), + [aux_sym__val_number_decimal_token3] = ACTIONS(2909), + [aux_sym__val_number_decimal_token4] = ACTIONS(2911), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(2915), + [aux_sym__val_number_token5] = ACTIONS(2915), + [aux_sym__val_number_token6] = ACTIONS(2915), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [795] = { [sym_comment] = STATE(795), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2900), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2937), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [796] = { - [sym_expr_parenthesized] = STATE(1576), - [sym_val_range] = STATE(1869), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1869), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1869), - [sym_long_flag] = STATE(1869), - [sym_unquoted] = STATE(1625), - [sym__unquoted_with_expr] = STATE(1870), - [sym__unquoted_anonymous_prefix] = STATE(7321), + [sym_expr_parenthesized] = STATE(1603), + [sym_val_range] = STATE(1852), + [sym__val_range] = STATE(7725), + [sym__val_range_with_end] = STATE(7255), + [sym__value] = STATE(1852), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1663), + [sym_val_variable] = STATE(1563), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1312), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_short_flag] = STATE(1852), + [sym_long_flag] = STATE(1852), + [sym_unquoted] = STATE(1696), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(796), - [aux_sym_ctrl_do_repeat2] = STATE(787), - [sym__newline] = ACTIONS(2902), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_err_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_GT_PIPE] = ACTIONS(2902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [aux_sym_ctrl_do_repeat2] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(2780), + [sym__newline] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_err_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_GT_PIPE] = ACTIONS(2780), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2780), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2780), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2780), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_DOLLAR] = ACTIONS(2945), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_DASH2] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_DOT_DOT] = ACTIONS(2957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2960), + [anon_sym_DOT_DOT_LT] = ACTIONS(2960), + [anon_sym_null] = ACTIONS(2963), + [anon_sym_true] = ACTIONS(2966), + [anon_sym_false] = ACTIONS(2966), + [aux_sym__val_number_decimal_token1] = ACTIONS(2969), + [aux_sym__val_number_decimal_token2] = ACTIONS(2972), + [aux_sym__val_number_decimal_token3] = ACTIONS(2975), + [aux_sym__val_number_decimal_token4] = ACTIONS(2978), + [aux_sym__val_number_token1] = ACTIONS(2981), + [aux_sym__val_number_token2] = ACTIONS(2981), + [aux_sym__val_number_token3] = ACTIONS(2981), + [aux_sym__val_number_token4] = ACTIONS(2984), + [aux_sym__val_number_token5] = ACTIONS(2984), + [aux_sym__val_number_token6] = ACTIONS(2984), + [anon_sym_0b] = ACTIONS(2987), + [anon_sym_0o] = ACTIONS(2990), + [anon_sym_0x] = ACTIONS(2990), + [sym_val_date] = ACTIONS(2993), + [anon_sym_DQUOTE] = ACTIONS(2996), + [sym__str_single_quotes] = ACTIONS(2999), + [sym__str_back_ticks] = ACTIONS(2999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3002), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3005), + [anon_sym_err_GT] = ACTIONS(2851), + [anon_sym_out_GT] = ACTIONS(2851), + [anon_sym_e_GT] = ACTIONS(2851), + [anon_sym_o_GT] = ACTIONS(2851), + [anon_sym_err_PLUSout_GT] = ACTIONS(2851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2851), + [anon_sym_o_PLUSe_GT] = ACTIONS(2851), + [anon_sym_e_PLUSo_GT] = ACTIONS(2851), + [anon_sym_err_GT_GT] = ACTIONS(2854), + [anon_sym_out_GT_GT] = ACTIONS(2854), + [anon_sym_e_GT_GT] = ACTIONS(2854), + [anon_sym_o_GT_GT] = ACTIONS(2854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2854), + [aux_sym_unquoted_token1] = ACTIONS(3008), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3011), }, [797] = { - [sym_expr_parenthesized] = STATE(1610), - [sym_val_range] = STATE(1925), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1925), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1925), - [sym_long_flag] = STATE(1925), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1894), - [sym__unquoted_anonymous_prefix] = STATE(7321), + [sym_expr_parenthesized] = STATE(1603), + [sym_val_range] = STATE(1852), + [sym__val_range] = STATE(7725), + [sym__val_range_with_end] = STATE(7255), + [sym__value] = STATE(1852), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1663), + [sym_val_variable] = STATE(1563), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1312), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_short_flag] = STATE(1852), + [sym_long_flag] = STATE(1852), + [sym_unquoted] = STATE(1696), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(797), - [aux_sym_shebang_repeat1] = STATE(1076), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(793), - [sym__newline] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2707), - [anon_sym_err_GT_PIPE] = ACTIONS(2707), - [anon_sym_out_GT_PIPE] = ACTIONS(2707), - [anon_sym_e_GT_PIPE] = ACTIONS(2707), - [anon_sym_o_GT_PIPE] = ACTIONS(2707), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2707), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2707), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2707), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [aux_sym_ctrl_do_repeat2] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(2766), + [sym__newline] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_err_GT_PIPE] = ACTIONS(2766), + [anon_sym_out_GT_PIPE] = ACTIONS(2766), + [anon_sym_e_GT_PIPE] = ACTIONS(2766), + [anon_sym_o_GT_PIPE] = ACTIONS(2766), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2766), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2766), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2766), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_DASH2] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2899), + [anon_sym_DOT_DOT_LT] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [aux_sym__val_number_decimal_token1] = ACTIONS(2905), + [aux_sym__val_number_decimal_token2] = ACTIONS(2907), + [aux_sym__val_number_decimal_token3] = ACTIONS(2909), + [aux_sym__val_number_decimal_token4] = ACTIONS(2911), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(2915), + [aux_sym__val_number_token5] = ACTIONS(2915), + [aux_sym__val_number_token6] = ACTIONS(2915), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [798] = { - [sym_expr_parenthesized] = STATE(1576), - [sym_val_range] = STATE(1869), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1869), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1869), - [sym_long_flag] = STATE(1869), - [sym_unquoted] = STATE(1625), - [sym__unquoted_with_expr] = STATE(1870), - [sym__unquoted_anonymous_prefix] = STATE(7321), [sym_comment] = STATE(798), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [sym__newline] = ACTIONS(2902), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_err_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_GT_PIPE] = ACTIONS(2902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_RPAREN] = ACTIONS(2902), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_COLON2] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [799] = { [sym_comment] = STATE(799), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(2904), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2906), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2883), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [800] = { - [sym_expr_parenthesized] = STATE(1668), - [sym_val_range] = STATE(1972), - [sym__val_range] = STATE(8541), - [sym__val_range_with_end] = STATE(7994), - [sym__value] = STATE(1972), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1638), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1362), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_short_flag] = STATE(1972), - [sym_long_flag] = STATE(1972), - [sym_unquoted] = STATE(1691), - [sym__unquoted_with_expr] = STATE(2007), - [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(800), - [aux_sym_ctrl_do_repeat2] = STATE(811), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_err_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_GT_PIPE] = ACTIONS(2902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_DASH2] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), - [anon_sym_DOT_DOT_LT] = ACTIONS(2922), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [aux_sym__val_number_decimal_token1] = ACTIONS(2928), - [aux_sym__val_number_decimal_token2] = ACTIONS(2930), - [aux_sym__val_number_decimal_token3] = ACTIONS(2932), - [aux_sym__val_number_decimal_token4] = ACTIONS(2934), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(2938), - [aux_sym__val_number_token5] = ACTIONS(2938), - [aux_sym__val_number_token6] = ACTIONS(2938), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_COLON2] = ACTIONS(1623), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [801] = { [sym_comment] = STATE(801), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(2958), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3014), + [aux_sym__immediate_decimal_token2] = ACTIONS(3016), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [802] = { + [sym_expr_parenthesized] = STATE(1603), + [sym_val_range] = STATE(1852), + [sym__val_range] = STATE(7725), + [sym__val_range_with_end] = STATE(7255), + [sym__value] = STATE(1852), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1663), + [sym_val_variable] = STATE(1563), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1312), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_short_flag] = STATE(1852), + [sym_long_flag] = STATE(1852), + [sym_unquoted] = STATE(1696), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(802), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [aux_sym_record_entry_token1] = ACTIONS(1711), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_do_repeat2] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(2879), + [sym__newline] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2879), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_err_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_GT_PIPE] = ACTIONS(2879), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2879), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2879), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2879), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_DASH2] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2899), + [anon_sym_DOT_DOT_LT] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [aux_sym__val_number_decimal_token1] = ACTIONS(2905), + [aux_sym__val_number_decimal_token2] = ACTIONS(2907), + [aux_sym__val_number_decimal_token3] = ACTIONS(2909), + [aux_sym__val_number_decimal_token4] = ACTIONS(2911), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(2915), + [aux_sym__val_number_token5] = ACTIONS(2915), + [aux_sym__val_number_token6] = ACTIONS(2915), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [803] = { [sym_comment] = STATE(803), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [aux_sym_record_entry_token1] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_COLON2] = ACTIONS(1709), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [804] = { - [sym_expr_parenthesized] = STATE(1668), - [sym_val_range] = STATE(1972), - [sym__val_range] = STATE(8541), - [sym__val_range_with_end] = STATE(7994), - [sym__value] = STATE(1972), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1638), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1362), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_short_flag] = STATE(1972), - [sym_long_flag] = STATE(1972), - [sym_unquoted] = STATE(1691), - [sym__unquoted_with_expr] = STATE(2007), - [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(804), - [aux_sym_ctrl_do_repeat2] = STATE(810), - [ts_builtin_sym_end] = ACTIONS(2709), - [sym__newline] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_err_GT_PIPE] = ACTIONS(2709), - [anon_sym_out_GT_PIPE] = ACTIONS(2709), - [anon_sym_e_GT_PIPE] = ACTIONS(2709), - [anon_sym_o_GT_PIPE] = ACTIONS(2709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_DASH2] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), - [anon_sym_DOT_DOT_LT] = ACTIONS(2922), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [aux_sym__val_number_decimal_token1] = ACTIONS(2928), - [aux_sym__val_number_decimal_token2] = ACTIONS(2930), - [aux_sym__val_number_decimal_token3] = ACTIONS(2932), - [aux_sym__val_number_decimal_token4] = ACTIONS(2934), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(2938), - [aux_sym__val_number_token5] = ACTIONS(2938), - [aux_sym__val_number_token6] = ACTIONS(2938), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2774), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), }, [805] = { - [sym_expr_parenthesized] = STATE(1668), - [sym_val_range] = STATE(1972), - [sym__val_range] = STATE(8541), - [sym__val_range_with_end] = STATE(7994), - [sym__value] = STATE(1972), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1638), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1362), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_short_flag] = STATE(1972), - [sym_long_flag] = STATE(1972), - [sym_unquoted] = STATE(1691), - [sym__unquoted_with_expr] = STATE(2007), - [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(805), - [aux_sym_ctrl_do_repeat2] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(2711), - [sym__newline] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_err_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_GT_PIPE] = ACTIONS(2711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_DOLLAR] = ACTIONS(2966), - [anon_sym_DASH_DASH] = ACTIONS(2969), - [anon_sym_DASH2] = ACTIONS(2972), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_DOT_DOT] = ACTIONS(2978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2981), - [anon_sym_DOT_DOT_LT] = ACTIONS(2981), - [anon_sym_null] = ACTIONS(2984), - [anon_sym_true] = ACTIONS(2987), - [anon_sym_false] = ACTIONS(2987), - [aux_sym__val_number_decimal_token1] = ACTIONS(2990), - [aux_sym__val_number_decimal_token2] = ACTIONS(2993), - [aux_sym__val_number_decimal_token3] = ACTIONS(2996), - [aux_sym__val_number_decimal_token4] = ACTIONS(2999), - [aux_sym__val_number_token1] = ACTIONS(3002), - [aux_sym__val_number_token2] = ACTIONS(3002), - [aux_sym__val_number_token3] = ACTIONS(3002), - [aux_sym__val_number_token4] = ACTIONS(3005), - [aux_sym__val_number_token5] = ACTIONS(3005), - [aux_sym__val_number_token6] = ACTIONS(3005), - [anon_sym_0b] = ACTIONS(3008), - [anon_sym_0o] = ACTIONS(3011), - [anon_sym_0x] = ACTIONS(3011), - [sym_val_date] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3017), - [sym__str_single_quotes] = ACTIONS(3020), - [sym__str_back_ticks] = ACTIONS(3020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3026), - [anon_sym_err_GT] = ACTIONS(2782), - [anon_sym_out_GT] = ACTIONS(2782), - [anon_sym_e_GT] = ACTIONS(2782), - [anon_sym_o_GT] = ACTIONS(2782), - [anon_sym_err_PLUSout_GT] = ACTIONS(2782), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2782), - [anon_sym_o_PLUSe_GT] = ACTIONS(2782), - [anon_sym_e_PLUSo_GT] = ACTIONS(2782), - [anon_sym_err_GT_GT] = ACTIONS(2785), - [anon_sym_out_GT_GT] = ACTIONS(2785), - [anon_sym_e_GT_GT] = ACTIONS(2785), - [anon_sym_o_GT_GT] = ACTIONS(2785), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2785), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2785), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2785), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2785), - [aux_sym_unquoted_token1] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3032), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_COLON2] = ACTIONS(1723), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(3), }, [806] = { [sym_comment] = STATE(806), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2798), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2865), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [807] = { [sym_comment] = STATE(807), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3035), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [ts_builtin_sym_end] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3018), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [808] = { [sym_comment] = STATE(808), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3020), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [809] = { [sym_comment] = STATE(809), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2900), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3022), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [810] = { - [sym_expr_parenthesized] = STATE(1668), - [sym_val_range] = STATE(1972), - [sym__val_range] = STATE(8541), - [sym__val_range_with_end] = STATE(7994), - [sym__value] = STATE(1972), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1638), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1362), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_short_flag] = STATE(1972), - [sym_long_flag] = STATE(1972), - [sym_unquoted] = STATE(1691), - [sym__unquoted_with_expr] = STATE(2007), - [sym__unquoted_anonymous_prefix] = STATE(7347), [sym_comment] = STATE(810), - [aux_sym_ctrl_do_repeat2] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(2902), - [sym__newline] = ACTIONS(2902), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_err_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_GT_PIPE] = ACTIONS(2902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_DASH2] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), - [anon_sym_DOT_DOT_LT] = ACTIONS(2922), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [aux_sym__val_number_decimal_token1] = ACTIONS(2928), - [aux_sym__val_number_decimal_token2] = ACTIONS(2930), - [aux_sym__val_number_decimal_token3] = ACTIONS(2932), - [aux_sym__val_number_decimal_token4] = ACTIONS(2934), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(2938), - [aux_sym__val_number_token5] = ACTIONS(2938), - [aux_sym__val_number_token6] = ACTIONS(2938), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [anon_sym_STAR_STAR] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3026), + [anon_sym_mod] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_bit_DASHshl] = ACTIONS(3024), + [anon_sym_bit_DASHshr] = ACTIONS(3024), + [anon_sym_EQ_TILDE] = ACTIONS(3024), + [anon_sym_BANG_TILDE] = ACTIONS(3024), + [anon_sym_bit_DASHand] = ACTIONS(3024), + [anon_sym_bit_DASHxor] = ACTIONS(3024), + [anon_sym_bit_DASHor] = ACTIONS(3024), + [anon_sym_and] = ACTIONS(3024), + [anon_sym_xor] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_not_DASHin] = ACTIONS(3024), + [anon_sym_starts_DASHwith] = ACTIONS(3024), + [anon_sym_ends_DASHwith] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3024), + [aux_sym_cmd_identifier_token41] = ACTIONS(3028), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3034), + [sym_duration_unit] = ACTIONS(3036), + [anon_sym_COLON2] = ACTIONS(1653), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), }, [811] = { - [sym_expr_parenthesized] = STATE(1668), - [sym_val_range] = STATE(1972), - [sym__val_range] = STATE(8541), - [sym__val_range_with_end] = STATE(7994), - [sym__value] = STATE(1972), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1700), - [sym_val_variable] = STATE(1638), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1362), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_short_flag] = STATE(1972), - [sym_long_flag] = STATE(1972), - [sym_unquoted] = STATE(1691), - [sym__unquoted_with_expr] = STATE(2007), - [sym__unquoted_anonymous_prefix] = STATE(7347), + [sym_expr_parenthesized] = STATE(1603), + [sym_val_range] = STATE(1852), + [sym__val_range] = STATE(7725), + [sym__val_range_with_end] = STATE(7255), + [sym__value] = STATE(1852), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1663), + [sym_val_variable] = STATE(1563), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1312), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_short_flag] = STATE(1852), + [sym_long_flag] = STATE(1852), + [sym_unquoted] = STATE(1696), + [sym__unquoted_with_expr] = STATE(1913), + [sym__unquoted_anonymous_prefix] = STATE(6954), [sym_comment] = STATE(811), - [aux_sym_ctrl_do_repeat2] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(2794), - [sym__newline] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_err_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_GT_PIPE] = ACTIONS(2794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_DASH2] = ACTIONS(2916), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(2920), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2922), - [anon_sym_DOT_DOT_LT] = ACTIONS(2922), - [anon_sym_null] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2926), - [anon_sym_false] = ACTIONS(2926), - [aux_sym__val_number_decimal_token1] = ACTIONS(2928), - [aux_sym__val_number_decimal_token2] = ACTIONS(2930), - [aux_sym__val_number_decimal_token3] = ACTIONS(2932), - [aux_sym__val_number_decimal_token4] = ACTIONS(2934), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(2938), - [aux_sym__val_number_token5] = ACTIONS(2938), - [aux_sym__val_number_token6] = ACTIONS(2938), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [aux_sym_ctrl_do_repeat2] = STATE(802), + [ts_builtin_sym_end] = ACTIONS(2867), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_err_GT_PIPE] = ACTIONS(2867), + [anon_sym_out_GT_PIPE] = ACTIONS(2867), + [anon_sym_e_GT_PIPE] = ACTIONS(2867), + [anon_sym_o_GT_PIPE] = ACTIONS(2867), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2867), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2867), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2867), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_DASH2] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2899), + [anon_sym_DOT_DOT_LT] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [aux_sym__val_number_decimal_token1] = ACTIONS(2905), + [aux_sym__val_number_decimal_token2] = ACTIONS(2907), + [aux_sym__val_number_decimal_token3] = ACTIONS(2909), + [aux_sym__val_number_decimal_token4] = ACTIONS(2911), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(2915), + [aux_sym__val_number_token5] = ACTIONS(2915), + [aux_sym__val_number_token6] = ACTIONS(2915), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [812] = { [sym_comment] = STATE(812), - [anon_sym_STAR_STAR] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3043), - [anon_sym_mod] = ACTIONS(3041), - [anon_sym_SLASH_SLASH] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_bit_DASHshl] = ACTIONS(3041), - [anon_sym_bit_DASHshr] = ACTIONS(3041), - [anon_sym_EQ_TILDE] = ACTIONS(3041), - [anon_sym_BANG_TILDE] = ACTIONS(3041), - [anon_sym_bit_DASHand] = ACTIONS(3041), - [anon_sym_bit_DASHxor] = ACTIONS(3041), - [anon_sym_bit_DASHor] = ACTIONS(3041), - [anon_sym_and] = ACTIONS(3041), - [anon_sym_xor] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_not_DASHin] = ACTIONS(3041), - [anon_sym_starts_DASHwith] = ACTIONS(3041), - [anon_sym_ends_DASHwith] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3041), - [aux_sym_cmd_identifier_token41] = ACTIONS(3045), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3051), - [sym_duration_unit] = ACTIONS(3053), - [aux_sym_record_entry_token1] = ACTIONS(1687), - [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(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3044), + [sym_duration_unit] = ACTIONS(3046), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [813] = { [sym_comment] = STATE(813), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [aux_sym_record_entry_token1] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [814] = { [sym_comment] = STATE(814), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3055), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [815] = { [sym_comment] = STATE(815), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(2906), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3048), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [816] = { [sym_comment] = STATE(816), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [aux_sym_record_entry_token1] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3052), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [817] = { [sym_comment] = STATE(817), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3057), - [aux_sym__immediate_decimal_token2] = ACTIONS(3059), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3054), + [sym_duration_unit] = ACTIONS(3056), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [818] = { [sym_comment] = STATE(818), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3063), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [819] = { [sym_comment] = STATE(819), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [ts_builtin_sym_end] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_mod] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_bit_DASHshl] = ACTIONS(3058), + [anon_sym_bit_DASHshr] = ACTIONS(3058), + [anon_sym_EQ_TILDE] = ACTIONS(3058), + [anon_sym_BANG_TILDE] = ACTIONS(3058), + [anon_sym_bit_DASHand] = ACTIONS(3058), + [anon_sym_bit_DASHxor] = ACTIONS(3058), + [anon_sym_bit_DASHor] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_not_DASHin] = ACTIONS(3058), + [anon_sym_starts_DASHwith] = ACTIONS(3058), + [anon_sym_ends_DASHwith] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3058), + [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3066), + [sym_filesize_unit] = ACTIONS(3068), + [sym_duration_unit] = ACTIONS(3070), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [820] = { [sym_comment] = STATE(820), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3065), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [ts_builtin_sym_end] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [821] = { [sym_comment] = STATE(821), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [822] = { [sym_comment] = STATE(822), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(2937), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [823] = { [sym_comment] = STATE(823), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [ts_builtin_sym_end] = ACTIONS(1725), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(3), }, [824] = { [sym_comment] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [ts_builtin_sym_end] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [825] = { [sym_comment] = STATE(825), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3073), - [sym_duration_unit] = ACTIONS(3075), - [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(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [826] = { [sym_comment] = STATE(826), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3077), - [aux_sym__immediate_decimal_token2] = ACTIONS(3079), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3072), + [aux_sym__immediate_decimal_token2] = ACTIONS(3074), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [827] = { [sym_comment] = STATE(827), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [828] = { [sym_comment] = STATE(828), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(3), }, [829] = { [sym_comment] = STATE(829), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3081), - [sym_duration_unit] = ACTIONS(3083), - [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(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [830] = { [sym_comment] = STATE(830), - [ts_builtin_sym_end] = ACTIONS(1769), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(3), }, [831] = { [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3076), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [832] = { [sym_comment] = STATE(832), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [833] = { [sym_comment] = STATE(833), - [ts_builtin_sym_end] = ACTIONS(1699), - [anon_sym_STAR_STAR] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_mod] = ACTIONS(3085), - [anon_sym_SLASH_SLASH] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_bit_DASHshl] = ACTIONS(3085), - [anon_sym_bit_DASHshr] = ACTIONS(3085), - [anon_sym_EQ_TILDE] = ACTIONS(3085), - [anon_sym_BANG_TILDE] = ACTIONS(3085), - [anon_sym_bit_DASHand] = ACTIONS(3085), - [anon_sym_bit_DASHxor] = ACTIONS(3085), - [anon_sym_bit_DASHor] = ACTIONS(3085), - [anon_sym_and] = ACTIONS(3085), - [anon_sym_xor] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_not_DASHin] = ACTIONS(3085), - [anon_sym_starts_DASHwith] = ACTIONS(3085), - [anon_sym_ends_DASHwith] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3085), - [aux_sym_cmd_identifier_token41] = ACTIONS(3089), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3091), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3093), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3093), - [sym_filesize_unit] = ACTIONS(3095), - [sym_duration_unit] = ACTIONS(3097), - [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(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [834] = { [sym_comment] = STATE(834), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3078), + [sym_duration_unit] = ACTIONS(3080), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [835] = { [sym_comment] = STATE(835), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [836] = { [sym_comment] = STATE(836), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(3), }, [837] = { [sym_comment] = STATE(837), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3052), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [838] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7754), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(838), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3099), - [sym_duration_unit] = ACTIONS(3101), - [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(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [839] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7499), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(839), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [840] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7058), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7668), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3063), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_shebang_repeat1] = STATE(880), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [841] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(6742), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7541), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(841), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3103), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(872), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [842] = { [sym_comment] = STATE(842), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1709), + [anon_sym_out_GT_GT] = ACTIONS(1709), + [anon_sym_e_GT_GT] = ACTIONS(1709), + [anon_sym_o_GT_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [843] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(6967), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7729), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(843), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(878), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [844] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7854), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8231), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(894), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(3), }, [845] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7930), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8492), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(881), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), }, [846] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7791), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8503), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7606), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [847] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7899), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8253), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7070), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7747), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(880), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(881), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [848] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7078), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7446), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(848), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1711), - [anon_sym_out_GT_GT] = ACTIONS(1711), - [anon_sym_e_GT_GT] = ACTIONS(1711), - [anon_sym_o_GT_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(882), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [849] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7864), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8442), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7088), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7483), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(895), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(883), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [850] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7937), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8533), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(6967), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7480), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(878), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [851] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8435), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7025), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7439), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(879), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [852] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7845), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8297), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7097), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7425), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(893), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(884), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [853] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7910), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8381), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7106), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7573), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(899), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(885), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [854] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7872), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8632), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7729), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(896), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [855] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7701), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8502), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7115), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7405), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(886), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [856] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7943), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8606), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7131), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7596), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(856), [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [857] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7152), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7740), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(857), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(890), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [858] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8658), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7159), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7410), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(891), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [859] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8537), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7166), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7457), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(875), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [860] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7835), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8567), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7174), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7490), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(892), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [861] = { [sym_comment] = STATE(861), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1599), + [anon_sym_out_GT_GT] = ACTIONS(1599), + [anon_sym_e_GT_GT] = ACTIONS(1599), + [anon_sym_o_GT_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [862] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7867), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8463), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3164), + [sym_duration_unit] = ACTIONS(3166), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), + [anon_sym_POUND] = ACTIONS(3), }, [863] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7826), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8458), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_list_body] = STATE(7659), + [sym_val_entry] = STATE(6769), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(891), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6323), + [aux_sym_list_body_repeat1] = STATE(906), + [sym__newline] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(2554), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [864] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7701), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8559), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [865] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7880), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8266), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(897), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [866] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7924), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8439), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(901), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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_POUND] = ACTIONS(3), }, [867] = { [sym_comment] = STATE(867), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(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_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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_POUND] = ACTIONS(3), }, [868] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8559), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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_POUND] = ACTIONS(3), }, [869] = { [sym_comment] = STATE(869), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3189), - [sym_duration_unit] = ACTIONS(3191), - [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(1687), - [anon_sym_out_GT_GT] = ACTIONS(1687), - [anon_sym_e_GT_GT] = ACTIONS(1687), - [anon_sym_o_GT_GT] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [870] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8528), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [ts_builtin_sym_end] = ACTIONS(2259), + [anon_sym_STAR_STAR] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_mod] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_bit_DASHshl] = ACTIONS(3182), + [anon_sym_bit_DASHshr] = ACTIONS(3182), + [anon_sym_EQ_TILDE] = ACTIONS(3182), + [anon_sym_BANG_TILDE] = ACTIONS(3182), + [anon_sym_bit_DASHand] = ACTIONS(3182), + [anon_sym_bit_DASHxor] = ACTIONS(3182), + [anon_sym_bit_DASHor] = ACTIONS(3182), + [anon_sym_and] = ACTIONS(3182), + [anon_sym_xor] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_not_DASHin] = ACTIONS(3182), + [anon_sym_starts_DASHwith] = ACTIONS(3182), + [anon_sym_ends_DASHwith] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_GT_EQ] = ACTIONS(3182), + [aux_sym_cmd_identifier_token41] = ACTIONS(3186), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [871] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7816), - [sym__spread_list] = STATE(8179), - [sym_list_body] = STATE(8290), - [sym_val_entry] = STATE(7881), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(890), - [aux_sym_parameter_repeat2] = STATE(7136), - [aux_sym_list_body_repeat1] = STATE(989), - [sym__newline] = ACTIONS(2563), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [ts_builtin_sym_end] = ACTIONS(2253), + [anon_sym_STAR_STAR] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_mod] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_bit_DASHshl] = ACTIONS(3182), + [anon_sym_bit_DASHshr] = ACTIONS(3182), + [anon_sym_EQ_TILDE] = ACTIONS(3182), + [anon_sym_BANG_TILDE] = ACTIONS(3182), + [anon_sym_bit_DASHand] = ACTIONS(3182), + [anon_sym_bit_DASHxor] = ACTIONS(3182), + [anon_sym_bit_DASHor] = ACTIONS(3182), + [anon_sym_and] = ACTIONS(3182), + [anon_sym_xor] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_not_DASHin] = ACTIONS(3182), + [anon_sym_starts_DASHwith] = ACTIONS(3182), + [anon_sym_ends_DASHwith] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_GT_EQ] = ACTIONS(3182), + [aux_sym_cmd_identifier_token41] = ACTIONS(3186), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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_POUND] = ACTIONS(3), }, [872] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7005), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(872), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [873] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7175), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(873), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [874] = { [sym_comment] = STATE(874), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [875] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7167), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(875), - [anon_sym_STAR_STAR] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_mod] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_bit_DASHshl] = ACTIONS(3203), - [anon_sym_bit_DASHshr] = ACTIONS(3203), - [anon_sym_EQ_TILDE] = ACTIONS(3203), - [anon_sym_BANG_TILDE] = ACTIONS(3203), - [anon_sym_bit_DASHand] = ACTIONS(3203), - [anon_sym_bit_DASHxor] = ACTIONS(3203), - [anon_sym_bit_DASHor] = ACTIONS(3203), - [anon_sym_and] = ACTIONS(3203), - [anon_sym_xor] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_not_DASHin] = ACTIONS(3203), - [anon_sym_starts_DASHwith] = ACTIONS(3203), - [anon_sym_ends_DASHwith] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3203), - [aux_sym_cmd_identifier_token41] = ACTIONS(3207), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [876] = { [sym_comment] = STATE(876), - [anon_sym_STAR_STAR] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3205), - [anon_sym_mod] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_bit_DASHshl] = ACTIONS(3203), - [anon_sym_bit_DASHshr] = ACTIONS(3203), - [anon_sym_EQ_TILDE] = ACTIONS(3203), - [anon_sym_BANG_TILDE] = ACTIONS(3203), - [anon_sym_bit_DASHand] = ACTIONS(3203), - [anon_sym_bit_DASHxor] = ACTIONS(3203), - [anon_sym_bit_DASHor] = ACTIONS(3203), - [anon_sym_and] = ACTIONS(3203), - [anon_sym_xor] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_not_DASHin] = ACTIONS(3203), - [anon_sym_starts_DASHwith] = ACTIONS(3203), - [anon_sym_ends_DASHwith] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3203), - [aux_sym_cmd_identifier_token41] = ACTIONS(3207), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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_POUND] = ACTIONS(3), }, [877] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(877), - [ts_builtin_sym_end] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_mod] = ACTIONS(3209), - [anon_sym_SLASH_SLASH] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_bit_DASHshl] = ACTIONS(3209), - [anon_sym_bit_DASHshr] = ACTIONS(3209), - [anon_sym_EQ_TILDE] = ACTIONS(3209), - [anon_sym_BANG_TILDE] = ACTIONS(3209), - [anon_sym_bit_DASHand] = ACTIONS(3209), - [anon_sym_bit_DASHxor] = ACTIONS(3209), - [anon_sym_bit_DASHor] = ACTIONS(3209), - [anon_sym_and] = ACTIONS(3209), - [anon_sym_xor] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_not_DASHin] = ACTIONS(3209), - [anon_sym_starts_DASHwith] = ACTIONS(3209), - [anon_sym_ends_DASHwith] = ACTIONS(3209), - [anon_sym_EQ_EQ] = ACTIONS(3209), - [anon_sym_BANG_EQ] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3209), - [aux_sym_cmd_identifier_token41] = ACTIONS(3213), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [878] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(6986), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(878), - [ts_builtin_sym_end] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_mod] = ACTIONS(3209), - [anon_sym_SLASH_SLASH] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_bit_DASHshl] = ACTIONS(3209), - [anon_sym_bit_DASHshr] = ACTIONS(3209), - [anon_sym_EQ_TILDE] = ACTIONS(3209), - [anon_sym_BANG_TILDE] = ACTIONS(3209), - [anon_sym_bit_DASHand] = ACTIONS(3209), - [anon_sym_bit_DASHxor] = ACTIONS(3209), - [anon_sym_bit_DASHor] = ACTIONS(3209), - [anon_sym_and] = ACTIONS(3209), - [anon_sym_xor] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_not_DASHin] = ACTIONS(3209), - [anon_sym_starts_DASHwith] = ACTIONS(3209), - [anon_sym_ends_DASHwith] = ACTIONS(3209), - [anon_sym_EQ_EQ] = ACTIONS(3209), - [anon_sym_BANG_EQ] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3209), - [aux_sym_cmd_identifier_token41] = ACTIONS(3213), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [879] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7028), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(879), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [880] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7902), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7061), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [881] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7931), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7072), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [882] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7081), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [883] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7716), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7089), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [884] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7100), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(884), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [885] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7108), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(885), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [886] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7938), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7117), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [887] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7729), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7126), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [888] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7944), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7133), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [889] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7792), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7144), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [890] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7818), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7153), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [891] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7829), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7160), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7010), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), + [aux_sym_shebang_repeat1] = STATE(2785), + [aux_sym_list_body_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [892] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7837), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = 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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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_POUND] = ACTIONS(3), }, [893] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7847), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = 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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [894] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7857), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3376), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [895] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7866), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [896] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7874), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [897] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7882), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [898] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7891), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [899] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7912), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [900] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7918), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [901] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7925), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7768), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), - [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2918), - [aux_sym_list_body_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), - }, - [902] = { - [sym_comment] = STATE(902), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), - }, - [903] = { - [sym_comment] = STATE(903), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), - }, - [904] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3391), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2315), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(1002), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(987), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [905] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2483), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2143), - [sym__unquoted_with_expr] = STATE(2306), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [895] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3592), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(895), + [aux_sym_shebang_repeat1] = STATE(909), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [906] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2157), - [sym__unquoted_with_expr] = STATE(2356), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [896] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3606), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(896), + [aux_sym_shebang_repeat1] = STATE(910), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [907] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2432), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2367), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [897] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3643), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2018), + [sym__unquoted_with_expr] = STATE(2193), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(897), + [aux_sym_shebang_repeat1] = STATE(911), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [908] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2468), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2089), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [898] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3660), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(898), + [aux_sym_shebang_repeat1] = STATE(912), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [909] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2437), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2100), - [sym__unquoted_with_expr] = STATE(2301), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [899] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3619), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2020), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(899), + [aux_sym_shebang_repeat1] = STATE(913), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [910] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2454), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2146), - [sym__unquoted_with_expr] = STATE(2312), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [900] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3558), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2023), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(900), + [aux_sym_shebang_repeat1] = STATE(914), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [911] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2460), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(924), - [sym__newline] = ACTIONS(3217), + [901] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(901), + [aux_sym_shebang_repeat1] = STATE(915), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [912] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2477), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2329), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(925), - [sym__newline] = ACTIONS(3217), + [902] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3568), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(902), + [aux_sym_shebang_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [913] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2489), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2344), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(926), - [sym__newline] = ACTIONS(3217), + [903] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3584), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2218), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(903), + [aux_sym_shebang_repeat1] = STATE(917), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [914] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2524), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(927), - [sym__newline] = ACTIONS(3217), + [904] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3587), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(904), + [aux_sym_shebang_repeat1] = STATE(918), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [915] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2438), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(928), - [sym__newline] = ACTIONS(3217), + [905] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3588), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(905), + [aux_sym_shebang_repeat1] = STATE(919), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [906] = { + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7045), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), + [sym_comment] = STATE(906), + [aux_sym_list_body_repeat1] = STATE(1020), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), + }, + [907] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3625), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(907), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [908] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3627), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [909] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3631), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2307), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(909), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [910] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3636), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2210), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(910), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [911] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3638), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(911), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [912] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3640), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2177), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(912), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [913] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3642), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(913), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [914] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3646), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(914), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [915] = { + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2168), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(915), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [916] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2456), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3648), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1956), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(929), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [917] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2484), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3650), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(930), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [918] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2528), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2331), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3652), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2224), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(931), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [919] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2335), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2029), - [sym__unquoted_with_expr] = STATE(2351), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3654), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(932), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [920] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2434), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2116), - [sym__unquoted_with_expr] = STATE(2383), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3655), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2303), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(933), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(935), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [921] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2476), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2118), - [sym__unquoted_with_expr] = STATE(2385), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3656), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2270), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(934), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(936), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [922] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2516), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2121), - [sym__unquoted_with_expr] = STATE(2397), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3657), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(935), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(937), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [923] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2527), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2147), - [sym__unquoted_with_expr] = STATE(2401), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3658), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(936), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(938), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [924] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2545), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2149), - [sym__unquoted_with_expr] = STATE(2407), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3659), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1964), + [sym__unquoted_with_expr] = STATE(2167), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(939), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [925] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2550), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2151), - [sym__unquoted_with_expr] = STATE(2410), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3661), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1965), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(940), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [926] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2553), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2152), - [sym__unquoted_with_expr] = STATE(2415), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3662), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1966), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(941), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [927] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2560), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2153), - [sym__unquoted_with_expr] = STATE(2420), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3663), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1967), + [sym__unquoted_with_expr] = STATE(2219), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(942), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [928] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2563), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2155), - [sym__unquoted_with_expr] = STATE(2426), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2220), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(943), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [929] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2567), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2055), - [sym__unquoted_with_expr] = STATE(2429), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3664), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(944), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [930] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2518), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2101), - [sym__unquoted_with_expr] = STATE(2357), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3668), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(945), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [931] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2436), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2127), - [sym__unquoted_with_expr] = STATE(2290), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3670), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(946), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [932] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2303), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2132), - [sym__unquoted_with_expr] = STATE(2364), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3672), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(947), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [933] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2445), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2136), - [sym__unquoted_with_expr] = STATE(2405), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2369), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1045), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [934] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2534), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2414), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2333), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1027), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [935] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2439), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2281), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3573), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2251), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [936] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2519), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3575), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [937] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3991), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2315), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3577), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(950), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [938] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3992), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2057), - [sym__unquoted_with_expr] = STATE(2317), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3579), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(951), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [939] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3993), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2320), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3581), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(952), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [940] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3994), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2323), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3583), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(953), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [941] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3997), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2325), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3590), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(954), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [942] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3999), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2326), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3594), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1988), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(955), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [943] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4000), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2074), - [sym__unquoted_with_expr] = STATE(2327), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2227), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2244), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(956), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [944] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4001), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2333), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3596), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2271), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(957), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [945] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2336), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3599), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(958), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [946] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4004), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2094), - [sym__unquoted_with_expr] = STATE(2343), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3602), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(959), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [947] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4005), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2099), - [sym__unquoted_with_expr] = STATE(2348), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3605), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [948] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4006), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2352), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2336), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(961), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1028), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [949] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4007), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2119), - [sym__unquoted_with_expr] = STATE(2374), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2342), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(962), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [950] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4011), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2319), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2227), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2244), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [951] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4013), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2328), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2339), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1029), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [952] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4015), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2043), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2346), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1030), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [953] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4017), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2355), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2351), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2018), + [sym__unquoted_with_expr] = STATE(2193), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1031), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [954] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4019), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2053), - [sym__unquoted_with_expr] = STATE(2409), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1032), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [955] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4081), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2137), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2384), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1964), + [sym__unquoted_with_expr] = STATE(2167), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1046), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [956] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4024), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2130), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2359), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2020), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1034), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [957] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4028), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2143), - [sym__unquoted_with_expr] = STATE(2306), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2391), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [958] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2157), - [sym__unquoted_with_expr] = STATE(2356), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(6985), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [aux_sym_list_body_repeat1] = STATE(1020), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3094), + [anon_sym_DOT_DOT_LT] = ACTIONS(3094), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_true] = ACTIONS(3098), + [anon_sym_false] = ACTIONS(3098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3100), + [aux_sym__val_number_decimal_token2] = ACTIONS(3102), + [aux_sym__val_number_decimal_token3] = ACTIONS(3104), + [aux_sym__val_number_decimal_token4] = ACTIONS(3106), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3110), + [aux_sym__val_number_token5] = ACTIONS(3110), + [aux_sym__val_number_token6] = ACTIONS(3110), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2594), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [959] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4032), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2367), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2417), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1965), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1047), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [960] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4036), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2089), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2320), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1966), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1048), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [961] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4039), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2100), - [sym__unquoted_with_expr] = STATE(2301), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2326), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1967), + [sym__unquoted_with_expr] = STATE(2219), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1049), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [962] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4041), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2146), - [sym__unquoted_with_expr] = STATE(2312), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2364), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2023), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1035), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [963] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4042), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3387), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(963), [aux_sym_shebang_repeat1] = STATE(976), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [964] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4043), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2329), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3276), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(964), [aux_sym_shebang_repeat1] = STATE(977), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [965] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4048), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2344), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3297), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2072), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(965), [aux_sym_shebang_repeat1] = STATE(978), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [966] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4049), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3299), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2016), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(966), [aux_sym_shebang_repeat1] = STATE(979), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [967] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4050), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3301), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2018), + [sym__unquoted_with_expr] = STATE(2193), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(967), [aux_sym_shebang_repeat1] = STATE(980), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [968] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4051), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3303), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(968), [aux_sym_shebang_repeat1] = STATE(981), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [969] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4053), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3308), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2020), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(969), [aux_sym_shebang_repeat1] = STATE(982), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [970] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4054), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2331), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3369), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2023), + [sym__unquoted_with_expr] = STATE(2205), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(970), [aux_sym_shebang_repeat1] = STATE(983), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [971] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2335), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2029), - [sym__unquoted_with_expr] = STATE(2351), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(971), [aux_sym_shebang_repeat1] = STATE(984), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [972] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4055), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2116), - [sym__unquoted_with_expr] = STATE(2383), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3268), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(972), [aux_sym_shebang_repeat1] = STATE(985), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [973] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4056), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2118), - [sym__unquoted_with_expr] = STATE(2385), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3372), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2218), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(973), [aux_sym_shebang_repeat1] = STATE(986), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [974] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4058), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2121), - [sym__unquoted_with_expr] = STATE(2397), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2337), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2271), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(974), - [aux_sym_shebang_repeat1] = STATE(987), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [975] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4059), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2147), - [sym__unquoted_with_expr] = STATE(2401), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3380), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(975), - [aux_sym_shebang_repeat1] = STATE(1062), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(988), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [976] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4076), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2149), - [sym__unquoted_with_expr] = STATE(2407), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3269), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(976), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [977] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4078), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2151), - [sym__unquoted_with_expr] = STATE(2410), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3271), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(977), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [978] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4080), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2152), - [sym__unquoted_with_expr] = STATE(2415), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3273), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2307), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(978), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [979] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(4022), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2153), - [sym__unquoted_with_expr] = STATE(2420), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3275), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2210), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(979), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [980] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3960), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2155), - [sym__unquoted_with_expr] = STATE(2426), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3277), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [981] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3962), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2055), - [sym__unquoted_with_expr] = STATE(2429), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3279), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2177), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [982] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3964), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2101), - [sym__unquoted_with_expr] = STATE(2357), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3281), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [983] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3966), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2127), - [sym__unquoted_with_expr] = STATE(2290), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3283), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(983), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [984] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2303), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2132), - [sym__unquoted_with_expr] = STATE(2364), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2168), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(984), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [985] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3968), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2136), - [sym__unquoted_with_expr] = STATE(2405), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3285), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1956), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(985), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [986] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3970), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2414), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3287), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(986), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [987] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3972), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2281), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3289), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2224), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(987), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [988] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2542), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2130), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3291), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(988), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [989] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7786), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3292), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2303), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(989), - [aux_sym_list_body_repeat1] = STATE(1042), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym_shebang_repeat1] = STATE(1002), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3192), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [990] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3392), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2057), - [sym__unquoted_with_expr] = STATE(2317), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3293), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2270), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(990), [aux_sym_shebang_repeat1] = STATE(1003), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [991] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3393), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2320), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3294), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(991), [aux_sym_shebang_repeat1] = STATE(1004), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [992] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3394), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2323), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3295), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(992), [aux_sym_shebang_repeat1] = STATE(1005), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [993] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3395), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2325), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3296), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1964), + [sym__unquoted_with_expr] = STATE(2167), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(993), [aux_sym_shebang_repeat1] = STATE(1006), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [994] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3396), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2326), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3298), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1965), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(994), [aux_sym_shebang_repeat1] = STATE(1007), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [995] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3397), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2074), - [sym__unquoted_with_expr] = STATE(2327), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3300), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1966), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(995), [aux_sym_shebang_repeat1] = STATE(1008), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [996] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3398), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2333), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3302), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1967), + [sym__unquoted_with_expr] = STATE(2219), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(996), [aux_sym_shebang_repeat1] = STATE(1009), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [997] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2336), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2220), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(997), [aux_sym_shebang_repeat1] = STATE(1010), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [998] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3399), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2094), - [sym__unquoted_with_expr] = STATE(2343), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3304), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(998), [aux_sym_shebang_repeat1] = STATE(1011), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [999] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3400), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2099), - [sym__unquoted_with_expr] = STATE(2348), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3305), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(999), [aux_sym_shebang_repeat1] = STATE(1012), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1000] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3401), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2352), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3306), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1000), [aux_sym_shebang_repeat1] = STATE(1013), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1001] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3402), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2119), - [sym__unquoted_with_expr] = STATE(2374), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3307), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1001), [aux_sym_shebang_repeat1] = STATE(1014), - [sym__newline] = ACTIONS(3217), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1002] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3405), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2319), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3322), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2251), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1003] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3407), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2328), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3324), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1004] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3409), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2043), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3326), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1005] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3411), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2355), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3328), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1006] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3413), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2053), - [sym__unquoted_with_expr] = STATE(2409), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3330), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1007] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3415), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2137), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3332), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1008] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3417), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2130), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3334), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1009] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3419), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2143), - [sym__unquoted_with_expr] = STATE(2306), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3336), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1988), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1010] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2157), - [sym__unquoted_with_expr] = STATE(2356), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2227), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2244), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1011] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3421), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2040), - [sym__unquoted_with_expr] = STATE(2367), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3338), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1990), + [sym__unquoted_with_expr] = STATE(2271), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1011), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1012] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3423), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2089), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3340), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2298), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1013] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3425), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2100), - [sym__unquoted_with_expr] = STATE(2301), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3342), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1013), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1014] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3427), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2146), - [sym__unquoted_with_expr] = STATE(2312), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3344), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1015] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3428), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2047), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2154), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2027), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(1028), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1037), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1016] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3429), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2045), - [sym__unquoted_with_expr] = STATE(2329), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2371), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2028), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(1029), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1040), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1017] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3430), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2344), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2372), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2029), + [sym__unquoted_with_expr] = STATE(2218), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(1030), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1042), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1018] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3431), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2108), - [sym__unquoted_with_expr] = STATE(2278), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2220), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(1031), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(950), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1019] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3432), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2030), - [sym__unquoted_with_expr] = STATE(2286), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2344), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2173), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(1032), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(974), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1020] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3433), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2038), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_parenthesized] = STATE(5946), + [sym__spread_parenthesized] = STATE(7313), + [sym_val_range] = STATE(7304), + [sym__val_range] = STATE(7565), + [sym__val_range_with_end] = STATE(7331), + [sym__value] = STATE(7304), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6097), + [sym__spread_variable] = STATE(7292), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5069), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym__spread_list] = STATE(7313), + [sym_val_entry] = STATE(7250), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_list] = STATE(6297), + [sym__unquoted_in_list_with_expr] = STATE(7304), + [sym__unquoted_anonymous_prefix] = STATE(6786), [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(1033), - [sym__newline] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [aux_sym_list_body_repeat1] = STATE(1020), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_DOLLAR] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_DOT_DOT] = ACTIONS(3266), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3272), + [anon_sym_DOT_DOT_LT] = ACTIONS(3272), + [anon_sym_null] = ACTIONS(3275), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3281), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3287), + [aux_sym__val_number_decimal_token3] = ACTIONS(3290), + [aux_sym__val_number_decimal_token4] = ACTIONS(3293), + [aux_sym__val_number_token1] = ACTIONS(3296), + [aux_sym__val_number_token2] = ACTIONS(3296), + [aux_sym__val_number_token3] = ACTIONS(3296), + [aux_sym__val_number_token4] = ACTIONS(3299), + [aux_sym__val_number_token5] = ACTIONS(3299), + [aux_sym__val_number_token6] = ACTIONS(3299), + [anon_sym_0b] = ACTIONS(3302), + [anon_sym_0o] = ACTIONS(3305), + [anon_sym_0x] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3311), + [sym__str_single_quotes] = ACTIONS(3314), + [sym__str_back_ticks] = ACTIONS(3314), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3317), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3320), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3323), + [anon_sym_err_GT] = ACTIONS(3326), + [anon_sym_out_GT] = ACTIONS(3326), + [anon_sym_e_GT] = ACTIONS(3326), + [anon_sym_o_GT] = ACTIONS(3326), + [anon_sym_err_PLUSout_GT] = ACTIONS(3326), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3326), + [anon_sym_o_PLUSe_GT] = ACTIONS(3326), + [anon_sym_e_PLUSo_GT] = ACTIONS(3326), + [anon_sym_err_GT_GT] = ACTIONS(3329), + [anon_sym_out_GT_GT] = ACTIONS(3329), + [anon_sym_e_GT_GT] = ACTIONS(3329), + [anon_sym_o_GT_GT] = ACTIONS(3329), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3329), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3329), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3329), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3329), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3335), }, [1021] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3434), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2046), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2374), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2030), + [sym__unquoted_with_expr] = STATE(2221), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(1034), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1033), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1022] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3435), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2049), - [sym__unquoted_with_expr] = STATE(2331), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2358), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2178), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(1035), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(949), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1023] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2335), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2029), - [sym__unquoted_with_expr] = STATE(2351), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2368), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(1036), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1026), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1024] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3436), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2116), - [sym__unquoted_with_expr] = STATE(2383), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2378), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2035), + [sym__unquoted_with_expr] = STATE(2229), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(1037), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(957), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1025] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3437), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2118), - [sym__unquoted_with_expr] = STATE(2385), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2377), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2189), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(1038), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1052), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1026] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3438), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2121), - [sym__unquoted_with_expr] = STATE(2397), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2350), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1992), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(1039), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1027] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3439), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2147), - [sym__unquoted_with_expr] = STATE(2401), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2434), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2070), + [sym__unquoted_with_expr] = STATE(2301), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1028] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3453), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2149), - [sym__unquoted_with_expr] = STATE(2407), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2441), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2071), + [sym__unquoted_with_expr] = STATE(2304), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1029] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3455), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2151), - [sym__unquoted_with_expr] = STATE(2410), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2014), + [sym__unquoted_with_expr] = STATE(2307), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1030] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3457), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2152), - [sym__unquoted_with_expr] = STATE(2415), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2443), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2210), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1031] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3459), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2153), - [sym__unquoted_with_expr] = STATE(2420), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2321), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2217), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1032] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3461), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2155), - [sym__unquoted_with_expr] = STATE(2426), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2425), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2177), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1033] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3463), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2055), - [sym__unquoted_with_expr] = STATE(2429), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2352), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2224), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1034] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3465), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2101), - [sym__unquoted_with_expr] = STATE(2357), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2389), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2259), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1035] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3467), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2127), - [sym__unquoted_with_expr] = STATE(2290), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2331), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1036] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2303), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2132), - [sym__unquoted_with_expr] = STATE(2364), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2427), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2303), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1041), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1037] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3469), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2136), - [sym__unquoted_with_expr] = STATE(2405), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2168), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1038] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3471), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2068), - [sym__unquoted_with_expr] = STATE(2414), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2328), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2270), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1043), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1039] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3473), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2076), - [sym__unquoted_with_expr] = STATE(2281), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(1044), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1040] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3475), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2366), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1956), + [sym__unquoted_with_expr] = STATE(2181), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1041] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(7781), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2399), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2251), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1041), - [aux_sym_list_body_repeat1] = STATE(1042), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3117), - [anon_sym_DOT_DOT_LT] = ACTIONS(3117), - [anon_sym_null] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3123), - [aux_sym__val_number_decimal_token2] = ACTIONS(3125), - [aux_sym__val_number_decimal_token3] = ACTIONS(3127), - [aux_sym__val_number_decimal_token4] = ACTIONS(3129), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3133), - [aux_sym__val_number_token5] = ACTIONS(3133), - [aux_sym__val_number_token6] = ACTIONS(3133), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2611), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3234), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1042] = { - [sym_expr_parenthesized] = STATE(6491), - [sym__spread_parenthesized] = STATE(8179), - [sym_val_range] = STATE(8070), - [sym__val_range] = STATE(8298), - [sym__val_range_with_end] = STATE(8004), - [sym__value] = STATE(8070), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(7015), - [sym__spread_variable] = STATE(7993), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5609), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym__spread_list] = STATE(8179), - [sym_val_entry] = STATE(8078), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_list] = STATE(6987), - [sym__unquoted_in_list_with_expr] = STATE(8070), - [sym__unquoted_anonymous_prefix] = STATE(7954), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2426), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2207), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1042), - [aux_sym_list_body_repeat1] = STATE(1042), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_DOLLAR] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_DOT_DOT] = ACTIONS(3293), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3296), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3299), - [anon_sym_DOT_DOT_LT] = ACTIONS(3299), - [anon_sym_null] = ACTIONS(3302), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3308), - [aux_sym__val_number_decimal_token1] = ACTIONS(3311), - [aux_sym__val_number_decimal_token2] = ACTIONS(3314), - [aux_sym__val_number_decimal_token3] = ACTIONS(3317), - [aux_sym__val_number_decimal_token4] = ACTIONS(3320), - [aux_sym__val_number_token1] = ACTIONS(3323), - [aux_sym__val_number_token2] = ACTIONS(3323), - [aux_sym__val_number_token3] = ACTIONS(3323), - [aux_sym__val_number_token4] = ACTIONS(3326), - [aux_sym__val_number_token5] = ACTIONS(3326), - [aux_sym__val_number_token6] = ACTIONS(3326), - [anon_sym_0b] = ACTIONS(3329), - [anon_sym_0o] = ACTIONS(3332), - [anon_sym_0x] = ACTIONS(3332), - [sym_val_date] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym__str_single_quotes] = ACTIONS(3341), - [sym__str_back_ticks] = ACTIONS(3341), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3347), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3350), - [anon_sym_err_GT] = ACTIONS(3353), - [anon_sym_out_GT] = ACTIONS(3353), - [anon_sym_e_GT] = ACTIONS(3353), - [anon_sym_o_GT] = ACTIONS(3353), - [anon_sym_err_PLUSout_GT] = ACTIONS(3353), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3353), - [anon_sym_o_PLUSe_GT] = ACTIONS(3353), - [anon_sym_e_PLUSo_GT] = ACTIONS(3353), - [anon_sym_err_GT_GT] = ACTIONS(3356), - [anon_sym_out_GT_GT] = ACTIONS(3356), - [anon_sym_e_GT_GT] = ACTIONS(3356), - [anon_sym_o_GT_GT] = ACTIONS(3356), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3356), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3356), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3356), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3356), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3362), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3234), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1043] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2459), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2056), - [sym__unquoted_with_expr] = STATE(2315), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2402), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(1056), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1044] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2464), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2057), - [sym__unquoted_with_expr] = STATE(2317), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2428), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(1057), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1045] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2466), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2063), - [sym__unquoted_with_expr] = STATE(2320), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2310), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(1058), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1046] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2469), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2066), - [sym__unquoted_with_expr] = STATE(2323), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2312), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2281), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(1059), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1047] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2471), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2325), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2314), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(1060), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1048] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2475), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2072), - [sym__unquoted_with_expr] = STATE(2326), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2319), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1987), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(1061), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1049] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2478), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2074), - [sym__unquoted_with_expr] = STATE(2327), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2325), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1988), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(988), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1050] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2480), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2078), - [sym__unquoted_with_expr] = STATE(2333), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3674), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2012), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(905), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(907), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1051] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2083), - [sym__unquoted_with_expr] = STATE(2336), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(3557), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2182), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1051), - [aux_sym_shebang_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1052] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2501), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2094), - [sym__unquoted_with_expr] = STATE(2343), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2332), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary_parenthesized] = STATE(2332), + [sym__expr_binary_expression_parenthesized] = STATE(2357), + [sym_expr_parenthesized] = STATE(2011), + [sym_val_range] = STATE(2332), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2332), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1993), + [sym__unquoted_with_expr] = STATE(2160), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1052), - [aux_sym_shebang_repeat1] = STATE(907), - [sym__newline] = ACTIONS(3217), + [aux_sym_shebang_repeat1] = STATE(2870), + [sym__newline] = ACTIONS(3190), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1053] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2506), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2099), - [sym__unquoted_with_expr] = STATE(2348), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2405), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1053), - [aux_sym_shebang_repeat1] = STATE(908), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1054] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2513), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2105), - [sym__unquoted_with_expr] = STATE(2352), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3360), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1054), - [aux_sym_shebang_repeat1] = STATE(909), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1055] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2523), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2119), - [sym__unquoted_with_expr] = STATE(2374), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3361), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1055), - [aux_sym_shebang_repeat1] = STATE(910), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1056] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2465), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2077), - [sym__unquoted_with_expr] = STATE(2319), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3362), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1056), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1057] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2472), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2031), - [sym__unquoted_with_expr] = STATE(2328), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3363), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1057), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1058] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2569), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2043), - [sym__unquoted_with_expr] = STATE(2349), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3364), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1058), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1059] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2515), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2050), - [sym__unquoted_with_expr] = STATE(2355), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2099), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1059), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1060] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2525), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2053), - [sym__unquoted_with_expr] = STATE(2409), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3365), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1060), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1061] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(2521), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2137), - [sym__unquoted_with_expr] = STATE(2318), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3366), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1873), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1061), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1062] = { - [sym_expr_unary] = STATE(2452), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary_parenthesized] = STATE(2452), - [sym__expr_binary_expression_parenthesized] = STATE(3974), - [sym_expr_parenthesized] = STATE(2054), - [sym_val_range] = STATE(2452), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2452), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3597), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2082), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7958), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3367), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1062), - [aux_sym_shebang_repeat1] = STATE(2960), - [sym__newline] = ACTIONS(3217), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1063] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4096), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3875), - [sym__unquoted_with_expr] = STATE(4101), - [sym__unquoted_anonymous_prefix] = STATE(7348), + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3368), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1883), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7198), [sym_comment] = STATE(1063), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1064] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2494), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1064), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1065] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2496), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1065), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1066] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2498), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1066), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1067] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2499), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1067), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1068] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2256), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1068), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1069] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2502), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1069), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1070] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2503), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1070), + [1064] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2099), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1064), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1071] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2504), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1071), + [1065] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3734), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1065), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1072] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2505), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1072), + [1066] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3743), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1873), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1066), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1073] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3541), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2418), - [sym__unquoted_with_expr] = STATE(2616), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1073), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1074] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4131), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3874), - [sym__unquoted_with_expr] = STATE(4095), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1074), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), + [sym_raw_string_begin] = ACTIONS(253), }, - [1075] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3542), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2422), - [sym__unquoted_with_expr] = STATE(2625), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1075), + [1067] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2530), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2257), + [sym__unquoted_with_expr] = STATE(2532), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1067), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1076] = { - [sym_expr_parenthesized] = STATE(1639), - [sym_val_range] = STATE(1950), - [sym__val_range] = STATE(8436), - [sym__val_range_with_end] = STATE(8134), - [sym__value] = STATE(1950), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1640), - [sym_val_variable] = STATE(1548), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1267), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_short_flag] = STATE(1950), - [sym_long_flag] = STATE(1950), - [sym_unquoted] = STATE(1718), - [sym__unquoted_with_expr] = STATE(1957), - [sym__unquoted_anonymous_prefix] = STATE(7321), - [sym_comment] = STATE(1076), - [aux_sym_shebang_repeat1] = STATE(2973), - [sym__newline] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2655), - [anon_sym_DASH2] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_LT] = ACTIONS(2663), - [anon_sym_null] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [aux_sym__val_number_decimal_token1] = ACTIONS(2669), - [aux_sym__val_number_decimal_token2] = ACTIONS(2671), - [aux_sym__val_number_decimal_token3] = ACTIONS(2673), - [aux_sym__val_number_decimal_token4] = ACTIONS(2675), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(2679), - [aux_sym__val_number_token5] = ACTIONS(2679), - [aux_sym__val_number_token6] = ACTIONS(2679), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), - }, - [1077] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2586), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2403), - [sym__unquoted_with_expr] = STATE(2603), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1077), + [1068] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2525), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2252), + [sym__unquoted_with_expr] = STATE(2529), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1068), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1078] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2623), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2277), - [sym__unquoted_with_expr] = STATE(2665), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1078), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [1069] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3731), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1069), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3214), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, - [1079] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2640), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2311), - [sym__unquoted_with_expr] = STATE(2573), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1079), + [1070] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2499), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2275), + [sym__unquoted_with_expr] = STATE(2508), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1070), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1080] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2661), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2340), - [sym__unquoted_with_expr] = STATE(2571), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1080), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [1071] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2092), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1071), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3360), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, - [1081] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2576), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2406), - [sym__unquoted_with_expr] = STATE(2642), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1081), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1082] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2668), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2423), - [sym__unquoted_with_expr] = STATE(2651), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1082), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1083] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2581), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2302), - [sym__unquoted_with_expr] = STATE(2656), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1083), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1084] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4100), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3941), - [sym__unquoted_with_expr] = STATE(4118), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1084), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1085] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3488), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1085), + [1072] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3746), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1072), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1086] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3489), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1086), + [1073] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3715), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1073), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1087] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3490), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1087), + [1074] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3720), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1074), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1088] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3491), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1088), + [1075] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3721), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1075), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1089] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3492), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1089), + [1076] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3724), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1076), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1090] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3493), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1090), + [1077] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3725), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1077), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1091] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3494), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1091), + [1078] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3726), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1078), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1092] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3495), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1092), + [1079] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2099), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1079), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1093] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2256), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1093), + [1080] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3737), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1080), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1094] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3496), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1094), + [1081] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1873), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1081), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1095] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3497), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1095), + [1082] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3739), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1082), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1096] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3498), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1096), + [1083] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3744), + [sym_expr_parenthesized] = STATE(3537), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3673), + [sym_val_variable] = STATE(3552), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3470), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1883), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1083), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3360), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_LT] = ACTIONS(3362), + [anon_sym_null] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [aux_sym__val_number_decimal_token1] = ACTIONS(3368), + [aux_sym__val_number_decimal_token2] = ACTIONS(3370), + [aux_sym__val_number_decimal_token3] = ACTIONS(3372), + [aux_sym__val_number_decimal_token4] = ACTIONS(3374), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3376), + [aux_sym__val_number_token5] = ACTIONS(3376), + [aux_sym__val_number_token6] = ACTIONS(3376), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1097] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(3499), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3357), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3103), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1097), + [1084] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2512), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2283), + [sym__unquoted_with_expr] = STATE(2522), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1084), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1085] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3717), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1883), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1085), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3219), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3221), - [anon_sym_DOT_DOT_LT] = ACTIONS(3221), - [anon_sym_null] = ACTIONS(3223), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [aux_sym__val_number_decimal_token1] = ACTIONS(3227), - [aux_sym__val_number_decimal_token2] = ACTIONS(3229), - [aux_sym__val_number_decimal_token3] = ACTIONS(3231), - [aux_sym__val_number_decimal_token4] = ACTIONS(3233), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3235), - [aux_sym__val_number_token5] = ACTIONS(3235), - [aux_sym__val_number_token6] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3237), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1098] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2643), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2363), - [sym__unquoted_with_expr] = STATE(2607), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1098), + [1086] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2457), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2288), + [sym__unquoted_with_expr] = STATE(2460), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1086), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1099] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2577), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2322), - [sym__unquoted_with_expr] = STATE(2620), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1099), + [1087] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2463), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2293), + [sym__unquoted_with_expr] = STATE(2468), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1087), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1100] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4184), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1100), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1101] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4185), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1101), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1102] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4186), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1102), + [1088] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3713), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2092), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1088), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1103] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4187), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1103), + [1089] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3742), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1089), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1104] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4188), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1104), + [1090] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3716), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1090), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1105] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4189), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1105), + [1091] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3727), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1091), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1106] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4190), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1106), + [1092] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2403), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2092), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1092), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1107] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4172), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1107), + [1093] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3359), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1845), + [sym__unquoted_with_expr] = STATE(2094), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1093), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1108] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2256), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1108), + [1094] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2404), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1094), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1109] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4207), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1109), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [1095] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2540), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2266), + [sym__unquoted_with_expr] = STATE(2544), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1095), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [1110] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4192), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1110), + [1096] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3358), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1842), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1096), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1111] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2492), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1111), + [1097] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2406), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1097), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1112] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4194), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1112), + [1098] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2407), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1098), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1113] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2628), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2358), - [sym__unquoted_with_expr] = STATE(2662), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1113), + [1099] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2545), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2268), + [sym__unquoted_with_expr] = STATE(2552), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1099), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1114] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2671), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2366), - [sym__unquoted_with_expr] = STATE(2597), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1114), + [1100] = { + [sym_ctrl_do] = STATE(4648), + [sym_ctrl_if] = STATE(4648), + [sym_ctrl_match] = STATE(4648), + [sym_ctrl_try] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_comment] = STATE(1100), + [sym__newline] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_match] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3388), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [aux_sym__val_number_decimal_token1] = ACTIONS(3394), + [aux_sym__val_number_decimal_token2] = ACTIONS(3396), + [aux_sym__val_number_decimal_token3] = ACTIONS(3398), + [aux_sym__val_number_decimal_token4] = ACTIONS(3400), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_COLON2] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1101] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2491), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2274), + [sym__unquoted_with_expr] = STATE(2498), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1101), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1115] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4204), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1115), + [1102] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2408), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1102), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1116] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4173), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1116), + [1103] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2409), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1103), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1117] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4191), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1117), + [1104] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2410), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1104), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1118] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4175), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1118), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [1105] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2536), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2284), + [sym__unquoted_with_expr] = STATE(2448), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1105), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [1119] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4176), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2004), - [sym__unquoted_with_expr] = STATE(2250), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1119), + [1106] = { + [sym_ctrl_do] = STATE(4648), + [sym_ctrl_if] = STATE(4648), + [sym_ctrl_match] = STATE(4648), + [sym_ctrl_try] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_comment] = STATE(1106), + [sym__newline] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_match] = ACTIONS(3386), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [aux_sym__val_number_decimal_token1] = ACTIONS(3394), + [aux_sym__val_number_decimal_token2] = ACTIONS(3396), + [aux_sym__val_number_decimal_token3] = ACTIONS(3398), + [aux_sym__val_number_decimal_token4] = ACTIONS(3400), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_COLON2] = ACTIONS(3404), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1120] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4178), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2008), - [sym__unquoted_with_expr] = STATE(2252), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1120), + [1107] = { + [sym_expr_parenthesized] = STATE(1574), + [sym_val_range] = STATE(1835), + [sym__val_range] = STATE(7569), + [sym__val_range_with_end] = STATE(7233), + [sym__value] = STATE(1835), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1552), + [sym_val_variable] = STATE(1508), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1257), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_short_flag] = STATE(1835), + [sym_long_flag] = STATE(1835), + [sym_unquoted] = STATE(1668), + [sym__unquoted_with_expr] = STATE(1893), + [sym__unquoted_anonymous_prefix] = STATE(6652), + [sym_comment] = STATE(1107), + [aux_sym_shebang_repeat1] = STATE(2876), + [sym__newline] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DASH2] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2640), + [anon_sym_DOT_DOT_LT] = ACTIONS(2640), + [anon_sym_null] = ACTIONS(2642), + [anon_sym_true] = ACTIONS(2644), + [anon_sym_false] = ACTIONS(2644), + [aux_sym__val_number_decimal_token1] = ACTIONS(2646), + [aux_sym__val_number_decimal_token2] = ACTIONS(2648), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2652), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(2656), + [aux_sym__val_number_token5] = ACTIONS(2656), + [aux_sym__val_number_token6] = ACTIONS(2656), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), + }, + [1108] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2451), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2287), + [sym__unquoted_with_expr] = STATE(2456), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1108), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1109] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2099), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1109), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1121] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4182), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2009), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1121), + [1110] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2549), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2272), + [sym__unquoted_with_expr] = STATE(2488), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1110), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1111] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2411), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1871), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1111), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1122] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4199), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1122), + [1112] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2412), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1873), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1112), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1123] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2256), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2011), - [sym__unquoted_with_expr] = STATE(2257), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1123), + [1113] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2413), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1876), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1113), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1124] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4201), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2012), - [sym__unquoted_with_expr] = STATE(2259), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1124), + [1114] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(2414), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2114), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(1518), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1883), + [sym__unquoted_with_expr] = STATE(2104), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1114), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3234), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3236), + [anon_sym_DOT_DOT_LT] = ACTIONS(3236), + [anon_sym_null] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [aux_sym__val_number_decimal_token1] = ACTIONS(3242), + [aux_sym__val_number_decimal_token2] = ACTIONS(3244), + [aux_sym__val_number_decimal_token3] = ACTIONS(3246), + [aux_sym__val_number_decimal_token4] = ACTIONS(3248), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3250), + [aux_sym__val_number_token5] = ACTIONS(3250), + [aux_sym__val_number_token6] = ACTIONS(3250), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1125] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4179), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2013), - [sym__unquoted_with_expr] = STATE(2260), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1125), + [1115] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3745), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2073), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1115), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1126] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4180), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1126), + [1116] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3719), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1860), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1116), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1127] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4181), - [sym_expr_parenthesized] = STATE(3873), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(3898), - [sym_val_variable] = STATE(3942), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3629), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1127), + [1117] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3733), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1861), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1117), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3481), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_LT] = ACTIONS(3263), - [anon_sym_null] = ACTIONS(3265), - [anon_sym_true] = ACTIONS(3267), - [anon_sym_false] = ACTIONS(3267), - [aux_sym__val_number_decimal_token1] = ACTIONS(3269), - [aux_sym__val_number_decimal_token2] = ACTIONS(3271), - [aux_sym__val_number_decimal_token3] = ACTIONS(3273), - [aux_sym__val_number_decimal_token4] = ACTIONS(3275), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3277), - [aux_sym__val_number_token5] = ACTIONS(3277), - [aux_sym__val_number_token6] = ACTIONS(3277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1128] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2605), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2418), - [sym__unquoted_with_expr] = STATE(2616), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1128), + [1118] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3396), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2252), + [sym__unquoted_with_expr] = STATE(2529), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1118), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1129] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2675), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2371), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(1645), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2422), - [sym__unquoted_with_expr] = STATE(2625), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1129), + [1119] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3399), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2257), + [sym__unquoted_with_expr] = STATE(2532), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1119), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3437), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3439), - [anon_sym_DOT_DOT_LT] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3453), - [aux_sym__val_number_token5] = ACTIONS(3453), - [aux_sym__val_number_token6] = ACTIONS(3453), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3455), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1130] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3525), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2403), - [sym__unquoted_with_expr] = STATE(2603), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1130), + [1120] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3401), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2262), + [sym__unquoted_with_expr] = STATE(2539), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1120), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1131] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3526), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2277), - [sym__unquoted_with_expr] = STATE(2665), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1131), + [1121] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3402), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2266), + [sym__unquoted_with_expr] = STATE(2544), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1121), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1132] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3528), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2311), - [sym__unquoted_with_expr] = STATE(2573), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1132), + [1122] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3405), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2268), + [sym__unquoted_with_expr] = STATE(2552), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1122), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1133] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3529), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2340), - [sym__unquoted_with_expr] = STATE(2571), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1133), + [1123] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3407), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2272), + [sym__unquoted_with_expr] = STATE(2488), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1123), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1134] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3530), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2406), - [sym__unquoted_with_expr] = STATE(2642), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1134), + [1124] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3410), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2274), + [sym__unquoted_with_expr] = STATE(2498), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1124), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1125] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3411), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2275), + [sym__unquoted_with_expr] = STATE(2508), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1125), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1135] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3531), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2423), - [sym__unquoted_with_expr] = STATE(2651), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1135), + [1126] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2512), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2283), + [sym__unquoted_with_expr] = STATE(2522), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1126), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1136] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3532), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2302), - [sym__unquoted_with_expr] = STATE(2656), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1136), + [1127] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3412), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2284), + [sym__unquoted_with_expr] = STATE(2448), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1127), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1137] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3533), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2363), - [sym__unquoted_with_expr] = STATE(2607), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1137), + [1128] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3413), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2287), + [sym__unquoted_with_expr] = STATE(2456), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1128), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1138] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(2577), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2322), - [sym__unquoted_with_expr] = STATE(2620), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1138), + [1129] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3398), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2288), + [sym__unquoted_with_expr] = STATE(2460), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1129), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3406), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3424), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1139] = { - [sym_ctrl_do] = STATE(5075), - [sym_ctrl_if] = STATE(5075), - [sym_ctrl_match] = STATE(5075), - [sym_ctrl_try] = STATE(5075), - [sym__expression] = STATE(5075), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3307), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_comment] = STATE(1139), - [sym__newline] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [1130] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(3406), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(3264), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2293), + [sym__unquoted_with_expr] = STATE(2468), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1130), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_LT] = ACTIONS(3408), + [anon_sym_null] = ACTIONS(3410), + [anon_sym_true] = ACTIONS(3412), + [anon_sym_false] = ACTIONS(3412), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3422), + [aux_sym__val_number_token5] = ACTIONS(3422), + [aux_sym__val_number_token6] = ACTIONS(3422), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1131] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3728), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3536), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1131), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3493), + [anon_sym_DOT_DOT] = ACTIONS(3214), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3216), + [anon_sym_DOT_DOT_LT] = ACTIONS(3216), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_true] = ACTIONS(3220), + [anon_sym_false] = ACTIONS(3220), + [aux_sym__val_number_decimal_token1] = ACTIONS(3222), + [aux_sym__val_number_decimal_token2] = ACTIONS(3224), + [aux_sym__val_number_decimal_token3] = ACTIONS(3226), + [aux_sym__val_number_decimal_token4] = ACTIONS(3228), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3230), + [aux_sym__val_number_token5] = ACTIONS(3230), + [aux_sym__val_number_token6] = ACTIONS(3230), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3499), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1140] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4119), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3855), - [sym__unquoted_with_expr] = STATE(4162), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1140), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1141] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4085), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3864), - [sym__unquoted_with_expr] = STATE(4090), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1141), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1142] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4130), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3900), - [sym__unquoted_with_expr] = STATE(4135), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1142), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1143] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4102), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3880), - [sym__unquoted_with_expr] = STATE(4103), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1143), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1144] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4123), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3844), - [sym__unquoted_with_expr] = STATE(4125), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1144), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1145] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4136), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3903), - [sym__unquoted_with_expr] = STATE(4138), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1145), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1146] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4139), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3913), - [sym__unquoted_with_expr] = STATE(4140), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1146), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), + [sym_raw_string_begin] = ACTIONS(253), }, - [1147] = { - [sym_ctrl_do] = STATE(5075), - [sym_ctrl_if] = STATE(5075), - [sym_ctrl_match] = STATE(5075), - [sym_ctrl_try] = STATE(5075), - [sym__expression] = STATE(5075), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3307), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_comment] = STATE(1147), - [sym__newline] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [1132] = { + [sym_expr_unary] = STATE(2091), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2091), + [sym__expr_binary_expression] = STATE(3357), + [sym_expr_parenthesized] = STATE(1837), + [sym_val_range] = STATE(2091), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(2091), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(3239), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3015), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(1839), + [sym__unquoted_with_expr] = STATE(2092), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1132), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3493), + [anon_sym_DOT_DOT] = ACTIONS(3192), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_LT] = ACTIONS(3194), + [anon_sym_null] = ACTIONS(3196), + [anon_sym_true] = ACTIONS(3198), + [anon_sym_false] = ACTIONS(3198), + [aux_sym__val_number_decimal_token1] = ACTIONS(3200), + [aux_sym__val_number_decimal_token2] = ACTIONS(3202), + [aux_sym__val_number_decimal_token3] = ACTIONS(3204), + [aux_sym__val_number_decimal_token4] = ACTIONS(3206), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3208), + [aux_sym__val_number_token5] = ACTIONS(3208), + [aux_sym__val_number_token6] = ACTIONS(3208), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3501), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1148] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4145), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3917), - [sym__unquoted_with_expr] = STATE(4146), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1148), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1149] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4147), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3918), - [sym__unquoted_with_expr] = STATE(4160), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1149), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), + [sym_raw_string_begin] = ACTIONS(253), }, - [1150] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3534), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2358), - [sym__unquoted_with_expr] = STATE(2662), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1150), + [1133] = { + [sym_expr_unary] = STATE(2524), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2524), + [sym__expr_binary_expression] = STATE(2534), + [sym_expr_parenthesized] = STATE(2084), + [sym_val_range] = STATE(2524), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(2524), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2286), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(1614), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(2262), + [sym__unquoted_with_expr] = STATE(2539), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1133), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3338), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_LT] = ACTIONS(3340), + [anon_sym_null] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3344), + [anon_sym_false] = ACTIONS(3344), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(3354), + [aux_sym__val_number_token5] = ACTIONS(3354), + [aux_sym__val_number_token6] = ACTIONS(3354), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(3356), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1151] = { - [sym_expr_unary] = STATE(2584), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2584), - [sym__expr_binary_expression] = STATE(3535), - [sym_expr_parenthesized] = STATE(2191), - [sym_val_range] = STATE(2584), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(2584), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(3368), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3222), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(2366), - [sym__unquoted_with_expr] = STATE(2597), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1151), + [1134] = { + [sym_ctrl_do] = STATE(4815), + [sym_ctrl_if] = STATE(4815), + [sym_ctrl_match] = STATE(4815), + [sym_ctrl_try] = STATE(4815), + [sym__expression] = STATE(4815), + [sym_expr_unary] = STATE(2447), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_binary] = STATE(2447), + [sym__expr_binary_expression] = STATE(3758), + [sym_expr_parenthesized] = STATE(2107), + [sym_val_range] = STATE(2447), + [sym__value] = STATE(2447), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(2526), + [sym_val_variable] = STATE(2112), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3211), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_comment] = STATE(1134), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym__newline] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_match] = ACTIONS(3430), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(3432), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_LT] = ACTIONS(3417), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(3434), + [anon_sym_true] = ACTIONS(3436), + [anon_sym_false] = ACTIONS(3436), + [aux_sym__val_number_decimal_token1] = ACTIONS(3346), + [aux_sym__val_number_decimal_token2] = ACTIONS(3348), + [aux_sym__val_number_decimal_token3] = ACTIONS(3350), + [aux_sym__val_number_decimal_token4] = ACTIONS(3352), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3431), - [aux_sym__val_number_token5] = ACTIONS(3431), - [aux_sym__val_number_token6] = ACTIONS(3431), + [aux_sym__val_number_token4] = ACTIONS(99), + [aux_sym__val_number_token5] = ACTIONS(99), + [aux_sym__val_number_token6] = ACTIONS(99), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3433), + [sym_val_date] = ACTIONS(107), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1152] = { - [sym_expr_unary] = STATE(4129), - [sym__expr_unary_minus] = STATE(4168), - [sym_expr_binary] = STATE(4129), - [sym__expr_binary_expression] = STATE(4161), - [sym_expr_parenthesized] = STATE(3809), - [sym_val_range] = STATE(4129), - [sym__val_range] = STATE(8529), - [sym__val_range_with_end] = STATE(8139), - [sym__value] = STATE(4129), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(3944), - [sym_val_variable] = STATE(3820), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(3583), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3753), - [sym__str_double_quotes] = STATE(3753), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(3859), - [sym__unquoted_with_expr] = STATE(4128), - [sym__unquoted_anonymous_prefix] = STATE(7348), - [sym_comment] = STATE(1152), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_DOLLAR] = ACTIONS(3369), - [anon_sym_DASH2] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [aux_sym_expr_unary_token1] = ACTIONS(3377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_LT] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [aux_sym__val_number_decimal_token1] = ACTIONS(3385), - [aux_sym__val_number_decimal_token2] = ACTIONS(3387), - [aux_sym__val_number_decimal_token3] = ACTIONS(3389), - [aux_sym__val_number_decimal_token4] = ACTIONS(3391), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(3395), - [aux_sym__val_number_token5] = ACTIONS(3395), - [aux_sym__val_number_token6] = ACTIONS(3395), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym__str_single_quotes] = ACTIONS(3405), - [sym__str_back_ticks] = ACTIONS(3405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3413), - }, - [1153] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2487), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1153), + [1135] = { + [sym_ctrl_do] = STATE(4648), + [sym_ctrl_if] = STATE(4648), + [sym_ctrl_match] = STATE(4648), + [sym_ctrl_try] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_comment] = STATE(1135), + [sym__newline] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(3380), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3386), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [aux_sym__val_number_decimal_token1] = ACTIONS(3394), + [aux_sym__val_number_decimal_token2] = ACTIONS(3396), + [aux_sym__val_number_decimal_token3] = ACTIONS(3398), + [aux_sym__val_number_decimal_token4] = ACTIONS(3400), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1154] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2488), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2233), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1154), + [1136] = { + [sym_ctrl_do] = STATE(4648), + [sym_ctrl_if] = STATE(4648), + [sym_ctrl_match] = STATE(4648), + [sym_ctrl_try] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_comment] = STATE(1136), + [sym__newline] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_match] = ACTIONS(3386), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1155] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(2490), - [sym_expr_parenthesized] = STATE(2161), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2207), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(1560), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2002), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1155), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1156] = { - [sym_expr_unary] = STATE(2228), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2228), - [sym__expr_binary_expression] = STATE(4193), - [sym_expr_parenthesized] = STATE(3939), - [sym_val_range] = STATE(2228), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(2228), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4057), - [sym_val_variable] = STATE(3937), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3630), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1156), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3459), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3461), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3463), - [anon_sym_DOT_DOT_LT] = ACTIONS(3463), - [anon_sym_null] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [aux_sym__val_number_decimal_token1] = ACTIONS(3469), - [aux_sym__val_number_decimal_token2] = ACTIONS(3471), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3475), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3477), - [aux_sym__val_number_token5] = ACTIONS(3477), - [aux_sym__val_number_token6] = ACTIONS(3477), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1157] = { - [sym_ctrl_do] = STATE(5075), - [sym_ctrl_if] = STATE(5075), - [sym_ctrl_match] = STATE(5075), - [sym_ctrl_try] = STATE(5075), - [sym__expression] = STATE(5075), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3307), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_comment] = STATE(1157), - [sym__newline] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3489), - [anon_sym_match] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [aux_sym__val_number_decimal_token1] = ACTIONS(3394), + [aux_sym__val_number_decimal_token2] = ACTIONS(3396), + [aux_sym__val_number_decimal_token3] = ACTIONS(3398), + [aux_sym__val_number_decimal_token4] = ACTIONS(3400), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [1158] = { - [sym_ctrl_do] = STATE(5075), - [sym_ctrl_if] = STATE(5075), - [sym_ctrl_match] = STATE(5075), - [sym_ctrl_try] = STATE(5075), - [sym__expression] = STATE(5075), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3307), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_comment] = STATE(1158), - [sym__newline] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [1137] = { + [sym_expr_unary] = STATE(4250), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_parenthesized] = STATE(3911), + [sym_val_range] = STATE(4250), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(4250), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(4003), + [sym_val_variable] = STATE(3929), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3787), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(3994), + [sym__unquoted_with_expr] = STATE(4256), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1137), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3503), - [anon_sym_match] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(3442), + [aux_sym_expr_unary_token1] = ACTIONS(3444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3446), + [anon_sym_DOT_DOT_LT] = ACTIONS(3446), + [anon_sym_null] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3450), + [anon_sym_false] = ACTIONS(3450), + [aux_sym__val_number_decimal_token1] = ACTIONS(3452), + [aux_sym__val_number_decimal_token2] = ACTIONS(3454), + [aux_sym__val_number_decimal_token3] = ACTIONS(3456), + [aux_sym__val_number_decimal_token4] = ACTIONS(3458), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3460), + [aux_sym__val_number_token5] = ACTIONS(3460), + [aux_sym__val_number_token6] = ACTIONS(3460), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), }, - [1159] = { - [sym_ctrl_do] = STATE(5348), - [sym_ctrl_if] = STATE(5348), - [sym_ctrl_match] = STATE(5348), - [sym_ctrl_try] = STATE(5348), - [sym__expression] = STATE(5348), - [sym_expr_unary] = STATE(2641), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_binary] = STATE(2641), - [sym__expr_binary_expression] = STATE(4216), - [sym_expr_parenthesized] = STATE(2267), - [sym_val_range] = STATE(2641), - [sym__value] = STATE(2641), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(2666), - [sym_val_variable] = STATE(2184), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(3326), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_comment] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym__newline] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [1138] = { + [sym_expr_unary] = STATE(4301), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_parenthesized] = STATE(3951), + [sym_val_range] = STATE(4301), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(4301), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(4051), + [sym_val_variable] = STATE(3981), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3813), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(4101), + [sym__unquoted_with_expr] = STATE(4303), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1138), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(3464), [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_match] = ACTIONS(3509), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3511), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(3513), - [anon_sym_true] = ACTIONS(3515), - [anon_sym_false] = ACTIONS(3515), - [aux_sym__val_number_decimal_token1] = ACTIONS(3445), - [aux_sym__val_number_decimal_token2] = ACTIONS(3447), - [aux_sym__val_number_decimal_token3] = ACTIONS(3449), - [aux_sym__val_number_decimal_token4] = ACTIONS(3451), + [anon_sym_DOT_DOT] = ACTIONS(3466), + [aux_sym_expr_unary_token1] = ACTIONS(3468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3470), + [anon_sym_DOT_DOT_LT] = ACTIONS(3470), + [anon_sym_null] = ACTIONS(3472), + [anon_sym_true] = ACTIONS(3474), + [anon_sym_false] = ACTIONS(3474), + [aux_sym__val_number_decimal_token1] = ACTIONS(3476), + [aux_sym__val_number_decimal_token2] = ACTIONS(3478), + [aux_sym__val_number_decimal_token3] = ACTIONS(3480), + [aux_sym__val_number_decimal_token4] = ACTIONS(3482), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(99), - [aux_sym__val_number_token5] = ACTIONS(99), - [aux_sym__val_number_token6] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3484), + [aux_sym__val_number_token5] = ACTIONS(3484), + [aux_sym__val_number_token6] = ACTIONS(3484), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), + [sym_val_date] = ACTIONS(3486), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1160] = { - [sym_expr_unary] = STATE(4788), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_parenthesized] = STATE(4470), - [sym_val_range] = STATE(4788), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(4788), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(4574), - [sym_val_variable] = STATE(4415), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(4274), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(4560), - [sym__unquoted_with_expr] = STATE(4808), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1160), + [1139] = { + [sym_expr_unary] = STATE(4378), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_parenthesized] = STATE(3950), + [sym_val_range] = STATE(4378), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(4378), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(4051), + [sym_val_variable] = STATE(3981), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3813), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(4098), + [sym__unquoted_with_expr] = STATE(4300), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1139), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_DOLLAR] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(3464), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3521), - [aux_sym_expr_unary_token1] = ACTIONS(3523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_null] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3529), - [anon_sym_false] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [anon_sym_DOT_DOT] = ACTIONS(3466), + [aux_sym_expr_unary_token1] = ACTIONS(3468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3470), + [anon_sym_DOT_DOT_LT] = ACTIONS(3470), + [anon_sym_null] = ACTIONS(3472), + [anon_sym_true] = ACTIONS(3474), + [anon_sym_false] = ACTIONS(3474), + [aux_sym__val_number_decimal_token1] = ACTIONS(3476), + [aux_sym__val_number_decimal_token2] = ACTIONS(3478), + [aux_sym__val_number_decimal_token3] = ACTIONS(3480), + [aux_sym__val_number_decimal_token4] = ACTIONS(3482), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3539), - [aux_sym__val_number_token5] = ACTIONS(3539), - [aux_sym__val_number_token6] = ACTIONS(3539), + [aux_sym__val_number_token4] = ACTIONS(3484), + [aux_sym__val_number_token5] = ACTIONS(3484), + [aux_sym__val_number_token6] = ACTIONS(3484), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3541), + [sym_val_date] = ACTIONS(3486), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1161] = { - [sym_expr_unary] = STATE(4830), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_parenthesized] = STATE(4424), - [sym_val_range] = STATE(4830), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(4830), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(4574), - [sym_val_variable] = STATE(4415), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(4274), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(4501), - [sym__unquoted_with_expr] = STATE(4863), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1161), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_DOLLAR] = ACTIONS(3519), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3521), - [aux_sym_expr_unary_token1] = ACTIONS(3523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_null] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3529), - [anon_sym_false] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3539), - [aux_sym__val_number_token5] = ACTIONS(3539), - [aux_sym__val_number_token6] = ACTIONS(3539), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [1140] = { + [sym_comment] = STATE(1140), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1140), + [aux_sym_cmd_identifier_token1] = ACTIONS(3488), + [aux_sym_cmd_identifier_token2] = ACTIONS(3488), + [aux_sym_cmd_identifier_token3] = ACTIONS(3488), + [aux_sym_cmd_identifier_token4] = ACTIONS(3488), + [aux_sym_cmd_identifier_token5] = ACTIONS(3488), + [aux_sym_cmd_identifier_token6] = ACTIONS(3488), + [aux_sym_cmd_identifier_token7] = ACTIONS(3488), + [aux_sym_cmd_identifier_token8] = ACTIONS(3488), + [aux_sym_cmd_identifier_token9] = ACTIONS(3488), + [aux_sym_cmd_identifier_token10] = ACTIONS(3488), + [aux_sym_cmd_identifier_token11] = ACTIONS(3488), + [aux_sym_cmd_identifier_token12] = ACTIONS(3488), + [aux_sym_cmd_identifier_token13] = ACTIONS(3488), + [aux_sym_cmd_identifier_token14] = ACTIONS(3488), + [aux_sym_cmd_identifier_token15] = ACTIONS(3488), + [aux_sym_cmd_identifier_token16] = ACTIONS(3488), + [aux_sym_cmd_identifier_token17] = ACTIONS(3488), + [aux_sym_cmd_identifier_token18] = ACTIONS(3488), + [aux_sym_cmd_identifier_token19] = ACTIONS(3488), + [aux_sym_cmd_identifier_token20] = ACTIONS(3488), + [aux_sym_cmd_identifier_token21] = ACTIONS(3488), + [aux_sym_cmd_identifier_token22] = ACTIONS(3488), + [aux_sym_cmd_identifier_token23] = ACTIONS(3488), + [aux_sym_cmd_identifier_token24] = ACTIONS(3488), + [aux_sym_cmd_identifier_token25] = ACTIONS(3488), + [aux_sym_cmd_identifier_token26] = ACTIONS(3488), + [aux_sym_cmd_identifier_token27] = ACTIONS(3488), + [aux_sym_cmd_identifier_token28] = ACTIONS(3488), + [aux_sym_cmd_identifier_token29] = ACTIONS(3488), + [aux_sym_cmd_identifier_token30] = ACTIONS(3488), + [aux_sym_cmd_identifier_token31] = ACTIONS(3488), + [aux_sym_cmd_identifier_token32] = ACTIONS(3488), + [aux_sym_cmd_identifier_token33] = ACTIONS(3488), + [aux_sym_cmd_identifier_token34] = ACTIONS(3488), + [aux_sym_cmd_identifier_token35] = ACTIONS(3488), + [aux_sym_cmd_identifier_token36] = ACTIONS(3488), + [aux_sym_cmd_identifier_token37] = ACTIONS(3488), + [aux_sym_cmd_identifier_token38] = ACTIONS(3488), + [aux_sym_cmd_identifier_token39] = ACTIONS(3488), + [aux_sym_cmd_identifier_token40] = ACTIONS(3488), + [sym__newline] = ACTIONS(3490), + [sym__space] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_DOLLAR] = ACTIONS(3488), + [anon_sym_DASH2] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_DOT_DOT] = ACTIONS(3488), + [aux_sym_expr_unary_token1] = ACTIONS(3488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3488), + [anon_sym_DOT_DOT_LT] = ACTIONS(3488), + [anon_sym_null] = ACTIONS(3488), + [anon_sym_true] = ACTIONS(3488), + [anon_sym_false] = ACTIONS(3488), + [aux_sym__val_number_decimal_token1] = ACTIONS(3488), + [aux_sym__val_number_decimal_token2] = ACTIONS(3488), + [aux_sym__val_number_decimal_token3] = ACTIONS(3488), + [aux_sym__val_number_decimal_token4] = ACTIONS(3488), + [aux_sym__val_number_token1] = ACTIONS(3488), + [aux_sym__val_number_token2] = ACTIONS(3488), + [aux_sym__val_number_token3] = ACTIONS(3488), + [aux_sym__val_number_token4] = ACTIONS(3488), + [aux_sym__val_number_token5] = ACTIONS(3488), + [aux_sym__val_number_token6] = ACTIONS(3488), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3488), + [anon_sym_0x] = ACTIONS(3488), + [sym_val_date] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym__str_single_quotes] = ACTIONS(3488), + [sym__str_back_ticks] = ACTIONS(3488), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3488), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3488), + [aux_sym_env_var_token1] = ACTIONS(3488), + [anon_sym_CARET] = ACTIONS(3488), + [aux_sym_command_token1] = ACTIONS(3488), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3496), }, - [1162] = { - [sym_expr_unary] = STATE(4836), - [sym__expr_unary_minus] = STATE(2649), - [sym_expr_parenthesized] = STATE(4445), - [sym_val_range] = STATE(4836), - [sym__val_range] = STATE(8443), - [sym__val_range_with_end] = STATE(8091), - [sym__value] = STATE(4836), - [sym_val_nothing] = STATE(2666), - [sym_val_bool] = STATE(4574), - [sym_val_variable] = STATE(4415), - [sym_val_number] = STATE(2666), - [sym__val_number_decimal] = STATE(4274), - [sym__val_number] = STATE(2658), - [sym_val_duration] = STATE(2666), - [sym_val_filesize] = STATE(2666), - [sym_val_binary] = STATE(2666), - [sym_val_string] = STATE(2666), - [sym__raw_str] = STATE(2190), - [sym__str_double_quotes] = STATE(2190), - [sym_val_interpolated] = STATE(2666), - [sym__inter_single_quotes] = STATE(2621), - [sym__inter_double_quotes] = STATE(2630), - [sym_val_list] = STATE(2666), - [sym_val_record] = STATE(2666), - [sym_val_table] = STATE(2666), - [sym_val_closure] = STATE(2666), - [sym_unquoted] = STATE(4493), - [sym__unquoted_with_expr] = STATE(4859), - [sym__unquoted_anonymous_prefix] = STATE(7521), - [sym_comment] = STATE(1162), + [1141] = { + [sym_expr_unary] = STATE(4362), + [sym__expr_unary_minus] = STATE(2450), + [sym_expr_parenthesized] = STATE(3947), + [sym_val_range] = STATE(4362), + [sym__val_range] = STATE(7514), + [sym__val_range_with_end] = STATE(7325), + [sym__value] = STATE(4362), + [sym_val_nothing] = STATE(2526), + [sym_val_bool] = STATE(4051), + [sym_val_variable] = STATE(3981), + [sym_val_number] = STATE(2526), + [sym__val_number_decimal] = STATE(3813), + [sym__val_number] = STATE(2458), + [sym_val_duration] = STATE(2526), + [sym_val_filesize] = STATE(2526), + [sym_val_binary] = STATE(2526), + [sym_val_string] = STATE(2526), + [sym__raw_str] = STATE(1812), + [sym__str_double_quotes] = STATE(1812), + [sym_val_interpolated] = STATE(2526), + [sym__inter_single_quotes] = STATE(2480), + [sym__inter_double_quotes] = STATE(2486), + [sym_val_list] = STATE(2526), + [sym_val_record] = STATE(2526), + [sym_val_table] = STATE(2526), + [sym_val_closure] = STATE(2526), + [sym_unquoted] = STATE(4090), + [sym__unquoted_with_expr] = STATE(4377), + [sym__unquoted_anonymous_prefix] = STATE(6916), + [sym_comment] = STATE(1141), [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_DOLLAR] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(3464), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3521), - [aux_sym_expr_unary_token1] = ACTIONS(3523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_null] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3529), - [anon_sym_false] = ACTIONS(3529), - [aux_sym__val_number_decimal_token1] = ACTIONS(3531), - [aux_sym__val_number_decimal_token2] = ACTIONS(3533), - [aux_sym__val_number_decimal_token3] = ACTIONS(3535), - [aux_sym__val_number_decimal_token4] = ACTIONS(3537), + [anon_sym_DOT_DOT] = ACTIONS(3466), + [aux_sym_expr_unary_token1] = ACTIONS(3468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3470), + [anon_sym_DOT_DOT_LT] = ACTIONS(3470), + [anon_sym_null] = ACTIONS(3472), + [anon_sym_true] = ACTIONS(3474), + [anon_sym_false] = ACTIONS(3474), + [aux_sym__val_number_decimal_token1] = ACTIONS(3476), + [aux_sym__val_number_decimal_token2] = ACTIONS(3478), + [aux_sym__val_number_decimal_token3] = ACTIONS(3480), + [aux_sym__val_number_decimal_token4] = ACTIONS(3482), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3539), - [aux_sym__val_number_token5] = ACTIONS(3539), - [aux_sym__val_number_token6] = ACTIONS(3539), + [aux_sym__val_number_token4] = ACTIONS(3484), + [aux_sym__val_number_token5] = ACTIONS(3484), + [aux_sym__val_number_token6] = ACTIONS(3484), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3541), + [sym_val_date] = ACTIONS(3486), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3435), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3358), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1163] = { - [sym_expr_unary] = STATE(4721), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_parenthesized] = STATE(4381), - [sym_val_range] = STATE(4721), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(4721), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4453), - [sym_val_variable] = STATE(4389), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(4251), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(4464), - [sym__unquoted_with_expr] = STATE(4724), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1163), + [1142] = { + [sym_expr_unary] = STATE(4106), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_parenthesized] = STATE(3892), + [sym_val_range] = STATE(4106), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(4106), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(4003), + [sym_val_variable] = STATE(3929), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3787), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(3999), + [sym__unquoted_with_expr] = STATE(4262), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1142), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [aux_sym_expr_unary_token1] = ACTIONS(3549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), - [anon_sym_DOT_DOT_LT] = ACTIONS(3551), - [anon_sym_null] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3555), - [anon_sym_false] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3565), - [aux_sym__val_number_token5] = ACTIONS(3565), - [aux_sym__val_number_token6] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(3442), + [aux_sym_expr_unary_token1] = ACTIONS(3444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3446), + [anon_sym_DOT_DOT_LT] = ACTIONS(3446), + [anon_sym_null] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3450), + [anon_sym_false] = ACTIONS(3450), + [aux_sym__val_number_decimal_token1] = ACTIONS(3452), + [aux_sym__val_number_decimal_token2] = ACTIONS(3454), + [aux_sym__val_number_decimal_token3] = ACTIONS(3456), + [aux_sym__val_number_decimal_token4] = ACTIONS(3458), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3460), + [aux_sym__val_number_token5] = ACTIONS(3460), + [aux_sym__val_number_token6] = ACTIONS(3460), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3567), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1164] = { - [sym_expr_unary] = STATE(4708), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_parenthesized] = STATE(4375), - [sym_val_range] = STATE(4708), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(4708), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4453), - [sym_val_variable] = STATE(4389), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(4251), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(4440), - [sym__unquoted_with_expr] = STATE(4719), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1164), + [1143] = { + [sym_expr_unary] = STATE(4245), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_parenthesized] = STATE(3908), + [sym_val_range] = STATE(4245), + [sym__val_range] = STATE(7459), + [sym__val_range_with_end] = STATE(7221), + [sym__value] = STATE(4245), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(4003), + [sym_val_variable] = STATE(3929), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3787), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(3985), + [sym__unquoted_with_expr] = STATE(4248), + [sym__unquoted_anonymous_prefix] = STATE(7198), + [sym_comment] = STATE(1143), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3440), + [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [aux_sym_expr_unary_token1] = ACTIONS(3549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), - [anon_sym_DOT_DOT_LT] = ACTIONS(3551), - [anon_sym_null] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3555), - [anon_sym_false] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3565), - [aux_sym__val_number_token5] = ACTIONS(3565), - [aux_sym__val_number_token6] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(3442), + [aux_sym_expr_unary_token1] = ACTIONS(3444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3446), + [anon_sym_DOT_DOT_LT] = ACTIONS(3446), + [anon_sym_null] = ACTIONS(3448), + [anon_sym_true] = ACTIONS(3450), + [anon_sym_false] = ACTIONS(3450), + [aux_sym__val_number_decimal_token1] = ACTIONS(3452), + [aux_sym__val_number_decimal_token2] = ACTIONS(3454), + [aux_sym__val_number_decimal_token3] = ACTIONS(3456), + [aux_sym__val_number_decimal_token4] = ACTIONS(3458), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3460), + [aux_sym__val_number_token5] = ACTIONS(3460), + [aux_sym__val_number_token6] = ACTIONS(3460), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3567), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1165] = { - [sym_comment] = STATE(1165), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1168), - [aux_sym_cmd_identifier_token1] = ACTIONS(3569), - [aux_sym_cmd_identifier_token2] = ACTIONS(3569), - [aux_sym_cmd_identifier_token3] = ACTIONS(3569), - [aux_sym_cmd_identifier_token4] = ACTIONS(3569), - [aux_sym_cmd_identifier_token5] = ACTIONS(3569), - [aux_sym_cmd_identifier_token6] = ACTIONS(3569), - [aux_sym_cmd_identifier_token7] = ACTIONS(3569), - [aux_sym_cmd_identifier_token8] = ACTIONS(3569), - [aux_sym_cmd_identifier_token9] = ACTIONS(3569), - [aux_sym_cmd_identifier_token10] = ACTIONS(3569), - [aux_sym_cmd_identifier_token11] = ACTIONS(3569), - [aux_sym_cmd_identifier_token12] = ACTIONS(3569), - [aux_sym_cmd_identifier_token13] = ACTIONS(3569), - [aux_sym_cmd_identifier_token14] = ACTIONS(3569), - [aux_sym_cmd_identifier_token15] = ACTIONS(3569), - [aux_sym_cmd_identifier_token16] = ACTIONS(3569), - [aux_sym_cmd_identifier_token17] = ACTIONS(3569), - [aux_sym_cmd_identifier_token18] = ACTIONS(3569), - [aux_sym_cmd_identifier_token19] = ACTIONS(3569), - [aux_sym_cmd_identifier_token20] = ACTIONS(3569), - [aux_sym_cmd_identifier_token21] = ACTIONS(3569), - [aux_sym_cmd_identifier_token22] = ACTIONS(3569), - [aux_sym_cmd_identifier_token23] = ACTIONS(3569), - [aux_sym_cmd_identifier_token24] = ACTIONS(3569), - [aux_sym_cmd_identifier_token25] = ACTIONS(3569), - [aux_sym_cmd_identifier_token26] = ACTIONS(3569), - [aux_sym_cmd_identifier_token27] = ACTIONS(3569), - [aux_sym_cmd_identifier_token28] = ACTIONS(3569), - [aux_sym_cmd_identifier_token29] = ACTIONS(3569), - [aux_sym_cmd_identifier_token30] = ACTIONS(3569), - [aux_sym_cmd_identifier_token31] = ACTIONS(3569), - [aux_sym_cmd_identifier_token32] = ACTIONS(3569), - [aux_sym_cmd_identifier_token33] = ACTIONS(3569), - [aux_sym_cmd_identifier_token34] = ACTIONS(3569), - [aux_sym_cmd_identifier_token35] = ACTIONS(3569), - [aux_sym_cmd_identifier_token36] = ACTIONS(3569), - [aux_sym_cmd_identifier_token37] = ACTIONS(3569), - [aux_sym_cmd_identifier_token38] = ACTIONS(3569), - [aux_sym_cmd_identifier_token39] = ACTIONS(3569), - [aux_sym_cmd_identifier_token40] = ACTIONS(3569), - [sym__newline] = ACTIONS(3571), - [sym__space] = ACTIONS(3573), - [anon_sym_LBRACK] = ACTIONS(3569), - [anon_sym_LPAREN] = ACTIONS(3569), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_DASH2] = ACTIONS(3569), - [anon_sym_LBRACE] = ACTIONS(3569), - [anon_sym_DOT_DOT] = ACTIONS(3569), - [aux_sym_expr_unary_token1] = ACTIONS(3569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3569), - [anon_sym_DOT_DOT_LT] = ACTIONS(3569), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_true] = ACTIONS(3569), - [anon_sym_false] = ACTIONS(3569), - [aux_sym__val_number_decimal_token1] = ACTIONS(3569), - [aux_sym__val_number_decimal_token2] = ACTIONS(3569), - [aux_sym__val_number_decimal_token3] = ACTIONS(3569), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), - [aux_sym__val_number_token1] = ACTIONS(3569), - [aux_sym__val_number_token2] = ACTIONS(3569), - [aux_sym__val_number_token3] = ACTIONS(3569), - [aux_sym__val_number_token4] = ACTIONS(3569), - [aux_sym__val_number_token5] = ACTIONS(3569), - [aux_sym__val_number_token6] = ACTIONS(3569), - [anon_sym_0b] = ACTIONS(3569), - [anon_sym_0o] = ACTIONS(3569), - [anon_sym_0x] = ACTIONS(3569), - [sym_val_date] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(3569), - [sym__str_single_quotes] = ACTIONS(3569), - [sym__str_back_ticks] = ACTIONS(3569), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3569), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3569), - [aux_sym_env_var_token1] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(3569), - [aux_sym_command_token1] = ACTIONS(3569), + [1144] = { + [sym_comment] = STATE(1144), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1140), + [aux_sym_cmd_identifier_token1] = ACTIONS(3498), + [aux_sym_cmd_identifier_token2] = ACTIONS(3498), + [aux_sym_cmd_identifier_token3] = ACTIONS(3498), + [aux_sym_cmd_identifier_token4] = ACTIONS(3498), + [aux_sym_cmd_identifier_token5] = ACTIONS(3498), + [aux_sym_cmd_identifier_token6] = ACTIONS(3498), + [aux_sym_cmd_identifier_token7] = ACTIONS(3498), + [aux_sym_cmd_identifier_token8] = ACTIONS(3498), + [aux_sym_cmd_identifier_token9] = ACTIONS(3498), + [aux_sym_cmd_identifier_token10] = ACTIONS(3498), + [aux_sym_cmd_identifier_token11] = ACTIONS(3498), + [aux_sym_cmd_identifier_token12] = ACTIONS(3498), + [aux_sym_cmd_identifier_token13] = ACTIONS(3498), + [aux_sym_cmd_identifier_token14] = ACTIONS(3498), + [aux_sym_cmd_identifier_token15] = ACTIONS(3498), + [aux_sym_cmd_identifier_token16] = ACTIONS(3498), + [aux_sym_cmd_identifier_token17] = ACTIONS(3498), + [aux_sym_cmd_identifier_token18] = ACTIONS(3498), + [aux_sym_cmd_identifier_token19] = ACTIONS(3498), + [aux_sym_cmd_identifier_token20] = ACTIONS(3498), + [aux_sym_cmd_identifier_token21] = ACTIONS(3498), + [aux_sym_cmd_identifier_token22] = ACTIONS(3498), + [aux_sym_cmd_identifier_token23] = ACTIONS(3498), + [aux_sym_cmd_identifier_token24] = ACTIONS(3498), + [aux_sym_cmd_identifier_token25] = ACTIONS(3498), + [aux_sym_cmd_identifier_token26] = ACTIONS(3498), + [aux_sym_cmd_identifier_token27] = ACTIONS(3498), + [aux_sym_cmd_identifier_token28] = ACTIONS(3498), + [aux_sym_cmd_identifier_token29] = ACTIONS(3498), + [aux_sym_cmd_identifier_token30] = ACTIONS(3498), + [aux_sym_cmd_identifier_token31] = ACTIONS(3498), + [aux_sym_cmd_identifier_token32] = ACTIONS(3498), + [aux_sym_cmd_identifier_token33] = ACTIONS(3498), + [aux_sym_cmd_identifier_token34] = ACTIONS(3498), + [aux_sym_cmd_identifier_token35] = ACTIONS(3498), + [aux_sym_cmd_identifier_token36] = ACTIONS(3498), + [aux_sym_cmd_identifier_token37] = ACTIONS(3498), + [aux_sym_cmd_identifier_token38] = ACTIONS(3498), + [aux_sym_cmd_identifier_token39] = ACTIONS(3498), + [aux_sym_cmd_identifier_token40] = ACTIONS(3498), + [sym__newline] = ACTIONS(3500), + [sym__space] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_DOLLAR] = ACTIONS(3498), + [anon_sym_DASH2] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_DOT_DOT] = ACTIONS(3498), + [aux_sym_expr_unary_token1] = ACTIONS(3498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3498), + [anon_sym_DOT_DOT_LT] = ACTIONS(3498), + [anon_sym_null] = ACTIONS(3498), + [anon_sym_true] = ACTIONS(3498), + [anon_sym_false] = ACTIONS(3498), + [aux_sym__val_number_decimal_token1] = ACTIONS(3498), + [aux_sym__val_number_decimal_token2] = ACTIONS(3498), + [aux_sym__val_number_decimal_token3] = ACTIONS(3498), + [aux_sym__val_number_decimal_token4] = ACTIONS(3498), + [aux_sym__val_number_token1] = ACTIONS(3498), + [aux_sym__val_number_token2] = ACTIONS(3498), + [aux_sym__val_number_token3] = ACTIONS(3498), + [aux_sym__val_number_token4] = ACTIONS(3498), + [aux_sym__val_number_token5] = ACTIONS(3498), + [aux_sym__val_number_token6] = ACTIONS(3498), + [anon_sym_0b] = ACTIONS(3498), + [anon_sym_0o] = ACTIONS(3498), + [anon_sym_0x] = ACTIONS(3498), + [sym_val_date] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [sym__str_single_quotes] = ACTIONS(3498), + [sym__str_back_ticks] = ACTIONS(3498), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3498), + [aux_sym_env_var_token1] = ACTIONS(3498), + [anon_sym_CARET] = ACTIONS(3498), + [aux_sym_command_token1] = ACTIONS(3498), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3575), + [sym_raw_string_begin] = ACTIONS(3504), }, - [1166] = { - [sym_expr_unary] = STATE(4725), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_parenthesized] = STATE(4366), - [sym_val_range] = STATE(4725), - [sym__val_range] = STATE(8344), - [sym__val_range_with_end] = STATE(8130), - [sym__value] = STATE(4725), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(4453), - [sym_val_variable] = STATE(4389), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(4251), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(4465), - [sym__unquoted_with_expr] = STATE(4727), - [sym__unquoted_anonymous_prefix] = STATE(7958), - [sym_comment] = STATE(1166), + [1145] = { + [sym_ctrl_do] = STATE(4648), + [sym_ctrl_if] = STATE(4648), + [sym_ctrl_match] = STATE(4648), + [sym_ctrl_try] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_comment] = STATE(1145), + [sym__newline] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_DASH2] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_match] = ACTIONS(3386), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3547), - [aux_sym_expr_unary_token1] = ACTIONS(3549), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3551), - [anon_sym_DOT_DOT_LT] = ACTIONS(3551), - [anon_sym_null] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3555), - [anon_sym_false] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3565), - [aux_sym__val_number_token5] = ACTIONS(3565), - [aux_sym__val_number_token6] = ACTIONS(3565), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3388), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [aux_sym__val_number_decimal_token1] = ACTIONS(3394), + [aux_sym__val_number_decimal_token2] = ACTIONS(3396), + [aux_sym__val_number_decimal_token3] = ACTIONS(3398), + [aux_sym__val_number_decimal_token4] = ACTIONS(3400), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3567), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [1167] = { - [sym_ctrl_do] = STATE(5075), - [sym_ctrl_if] = STATE(5075), - [sym_ctrl_match] = STATE(5075), - [sym_ctrl_try] = STATE(5075), - [sym__expression] = STATE(5075), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3307), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_comment] = STATE(1167), - [sym__newline] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), + [1146] = { + [sym_ctrl_do] = STATE(4648), + [sym_ctrl_if] = STATE(4648), + [sym_ctrl_match] = STATE(4648), + [sym_ctrl_try] = STATE(4648), + [sym__expression] = STATE(4648), + [sym_expr_unary] = STATE(2082), + [sym__expr_unary_minus] = STATE(2083), + [sym_expr_binary] = STATE(2082), + [sym__expr_binary_expression] = STATE(3762), + [sym_expr_parenthesized] = STATE(1819), + [sym_val_range] = STATE(2082), + [sym__value] = STATE(2082), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(2111), + [sym_val_variable] = STATE(1868), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(3168), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_comment] = STATE(1146), + [sym__newline] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_err_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_GT_PIPE] = ACTIONS(3380), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3380), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3380), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3380), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3577), - [anon_sym_match] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_match] = ACTIONS(3386), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_null] = ACTIONS(3390), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [aux_sym__val_number_decimal_token1] = ACTIONS(3394), + [aux_sym__val_number_decimal_token2] = ACTIONS(3396), + [aux_sym__val_number_decimal_token3] = ACTIONS(3398), + [aux_sym__val_number_decimal_token4] = ACTIONS(3400), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1147] = { + [sym_comment] = STATE(1147), + [aux_sym_shebang_repeat1] = STATE(1147), + [aux_sym_cmd_identifier_token1] = ACTIONS(1262), + [aux_sym_cmd_identifier_token2] = ACTIONS(1264), + [aux_sym_cmd_identifier_token3] = ACTIONS(1264), + [aux_sym_cmd_identifier_token4] = ACTIONS(1264), + [aux_sym_cmd_identifier_token5] = ACTIONS(1264), + [aux_sym_cmd_identifier_token6] = ACTIONS(1264), + [aux_sym_cmd_identifier_token7] = ACTIONS(1264), + [aux_sym_cmd_identifier_token8] = ACTIONS(1264), + [aux_sym_cmd_identifier_token9] = ACTIONS(1262), + [aux_sym_cmd_identifier_token10] = ACTIONS(1264), + [aux_sym_cmd_identifier_token11] = ACTIONS(1264), + [aux_sym_cmd_identifier_token12] = ACTIONS(1264), + [aux_sym_cmd_identifier_token13] = ACTIONS(1262), + [aux_sym_cmd_identifier_token14] = ACTIONS(1264), + [aux_sym_cmd_identifier_token15] = ACTIONS(1262), + [aux_sym_cmd_identifier_token16] = ACTIONS(1264), + [aux_sym_cmd_identifier_token17] = ACTIONS(1264), + [aux_sym_cmd_identifier_token18] = ACTIONS(1262), + [aux_sym_cmd_identifier_token19] = ACTIONS(1264), + [aux_sym_cmd_identifier_token20] = ACTIONS(1264), + [aux_sym_cmd_identifier_token21] = ACTIONS(1264), + [aux_sym_cmd_identifier_token22] = ACTIONS(1264), + [aux_sym_cmd_identifier_token23] = ACTIONS(1264), + [aux_sym_cmd_identifier_token24] = ACTIONS(1264), + [aux_sym_cmd_identifier_token25] = ACTIONS(1264), + [aux_sym_cmd_identifier_token26] = ACTIONS(1264), + [aux_sym_cmd_identifier_token27] = ACTIONS(1264), + [aux_sym_cmd_identifier_token28] = ACTIONS(1264), + [aux_sym_cmd_identifier_token29] = ACTIONS(1264), + [aux_sym_cmd_identifier_token30] = ACTIONS(1264), + [aux_sym_cmd_identifier_token31] = ACTIONS(1264), + [aux_sym_cmd_identifier_token32] = ACTIONS(1262), + [aux_sym_cmd_identifier_token33] = ACTIONS(1264), + [aux_sym_cmd_identifier_token34] = ACTIONS(1262), + [aux_sym_cmd_identifier_token35] = ACTIONS(1264), + [aux_sym_cmd_identifier_token36] = ACTIONS(1264), + [aux_sym_cmd_identifier_token37] = ACTIONS(1264), + [aux_sym_cmd_identifier_token38] = ACTIONS(1262), + [aux_sym_cmd_identifier_token39] = ACTIONS(1264), + [aux_sym_cmd_identifier_token40] = ACTIONS(1264), + [sym__newline] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [aux_sym_expr_unary_token1] = ACTIONS(1264), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1264), + [anon_sym_DOT_DOT_LT] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [aux_sym__val_number_decimal_token1] = ACTIONS(1262), + [aux_sym__val_number_decimal_token2] = ACTIONS(1264), + [aux_sym__val_number_decimal_token3] = ACTIONS(1264), + [aux_sym__val_number_decimal_token4] = ACTIONS(1264), + [aux_sym__val_number_token1] = ACTIONS(1264), + [aux_sym__val_number_token2] = ACTIONS(1264), + [aux_sym__val_number_token3] = ACTIONS(1264), + [aux_sym__val_number_token4] = ACTIONS(1262), + [aux_sym__val_number_token5] = ACTIONS(1262), + [aux_sym__val_number_token6] = ACTIONS(1262), + [anon_sym_0b] = ACTIONS(1262), + [anon_sym_0o] = ACTIONS(1262), + [anon_sym_0x] = ACTIONS(1262), + [sym_val_date] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1264), + [anon_sym_CARET] = ACTIONS(1264), + [aux_sym_command_token1] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1264), + }, + [1148] = { + [sym_comment] = STATE(1148), + [aux_sym_pipe_element_repeat1] = STATE(1151), + [aux_sym_cmd_identifier_token1] = ACTIONS(3513), + [aux_sym_cmd_identifier_token2] = ACTIONS(3513), + [aux_sym_cmd_identifier_token3] = ACTIONS(3513), + [aux_sym_cmd_identifier_token4] = ACTIONS(3513), + [aux_sym_cmd_identifier_token5] = ACTIONS(3513), + [aux_sym_cmd_identifier_token6] = ACTIONS(3513), + [aux_sym_cmd_identifier_token7] = ACTIONS(3513), + [aux_sym_cmd_identifier_token8] = ACTIONS(3513), + [aux_sym_cmd_identifier_token9] = ACTIONS(3513), + [aux_sym_cmd_identifier_token10] = ACTIONS(3513), + [aux_sym_cmd_identifier_token11] = ACTIONS(3513), + [aux_sym_cmd_identifier_token12] = ACTIONS(3513), + [aux_sym_cmd_identifier_token13] = ACTIONS(3513), + [aux_sym_cmd_identifier_token14] = ACTIONS(3513), + [aux_sym_cmd_identifier_token15] = ACTIONS(3513), + [aux_sym_cmd_identifier_token16] = ACTIONS(3513), + [aux_sym_cmd_identifier_token17] = ACTIONS(3513), + [aux_sym_cmd_identifier_token18] = ACTIONS(3513), + [aux_sym_cmd_identifier_token19] = ACTIONS(3513), + [aux_sym_cmd_identifier_token20] = ACTIONS(3513), + [aux_sym_cmd_identifier_token21] = ACTIONS(3513), + [aux_sym_cmd_identifier_token22] = ACTIONS(3513), + [aux_sym_cmd_identifier_token23] = ACTIONS(3513), + [aux_sym_cmd_identifier_token24] = ACTIONS(3513), + [aux_sym_cmd_identifier_token25] = ACTIONS(3513), + [aux_sym_cmd_identifier_token26] = ACTIONS(3513), + [aux_sym_cmd_identifier_token27] = ACTIONS(3513), + [aux_sym_cmd_identifier_token28] = ACTIONS(3513), + [aux_sym_cmd_identifier_token29] = ACTIONS(3513), + [aux_sym_cmd_identifier_token30] = ACTIONS(3513), + [aux_sym_cmd_identifier_token31] = ACTIONS(3513), + [aux_sym_cmd_identifier_token32] = ACTIONS(3513), + [aux_sym_cmd_identifier_token33] = ACTIONS(3513), + [aux_sym_cmd_identifier_token34] = ACTIONS(3513), + [aux_sym_cmd_identifier_token35] = ACTIONS(3513), + [aux_sym_cmd_identifier_token36] = ACTIONS(3513), + [aux_sym_cmd_identifier_token37] = ACTIONS(3513), + [aux_sym_cmd_identifier_token38] = ACTIONS(3513), + [aux_sym_cmd_identifier_token39] = ACTIONS(3513), + [aux_sym_cmd_identifier_token40] = ACTIONS(3513), + [sym__space] = ACTIONS(3515), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3513), + [anon_sym_DASH2] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3513), + [anon_sym_DOT_DOT] = ACTIONS(3513), + [aux_sym_expr_unary_token1] = ACTIONS(3513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3513), + [anon_sym_DOT_DOT_LT] = ACTIONS(3513), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3513), + [anon_sym_false] = ACTIONS(3513), + [aux_sym__val_number_decimal_token1] = ACTIONS(3513), + [aux_sym__val_number_decimal_token2] = ACTIONS(3513), + [aux_sym__val_number_decimal_token3] = ACTIONS(3513), + [aux_sym__val_number_decimal_token4] = ACTIONS(3513), + [aux_sym__val_number_token1] = ACTIONS(3513), + [aux_sym__val_number_token2] = ACTIONS(3513), + [aux_sym__val_number_token3] = ACTIONS(3513), + [aux_sym__val_number_token4] = ACTIONS(3513), + [aux_sym__val_number_token5] = ACTIONS(3513), + [aux_sym__val_number_token6] = ACTIONS(3513), + [anon_sym_0b] = ACTIONS(3513), + [anon_sym_0o] = ACTIONS(3513), + [anon_sym_0x] = ACTIONS(3513), + [sym_val_date] = ACTIONS(3513), + [anon_sym_DQUOTE] = ACTIONS(3513), + [sym__str_single_quotes] = ACTIONS(3513), + [sym__str_back_ticks] = ACTIONS(3513), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3513), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3513), + [aux_sym_env_var_token1] = ACTIONS(3513), + [anon_sym_CARET] = ACTIONS(3513), + [aux_sym_command_token1] = ACTIONS(3513), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3517), + }, + [1149] = { + [sym_env_var] = STATE(7327), + [sym_comment] = STATE(1149), + [aux_sym_pipe_element_repeat2] = STATE(1149), + [aux_sym_cmd_identifier_token1] = ACTIONS(3513), + [aux_sym_cmd_identifier_token2] = ACTIONS(3517), + [aux_sym_cmd_identifier_token3] = ACTIONS(3517), + [aux_sym_cmd_identifier_token4] = ACTIONS(3517), + [aux_sym_cmd_identifier_token5] = ACTIONS(3517), + [aux_sym_cmd_identifier_token6] = ACTIONS(3517), + [aux_sym_cmd_identifier_token7] = ACTIONS(3517), + [aux_sym_cmd_identifier_token8] = ACTIONS(3517), + [aux_sym_cmd_identifier_token9] = ACTIONS(3513), + [aux_sym_cmd_identifier_token10] = ACTIONS(3517), + [aux_sym_cmd_identifier_token11] = ACTIONS(3517), + [aux_sym_cmd_identifier_token12] = ACTIONS(3517), + [aux_sym_cmd_identifier_token13] = ACTIONS(3513), + [aux_sym_cmd_identifier_token14] = ACTIONS(3517), + [aux_sym_cmd_identifier_token15] = ACTIONS(3513), + [aux_sym_cmd_identifier_token16] = ACTIONS(3517), + [aux_sym_cmd_identifier_token17] = ACTIONS(3517), + [aux_sym_cmd_identifier_token18] = ACTIONS(3513), + [aux_sym_cmd_identifier_token19] = ACTIONS(3517), + [aux_sym_cmd_identifier_token20] = ACTIONS(3517), + [aux_sym_cmd_identifier_token21] = ACTIONS(3517), + [aux_sym_cmd_identifier_token22] = ACTIONS(3517), + [aux_sym_cmd_identifier_token23] = ACTIONS(3517), + [aux_sym_cmd_identifier_token24] = ACTIONS(3517), + [aux_sym_cmd_identifier_token25] = ACTIONS(3517), + [aux_sym_cmd_identifier_token26] = ACTIONS(3517), + [aux_sym_cmd_identifier_token27] = ACTIONS(3517), + [aux_sym_cmd_identifier_token28] = ACTIONS(3517), + [aux_sym_cmd_identifier_token29] = ACTIONS(3517), + [aux_sym_cmd_identifier_token30] = ACTIONS(3517), + [aux_sym_cmd_identifier_token31] = ACTIONS(3517), + [aux_sym_cmd_identifier_token32] = ACTIONS(3513), + [aux_sym_cmd_identifier_token33] = ACTIONS(3517), + [aux_sym_cmd_identifier_token34] = ACTIONS(3513), + [aux_sym_cmd_identifier_token35] = ACTIONS(3517), + [aux_sym_cmd_identifier_token36] = ACTIONS(3517), + [aux_sym_cmd_identifier_token37] = ACTIONS(3517), + [aux_sym_cmd_identifier_token38] = ACTIONS(3513), + [aux_sym_cmd_identifier_token39] = ACTIONS(3517), + [aux_sym_cmd_identifier_token40] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3513), + [anon_sym_DASH2] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_DOT_DOT] = ACTIONS(3513), + [aux_sym_expr_unary_token1] = ACTIONS(3517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3517), + [anon_sym_DOT_DOT_LT] = ACTIONS(3517), + [anon_sym_null] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3513), + [anon_sym_false] = ACTIONS(3513), + [aux_sym__val_number_decimal_token1] = ACTIONS(3513), + [aux_sym__val_number_decimal_token2] = ACTIONS(3517), + [aux_sym__val_number_decimal_token3] = ACTIONS(3517), + [aux_sym__val_number_decimal_token4] = ACTIONS(3517), + [aux_sym__val_number_token1] = ACTIONS(3517), + [aux_sym__val_number_token2] = ACTIONS(3517), + [aux_sym__val_number_token3] = ACTIONS(3517), + [aux_sym__val_number_token4] = ACTIONS(3513), + [aux_sym__val_number_token5] = ACTIONS(3513), + [aux_sym__val_number_token6] = ACTIONS(3513), + [anon_sym_0b] = ACTIONS(3513), + [anon_sym_0o] = ACTIONS(3513), + [anon_sym_0x] = ACTIONS(3513), + [sym_val_date] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [sym__str_single_quotes] = ACTIONS(3517), + [sym__str_back_ticks] = ACTIONS(3517), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3517), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), + [aux_sym_env_var_token1] = ACTIONS(3519), + [anon_sym_CARET] = ACTIONS(3517), + [aux_sym_command_token1] = ACTIONS(3517), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3517), + }, + [1150] = { + [sym_comment] = STATE(1150), + [aux_sym_cmd_identifier_token1] = ACTIONS(1916), + [aux_sym_cmd_identifier_token2] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1916), + [aux_sym_cmd_identifier_token4] = ACTIONS(1916), + [aux_sym_cmd_identifier_token5] = ACTIONS(1916), + [aux_sym_cmd_identifier_token6] = ACTIONS(1916), + [aux_sym_cmd_identifier_token7] = ACTIONS(1916), + [aux_sym_cmd_identifier_token8] = ACTIONS(1916), + [aux_sym_cmd_identifier_token9] = ACTIONS(1916), + [aux_sym_cmd_identifier_token10] = ACTIONS(1916), + [aux_sym_cmd_identifier_token11] = ACTIONS(1916), + [aux_sym_cmd_identifier_token12] = ACTIONS(1916), + [aux_sym_cmd_identifier_token13] = ACTIONS(1916), + [aux_sym_cmd_identifier_token14] = ACTIONS(1916), + [aux_sym_cmd_identifier_token15] = ACTIONS(1916), + [aux_sym_cmd_identifier_token16] = ACTIONS(1916), + [aux_sym_cmd_identifier_token17] = ACTIONS(1916), + [aux_sym_cmd_identifier_token18] = ACTIONS(1916), + [aux_sym_cmd_identifier_token19] = ACTIONS(1916), + [aux_sym_cmd_identifier_token20] = ACTIONS(1916), + [aux_sym_cmd_identifier_token21] = ACTIONS(1916), + [aux_sym_cmd_identifier_token22] = ACTIONS(1916), + [aux_sym_cmd_identifier_token23] = ACTIONS(1916), + [aux_sym_cmd_identifier_token24] = ACTIONS(1916), + [aux_sym_cmd_identifier_token25] = ACTIONS(1916), + [aux_sym_cmd_identifier_token26] = ACTIONS(1916), + [aux_sym_cmd_identifier_token27] = ACTIONS(1916), + [aux_sym_cmd_identifier_token28] = ACTIONS(1916), + [aux_sym_cmd_identifier_token29] = ACTIONS(1916), + [aux_sym_cmd_identifier_token30] = ACTIONS(1916), + [aux_sym_cmd_identifier_token31] = ACTIONS(1916), + [aux_sym_cmd_identifier_token32] = ACTIONS(1916), + [aux_sym_cmd_identifier_token33] = ACTIONS(1916), + [aux_sym_cmd_identifier_token34] = ACTIONS(1916), + [aux_sym_cmd_identifier_token35] = ACTIONS(1916), + [aux_sym_cmd_identifier_token36] = ACTIONS(1916), + [aux_sym_cmd_identifier_token37] = ACTIONS(1916), + [aux_sym_cmd_identifier_token38] = ACTIONS(1916), + [aux_sym_cmd_identifier_token39] = ACTIONS(1916), + [aux_sym_cmd_identifier_token40] = ACTIONS(1916), + [sym__newline] = ACTIONS(1916), + [sym__space] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1916), + [anon_sym_DASH2] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [aux_sym_expr_unary_token1] = ACTIONS(1916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1916), + [anon_sym_DOT_DOT_LT] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [aux_sym__val_number_decimal_token1] = ACTIONS(1916), + [aux_sym__val_number_decimal_token2] = ACTIONS(1916), + [aux_sym__val_number_decimal_token3] = ACTIONS(1916), + [aux_sym__val_number_decimal_token4] = ACTIONS(1916), + [aux_sym__val_number_token1] = ACTIONS(1916), + [aux_sym__val_number_token2] = ACTIONS(1916), + [aux_sym__val_number_token3] = ACTIONS(1916), + [aux_sym__val_number_token4] = ACTIONS(1916), + [aux_sym__val_number_token5] = ACTIONS(1916), + [aux_sym__val_number_token6] = ACTIONS(1916), + [anon_sym_0b] = ACTIONS(1916), + [anon_sym_0o] = ACTIONS(1916), + [anon_sym_0x] = ACTIONS(1916), + [sym_val_date] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [sym__str_single_quotes] = ACTIONS(1916), + [sym__str_back_ticks] = ACTIONS(1916), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1916), + [aux_sym_env_var_token1] = ACTIONS(1916), + [anon_sym_CARET] = ACTIONS(1916), + [aux_sym_command_token1] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3522), + }, + [1151] = { + [sym_comment] = STATE(1151), + [aux_sym_pipe_element_repeat1] = STATE(1151), + [aux_sym_cmd_identifier_token1] = ACTIONS(3524), + [aux_sym_cmd_identifier_token2] = ACTIONS(3524), + [aux_sym_cmd_identifier_token3] = ACTIONS(3524), + [aux_sym_cmd_identifier_token4] = ACTIONS(3524), + [aux_sym_cmd_identifier_token5] = ACTIONS(3524), + [aux_sym_cmd_identifier_token6] = ACTIONS(3524), + [aux_sym_cmd_identifier_token7] = ACTIONS(3524), + [aux_sym_cmd_identifier_token8] = ACTIONS(3524), + [aux_sym_cmd_identifier_token9] = ACTIONS(3524), + [aux_sym_cmd_identifier_token10] = ACTIONS(3524), + [aux_sym_cmd_identifier_token11] = ACTIONS(3524), + [aux_sym_cmd_identifier_token12] = ACTIONS(3524), + [aux_sym_cmd_identifier_token13] = ACTIONS(3524), + [aux_sym_cmd_identifier_token14] = ACTIONS(3524), + [aux_sym_cmd_identifier_token15] = ACTIONS(3524), + [aux_sym_cmd_identifier_token16] = ACTIONS(3524), + [aux_sym_cmd_identifier_token17] = ACTIONS(3524), + [aux_sym_cmd_identifier_token18] = ACTIONS(3524), + [aux_sym_cmd_identifier_token19] = ACTIONS(3524), + [aux_sym_cmd_identifier_token20] = ACTIONS(3524), + [aux_sym_cmd_identifier_token21] = ACTIONS(3524), + [aux_sym_cmd_identifier_token22] = ACTIONS(3524), + [aux_sym_cmd_identifier_token23] = ACTIONS(3524), + [aux_sym_cmd_identifier_token24] = ACTIONS(3524), + [aux_sym_cmd_identifier_token25] = ACTIONS(3524), + [aux_sym_cmd_identifier_token26] = ACTIONS(3524), + [aux_sym_cmd_identifier_token27] = ACTIONS(3524), + [aux_sym_cmd_identifier_token28] = ACTIONS(3524), + [aux_sym_cmd_identifier_token29] = ACTIONS(3524), + [aux_sym_cmd_identifier_token30] = ACTIONS(3524), + [aux_sym_cmd_identifier_token31] = ACTIONS(3524), + [aux_sym_cmd_identifier_token32] = ACTIONS(3524), + [aux_sym_cmd_identifier_token33] = ACTIONS(3524), + [aux_sym_cmd_identifier_token34] = ACTIONS(3524), + [aux_sym_cmd_identifier_token35] = ACTIONS(3524), + [aux_sym_cmd_identifier_token36] = ACTIONS(3524), + [aux_sym_cmd_identifier_token37] = ACTIONS(3524), + [aux_sym_cmd_identifier_token38] = ACTIONS(3524), + [aux_sym_cmd_identifier_token39] = ACTIONS(3524), + [aux_sym_cmd_identifier_token40] = ACTIONS(3524), + [sym__space] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_DOLLAR] = ACTIONS(3524), + [anon_sym_DASH2] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_DOT_DOT] = ACTIONS(3524), + [aux_sym_expr_unary_token1] = ACTIONS(3524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3524), + [anon_sym_DOT_DOT_LT] = ACTIONS(3524), + [anon_sym_null] = ACTIONS(3524), + [anon_sym_true] = ACTIONS(3524), + [anon_sym_false] = ACTIONS(3524), + [aux_sym__val_number_decimal_token1] = ACTIONS(3524), + [aux_sym__val_number_decimal_token2] = ACTIONS(3524), + [aux_sym__val_number_decimal_token3] = ACTIONS(3524), + [aux_sym__val_number_decimal_token4] = ACTIONS(3524), + [aux_sym__val_number_token1] = ACTIONS(3524), + [aux_sym__val_number_token2] = ACTIONS(3524), + [aux_sym__val_number_token3] = ACTIONS(3524), + [aux_sym__val_number_token4] = ACTIONS(3524), + [aux_sym__val_number_token5] = ACTIONS(3524), + [aux_sym__val_number_token6] = ACTIONS(3524), + [anon_sym_0b] = ACTIONS(3524), + [anon_sym_0o] = ACTIONS(3524), + [anon_sym_0x] = ACTIONS(3524), + [sym_val_date] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym__str_single_quotes] = ACTIONS(3524), + [sym__str_back_ticks] = ACTIONS(3524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3524), + [aux_sym_env_var_token1] = ACTIONS(3524), + [anon_sym_CARET] = ACTIONS(3524), + [aux_sym_command_token1] = ACTIONS(3524), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3529), + }, + [1152] = { + [sym_env_var] = STATE(7060), + [sym_comment] = STATE(1152), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1152), + [aux_sym_cmd_identifier_token1] = ACTIONS(3498), + [aux_sym_cmd_identifier_token2] = ACTIONS(3504), + [aux_sym_cmd_identifier_token3] = ACTIONS(3504), + [aux_sym_cmd_identifier_token4] = ACTIONS(3504), + [aux_sym_cmd_identifier_token5] = ACTIONS(3504), + [aux_sym_cmd_identifier_token6] = ACTIONS(3504), + [aux_sym_cmd_identifier_token7] = ACTIONS(3504), + [aux_sym_cmd_identifier_token8] = ACTIONS(3504), + [aux_sym_cmd_identifier_token9] = ACTIONS(3498), + [aux_sym_cmd_identifier_token10] = ACTIONS(3504), + [aux_sym_cmd_identifier_token11] = ACTIONS(3504), + [aux_sym_cmd_identifier_token12] = ACTIONS(3504), + [aux_sym_cmd_identifier_token13] = ACTIONS(3498), + [aux_sym_cmd_identifier_token14] = ACTIONS(3504), + [aux_sym_cmd_identifier_token15] = ACTIONS(3498), + [aux_sym_cmd_identifier_token16] = ACTIONS(3504), + [aux_sym_cmd_identifier_token17] = ACTIONS(3504), + [aux_sym_cmd_identifier_token18] = ACTIONS(3498), + [aux_sym_cmd_identifier_token19] = ACTIONS(3504), + [aux_sym_cmd_identifier_token20] = ACTIONS(3504), + [aux_sym_cmd_identifier_token21] = ACTIONS(3504), + [aux_sym_cmd_identifier_token22] = ACTIONS(3504), + [aux_sym_cmd_identifier_token23] = ACTIONS(3504), + [aux_sym_cmd_identifier_token24] = ACTIONS(3504), + [aux_sym_cmd_identifier_token25] = ACTIONS(3504), + [aux_sym_cmd_identifier_token26] = ACTIONS(3504), + [aux_sym_cmd_identifier_token27] = ACTIONS(3504), + [aux_sym_cmd_identifier_token28] = ACTIONS(3504), + [aux_sym_cmd_identifier_token29] = ACTIONS(3504), + [aux_sym_cmd_identifier_token30] = ACTIONS(3504), + [aux_sym_cmd_identifier_token31] = ACTIONS(3504), + [aux_sym_cmd_identifier_token32] = ACTIONS(3498), + [aux_sym_cmd_identifier_token33] = ACTIONS(3504), + [aux_sym_cmd_identifier_token34] = ACTIONS(3498), + [aux_sym_cmd_identifier_token35] = ACTIONS(3504), + [aux_sym_cmd_identifier_token36] = ACTIONS(3504), + [aux_sym_cmd_identifier_token37] = ACTIONS(3504), + [aux_sym_cmd_identifier_token38] = ACTIONS(3498), + [aux_sym_cmd_identifier_token39] = ACTIONS(3504), + [aux_sym_cmd_identifier_token40] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_DOLLAR] = ACTIONS(3498), + [anon_sym_DASH2] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_DOT_DOT] = ACTIONS(3498), + [aux_sym_expr_unary_token1] = ACTIONS(3504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3504), + [anon_sym_DOT_DOT_LT] = ACTIONS(3504), + [anon_sym_null] = ACTIONS(3498), + [anon_sym_true] = ACTIONS(3498), + [anon_sym_false] = ACTIONS(3498), + [aux_sym__val_number_decimal_token1] = ACTIONS(3498), + [aux_sym__val_number_decimal_token2] = ACTIONS(3504), + [aux_sym__val_number_decimal_token3] = ACTIONS(3504), + [aux_sym__val_number_decimal_token4] = ACTIONS(3504), + [aux_sym__val_number_token1] = ACTIONS(3504), + [aux_sym__val_number_token2] = ACTIONS(3504), + [aux_sym__val_number_token3] = ACTIONS(3504), + [aux_sym__val_number_token4] = ACTIONS(3498), + [aux_sym__val_number_token5] = ACTIONS(3498), + [aux_sym__val_number_token6] = ACTIONS(3498), + [anon_sym_0b] = ACTIONS(3498), + [anon_sym_0o] = ACTIONS(3498), + [anon_sym_0x] = ACTIONS(3498), + [sym_val_date] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym__str_single_quotes] = ACTIONS(3504), + [sym__str_back_ticks] = ACTIONS(3504), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3504), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3504), + [aux_sym_env_var_token1] = ACTIONS(3531), + [anon_sym_CARET] = ACTIONS(3504), + [aux_sym_command_token1] = ACTIONS(3504), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3504), + }, + [1153] = { + [sym_comment] = STATE(1153), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3534), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3536), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), + }, + [1154] = { + [sym_expr_parenthesized] = STATE(4376), + [sym_val_range] = STATE(4866), + [sym__val_range] = STATE(7392), + [sym__val_range_with_end] = STATE(7266), + [sym__value] = STATE(4866), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(4440), + [sym_val_variable] = STATE(4369), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(3874), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(4083), + [sym__str_double_quotes] = STATE(4083), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym__unquoted_in_record] = STATE(4464), + [sym__unquoted_in_record_with_expr] = STATE(4866), + [sym__unquoted_anonymous_prefix] = STATE(6732), + [sym_comment] = STATE(1154), + [aux_sym_shebang_repeat1] = STATE(1162), + [sym__newline] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_DOLLAR] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_DOT_DOT] = ACTIONS(3548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3550), + [anon_sym_DOT_DOT_LT] = ACTIONS(3550), + [anon_sym_null] = ACTIONS(3552), + [anon_sym_true] = ACTIONS(3554), + [anon_sym_false] = ACTIONS(3554), + [aux_sym__val_number_decimal_token1] = ACTIONS(3556), + [aux_sym__val_number_decimal_token2] = ACTIONS(3558), + [aux_sym__val_number_decimal_token3] = ACTIONS(3560), + [aux_sym__val_number_decimal_token4] = ACTIONS(3562), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(3566), + [aux_sym__val_number_token5] = ACTIONS(3566), + [aux_sym__val_number_token6] = ACTIONS(3566), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3576), + [sym__str_back_ticks] = ACTIONS(3576), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3588), + }, + [1155] = { + [sym_comment] = STATE(1155), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3590), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3592), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), + }, + [1156] = { + [sym_comment] = STATE(1156), + [aux_sym_cmd_identifier_token1] = ACTIONS(1277), + [aux_sym_cmd_identifier_token2] = ACTIONS(1275), + [aux_sym_cmd_identifier_token3] = ACTIONS(1275), + [aux_sym_cmd_identifier_token4] = ACTIONS(1275), + [aux_sym_cmd_identifier_token5] = ACTIONS(1275), + [aux_sym_cmd_identifier_token6] = ACTIONS(1275), + [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token8] = ACTIONS(1275), + [aux_sym_cmd_identifier_token9] = ACTIONS(1277), + [aux_sym_cmd_identifier_token10] = ACTIONS(1275), + [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token12] = ACTIONS(1275), + [aux_sym_cmd_identifier_token13] = ACTIONS(1277), + [aux_sym_cmd_identifier_token14] = ACTIONS(1275), + [aux_sym_cmd_identifier_token15] = ACTIONS(1277), + [aux_sym_cmd_identifier_token16] = ACTIONS(1275), + [aux_sym_cmd_identifier_token17] = ACTIONS(1275), + [aux_sym_cmd_identifier_token18] = ACTIONS(1277), + [aux_sym_cmd_identifier_token19] = ACTIONS(1275), + [aux_sym_cmd_identifier_token20] = ACTIONS(1275), + [aux_sym_cmd_identifier_token21] = ACTIONS(1275), + [aux_sym_cmd_identifier_token22] = ACTIONS(1275), + [aux_sym_cmd_identifier_token23] = ACTIONS(1275), + [aux_sym_cmd_identifier_token24] = ACTIONS(1275), + [aux_sym_cmd_identifier_token25] = ACTIONS(1275), + [aux_sym_cmd_identifier_token26] = ACTIONS(1275), + [aux_sym_cmd_identifier_token27] = ACTIONS(1275), + [aux_sym_cmd_identifier_token28] = ACTIONS(1275), + [aux_sym_cmd_identifier_token29] = ACTIONS(1275), + [aux_sym_cmd_identifier_token30] = ACTIONS(1275), + [aux_sym_cmd_identifier_token31] = ACTIONS(1275), + [aux_sym_cmd_identifier_token32] = ACTIONS(1277), + [aux_sym_cmd_identifier_token33] = ACTIONS(1275), + [aux_sym_cmd_identifier_token34] = ACTIONS(1277), + [aux_sym_cmd_identifier_token35] = ACTIONS(1275), + [aux_sym_cmd_identifier_token36] = ACTIONS(1275), + [aux_sym_cmd_identifier_token37] = ACTIONS(1275), + [aux_sym_cmd_identifier_token38] = ACTIONS(1277), + [aux_sym_cmd_identifier_token39] = ACTIONS(1275), + [aux_sym_cmd_identifier_token40] = ACTIONS(1275), + [sym__newline] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_DASH2] = ACTIONS(1277), + [anon_sym_if] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_DOT_DOT] = ACTIONS(1277), + [aux_sym_expr_unary_token1] = ACTIONS(1275), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), + [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_null] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1277), + [anon_sym_false] = ACTIONS(1277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1277), + [aux_sym__val_number_decimal_token2] = ACTIONS(1275), + [aux_sym__val_number_decimal_token3] = ACTIONS(1275), + [aux_sym__val_number_decimal_token4] = ACTIONS(1275), + [aux_sym__val_number_token1] = ACTIONS(1275), + [aux_sym__val_number_token2] = ACTIONS(1275), + [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_token4] = ACTIONS(1277), + [aux_sym__val_number_token5] = ACTIONS(1277), + [aux_sym__val_number_token6] = ACTIONS(1277), + [anon_sym_0b] = ACTIONS(1277), + [anon_sym_0o] = ACTIONS(1277), + [anon_sym_0x] = ACTIONS(1277), + [sym_val_date] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym__str_single_quotes] = ACTIONS(1275), + [sym__str_back_ticks] = ACTIONS(1275), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [aux_sym_command_token1] = ACTIONS(1275), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1275), + }, + [1157] = { + [sym_comment] = STATE(1157), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3594), + [aux_sym__immediate_decimal_token2] = ACTIONS(3596), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), + }, + [1158] = { + [sym_comment] = STATE(1158), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3598), + [aux_sym__immediate_decimal_token2] = ACTIONS(3600), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), + }, + [1159] = { + [sym_comment] = STATE(1159), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3602), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3604), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), + }, + [1160] = { + [sym_expr_parenthesized] = STATE(4376), + [sym_val_range] = STATE(4866), + [sym__val_range] = STATE(7392), + [sym__val_range_with_end] = STATE(7266), + [sym__value] = STATE(4866), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(4440), + [sym_val_variable] = STATE(4369), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(3874), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(4083), + [sym__str_double_quotes] = STATE(4083), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym__unquoted_in_record] = STATE(4464), + [sym__unquoted_in_record_with_expr] = STATE(4866), + [sym__unquoted_anonymous_prefix] = STATE(6732), + [sym_comment] = STATE(1160), + [aux_sym_shebang_repeat1] = STATE(2996), + [sym__newline] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_DOLLAR] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_DOT_DOT] = ACTIONS(3548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3550), + [anon_sym_DOT_DOT_LT] = ACTIONS(3550), + [anon_sym_null] = ACTIONS(3552), + [anon_sym_true] = ACTIONS(3554), + [anon_sym_false] = ACTIONS(3554), + [aux_sym__val_number_decimal_token1] = ACTIONS(3556), + [aux_sym__val_number_decimal_token2] = ACTIONS(3558), + [aux_sym__val_number_decimal_token3] = ACTIONS(3560), + [aux_sym__val_number_decimal_token4] = ACTIONS(3562), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(3566), + [aux_sym__val_number_token5] = ACTIONS(3566), + [aux_sym__val_number_token6] = ACTIONS(3566), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3576), + [sym__str_back_ticks] = ACTIONS(3576), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3588), + }, + [1161] = { + [sym_match_arm] = STATE(6903), + [sym_default_arm] = STATE(6903), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), + [sym_comment] = STATE(1161), + [aux_sym_shebang_repeat1] = STATE(1177), + [aux_sym_ctrl_match_repeat1] = STATE(1224), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1162] = { + [sym_expr_parenthesized] = STATE(4348), + [sym_val_range] = STATE(4894), + [sym__val_range] = STATE(7392), + [sym__val_range_with_end] = STATE(7266), + [sym__value] = STATE(4894), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(4440), + [sym_val_variable] = STATE(4369), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(3874), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(4083), + [sym__str_double_quotes] = STATE(4083), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym__unquoted_in_record] = STATE(4416), + [sym__unquoted_in_record_with_expr] = STATE(4894), + [sym__unquoted_anonymous_prefix] = STATE(6732), + [sym_comment] = STATE(1162), + [aux_sym_shebang_repeat1] = STATE(2996), + [sym__newline] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_DOLLAR] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_DOT_DOT] = ACTIONS(3548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3550), + [anon_sym_DOT_DOT_LT] = ACTIONS(3550), + [anon_sym_null] = ACTIONS(3552), + [anon_sym_true] = ACTIONS(3554), + [anon_sym_false] = ACTIONS(3554), + [aux_sym__val_number_decimal_token1] = ACTIONS(3556), + [aux_sym__val_number_decimal_token2] = ACTIONS(3558), + [aux_sym__val_number_decimal_token3] = ACTIONS(3560), + [aux_sym__val_number_decimal_token4] = ACTIONS(3562), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(3566), + [aux_sym__val_number_token5] = ACTIONS(3566), + [aux_sym__val_number_token6] = ACTIONS(3566), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3576), + [sym__str_back_ticks] = ACTIONS(3576), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3588), + }, + [1163] = { + [sym_comment] = STATE(1163), + [aux_sym_cmd_identifier_token1] = ACTIONS(3638), + [aux_sym_cmd_identifier_token2] = ACTIONS(3638), + [aux_sym_cmd_identifier_token3] = ACTIONS(3638), + [aux_sym_cmd_identifier_token4] = ACTIONS(3638), + [aux_sym_cmd_identifier_token5] = ACTIONS(3638), + [aux_sym_cmd_identifier_token6] = ACTIONS(3638), + [aux_sym_cmd_identifier_token7] = ACTIONS(3638), + [aux_sym_cmd_identifier_token8] = ACTIONS(3638), + [aux_sym_cmd_identifier_token9] = ACTIONS(3638), + [aux_sym_cmd_identifier_token10] = ACTIONS(3638), + [aux_sym_cmd_identifier_token11] = ACTIONS(3638), + [aux_sym_cmd_identifier_token12] = ACTIONS(3638), + [aux_sym_cmd_identifier_token13] = ACTIONS(3638), + [aux_sym_cmd_identifier_token14] = ACTIONS(3638), + [aux_sym_cmd_identifier_token15] = ACTIONS(3638), + [aux_sym_cmd_identifier_token16] = ACTIONS(3638), + [aux_sym_cmd_identifier_token17] = ACTIONS(3638), + [aux_sym_cmd_identifier_token18] = ACTIONS(3638), + [aux_sym_cmd_identifier_token19] = ACTIONS(3638), + [aux_sym_cmd_identifier_token20] = ACTIONS(3638), + [aux_sym_cmd_identifier_token21] = ACTIONS(3638), + [aux_sym_cmd_identifier_token22] = ACTIONS(3638), + [aux_sym_cmd_identifier_token23] = ACTIONS(3638), + [aux_sym_cmd_identifier_token24] = ACTIONS(3638), + [aux_sym_cmd_identifier_token25] = ACTIONS(3638), + [aux_sym_cmd_identifier_token26] = ACTIONS(3638), + [aux_sym_cmd_identifier_token27] = ACTIONS(3638), + [aux_sym_cmd_identifier_token28] = ACTIONS(3638), + [aux_sym_cmd_identifier_token29] = ACTIONS(3638), + [aux_sym_cmd_identifier_token30] = ACTIONS(3638), + [aux_sym_cmd_identifier_token31] = ACTIONS(3638), + [aux_sym_cmd_identifier_token32] = ACTIONS(3638), + [aux_sym_cmd_identifier_token33] = ACTIONS(3638), + [aux_sym_cmd_identifier_token34] = ACTIONS(3638), + [aux_sym_cmd_identifier_token35] = ACTIONS(3638), + [aux_sym_cmd_identifier_token36] = ACTIONS(3638), + [aux_sym_cmd_identifier_token37] = ACTIONS(3638), + [aux_sym_cmd_identifier_token38] = ACTIONS(3638), + [aux_sym_cmd_identifier_token39] = ACTIONS(3638), + [aux_sym_cmd_identifier_token40] = ACTIONS(3638), + [sym__space] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_DOLLAR] = ACTIONS(3638), + [anon_sym_DASH2] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_DOT_DOT] = ACTIONS(3638), + [aux_sym_expr_unary_token1] = ACTIONS(3638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3638), + [anon_sym_DOT_DOT_LT] = ACTIONS(3638), + [anon_sym_null] = ACTIONS(3638), + [anon_sym_true] = ACTIONS(3638), + [anon_sym_false] = ACTIONS(3638), + [aux_sym__val_number_decimal_token1] = ACTIONS(3638), + [aux_sym__val_number_decimal_token2] = ACTIONS(3638), + [aux_sym__val_number_decimal_token3] = ACTIONS(3638), + [aux_sym__val_number_decimal_token4] = ACTIONS(3638), + [aux_sym__val_number_token1] = ACTIONS(3638), + [aux_sym__val_number_token2] = ACTIONS(3638), + [aux_sym__val_number_token3] = ACTIONS(3638), + [aux_sym__val_number_token4] = ACTIONS(3638), + [aux_sym__val_number_token5] = ACTIONS(3638), + [aux_sym__val_number_token6] = ACTIONS(3638), + [anon_sym_0b] = ACTIONS(3638), + [anon_sym_0o] = ACTIONS(3638), + [anon_sym_0x] = ACTIONS(3638), + [sym_val_date] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym__str_single_quotes] = ACTIONS(3638), + [sym__str_back_ticks] = ACTIONS(3638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3638), + [aux_sym_env_var_token1] = ACTIONS(3638), + [anon_sym_CARET] = ACTIONS(3638), + [aux_sym_command_token1] = ACTIONS(3638), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3640), + }, + [1164] = { + [sym_match_arm] = STATE(6728), + [sym_default_arm] = STATE(6728), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), + [sym_comment] = STATE(1164), + [aux_sym_shebang_repeat1] = STATE(1180), + [aux_sym_ctrl_match_repeat1] = STATE(1225), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1165] = { + [sym_match_arm] = STATE(6727), + [sym_default_arm] = STATE(6727), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), + [sym_comment] = STATE(1165), + [aux_sym_shebang_repeat1] = STATE(1179), + [aux_sym_ctrl_match_repeat1] = STATE(1223), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1166] = { + [sym_expr_parenthesized] = STATE(4310), + [sym_val_range] = STATE(4800), + [sym__val_range] = STATE(7392), + [sym__val_range_with_end] = STATE(7266), + [sym__value] = STATE(4800), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(4440), + [sym_val_variable] = STATE(4369), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(3874), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(4083), + [sym__str_double_quotes] = STATE(4083), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym__unquoted_in_record] = STATE(4466), + [sym__unquoted_in_record_with_expr] = STATE(4800), + [sym__unquoted_anonymous_prefix] = STATE(6732), + [sym_comment] = STATE(1166), + [aux_sym_shebang_repeat1] = STATE(1160), + [sym__newline] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_DOLLAR] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_DOT_DOT] = ACTIONS(3548), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3550), + [anon_sym_DOT_DOT_LT] = ACTIONS(3550), + [anon_sym_null] = ACTIONS(3552), + [anon_sym_true] = ACTIONS(3554), + [anon_sym_false] = ACTIONS(3554), + [aux_sym__val_number_decimal_token1] = ACTIONS(3556), + [aux_sym__val_number_decimal_token2] = ACTIONS(3558), + [aux_sym__val_number_decimal_token3] = ACTIONS(3560), + [aux_sym__val_number_decimal_token4] = ACTIONS(3562), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(3566), + [aux_sym__val_number_token5] = ACTIONS(3566), + [aux_sym__val_number_token6] = ACTIONS(3566), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3574), + [sym__str_single_quotes] = ACTIONS(3576), + [sym__str_back_ticks] = ACTIONS(3576), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3588), + }, + [1167] = { + [sym_match_arm] = STATE(6956), + [sym_default_arm] = STATE(6956), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), + [sym_comment] = STATE(1167), + [aux_sym_shebang_repeat1] = STATE(1176), + [aux_sym_ctrl_match_repeat1] = STATE(1220), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1168] = { [sym_comment] = STATE(1168), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1168), - [aux_sym_cmd_identifier_token1] = ACTIONS(3579), - [aux_sym_cmd_identifier_token2] = ACTIONS(3579), - [aux_sym_cmd_identifier_token3] = ACTIONS(3579), - [aux_sym_cmd_identifier_token4] = ACTIONS(3579), - [aux_sym_cmd_identifier_token5] = ACTIONS(3579), - [aux_sym_cmd_identifier_token6] = ACTIONS(3579), - [aux_sym_cmd_identifier_token7] = ACTIONS(3579), - [aux_sym_cmd_identifier_token8] = ACTIONS(3579), - [aux_sym_cmd_identifier_token9] = ACTIONS(3579), - [aux_sym_cmd_identifier_token10] = ACTIONS(3579), - [aux_sym_cmd_identifier_token11] = ACTIONS(3579), - [aux_sym_cmd_identifier_token12] = ACTIONS(3579), - [aux_sym_cmd_identifier_token13] = ACTIONS(3579), - [aux_sym_cmd_identifier_token14] = ACTIONS(3579), - [aux_sym_cmd_identifier_token15] = ACTIONS(3579), - [aux_sym_cmd_identifier_token16] = ACTIONS(3579), - [aux_sym_cmd_identifier_token17] = ACTIONS(3579), - [aux_sym_cmd_identifier_token18] = ACTIONS(3579), - [aux_sym_cmd_identifier_token19] = ACTIONS(3579), - [aux_sym_cmd_identifier_token20] = ACTIONS(3579), - [aux_sym_cmd_identifier_token21] = ACTIONS(3579), - [aux_sym_cmd_identifier_token22] = ACTIONS(3579), - [aux_sym_cmd_identifier_token23] = ACTIONS(3579), - [aux_sym_cmd_identifier_token24] = ACTIONS(3579), - [aux_sym_cmd_identifier_token25] = ACTIONS(3579), - [aux_sym_cmd_identifier_token26] = ACTIONS(3579), - [aux_sym_cmd_identifier_token27] = ACTIONS(3579), - [aux_sym_cmd_identifier_token28] = ACTIONS(3579), - [aux_sym_cmd_identifier_token29] = ACTIONS(3579), - [aux_sym_cmd_identifier_token30] = ACTIONS(3579), - [aux_sym_cmd_identifier_token31] = ACTIONS(3579), - [aux_sym_cmd_identifier_token32] = ACTIONS(3579), - [aux_sym_cmd_identifier_token33] = ACTIONS(3579), - [aux_sym_cmd_identifier_token34] = ACTIONS(3579), - [aux_sym_cmd_identifier_token35] = ACTIONS(3579), - [aux_sym_cmd_identifier_token36] = ACTIONS(3579), - [aux_sym_cmd_identifier_token37] = ACTIONS(3579), - [aux_sym_cmd_identifier_token38] = ACTIONS(3579), - [aux_sym_cmd_identifier_token39] = ACTIONS(3579), - [aux_sym_cmd_identifier_token40] = ACTIONS(3579), - [sym__newline] = ACTIONS(3581), - [sym__space] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3579), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_DOLLAR] = ACTIONS(3579), - [anon_sym_DASH2] = ACTIONS(3579), - [anon_sym_LBRACE] = ACTIONS(3579), - [anon_sym_DOT_DOT] = ACTIONS(3579), - [aux_sym_expr_unary_token1] = ACTIONS(3579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3579), - [anon_sym_DOT_DOT_LT] = ACTIONS(3579), - [anon_sym_null] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3579), - [anon_sym_false] = ACTIONS(3579), - [aux_sym__val_number_decimal_token1] = ACTIONS(3579), - [aux_sym__val_number_decimal_token2] = ACTIONS(3579), - [aux_sym__val_number_decimal_token3] = ACTIONS(3579), - [aux_sym__val_number_decimal_token4] = ACTIONS(3579), - [aux_sym__val_number_token1] = ACTIONS(3579), - [aux_sym__val_number_token2] = ACTIONS(3579), - [aux_sym__val_number_token3] = ACTIONS(3579), - [aux_sym__val_number_token4] = ACTIONS(3579), - [aux_sym__val_number_token5] = ACTIONS(3579), - [aux_sym__val_number_token6] = ACTIONS(3579), - [anon_sym_0b] = ACTIONS(3579), - [anon_sym_0o] = ACTIONS(3579), - [anon_sym_0x] = ACTIONS(3579), - [sym_val_date] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym__str_single_quotes] = ACTIONS(3579), - [sym__str_back_ticks] = ACTIONS(3579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3579), - [aux_sym_env_var_token1] = ACTIONS(3579), - [anon_sym_CARET] = ACTIONS(3579), - [aux_sym_command_token1] = ACTIONS(3579), + [ts_builtin_sym_end] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3648), + [aux_sym__immediate_decimal_token2] = ACTIONS(3650), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3587), }, [1169] = { [sym_comment] = STATE(1169), - [aux_sym_pipe_element_repeat1] = STATE(1171), - [aux_sym_cmd_identifier_token1] = ACTIONS(3589), - [aux_sym_cmd_identifier_token2] = ACTIONS(3589), - [aux_sym_cmd_identifier_token3] = ACTIONS(3589), - [aux_sym_cmd_identifier_token4] = ACTIONS(3589), - [aux_sym_cmd_identifier_token5] = ACTIONS(3589), - [aux_sym_cmd_identifier_token6] = ACTIONS(3589), - [aux_sym_cmd_identifier_token7] = ACTIONS(3589), - [aux_sym_cmd_identifier_token8] = ACTIONS(3589), - [aux_sym_cmd_identifier_token9] = ACTIONS(3589), - [aux_sym_cmd_identifier_token10] = ACTIONS(3589), - [aux_sym_cmd_identifier_token11] = ACTIONS(3589), - [aux_sym_cmd_identifier_token12] = ACTIONS(3589), - [aux_sym_cmd_identifier_token13] = ACTIONS(3589), - [aux_sym_cmd_identifier_token14] = ACTIONS(3589), - [aux_sym_cmd_identifier_token15] = ACTIONS(3589), - [aux_sym_cmd_identifier_token16] = ACTIONS(3589), - [aux_sym_cmd_identifier_token17] = ACTIONS(3589), - [aux_sym_cmd_identifier_token18] = ACTIONS(3589), - [aux_sym_cmd_identifier_token19] = ACTIONS(3589), - [aux_sym_cmd_identifier_token20] = ACTIONS(3589), - [aux_sym_cmd_identifier_token21] = ACTIONS(3589), - [aux_sym_cmd_identifier_token22] = ACTIONS(3589), - [aux_sym_cmd_identifier_token23] = ACTIONS(3589), - [aux_sym_cmd_identifier_token24] = ACTIONS(3589), - [aux_sym_cmd_identifier_token25] = ACTIONS(3589), - [aux_sym_cmd_identifier_token26] = ACTIONS(3589), - [aux_sym_cmd_identifier_token27] = ACTIONS(3589), - [aux_sym_cmd_identifier_token28] = ACTIONS(3589), - [aux_sym_cmd_identifier_token29] = ACTIONS(3589), - [aux_sym_cmd_identifier_token30] = ACTIONS(3589), - [aux_sym_cmd_identifier_token31] = ACTIONS(3589), - [aux_sym_cmd_identifier_token32] = ACTIONS(3589), - [aux_sym_cmd_identifier_token33] = ACTIONS(3589), - [aux_sym_cmd_identifier_token34] = ACTIONS(3589), - [aux_sym_cmd_identifier_token35] = ACTIONS(3589), - [aux_sym_cmd_identifier_token36] = ACTIONS(3589), - [aux_sym_cmd_identifier_token37] = ACTIONS(3589), - [aux_sym_cmd_identifier_token38] = ACTIONS(3589), - [aux_sym_cmd_identifier_token39] = ACTIONS(3589), - [aux_sym_cmd_identifier_token40] = ACTIONS(3589), - [sym__space] = ACTIONS(3591), - [anon_sym_LBRACK] = ACTIONS(3589), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3589), - [anon_sym_DASH2] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3589), - [anon_sym_DOT_DOT] = ACTIONS(3589), - [aux_sym_expr_unary_token1] = ACTIONS(3589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3589), - [anon_sym_DOT_DOT_LT] = ACTIONS(3589), - [anon_sym_null] = ACTIONS(3589), - [anon_sym_true] = ACTIONS(3589), - [anon_sym_false] = ACTIONS(3589), - [aux_sym__val_number_decimal_token1] = ACTIONS(3589), - [aux_sym__val_number_decimal_token2] = ACTIONS(3589), - [aux_sym__val_number_decimal_token3] = ACTIONS(3589), - [aux_sym__val_number_decimal_token4] = ACTIONS(3589), - [aux_sym__val_number_token1] = ACTIONS(3589), - [aux_sym__val_number_token2] = ACTIONS(3589), - [aux_sym__val_number_token3] = ACTIONS(3589), - [aux_sym__val_number_token4] = ACTIONS(3589), - [aux_sym__val_number_token5] = ACTIONS(3589), - [aux_sym__val_number_token6] = ACTIONS(3589), - [anon_sym_0b] = ACTIONS(3589), - [anon_sym_0o] = ACTIONS(3589), - [anon_sym_0x] = ACTIONS(3589), - [sym_val_date] = ACTIONS(3589), - [anon_sym_DQUOTE] = ACTIONS(3589), - [sym__str_single_quotes] = ACTIONS(3589), - [sym__str_back_ticks] = ACTIONS(3589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3589), - [aux_sym_env_var_token1] = ACTIONS(3589), - [anon_sym_CARET] = ACTIONS(3589), - [aux_sym_command_token1] = ACTIONS(3589), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3536), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3593), }, [1170] = { [sym_comment] = STATE(1170), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_cmd_identifier_token1] = ACTIONS(1308), - [aux_sym_cmd_identifier_token2] = ACTIONS(1310), - [aux_sym_cmd_identifier_token3] = ACTIONS(1310), - [aux_sym_cmd_identifier_token4] = ACTIONS(1310), - [aux_sym_cmd_identifier_token5] = ACTIONS(1310), - [aux_sym_cmd_identifier_token6] = ACTIONS(1310), - [aux_sym_cmd_identifier_token7] = ACTIONS(1310), - [aux_sym_cmd_identifier_token8] = ACTIONS(1310), - [aux_sym_cmd_identifier_token9] = ACTIONS(1308), - [aux_sym_cmd_identifier_token10] = ACTIONS(1310), - [aux_sym_cmd_identifier_token11] = ACTIONS(1310), - [aux_sym_cmd_identifier_token12] = ACTIONS(1310), - [aux_sym_cmd_identifier_token13] = ACTIONS(1308), - [aux_sym_cmd_identifier_token14] = ACTIONS(1310), - [aux_sym_cmd_identifier_token15] = ACTIONS(1308), - [aux_sym_cmd_identifier_token16] = ACTIONS(1310), - [aux_sym_cmd_identifier_token17] = ACTIONS(1310), - [aux_sym_cmd_identifier_token18] = ACTIONS(1308), - [aux_sym_cmd_identifier_token19] = ACTIONS(1310), - [aux_sym_cmd_identifier_token20] = ACTIONS(1310), - [aux_sym_cmd_identifier_token21] = ACTIONS(1310), - [aux_sym_cmd_identifier_token22] = ACTIONS(1310), - [aux_sym_cmd_identifier_token23] = ACTIONS(1310), - [aux_sym_cmd_identifier_token24] = ACTIONS(1310), - [aux_sym_cmd_identifier_token25] = ACTIONS(1310), - [aux_sym_cmd_identifier_token26] = ACTIONS(1310), - [aux_sym_cmd_identifier_token27] = ACTIONS(1310), - [aux_sym_cmd_identifier_token28] = ACTIONS(1310), - [aux_sym_cmd_identifier_token29] = ACTIONS(1310), - [aux_sym_cmd_identifier_token30] = ACTIONS(1310), - [aux_sym_cmd_identifier_token31] = ACTIONS(1310), - [aux_sym_cmd_identifier_token32] = ACTIONS(1308), - [aux_sym_cmd_identifier_token33] = ACTIONS(1310), - [aux_sym_cmd_identifier_token34] = ACTIONS(1308), - [aux_sym_cmd_identifier_token35] = ACTIONS(1310), - [aux_sym_cmd_identifier_token36] = ACTIONS(1310), - [aux_sym_cmd_identifier_token37] = ACTIONS(1310), - [aux_sym_cmd_identifier_token38] = ACTIONS(1308), - [aux_sym_cmd_identifier_token39] = ACTIONS(1310), - [aux_sym_cmd_identifier_token40] = ACTIONS(1310), - [sym__newline] = ACTIONS(3595), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_DASH2] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [aux_sym_expr_unary_token1] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1310), - [anon_sym_DOT_DOT_LT] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym__val_number_decimal_token1] = ACTIONS(1308), - [aux_sym__val_number_decimal_token2] = ACTIONS(1310), - [aux_sym__val_number_decimal_token3] = ACTIONS(1310), - [aux_sym__val_number_decimal_token4] = ACTIONS(1310), - [aux_sym__val_number_token1] = ACTIONS(1310), - [aux_sym__val_number_token2] = ACTIONS(1310), - [aux_sym__val_number_token3] = ACTIONS(1310), - [aux_sym__val_number_token4] = ACTIONS(1308), - [aux_sym__val_number_token5] = ACTIONS(1308), - [aux_sym__val_number_token6] = ACTIONS(1308), - [anon_sym_0b] = ACTIONS(1308), - [anon_sym_0o] = ACTIONS(1308), - [anon_sym_0x] = ACTIONS(1308), - [sym_val_date] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym__str_single_quotes] = ACTIONS(1310), - [sym__str_back_ticks] = ACTIONS(1310), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1310), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [aux_sym_command_token1] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3652), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [1171] = { [sym_comment] = STATE(1171), - [aux_sym_pipe_element_repeat1] = STATE(1171), - [aux_sym_cmd_identifier_token1] = ACTIONS(3598), - [aux_sym_cmd_identifier_token2] = ACTIONS(3598), - [aux_sym_cmd_identifier_token3] = ACTIONS(3598), - [aux_sym_cmd_identifier_token4] = ACTIONS(3598), - [aux_sym_cmd_identifier_token5] = ACTIONS(3598), - [aux_sym_cmd_identifier_token6] = ACTIONS(3598), - [aux_sym_cmd_identifier_token7] = ACTIONS(3598), - [aux_sym_cmd_identifier_token8] = ACTIONS(3598), - [aux_sym_cmd_identifier_token9] = ACTIONS(3598), - [aux_sym_cmd_identifier_token10] = ACTIONS(3598), - [aux_sym_cmd_identifier_token11] = ACTIONS(3598), - [aux_sym_cmd_identifier_token12] = ACTIONS(3598), - [aux_sym_cmd_identifier_token13] = ACTIONS(3598), - [aux_sym_cmd_identifier_token14] = ACTIONS(3598), - [aux_sym_cmd_identifier_token15] = ACTIONS(3598), - [aux_sym_cmd_identifier_token16] = ACTIONS(3598), - [aux_sym_cmd_identifier_token17] = ACTIONS(3598), - [aux_sym_cmd_identifier_token18] = ACTIONS(3598), - [aux_sym_cmd_identifier_token19] = ACTIONS(3598), - [aux_sym_cmd_identifier_token20] = ACTIONS(3598), - [aux_sym_cmd_identifier_token21] = ACTIONS(3598), - [aux_sym_cmd_identifier_token22] = ACTIONS(3598), - [aux_sym_cmd_identifier_token23] = ACTIONS(3598), - [aux_sym_cmd_identifier_token24] = ACTIONS(3598), - [aux_sym_cmd_identifier_token25] = ACTIONS(3598), - [aux_sym_cmd_identifier_token26] = ACTIONS(3598), - [aux_sym_cmd_identifier_token27] = ACTIONS(3598), - [aux_sym_cmd_identifier_token28] = ACTIONS(3598), - [aux_sym_cmd_identifier_token29] = ACTIONS(3598), - [aux_sym_cmd_identifier_token30] = ACTIONS(3598), - [aux_sym_cmd_identifier_token31] = ACTIONS(3598), - [aux_sym_cmd_identifier_token32] = ACTIONS(3598), - [aux_sym_cmd_identifier_token33] = ACTIONS(3598), - [aux_sym_cmd_identifier_token34] = ACTIONS(3598), - [aux_sym_cmd_identifier_token35] = ACTIONS(3598), - [aux_sym_cmd_identifier_token36] = ACTIONS(3598), - [aux_sym_cmd_identifier_token37] = ACTIONS(3598), - [aux_sym_cmd_identifier_token38] = ACTIONS(3598), - [aux_sym_cmd_identifier_token39] = ACTIONS(3598), - [aux_sym_cmd_identifier_token40] = ACTIONS(3598), - [sym__space] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_DASH2] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [aux_sym_expr_unary_token1] = ACTIONS(3598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3598), - [anon_sym_DOT_DOT_LT] = ACTIONS(3598), - [anon_sym_null] = ACTIONS(3598), - [anon_sym_true] = ACTIONS(3598), - [anon_sym_false] = ACTIONS(3598), - [aux_sym__val_number_decimal_token1] = ACTIONS(3598), - [aux_sym__val_number_decimal_token2] = ACTIONS(3598), - [aux_sym__val_number_decimal_token3] = ACTIONS(3598), - [aux_sym__val_number_decimal_token4] = ACTIONS(3598), - [aux_sym__val_number_token1] = ACTIONS(3598), - [aux_sym__val_number_token2] = ACTIONS(3598), - [aux_sym__val_number_token3] = ACTIONS(3598), - [aux_sym__val_number_token4] = ACTIONS(3598), - [aux_sym__val_number_token5] = ACTIONS(3598), - [aux_sym__val_number_token6] = ACTIONS(3598), - [anon_sym_0b] = ACTIONS(3598), - [anon_sym_0o] = ACTIONS(3598), - [anon_sym_0x] = ACTIONS(3598), - [sym_val_date] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [sym__str_single_quotes] = ACTIONS(3598), - [sym__str_back_ticks] = ACTIONS(3598), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3598), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), - [aux_sym_env_var_token1] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [aux_sym_command_token1] = ACTIONS(3598), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3604), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3603), }, [1172] = { - [sym_env_var] = STATE(8133), [sym_comment] = STATE(1172), - [aux_sym_pipe_element_repeat2] = STATE(1172), - [aux_sym_cmd_identifier_token1] = ACTIONS(3589), - [aux_sym_cmd_identifier_token2] = ACTIONS(3593), - [aux_sym_cmd_identifier_token3] = ACTIONS(3593), - [aux_sym_cmd_identifier_token4] = ACTIONS(3593), - [aux_sym_cmd_identifier_token5] = ACTIONS(3593), - [aux_sym_cmd_identifier_token6] = ACTIONS(3593), - [aux_sym_cmd_identifier_token7] = ACTIONS(3593), - [aux_sym_cmd_identifier_token8] = ACTIONS(3593), - [aux_sym_cmd_identifier_token9] = ACTIONS(3589), - [aux_sym_cmd_identifier_token10] = ACTIONS(3593), - [aux_sym_cmd_identifier_token11] = ACTIONS(3593), - [aux_sym_cmd_identifier_token12] = ACTIONS(3593), - [aux_sym_cmd_identifier_token13] = ACTIONS(3589), - [aux_sym_cmd_identifier_token14] = ACTIONS(3593), - [aux_sym_cmd_identifier_token15] = ACTIONS(3589), - [aux_sym_cmd_identifier_token16] = ACTIONS(3593), - [aux_sym_cmd_identifier_token17] = ACTIONS(3593), - [aux_sym_cmd_identifier_token18] = ACTIONS(3589), - [aux_sym_cmd_identifier_token19] = ACTIONS(3593), - [aux_sym_cmd_identifier_token20] = ACTIONS(3593), - [aux_sym_cmd_identifier_token21] = ACTIONS(3593), - [aux_sym_cmd_identifier_token22] = ACTIONS(3593), - [aux_sym_cmd_identifier_token23] = ACTIONS(3593), - [aux_sym_cmd_identifier_token24] = ACTIONS(3593), - [aux_sym_cmd_identifier_token25] = ACTIONS(3593), - [aux_sym_cmd_identifier_token26] = ACTIONS(3593), - [aux_sym_cmd_identifier_token27] = ACTIONS(3593), - [aux_sym_cmd_identifier_token28] = ACTIONS(3593), - [aux_sym_cmd_identifier_token29] = ACTIONS(3593), - [aux_sym_cmd_identifier_token30] = ACTIONS(3593), - [aux_sym_cmd_identifier_token31] = ACTIONS(3593), - [aux_sym_cmd_identifier_token32] = ACTIONS(3589), - [aux_sym_cmd_identifier_token33] = ACTIONS(3593), - [aux_sym_cmd_identifier_token34] = ACTIONS(3589), - [aux_sym_cmd_identifier_token35] = ACTIONS(3593), - [aux_sym_cmd_identifier_token36] = ACTIONS(3593), - [aux_sym_cmd_identifier_token37] = ACTIONS(3593), - [aux_sym_cmd_identifier_token38] = ACTIONS(3589), - [aux_sym_cmd_identifier_token39] = ACTIONS(3593), - [aux_sym_cmd_identifier_token40] = ACTIONS(3593), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3593), - [anon_sym_DOLLAR] = ACTIONS(3589), - [anon_sym_DASH2] = ACTIONS(3589), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3589), - [aux_sym_expr_unary_token1] = ACTIONS(3593), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3593), - [anon_sym_DOT_DOT_LT] = ACTIONS(3593), - [anon_sym_null] = ACTIONS(3589), - [anon_sym_true] = ACTIONS(3589), - [anon_sym_false] = ACTIONS(3589), - [aux_sym__val_number_decimal_token1] = ACTIONS(3589), - [aux_sym__val_number_decimal_token2] = ACTIONS(3593), - [aux_sym__val_number_decimal_token3] = ACTIONS(3593), - [aux_sym__val_number_decimal_token4] = ACTIONS(3593), - [aux_sym__val_number_token1] = ACTIONS(3593), - [aux_sym__val_number_token2] = ACTIONS(3593), - [aux_sym__val_number_token3] = ACTIONS(3593), - [aux_sym__val_number_token4] = ACTIONS(3589), - [aux_sym__val_number_token5] = ACTIONS(3589), - [aux_sym__val_number_token6] = ACTIONS(3589), - [anon_sym_0b] = ACTIONS(3589), - [anon_sym_0o] = ACTIONS(3589), - [anon_sym_0x] = ACTIONS(3589), - [sym_val_date] = ACTIONS(3593), - [anon_sym_DQUOTE] = ACTIONS(3593), - [sym__str_single_quotes] = ACTIONS(3593), - [sym__str_back_ticks] = ACTIONS(3593), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3593), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3593), - [aux_sym_env_var_token1] = ACTIONS(3605), - [anon_sym_CARET] = ACTIONS(3593), - [aux_sym_command_token1] = ACTIONS(3593), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3593), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3654), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [1173] = { [sym_comment] = STATE(1173), - [aux_sym_cmd_identifier_token1] = ACTIONS(3608), - [aux_sym_cmd_identifier_token2] = ACTIONS(3608), - [aux_sym_cmd_identifier_token3] = ACTIONS(3608), - [aux_sym_cmd_identifier_token4] = ACTIONS(3608), - [aux_sym_cmd_identifier_token5] = ACTIONS(3608), - [aux_sym_cmd_identifier_token6] = ACTIONS(3608), - [aux_sym_cmd_identifier_token7] = ACTIONS(3608), - [aux_sym_cmd_identifier_token8] = ACTIONS(3608), - [aux_sym_cmd_identifier_token9] = ACTIONS(3608), - [aux_sym_cmd_identifier_token10] = ACTIONS(3608), - [aux_sym_cmd_identifier_token11] = ACTIONS(3608), - [aux_sym_cmd_identifier_token12] = ACTIONS(3608), - [aux_sym_cmd_identifier_token13] = ACTIONS(3608), - [aux_sym_cmd_identifier_token14] = ACTIONS(3608), - [aux_sym_cmd_identifier_token15] = ACTIONS(3608), - [aux_sym_cmd_identifier_token16] = ACTIONS(3608), - [aux_sym_cmd_identifier_token17] = ACTIONS(3608), - [aux_sym_cmd_identifier_token18] = ACTIONS(3608), - [aux_sym_cmd_identifier_token19] = ACTIONS(3608), - [aux_sym_cmd_identifier_token20] = ACTIONS(3608), - [aux_sym_cmd_identifier_token21] = ACTIONS(3608), - [aux_sym_cmd_identifier_token22] = ACTIONS(3608), - [aux_sym_cmd_identifier_token23] = ACTIONS(3608), - [aux_sym_cmd_identifier_token24] = ACTIONS(3608), - [aux_sym_cmd_identifier_token25] = ACTIONS(3608), - [aux_sym_cmd_identifier_token26] = ACTIONS(3608), - [aux_sym_cmd_identifier_token27] = ACTIONS(3608), - [aux_sym_cmd_identifier_token28] = ACTIONS(3608), - [aux_sym_cmd_identifier_token29] = ACTIONS(3608), - [aux_sym_cmd_identifier_token30] = ACTIONS(3608), - [aux_sym_cmd_identifier_token31] = ACTIONS(3608), - [aux_sym_cmd_identifier_token32] = ACTIONS(3608), - [aux_sym_cmd_identifier_token33] = ACTIONS(3608), - [aux_sym_cmd_identifier_token34] = ACTIONS(3608), - [aux_sym_cmd_identifier_token35] = ACTIONS(3608), - [aux_sym_cmd_identifier_token36] = ACTIONS(3608), - [aux_sym_cmd_identifier_token37] = ACTIONS(3608), - [aux_sym_cmd_identifier_token38] = ACTIONS(3608), - [aux_sym_cmd_identifier_token39] = ACTIONS(3608), - [aux_sym_cmd_identifier_token40] = ACTIONS(3608), - [sym__newline] = ACTIONS(3608), - [sym__space] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3608), - [anon_sym_DASH2] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [aux_sym_expr_unary_token1] = ACTIONS(3608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3608), - [anon_sym_DOT_DOT_LT] = ACTIONS(3608), - [anon_sym_null] = ACTIONS(3608), - [anon_sym_true] = ACTIONS(3608), - [anon_sym_false] = ACTIONS(3608), - [aux_sym__val_number_decimal_token1] = ACTIONS(3608), - [aux_sym__val_number_decimal_token2] = ACTIONS(3608), - [aux_sym__val_number_decimal_token3] = ACTIONS(3608), - [aux_sym__val_number_decimal_token4] = ACTIONS(3608), - [aux_sym__val_number_token1] = ACTIONS(3608), - [aux_sym__val_number_token2] = ACTIONS(3608), - [aux_sym__val_number_token3] = ACTIONS(3608), - [aux_sym__val_number_token4] = ACTIONS(3608), - [aux_sym__val_number_token5] = ACTIONS(3608), - [aux_sym__val_number_token6] = ACTIONS(3608), - [anon_sym_0b] = ACTIONS(3608), - [anon_sym_0o] = ACTIONS(3608), - [anon_sym_0x] = ACTIONS(3608), - [sym_val_date] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3608), - [sym__str_single_quotes] = ACTIONS(3608), - [sym__str_back_ticks] = ACTIONS(3608), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3608), - [aux_sym_env_var_token1] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [aux_sym_command_token1] = ACTIONS(3608), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3656), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3610), }, [1174] = { - [sym_env_var] = STATE(7562), [sym_comment] = STATE(1174), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1174), - [aux_sym_cmd_identifier_token1] = ACTIONS(3569), - [aux_sym_cmd_identifier_token2] = ACTIONS(3575), - [aux_sym_cmd_identifier_token3] = ACTIONS(3575), - [aux_sym_cmd_identifier_token4] = ACTIONS(3575), - [aux_sym_cmd_identifier_token5] = ACTIONS(3575), - [aux_sym_cmd_identifier_token6] = ACTIONS(3575), - [aux_sym_cmd_identifier_token7] = ACTIONS(3575), - [aux_sym_cmd_identifier_token8] = ACTIONS(3575), - [aux_sym_cmd_identifier_token9] = ACTIONS(3569), - [aux_sym_cmd_identifier_token10] = ACTIONS(3575), - [aux_sym_cmd_identifier_token11] = ACTIONS(3575), - [aux_sym_cmd_identifier_token12] = ACTIONS(3575), - [aux_sym_cmd_identifier_token13] = ACTIONS(3569), - [aux_sym_cmd_identifier_token14] = ACTIONS(3575), - [aux_sym_cmd_identifier_token15] = ACTIONS(3569), - [aux_sym_cmd_identifier_token16] = ACTIONS(3575), - [aux_sym_cmd_identifier_token17] = ACTIONS(3575), - [aux_sym_cmd_identifier_token18] = ACTIONS(3569), - [aux_sym_cmd_identifier_token19] = ACTIONS(3575), - [aux_sym_cmd_identifier_token20] = ACTIONS(3575), - [aux_sym_cmd_identifier_token21] = ACTIONS(3575), - [aux_sym_cmd_identifier_token22] = ACTIONS(3575), - [aux_sym_cmd_identifier_token23] = ACTIONS(3575), - [aux_sym_cmd_identifier_token24] = ACTIONS(3575), - [aux_sym_cmd_identifier_token25] = ACTIONS(3575), - [aux_sym_cmd_identifier_token26] = ACTIONS(3575), - [aux_sym_cmd_identifier_token27] = ACTIONS(3575), - [aux_sym_cmd_identifier_token28] = ACTIONS(3575), - [aux_sym_cmd_identifier_token29] = ACTIONS(3575), - [aux_sym_cmd_identifier_token30] = ACTIONS(3575), - [aux_sym_cmd_identifier_token31] = ACTIONS(3575), - [aux_sym_cmd_identifier_token32] = ACTIONS(3569), - [aux_sym_cmd_identifier_token33] = ACTIONS(3575), - [aux_sym_cmd_identifier_token34] = ACTIONS(3569), - [aux_sym_cmd_identifier_token35] = ACTIONS(3575), - [aux_sym_cmd_identifier_token36] = ACTIONS(3575), - [aux_sym_cmd_identifier_token37] = ACTIONS(3575), - [aux_sym_cmd_identifier_token38] = ACTIONS(3569), - [aux_sym_cmd_identifier_token39] = ACTIONS(3575), - [aux_sym_cmd_identifier_token40] = ACTIONS(3575), - [anon_sym_LBRACK] = ACTIONS(3575), - [anon_sym_LPAREN] = ACTIONS(3575), - [anon_sym_DOLLAR] = ACTIONS(3569), - [anon_sym_DASH2] = ACTIONS(3569), - [anon_sym_LBRACE] = ACTIONS(3575), - [anon_sym_DOT_DOT] = ACTIONS(3569), - [aux_sym_expr_unary_token1] = ACTIONS(3575), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3575), - [anon_sym_DOT_DOT_LT] = ACTIONS(3575), - [anon_sym_null] = ACTIONS(3569), - [anon_sym_true] = ACTIONS(3569), - [anon_sym_false] = ACTIONS(3569), - [aux_sym__val_number_decimal_token1] = ACTIONS(3569), - [aux_sym__val_number_decimal_token2] = ACTIONS(3575), - [aux_sym__val_number_decimal_token3] = ACTIONS(3575), - [aux_sym__val_number_decimal_token4] = ACTIONS(3575), - [aux_sym__val_number_token1] = ACTIONS(3575), - [aux_sym__val_number_token2] = ACTIONS(3575), - [aux_sym__val_number_token3] = ACTIONS(3575), - [aux_sym__val_number_token4] = ACTIONS(3569), - [aux_sym__val_number_token5] = ACTIONS(3569), - [aux_sym__val_number_token6] = ACTIONS(3569), - [anon_sym_0b] = ACTIONS(3569), - [anon_sym_0o] = ACTIONS(3569), - [anon_sym_0x] = ACTIONS(3569), - [sym_val_date] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(3575), - [sym__str_single_quotes] = ACTIONS(3575), - [sym__str_back_ticks] = ACTIONS(3575), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3575), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3575), - [aux_sym_env_var_token1] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3575), - [aux_sym_command_token1] = ACTIONS(3575), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3575), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3658), + [aux_sym__immediate_decimal_token2] = ACTIONS(3660), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), }, [1175] = { - [sym_ctrl_do] = STATE(5075), - [sym_ctrl_if] = STATE(5075), - [sym_ctrl_match] = STATE(5075), - [sym_ctrl_try] = STATE(5075), - [sym__expression] = STATE(5075), - [sym_expr_unary] = STATE(2212), - [sym__expr_unary_minus] = STATE(2213), - [sym_expr_binary] = STATE(2212), - [sym__expr_binary_expression] = STATE(4212), - [sym_expr_parenthesized] = STATE(2159), - [sym_val_range] = STATE(2212), - [sym__value] = STATE(2212), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(2225), - [sym_val_variable] = STATE(2027), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(3307), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), [sym_comment] = STATE(1175), - [sym__newline] = ACTIONS(3485), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_err_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_GT_PIPE] = ACTIONS(3485), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3485), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3485), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3485), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_DASH2] = ACTIONS(389), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3615), - [anon_sym_match] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3493), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(431), - [aux_sym__val_number_token5] = ACTIONS(431), - [aux_sym__val_number_token6] = ACTIONS(431), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3662), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3664), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), + }, + [1176] = { + [sym_match_arm] = STATE(7193), + [sym_default_arm] = STATE(7193), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), + [sym_comment] = STATE(1176), + [aux_sym_shebang_repeat1] = STATE(3079), + [aux_sym_ctrl_match_repeat1] = STATE(1216), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1176] = { - [sym_comment] = STATE(1176), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3617), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3619), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(253), }, [1177] = { + [sym_match_arm] = STATE(7134), + [sym_default_arm] = STATE(7134), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1177), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3623), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3079), + [aux_sym_ctrl_match_repeat1] = STATE(1214), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1178] = { [sym_comment] = STATE(1178), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3625), - [aux_sym__immediate_decimal_token2] = ACTIONS(3627), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3592), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), }, [1179] = { - [sym_expr_parenthesized] = STATE(4831), - [sym_val_range] = STATE(5448), - [sym__val_range] = STATE(8329), - [sym__val_range_with_end] = STATE(8057), - [sym__value] = STATE(5448), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(4961), - [sym_val_variable] = STATE(4798), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(4357), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4958), - [sym__str_double_quotes] = STATE(4958), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym__unquoted_in_record] = STATE(4957), - [sym__unquoted_in_record_with_expr] = STATE(5448), - [sym__unquoted_anonymous_prefix] = STATE(7639), + [sym_match_arm] = STATE(6872), + [sym_default_arm] = STATE(6872), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1179), - [aux_sym_shebang_repeat1] = STATE(1191), - [sym__newline] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_true] = ACTIONS(3645), - [anon_sym_false] = ACTIONS(3645), - [aux_sym__val_number_decimal_token1] = ACTIONS(3647), - [aux_sym__val_number_decimal_token2] = ACTIONS(3649), - [aux_sym__val_number_decimal_token3] = ACTIONS(3651), - [aux_sym__val_number_decimal_token4] = ACTIONS(3653), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(3657), - [aux_sym__val_number_token5] = ACTIONS(3657), - [aux_sym__val_number_token6] = ACTIONS(3657), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym__str_single_quotes] = ACTIONS(3667), - [sym__str_back_ticks] = ACTIONS(3667), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3679), + [aux_sym_shebang_repeat1] = STATE(3079), + [aux_sym_ctrl_match_repeat1] = STATE(1226), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1180] = { + [sym_match_arm] = STATE(6875), + [sym_default_arm] = STATE(6875), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3683), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(3079), + [aux_sym_ctrl_match_repeat1] = STATE(1227), + [sym__newline] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1181] = { + [sym_expr_parenthesized] = STATE(5995), + [sym_val_range] = STATE(7282), + [sym__val_range] = STATE(7719), + [sym__val_range_with_end] = STATE(7287), + [sym__value] = STATE(7282), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6202), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5142), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_record] = STATE(6078), + [sym__unquoted_in_record_with_expr] = STATE(7282), + [sym__unquoted_anonymous_prefix] = STATE(6858), [sym_comment] = STATE(1181), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3685), - [aux_sym__immediate_decimal_token2] = ACTIONS(3687), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3668), + [anon_sym_DOT_DOT_LT] = ACTIONS(3668), + [anon_sym_null] = ACTIONS(3670), + [anon_sym_true] = ACTIONS(3672), + [anon_sym_false] = ACTIONS(3672), + [aux_sym__val_number_decimal_token1] = ACTIONS(3674), + [aux_sym__val_number_decimal_token2] = ACTIONS(3676), + [aux_sym__val_number_decimal_token3] = ACTIONS(3678), + [aux_sym__val_number_decimal_token4] = ACTIONS(3680), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3682), + [aux_sym__val_number_token5] = ACTIONS(3682), + [aux_sym__val_number_token6] = ACTIONS(3682), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3686), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [1182] = { [sym_comment] = STATE(1182), - [aux_sym_cmd_identifier_token1] = ACTIONS(1304), - [aux_sym_cmd_identifier_token2] = ACTIONS(1302), - [aux_sym_cmd_identifier_token3] = ACTIONS(1302), - [aux_sym_cmd_identifier_token4] = ACTIONS(1302), - [aux_sym_cmd_identifier_token5] = ACTIONS(1302), - [aux_sym_cmd_identifier_token6] = ACTIONS(1302), - [aux_sym_cmd_identifier_token7] = ACTIONS(1302), - [aux_sym_cmd_identifier_token8] = ACTIONS(1302), - [aux_sym_cmd_identifier_token9] = ACTIONS(1304), - [aux_sym_cmd_identifier_token10] = ACTIONS(1302), - [aux_sym_cmd_identifier_token11] = ACTIONS(1302), - [aux_sym_cmd_identifier_token12] = ACTIONS(1302), - [aux_sym_cmd_identifier_token13] = ACTIONS(1304), - [aux_sym_cmd_identifier_token14] = ACTIONS(1302), - [aux_sym_cmd_identifier_token15] = ACTIONS(1304), - [aux_sym_cmd_identifier_token16] = ACTIONS(1302), - [aux_sym_cmd_identifier_token17] = ACTIONS(1302), - [aux_sym_cmd_identifier_token18] = ACTIONS(1304), - [aux_sym_cmd_identifier_token19] = ACTIONS(1302), - [aux_sym_cmd_identifier_token20] = ACTIONS(1302), - [aux_sym_cmd_identifier_token21] = ACTIONS(1302), - [aux_sym_cmd_identifier_token22] = ACTIONS(1302), - [aux_sym_cmd_identifier_token23] = ACTIONS(1302), - [aux_sym_cmd_identifier_token24] = ACTIONS(1302), - [aux_sym_cmd_identifier_token25] = ACTIONS(1302), - [aux_sym_cmd_identifier_token26] = ACTIONS(1302), - [aux_sym_cmd_identifier_token27] = ACTIONS(1302), - [aux_sym_cmd_identifier_token28] = ACTIONS(1302), - [aux_sym_cmd_identifier_token29] = ACTIONS(1302), - [aux_sym_cmd_identifier_token30] = ACTIONS(1302), - [aux_sym_cmd_identifier_token31] = ACTIONS(1302), - [aux_sym_cmd_identifier_token32] = ACTIONS(1304), - [aux_sym_cmd_identifier_token33] = ACTIONS(1302), - [aux_sym_cmd_identifier_token34] = ACTIONS(1304), - [aux_sym_cmd_identifier_token35] = ACTIONS(1302), - [aux_sym_cmd_identifier_token36] = ACTIONS(1302), - [aux_sym_cmd_identifier_token37] = ACTIONS(1302), - [aux_sym_cmd_identifier_token38] = ACTIONS(1304), - [aux_sym_cmd_identifier_token39] = ACTIONS(1302), - [aux_sym_cmd_identifier_token40] = ACTIONS(1302), - [sym__newline] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_DASH2] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [aux_sym_expr_unary_token1] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1302), - [anon_sym_DOT_DOT_LT] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [aux_sym__val_number_decimal_token1] = ACTIONS(1304), - [aux_sym__val_number_decimal_token2] = ACTIONS(1302), - [aux_sym__val_number_decimal_token3] = ACTIONS(1302), - [aux_sym__val_number_decimal_token4] = ACTIONS(1302), - [aux_sym__val_number_token1] = ACTIONS(1302), - [aux_sym__val_number_token2] = ACTIONS(1302), - [aux_sym__val_number_token3] = ACTIONS(1302), - [aux_sym__val_number_token4] = ACTIONS(1304), - [aux_sym__val_number_token5] = ACTIONS(1304), - [aux_sym__val_number_token6] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1304), - [anon_sym_0o] = ACTIONS(1304), - [anon_sym_0x] = ACTIONS(1304), - [sym_val_date] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__str_single_quotes] = ACTIONS(1302), - [sym__str_back_ticks] = ACTIONS(1302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1302), - [aux_sym_command_token1] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1302), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3688), + [sym_duration_unit] = ACTIONS(3690), + [anon_sym_POUND] = ACTIONS(3), }, [1183] = { [sym_comment] = STATE(1183), - [aux_sym_cmd_identifier_token1] = ACTIONS(3689), - [aux_sym_cmd_identifier_token2] = ACTIONS(3689), - [aux_sym_cmd_identifier_token3] = ACTIONS(3689), - [aux_sym_cmd_identifier_token4] = ACTIONS(3689), - [aux_sym_cmd_identifier_token5] = ACTIONS(3689), - [aux_sym_cmd_identifier_token6] = ACTIONS(3689), - [aux_sym_cmd_identifier_token7] = ACTIONS(3689), - [aux_sym_cmd_identifier_token8] = ACTIONS(3689), - [aux_sym_cmd_identifier_token9] = ACTIONS(3689), - [aux_sym_cmd_identifier_token10] = ACTIONS(3689), - [aux_sym_cmd_identifier_token11] = ACTIONS(3689), - [aux_sym_cmd_identifier_token12] = ACTIONS(3689), - [aux_sym_cmd_identifier_token13] = ACTIONS(3689), - [aux_sym_cmd_identifier_token14] = ACTIONS(3689), - [aux_sym_cmd_identifier_token15] = ACTIONS(3689), - [aux_sym_cmd_identifier_token16] = ACTIONS(3689), - [aux_sym_cmd_identifier_token17] = ACTIONS(3689), - [aux_sym_cmd_identifier_token18] = ACTIONS(3689), - [aux_sym_cmd_identifier_token19] = ACTIONS(3689), - [aux_sym_cmd_identifier_token20] = ACTIONS(3689), - [aux_sym_cmd_identifier_token21] = ACTIONS(3689), - [aux_sym_cmd_identifier_token22] = ACTIONS(3689), - [aux_sym_cmd_identifier_token23] = ACTIONS(3689), - [aux_sym_cmd_identifier_token24] = ACTIONS(3689), - [aux_sym_cmd_identifier_token25] = ACTIONS(3689), - [aux_sym_cmd_identifier_token26] = ACTIONS(3689), - [aux_sym_cmd_identifier_token27] = ACTIONS(3689), - [aux_sym_cmd_identifier_token28] = ACTIONS(3689), - [aux_sym_cmd_identifier_token29] = ACTIONS(3689), - [aux_sym_cmd_identifier_token30] = ACTIONS(3689), - [aux_sym_cmd_identifier_token31] = ACTIONS(3689), - [aux_sym_cmd_identifier_token32] = ACTIONS(3689), - [aux_sym_cmd_identifier_token33] = ACTIONS(3689), - [aux_sym_cmd_identifier_token34] = ACTIONS(3689), - [aux_sym_cmd_identifier_token35] = ACTIONS(3689), - [aux_sym_cmd_identifier_token36] = ACTIONS(3689), - [aux_sym_cmd_identifier_token37] = ACTIONS(3689), - [aux_sym_cmd_identifier_token38] = ACTIONS(3689), - [aux_sym_cmd_identifier_token39] = ACTIONS(3689), - [aux_sym_cmd_identifier_token40] = ACTIONS(3689), - [sym__space] = ACTIONS(3691), - [anon_sym_LBRACK] = ACTIONS(3689), - [anon_sym_LPAREN] = ACTIONS(3689), - [anon_sym_DOLLAR] = ACTIONS(3689), - [anon_sym_DASH2] = ACTIONS(3689), - [anon_sym_LBRACE] = ACTIONS(3689), - [anon_sym_DOT_DOT] = ACTIONS(3689), - [aux_sym_expr_unary_token1] = ACTIONS(3689), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3689), - [anon_sym_DOT_DOT_LT] = ACTIONS(3689), - [anon_sym_null] = ACTIONS(3689), - [anon_sym_true] = ACTIONS(3689), - [anon_sym_false] = ACTIONS(3689), - [aux_sym__val_number_decimal_token1] = ACTIONS(3689), - [aux_sym__val_number_decimal_token2] = ACTIONS(3689), - [aux_sym__val_number_decimal_token3] = ACTIONS(3689), - [aux_sym__val_number_decimal_token4] = ACTIONS(3689), - [aux_sym__val_number_token1] = ACTIONS(3689), - [aux_sym__val_number_token2] = ACTIONS(3689), - [aux_sym__val_number_token3] = ACTIONS(3689), - [aux_sym__val_number_token4] = ACTIONS(3689), - [aux_sym__val_number_token5] = ACTIONS(3689), - [aux_sym__val_number_token6] = ACTIONS(3689), - [anon_sym_0b] = ACTIONS(3689), - [anon_sym_0o] = ACTIONS(3689), - [anon_sym_0x] = ACTIONS(3689), - [sym_val_date] = ACTIONS(3689), - [anon_sym_DQUOTE] = ACTIONS(3689), - [sym__str_single_quotes] = ACTIONS(3689), - [sym__str_back_ticks] = ACTIONS(3689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3689), - [aux_sym_env_var_token1] = ACTIONS(3689), - [anon_sym_CARET] = ACTIONS(3689), - [aux_sym_command_token1] = ACTIONS(3689), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3691), }, [1184] = { - [sym_match_arm] = STATE(7745), - [sym_default_arm] = STATE(7745), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_expr_parenthesized] = STATE(5832), + [sym_val_range] = STATE(7222), + [sym__val_range] = STATE(7719), + [sym__val_range_with_end] = STATE(7287), + [sym__value] = STATE(7222), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6202), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5142), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_record] = STATE(6580), + [sym__unquoted_in_record_with_expr] = STATE(7222), + [sym__unquoted_anonymous_prefix] = STATE(6858), [sym_comment] = STATE(1184), - [aux_sym_shebang_repeat1] = STATE(1193), - [aux_sym_ctrl_match_repeat1] = STATE(1242), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_RBRACE] = ACTIONS(3701), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3668), + [anon_sym_DOT_DOT_LT] = ACTIONS(3668), + [anon_sym_null] = ACTIONS(3670), + [anon_sym_true] = ACTIONS(3672), + [anon_sym_false] = ACTIONS(3672), + [aux_sym__val_number_decimal_token1] = ACTIONS(3674), + [aux_sym__val_number_decimal_token2] = ACTIONS(3676), + [aux_sym__val_number_decimal_token3] = ACTIONS(3678), + [aux_sym__val_number_decimal_token4] = ACTIONS(3680), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3682), + [aux_sym__val_number_token5] = ACTIONS(3682), + [aux_sym__val_number_token6] = ACTIONS(3682), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3686), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [1185] = { [sym_comment] = STATE(1185), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3725), - [aux_sym__immediate_decimal_token2] = ACTIONS(3727), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), }, [1186] = { - [sym_expr_parenthesized] = STATE(4864), - [sym_val_range] = STATE(5343), - [sym__val_range] = STATE(8329), - [sym__val_range_with_end] = STATE(8057), - [sym__value] = STATE(5343), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(4961), - [sym_val_variable] = STATE(4798), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(4357), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4958), - [sym__str_double_quotes] = STATE(4958), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym__unquoted_in_record] = STATE(4924), - [sym__unquoted_in_record_with_expr] = STATE(5343), - [sym__unquoted_anonymous_prefix] = STATE(7639), [sym_comment] = STATE(1186), - [aux_sym_shebang_repeat1] = STATE(1187), - [sym__newline] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_true] = ACTIONS(3645), - [anon_sym_false] = ACTIONS(3645), - [aux_sym__val_number_decimal_token1] = ACTIONS(3647), - [aux_sym__val_number_decimal_token2] = ACTIONS(3649), - [aux_sym__val_number_decimal_token3] = ACTIONS(3651), - [aux_sym__val_number_decimal_token4] = ACTIONS(3653), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(3657), - [aux_sym__val_number_token5] = ACTIONS(3657), - [aux_sym__val_number_token6] = ACTIONS(3657), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym__str_single_quotes] = ACTIONS(3667), - [sym__str_back_ticks] = ACTIONS(3667), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3679), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [1187] = { - [sym_expr_parenthesized] = STATE(4786), - [sym_val_range] = STATE(5442), - [sym__val_range] = STATE(8329), - [sym__val_range_with_end] = STATE(8057), - [sym__value] = STATE(5442), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(4961), - [sym_val_variable] = STATE(4798), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(4357), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4958), - [sym__str_double_quotes] = STATE(4958), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym__unquoted_in_record] = STATE(4919), - [sym__unquoted_in_record_with_expr] = STATE(5442), - [sym__unquoted_anonymous_prefix] = STATE(7639), [sym_comment] = STATE(1187), - [aux_sym_shebang_repeat1] = STATE(3113), - [sym__newline] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_true] = ACTIONS(3645), - [anon_sym_false] = ACTIONS(3645), - [aux_sym__val_number_decimal_token1] = ACTIONS(3647), - [aux_sym__val_number_decimal_token2] = ACTIONS(3649), - [aux_sym__val_number_decimal_token3] = ACTIONS(3651), - [aux_sym__val_number_decimal_token4] = ACTIONS(3653), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(3657), - [aux_sym__val_number_token5] = ACTIONS(3657), - [aux_sym__val_number_token6] = ACTIONS(3657), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym__str_single_quotes] = ACTIONS(3667), - [sym__str_back_ticks] = ACTIONS(3667), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3679), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(3), }, [1188] = { - [sym_match_arm] = STATE(7505), - [sym_default_arm] = STATE(7505), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1188), - [aux_sym_shebang_repeat1] = STATE(1194), - [aux_sym_ctrl_match_repeat1] = STATE(1232), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_RBRACE] = ACTIONS(3729), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), }, [1189] = { - [sym_match_arm] = STATE(7633), - [sym_default_arm] = STATE(7633), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1189), - [aux_sym_shebang_repeat1] = STATE(1199), - [aux_sym_ctrl_match_repeat1] = STATE(1233), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_RBRACE] = ACTIONS(3731), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), }, [1190] = { - [sym_match_arm] = STATE(7634), - [sym_default_arm] = STATE(7634), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1190), - [aux_sym_shebang_repeat1] = STATE(1200), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), }, [1191] = { - [sym_expr_parenthesized] = STATE(4864), - [sym_val_range] = STATE(5343), - [sym__val_range] = STATE(8329), - [sym__val_range_with_end] = STATE(8057), - [sym__value] = STATE(5343), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(4961), - [sym_val_variable] = STATE(4798), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(4357), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4958), - [sym__str_double_quotes] = STATE(4958), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym__unquoted_in_record] = STATE(4924), - [sym__unquoted_in_record_with_expr] = STATE(5343), - [sym__unquoted_anonymous_prefix] = STATE(7639), [sym_comment] = STATE(1191), - [aux_sym_shebang_repeat1] = STATE(3113), - [sym__newline] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3631), - [anon_sym_LPAREN] = ACTIONS(3633), - [anon_sym_DOLLAR] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3639), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_LT] = ACTIONS(3641), - [anon_sym_null] = ACTIONS(3643), - [anon_sym_true] = ACTIONS(3645), - [anon_sym_false] = ACTIONS(3645), - [aux_sym__val_number_decimal_token1] = ACTIONS(3647), - [aux_sym__val_number_decimal_token2] = ACTIONS(3649), - [aux_sym__val_number_decimal_token3] = ACTIONS(3651), - [aux_sym__val_number_decimal_token4] = ACTIONS(3653), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(3657), - [aux_sym__val_number_token5] = ACTIONS(3657), - [aux_sym__val_number_token6] = ACTIONS(3657), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(3663), - [anon_sym_DQUOTE] = ACTIONS(3665), - [sym__str_single_quotes] = ACTIONS(3667), - [sym__str_back_ticks] = ACTIONS(3667), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3677), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3679), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(3), }, [1192] = { [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3735), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(3692), + [aux_sym__immediate_decimal_token2] = ACTIONS(3694), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), }, [1193] = { - [sym_match_arm] = STATE(7957), - [sym_default_arm] = STATE(7957), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1193), - [aux_sym_shebang_repeat1] = STATE(3196), - [aux_sym_ctrl_match_repeat1] = STATE(1246), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3698), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), }, [1194] = { - [sym_match_arm] = STATE(7802), - [sym_default_arm] = STATE(7802), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1194), - [aux_sym_shebang_repeat1] = STATE(3196), - [aux_sym_ctrl_match_repeat1] = STATE(1244), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3700), + [sym_duration_unit] = ACTIONS(3702), + [anon_sym_POUND] = ACTIONS(3), }, [1195] = { [sym_comment] = STATE(1195), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3737), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3704), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [1196] = { [sym_comment] = STATE(1196), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3623), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1601), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), }, [1197] = { + [sym_expr_parenthesized] = STATE(548), + [sym_val_range] = STATE(740), + [sym__val_range] = STATE(7545), + [sym__val_range_with_end] = STATE(7329), + [sym__value] = STATE(740), + [sym_val_nothing] = STATE(712), + [sym_val_bool] = STATE(599), + [sym_val_variable] = STATE(506), + [sym_val_number] = STATE(712), + [sym__val_number_decimal] = STATE(346), + [sym__val_number] = STATE(725), + [sym_val_duration] = STATE(712), + [sym_val_filesize] = STATE(712), + [sym_val_binary] = STATE(712), + [sym_val_string] = STATE(712), + [sym__raw_str] = STATE(754), + [sym__str_double_quotes] = STATE(754), + [sym_val_interpolated] = STATE(712), + [sym__inter_single_quotes] = STATE(727), + [sym__inter_double_quotes] = STATE(728), + [sym_val_list] = STATE(712), + [sym_val_record] = STATE(712), + [sym_val_table] = STATE(712), + [sym_val_closure] = STATE(712), + [sym__unquoted_in_record] = STATE(554), + [sym__unquoted_in_record_with_expr] = STATE(740), + [sym__unquoted_anonymous_prefix] = STATE(6633), [sym_comment] = STATE(1197), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3739), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_LPAREN] = ACTIONS(3708), + [anon_sym_DOLLAR] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_DOT_DOT] = ACTIONS(3714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3716), + [anon_sym_DOT_DOT_LT] = ACTIONS(3716), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_true] = ACTIONS(3720), + [anon_sym_false] = ACTIONS(3720), + [aux_sym__val_number_decimal_token1] = ACTIONS(3722), + [aux_sym__val_number_decimal_token2] = ACTIONS(3724), + [aux_sym__val_number_decimal_token3] = ACTIONS(3726), + [aux_sym__val_number_decimal_token4] = ACTIONS(3728), + [aux_sym__val_number_token1] = ACTIONS(3730), + [aux_sym__val_number_token2] = ACTIONS(3730), + [aux_sym__val_number_token3] = ACTIONS(3730), + [aux_sym__val_number_token4] = ACTIONS(3732), + [aux_sym__val_number_token5] = ACTIONS(3732), + [aux_sym__val_number_token6] = ACTIONS(3732), + [anon_sym_0b] = ACTIONS(3734), + [anon_sym_0o] = ACTIONS(3736), + [anon_sym_0x] = ACTIONS(3736), + [sym_val_date] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym__str_single_quotes] = ACTIONS(3742), + [sym__str_back_ticks] = ACTIONS(3742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3748), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3750), }, [1198] = { + [sym_expr_parenthesized] = STATE(549), + [sym_val_range] = STATE(744), + [sym__val_range] = STATE(7545), + [sym__val_range_with_end] = STATE(7329), + [sym__value] = STATE(744), + [sym_val_nothing] = STATE(712), + [sym_val_bool] = STATE(599), + [sym_val_variable] = STATE(506), + [sym_val_number] = STATE(712), + [sym__val_number_decimal] = STATE(346), + [sym__val_number] = STATE(725), + [sym_val_duration] = STATE(712), + [sym_val_filesize] = STATE(712), + [sym_val_binary] = STATE(712), + [sym_val_string] = STATE(712), + [sym__raw_str] = STATE(754), + [sym__str_double_quotes] = STATE(754), + [sym_val_interpolated] = STATE(712), + [sym__inter_single_quotes] = STATE(727), + [sym__inter_double_quotes] = STATE(728), + [sym_val_list] = STATE(712), + [sym_val_record] = STATE(712), + [sym_val_table] = STATE(712), + [sym_val_closure] = STATE(712), + [sym__unquoted_in_record] = STATE(591), + [sym__unquoted_in_record_with_expr] = STATE(744), + [sym__unquoted_anonymous_prefix] = STATE(6633), [sym_comment] = STATE(1198), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3741), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3743), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_LPAREN] = ACTIONS(3708), + [anon_sym_DOLLAR] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_DOT_DOT] = ACTIONS(3714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3716), + [anon_sym_DOT_DOT_LT] = ACTIONS(3716), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_true] = ACTIONS(3720), + [anon_sym_false] = ACTIONS(3720), + [aux_sym__val_number_decimal_token1] = ACTIONS(3722), + [aux_sym__val_number_decimal_token2] = ACTIONS(3724), + [aux_sym__val_number_decimal_token3] = ACTIONS(3726), + [aux_sym__val_number_decimal_token4] = ACTIONS(3728), + [aux_sym__val_number_token1] = ACTIONS(3730), + [aux_sym__val_number_token2] = ACTIONS(3730), + [aux_sym__val_number_token3] = ACTIONS(3730), + [aux_sym__val_number_token4] = ACTIONS(3732), + [aux_sym__val_number_token5] = ACTIONS(3732), + [aux_sym__val_number_token6] = ACTIONS(3732), + [anon_sym_0b] = ACTIONS(3734), + [anon_sym_0o] = ACTIONS(3736), + [anon_sym_0x] = ACTIONS(3736), + [sym_val_date] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym__str_single_quotes] = ACTIONS(3742), + [sym__str_back_ticks] = ACTIONS(3742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3748), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3750), }, [1199] = { - [sym_match_arm] = STATE(7723), - [sym_default_arm] = STATE(7723), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_expr_parenthesized] = STATE(5926), + [sym_val_range] = STATE(7277), + [sym__val_range] = STATE(7719), + [sym__val_range_with_end] = STATE(7287), + [sym__value] = STATE(7277), + [sym_val_nothing] = STATE(7055), + [sym_val_bool] = STATE(6202), + [sym_val_variable] = STATE(5793), + [sym_val_number] = STATE(7055), + [sym__val_number_decimal] = STATE(5142), + [sym__val_number] = STATE(7188), + [sym_val_duration] = STATE(7055), + [sym_val_filesize] = STATE(7055), + [sym_val_binary] = STATE(7055), + [sym_val_string] = STATE(7055), + [sym__raw_str] = STATE(5080), + [sym__str_double_quotes] = STATE(5080), + [sym_val_interpolated] = STATE(7055), + [sym__inter_single_quotes] = STATE(6630), + [sym__inter_double_quotes] = STATE(6638), + [sym_val_list] = STATE(7055), + [sym_val_record] = STATE(7055), + [sym_val_table] = STATE(7055), + [sym_val_closure] = STATE(7055), + [sym__unquoted_in_record] = STATE(6361), + [sym__unquoted_in_record_with_expr] = STATE(7277), + [sym__unquoted_anonymous_prefix] = STATE(6858), [sym_comment] = STATE(1199), - [aux_sym_shebang_repeat1] = STATE(3196), - [aux_sym_ctrl_match_repeat1] = STATE(1236), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_DOT_DOT] = ACTIONS(3666), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3668), + [anon_sym_DOT_DOT_LT] = ACTIONS(3668), + [anon_sym_null] = ACTIONS(3670), + [anon_sym_true] = ACTIONS(3672), + [anon_sym_false] = ACTIONS(3672), + [aux_sym__val_number_decimal_token1] = ACTIONS(3674), + [aux_sym__val_number_decimal_token2] = ACTIONS(3676), + [aux_sym__val_number_decimal_token3] = ACTIONS(3678), + [aux_sym__val_number_decimal_token4] = ACTIONS(3680), + [aux_sym__val_number_token1] = ACTIONS(3108), + [aux_sym__val_number_token2] = ACTIONS(3108), + [aux_sym__val_number_token3] = ACTIONS(3108), + [aux_sym__val_number_token4] = ACTIONS(3682), + [aux_sym__val_number_token5] = ACTIONS(3682), + [aux_sym__val_number_token6] = ACTIONS(3682), + [anon_sym_0b] = ACTIONS(3112), + [anon_sym_0o] = ACTIONS(3114), + [anon_sym_0x] = ACTIONS(3114), + [sym_val_date] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3118), + [sym__str_single_quotes] = ACTIONS(3120), + [sym__str_back_ticks] = ACTIONS(3120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2590), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2592), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3686), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3124), }, [1200] = { - [sym_match_arm] = STATE(7726), - [sym_default_arm] = STATE(7726), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_expr_parenthesized] = STATE(447), + [sym_val_range] = STATE(644), + [sym__val_range] = STATE(7422), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(644), + [sym_val_nothing] = STATE(636), + [sym_val_bool] = STATE(527), + [sym_val_variable] = STATE(487), + [sym_val_number] = STATE(636), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(602), + [sym_val_duration] = STATE(636), + [sym_val_filesize] = STATE(636), + [sym_val_binary] = STATE(636), + [sym_val_string] = STATE(636), + [sym__raw_str] = STATE(640), + [sym__str_double_quotes] = STATE(640), + [sym_val_interpolated] = STATE(636), + [sym__inter_single_quotes] = STATE(603), + [sym__inter_double_quotes] = STATE(604), + [sym_val_list] = STATE(636), + [sym_val_record] = STATE(636), + [sym_val_table] = STATE(636), + [sym_val_closure] = STATE(636), + [sym__unquoted_in_record] = STATE(525), + [sym__unquoted_in_record_with_expr] = STATE(644), + [sym__unquoted_anonymous_prefix] = STATE(7006), [sym_comment] = STATE(1200), - [aux_sym_shebang_repeat1] = STATE(3196), - [aux_sym_ctrl_match_repeat1] = STATE(1237), - [sym__newline] = ACTIONS(3693), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_LPAREN] = ACTIONS(3754), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_DOT_DOT] = ACTIONS(3758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3760), + [anon_sym_DOT_DOT_LT] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_true] = ACTIONS(3764), + [anon_sym_false] = ACTIONS(3764), + [aux_sym__val_number_decimal_token1] = ACTIONS(3766), + [aux_sym__val_number_decimal_token2] = ACTIONS(3768), + [aux_sym__val_number_decimal_token3] = ACTIONS(3770), + [aux_sym__val_number_decimal_token4] = ACTIONS(3772), + [aux_sym__val_number_token1] = ACTIONS(3774), + [aux_sym__val_number_token2] = ACTIONS(3774), + [aux_sym__val_number_token3] = ACTIONS(3774), + [aux_sym__val_number_token4] = ACTIONS(3776), + [aux_sym__val_number_token5] = ACTIONS(3776), + [aux_sym__val_number_token6] = ACTIONS(3776), + [anon_sym_0b] = ACTIONS(3778), + [anon_sym_0o] = ACTIONS(3780), + [anon_sym_0x] = ACTIONS(3780), + [sym_val_date] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym__str_single_quotes] = ACTIONS(3786), + [sym__str_back_ticks] = ACTIONS(3786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3792), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3794), }, [1201] = { + [sym_expr_parenthesized] = STATE(489), + [sym_val_range] = STATE(680), + [sym__val_range] = STATE(7422), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(680), + [sym_val_nothing] = STATE(636), + [sym_val_bool] = STATE(527), + [sym_val_variable] = STATE(487), + [sym_val_number] = STATE(636), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(602), + [sym_val_duration] = STATE(636), + [sym_val_filesize] = STATE(636), + [sym_val_binary] = STATE(636), + [sym_val_string] = STATE(636), + [sym__raw_str] = STATE(640), + [sym__str_double_quotes] = STATE(640), + [sym_val_interpolated] = STATE(636), + [sym__inter_single_quotes] = STATE(603), + [sym__inter_double_quotes] = STATE(604), + [sym_val_list] = STATE(636), + [sym_val_record] = STATE(636), + [sym_val_table] = STATE(636), + [sym_val_closure] = STATE(636), + [sym__unquoted_in_record] = STATE(551), + [sym__unquoted_in_record_with_expr] = STATE(680), + [sym__unquoted_anonymous_prefix] = STATE(7006), [sym_comment] = STATE(1201), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3619), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_LPAREN] = ACTIONS(3754), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_DOT_DOT] = ACTIONS(3758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3760), + [anon_sym_DOT_DOT_LT] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_true] = ACTIONS(3764), + [anon_sym_false] = ACTIONS(3764), + [aux_sym__val_number_decimal_token1] = ACTIONS(3766), + [aux_sym__val_number_decimal_token2] = ACTIONS(3768), + [aux_sym__val_number_decimal_token3] = ACTIONS(3770), + [aux_sym__val_number_decimal_token4] = ACTIONS(3772), + [aux_sym__val_number_token1] = ACTIONS(3774), + [aux_sym__val_number_token2] = ACTIONS(3774), + [aux_sym__val_number_token3] = ACTIONS(3774), + [aux_sym__val_number_token4] = ACTIONS(3776), + [aux_sym__val_number_token5] = ACTIONS(3776), + [aux_sym__val_number_token6] = ACTIONS(3776), + [anon_sym_0b] = ACTIONS(3778), + [anon_sym_0o] = ACTIONS(3780), + [anon_sym_0x] = ACTIONS(3780), + [sym_val_date] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym__str_single_quotes] = ACTIONS(3786), + [sym__str_back_ticks] = ACTIONS(3786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3792), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3794), }, [1202] = { + [sym_expr_parenthesized] = STATE(446), + [sym_val_range] = STATE(682), + [sym__val_range] = STATE(7422), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(682), + [sym_val_nothing] = STATE(636), + [sym_val_bool] = STATE(527), + [sym_val_variable] = STATE(487), + [sym_val_number] = STATE(636), + [sym__val_number_decimal] = STATE(326), + [sym__val_number] = STATE(602), + [sym_val_duration] = STATE(636), + [sym_val_filesize] = STATE(636), + [sym_val_binary] = STATE(636), + [sym_val_string] = STATE(636), + [sym__raw_str] = STATE(640), + [sym__str_double_quotes] = STATE(640), + [sym_val_interpolated] = STATE(636), + [sym__inter_single_quotes] = STATE(603), + [sym__inter_double_quotes] = STATE(604), + [sym_val_list] = STATE(636), + [sym_val_record] = STATE(636), + [sym_val_table] = STATE(636), + [sym_val_closure] = STATE(636), + [sym__unquoted_in_record] = STATE(552), + [sym__unquoted_in_record_with_expr] = STATE(682), + [sym__unquoted_anonymous_prefix] = STATE(7006), [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3683), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_LPAREN] = ACTIONS(3754), + [anon_sym_DOLLAR] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_DOT_DOT] = ACTIONS(3758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3760), + [anon_sym_DOT_DOT_LT] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [anon_sym_true] = ACTIONS(3764), + [anon_sym_false] = ACTIONS(3764), + [aux_sym__val_number_decimal_token1] = ACTIONS(3766), + [aux_sym__val_number_decimal_token2] = ACTIONS(3768), + [aux_sym__val_number_decimal_token3] = ACTIONS(3770), + [aux_sym__val_number_decimal_token4] = ACTIONS(3772), + [aux_sym__val_number_token1] = ACTIONS(3774), + [aux_sym__val_number_token2] = ACTIONS(3774), + [aux_sym__val_number_token3] = ACTIONS(3774), + [aux_sym__val_number_token4] = ACTIONS(3776), + [aux_sym__val_number_token5] = ACTIONS(3776), + [aux_sym__val_number_token6] = ACTIONS(3776), + [anon_sym_0b] = ACTIONS(3778), + [anon_sym_0o] = ACTIONS(3780), + [anon_sym_0x] = ACTIONS(3780), + [sym_val_date] = ACTIONS(3782), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym__str_single_quotes] = ACTIONS(3786), + [sym__str_back_ticks] = ACTIONS(3786), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3790), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3792), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3794), }, [1203] = { + [sym_expr_parenthesized] = STATE(550), + [sym_val_range] = STATE(748), + [sym__val_range] = STATE(7545), + [sym__val_range_with_end] = STATE(7329), + [sym__value] = STATE(748), + [sym_val_nothing] = STATE(712), + [sym_val_bool] = STATE(599), + [sym_val_variable] = STATE(506), + [sym_val_number] = STATE(712), + [sym__val_number_decimal] = STATE(346), + [sym__val_number] = STATE(725), + [sym_val_duration] = STATE(712), + [sym_val_filesize] = STATE(712), + [sym_val_binary] = STATE(712), + [sym_val_string] = STATE(712), + [sym__raw_str] = STATE(754), + [sym__str_double_quotes] = STATE(754), + [sym_val_interpolated] = STATE(712), + [sym__inter_single_quotes] = STATE(727), + [sym__inter_double_quotes] = STATE(728), + [sym_val_list] = STATE(712), + [sym_val_record] = STATE(712), + [sym_val_table] = STATE(712), + [sym_val_closure] = STATE(712), + [sym__unquoted_in_record] = STATE(593), + [sym__unquoted_in_record_with_expr] = STATE(748), + [sym__unquoted_anonymous_prefix] = STATE(6633), [sym_comment] = STATE(1203), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3745), - [aux_sym__immediate_decimal_token2] = ACTIONS(3747), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_LPAREN] = ACTIONS(3708), + [anon_sym_DOLLAR] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_DOT_DOT] = ACTIONS(3714), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3716), + [anon_sym_DOT_DOT_LT] = ACTIONS(3716), + [anon_sym_null] = ACTIONS(3718), + [anon_sym_true] = ACTIONS(3720), + [anon_sym_false] = ACTIONS(3720), + [aux_sym__val_number_decimal_token1] = ACTIONS(3722), + [aux_sym__val_number_decimal_token2] = ACTIONS(3724), + [aux_sym__val_number_decimal_token3] = ACTIONS(3726), + [aux_sym__val_number_decimal_token4] = ACTIONS(3728), + [aux_sym__val_number_token1] = ACTIONS(3730), + [aux_sym__val_number_token2] = ACTIONS(3730), + [aux_sym__val_number_token3] = ACTIONS(3730), + [aux_sym__val_number_token4] = ACTIONS(3732), + [aux_sym__val_number_token5] = ACTIONS(3732), + [aux_sym__val_number_token6] = ACTIONS(3732), + [anon_sym_0b] = ACTIONS(3734), + [anon_sym_0o] = ACTIONS(3736), + [anon_sym_0x] = ACTIONS(3736), + [sym_val_date] = ACTIONS(3738), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym__str_single_quotes] = ACTIONS(3742), + [sym__str_back_ticks] = ACTIONS(3742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3746), + [anon_sym_err_GT] = ACTIONS(3582), + [anon_sym_out_GT] = ACTIONS(3582), + [anon_sym_e_GT] = ACTIONS(3582), + [anon_sym_o_GT] = ACTIONS(3582), + [anon_sym_err_PLUSout_GT] = ACTIONS(3582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3582), + [anon_sym_o_PLUSe_GT] = ACTIONS(3582), + [anon_sym_e_PLUSo_GT] = ACTIONS(3582), + [anon_sym_err_GT_GT] = ACTIONS(3584), + [anon_sym_out_GT_GT] = ACTIONS(3584), + [anon_sym_e_GT_GT] = ACTIONS(3584), + [anon_sym_o_GT_GT] = ACTIONS(3584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3584), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3748), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3750), }, [1204] = { - [sym_expr_parenthesized] = STATE(6636), - [sym_val_range] = STATE(8199), - [sym__val_range] = STATE(8649), - [sym__val_range_with_end] = STATE(8207), - [sym__value] = STATE(8199), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(6923), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5653), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_record] = STATE(7295), - [sym__unquoted_in_record_with_expr] = STATE(8199), - [sym__unquoted_anonymous_prefix] = STATE(7971), [sym_comment] = STATE(1204), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3751), - [anon_sym_DOT_DOT_LT] = ACTIONS(3751), - [anon_sym_null] = ACTIONS(3753), - [anon_sym_true] = ACTIONS(3755), - [anon_sym_false] = ACTIONS(3755), - [aux_sym__val_number_decimal_token1] = ACTIONS(3757), - [aux_sym__val_number_decimal_token2] = ACTIONS(3759), - [aux_sym__val_number_decimal_token3] = ACTIONS(3761), - [aux_sym__val_number_decimal_token4] = ACTIONS(3763), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3765), - [aux_sym__val_number_token5] = ACTIONS(3765), - [aux_sym__val_number_token6] = ACTIONS(3765), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3767), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3769), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [ts_builtin_sym_end] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_mod] = ACTIONS(3058), + [anon_sym_SLASH_SLASH] = ACTIONS(3058), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3058), + [anon_sym_bit_DASHshl] = ACTIONS(3058), + [anon_sym_bit_DASHshr] = ACTIONS(3058), + [anon_sym_EQ_TILDE] = ACTIONS(3058), + [anon_sym_BANG_TILDE] = ACTIONS(3058), + [anon_sym_bit_DASHand] = ACTIONS(3058), + [anon_sym_bit_DASHxor] = ACTIONS(3058), + [anon_sym_bit_DASHor] = ACTIONS(3058), + [anon_sym_and] = ACTIONS(3058), + [anon_sym_xor] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3058), + [anon_sym_not_DASHin] = ACTIONS(3058), + [anon_sym_starts_DASHwith] = ACTIONS(3058), + [anon_sym_ends_DASHwith] = ACTIONS(3058), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3058), + [aux_sym_cmd_identifier_token41] = ACTIONS(3062), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3064), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3066), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3066), + [sym_filesize_unit] = ACTIONS(3796), + [sym_duration_unit] = ACTIONS(3798), + [anon_sym_POUND] = ACTIONS(3), }, [1205] = { - [sym_expr_parenthesized] = STATE(6652), - [sym_val_range] = STATE(8032), - [sym__val_range] = STATE(8649), - [sym__val_range_with_end] = STATE(8207), - [sym__value] = STATE(8032), - [sym_val_nothing] = STATE(7688), - [sym_val_bool] = STATE(6923), - [sym_val_variable] = STATE(6333), - [sym_val_number] = STATE(7688), - [sym__val_number_decimal] = STATE(5653), - [sym__val_number] = STATE(7386), - [sym_val_duration] = STATE(7688), - [sym_val_filesize] = STATE(7688), - [sym_val_binary] = STATE(7688), - [sym_val_string] = STATE(7688), - [sym__raw_str] = STATE(5662), - [sym__str_double_quotes] = STATE(5662), - [sym_val_interpolated] = STATE(7688), - [sym__inter_single_quotes] = STATE(7966), - [sym__inter_double_quotes] = STATE(7967), - [sym_val_list] = STATE(7688), - [sym_val_record] = STATE(7688), - [sym_val_table] = STATE(7688), - [sym_val_closure] = STATE(7688), - [sym__unquoted_in_record] = STATE(7103), - [sym__unquoted_in_record_with_expr] = STATE(8032), - [sym__unquoted_anonymous_prefix] = STATE(7971), [sym_comment] = STATE(1205), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_DOLLAR] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_DOT_DOT] = ACTIONS(3749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3751), - [anon_sym_DOT_DOT_LT] = ACTIONS(3751), - [anon_sym_null] = ACTIONS(3753), - [anon_sym_true] = ACTIONS(3755), - [anon_sym_false] = ACTIONS(3755), - [aux_sym__val_number_decimal_token1] = ACTIONS(3757), - [aux_sym__val_number_decimal_token2] = ACTIONS(3759), - [aux_sym__val_number_decimal_token3] = ACTIONS(3761), - [aux_sym__val_number_decimal_token4] = ACTIONS(3763), - [aux_sym__val_number_token1] = ACTIONS(3131), - [aux_sym__val_number_token2] = ACTIONS(3131), - [aux_sym__val_number_token3] = ACTIONS(3131), - [aux_sym__val_number_token4] = ACTIONS(3765), - [aux_sym__val_number_token5] = ACTIONS(3765), - [aux_sym__val_number_token6] = ACTIONS(3765), - [anon_sym_0b] = ACTIONS(3135), - [anon_sym_0o] = ACTIONS(3137), - [anon_sym_0x] = ACTIONS(3137), - [sym_val_date] = ACTIONS(3767), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym__str_single_quotes] = ACTIONS(3143), - [sym__str_back_ticks] = ACTIONS(3143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2607), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2609), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3769), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3147), + [ts_builtin_sym_end] = ACTIONS(1625), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), }, [1206] = { [sym_comment] = STATE(1206), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1711), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), + [ts_builtin_sym_end] = ACTIONS(1725), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), }, [1208] = { [sym_comment] = STATE(1208), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3664), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), }, [1209] = { [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(1699), - [anon_sym_STAR_STAR] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_mod] = ACTIONS(3085), - [anon_sym_SLASH_SLASH] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_bit_DASHshl] = ACTIONS(3085), - [anon_sym_bit_DASHshr] = ACTIONS(3085), - [anon_sym_EQ_TILDE] = ACTIONS(3085), - [anon_sym_BANG_TILDE] = ACTIONS(3085), - [anon_sym_bit_DASHand] = ACTIONS(3085), - [anon_sym_bit_DASHxor] = ACTIONS(3085), - [anon_sym_bit_DASHor] = ACTIONS(3085), - [anon_sym_and] = ACTIONS(3085), - [anon_sym_xor] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_not_DASHin] = ACTIONS(3085), - [anon_sym_starts_DASHwith] = ACTIONS(3085), - [anon_sym_ends_DASHwith] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3085), - [aux_sym_cmd_identifier_token41] = ACTIONS(3089), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3091), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3093), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3093), - [sym_filesize_unit] = ACTIONS(3771), - [sym_duration_unit] = ACTIONS(3773), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), [anon_sym_POUND] = ACTIONS(3), }, [1210] = { [sym_comment] = STATE(1210), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT] = ACTIONS(3775), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3777), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), }, [1211] = { [sym_comment] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [1212] = { [sym_comment] = STATE(1212), - [ts_builtin_sym_end] = ACTIONS(1713), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), }, [1213] = { - [sym_expr_parenthesized] = STATE(449), - [sym_val_range] = STATE(684), - [sym__val_range] = STATE(8355), - [sym__val_range_with_end] = STATE(8120), - [sym__value] = STATE(684), - [sym_val_nothing] = STATE(648), - [sym_val_bool] = STATE(527), - [sym_val_variable] = STATE(452), - [sym_val_number] = STATE(648), - [sym__val_number_decimal] = STATE(338), - [sym__val_number] = STATE(623), - [sym_val_duration] = STATE(648), - [sym_val_filesize] = STATE(648), - [sym_val_binary] = STATE(648), - [sym_val_string] = STATE(648), - [sym__raw_str] = STATE(671), - [sym__str_double_quotes] = STATE(671), - [sym_val_interpolated] = STATE(648), - [sym__inter_single_quotes] = STATE(629), - [sym__inter_double_quotes] = STATE(630), - [sym_val_list] = STATE(648), - [sym_val_record] = STATE(648), - [sym_val_table] = STATE(648), - [sym_val_closure] = STATE(648), - [sym__unquoted_in_record] = STATE(547), - [sym__unquoted_in_record_with_expr] = STATE(684), - [sym__unquoted_anonymous_prefix] = STATE(7811), [sym_comment] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3779), - [anon_sym_LPAREN] = ACTIONS(3781), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(3783), - [anon_sym_DOT_DOT] = ACTIONS(3785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3787), - [anon_sym_DOT_DOT_LT] = ACTIONS(3787), - [anon_sym_null] = ACTIONS(3789), - [anon_sym_true] = ACTIONS(3791), - [anon_sym_false] = ACTIONS(3791), - [aux_sym__val_number_decimal_token1] = ACTIONS(3793), - [aux_sym__val_number_decimal_token2] = ACTIONS(3795), - [aux_sym__val_number_decimal_token3] = ACTIONS(3797), - [aux_sym__val_number_decimal_token4] = ACTIONS(3799), - [aux_sym__val_number_token1] = ACTIONS(3801), - [aux_sym__val_number_token2] = ACTIONS(3801), - [aux_sym__val_number_token3] = ACTIONS(3801), - [aux_sym__val_number_token4] = ACTIONS(3803), - [aux_sym__val_number_token5] = ACTIONS(3803), - [aux_sym__val_number_token6] = ACTIONS(3803), - [anon_sym_0b] = ACTIONS(3805), - [anon_sym_0o] = ACTIONS(3807), - [anon_sym_0x] = ACTIONS(3807), - [sym_val_date] = ACTIONS(3809), - [anon_sym_DQUOTE] = ACTIONS(3811), - [sym__str_single_quotes] = ACTIONS(3813), - [sym__str_back_ticks] = ACTIONS(3813), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3817), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3819), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3821), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3800), + [sym_duration_unit] = ACTIONS(3802), + [anon_sym_POUND] = ACTIONS(3), }, [1214] = { - [sym_expr_parenthesized] = STATE(506), - [sym_val_range] = STATE(686), - [sym__val_range] = STATE(8355), - [sym__val_range_with_end] = STATE(8120), - [sym__value] = STATE(686), - [sym_val_nothing] = STATE(648), - [sym_val_bool] = STATE(527), - [sym_val_variable] = STATE(452), - [sym_val_number] = STATE(648), - [sym__val_number_decimal] = STATE(338), - [sym__val_number] = STATE(623), - [sym_val_duration] = STATE(648), - [sym_val_filesize] = STATE(648), - [sym_val_binary] = STATE(648), - [sym_val_string] = STATE(648), - [sym__raw_str] = STATE(671), - [sym__str_double_quotes] = STATE(671), - [sym_val_interpolated] = STATE(648), - [sym__inter_single_quotes] = STATE(629), - [sym__inter_double_quotes] = STATE(630), - [sym_val_list] = STATE(648), - [sym_val_record] = STATE(648), - [sym_val_table] = STATE(648), - [sym_val_closure] = STATE(648), - [sym__unquoted_in_record] = STATE(550), - [sym__unquoted_in_record_with_expr] = STATE(686), - [sym__unquoted_anonymous_prefix] = STATE(7811), + [sym_match_arm] = STATE(6855), + [sym_default_arm] = STATE(6855), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1214), - [anon_sym_LBRACK] = ACTIONS(3779), - [anon_sym_LPAREN] = ACTIONS(3781), - [anon_sym_DOLLAR] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(3783), - [anon_sym_DOT_DOT] = ACTIONS(3785), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3787), - [anon_sym_DOT_DOT_LT] = ACTIONS(3787), - [anon_sym_null] = ACTIONS(3789), - [anon_sym_true] = ACTIONS(3791), - [anon_sym_false] = ACTIONS(3791), - [aux_sym__val_number_decimal_token1] = ACTIONS(3793), - [aux_sym__val_number_decimal_token2] = ACTIONS(3795), - [aux_sym__val_number_decimal_token3] = ACTIONS(3797), - [aux_sym__val_number_decimal_token4] = ACTIONS(3799), - [aux_sym__val_number_token1] = ACTIONS(3801), - [aux_sym__val_number_token2] = ACTIONS(3801), - [aux_sym__val_number_token3] = ACTIONS(3801), - [aux_sym__val_number_token4] = ACTIONS(3803), - [aux_sym__val_number_token5] = ACTIONS(3803), - [aux_sym__val_number_token6] = ACTIONS(3803), - [anon_sym_0b] = ACTIONS(3805), - [anon_sym_0o] = ACTIONS(3807), - [anon_sym_0x] = ACTIONS(3807), - [sym_val_date] = ACTIONS(3809), - [anon_sym_DQUOTE] = ACTIONS(3811), - [sym__str_single_quotes] = ACTIONS(3813), - [sym__str_back_ticks] = ACTIONS(3813), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3817), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3819), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3821), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1215] = { + [sym_match_arm] = STATE(7321), + [sym_default_arm] = STATE(7321), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(1769), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_DOLLAR] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym__] = ACTIONS(3816), + [anon_sym_DOT_DOT] = ACTIONS(3819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3822), + [anon_sym_DOT_DOT_LT] = ACTIONS(3822), + [anon_sym_null] = ACTIONS(3825), + [anon_sym_true] = ACTIONS(3828), + [anon_sym_false] = ACTIONS(3828), + [aux_sym__val_number_decimal_token1] = ACTIONS(3831), + [aux_sym__val_number_decimal_token2] = ACTIONS(3834), + [aux_sym__val_number_decimal_token3] = ACTIONS(3837), + [aux_sym__val_number_decimal_token4] = ACTIONS(3840), + [aux_sym__val_number_token1] = ACTIONS(3843), + [aux_sym__val_number_token2] = ACTIONS(3843), + [aux_sym__val_number_token3] = ACTIONS(3843), + [aux_sym__val_number_token4] = ACTIONS(3846), + [aux_sym__val_number_token5] = ACTIONS(3846), + [aux_sym__val_number_token6] = ACTIONS(3846), + [anon_sym_0b] = ACTIONS(3849), + [anon_sym_0o] = ACTIONS(3852), + [anon_sym_0x] = ACTIONS(3852), + [sym_val_date] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3858), + [sym__str_single_quotes] = ACTIONS(3861), + [sym__str_back_ticks] = ACTIONS(3861), + [anon_sym_err_GT] = ACTIONS(3864), + [anon_sym_out_GT] = ACTIONS(3864), + [anon_sym_e_GT] = ACTIONS(3864), + [anon_sym_o_GT] = ACTIONS(3864), + [anon_sym_err_PLUSout_GT] = ACTIONS(3864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3864), + [anon_sym_o_PLUSe_GT] = ACTIONS(3864), + [anon_sym_e_PLUSo_GT] = ACTIONS(3864), + [anon_sym_err_GT_GT] = ACTIONS(3867), + [anon_sym_out_GT_GT] = ACTIONS(3867), + [anon_sym_e_GT_GT] = ACTIONS(3867), + [anon_sym_o_GT_GT] = ACTIONS(3867), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3867), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3867), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3867), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3867), + [aux_sym_unquoted_token1] = ACTIONS(3870), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3873), }, [1216] = { + [sym_match_arm] = STATE(6891), + [sym_default_arm] = STATE(6891), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1216), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(3823), - [aux_sym__immediate_decimal_token2] = ACTIONS(3825), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1217] = { + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_rest] = STATE(7759), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2932), + [sym_val_range] = STATE(3151), + [sym__val_range] = STATE(7478), + [sym_val_nothing] = STATE(3156), + [sym_val_bool] = STATE(3060), + [sym_val_variable] = STATE(2899), + [sym_val_number] = STATE(3156), + [sym__val_number_decimal] = STATE(2706), + [sym__val_number] = STATE(3188), + [sym_val_duration] = STATE(3156), + [sym_val_filesize] = STATE(3156), + [sym_val_binary] = STATE(3156), + [sym_val_string] = STATE(3156), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_list] = STATE(7402), + [sym_val_table] = STATE(3156), + [sym__unquoted_in_list] = STATE(3134), + [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1217), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6596), + [aux_sym__match_pattern_list_repeat1] = STATE(1256), + [sym__newline] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_RBRACK] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3882), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_DOT_DOT] = ACTIONS(3888), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3890), + [anon_sym_DOT_DOT_LT] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3892), + [anon_sym_true] = ACTIONS(3894), + [anon_sym_false] = ACTIONS(3894), + [aux_sym__val_number_decimal_token1] = ACTIONS(3896), + [aux_sym__val_number_decimal_token2] = ACTIONS(3898), + [aux_sym__val_number_decimal_token3] = ACTIONS(3900), + [aux_sym__val_number_decimal_token4] = ACTIONS(3902), + [aux_sym__val_number_token1] = ACTIONS(3904), + [aux_sym__val_number_token2] = ACTIONS(3904), + [aux_sym__val_number_token3] = ACTIONS(3904), + [aux_sym__val_number_token4] = ACTIONS(3906), + [aux_sym__val_number_token5] = ACTIONS(3906), + [aux_sym__val_number_token6] = ACTIONS(3906), + [anon_sym_0b] = ACTIONS(3908), + [anon_sym_0o] = ACTIONS(3910), + [anon_sym_0x] = ACTIONS(3910), + [sym_val_date] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3914), + [sym__str_single_quotes] = ACTIONS(3916), + [sym__str_back_ticks] = ACTIONS(3916), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3918), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3920), }, [1218] = { + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_rest] = STATE(7496), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2932), + [sym_val_range] = STATE(3151), + [sym__val_range] = STATE(7478), + [sym_val_nothing] = STATE(3156), + [sym_val_bool] = STATE(3060), + [sym_val_variable] = STATE(2899), + [sym_val_number] = STATE(3156), + [sym__val_number_decimal] = STATE(2706), + [sym__val_number] = STATE(3188), + [sym_val_duration] = STATE(3156), + [sym_val_filesize] = STATE(3156), + [sym_val_binary] = STATE(3156), + [sym_val_string] = STATE(3156), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_list] = STATE(7498), + [sym_val_table] = STATE(3156), + [sym__unquoted_in_list] = STATE(3134), + [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1218), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6556), + [aux_sym__match_pattern_list_repeat1] = STATE(1266), + [sym__newline] = ACTIONS(3876), + [anon_sym_LBRACK] = ACTIONS(3878), + [anon_sym_RBRACK] = ACTIONS(3922), + [anon_sym_LPAREN] = ACTIONS(3882), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_DOT_DOT] = ACTIONS(3924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3890), + [anon_sym_DOT_DOT_LT] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3892), + [anon_sym_true] = ACTIONS(3894), + [anon_sym_false] = ACTIONS(3894), + [aux_sym__val_number_decimal_token1] = ACTIONS(3896), + [aux_sym__val_number_decimal_token2] = ACTIONS(3898), + [aux_sym__val_number_decimal_token3] = ACTIONS(3900), + [aux_sym__val_number_decimal_token4] = ACTIONS(3902), + [aux_sym__val_number_token1] = ACTIONS(3904), + [aux_sym__val_number_token2] = ACTIONS(3904), + [aux_sym__val_number_token3] = ACTIONS(3904), + [aux_sym__val_number_token4] = ACTIONS(3906), + [aux_sym__val_number_token5] = ACTIONS(3906), + [aux_sym__val_number_token6] = ACTIONS(3906), + [anon_sym_0b] = ACTIONS(3908), + [anon_sym_0o] = ACTIONS(3910), + [anon_sym_0x] = ACTIONS(3910), + [sym_val_date] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3914), + [sym__str_single_quotes] = ACTIONS(3916), + [sym__str_back_ticks] = ACTIONS(3916), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3918), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3920), }, [1219] = { - [sym_expr_parenthesized] = STATE(541), - [sym_val_range] = STATE(736), - [sym__val_range] = STATE(8481), - [sym__val_range_with_end] = STATE(8094), - [sym__value] = STATE(736), - [sym_val_nothing] = STATE(762), - [sym_val_bool] = STATE(607), - [sym_val_variable] = STATE(524), - [sym_val_number] = STATE(762), - [sym__val_number_decimal] = STATE(364), - [sym__val_number] = STATE(696), - [sym_val_duration] = STATE(762), - [sym_val_filesize] = STATE(762), - [sym_val_binary] = STATE(762), - [sym_val_string] = STATE(762), - [sym__raw_str] = STATE(710), - [sym__str_double_quotes] = STATE(710), - [sym_val_interpolated] = STATE(762), - [sym__inter_single_quotes] = STATE(721), - [sym__inter_double_quotes] = STATE(725), - [sym_val_list] = STATE(762), - [sym_val_record] = STATE(762), - [sym_val_table] = STATE(762), - [sym_val_closure] = STATE(762), - [sym__unquoted_in_record] = STATE(598), - [sym__unquoted_in_record_with_expr] = STATE(736), - [sym__unquoted_anonymous_prefix] = STATE(7584), [sym_comment] = STATE(1219), - [anon_sym_LBRACK] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_DOLLAR] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3833), - [anon_sym_DOT_DOT] = ACTIONS(3835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3837), - [anon_sym_DOT_DOT_LT] = ACTIONS(3837), - [anon_sym_null] = ACTIONS(3839), - [anon_sym_true] = ACTIONS(3841), - [anon_sym_false] = ACTIONS(3841), - [aux_sym__val_number_decimal_token1] = ACTIONS(3843), - [aux_sym__val_number_decimal_token2] = ACTIONS(3845), - [aux_sym__val_number_decimal_token3] = ACTIONS(3847), - [aux_sym__val_number_decimal_token4] = ACTIONS(3849), - [aux_sym__val_number_token1] = ACTIONS(3851), - [aux_sym__val_number_token2] = ACTIONS(3851), - [aux_sym__val_number_token3] = ACTIONS(3851), - [aux_sym__val_number_token4] = ACTIONS(3853), - [aux_sym__val_number_token5] = ACTIONS(3853), - [aux_sym__val_number_token6] = ACTIONS(3853), - [anon_sym_0b] = ACTIONS(3855), - [anon_sym_0o] = ACTIONS(3857), - [anon_sym_0x] = ACTIONS(3857), - [sym_val_date] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3861), - [sym__str_single_quotes] = ACTIONS(3863), - [sym__str_back_ticks] = ACTIONS(3863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3867), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3869), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3871), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3698), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), }, [1220] = { + [sym_match_arm] = STATE(7193), + [sym_default_arm] = STATE(7193), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1220), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3743), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1221] = { [sym_comment] = STATE(1221), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(3873), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(3926), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [1222] = { + [sym_expr_parenthesized] = STATE(6488), + [sym_val_range] = STATE(7677), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(7677), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(6568), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(7678), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1222), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(3930), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3938), + [anon_sym_DOT_DOT_LT] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_COLON2] = ACTIONS(3404), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1223] = { + [sym_match_arm] = STATE(6872), + [sym_default_arm] = STATE(6872), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1223), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1224] = { + [sym_match_arm] = STATE(7134), + [sym_default_arm] = STATE(7134), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1224), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3875), - [sym_duration_unit] = ACTIONS(3877), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1225] = { + [sym_match_arm] = STATE(6875), + [sym_default_arm] = STATE(6875), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1225), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3879), - [sym_duration_unit] = ACTIONS(3881), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1226] = { + [sym_match_arm] = STATE(6994), + [sym_default_arm] = STATE(6994), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1227] = { + [sym_match_arm] = STATE(6998), + [sym_default_arm] = STATE(6998), + [sym_match_pattern] = STATE(7487), + [sym__match_pattern] = STATE(5935), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6156), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5215), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1227), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym__] = ACTIONS(3616), + [anon_sym_DOT_DOT] = ACTIONS(3618), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), + [anon_sym_DOT_DOT_LT] = ACTIONS(3620), + [anon_sym_null] = ACTIONS(3622), + [anon_sym_true] = ACTIONS(3624), + [anon_sym_false] = ACTIONS(3624), + [aux_sym__val_number_decimal_token1] = ACTIONS(3626), + [aux_sym__val_number_decimal_token2] = ACTIONS(3628), + [aux_sym__val_number_decimal_token3] = ACTIONS(3630), + [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3634), + [aux_sym__val_number_token5] = ACTIONS(3634), + [aux_sym__val_number_token6] = ACTIONS(3634), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1228] = { - [sym_expr_parenthesized] = STATE(543), - [sym_val_range] = STATE(741), - [sym__val_range] = STATE(8481), - [sym__val_range_with_end] = STATE(8094), - [sym__value] = STATE(741), - [sym_val_nothing] = STATE(762), - [sym_val_bool] = STATE(607), - [sym_val_variable] = STATE(524), - [sym_val_number] = STATE(762), - [sym__val_number_decimal] = STATE(364), - [sym__val_number] = STATE(696), - [sym_val_duration] = STATE(762), - [sym_val_filesize] = STATE(762), - [sym_val_binary] = STATE(762), - [sym_val_string] = STATE(762), - [sym__raw_str] = STATE(710), - [sym__str_double_quotes] = STATE(710), - [sym_val_interpolated] = STATE(762), - [sym__inter_single_quotes] = STATE(721), - [sym__inter_double_quotes] = STATE(725), - [sym_val_list] = STATE(762), - [sym_val_record] = STATE(762), - [sym_val_table] = STATE(762), - [sym_val_closure] = STATE(762), - [sym__unquoted_in_record] = STATE(601), - [sym__unquoted_in_record_with_expr] = STATE(741), - [sym__unquoted_anonymous_prefix] = STATE(7584), + [sym_expr_parenthesized] = STATE(6488), + [sym_val_range] = STATE(7677), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(7677), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(6568), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(7678), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1228), - [anon_sym_LBRACK] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_DOLLAR] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3833), - [anon_sym_DOT_DOT] = ACTIONS(3835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3837), - [anon_sym_DOT_DOT_LT] = ACTIONS(3837), - [anon_sym_null] = ACTIONS(3839), - [anon_sym_true] = ACTIONS(3841), - [anon_sym_false] = ACTIONS(3841), - [aux_sym__val_number_decimal_token1] = ACTIONS(3843), - [aux_sym__val_number_decimal_token2] = ACTIONS(3845), - [aux_sym__val_number_decimal_token3] = ACTIONS(3847), - [aux_sym__val_number_decimal_token4] = ACTIONS(3849), - [aux_sym__val_number_token1] = ACTIONS(3851), - [aux_sym__val_number_token2] = ACTIONS(3851), - [aux_sym__val_number_token3] = ACTIONS(3851), - [aux_sym__val_number_token4] = ACTIONS(3853), - [aux_sym__val_number_token5] = ACTIONS(3853), - [aux_sym__val_number_token6] = ACTIONS(3853), - [anon_sym_0b] = ACTIONS(3855), - [anon_sym_0o] = ACTIONS(3857), - [anon_sym_0x] = ACTIONS(3857), - [sym_val_date] = ACTIONS(3859), - [anon_sym_DQUOTE] = ACTIONS(3861), - [sym__str_single_quotes] = ACTIONS(3863), - [sym__str_back_ticks] = ACTIONS(3863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3867), - [anon_sym_err_GT] = ACTIONS(3673), - [anon_sym_out_GT] = ACTIONS(3673), - [anon_sym_e_GT] = ACTIONS(3673), - [anon_sym_o_GT] = ACTIONS(3673), - [anon_sym_err_PLUSout_GT] = ACTIONS(3673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3673), - [anon_sym_o_PLUSe_GT] = ACTIONS(3673), - [anon_sym_e_PLUSo_GT] = ACTIONS(3673), - [anon_sym_err_GT_GT] = ACTIONS(3675), - [anon_sym_out_GT_GT] = ACTIONS(3675), - [anon_sym_e_GT_GT] = ACTIONS(3675), - [anon_sym_o_GT_GT] = ACTIONS(3675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3675), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3869), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3871), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(3930), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3938), + [anon_sym_DOT_DOT_LT] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_COLON2] = ACTIONS(3402), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1229] = { + [sym__expr_parenthesized_immediate] = STATE(1546), + [sym__immediate_decimal] = STATE(1395), + [sym_val_variable] = STATE(1546), [sym_comment] = STATE(1229), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(3883), - [sym_duration_unit] = ACTIONS(3885), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_DOT] = ACTIONS(3958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1583), + [anon_sym_DOT_DOT_LT] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(3960), + [aux_sym__immediate_decimal_token3] = ACTIONS(3962), + [aux_sym__immediate_decimal_token4] = ACTIONS(3964), + [aux_sym__immediate_decimal_token5] = ACTIONS(3966), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1583), }, [1230] = { [sym_comment] = STATE(1230), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_bit_DASHshl] = ACTIONS(1711), + [anon_sym_bit_DASHshr] = ACTIONS(1711), + [anon_sym_EQ_TILDE] = ACTIONS(1711), + [anon_sym_BANG_TILDE] = ACTIONS(1711), + [anon_sym_bit_DASHand] = ACTIONS(1711), + [anon_sym_bit_DASHxor] = ACTIONS(1711), + [anon_sym_bit_DASHor] = ACTIONS(1711), + [anon_sym_and] = ACTIONS(1711), + [anon_sym_xor] = ACTIONS(1711), + [anon_sym_or] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_not_DASHin] = ACTIONS(1711), + [anon_sym_starts_DASHwith] = ACTIONS(1711), + [anon_sym_ends_DASHwith] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1711), + [aux_sym_cmd_identifier_token41] = ACTIONS(1709), + [sym__newline] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_err_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_GT_PIPE] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1709), + [anon_sym_xor2] = ACTIONS(1709), + [anon_sym_or2] = ACTIONS(1709), + [anon_sym_not_DASHin2] = ACTIONS(1709), + [anon_sym_starts_DASHwith2] = ACTIONS(1709), + [anon_sym_ends_DASHwith2] = ACTIONS(1709), + [anon_sym_EQ_EQ2] = ACTIONS(1709), + [anon_sym_BANG_EQ2] = ACTIONS(1709), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1709), + [anon_sym_GT_EQ2] = ACTIONS(1709), + [anon_sym_EQ_TILDE2] = ACTIONS(1709), + [anon_sym_BANG_TILDE2] = ACTIONS(1709), + [anon_sym_STAR_STAR2] = ACTIONS(1709), + [anon_sym_PLUS_PLUS2] = ACTIONS(1709), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1709), + [anon_sym_SLASH_SLASH2] = ACTIONS(1709), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1709), + [anon_sym_bit_DASHshr2] = ACTIONS(1709), + [anon_sym_bit_DASHand2] = ACTIONS(1709), + [anon_sym_bit_DASHxor2] = ACTIONS(1709), + [anon_sym_bit_DASHor2] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), [anon_sym_POUND] = ACTIONS(3), }, [1231] = { - [sym_expr_parenthesized] = STATE(7053), - [sym_val_range] = STATE(8451), - [sym__val_range] = STATE(8344), - [sym__value] = STATE(8451), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(6676), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6076), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(8454), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1231), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3889), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), - [anon_sym_DOT_DOT_LT] = ACTIONS(3895), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3499), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_STAR_STAR] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_mod] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_bit_DASHshl] = ACTIONS(1625), + [anon_sym_bit_DASHshr] = ACTIONS(1625), + [anon_sym_EQ_TILDE] = ACTIONS(1625), + [anon_sym_BANG_TILDE] = ACTIONS(1625), + [anon_sym_bit_DASHand] = ACTIONS(1625), + [anon_sym_bit_DASHxor] = ACTIONS(1625), + [anon_sym_bit_DASHor] = ACTIONS(1625), + [anon_sym_and] = ACTIONS(1625), + [anon_sym_xor] = ACTIONS(1625), + [anon_sym_or] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [anon_sym_not_DASHin] = ACTIONS(1625), + [anon_sym_starts_DASHwith] = ACTIONS(1625), + [anon_sym_ends_DASHwith] = ACTIONS(1625), + [anon_sym_EQ_EQ] = ACTIONS(1625), + [anon_sym_BANG_EQ] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1625), + [anon_sym_GT] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1625), + [aux_sym_cmd_identifier_token41] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_in2] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), }, [1232] = { - [sym_match_arm] = STATE(7802), - [sym_default_arm] = STATE(7802), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1232), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3038), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_bit_DASHshl] = ACTIONS(3038), + [anon_sym_bit_DASHshr] = ACTIONS(3038), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_BANG_TILDE] = ACTIONS(3038), + [anon_sym_bit_DASHand] = ACTIONS(3038), + [anon_sym_bit_DASHxor] = ACTIONS(3038), + [anon_sym_bit_DASHor] = ACTIONS(3038), + [anon_sym_and] = ACTIONS(3038), + [anon_sym_xor] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3038), + [anon_sym_not_DASHin] = ACTIONS(3038), + [anon_sym_starts_DASHwith] = ACTIONS(3038), + [anon_sym_ends_DASHwith] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3038), + [aux_sym_cmd_identifier_token41] = ACTIONS(3042), + [sym__newline] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_in2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(3030), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3032), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3032), + [sym_filesize_unit] = ACTIONS(3968), + [sym_duration_unit] = ACTIONS(3970), + [anon_sym_POUND] = ACTIONS(3), }, [1233] = { - [sym_match_arm] = STATE(7723), - [sym_default_arm] = STATE(7723), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1233), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_STAR_STAR] = ACTIONS(1601), + [anon_sym_PLUS_PLUS] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_mod] = ACTIONS(1601), + [anon_sym_SLASH_SLASH] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_bit_DASHshl] = ACTIONS(1601), + [anon_sym_bit_DASHshr] = ACTIONS(1601), + [anon_sym_EQ_TILDE] = ACTIONS(1601), + [anon_sym_BANG_TILDE] = ACTIONS(1601), + [anon_sym_bit_DASHand] = ACTIONS(1601), + [anon_sym_bit_DASHxor] = ACTIONS(1601), + [anon_sym_bit_DASHor] = ACTIONS(1601), + [anon_sym_and] = ACTIONS(1601), + [anon_sym_xor] = ACTIONS(1601), + [anon_sym_or] = ACTIONS(1601), + [anon_sym_in] = ACTIONS(1601), + [anon_sym_not_DASHin] = ACTIONS(1601), + [anon_sym_starts_DASHwith] = ACTIONS(1601), + [anon_sym_ends_DASHwith] = ACTIONS(1601), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1601), + [aux_sym_cmd_identifier_token41] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1599), + [anon_sym_GT_EQ2] = ACTIONS(1599), + [anon_sym_EQ_TILDE2] = ACTIONS(1599), + [anon_sym_BANG_TILDE2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_POUND] = ACTIONS(3), }, [1234] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_rest] = STATE(8508), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(3049), - [sym_val_range] = STATE(3269), - [sym__val_range] = STATE(8495), - [sym_val_nothing] = STATE(3273), - [sym_val_bool] = STATE(3216), - [sym_val_variable] = STATE(3050), - [sym_val_number] = STATE(3273), - [sym__val_number_decimal] = STATE(2832), - [sym__val_number] = STATE(3264), - [sym_val_duration] = STATE(3273), - [sym_val_filesize] = STATE(3273), - [sym_val_binary] = STATE(3273), - [sym_val_string] = STATE(3273), - [sym__raw_str] = STATE(3279), - [sym__str_double_quotes] = STATE(3279), - [sym_val_list] = STATE(8233), - [sym_val_table] = STATE(3273), - [sym__unquoted_in_list] = STATE(3251), - [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1234), - [aux_sym_shebang_repeat1] = STATE(7278), - [aux_sym__match_pattern_list_repeat1] = STATE(1278), - [sym__newline] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(3923), - [anon_sym_LPAREN] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_DOT_DOT] = ACTIONS(3931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), - [anon_sym_DOT_DOT_LT] = ACTIONS(3933), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3937), - [anon_sym_false] = ACTIONS(3937), - [aux_sym__val_number_decimal_token1] = ACTIONS(3939), - [aux_sym__val_number_decimal_token2] = ACTIONS(3941), - [aux_sym__val_number_decimal_token3] = ACTIONS(3943), - [aux_sym__val_number_decimal_token4] = ACTIONS(3945), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3951), - [anon_sym_0o] = ACTIONS(3953), - [anon_sym_0x] = ACTIONS(3953), - [sym_val_date] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3957), - [sym__str_single_quotes] = ACTIONS(3959), - [sym__str_back_ticks] = ACTIONS(3959), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3963), + [anon_sym_STAR_STAR] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_mod] = ACTIONS(1725), + [anon_sym_SLASH_SLASH] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_bit_DASHshl] = ACTIONS(1725), + [anon_sym_bit_DASHshr] = ACTIONS(1725), + [anon_sym_EQ_TILDE] = ACTIONS(1725), + [anon_sym_BANG_TILDE] = ACTIONS(1725), + [anon_sym_bit_DASHand] = ACTIONS(1725), + [anon_sym_bit_DASHxor] = ACTIONS(1725), + [anon_sym_bit_DASHor] = ACTIONS(1725), + [anon_sym_and] = ACTIONS(1725), + [anon_sym_xor] = ACTIONS(1725), + [anon_sym_or] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_not_DASHin] = ACTIONS(1725), + [anon_sym_starts_DASHwith] = ACTIONS(1725), + [anon_sym_ends_DASHwith] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1725), + [aux_sym_cmd_identifier_token41] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(3), }, [1235] = { - [sym_match_arm] = STATE(7726), - [sym_default_arm] = STATE(7726), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_expr_parenthesized] = STATE(6551), + [sym_val_range] = STATE(7618), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(7618), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(6568), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(7482), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1235), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(3930), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3938), + [anon_sym_DOT_DOT_LT] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1236] = { - [sym_match_arm] = STATE(7846), - [sym_default_arm] = STATE(7846), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_expr_parenthesized] = STATE(6488), + [sym_val_range] = STATE(7677), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(7677), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(6568), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(7678), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1236), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(3930), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(3936), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3938), + [anon_sym_DOT_DOT_LT] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1237] = { - [sym_match_arm] = STATE(7848), - [sym_default_arm] = STATE(7848), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__expr_parenthesized_immediate] = STATE(1809), + [sym__immediate_decimal] = STATE(1584), + [sym_val_variable] = STATE(1809), [sym_comment] = STATE(1237), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(3974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(3976), + [aux_sym__immediate_decimal_token3] = ACTIONS(3978), + [aux_sym__immediate_decimal_token4] = ACTIONS(3980), + [aux_sym__immediate_decimal_token5] = ACTIONS(3982), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1617), + [anon_sym_0o] = ACTIONS(1617), + [anon_sym_0x] = ACTIONS(1617), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1617), + [aux_sym_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1619), }, [1238] = { [sym_comment] = STATE(1238), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3986), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1239] = { + [sym__expr_parenthesized_immediate] = STATE(1592), + [sym__immediate_decimal] = STATE(1425), + [sym_val_variable] = STATE(1592), [sym_comment] = STATE(1239), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(3777), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_DOT] = ACTIONS(3990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1583), + [anon_sym_DOT_DOT_LT] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(3992), + [aux_sym__immediate_decimal_token3] = ACTIONS(3994), + [aux_sym__immediate_decimal_token4] = ACTIONS(3996), + [aux_sym__immediate_decimal_token5] = ACTIONS(3998), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1583), }, [1240] = { + [sym__expr_parenthesized_immediate] = STATE(1817), + [sym__immediate_decimal] = STATE(1555), + [sym_val_variable] = STATE(1817), [sym_comment] = STATE(1240), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(3974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1583), + [anon_sym_DOT_DOT_LT] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(3976), + [aux_sym__immediate_decimal_token3] = ACTIONS(3978), + [aux_sym__immediate_decimal_token4] = ACTIONS(3980), + [aux_sym__immediate_decimal_token5] = ACTIONS(3982), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1583), }, [1241] = { + [sym_cell_path] = STATE(1409), + [sym_path] = STATE(1357), [sym_comment] = STATE(1241), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1251), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4000), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(251), }, [1242] = { - [sym_match_arm] = STATE(7957), - [sym_default_arm] = STATE(7957), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1242), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(4002), + [aux_sym__immediate_decimal_token2] = ACTIONS(4004), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1243] = { - [sym_expr_parenthesized] = STATE(7053), - [sym_val_range] = STATE(8451), - [sym__val_range] = STATE(8344), - [sym__value] = STATE(8451), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(6676), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6076), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(8454), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__expr_parenthesized_immediate] = STATE(1544), + [sym__immediate_decimal] = STATE(1545), + [sym_val_variable] = STATE(1544), [sym_comment] = STATE(1243), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3889), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), - [anon_sym_DOT_DOT_LT] = ACTIONS(3895), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_record_entry_token1] = ACTIONS(3501), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3956), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(4008), + [aux_sym__immediate_decimal_token3] = ACTIONS(4010), + [aux_sym__immediate_decimal_token4] = ACTIONS(4012), + [aux_sym__immediate_decimal_token5] = ACTIONS(4014), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [aux_sym_unquoted_token1] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1597), }, [1244] = { - [sym_match_arm] = STATE(7798), - [sym_default_arm] = STATE(7798), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__val_range] = STATE(7401), + [sym__value] = STATE(1833), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1772), + [sym_val_variable] = STATE(1825), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_unquoted] = STATE(1834), + [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1244), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4022), + [anon_sym_DOT_DOT_LT] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4024), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [1245] = { - [sym_match_arm] = STATE(8096), - [sym_default_arm] = STATE(8096), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__expr_parenthesized_immediate] = STATE(1710), + [sym__immediate_decimal] = STATE(1717), + [sym_val_variable] = STATE(1710), [sym_comment] = STATE(1245), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3965), - [anon_sym_LPAREN] = ACTIONS(3968), - [anon_sym_DOLLAR] = ACTIONS(3971), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym__] = ACTIONS(3977), - [anon_sym_DOT_DOT] = ACTIONS(3980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3983), - [anon_sym_DOT_DOT_LT] = ACTIONS(3983), - [anon_sym_null] = ACTIONS(3986), - [anon_sym_true] = ACTIONS(3989), - [anon_sym_false] = ACTIONS(3989), - [aux_sym__val_number_decimal_token1] = ACTIONS(3992), - [aux_sym__val_number_decimal_token2] = ACTIONS(3995), - [aux_sym__val_number_decimal_token3] = ACTIONS(3998), - [aux_sym__val_number_decimal_token4] = ACTIONS(4001), - [aux_sym__val_number_token1] = ACTIONS(4004), - [aux_sym__val_number_token2] = ACTIONS(4004), - [aux_sym__val_number_token3] = ACTIONS(4004), - [aux_sym__val_number_token4] = ACTIONS(4007), - [aux_sym__val_number_token5] = ACTIONS(4007), - [aux_sym__val_number_token6] = ACTIONS(4007), - [anon_sym_0b] = ACTIONS(4010), - [anon_sym_0o] = ACTIONS(4013), - [anon_sym_0x] = ACTIONS(4013), - [sym_val_date] = ACTIONS(4016), - [anon_sym_DQUOTE] = ACTIONS(4019), - [sym__str_single_quotes] = ACTIONS(4022), - [sym__str_back_ticks] = ACTIONS(4022), - [anon_sym_err_GT] = ACTIONS(4025), - [anon_sym_out_GT] = ACTIONS(4025), - [anon_sym_e_GT] = ACTIONS(4025), - [anon_sym_o_GT] = ACTIONS(4025), - [anon_sym_err_PLUSout_GT] = ACTIONS(4025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4025), - [anon_sym_o_PLUSe_GT] = ACTIONS(4025), - [anon_sym_e_PLUSo_GT] = ACTIONS(4025), - [anon_sym_err_GT_GT] = ACTIONS(4028), - [anon_sym_out_GT_GT] = ACTIONS(4028), - [anon_sym_e_GT_GT] = ACTIONS(4028), - [anon_sym_o_GT_GT] = ACTIONS(4028), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4028), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4028), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4028), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4028), - [aux_sym_unquoted_token1] = ACTIONS(4031), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4034), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(3974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT] = ACTIONS(1691), + [aux_sym__immediate_decimal_token1] = ACTIONS(4042), + [aux_sym__immediate_decimal_token3] = ACTIONS(4044), + [aux_sym__immediate_decimal_token4] = ACTIONS(4046), + [aux_sym__immediate_decimal_token5] = ACTIONS(4048), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1689), + [aux_sym__val_number_decimal_token3] = ACTIONS(1689), + [aux_sym__val_number_decimal_token4] = ACTIONS(1689), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1689), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1691), }, [1246] = { - [sym_match_arm] = STATE(7964), - [sym_default_arm] = STATE(7964), - [sym_match_pattern] = STATE(8672), - [sym__match_pattern] = STATE(6546), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7057), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5682), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1246), - [aux_sym_ctrl_match_repeat1] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym__] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3705), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3707), - [anon_sym_DOT_DOT_LT] = ACTIONS(3707), - [anon_sym_null] = ACTIONS(3709), - [anon_sym_true] = ACTIONS(3711), - [anon_sym_false] = ACTIONS(3711), - [aux_sym__val_number_decimal_token1] = ACTIONS(3713), - [aux_sym__val_number_decimal_token2] = ACTIONS(3715), - [aux_sym__val_number_decimal_token3] = ACTIONS(3717), - [aux_sym__val_number_decimal_token4] = ACTIONS(3719), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3721), - [aux_sym__val_number_token5] = ACTIONS(3721), - [aux_sym__val_number_token6] = ACTIONS(3721), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3723), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(4050), + [aux_sym__immediate_decimal_token2] = ACTIONS(4052), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1247] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_rest] = STATE(8519), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(3049), - [sym_val_range] = STATE(3269), - [sym__val_range] = STATE(8495), - [sym_val_nothing] = STATE(3273), - [sym_val_bool] = STATE(3216), - [sym_val_variable] = STATE(3050), - [sym_val_number] = STATE(3273), - [sym__val_number_decimal] = STATE(2832), - [sym__val_number] = STATE(3264), - [sym_val_duration] = STATE(3273), - [sym_val_filesize] = STATE(3273), - [sym_val_binary] = STATE(3273), - [sym_val_string] = STATE(3273), - [sym__raw_str] = STATE(3279), - [sym__str_double_quotes] = STATE(3279), - [sym_val_list] = STATE(8540), - [sym_val_table] = STATE(3273), - [sym__unquoted_in_list] = STATE(3251), - [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1247), - [aux_sym_shebang_repeat1] = STATE(7165), - [aux_sym__match_pattern_list_repeat1] = STATE(1264), - [sym__newline] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_RBRACK] = ACTIONS(4037), - [anon_sym_LPAREN] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_DOT_DOT] = ACTIONS(4039), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), - [anon_sym_DOT_DOT_LT] = ACTIONS(3933), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3937), - [anon_sym_false] = ACTIONS(3937), - [aux_sym__val_number_decimal_token1] = ACTIONS(3939), - [aux_sym__val_number_decimal_token2] = ACTIONS(3941), - [aux_sym__val_number_decimal_token3] = ACTIONS(3943), - [aux_sym__val_number_decimal_token4] = ACTIONS(3945), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3951), - [anon_sym_0o] = ACTIONS(3953), - [anon_sym_0x] = ACTIONS(3953), - [sym_val_date] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3957), - [sym__str_single_quotes] = ACTIONS(3959), - [sym__str_back_ticks] = ACTIONS(3959), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3963), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(4054), + [aux_sym__immediate_decimal_token2] = ACTIONS(4056), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1248] = { + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5874), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5064), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5880), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1248), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4041), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4074), + [aux_sym__val_number_decimal_token2] = ACTIONS(4076), + [aux_sym__val_number_decimal_token3] = ACTIONS(4078), + [aux_sym__val_number_decimal_token4] = ACTIONS(4080), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4082), + [aux_sym__val_number_token5] = ACTIONS(4082), + [aux_sym__val_number_token6] = ACTIONS(4082), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1249] = { + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5806), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5110), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5808), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1249), - [anon_sym_STAR_STAR] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1669), - [anon_sym_mod] = ACTIONS(1671), - [anon_sym_SLASH_SLASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_bit_DASHshl] = ACTIONS(1671), - [anon_sym_bit_DASHshr] = ACTIONS(1671), - [anon_sym_EQ_TILDE] = ACTIONS(1671), - [anon_sym_BANG_TILDE] = ACTIONS(1671), - [anon_sym_bit_DASHand] = ACTIONS(1671), - [anon_sym_bit_DASHxor] = ACTIONS(1671), - [anon_sym_bit_DASHor] = ACTIONS(1671), - [anon_sym_and] = ACTIONS(1671), - [anon_sym_xor] = ACTIONS(1671), - [anon_sym_or] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_not_DASHin] = ACTIONS(1671), - [anon_sym_starts_DASHwith] = ACTIONS(1671), - [anon_sym_ends_DASHwith] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1671), - [aux_sym_cmd_identifier_token41] = ACTIONS(1669), - [sym__newline] = 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(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1669), - [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_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1669), - [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(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4090), + [aux_sym__val_number_decimal_token2] = ACTIONS(4092), + [aux_sym__val_number_decimal_token3] = ACTIONS(4094), + [aux_sym__val_number_decimal_token4] = ACTIONS(4096), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4098), + [aux_sym__val_number_token5] = ACTIONS(4098), + [aux_sym__val_number_token6] = ACTIONS(4098), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1250] = { - [sym_expr_parenthesized] = STATE(7308), - [sym_val_range] = STATE(8668), - [sym__val_range] = STATE(8344), - [sym__value] = STATE(8668), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(6676), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6076), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(8425), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1250), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3889), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), - [anon_sym_DOT_DOT_LT] = ACTIONS(3895), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4102), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1251] = { + [sym_path] = STATE(1357), [sym_comment] = STATE(1251), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_mod] = ACTIONS(1663), - [anon_sym_SLASH_SLASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_bit_DASHshl] = ACTIONS(1663), - [anon_sym_bit_DASHshr] = ACTIONS(1663), - [anon_sym_EQ_TILDE] = ACTIONS(1663), - [anon_sym_BANG_TILDE] = ACTIONS(1663), - [anon_sym_bit_DASHand] = ACTIONS(1663), - [anon_sym_bit_DASHxor] = ACTIONS(1663), - [anon_sym_bit_DASHor] = ACTIONS(1663), - [anon_sym_and] = ACTIONS(1663), - [anon_sym_xor] = ACTIONS(1663), - [anon_sym_or] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_not_DASHin] = ACTIONS(1663), - [anon_sym_starts_DASHwith] = ACTIONS(1663), - [anon_sym_ends_DASHwith] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1663), - [aux_sym_cmd_identifier_token41] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_in2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1661), - [anon_sym_GT_EQ2] = ACTIONS(1661), - [anon_sym_EQ_TILDE2] = ACTIONS(1661), - [anon_sym_BANG_TILDE2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1661), - [anon_sym_bit_DASHshr2] = ACTIONS(1661), - [anon_sym_bit_DASHand2] = ACTIONS(1661), - [anon_sym_bit_DASHxor2] = ACTIONS(1661), - [anon_sym_bit_DASHor2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1255), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_PLUS_EQ] = ACTIONS(950), + [anon_sym_DASH_EQ] = ACTIONS(950), + [anon_sym_STAR_EQ] = ACTIONS(950), + [anon_sym_SLASH_EQ] = ACTIONS(950), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4000), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(251), }, [1252] = { - [sym__expr_parenthesized_immediate] = STATE(1558), - [sym__immediate_decimal] = STATE(1447), - [sym_val_variable] = STATE(1558), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5867), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5064), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5869), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1252), - [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_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4045), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [aux_sym__immediate_decimal_token1] = ACTIONS(4047), - [aux_sym__immediate_decimal_token3] = ACTIONS(4049), - [aux_sym__immediate_decimal_token4] = ACTIONS(4051), - [aux_sym__immediate_decimal_token5] = ACTIONS(4053), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4074), + [aux_sym__val_number_decimal_token2] = ACTIONS(4076), + [aux_sym__val_number_decimal_token3] = ACTIONS(4078), + [aux_sym__val_number_decimal_token4] = ACTIONS(4080), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4082), + [aux_sym__val_number_token5] = ACTIONS(4082), + [aux_sym__val_number_token6] = ACTIONS(4082), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1253] = { + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5940), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5110), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1253), - [anon_sym_STAR_STAR] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_bit_DASHshl] = ACTIONS(1713), - [anon_sym_bit_DASHshr] = ACTIONS(1713), - [anon_sym_EQ_TILDE] = ACTIONS(1713), - [anon_sym_BANG_TILDE] = ACTIONS(1713), - [anon_sym_bit_DASHand] = ACTIONS(1713), - [anon_sym_bit_DASHxor] = ACTIONS(1713), - [anon_sym_bit_DASHor] = ACTIONS(1713), - [anon_sym_and] = ACTIONS(1713), - [anon_sym_xor] = ACTIONS(1713), - [anon_sym_or] = ACTIONS(1713), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_not_DASHin] = ACTIONS(1713), - [anon_sym_starts_DASHwith] = ACTIONS(1713), - [anon_sym_ends_DASHwith] = ACTIONS(1713), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1713), - [aux_sym_cmd_identifier_token41] = ACTIONS(1711), - [sym__newline] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_err_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_GT_PIPE] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1711), - [anon_sym_xor2] = ACTIONS(1711), - [anon_sym_or2] = ACTIONS(1711), - [anon_sym_not_DASHin2] = ACTIONS(1711), - [anon_sym_starts_DASHwith2] = ACTIONS(1711), - [anon_sym_ends_DASHwith2] = ACTIONS(1711), - [anon_sym_EQ_EQ2] = ACTIONS(1711), - [anon_sym_BANG_EQ2] = ACTIONS(1711), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1711), - [anon_sym_GT_EQ2] = ACTIONS(1711), - [anon_sym_EQ_TILDE2] = ACTIONS(1711), - [anon_sym_BANG_TILDE2] = ACTIONS(1711), - [anon_sym_STAR_STAR2] = ACTIONS(1711), - [anon_sym_PLUS_PLUS2] = ACTIONS(1711), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1711), - [anon_sym_SLASH_SLASH2] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1711), - [anon_sym_bit_DASHshr2] = ACTIONS(1711), - [anon_sym_bit_DASHand2] = ACTIONS(1711), - [anon_sym_bit_DASHxor2] = ACTIONS(1711), - [anon_sym_bit_DASHor2] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4090), + [aux_sym__val_number_decimal_token2] = ACTIONS(4092), + [aux_sym__val_number_decimal_token3] = ACTIONS(4094), + [aux_sym__val_number_decimal_token4] = ACTIONS(4096), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4098), + [aux_sym__val_number_token5] = ACTIONS(4098), + [aux_sym__val_number_token6] = ACTIONS(4098), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1254] = { [sym_comment] = STATE(1254), - [anon_sym_STAR_STAR] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_bit_DASHshl] = ACTIONS(1769), - [anon_sym_bit_DASHshr] = ACTIONS(1769), - [anon_sym_EQ_TILDE] = ACTIONS(1769), - [anon_sym_BANG_TILDE] = ACTIONS(1769), - [anon_sym_bit_DASHand] = ACTIONS(1769), - [anon_sym_bit_DASHxor] = ACTIONS(1769), - [anon_sym_bit_DASHor] = ACTIONS(1769), - [anon_sym_and] = ACTIONS(1769), - [anon_sym_xor] = ACTIONS(1769), - [anon_sym_or] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1769), - [anon_sym_not_DASHin] = ACTIONS(1769), - [anon_sym_starts_DASHwith] = ACTIONS(1769), - [anon_sym_ends_DASHwith] = ACTIONS(1769), - [anon_sym_EQ_EQ] = ACTIONS(1769), - [anon_sym_BANG_EQ] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_GT_EQ] = ACTIONS(1769), - [aux_sym_cmd_identifier_token41] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(3986), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1255] = { - [sym_expr_parenthesized] = STATE(7053), - [sym_val_range] = STATE(8451), - [sym__val_range] = STATE(8344), - [sym__value] = STATE(8451), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(6676), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6076), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(8454), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym_path] = STATE(1357), [sym_comment] = STATE(1255), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3889), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(3893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3895), - [anon_sym_DOT_DOT_LT] = ACTIONS(3895), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [aux_sym_cell_path_repeat1] = STATE(1255), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(941), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4104), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(251), }, [1256] = { + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_rest] = STATE(7390), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2932), + [sym_val_range] = STATE(3151), + [sym__val_range] = STATE(7478), + [sym_val_nothing] = STATE(3156), + [sym_val_bool] = STATE(3060), + [sym_val_variable] = STATE(2899), + [sym_val_number] = STATE(3156), + [sym__val_number_decimal] = STATE(2706), + [sym__val_number] = STATE(3188), + [sym_val_duration] = STATE(3156), + [sym_val_filesize] = STATE(3156), + [sym_val_binary] = STATE(3156), + [sym_val_string] = STATE(3156), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_table] = STATE(3156), + [sym__unquoted_in_list] = STATE(3134), + [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1256), - [anon_sym_STAR_STAR] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3067), - [anon_sym_SLASH_SLASH] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_bit_DASHshl] = ACTIONS(3067), - [anon_sym_bit_DASHshr] = ACTIONS(3067), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_BANG_TILDE] = ACTIONS(3067), - [anon_sym_bit_DASHand] = ACTIONS(3067), - [anon_sym_bit_DASHxor] = ACTIONS(3067), - [anon_sym_bit_DASHor] = ACTIONS(3067), - [anon_sym_and] = ACTIONS(3067), - [anon_sym_xor] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3067), - [anon_sym_not_DASHin] = ACTIONS(3067), - [anon_sym_starts_DASHwith] = ACTIONS(3067), - [anon_sym_ends_DASHwith] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3067), - [aux_sym_cmd_identifier_token41] = ACTIONS(3071), - [sym__newline] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_err_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_GT_PIPE] = ACTIONS(1687), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_in2] = ACTIONS(1687), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1687), - [anon_sym_xor2] = ACTIONS(1687), - [anon_sym_or2] = ACTIONS(1687), - [anon_sym_not_DASHin2] = ACTIONS(1687), - [anon_sym_starts_DASHwith2] = ACTIONS(1687), - [anon_sym_ends_DASHwith2] = ACTIONS(1687), - [anon_sym_EQ_EQ2] = ACTIONS(1687), - [anon_sym_BANG_EQ2] = ACTIONS(1687), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1687), - [anon_sym_GT_EQ2] = ACTIONS(1687), - [anon_sym_EQ_TILDE2] = ACTIONS(1687), - [anon_sym_BANG_TILDE2] = ACTIONS(1687), - [anon_sym_STAR_STAR2] = ACTIONS(1687), - [anon_sym_PLUS_PLUS2] = ACTIONS(1687), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1687), - [anon_sym_SLASH_SLASH2] = ACTIONS(1687), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1687), - [anon_sym_bit_DASHshr2] = ACTIONS(1687), - [anon_sym_bit_DASHand2] = ACTIONS(1687), - [anon_sym_bit_DASHxor2] = ACTIONS(1687), - [anon_sym_bit_DASHor2] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(3047), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3049), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3049), - [sym_filesize_unit] = ACTIONS(4055), - [sym_duration_unit] = ACTIONS(4057), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__match_pattern_list_repeat1] = STATE(1328), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_RBRACK] = ACTIONS(4109), + [anon_sym_LPAREN] = ACTIONS(3882), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_DOT_DOT] = ACTIONS(4111), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3890), + [anon_sym_DOT_DOT_LT] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3892), + [anon_sym_true] = ACTIONS(3894), + [anon_sym_false] = ACTIONS(3894), + [aux_sym__val_number_decimal_token1] = ACTIONS(3896), + [aux_sym__val_number_decimal_token2] = ACTIONS(3898), + [aux_sym__val_number_decimal_token3] = ACTIONS(3900), + [aux_sym__val_number_decimal_token4] = ACTIONS(3902), + [aux_sym__val_number_token1] = ACTIONS(3904), + [aux_sym__val_number_token2] = ACTIONS(3904), + [aux_sym__val_number_token3] = ACTIONS(3904), + [aux_sym__val_number_token4] = ACTIONS(3906), + [aux_sym__val_number_token5] = ACTIONS(3906), + [aux_sym__val_number_token6] = ACTIONS(3906), + [anon_sym_0b] = ACTIONS(3908), + [anon_sym_0o] = ACTIONS(3910), + [anon_sym_0x] = ACTIONS(3910), + [sym_val_date] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3914), + [sym__str_single_quotes] = ACTIONS(3916), + [sym__str_back_ticks] = ACTIONS(3916), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3918), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3920), }, [1257] = { + [sym__expr_parenthesized_immediate] = STATE(7219), [sym_comment] = STATE(1257), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT2] = ACTIONS(4115), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4117), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4117), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1665), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1665), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(4119), + [sym_duration_unit] = ACTIONS(4121), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(4123), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), }, [1258] = { + [sym__val_range] = STATE(7459), + [sym__value] = STATE(5874), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(2111), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5539), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(5880), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1258), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(4063), - [aux_sym__immediate_decimal_token2] = ACTIONS(4065), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(4127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4129), + [anon_sym_DOT_DOT_LT] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1259] = { - [sym__expr_parenthesized_immediate] = STATE(1671), - [sym__immediate_decimal] = STATE(1504), - [sym_val_variable] = STATE(1671), + [sym__expr_parenthesized_immediate] = STATE(1815), + [sym__immediate_decimal] = STATE(1705), + [sym_val_variable] = STATE(1815), [sym_comment] = STATE(1259), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(4067), - [anon_sym_DOT] = ACTIONS(4069), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [aux_sym__immediate_decimal_token1] = ACTIONS(4071), - [aux_sym__immediate_decimal_token3] = ACTIONS(4073), - [aux_sym__immediate_decimal_token4] = ACTIONS(4075), - [aux_sym__immediate_decimal_token5] = ACTIONS(4077), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1579), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(4042), + [aux_sym__immediate_decimal_token3] = ACTIONS(4044), + [aux_sym__immediate_decimal_token4] = ACTIONS(4046), + [aux_sym__immediate_decimal_token5] = ACTIONS(4048), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [aux_sym_unquoted_token1] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1597), }, [1260] = { - [sym__expr_parenthesized_immediate] = STATE(1779), - [sym__immediate_decimal] = STATE(1608), - [sym_val_variable] = STATE(1779), + [sym__expr_parenthesized_immediate] = STATE(1628), + [sym__immediate_decimal] = STATE(1613), + [sym_val_variable] = STATE(1628), [sym_comment] = STATE(1260), - [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_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1579), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [aux_sym__immediate_decimal_token1] = ACTIONS(4083), - [aux_sym__immediate_decimal_token3] = ACTIONS(4085), - [aux_sym__immediate_decimal_token4] = ACTIONS(4087), - [aux_sym__immediate_decimal_token5] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1579), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3988), + [anon_sym_DOT] = ACTIONS(4131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(4133), + [aux_sym__immediate_decimal_token3] = ACTIONS(4135), + [aux_sym__immediate_decimal_token4] = ACTIONS(4137), + [aux_sym__immediate_decimal_token5] = ACTIONS(4139), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [aux_sym_unquoted_token1] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1597), }, [1261] = { - [sym__expr_parenthesized_immediate] = STATE(1797), - [sym__immediate_decimal] = STATE(1626), - [sym_val_variable] = STATE(1797), + [sym__expr_parenthesized_immediate] = STATE(1921), + [sym__immediate_decimal] = STATE(1700), + [sym_val_variable] = STATE(1921), [sym_comment] = STATE(1261), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1657), - [anon_sym_DOT_DOT_LT] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(4083), - [aux_sym__immediate_decimal_token3] = ACTIONS(4085), - [aux_sym__immediate_decimal_token4] = ACTIONS(4087), - [aux_sym__immediate_decimal_token5] = ACTIONS(4089), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1657), - [aux_sym__val_number_token2] = ACTIONS(1657), - [aux_sym__val_number_token3] = ACTIONS(1657), - [aux_sym__val_number_token4] = ACTIONS(1657), - [aux_sym__val_number_token5] = ACTIONS(1657), - [aux_sym__val_number_token6] = ACTIONS(1657), - [anon_sym_0b] = ACTIONS(1645), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym__str_single_quotes] = ACTIONS(1657), - [sym__str_back_ticks] = ACTIONS(1657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1657), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1657), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1583), + [anon_sym_DOT_DOT_LT] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(4143), + [aux_sym__immediate_decimal_token3] = ACTIONS(4145), + [aux_sym__immediate_decimal_token4] = ACTIONS(4147), + [aux_sym__immediate_decimal_token5] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [aux_sym__val_number_decimal_token1] = ACTIONS(1569), + [aux_sym__val_number_decimal_token2] = ACTIONS(1569), + [aux_sym__val_number_decimal_token3] = ACTIONS(1569), + [aux_sym__val_number_decimal_token4] = ACTIONS(1569), + [aux_sym__val_number_token1] = ACTIONS(1583), + [aux_sym__val_number_token2] = ACTIONS(1583), + [aux_sym__val_number_token3] = ACTIONS(1583), + [aux_sym__val_number_token4] = ACTIONS(1583), + [aux_sym__val_number_token5] = ACTIONS(1583), + [aux_sym__val_number_token6] = ACTIONS(1583), + [anon_sym_0b] = ACTIONS(1569), + [anon_sym_0o] = ACTIONS(1569), + [anon_sym_0x] = ACTIONS(1569), + [sym_val_date] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym__str_single_quotes] = ACTIONS(1583), + [sym__str_back_ticks] = ACTIONS(1583), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1583), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1583), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token1] = ACTIONS(1569), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1583), }, [1262] = { - [sym__expr_parenthesized_immediate] = STATE(1592), - [sym__immediate_decimal] = STATE(1557), - [sym_val_variable] = STATE(1592), + [sym__expr_parenthesized_immediate] = STATE(1780), + [sym__immediate_decimal] = STATE(1808), + [sym_val_variable] = STATE(1780), [sym_comment] = STATE(1262), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4093), - [aux_sym__immediate_decimal_token3] = ACTIONS(4095), - [aux_sym__immediate_decimal_token4] = ACTIONS(4097), - [aux_sym__immediate_decimal_token5] = ACTIONS(4099), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(3974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4042), + [aux_sym__immediate_decimal_token3] = ACTIONS(4044), + [aux_sym__immediate_decimal_token4] = ACTIONS(4046), + [aux_sym__immediate_decimal_token5] = ACTIONS(4048), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1695), }, [1263] = { - [sym__val_range] = STATE(8529), - [sym__value] = STATE(5842), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(5885), - [sym_val_variable] = STATE(3698), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(5070), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3508), - [sym__str_double_quotes] = STATE(3508), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(5850), - [sym__unquoted_anonymous_prefix] = STATE(8531), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(5806), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(2111), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5539), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(5808), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1263), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_DOLLAR] = ACTIONS(4105), - [anon_sym_LBRACE] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), - [anon_sym_DOT_DOT_LT] = ACTIONS(4111), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(4127), - [anon_sym_DQUOTE] = ACTIONS(4129), - [sym__str_single_quotes] = ACTIONS(4131), - [sym__str_back_ticks] = ACTIONS(4131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4133), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(4127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4129), + [anon_sym_DOT_DOT_LT] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1264] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_rest] = STATE(8241), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(3049), - [sym_val_range] = STATE(3269), - [sym__val_range] = STATE(8495), - [sym_val_nothing] = STATE(3273), - [sym_val_bool] = STATE(3216), - [sym_val_variable] = STATE(3050), - [sym_val_number] = STATE(3273), - [sym__val_number_decimal] = STATE(2832), - [sym__val_number] = STATE(3264), - [sym_val_duration] = STATE(3273), - [sym_val_filesize] = STATE(3273), - [sym_val_binary] = STATE(3273), - [sym_val_string] = STATE(3273), - [sym__raw_str] = STATE(3279), - [sym__str_double_quotes] = STATE(3279), - [sym_val_table] = STATE(3273), - [sym__unquoted_in_list] = STATE(3251), - [sym__unquoted_anonymous_prefix] = STATE(8543), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5874), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5110), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5880), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1264), - [aux_sym__match_pattern_list_repeat1] = STATE(1343), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_RBRACK] = ACTIONS(4137), - [anon_sym_LPAREN] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), - [anon_sym_DOT_DOT_LT] = ACTIONS(3933), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3937), - [anon_sym_false] = ACTIONS(3937), - [aux_sym__val_number_decimal_token1] = ACTIONS(3939), - [aux_sym__val_number_decimal_token2] = ACTIONS(3941), - [aux_sym__val_number_decimal_token3] = ACTIONS(3943), - [aux_sym__val_number_decimal_token4] = ACTIONS(3945), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3951), - [anon_sym_0o] = ACTIONS(3953), - [anon_sym_0x] = ACTIONS(3953), - [sym_val_date] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3957), - [sym__str_single_quotes] = ACTIONS(3959), - [sym__str_back_ticks] = ACTIONS(3959), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4090), + [aux_sym__val_number_decimal_token2] = ACTIONS(4092), + [aux_sym__val_number_decimal_token3] = ACTIONS(4094), + [aux_sym__val_number_decimal_token4] = ACTIONS(4096), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4098), + [aux_sym__val_number_token5] = ACTIONS(4098), + [aux_sym__val_number_token6] = ACTIONS(4098), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1265] = { + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5940), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5064), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1265), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4143), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4074), + [aux_sym__val_number_decimal_token2] = ACTIONS(4076), + [aux_sym__val_number_decimal_token3] = ACTIONS(4078), + [aux_sym__val_number_decimal_token4] = ACTIONS(4080), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4082), + [aux_sym__val_number_token5] = ACTIONS(4082), + [aux_sym__val_number_token6] = ACTIONS(4082), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1266] = { + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_rest] = STATE(7688), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2932), + [sym_val_range] = STATE(3151), + [sym__val_range] = STATE(7478), + [sym_val_nothing] = STATE(3156), + [sym_val_bool] = STATE(3060), + [sym_val_variable] = STATE(2899), + [sym_val_number] = STATE(3156), + [sym__val_number_decimal] = STATE(2706), + [sym__val_number] = STATE(3188), + [sym_val_duration] = STATE(3156), + [sym_val_filesize] = STATE(3156), + [sym_val_binary] = STATE(3156), + [sym_val_string] = STATE(3156), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_table] = STATE(3156), + [sym__unquoted_in_list] = STATE(3134), + [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1266), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(4145), - [aux_sym__immediate_decimal_token2] = ACTIONS(4147), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [aux_sym__match_pattern_list_repeat1] = STATE(1328), + [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_RBRACK] = ACTIONS(4151), + [anon_sym_LPAREN] = ACTIONS(3882), + [anon_sym_DOLLAR] = ACTIONS(3884), + [anon_sym_LBRACE] = ACTIONS(3886), + [anon_sym_DOT_DOT] = ACTIONS(4153), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3890), + [anon_sym_DOT_DOT_LT] = ACTIONS(3890), + [anon_sym_null] = ACTIONS(3892), + [anon_sym_true] = ACTIONS(3894), + [anon_sym_false] = ACTIONS(3894), + [aux_sym__val_number_decimal_token1] = ACTIONS(3896), + [aux_sym__val_number_decimal_token2] = ACTIONS(3898), + [aux_sym__val_number_decimal_token3] = ACTIONS(3900), + [aux_sym__val_number_decimal_token4] = ACTIONS(3902), + [aux_sym__val_number_token1] = ACTIONS(3904), + [aux_sym__val_number_token2] = ACTIONS(3904), + [aux_sym__val_number_token3] = ACTIONS(3904), + [aux_sym__val_number_token4] = ACTIONS(3906), + [aux_sym__val_number_token5] = ACTIONS(3906), + [aux_sym__val_number_token6] = ACTIONS(3906), + [anon_sym_0b] = ACTIONS(3908), + [anon_sym_0o] = ACTIONS(3910), + [anon_sym_0x] = ACTIONS(3910), + [sym_val_date] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3914), + [sym__str_single_quotes] = ACTIONS(3916), + [sym__str_back_ticks] = ACTIONS(3916), + [anon_sym_err_GT] = ACTIONS(2596), + [anon_sym_out_GT] = ACTIONS(2596), + [anon_sym_e_GT] = ACTIONS(2596), + [anon_sym_o_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT] = ACTIONS(2596), + [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), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3918), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3920), }, [1267] = { - [sym__expr_parenthesized_immediate] = STATE(8148), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5867), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5110), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5869), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1267), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT2] = ACTIONS(4151), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4153), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4153), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1687), - [sym_filesize_unit] = ACTIONS(4155), - [sym_duration_unit] = ACTIONS(4157), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1687), - [aux_sym_unquoted_token2] = ACTIONS(4159), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4090), + [aux_sym__val_number_decimal_token2] = ACTIONS(4092), + [aux_sym__val_number_decimal_token3] = ACTIONS(4094), + [aux_sym__val_number_decimal_token4] = ACTIONS(4096), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4098), + [aux_sym__val_number_token5] = ACTIONS(4098), + [aux_sym__val_number_token6] = ACTIONS(4098), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1268] = { - [sym_cell_path] = STATE(1475), - [sym_path] = STATE(1425), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5806), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(5721), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5064), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5808), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1268), - [aux_sym_cell_path_repeat1] = STATE(1354), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), - [sym__newline] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4161), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [aux_sym_record_entry_token1] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_true] = ACTIONS(4072), + [anon_sym_false] = ACTIONS(4072), + [aux_sym__val_number_decimal_token1] = ACTIONS(4074), + [aux_sym__val_number_decimal_token2] = ACTIONS(4076), + [aux_sym__val_number_decimal_token3] = ACTIONS(4078), + [aux_sym__val_number_decimal_token4] = ACTIONS(4080), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4082), + [aux_sym__val_number_token5] = ACTIONS(4082), + [aux_sym__val_number_token6] = ACTIONS(4082), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1269] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6494), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(7663), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5938), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6501), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7401), + [sym__value] = STATE(1941), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1772), + [sym_val_variable] = STATE(1825), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_unquoted] = STATE(1943), + [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1269), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(4179), - [aux_sym__val_number_decimal_token2] = ACTIONS(4181), - [aux_sym__val_number_decimal_token3] = ACTIONS(4183), - [aux_sym__val_number_decimal_token4] = ACTIONS(4185), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4187), - [aux_sym__val_number_token5] = ACTIONS(4187), - [aux_sym__val_number_token6] = ACTIONS(4187), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4189), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4022), + [anon_sym_DOT_DOT_LT] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4024), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [1270] = { - [sym__expr_parenthesized_immediate] = STATE(1777), - [sym__immediate_decimal] = STATE(1778), - [sym_val_variable] = STATE(1777), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(5867), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(2111), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5539), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(5869), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1270), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(4127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4129), + [anon_sym_DOT_DOT_LT] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1271] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6419), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5551), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6441), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7459), + [sym__value] = STATE(5940), + [sym_val_nothing] = STATE(2111), + [sym_val_bool] = STATE(7298), + [sym_val_variable] = STATE(2111), + [sym_val_number] = STATE(2111), + [sym__val_number_decimal] = STATE(5539), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(2111), + [sym_val_filesize] = STATE(2111), + [sym_val_binary] = STATE(2111), + [sym_val_string] = STATE(2111), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(2111), + [sym__inter_single_quotes] = STATE(2138), + [sym__inter_double_quotes] = STATE(2139), + [sym_val_list] = STATE(2111), + [sym_val_record] = STATE(2111), + [sym_val_table] = STATE(2111), + [sym_val_closure] = STATE(2111), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1271), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4215), - [aux_sym__val_number_token5] = ACTIONS(4215), - [aux_sym__val_number_token6] = ACTIONS(4215), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3928), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_DOLLAR] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_DOT_DOT] = ACTIONS(4127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4129), + [anon_sym_DOT_DOT_LT] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(3940), + [anon_sym_true] = ACTIONS(3942), + [anon_sym_false] = ACTIONS(3942), + [aux_sym__val_number_decimal_token1] = ACTIONS(3944), + [aux_sym__val_number_decimal_token2] = ACTIONS(3946), + [aux_sym__val_number_decimal_token3] = ACTIONS(3948), + [aux_sym__val_number_decimal_token4] = ACTIONS(3950), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3952), + [aux_sym__val_number_token5] = ACTIONS(3952), + [aux_sym__val_number_token6] = ACTIONS(3952), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1272] = { - [sym__expr_parenthesized_immediate] = STATE(1791), - [sym__immediate_decimal] = STATE(1792), - [sym_val_variable] = STATE(1791), + [sym__val_range] = STATE(7401), + [sym__value] = STATE(1881), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1772), + [sym_val_variable] = STATE(1825), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_unquoted] = STATE(1882), + [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1272), - [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_LBRACK] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), - [anon_sym_DOT_DOT_LT] = ACTIONS(1685), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1685), - [aux_sym__val_number_token2] = ACTIONS(1685), - [aux_sym__val_number_token3] = ACTIONS(1685), - [aux_sym__val_number_token4] = ACTIONS(1685), - [aux_sym__val_number_token5] = ACTIONS(1685), - [aux_sym__val_number_token6] = ACTIONS(1685), - [anon_sym_0b] = ACTIONS(1677), - [anon_sym_0o] = ACTIONS(1677), - [anon_sym_0x] = ACTIONS(1677), - [sym_val_date] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym__str_single_quotes] = ACTIONS(1685), - [sym__str_back_ticks] = ACTIONS(1685), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1685), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4022), + [anon_sym_DOT_DOT_LT] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4024), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [1273] = { - [sym__expr_parenthesized_immediate] = STATE(1793), - [sym__immediate_decimal] = STATE(1794), - [sym_val_variable] = STATE(1793), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5806), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(6600), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5260), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5808), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1273), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4157), + [anon_sym_false] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4167), + [aux_sym__val_number_token5] = ACTIONS(4167), + [aux_sym__val_number_token6] = ACTIONS(4167), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4169), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1274] = { - [sym__expr_parenthesized_immediate] = STATE(1795), - [sym__immediate_decimal] = STATE(1796), - [sym_val_variable] = STATE(1795), + [sym__val_range] = STATE(7401), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1825), + [sym_val_bool] = STATE(1772), + [sym_val_variable] = STATE(1825), + [sym_val_number] = STATE(1825), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(1828), + [sym_val_duration] = STATE(1825), + [sym_val_filesize] = STATE(1825), + [sym_val_binary] = STATE(1825), + [sym_val_string] = STATE(1825), + [sym__raw_str] = STATE(1929), + [sym__str_double_quotes] = STATE(1929), + [sym_val_interpolated] = STATE(1825), + [sym__inter_single_quotes] = STATE(1877), + [sym__inter_double_quotes] = STATE(1886), + [sym_val_list] = STATE(1825), + [sym_val_record] = STATE(1825), + [sym_val_table] = STATE(1825), + [sym_val_closure] = STATE(1825), + [sym_unquoted] = STATE(1910), + [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1274), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(4081), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [aux_sym__immediate_decimal_token1] = ACTIONS(4193), - [aux_sym__immediate_decimal_token3] = ACTIONS(4195), - [aux_sym__immediate_decimal_token4] = ACTIONS(4197), - [aux_sym__immediate_decimal_token5] = ACTIONS(4199), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1743), - [aux_sym__val_number_decimal_token3] = ACTIONS(1743), - [aux_sym__val_number_decimal_token4] = ACTIONS(1743), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1743), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [aux_sym_unquoted_token1] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(4016), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_DOT_DOT] = ACTIONS(4020), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4022), + [anon_sym_DOT_DOT_LT] = ACTIONS(4022), + [anon_sym_null] = ACTIONS(4024), + [anon_sym_true] = ACTIONS(4026), + [anon_sym_false] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(2913), + [aux_sym__val_number_token2] = ACTIONS(2913), + [aux_sym__val_number_token3] = ACTIONS(2913), + [aux_sym__val_number_token4] = ACTIONS(4036), + [aux_sym__val_number_token5] = ACTIONS(4036), + [aux_sym__val_number_token6] = ACTIONS(4036), + [anon_sym_0b] = ACTIONS(2917), + [anon_sym_0o] = ACTIONS(2919), + [anon_sym_0x] = ACTIONS(2919), + [sym_val_date] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(2923), + [sym__str_single_quotes] = ACTIONS(2925), + [sym__str_back_ticks] = ACTIONS(2925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2929), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2933), }, [1275] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6418), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(7663), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5938), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6420), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5940), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(6600), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5260), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5941), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(4179), - [aux_sym__val_number_decimal_token2] = ACTIONS(4181), - [aux_sym__val_number_decimal_token3] = ACTIONS(4183), - [aux_sym__val_number_decimal_token4] = ACTIONS(4185), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4187), - [aux_sym__val_number_token5] = ACTIONS(4187), - [aux_sym__val_number_token6] = ACTIONS(4187), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4189), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4157), + [anon_sym_false] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4167), + [aux_sym__val_number_token5] = ACTIONS(4167), + [aux_sym__val_number_token6] = ACTIONS(4167), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4169), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1276] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6428), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5551), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6429), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5874), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(6600), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5260), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5880), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4215), - [aux_sym__val_number_token5] = ACTIONS(4215), - [aux_sym__val_number_token6] = ACTIONS(4215), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4157), + [anon_sym_false] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4167), + [aux_sym__val_number_token5] = ACTIONS(4167), + [aux_sym__val_number_token6] = ACTIONS(4167), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4169), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1277] = { + [sym__val_range] = STATE(7680), + [sym__value] = STATE(4573), + [sym_val_nothing] = STATE(4586), + [sym_val_bool] = STATE(4323), + [sym_val_variable] = STATE(4586), + [sym_val_number] = STATE(4586), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(4589), + [sym_val_duration] = STATE(4586), + [sym_val_filesize] = STATE(4586), + [sym_val_binary] = STATE(4586), + [sym_val_string] = STATE(4586), + [sym__raw_str] = STATE(3998), + [sym__str_double_quotes] = STATE(3998), + [sym_val_interpolated] = STATE(4586), + [sym__inter_single_quotes] = STATE(4590), + [sym__inter_double_quotes] = STATE(4591), + [sym_val_list] = STATE(4586), + [sym_val_record] = STATE(4586), + [sym_val_table] = STATE(4586), + [sym_val_closure] = STATE(4586), + [sym_unquoted] = STATE(4578), + [sym__unquoted_anonymous_prefix] = STATE(7476), [sym_comment] = STATE(1277), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4219), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(4185), + [aux_sym__val_number_decimal_token3] = ACTIONS(4187), + [aux_sym__val_number_decimal_token4] = ACTIONS(4189), + [aux_sym__val_number_token1] = ACTIONS(4191), + [aux_sym__val_number_token2] = ACTIONS(4191), + [aux_sym__val_number_token3] = ACTIONS(4191), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym__str_single_quotes] = ACTIONS(4199), + [sym__str_back_ticks] = ACTIONS(4199), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4203), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2113), }, [1278] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_rest] = STATE(8409), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(3049), - [sym_val_range] = STATE(3269), - [sym__val_range] = STATE(8495), - [sym_val_nothing] = STATE(3273), - [sym_val_bool] = STATE(3216), - [sym_val_variable] = STATE(3050), - [sym_val_number] = STATE(3273), - [sym__val_number_decimal] = STATE(2832), - [sym__val_number] = STATE(3264), - [sym_val_duration] = STATE(3273), - [sym_val_filesize] = STATE(3273), - [sym_val_binary] = STATE(3273), - [sym_val_string] = STATE(3273), - [sym__raw_str] = STATE(3279), - [sym__str_double_quotes] = STATE(3279), - [sym_val_table] = STATE(3273), - [sym__unquoted_in_list] = STATE(3251), - [sym__unquoted_anonymous_prefix] = STATE(8543), + [sym__val_range] = STATE(7400), + [sym__value] = STATE(5867), + [sym_val_nothing] = STATE(4783), + [sym_val_bool] = STATE(6600), + [sym_val_variable] = STATE(4783), + [sym_val_number] = STATE(4783), + [sym__val_number_decimal] = STATE(5260), + [sym__val_number] = STATE(4795), + [sym_val_duration] = STATE(4783), + [sym_val_filesize] = STATE(4783), + [sym_val_binary] = STATE(4783), + [sym_val_string] = STATE(4783), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_val_interpolated] = STATE(4783), + [sym__inter_single_quotes] = STATE(4684), + [sym__inter_double_quotes] = STATE(4695), + [sym_val_list] = STATE(4783), + [sym_val_record] = STATE(4783), + [sym_val_table] = STATE(4783), + [sym_val_closure] = STATE(4783), + [sym_unquoted] = STATE(5869), + [sym__unquoted_anonymous_prefix] = STATE(7721), [sym_comment] = STATE(1278), - [aux_sym__match_pattern_list_repeat1] = STATE(1343), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_RBRACK] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(3925), - [anon_sym_DOLLAR] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_DOT_DOT] = ACTIONS(4225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3933), - [anon_sym_DOT_DOT_LT] = ACTIONS(3933), - [anon_sym_null] = ACTIONS(3935), - [anon_sym_true] = ACTIONS(3937), - [anon_sym_false] = ACTIONS(3937), - [aux_sym__val_number_decimal_token1] = ACTIONS(3939), - [aux_sym__val_number_decimal_token2] = ACTIONS(3941), - [aux_sym__val_number_decimal_token3] = ACTIONS(3943), - [aux_sym__val_number_decimal_token4] = ACTIONS(3945), - [aux_sym__val_number_token1] = ACTIONS(3947), - [aux_sym__val_number_token2] = ACTIONS(3947), - [aux_sym__val_number_token3] = ACTIONS(3947), - [aux_sym__val_number_token4] = ACTIONS(3949), - [aux_sym__val_number_token5] = ACTIONS(3949), - [aux_sym__val_number_token6] = ACTIONS(3949), - [anon_sym_0b] = ACTIONS(3951), - [anon_sym_0o] = ACTIONS(3953), - [anon_sym_0x] = ACTIONS(3953), - [sym_val_date] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3957), - [sym__str_single_quotes] = ACTIONS(3959), - [sym__str_back_ticks] = ACTIONS(3959), - [anon_sym_err_GT] = ACTIONS(2613), - [anon_sym_out_GT] = ACTIONS(2613), - [anon_sym_e_GT] = ACTIONS(2613), - [anon_sym_o_GT] = ACTIONS(2613), - [anon_sym_err_PLUSout_GT] = ACTIONS(2613), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2613), - [anon_sym_o_PLUSe_GT] = ACTIONS(2613), - [anon_sym_e_PLUSo_GT] = ACTIONS(2613), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4068), + [anon_sym_DOT_DOT_LT] = ACTIONS(4068), + [anon_sym_null] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4157), + [anon_sym_false] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3564), + [aux_sym__val_number_token2] = ACTIONS(3564), + [aux_sym__val_number_token3] = ACTIONS(3564), + [aux_sym__val_number_token4] = ACTIONS(4167), + [aux_sym__val_number_token5] = ACTIONS(4167), + [aux_sym__val_number_token6] = ACTIONS(4167), + [anon_sym_0b] = ACTIONS(3568), + [anon_sym_0o] = ACTIONS(3570), + [anon_sym_0x] = ACTIONS(3570), + [sym_val_date] = ACTIONS(4169), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3578), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, [1279] = { + [sym__val_range] = STATE(7680), + [sym__value] = STATE(4630), + [sym_val_nothing] = STATE(4586), + [sym_val_bool] = STATE(4323), + [sym_val_variable] = STATE(4586), + [sym_val_number] = STATE(4586), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(4589), + [sym_val_duration] = STATE(4586), + [sym_val_filesize] = STATE(4586), + [sym_val_binary] = STATE(4586), + [sym_val_string] = STATE(4586), + [sym__raw_str] = STATE(3998), + [sym__str_double_quotes] = STATE(3998), + [sym_val_interpolated] = STATE(4586), + [sym__inter_single_quotes] = STATE(4590), + [sym__inter_double_quotes] = STATE(4591), + [sym_val_list] = STATE(4586), + [sym_val_record] = STATE(4586), + [sym_val_table] = STATE(4586), + [sym_val_closure] = STATE(4586), + [sym_unquoted] = STATE(4660), + [sym__unquoted_anonymous_prefix] = STATE(7476), [sym_comment] = STATE(1279), - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(4227), - [aux_sym__immediate_decimal_token2] = ACTIONS(4229), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(4185), + [aux_sym__val_number_decimal_token3] = ACTIONS(4187), + [aux_sym__val_number_decimal_token4] = ACTIONS(4189), + [aux_sym__val_number_token1] = ACTIONS(4191), + [aux_sym__val_number_token2] = ACTIONS(4191), + [aux_sym__val_number_token3] = ACTIONS(4191), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym__str_single_quotes] = ACTIONS(4199), + [sym__str_back_ticks] = ACTIONS(4199), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4203), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2113), }, [1280] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6494), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5551), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6501), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7680), + [sym__value] = STATE(4599), + [sym_val_nothing] = STATE(4586), + [sym_val_bool] = STATE(4323), + [sym_val_variable] = STATE(4586), + [sym_val_number] = STATE(4586), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(4589), + [sym_val_duration] = STATE(4586), + [sym_val_filesize] = STATE(4586), + [sym_val_binary] = STATE(4586), + [sym_val_string] = STATE(4586), + [sym__raw_str] = STATE(3998), + [sym__str_double_quotes] = STATE(3998), + [sym_val_interpolated] = STATE(4586), + [sym__inter_single_quotes] = STATE(4590), + [sym__inter_double_quotes] = STATE(4591), + [sym_val_list] = STATE(4586), + [sym_val_record] = STATE(4586), + [sym_val_table] = STATE(4586), + [sym_val_closure] = STATE(4586), + [sym_unquoted] = STATE(4610), + [sym__unquoted_anonymous_prefix] = STATE(7476), [sym_comment] = STATE(1280), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4215), - [aux_sym__val_number_token5] = ACTIONS(4215), - [aux_sym__val_number_token6] = ACTIONS(4215), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(4185), + [aux_sym__val_number_decimal_token3] = ACTIONS(4187), + [aux_sym__val_number_decimal_token4] = ACTIONS(4189), + [aux_sym__val_number_token1] = ACTIONS(4191), + [aux_sym__val_number_token2] = ACTIONS(4191), + [aux_sym__val_number_token3] = ACTIONS(4191), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym__str_single_quotes] = ACTIONS(4199), + [sym__str_back_ticks] = ACTIONS(4199), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4203), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2113), }, [1281] = { - [sym__expr_parenthesized_immediate] = STATE(1956), - [sym__immediate_decimal] = STATE(1687), - [sym_val_variable] = STATE(1956), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4430), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(7002), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(5297), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4431), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1281), - [ts_builtin_sym_end] = ACTIONS(1657), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(4233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1657), - [anon_sym_DOT_DOT_LT] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(4235), - [aux_sym__immediate_decimal_token3] = ACTIONS(4237), - [aux_sym__immediate_decimal_token4] = ACTIONS(4239), - [aux_sym__immediate_decimal_token5] = ACTIONS(4241), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [aux_sym__val_number_decimal_token1] = ACTIONS(1645), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1657), - [aux_sym__val_number_token2] = ACTIONS(1657), - [aux_sym__val_number_token3] = ACTIONS(1657), - [aux_sym__val_number_token4] = ACTIONS(1657), - [aux_sym__val_number_token5] = ACTIONS(1657), - [aux_sym__val_number_token6] = ACTIONS(1657), - [anon_sym_0b] = ACTIONS(1645), - [anon_sym_0o] = ACTIONS(1645), - [anon_sym_0x] = ACTIONS(1645), - [sym_val_date] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym__str_single_quotes] = ACTIONS(1657), - [sym__str_back_ticks] = ACTIONS(1657), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1657), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), - [aux_sym_unquoted_token1] = ACTIONS(1645), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(4219), + [aux_sym__val_number_decimal_token2] = ACTIONS(4221), + [aux_sym__val_number_decimal_token3] = ACTIONS(4223), + [aux_sym__val_number_decimal_token4] = ACTIONS(4225), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4229), + [aux_sym__val_number_token5] = ACTIONS(4229), + [aux_sym__val_number_token6] = ACTIONS(4229), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1282] = { - [sym__val_range] = STATE(8509), - [sym__value] = STATE(3089), - [sym_val_nothing] = STATE(3093), - [sym_val_bool] = STATE(3000), - [sym_val_variable] = STATE(3093), - [sym_val_number] = STATE(3093), - [sym__val_number_decimal] = STATE(2700), - [sym__val_number] = STATE(3075), - [sym_val_duration] = STATE(3093), - [sym_val_filesize] = STATE(3093), - [sym_val_binary] = STATE(3093), - [sym_val_string] = STATE(3093), - [sym__raw_str] = STATE(3107), - [sym__str_double_quotes] = STATE(3107), - [sym_val_interpolated] = STATE(3093), - [sym__inter_single_quotes] = STATE(3139), - [sym__inter_double_quotes] = STATE(3140), - [sym_val_list] = STATE(3093), - [sym_val_record] = STATE(3093), - [sym_val_table] = STATE(3093), - [sym_val_closure] = STATE(3093), - [sym_unquoted] = STATE(3090), - [sym__unquoted_anonymous_prefix] = STATE(8547), + [sym__val_range] = STATE(7680), + [sym__value] = STATE(4724), + [sym_val_nothing] = STATE(4586), + [sym_val_bool] = STATE(4323), + [sym_val_variable] = STATE(4586), + [sym_val_number] = STATE(4586), + [sym__val_number_decimal] = STATE(3898), + [sym__val_number] = STATE(4589), + [sym_val_duration] = STATE(4586), + [sym_val_filesize] = STATE(4586), + [sym_val_binary] = STATE(4586), + [sym_val_string] = STATE(4586), + [sym__raw_str] = STATE(3998), + [sym__str_double_quotes] = STATE(3998), + [sym_val_interpolated] = STATE(4586), + [sym__inter_single_quotes] = STATE(4590), + [sym__inter_double_quotes] = STATE(4591), + [sym_val_list] = STATE(4586), + [sym_val_record] = STATE(4586), + [sym_val_table] = STATE(4586), + [sym_val_closure] = STATE(4586), + [sym_unquoted] = STATE(4725), + [sym__unquoted_anonymous_prefix] = STATE(7476), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4249), - [anon_sym_DOT_DOT] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(4255), - [anon_sym_true] = ACTIONS(4257), - [anon_sym_false] = ACTIONS(4257), - [aux_sym__val_number_decimal_token1] = ACTIONS(4259), - [aux_sym__val_number_decimal_token2] = ACTIONS(4261), - [aux_sym__val_number_decimal_token3] = ACTIONS(4263), - [aux_sym__val_number_decimal_token4] = ACTIONS(4265), - [aux_sym__val_number_token1] = ACTIONS(4267), - [aux_sym__val_number_token2] = ACTIONS(4267), - [aux_sym__val_number_token3] = ACTIONS(4267), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), - [anon_sym_0b] = ACTIONS(4271), - [anon_sym_0o] = ACTIONS(4273), - [anon_sym_0x] = ACTIONS(4273), - [sym_val_date] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4277), - [sym__str_single_quotes] = ACTIONS(4279), - [sym__str_back_ticks] = ACTIONS(4279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4283), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4285), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(4175), + [anon_sym_DOT_DOT] = ACTIONS(4177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4179), + [anon_sym_DOT_DOT_LT] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(4185), + [aux_sym__val_number_decimal_token3] = ACTIONS(4187), + [aux_sym__val_number_decimal_token4] = ACTIONS(4189), + [aux_sym__val_number_token1] = ACTIONS(4191), + [aux_sym__val_number_token2] = ACTIONS(4191), + [aux_sym__val_number_token3] = ACTIONS(4191), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(2093), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym__str_single_quotes] = ACTIONS(4199), + [sym__str_back_ticks] = ACTIONS(4199), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4203), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2113), }, [1283] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6419), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5623), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6441), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4443), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(7002), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(5297), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4444), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(4219), + [aux_sym__val_number_decimal_token2] = ACTIONS(4221), + [aux_sym__val_number_decimal_token3] = ACTIONS(4223), + [aux_sym__val_number_decimal_token4] = ACTIONS(4225), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4229), + [aux_sym__val_number_token5] = ACTIONS(4229), + [aux_sym__val_number_token6] = ACTIONS(4229), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1284] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6418), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5551), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6420), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__expr_parenthesized_immediate] = STATE(1902), + [sym__immediate_decimal] = STATE(1654), + [sym_val_variable] = STATE(1902), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4207), - [aux_sym__val_number_decimal_token2] = ACTIONS(4209), - [aux_sym__val_number_decimal_token3] = ACTIONS(4211), - [aux_sym__val_number_decimal_token4] = ACTIONS(4213), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4215), - [aux_sym__val_number_token5] = ACTIONS(4215), - [aux_sym__val_number_token6] = ACTIONS(4215), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_DOT_DOT] = ACTIONS(1617), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(4143), + [aux_sym__immediate_decimal_token3] = ACTIONS(4145), + [aux_sym__immediate_decimal_token4] = ACTIONS(4147), + [aux_sym__immediate_decimal_token5] = ACTIONS(4149), + [anon_sym_null] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1619), + [anon_sym_false] = ACTIONS(1619), + [aux_sym__val_number_decimal_token1] = ACTIONS(1617), + [aux_sym__val_number_decimal_token2] = ACTIONS(1617), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1617), + [aux_sym__val_number_token1] = ACTIONS(1619), + [aux_sym__val_number_token2] = ACTIONS(1619), + [aux_sym__val_number_token3] = ACTIONS(1619), + [aux_sym__val_number_token4] = ACTIONS(1619), + [aux_sym__val_number_token5] = ACTIONS(1619), + [aux_sym__val_number_token6] = ACTIONS(1619), + [anon_sym_0b] = ACTIONS(1617), + [anon_sym_0o] = ACTIONS(1617), + [anon_sym_0x] = ACTIONS(1617), + [sym_val_date] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__str_single_quotes] = ACTIONS(1619), + [sym__str_back_ticks] = ACTIONS(1619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1619), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym_unquoted_token1] = ACTIONS(1617), + [aux_sym_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1619), }, [1285] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6428), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5623), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6429), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4520), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(7002), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(5297), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4522), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(4219), + [aux_sym__val_number_decimal_token2] = ACTIONS(4221), + [aux_sym__val_number_decimal_token3] = ACTIONS(4223), + [aux_sym__val_number_decimal_token4] = ACTIONS(4225), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4229), + [aux_sym__val_number_token5] = ACTIONS(4229), + [aux_sym__val_number_token6] = ACTIONS(4229), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1286] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6428), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(7663), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5938), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6429), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4430), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3864), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4431), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1286), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(4179), - [aux_sym__val_number_decimal_token2] = ACTIONS(4181), - [aux_sym__val_number_decimal_token3] = ACTIONS(4183), - [aux_sym__val_number_decimal_token4] = ACTIONS(4185), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4187), - [aux_sym__val_number_token5] = ACTIONS(4187), - [aux_sym__val_number_token6] = ACTIONS(4187), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4189), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_true] = ACTIONS(4243), + [anon_sym_false] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4251), + [aux_sym__val_number_token5] = ACTIONS(4251), + [aux_sym__val_number_token6] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1287] = { - [sym__val_range] = STATE(8509), - [sym__value] = STATE(3101), - [sym_val_nothing] = STATE(3093), - [sym_val_bool] = STATE(3000), - [sym_val_variable] = STATE(3093), - [sym_val_number] = STATE(3093), - [sym__val_number_decimal] = STATE(2700), - [sym__val_number] = STATE(3075), - [sym_val_duration] = STATE(3093), - [sym_val_filesize] = STATE(3093), - [sym_val_binary] = STATE(3093), - [sym_val_string] = STATE(3093), - [sym__raw_str] = STATE(3107), - [sym__str_double_quotes] = STATE(3107), - [sym_val_interpolated] = STATE(3093), - [sym__inter_single_quotes] = STATE(3139), - [sym__inter_double_quotes] = STATE(3140), - [sym_val_list] = STATE(3093), - [sym_val_record] = STATE(3093), - [sym_val_table] = STATE(3093), - [sym_val_closure] = STATE(3093), - [sym_unquoted] = STATE(3112), - [sym__unquoted_anonymous_prefix] = STATE(8547), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4537), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(7002), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(5297), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4538), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4249), - [anon_sym_DOT_DOT] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT] = ACTIONS(4253), - [anon_sym_null] = ACTIONS(4255), - [anon_sym_true] = ACTIONS(4257), - [anon_sym_false] = ACTIONS(4257), - [aux_sym__val_number_decimal_token1] = ACTIONS(4259), - [aux_sym__val_number_decimal_token2] = ACTIONS(4261), - [aux_sym__val_number_decimal_token3] = ACTIONS(4263), - [aux_sym__val_number_decimal_token4] = ACTIONS(4265), - [aux_sym__val_number_token1] = ACTIONS(4267), - [aux_sym__val_number_token2] = ACTIONS(4267), - [aux_sym__val_number_token3] = ACTIONS(4267), - [aux_sym__val_number_token4] = ACTIONS(4269), - [aux_sym__val_number_token5] = ACTIONS(4269), - [aux_sym__val_number_token6] = ACTIONS(4269), - [anon_sym_0b] = ACTIONS(4271), - [anon_sym_0o] = ACTIONS(4273), - [anon_sym_0x] = ACTIONS(4273), - [sym_val_date] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4277), - [sym__str_single_quotes] = ACTIONS(4279), - [sym__str_back_ticks] = ACTIONS(4279), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4281), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4283), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4285), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(4219), + [aux_sym__val_number_decimal_token2] = ACTIONS(4221), + [aux_sym__val_number_decimal_token3] = ACTIONS(4223), + [aux_sym__val_number_decimal_token4] = ACTIONS(4225), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4229), + [aux_sym__val_number_token5] = ACTIONS(4229), + [aux_sym__val_number_token6] = ACTIONS(4229), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4231), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1288] = { - [sym_cell_path] = STATE(1478), - [sym_path] = STATE(1413), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4443), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3864), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4444), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1288), - [aux_sym_cell_path_repeat1] = STATE(1346), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_true] = ACTIONS(4243), + [anon_sym_false] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4251), + [aux_sym__val_number_token5] = ACTIONS(4251), + [aux_sym__val_number_token6] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1289] = { - [sym__expr_parenthesized_immediate] = STATE(1653), - [sym__immediate_decimal] = STATE(1670), - [sym_val_variable] = STATE(1653), + [sym__val_range] = STATE(7394), + [sym__value] = STATE(2990), + [sym_val_nothing] = STATE(3017), + [sym_val_bool] = STATE(2881), + [sym_val_variable] = STATE(3017), + [sym_val_number] = STATE(3017), + [sym__val_number_decimal] = STATE(2564), + [sym__val_number] = STATE(3018), + [sym_val_duration] = STATE(3017), + [sym_val_filesize] = STATE(3017), + [sym_val_binary] = STATE(3017), + [sym_val_string] = STATE(3017), + [sym__raw_str] = STATE(2965), + [sym__str_double_quotes] = STATE(2965), + [sym_val_interpolated] = STATE(3017), + [sym__inter_single_quotes] = STATE(3000), + [sym__inter_double_quotes] = STATE(3002), + [sym_val_list] = STATE(3017), + [sym_val_record] = STATE(3017), + [sym_val_table] = STATE(3017), + [sym_val_closure] = STATE(3017), + [sym_unquoted] = STATE(2991), + [sym__unquoted_anonymous_prefix] = STATE(7726), [sym_comment] = STATE(1289), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(4067), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4303), - [aux_sym__immediate_decimal_token3] = ACTIONS(4305), - [aux_sym__immediate_decimal_token4] = ACTIONS(4307), - [aux_sym__immediate_decimal_token5] = ACTIONS(4309), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_DOT_DOT] = ACTIONS(4263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), + [anon_sym_DOT_DOT_LT] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4269), + [anon_sym_false] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(4271), + [aux_sym__val_number_decimal_token2] = ACTIONS(4273), + [aux_sym__val_number_decimal_token3] = ACTIONS(4275), + [aux_sym__val_number_decimal_token4] = ACTIONS(4277), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [aux_sym__val_number_token4] = ACTIONS(4281), + [aux_sym__val_number_token5] = ACTIONS(4281), + [aux_sym__val_number_token6] = ACTIONS(4281), + [anon_sym_0b] = ACTIONS(4283), + [anon_sym_0o] = ACTIONS(4285), + [anon_sym_0x] = ACTIONS(4285), + [sym_val_date] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4289), + [sym__str_single_quotes] = ACTIONS(4291), + [sym__str_back_ticks] = ACTIONS(4291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4295), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4299), }, [1290] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6494), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5623), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6501), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4520), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3864), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4522), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_true] = ACTIONS(4243), + [anon_sym_false] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4251), + [aux_sym__val_number_token5] = ACTIONS(4251), + [aux_sym__val_number_token6] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1291] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(5829), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(7989), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6003), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(5830), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__val_range] = STATE(7495), + [sym__value] = STATE(1803), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1633), + [sym_val_variable] = STATE(1716), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1345), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_unquoted] = STATE(1804), + [sym__unquoted_anonymous_prefix] = STATE(7570), [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4313), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(4323), - [aux_sym__val_number_decimal_token2] = ACTIONS(4325), - [aux_sym__val_number_decimal_token3] = ACTIONS(4327), - [aux_sym__val_number_decimal_token4] = ACTIONS(4329), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(4303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4305), + [anon_sym_DOT_DOT_LT] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4309), + [anon_sym_false] = ACTIONS(4309), + [aux_sym__val_number_decimal_token1] = ACTIONS(4311), + [aux_sym__val_number_decimal_token2] = ACTIONS(4313), + [aux_sym__val_number_decimal_token3] = ACTIONS(4315), + [aux_sym__val_number_decimal_token4] = ACTIONS(4317), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(4319), + [aux_sym__val_number_token5] = ACTIONS(4319), + [aux_sym__val_number_token6] = ACTIONS(4319), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(4321), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [1292] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6418), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6349), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5623), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6420), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7475), + [sym__value] = STATE(4537), + [sym_val_nothing] = STATE(4481), + [sym_val_bool] = STATE(4108), + [sym_val_variable] = STATE(4481), + [sym_val_number] = STATE(4481), + [sym__val_number_decimal] = STATE(3864), + [sym__val_number] = STATE(4477), + [sym_val_duration] = STATE(4481), + [sym_val_filesize] = STATE(4481), + [sym_val_binary] = STATE(4481), + [sym_val_string] = STATE(4481), + [sym__raw_str] = STATE(3915), + [sym__str_double_quotes] = STATE(3915), + [sym_val_interpolated] = STATE(4481), + [sym__inter_single_quotes] = STATE(4426), + [sym__inter_double_quotes] = STATE(4441), + [sym_val_list] = STATE(4481), + [sym_val_record] = STATE(4481), + [sym_val_table] = STATE(4481), + [sym_val_closure] = STATE(4481), + [sym_unquoted] = STATE(4538), + [sym__unquoted_anonymous_prefix] = STATE(7424), [sym_comment] = STATE(1292), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4203), - [anon_sym_true] = ACTIONS(4205), - [anon_sym_false] = ACTIONS(4205), - [aux_sym__val_number_decimal_token1] = ACTIONS(4289), - [aux_sym__val_number_decimal_token2] = ACTIONS(4291), - [aux_sym__val_number_decimal_token3] = ACTIONS(4293), - [aux_sym__val_number_decimal_token4] = ACTIONS(4295), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4297), - [aux_sym__val_number_token5] = ACTIONS(4297), - [aux_sym__val_number_token6] = ACTIONS(4297), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4241), + [anon_sym_true] = ACTIONS(4243), + [anon_sym_false] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4227), + [aux_sym__val_number_token2] = ACTIONS(4227), + [aux_sym__val_number_token3] = ACTIONS(4227), + [aux_sym__val_number_token4] = ACTIONS(4251), + [aux_sym__val_number_token5] = ACTIONS(4251), + [aux_sym__val_number_token6] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(1877), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym__str_single_quotes] = ACTIONS(4235), + [sym__str_back_ticks] = ACTIONS(4235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1897), }, [1293] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(5883), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(7989), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6003), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(5886), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__val_range] = STATE(7495), + [sym__value] = STATE(1706), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1633), + [sym_val_variable] = STATE(1716), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1345), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_unquoted] = STATE(1707), + [sym__unquoted_anonymous_prefix] = STATE(7570), [sym_comment] = STATE(1293), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4313), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(4323), - [aux_sym__val_number_decimal_token2] = ACTIONS(4325), - [aux_sym__val_number_decimal_token3] = ACTIONS(4327), - [aux_sym__val_number_decimal_token4] = ACTIONS(4329), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(4303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4305), + [anon_sym_DOT_DOT_LT] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4309), + [anon_sym_false] = ACTIONS(4309), + [aux_sym__val_number_decimal_token1] = ACTIONS(4311), + [aux_sym__val_number_decimal_token2] = ACTIONS(4313), + [aux_sym__val_number_decimal_token3] = ACTIONS(4315), + [aux_sym__val_number_decimal_token4] = ACTIONS(4317), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(4319), + [aux_sym__val_number_token5] = ACTIONS(4319), + [aux_sym__val_number_token6] = ACTIONS(4319), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(4321), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [1294] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(5842), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(7989), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6003), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(5850), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__val_range] = STATE(7495), + [sym__value] = STATE(1734), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1633), + [sym_val_variable] = STATE(1716), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1345), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_unquoted] = STATE(1735), + [sym__unquoted_anonymous_prefix] = STATE(7570), [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4313), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(4323), - [aux_sym__val_number_decimal_token2] = ACTIONS(4325), - [aux_sym__val_number_decimal_token3] = ACTIONS(4327), - [aux_sym__val_number_decimal_token4] = ACTIONS(4329), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(4303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4305), + [anon_sym_DOT_DOT_LT] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4309), + [anon_sym_false] = ACTIONS(4309), + [aux_sym__val_number_decimal_token1] = ACTIONS(4311), + [aux_sym__val_number_decimal_token2] = ACTIONS(4313), + [aux_sym__val_number_decimal_token3] = ACTIONS(4315), + [aux_sym__val_number_decimal_token4] = ACTIONS(4317), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(4319), + [aux_sym__val_number_token5] = ACTIONS(4319), + [aux_sym__val_number_token6] = ACTIONS(4319), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(4321), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [1295] = { - [sym__val_range] = STATE(8617), - [sym__value] = STATE(2021), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1774), - [sym_val_variable] = STATE(2022), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_unquoted] = STATE(1893), - [sym__unquoted_anonymous_prefix] = STATE(8526), + [sym__val_range] = STATE(7594), + [sym__value] = STATE(5780), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5533), + [sym_val_variable] = STATE(5712), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4881), + [sym__val_number] = STATE(5579), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__raw_str] = STATE(5296), + [sym__str_double_quotes] = STATE(5296), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5580), + [sym__inter_double_quotes] = STATE(5581), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5781), + [sym__unquoted_anonymous_prefix] = STATE(7404), [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), - [anon_sym_DOT_DOT_LT] = ACTIONS(4339), - [anon_sym_null] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4343), - [anon_sym_false] = ACTIONS(4343), - [aux_sym__val_number_decimal_token1] = ACTIONS(4345), - [aux_sym__val_number_decimal_token2] = ACTIONS(4347), - [aux_sym__val_number_decimal_token3] = ACTIONS(4349), - [aux_sym__val_number_decimal_token4] = ACTIONS(4351), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(4353), - [aux_sym__val_number_token5] = ACTIONS(4353), - [aux_sym__val_number_token6] = ACTIONS(4353), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(4355), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4335), + [anon_sym_DOT_DOT_LT] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [aux_sym__val_number_decimal_token1] = ACTIONS(4341), + [aux_sym__val_number_decimal_token2] = ACTIONS(4343), + [aux_sym__val_number_decimal_token3] = ACTIONS(4345), + [aux_sym__val_number_decimal_token4] = ACTIONS(4347), + [aux_sym__val_number_token1] = ACTIONS(4349), + [aux_sym__val_number_token2] = ACTIONS(4349), + [aux_sym__val_number_token3] = ACTIONS(4349), + [aux_sym__val_number_token4] = ACTIONS(4351), + [aux_sym__val_number_token5] = ACTIONS(4351), + [aux_sym__val_number_token6] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4369), }, [1296] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(5825), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(7989), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6003), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(5833), - [sym__unquoted_anonymous_prefix] = STATE(8413), + [sym__val_range] = STATE(7495), + [sym__value] = STATE(1738), + [sym_val_nothing] = STATE(1716), + [sym_val_bool] = STATE(1633), + [sym_val_variable] = STATE(1716), + [sym_val_number] = STATE(1716), + [sym__val_number_decimal] = STATE(1345), + [sym__val_number] = STATE(1718), + [sym_val_duration] = STATE(1716), + [sym_val_filesize] = STATE(1716), + [sym_val_binary] = STATE(1716), + [sym_val_string] = STATE(1716), + [sym__raw_str] = STATE(1722), + [sym__str_double_quotes] = STATE(1722), + [sym_val_interpolated] = STATE(1716), + [sym__inter_single_quotes] = STATE(1795), + [sym__inter_double_quotes] = STATE(1796), + [sym_val_list] = STATE(1716), + [sym_val_record] = STATE(1716), + [sym_val_table] = STATE(1716), + [sym_val_closure] = STATE(1716), + [sym_unquoted] = STATE(1739), + [sym__unquoted_anonymous_prefix] = STATE(7570), [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4313), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4319), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [aux_sym__val_number_decimal_token1] = ACTIONS(4323), - [aux_sym__val_number_decimal_token2] = ACTIONS(4325), - [aux_sym__val_number_decimal_token3] = ACTIONS(4327), - [aux_sym__val_number_decimal_token4] = ACTIONS(4329), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4331), - [aux_sym__val_number_token5] = ACTIONS(4331), - [aux_sym__val_number_token6] = ACTIONS(4331), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4333), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(4303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4305), + [anon_sym_DOT_DOT_LT] = ACTIONS(4305), + [anon_sym_null] = ACTIONS(4307), + [anon_sym_true] = ACTIONS(4309), + [anon_sym_false] = ACTIONS(4309), + [aux_sym__val_number_decimal_token1] = ACTIONS(4311), + [aux_sym__val_number_decimal_token2] = ACTIONS(4313), + [aux_sym__val_number_decimal_token3] = ACTIONS(4315), + [aux_sym__val_number_decimal_token4] = ACTIONS(4317), + [aux_sym__val_number_token1] = ACTIONS(2654), + [aux_sym__val_number_token2] = ACTIONS(2654), + [aux_sym__val_number_token3] = ACTIONS(2654), + [aux_sym__val_number_token4] = ACTIONS(4319), + [aux_sym__val_number_token5] = ACTIONS(4319), + [aux_sym__val_number_token6] = ACTIONS(4319), + [anon_sym_0b] = ACTIONS(2658), + [anon_sym_0o] = ACTIONS(2660), + [anon_sym_0x] = ACTIONS(2660), + [sym_val_date] = ACTIONS(4321), + [anon_sym_DQUOTE] = ACTIONS(2664), + [sym__str_single_quotes] = ACTIONS(2666), + [sym__str_back_ticks] = ACTIONS(2666), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2678), }, [1297] = { - [sym__val_range] = STATE(8617), - [sym__value] = STATE(1932), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1774), - [sym_val_variable] = STATE(2022), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_unquoted] = STATE(1953), - [sym__unquoted_anonymous_prefix] = STATE(8526), + [sym__val_range] = STATE(7594), + [sym__value] = STATE(5795), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5533), + [sym_val_variable] = STATE(5712), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4881), + [sym__val_number] = STATE(5579), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__raw_str] = STATE(5296), + [sym__str_double_quotes] = STATE(5296), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5580), + [sym__inter_double_quotes] = STATE(5581), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5796), + [sym__unquoted_anonymous_prefix] = STATE(7404), [sym_comment] = STATE(1297), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), - [anon_sym_DOT_DOT_LT] = ACTIONS(4339), - [anon_sym_null] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4343), - [anon_sym_false] = ACTIONS(4343), - [aux_sym__val_number_decimal_token1] = ACTIONS(4345), - [aux_sym__val_number_decimal_token2] = ACTIONS(4347), - [aux_sym__val_number_decimal_token3] = ACTIONS(4349), - [aux_sym__val_number_decimal_token4] = ACTIONS(4351), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(4353), - [aux_sym__val_number_token5] = ACTIONS(4353), - [aux_sym__val_number_token6] = ACTIONS(4353), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(4355), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4335), + [anon_sym_DOT_DOT_LT] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [aux_sym__val_number_decimal_token1] = ACTIONS(4341), + [aux_sym__val_number_decimal_token2] = ACTIONS(4343), + [aux_sym__val_number_decimal_token3] = ACTIONS(4345), + [aux_sym__val_number_decimal_token4] = ACTIONS(4347), + [aux_sym__val_number_token1] = ACTIONS(4349), + [aux_sym__val_number_token2] = ACTIONS(4349), + [aux_sym__val_number_token3] = ACTIONS(4349), + [aux_sym__val_number_token4] = ACTIONS(4351), + [aux_sym__val_number_token5] = ACTIONS(4351), + [aux_sym__val_number_token6] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4369), }, [1298] = { - [sym__val_range] = STATE(8617), - [sym__value] = STATE(1920), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1774), - [sym_val_variable] = STATE(2022), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_unquoted] = STATE(1921), - [sym__unquoted_anonymous_prefix] = STATE(8526), + [sym__val_range] = STATE(7594), + [sym__value] = STATE(5722), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5533), + [sym_val_variable] = STATE(5712), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4881), + [sym__val_number] = STATE(5579), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__raw_str] = STATE(5296), + [sym__str_double_quotes] = STATE(5296), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5580), + [sym__inter_double_quotes] = STATE(5581), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5723), + [sym__unquoted_anonymous_prefix] = STATE(7404), [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), - [anon_sym_DOT_DOT_LT] = ACTIONS(4339), - [anon_sym_null] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4343), - [anon_sym_false] = ACTIONS(4343), - [aux_sym__val_number_decimal_token1] = ACTIONS(4345), - [aux_sym__val_number_decimal_token2] = ACTIONS(4347), - [aux_sym__val_number_decimal_token3] = ACTIONS(4349), - [aux_sym__val_number_decimal_token4] = ACTIONS(4351), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(4353), - [aux_sym__val_number_token5] = ACTIONS(4353), - [aux_sym__val_number_token6] = ACTIONS(4353), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(4355), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4335), + [anon_sym_DOT_DOT_LT] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [aux_sym__val_number_decimal_token1] = ACTIONS(4341), + [aux_sym__val_number_decimal_token2] = ACTIONS(4343), + [aux_sym__val_number_decimal_token3] = ACTIONS(4345), + [aux_sym__val_number_decimal_token4] = ACTIONS(4347), + [aux_sym__val_number_token1] = ACTIONS(4349), + [aux_sym__val_number_token2] = ACTIONS(4349), + [aux_sym__val_number_token3] = ACTIONS(4349), + [aux_sym__val_number_token4] = ACTIONS(4351), + [aux_sym__val_number_token5] = ACTIONS(4351), + [aux_sym__val_number_token6] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4369), }, [1299] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6419), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6761), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5711), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6441), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(5542), + [sym_val_nothing] = STATE(5499), + [sym_val_bool] = STATE(5281), + [sym_val_variable] = STATE(5499), + [sym_val_number] = STATE(5499), + [sym__val_number_decimal] = STATE(4689), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5499), + [sym_val_filesize] = STATE(5499), + [sym_val_binary] = STATE(5499), + [sym_val_string] = STATE(5499), + [sym__raw_str] = STATE(5164), + [sym__str_double_quotes] = STATE(5164), + [sym_val_interpolated] = STATE(5499), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5487), + [sym_val_list] = STATE(5499), + [sym_val_record] = STATE(5499), + [sym_val_table] = STATE(5499), + [sym_val_closure] = STATE(5499), + [sym_unquoted] = STATE(5545), + [sym__unquoted_anonymous_prefix] = STATE(7497), [sym_comment] = STATE(1299), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_DOT_DOT] = ACTIONS(4379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4381), + [anon_sym_DOT_DOT_LT] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4383), + [anon_sym_true] = ACTIONS(4385), + [anon_sym_false] = ACTIONS(4385), + [aux_sym__val_number_decimal_token1] = ACTIONS(4387), + [aux_sym__val_number_decimal_token2] = ACTIONS(4389), + [aux_sym__val_number_decimal_token3] = ACTIONS(4391), + [aux_sym__val_number_decimal_token4] = ACTIONS(4393), + [aux_sym__val_number_token1] = ACTIONS(4395), + [aux_sym__val_number_token2] = ACTIONS(4395), + [aux_sym__val_number_token3] = ACTIONS(4395), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(4399), + [anon_sym_0o] = ACTIONS(4401), + [anon_sym_0x] = ACTIONS(4401), + [sym_val_date] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4405), + [sym__str_single_quotes] = ACTIONS(4407), + [sym__str_back_ticks] = ACTIONS(4407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4411), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4415), }, [1300] = { - [sym__val_range] = STATE(8617), - [sym__value] = STATE(1940), - [sym_val_nothing] = STATE(2022), - [sym_val_bool] = STATE(1774), - [sym_val_variable] = STATE(2022), - [sym_val_number] = STATE(2022), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1997), - [sym_val_duration] = STATE(2022), - [sym_val_filesize] = STATE(2022), - [sym_val_binary] = STATE(2022), - [sym_val_string] = STATE(2022), - [sym__raw_str] = STATE(1901), - [sym__str_double_quotes] = STATE(1901), - [sym_val_interpolated] = STATE(2022), - [sym__inter_single_quotes] = STATE(1922), - [sym__inter_double_quotes] = STATE(1923), - [sym_val_list] = STATE(2022), - [sym_val_record] = STATE(2022), - [sym_val_table] = STATE(2022), - [sym_val_closure] = STATE(2022), - [sym_unquoted] = STATE(1941), - [sym__unquoted_anonymous_prefix] = STATE(8526), + [sym__val_range] = STATE(7594), + [sym__value] = STATE(5582), + [sym_val_nothing] = STATE(5712), + [sym_val_bool] = STATE(5533), + [sym_val_variable] = STATE(5712), + [sym_val_number] = STATE(5712), + [sym__val_number_decimal] = STATE(4881), + [sym__val_number] = STATE(5579), + [sym_val_duration] = STATE(5712), + [sym_val_filesize] = STATE(5712), + [sym_val_binary] = STATE(5712), + [sym_val_string] = STATE(5712), + [sym__raw_str] = STATE(5296), + [sym__str_double_quotes] = STATE(5296), + [sym_val_interpolated] = STATE(5712), + [sym__inter_single_quotes] = STATE(5580), + [sym__inter_double_quotes] = STATE(5581), + [sym_val_list] = STATE(5712), + [sym_val_record] = STATE(5712), + [sym_val_table] = STATE(5712), + [sym_val_closure] = STATE(5712), + [sym_unquoted] = STATE(5601), + [sym__unquoted_anonymous_prefix] = STATE(7404), [sym_comment] = STATE(1300), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_DOT_DOT] = ACTIONS(4337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4339), - [anon_sym_DOT_DOT_LT] = ACTIONS(4339), - [anon_sym_null] = ACTIONS(4341), - [anon_sym_true] = ACTIONS(4343), - [anon_sym_false] = ACTIONS(4343), - [aux_sym__val_number_decimal_token1] = ACTIONS(4345), - [aux_sym__val_number_decimal_token2] = ACTIONS(4347), - [aux_sym__val_number_decimal_token3] = ACTIONS(4349), - [aux_sym__val_number_decimal_token4] = ACTIONS(4351), - [aux_sym__val_number_token1] = ACTIONS(2936), - [aux_sym__val_number_token2] = ACTIONS(2936), - [aux_sym__val_number_token3] = ACTIONS(2936), - [aux_sym__val_number_token4] = ACTIONS(4353), - [aux_sym__val_number_token5] = ACTIONS(4353), - [aux_sym__val_number_token6] = ACTIONS(4353), - [anon_sym_0b] = ACTIONS(2940), - [anon_sym_0o] = ACTIONS(2942), - [anon_sym_0x] = ACTIONS(2942), - [sym_val_date] = ACTIONS(4355), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2948), - [sym__str_back_ticks] = ACTIONS(2948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2952), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4357), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_DOLLAR] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4335), + [anon_sym_DOT_DOT_LT] = ACTIONS(4335), + [anon_sym_null] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4339), + [anon_sym_false] = ACTIONS(4339), + [aux_sym__val_number_decimal_token1] = ACTIONS(4341), + [aux_sym__val_number_decimal_token2] = ACTIONS(4343), + [aux_sym__val_number_decimal_token3] = ACTIONS(4345), + [aux_sym__val_number_decimal_token4] = ACTIONS(4347), + [aux_sym__val_number_token1] = ACTIONS(4349), + [aux_sym__val_number_token2] = ACTIONS(4349), + [aux_sym__val_number_token3] = ACTIONS(4349), + [aux_sym__val_number_token4] = ACTIONS(4351), + [aux_sym__val_number_token5] = ACTIONS(4351), + [aux_sym__val_number_token6] = ACTIONS(4351), + [anon_sym_0b] = ACTIONS(4353), + [anon_sym_0o] = ACTIONS(4355), + [anon_sym_0x] = ACTIONS(4355), + [sym_val_date] = ACTIONS(4357), + [anon_sym_DQUOTE] = ACTIONS(4359), + [sym__str_single_quotes] = ACTIONS(4361), + [sym__str_back_ticks] = ACTIONS(4361), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4369), }, [1301] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6428), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6761), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5711), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6429), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(5436), + [sym_val_nothing] = STATE(5499), + [sym_val_bool] = STATE(5281), + [sym_val_variable] = STATE(5499), + [sym_val_number] = STATE(5499), + [sym__val_number_decimal] = STATE(4689), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5499), + [sym_val_filesize] = STATE(5499), + [sym_val_binary] = STATE(5499), + [sym_val_string] = STATE(5499), + [sym__raw_str] = STATE(5164), + [sym__str_double_quotes] = STATE(5164), + [sym_val_interpolated] = STATE(5499), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5487), + [sym_val_list] = STATE(5499), + [sym_val_record] = STATE(5499), + [sym_val_table] = STATE(5499), + [sym_val_closure] = STATE(5499), + [sym_unquoted] = STATE(5438), + [sym__unquoted_anonymous_prefix] = STATE(7497), [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_DOT_DOT] = ACTIONS(4379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4381), + [anon_sym_DOT_DOT_LT] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4383), + [anon_sym_true] = ACTIONS(4385), + [anon_sym_false] = ACTIONS(4385), + [aux_sym__val_number_decimal_token1] = ACTIONS(4387), + [aux_sym__val_number_decimal_token2] = ACTIONS(4389), + [aux_sym__val_number_decimal_token3] = ACTIONS(4391), + [aux_sym__val_number_decimal_token4] = ACTIONS(4393), + [aux_sym__val_number_token1] = ACTIONS(4395), + [aux_sym__val_number_token2] = ACTIONS(4395), + [aux_sym__val_number_token3] = ACTIONS(4395), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(4399), + [anon_sym_0o] = ACTIONS(4401), + [anon_sym_0x] = ACTIONS(4401), + [sym_val_date] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4405), + [sym__str_single_quotes] = ACTIONS(4407), + [sym__str_back_ticks] = ACTIONS(4407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4411), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4415), }, [1302] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6494), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6761), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5711), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6501), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(5552), + [sym_val_nothing] = STATE(5499), + [sym_val_bool] = STATE(5281), + [sym_val_variable] = STATE(5499), + [sym_val_number] = STATE(5499), + [sym__val_number_decimal] = STATE(4689), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5499), + [sym_val_filesize] = STATE(5499), + [sym_val_binary] = STATE(5499), + [sym_val_string] = STATE(5499), + [sym__raw_str] = STATE(5164), + [sym__str_double_quotes] = STATE(5164), + [sym_val_interpolated] = STATE(5499), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5487), + [sym_val_list] = STATE(5499), + [sym_val_record] = STATE(5499), + [sym_val_table] = STATE(5499), + [sym_val_closure] = STATE(5499), + [sym_unquoted] = STATE(5554), + [sym__unquoted_anonymous_prefix] = STATE(7497), [sym_comment] = STATE(1302), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_DOT_DOT] = ACTIONS(4379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4381), + [anon_sym_DOT_DOT_LT] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4383), + [anon_sym_true] = ACTIONS(4385), + [anon_sym_false] = ACTIONS(4385), + [aux_sym__val_number_decimal_token1] = ACTIONS(4387), + [aux_sym__val_number_decimal_token2] = ACTIONS(4389), + [aux_sym__val_number_decimal_token3] = ACTIONS(4391), + [aux_sym__val_number_decimal_token4] = ACTIONS(4393), + [aux_sym__val_number_token1] = ACTIONS(4395), + [aux_sym__val_number_token2] = ACTIONS(4395), + [aux_sym__val_number_token3] = ACTIONS(4395), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(4399), + [anon_sym_0o] = ACTIONS(4401), + [anon_sym_0x] = ACTIONS(4401), + [sym_val_date] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4405), + [sym__str_single_quotes] = ACTIONS(4407), + [sym__str_back_ticks] = ACTIONS(4407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4411), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4415), }, [1303] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6419), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(7663), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5938), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6441), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__val_range] = STATE(7739), + [sym__value] = STATE(5445), + [sym_val_nothing] = STATE(5499), + [sym_val_bool] = STATE(5281), + [sym_val_variable] = STATE(5499), + [sym_val_number] = STATE(5499), + [sym__val_number_decimal] = STATE(4689), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5499), + [sym_val_filesize] = STATE(5499), + [sym_val_binary] = STATE(5499), + [sym_val_string] = STATE(5499), + [sym__raw_str] = STATE(5164), + [sym__str_double_quotes] = STATE(5164), + [sym_val_interpolated] = STATE(5499), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5487), + [sym_val_list] = STATE(5499), + [sym_val_record] = STATE(5499), + [sym_val_table] = STATE(5499), + [sym_val_closure] = STATE(5499), + [sym_unquoted] = STATE(5446), + [sym__unquoted_anonymous_prefix] = STATE(7497), [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_true] = ACTIONS(4177), - [anon_sym_false] = ACTIONS(4177), - [aux_sym__val_number_decimal_token1] = ACTIONS(4179), - [aux_sym__val_number_decimal_token2] = ACTIONS(4181), - [aux_sym__val_number_decimal_token3] = ACTIONS(4183), - [aux_sym__val_number_decimal_token4] = ACTIONS(4185), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4187), - [aux_sym__val_number_token5] = ACTIONS(4187), - [aux_sym__val_number_token6] = ACTIONS(4187), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4189), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_DOLLAR] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_DOT_DOT] = ACTIONS(4379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4381), + [anon_sym_DOT_DOT_LT] = ACTIONS(4381), + [anon_sym_null] = ACTIONS(4383), + [anon_sym_true] = ACTIONS(4385), + [anon_sym_false] = ACTIONS(4385), + [aux_sym__val_number_decimal_token1] = ACTIONS(4387), + [aux_sym__val_number_decimal_token2] = ACTIONS(4389), + [aux_sym__val_number_decimal_token3] = ACTIONS(4391), + [aux_sym__val_number_decimal_token4] = ACTIONS(4393), + [aux_sym__val_number_token1] = ACTIONS(4395), + [aux_sym__val_number_token2] = ACTIONS(4395), + [aux_sym__val_number_token3] = ACTIONS(4395), + [aux_sym__val_number_token4] = ACTIONS(4397), + [aux_sym__val_number_token5] = ACTIONS(4397), + [aux_sym__val_number_token6] = ACTIONS(4397), + [anon_sym_0b] = ACTIONS(4399), + [anon_sym_0o] = ACTIONS(4401), + [anon_sym_0x] = ACTIONS(4401), + [sym_val_date] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4405), + [sym__str_single_quotes] = ACTIONS(4407), + [sym__str_back_ticks] = ACTIONS(4407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4411), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4415), }, [1304] = { - [sym__val_range] = STATE(8227), - [sym__value] = STATE(6418), - [sym_val_nothing] = STATE(5085), - [sym_val_bool] = STATE(6761), - [sym_val_variable] = STATE(5085), - [sym_val_number] = STATE(5085), - [sym__val_number_decimal] = STATE(5711), - [sym__val_number] = STATE(5256), - [sym_val_duration] = STATE(5085), - [sym_val_filesize] = STATE(5085), - [sym_val_binary] = STATE(5085), - [sym_val_string] = STATE(5085), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(5085), - [sym__inter_single_quotes] = STATE(5169), - [sym__inter_double_quotes] = STATE(5170), - [sym_val_list] = STATE(5085), - [sym_val_record] = STATE(5085), - [sym_val_table] = STATE(5085), - [sym_val_closure] = STATE(5085), - [sym_unquoted] = STATE(6420), - [sym__unquoted_anonymous_prefix] = STATE(8422), + [sym__expr_parenthesized_immediate] = STATE(1799), + [sym__immediate_decimal] = STATE(1720), + [sym_val_variable] = STATE(1799), [sym_comment] = STATE(1304), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4165), - [anon_sym_DOLLAR] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4173), - [anon_sym_DOT_DOT_LT] = ACTIONS(4173), - [anon_sym_null] = ACTIONS(4359), - [anon_sym_true] = ACTIONS(4361), - [anon_sym_false] = ACTIONS(4361), - [aux_sym__val_number_decimal_token1] = ACTIONS(4363), - [aux_sym__val_number_decimal_token2] = ACTIONS(4365), - [aux_sym__val_number_decimal_token3] = ACTIONS(4367), - [aux_sym__val_number_decimal_token4] = ACTIONS(4369), - [aux_sym__val_number_token1] = ACTIONS(3655), - [aux_sym__val_number_token2] = ACTIONS(3655), - [aux_sym__val_number_token3] = ACTIONS(3655), - [aux_sym__val_number_token4] = ACTIONS(4371), - [aux_sym__val_number_token5] = ACTIONS(4371), - [aux_sym__val_number_token6] = ACTIONS(4371), - [anon_sym_0b] = ACTIONS(3659), - [anon_sym_0o] = ACTIONS(3661), - [anon_sym_0x] = ACTIONS(3661), - [sym_val_date] = ACTIONS(4373), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3671), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4191), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(3972), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(3974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(4042), + [aux_sym__immediate_decimal_token3] = ACTIONS(4044), + [aux_sym__immediate_decimal_token4] = ACTIONS(4046), + [aux_sym__immediate_decimal_token5] = ACTIONS(4048), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1685), + [aux_sym__val_number_decimal_token4] = ACTIONS(1685), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, [1305] = { - [sym__val_range] = STATE(8417), - [sym__value] = STATE(5092), - [sym_val_nothing] = STATE(5064), - [sym_val_bool] = STATE(4848), - [sym_val_variable] = STATE(5064), - [sym_val_number] = STATE(5064), - [sym__val_number_decimal] = STATE(4388), - [sym__val_number] = STATE(5141), - [sym_val_duration] = STATE(5064), - [sym_val_filesize] = STATE(5064), - [sym_val_binary] = STATE(5064), - [sym_val_string] = STATE(5064), - [sym__raw_str] = STATE(4801), - [sym__str_double_quotes] = STATE(4801), - [sym_val_interpolated] = STATE(5064), - [sym__inter_single_quotes] = STATE(5066), - [sym__inter_double_quotes] = STATE(5068), - [sym_val_list] = STATE(5064), - [sym_val_record] = STATE(5064), - [sym_val_table] = STATE(5064), - [sym_val_closure] = STATE(5064), - [sym_unquoted] = STATE(5101), - [sym__unquoted_anonymous_prefix] = STATE(8674), + [sym__val_range] = STATE(7394), + [sym__value] = STATE(2980), + [sym_val_nothing] = STATE(3017), + [sym_val_bool] = STATE(2881), + [sym_val_variable] = STATE(3017), + [sym_val_number] = STATE(3017), + [sym__val_number_decimal] = STATE(2564), + [sym__val_number] = STATE(3018), + [sym_val_duration] = STATE(3017), + [sym_val_filesize] = STATE(3017), + [sym_val_binary] = STATE(3017), + [sym_val_string] = STATE(3017), + [sym__raw_str] = STATE(2965), + [sym__str_double_quotes] = STATE(2965), + [sym_val_interpolated] = STATE(3017), + [sym__inter_single_quotes] = STATE(3000), + [sym__inter_double_quotes] = STATE(3002), + [sym_val_list] = STATE(3017), + [sym_val_record] = STATE(3017), + [sym_val_table] = STATE(3017), + [sym_val_closure] = STATE(3017), + [sym_unquoted] = STATE(2982), + [sym__unquoted_anonymous_prefix] = STATE(7726), [sym_comment] = STATE(1305), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(4397), - [aux_sym__val_number_token2] = ACTIONS(4397), - [aux_sym__val_number_token3] = ACTIONS(4397), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2177), - [anon_sym_0x] = ACTIONS(2177), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4257), + [anon_sym_DOLLAR] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4261), + [anon_sym_DOT_DOT] = ACTIONS(4263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4265), + [anon_sym_DOT_DOT_LT] = ACTIONS(4265), + [anon_sym_null] = ACTIONS(4267), + [anon_sym_true] = ACTIONS(4269), + [anon_sym_false] = ACTIONS(4269), + [aux_sym__val_number_decimal_token1] = ACTIONS(4271), + [aux_sym__val_number_decimal_token2] = ACTIONS(4273), + [aux_sym__val_number_decimal_token3] = ACTIONS(4275), + [aux_sym__val_number_decimal_token4] = ACTIONS(4277), + [aux_sym__val_number_token1] = ACTIONS(4279), + [aux_sym__val_number_token2] = ACTIONS(4279), + [aux_sym__val_number_token3] = ACTIONS(4279), + [aux_sym__val_number_token4] = ACTIONS(4281), + [aux_sym__val_number_token5] = ACTIONS(4281), + [aux_sym__val_number_token6] = ACTIONS(4281), + [anon_sym_0b] = ACTIONS(4283), + [anon_sym_0o] = ACTIONS(4285), + [anon_sym_0x] = ACTIONS(4285), + [sym_val_date] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4289), + [sym__str_single_quotes] = ACTIONS(4291), + [sym__str_back_ticks] = ACTIONS(4291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4293), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4295), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(4297), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4299), }, [1306] = { - [sym__val_range] = STATE(8417), - [sym__value] = STATE(5192), - [sym_val_nothing] = STATE(5064), - [sym_val_bool] = STATE(4848), - [sym_val_variable] = STATE(5064), - [sym_val_number] = STATE(5064), - [sym__val_number_decimal] = STATE(4388), - [sym__val_number] = STATE(5141), - [sym_val_duration] = STATE(5064), - [sym_val_filesize] = STATE(5064), - [sym_val_binary] = STATE(5064), - [sym_val_string] = STATE(5064), - [sym__raw_str] = STATE(4801), - [sym__str_double_quotes] = STATE(4801), - [sym_val_interpolated] = STATE(5064), - [sym__inter_single_quotes] = STATE(5066), - [sym__inter_double_quotes] = STATE(5068), - [sym_val_list] = STATE(5064), - [sym_val_record] = STATE(5064), - [sym_val_table] = STATE(5064), - [sym_val_closure] = STATE(5064), - [sym_unquoted] = STATE(5196), - [sym__unquoted_anonymous_prefix] = STATE(8674), [sym_comment] = STATE(1306), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(4397), - [aux_sym__val_number_token2] = ACTIONS(4397), - [aux_sym__val_number_token3] = ACTIONS(4397), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2177), - [anon_sym_0x] = ACTIONS(2177), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(4417), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1307] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(4947), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(7477), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(5985), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(4950), - [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_false] = ACTIONS(4425), - [aux_sym__val_number_decimal_token1] = ACTIONS(4427), - [aux_sym__val_number_decimal_token2] = ACTIONS(4429), - [aux_sym__val_number_decimal_token3] = ACTIONS(4431), - [aux_sym__val_number_decimal_token4] = ACTIONS(4433), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1308] = { - [sym__val_range] = STATE(8417), - [sym__value] = STATE(5061), - [sym_val_nothing] = STATE(5064), - [sym_val_bool] = STATE(4848), - [sym_val_variable] = STATE(5064), - [sym_val_number] = STATE(5064), - [sym__val_number_decimal] = STATE(4388), - [sym__val_number] = STATE(5141), - [sym_val_duration] = STATE(5064), - [sym_val_filesize] = STATE(5064), - [sym_val_binary] = STATE(5064), - [sym_val_string] = STATE(5064), - [sym__raw_str] = STATE(4801), - [sym__str_double_quotes] = STATE(4801), - [sym_val_interpolated] = STATE(5064), - [sym__inter_single_quotes] = STATE(5066), - [sym__inter_double_quotes] = STATE(5068), - [sym_val_list] = STATE(5064), - [sym_val_record] = STATE(5064), - [sym_val_table] = STATE(5064), - [sym_val_closure] = STATE(5064), - [sym_unquoted] = STATE(5062), - [sym__unquoted_anonymous_prefix] = STATE(8674), + [sym__expr_parenthesized_immediate] = STATE(1838), + [sym__immediate_decimal] = STATE(1869), + [sym_val_variable] = STATE(1838), [sym_comment] = STATE(1308), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(4397), - [aux_sym__val_number_token2] = ACTIONS(4397), - [aux_sym__val_number_token3] = ACTIONS(4397), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2177), - [anon_sym_0x] = ACTIONS(2177), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(4423), + [aux_sym__immediate_decimal_token3] = ACTIONS(4425), + [aux_sym__immediate_decimal_token4] = ACTIONS(4427), + [aux_sym__immediate_decimal_token5] = ACTIONS(4429), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1685), + [aux_sym__val_number_decimal_token4] = ACTIONS(1685), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, [1309] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(4996), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(7477), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(5985), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5000), - [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1309), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_false] = ACTIONS(4425), - [aux_sym__val_number_decimal_token1] = ACTIONS(4427), - [aux_sym__val_number_decimal_token2] = ACTIONS(4429), - [aux_sym__val_number_decimal_token3] = ACTIONS(4431), - [aux_sym__val_number_decimal_token4] = ACTIONS(4433), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(4431), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [sym_raw_string_begin] = ACTIONS(1711), }, [1310] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(5008), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(7477), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(5985), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5009), - [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1310), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_false] = ACTIONS(4425), - [aux_sym__val_number_decimal_token1] = ACTIONS(4427), - [aux_sym__val_number_decimal_token2] = ACTIONS(4429), - [aux_sym__val_number_decimal_token3] = ACTIONS(4431), - [aux_sym__val_number_decimal_token4] = ACTIONS(4433), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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_POUND] = ACTIONS(3), }, [1311] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(4947), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4583), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4349), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(4950), - [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1311), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4449), - [anon_sym_true] = ACTIONS(4451), - [anon_sym_false] = ACTIONS(4451), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4453), - [aux_sym__val_number_decimal_token3] = ACTIONS(4455), - [aux_sym__val_number_decimal_token4] = ACTIONS(4457), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4459), - [aux_sym__val_number_token5] = ACTIONS(4459), - [aux_sym__val_number_token6] = ACTIONS(4459), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4461), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_GT2] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_STAR2] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_and2] = ACTIONS(964), + [anon_sym_xor2] = ACTIONS(964), + [anon_sym_or2] = ACTIONS(964), + [anon_sym_not_DASHin2] = ACTIONS(964), + [anon_sym_starts_DASHwith2] = ACTIONS(964), + [anon_sym_ends_DASHwith2] = ACTIONS(964), + [anon_sym_EQ_EQ2] = ACTIONS(964), + [anon_sym_BANG_EQ2] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(962), + [anon_sym_LT_EQ2] = ACTIONS(964), + [anon_sym_GT_EQ2] = ACTIONS(964), + [anon_sym_EQ_TILDE2] = ACTIONS(964), + [anon_sym_BANG_TILDE2] = ACTIONS(964), + [anon_sym_STAR_STAR2] = ACTIONS(964), + [anon_sym_PLUS_PLUS2] = ACTIONS(962), + [anon_sym_SLASH2] = ACTIONS(962), + [anon_sym_mod2] = ACTIONS(964), + [anon_sym_SLASH_SLASH2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_bit_DASHshl2] = ACTIONS(964), + [anon_sym_bit_DASHshr2] = ACTIONS(964), + [anon_sym_bit_DASHand2] = ACTIONS(964), + [anon_sym_bit_DASHxor2] = ACTIONS(964), + [anon_sym_bit_DASHor2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), }, [1312] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(5039), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(7477), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(5985), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5040), - [sym__unquoted_anonymous_prefix] = STATE(8228), + [sym__expr_parenthesized_immediate] = STATE(7289), [sym_comment] = STATE(1312), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_true] = ACTIONS(4425), - [anon_sym_false] = ACTIONS(4425), - [aux_sym__val_number_decimal_token1] = ACTIONS(4427), - [aux_sym__val_number_decimal_token2] = ACTIONS(4429), - [aux_sym__val_number_decimal_token3] = ACTIONS(4431), - [aux_sym__val_number_decimal_token4] = ACTIONS(4433), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4437), - [aux_sym__val_number_token5] = ACTIONS(4437), - [aux_sym__val_number_token6] = ACTIONS(4437), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4439), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4435), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1665), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1665), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(4437), + [sym_duration_unit] = ACTIONS(4439), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(4441), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), }, [1313] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(4996), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4583), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4349), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5000), - [sym__unquoted_anonymous_prefix] = STATE(8228), + [sym_cell_path] = STATE(1501), + [sym_path] = STATE(1441), [sym_comment] = STATE(1313), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4449), - [anon_sym_true] = ACTIONS(4451), - [anon_sym_false] = ACTIONS(4451), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4453), - [aux_sym__val_number_decimal_token3] = ACTIONS(4455), - [aux_sym__val_number_decimal_token4] = ACTIONS(4457), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4459), - [aux_sym__val_number_token5] = ACTIONS(4459), - [aux_sym__val_number_token6] = ACTIONS(4459), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4461), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [aux_sym_cell_path_repeat1] = STATE(1342), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1717), + [anon_sym_0o] = ACTIONS(1717), + [anon_sym_0x] = ACTIONS(1717), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_DOT2] = ACTIONS(4443), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1719), }, [1314] = { [sym_comment] = STATE(1314), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4061), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1315] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(5008), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4583), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4349), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5009), - [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1315), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4449), - [anon_sym_true] = ACTIONS(4451), - [anon_sym_false] = ACTIONS(4451), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4453), - [aux_sym__val_number_decimal_token3] = ACTIONS(4455), - [aux_sym__val_number_decimal_token4] = ACTIONS(4457), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4459), - [aux_sym__val_number_token5] = ACTIONS(4459), - [aux_sym__val_number_token6] = ACTIONS(4459), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4461), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), }, [1316] = { - [sym__val_range] = STATE(8261), - [sym__value] = STATE(3865), - [sym_val_nothing] = STATE(3919), - [sym_val_bool] = STATE(3828), - [sym_val_variable] = STATE(3919), - [sym_val_number] = STATE(3919), - [sym__val_number_decimal] = STATE(3585), - [sym__val_number] = STATE(3953), - [sym_val_duration] = STATE(3919), - [sym_val_filesize] = STATE(3919), - [sym_val_binary] = STATE(3919), - [sym_val_string] = STATE(3919), - [sym__raw_str] = STATE(3792), - [sym__str_double_quotes] = STATE(3792), - [sym_val_interpolated] = STATE(3919), - [sym__inter_single_quotes] = STATE(3954), - [sym__inter_double_quotes] = STATE(3851), - [sym_val_list] = STATE(3919), - [sym_val_record] = STATE(3919), - [sym_val_table] = STATE(3919), - [sym_val_closure] = STATE(3919), - [sym_unquoted] = STATE(3866), - [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1316), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4465), - [anon_sym_DOLLAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), - [anon_sym_DOT_DOT_LT] = ACTIONS(4473), - [anon_sym_null] = ACTIONS(4475), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [aux_sym__val_number_decimal_token1] = ACTIONS(4479), - [aux_sym__val_number_decimal_token2] = ACTIONS(4481), - [aux_sym__val_number_decimal_token3] = ACTIONS(4483), - [aux_sym__val_number_decimal_token4] = ACTIONS(4485), - [aux_sym__val_number_token1] = ACTIONS(4487), - [aux_sym__val_number_token2] = ACTIONS(4487), - [aux_sym__val_number_token3] = ACTIONS(4487), - [aux_sym__val_number_token4] = ACTIONS(4489), - [aux_sym__val_number_token5] = ACTIONS(4489), - [aux_sym__val_number_token6] = ACTIONS(4489), - [anon_sym_0b] = ACTIONS(4491), - [anon_sym_0o] = ACTIONS(4493), - [anon_sym_0x] = ACTIONS(4493), - [sym_val_date] = ACTIONS(4495), - [anon_sym_DQUOTE] = ACTIONS(4497), - [sym__str_single_quotes] = ACTIONS(4499), - [sym__str_back_ticks] = ACTIONS(4499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4505), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4507), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1317] = { - [sym__val_range] = STATE(8671), - [sym__value] = STATE(5039), - [sym_val_nothing] = STATE(5043), - [sym_val_bool] = STATE(4583), - [sym_val_variable] = STATE(5043), - [sym_val_number] = STATE(5043), - [sym__val_number_decimal] = STATE(4349), - [sym__val_number] = STATE(5038), - [sym_val_duration] = STATE(5043), - [sym_val_filesize] = STATE(5043), - [sym_val_binary] = STATE(5043), - [sym_val_string] = STATE(5043), - [sym__raw_str] = STATE(4655), - [sym__str_double_quotes] = STATE(4655), - [sym_val_interpolated] = STATE(5043), - [sym__inter_single_quotes] = STATE(4967), - [sym__inter_double_quotes] = STATE(4983), - [sym_val_list] = STATE(5043), - [sym_val_record] = STATE(5043), - [sym_val_table] = STATE(5043), - [sym_val_closure] = STATE(5043), - [sym_unquoted] = STATE(5040), - [sym__unquoted_anonymous_prefix] = STATE(8228), [sym_comment] = STATE(1317), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_DOLLAR] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_DOT_DOT] = ACTIONS(4419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4421), - [anon_sym_DOT_DOT_LT] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4449), - [anon_sym_true] = ACTIONS(4451), - [anon_sym_false] = ACTIONS(4451), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(4453), - [aux_sym__val_number_decimal_token3] = ACTIONS(4455), - [aux_sym__val_number_decimal_token4] = ACTIONS(4457), - [aux_sym__val_number_token1] = ACTIONS(4435), - [aux_sym__val_number_token2] = ACTIONS(4435), - [aux_sym__val_number_token3] = ACTIONS(4435), - [aux_sym__val_number_token4] = ACTIONS(4459), - [aux_sym__val_number_token5] = ACTIONS(4459), - [aux_sym__val_number_token6] = ACTIONS(4459), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(4461), - [anon_sym_DQUOTE] = ACTIONS(4441), - [sym__str_single_quotes] = ACTIONS(4443), - [sym__str_back_ticks] = ACTIONS(4443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4447), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_GT2] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_STAR2] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(978), + [anon_sym_xor2] = ACTIONS(978), + [anon_sym_or2] = ACTIONS(978), + [anon_sym_not_DASHin2] = ACTIONS(978), + [anon_sym_starts_DASHwith2] = ACTIONS(978), + [anon_sym_ends_DASHwith2] = ACTIONS(978), + [anon_sym_EQ_EQ2] = ACTIONS(978), + [anon_sym_BANG_EQ2] = ACTIONS(978), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ2] = ACTIONS(978), + [anon_sym_GT_EQ2] = ACTIONS(978), + [anon_sym_EQ_TILDE2] = ACTIONS(978), + [anon_sym_BANG_TILDE2] = ACTIONS(978), + [anon_sym_STAR_STAR2] = ACTIONS(978), + [anon_sym_PLUS_PLUS2] = ACTIONS(976), + [anon_sym_SLASH2] = ACTIONS(976), + [anon_sym_mod2] = ACTIONS(978), + [anon_sym_SLASH_SLASH2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_bit_DASHshl2] = ACTIONS(978), + [anon_sym_bit_DASHshr2] = ACTIONS(978), + [anon_sym_bit_DASHand2] = ACTIONS(978), + [anon_sym_bit_DASHxor2] = ACTIONS(978), + [anon_sym_bit_DASHor2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), }, [1318] = { - [sym__val_range] = STATE(8261), - [sym__value] = STATE(3867), - [sym_val_nothing] = STATE(3919), - [sym_val_bool] = STATE(3828), - [sym_val_variable] = STATE(3919), - [sym_val_number] = STATE(3919), - [sym__val_number_decimal] = STATE(3585), - [sym__val_number] = STATE(3953), - [sym_val_duration] = STATE(3919), - [sym_val_filesize] = STATE(3919), - [sym_val_binary] = STATE(3919), - [sym_val_string] = STATE(3919), - [sym__raw_str] = STATE(3792), - [sym__str_double_quotes] = STATE(3792), - [sym_val_interpolated] = STATE(3919), - [sym__inter_single_quotes] = STATE(3954), - [sym__inter_double_quotes] = STATE(3851), - [sym_val_list] = STATE(3919), - [sym_val_record] = STATE(3919), - [sym_val_table] = STATE(3919), - [sym_val_closure] = STATE(3919), - [sym_unquoted] = STATE(3868), - [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1318), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4465), - [anon_sym_DOLLAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), - [anon_sym_DOT_DOT_LT] = ACTIONS(4473), - [anon_sym_null] = ACTIONS(4475), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [aux_sym__val_number_decimal_token1] = ACTIONS(4479), - [aux_sym__val_number_decimal_token2] = ACTIONS(4481), - [aux_sym__val_number_decimal_token3] = ACTIONS(4483), - [aux_sym__val_number_decimal_token4] = ACTIONS(4485), - [aux_sym__val_number_token1] = ACTIONS(4487), - [aux_sym__val_number_token2] = ACTIONS(4487), - [aux_sym__val_number_token3] = ACTIONS(4487), - [aux_sym__val_number_token4] = ACTIONS(4489), - [aux_sym__val_number_token5] = ACTIONS(4489), - [aux_sym__val_number_token6] = ACTIONS(4489), - [anon_sym_0b] = ACTIONS(4491), - [anon_sym_0o] = ACTIONS(4493), - [anon_sym_0x] = ACTIONS(4493), - [sym_val_date] = ACTIONS(4495), - [anon_sym_DQUOTE] = ACTIONS(4497), - [sym__str_single_quotes] = ACTIONS(4499), - [sym__str_back_ticks] = ACTIONS(4499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4505), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4507), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1319] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(6494), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6082), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(6501), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1319), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1320] = { - [sym__val_range] = STATE(8261), - [sym__value] = STATE(3852), - [sym_val_nothing] = STATE(3919), - [sym_val_bool] = STATE(3828), - [sym_val_variable] = STATE(3919), - [sym_val_number] = STATE(3919), - [sym__val_number_decimal] = STATE(3585), - [sym__val_number] = STATE(3953), - [sym_val_duration] = STATE(3919), - [sym_val_filesize] = STATE(3919), - [sym_val_binary] = STATE(3919), - [sym_val_string] = STATE(3919), - [sym__raw_str] = STATE(3792), - [sym__str_double_quotes] = STATE(3792), - [sym_val_interpolated] = STATE(3919), - [sym__inter_single_quotes] = STATE(3954), - [sym__inter_double_quotes] = STATE(3851), - [sym_val_list] = STATE(3919), - [sym_val_record] = STATE(3919), - [sym_val_table] = STATE(3919), - [sym_val_closure] = STATE(3919), - [sym_unquoted] = STATE(3853), - [sym__unquoted_anonymous_prefix] = STATE(8437), + [sym__expr_parenthesized_immediate] = STATE(1827), + [sym__immediate_decimal] = STATE(1830), + [sym_val_variable] = STATE(1827), [sym_comment] = STATE(1320), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4465), - [anon_sym_DOLLAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), - [anon_sym_DOT_DOT_LT] = ACTIONS(4473), - [anon_sym_null] = ACTIONS(4475), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [aux_sym__val_number_decimal_token1] = ACTIONS(4479), - [aux_sym__val_number_decimal_token2] = ACTIONS(4481), - [aux_sym__val_number_decimal_token3] = ACTIONS(4483), - [aux_sym__val_number_decimal_token4] = ACTIONS(4485), - [aux_sym__val_number_token1] = ACTIONS(4487), - [aux_sym__val_number_token2] = ACTIONS(4487), - [aux_sym__val_number_token3] = ACTIONS(4487), - [aux_sym__val_number_token4] = ACTIONS(4489), - [aux_sym__val_number_token5] = ACTIONS(4489), - [aux_sym__val_number_token6] = ACTIONS(4489), - [anon_sym_0b] = ACTIONS(4491), - [anon_sym_0o] = ACTIONS(4493), - [anon_sym_0x] = ACTIONS(4493), - [sym_val_date] = ACTIONS(4495), - [anon_sym_DQUOTE] = ACTIONS(4497), - [sym__str_single_quotes] = ACTIONS(4499), - [sym__str_back_ticks] = ACTIONS(4499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4505), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4507), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(4423), + [aux_sym__immediate_decimal_token3] = ACTIONS(4425), + [aux_sym__immediate_decimal_token4] = ACTIONS(4427), + [aux_sym__immediate_decimal_token5] = ACTIONS(4429), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [aux_sym_unquoted_token1] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1597), }, [1321] = { - [sym__val_range] = STATE(8251), - [sym__value] = STATE(1764), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1697), - [sym_val_variable] = STATE(1803), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1378), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_unquoted] = STATE(1765), - [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1321), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(4513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), - [anon_sym_DOT_DOT_LT] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_true] = ACTIONS(4519), - [anon_sym_false] = ACTIONS(4519), - [aux_sym__val_number_decimal_token1] = ACTIONS(4521), - [aux_sym__val_number_decimal_token2] = ACTIONS(4523), - [aux_sym__val_number_decimal_token3] = ACTIONS(4525), - [aux_sym__val_number_decimal_token4] = ACTIONS(4527), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(4529), - [aux_sym__val_number_token5] = ACTIONS(4529), - [aux_sym__val_number_token6] = ACTIONS(4529), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4533), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_PLUS_EQ] = ACTIONS(954), + [anon_sym_DASH_EQ] = ACTIONS(954), + [anon_sym_STAR_EQ] = ACTIONS(954), + [anon_sym_SLASH_EQ] = ACTIONS(954), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_GT2] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_STAR2] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4451), + [anon_sym_and2] = ACTIONS(954), + [anon_sym_xor2] = ACTIONS(954), + [anon_sym_or2] = ACTIONS(954), + [anon_sym_not_DASHin2] = ACTIONS(954), + [anon_sym_starts_DASHwith2] = ACTIONS(954), + [anon_sym_ends_DASHwith2] = ACTIONS(954), + [anon_sym_EQ_EQ2] = ACTIONS(954), + [anon_sym_BANG_EQ2] = ACTIONS(954), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ2] = ACTIONS(954), + [anon_sym_GT_EQ2] = ACTIONS(954), + [anon_sym_EQ_TILDE2] = ACTIONS(954), + [anon_sym_BANG_TILDE2] = ACTIONS(954), + [anon_sym_STAR_STAR2] = ACTIONS(954), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(952), + [anon_sym_mod2] = ACTIONS(954), + [anon_sym_SLASH_SLASH2] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_bit_DASHshl2] = ACTIONS(954), + [anon_sym_bit_DASHshr2] = ACTIONS(954), + [anon_sym_bit_DASHand2] = ACTIONS(954), + [anon_sym_bit_DASHxor2] = ACTIONS(954), + [anon_sym_bit_DASHor2] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(251), }, [1322] = { - [sym__val_range] = STATE(8261), - [sym__value] = STATE(3914), - [sym_val_nothing] = STATE(3919), - [sym_val_bool] = STATE(3828), - [sym_val_variable] = STATE(3919), - [sym_val_number] = STATE(3919), - [sym__val_number_decimal] = STATE(3585), - [sym__val_number] = STATE(3953), - [sym_val_duration] = STATE(3919), - [sym_val_filesize] = STATE(3919), - [sym_val_binary] = STATE(3919), - [sym_val_string] = STATE(3919), - [sym__raw_str] = STATE(3792), - [sym__str_double_quotes] = STATE(3792), - [sym_val_interpolated] = STATE(3919), - [sym__inter_single_quotes] = STATE(3954), - [sym__inter_double_quotes] = STATE(3851), - [sym_val_list] = STATE(3919), - [sym_val_record] = STATE(3919), - [sym_val_table] = STATE(3919), - [sym_val_closure] = STATE(3919), - [sym_unquoted] = STATE(3925), - [sym__unquoted_anonymous_prefix] = STATE(8437), [sym_comment] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4465), - [anon_sym_DOLLAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4469), - [anon_sym_DOT_DOT] = ACTIONS(4471), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), - [anon_sym_DOT_DOT_LT] = ACTIONS(4473), - [anon_sym_null] = ACTIONS(4475), - [anon_sym_true] = ACTIONS(4477), - [anon_sym_false] = ACTIONS(4477), - [aux_sym__val_number_decimal_token1] = ACTIONS(4479), - [aux_sym__val_number_decimal_token2] = ACTIONS(4481), - [aux_sym__val_number_decimal_token3] = ACTIONS(4483), - [aux_sym__val_number_decimal_token4] = ACTIONS(4485), - [aux_sym__val_number_token1] = ACTIONS(4487), - [aux_sym__val_number_token2] = ACTIONS(4487), - [aux_sym__val_number_token3] = ACTIONS(4487), - [aux_sym__val_number_token4] = ACTIONS(4489), - [aux_sym__val_number_token5] = ACTIONS(4489), - [aux_sym__val_number_token6] = ACTIONS(4489), - [anon_sym_0b] = ACTIONS(4491), - [anon_sym_0o] = ACTIONS(4493), - [anon_sym_0x] = ACTIONS(4493), - [sym_val_date] = ACTIONS(4495), - [anon_sym_DQUOTE] = ACTIONS(4497), - [sym__str_single_quotes] = ACTIONS(4499), - [sym__str_back_ticks] = ACTIONS(4499), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4501), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4503), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4505), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_GT2] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_STAR2] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(974), + [anon_sym_xor2] = ACTIONS(974), + [anon_sym_or2] = ACTIONS(974), + [anon_sym_not_DASHin2] = ACTIONS(974), + [anon_sym_starts_DASHwith2] = ACTIONS(974), + [anon_sym_ends_DASHwith2] = ACTIONS(974), + [anon_sym_EQ_EQ2] = ACTIONS(974), + [anon_sym_BANG_EQ2] = ACTIONS(974), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ2] = ACTIONS(974), + [anon_sym_GT_EQ2] = ACTIONS(974), + [anon_sym_EQ_TILDE2] = ACTIONS(974), + [anon_sym_BANG_TILDE2] = ACTIONS(974), + [anon_sym_STAR_STAR2] = ACTIONS(974), + [anon_sym_PLUS_PLUS2] = ACTIONS(972), + [anon_sym_SLASH2] = ACTIONS(972), + [anon_sym_mod2] = ACTIONS(974), + [anon_sym_SLASH_SLASH2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_bit_DASHshl2] = ACTIONS(974), + [anon_sym_bit_DASHshr2] = ACTIONS(974), + [anon_sym_bit_DASHand2] = ACTIONS(974), + [anon_sym_bit_DASHxor2] = ACTIONS(974), + [anon_sym_bit_DASHor2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(251), }, [1323] = { - [sym__val_range] = STATE(8251), - [sym__value] = STATE(1766), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1697), - [sym_val_variable] = STATE(1803), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1378), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_unquoted] = STATE(1767), - [sym__unquoted_anonymous_prefix] = STATE(8625), + [sym_cell_path] = STATE(1475), + [sym_path] = STATE(1428), [sym_comment] = STATE(1323), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(4513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), - [anon_sym_DOT_DOT_LT] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_true] = ACTIONS(4519), - [anon_sym_false] = ACTIONS(4519), - [aux_sym__val_number_decimal_token1] = ACTIONS(4521), - [aux_sym__val_number_decimal_token2] = ACTIONS(4523), - [aux_sym__val_number_decimal_token3] = ACTIONS(4525), - [aux_sym__val_number_decimal_token4] = ACTIONS(4527), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(4529), - [aux_sym__val_number_token5] = ACTIONS(4529), - [aux_sym__val_number_token6] = ACTIONS(4529), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4533), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [aux_sym_cell_path_repeat1] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4453), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(251), }, [1324] = { - [sym__val_range] = STATE(8251), - [sym__value] = STATE(1780), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1697), - [sym_val_variable] = STATE(1803), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1378), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_unquoted] = STATE(1782), - [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1324), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(4513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), - [anon_sym_DOT_DOT_LT] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_true] = ACTIONS(4519), - [anon_sym_false] = ACTIONS(4519), - [aux_sym__val_number_decimal_token1] = ACTIONS(4521), - [aux_sym__val_number_decimal_token2] = ACTIONS(4523), - [aux_sym__val_number_decimal_token3] = ACTIONS(4525), - [aux_sym__val_number_decimal_token4] = ACTIONS(4527), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(4529), - [aux_sym__val_number_token5] = ACTIONS(4529), - [aux_sym__val_number_token6] = ACTIONS(4529), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4533), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [ts_builtin_sym_end] = ACTIONS(2259), + [anon_sym_STAR_STAR] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_mod] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_bit_DASHshl] = ACTIONS(3182), + [anon_sym_bit_DASHshr] = ACTIONS(3182), + [anon_sym_EQ_TILDE] = ACTIONS(3182), + [anon_sym_BANG_TILDE] = ACTIONS(3182), + [anon_sym_bit_DASHand] = ACTIONS(3182), + [anon_sym_bit_DASHxor] = ACTIONS(3182), + [anon_sym_bit_DASHor] = ACTIONS(3182), + [anon_sym_and] = ACTIONS(3182), + [anon_sym_xor] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_not_DASHin] = ACTIONS(3182), + [anon_sym_starts_DASHwith] = ACTIONS(3182), + [anon_sym_ends_DASHwith] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_GT_EQ] = ACTIONS(3182), + [aux_sym_cmd_identifier_token41] = ACTIONS(3186), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [1325] = { - [sym__val_range] = STATE(8380), - [sym__value] = STATE(6137), - [sym_val_nothing] = STATE(6189), - [sym_val_bool] = STATE(6014), - [sym_val_variable] = STATE(6189), - [sym_val_number] = STATE(6189), - [sym__val_number_decimal] = STATE(5368), - [sym__val_number] = STATE(6103), - [sym_val_duration] = STATE(6189), - [sym_val_filesize] = STATE(6189), - [sym_val_binary] = STATE(6189), - [sym_val_string] = STATE(6189), - [sym__raw_str] = STATE(5815), - [sym__str_double_quotes] = STATE(5815), - [sym_val_interpolated] = STATE(6189), - [sym__inter_single_quotes] = STATE(6372), - [sym__inter_double_quotes] = STATE(6374), - [sym_val_list] = STATE(6189), - [sym_val_record] = STATE(6189), - [sym_val_table] = STATE(6189), - [sym_val_closure] = STATE(6189), - [sym_unquoted] = STATE(6138), - [sym__unquoted_anonymous_prefix] = STATE(8265), + [sym__expr_parenthesized_immediate] = STATE(1916), + [sym__immediate_decimal] = STATE(1936), + [sym_val_variable] = STATE(1916), [sym_comment] = STATE(1325), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_DOLLAR] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [anon_sym_null] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [aux_sym__val_number_decimal_token1] = ACTIONS(4551), - [aux_sym__val_number_decimal_token2] = ACTIONS(4553), - [aux_sym__val_number_decimal_token3] = ACTIONS(4555), - [aux_sym__val_number_decimal_token4] = ACTIONS(4557), - [aux_sym__val_number_token1] = ACTIONS(4559), - [aux_sym__val_number_token2] = ACTIONS(4559), - [aux_sym__val_number_token3] = ACTIONS(4559), - [aux_sym__val_number_token4] = ACTIONS(4561), - [aux_sym__val_number_token5] = ACTIONS(4561), - [aux_sym__val_number_token6] = ACTIONS(4561), - [anon_sym_0b] = ACTIONS(4563), - [anon_sym_0o] = ACTIONS(4565), - [anon_sym_0x] = ACTIONS(4565), - [sym_val_date] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4569), - [sym__str_single_quotes] = ACTIONS(4571), - [sym__str_back_ticks] = ACTIONS(4571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4577), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4579), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1695), + [anon_sym_DOT_DOT_LT] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4423), + [aux_sym__immediate_decimal_token3] = ACTIONS(4425), + [aux_sym__immediate_decimal_token4] = ACTIONS(4427), + [aux_sym__immediate_decimal_token5] = ACTIONS(4429), + [anon_sym_null] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1693), + [aux_sym__val_number_decimal_token2] = ACTIONS(1693), + [aux_sym__val_number_decimal_token3] = ACTIONS(1693), + [aux_sym__val_number_decimal_token4] = ACTIONS(1693), + [aux_sym__val_number_token1] = ACTIONS(1695), + [aux_sym__val_number_token2] = ACTIONS(1695), + [aux_sym__val_number_token3] = ACTIONS(1695), + [aux_sym__val_number_token4] = ACTIONS(1695), + [aux_sym__val_number_token5] = ACTIONS(1695), + [aux_sym__val_number_token6] = ACTIONS(1695), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [sym__str_single_quotes] = ACTIONS(1695), + [sym__str_back_ticks] = ACTIONS(1695), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [aux_sym_unquoted_token1] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1695), }, [1326] = { - [sym__val_range] = STATE(8251), - [sym__value] = STATE(1789), - [sym_val_nothing] = STATE(1803), - [sym_val_bool] = STATE(1697), - [sym_val_variable] = STATE(1803), - [sym_val_number] = STATE(1803), - [sym__val_number_decimal] = STATE(1378), - [sym__val_number] = STATE(1834), - [sym_val_duration] = STATE(1803), - [sym_val_filesize] = STATE(1803), - [sym_val_binary] = STATE(1803), - [sym_val_string] = STATE(1803), - [sym__raw_str] = STATE(1862), - [sym__str_double_quotes] = STATE(1862), - [sym_val_interpolated] = STATE(1803), - [sym__inter_single_quotes] = STATE(1837), - [sym__inter_double_quotes] = STATE(1838), - [sym_val_list] = STATE(1803), - [sym_val_record] = STATE(1803), - [sym_val_table] = STATE(1803), - [sym_val_closure] = STATE(1803), - [sym_unquoted] = STATE(1790), - [sym__unquoted_anonymous_prefix] = STATE(8625), [sym_comment] = STATE(1326), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(4513), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4515), - [anon_sym_DOT_DOT_LT] = ACTIONS(4515), - [anon_sym_null] = ACTIONS(4517), - [anon_sym_true] = ACTIONS(4519), - [anon_sym_false] = ACTIONS(4519), - [aux_sym__val_number_decimal_token1] = ACTIONS(4521), - [aux_sym__val_number_decimal_token2] = ACTIONS(4523), - [aux_sym__val_number_decimal_token3] = ACTIONS(4525), - [aux_sym__val_number_decimal_token4] = ACTIONS(4527), - [aux_sym__val_number_token1] = ACTIONS(2677), - [aux_sym__val_number_token2] = ACTIONS(2677), - [aux_sym__val_number_token3] = ACTIONS(2677), - [aux_sym__val_number_token4] = ACTIONS(4529), - [aux_sym__val_number_token5] = ACTIONS(4529), - [aux_sym__val_number_token6] = ACTIONS(4529), - [anon_sym_0b] = ACTIONS(2681), - [anon_sym_0o] = ACTIONS(2683), - [anon_sym_0x] = ACTIONS(2683), - [sym_val_date] = ACTIONS(4531), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym__str_single_quotes] = ACTIONS(2689), - [sym__str_back_ticks] = ACTIONS(2689), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2691), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2693), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4533), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2701), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4102), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1327] = { - [sym__val_range] = STATE(8380), - [sym__value] = STATE(6186), - [sym_val_nothing] = STATE(6189), - [sym_val_bool] = STATE(6014), - [sym_val_variable] = STATE(6189), - [sym_val_number] = STATE(6189), - [sym__val_number_decimal] = STATE(5368), - [sym__val_number] = STATE(6103), - [sym_val_duration] = STATE(6189), - [sym_val_filesize] = STATE(6189), - [sym_val_binary] = STATE(6189), - [sym_val_string] = STATE(6189), - [sym__raw_str] = STATE(5815), - [sym__str_double_quotes] = STATE(5815), - [sym_val_interpolated] = STATE(6189), - [sym__inter_single_quotes] = STATE(6372), - [sym__inter_double_quotes] = STATE(6374), - [sym_val_list] = STATE(6189), - [sym_val_record] = STATE(6189), - [sym_val_table] = STATE(6189), - [sym_val_closure] = STATE(6189), - [sym_unquoted] = STATE(6188), - [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1327), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_DOLLAR] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [anon_sym_null] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [aux_sym__val_number_decimal_token1] = ACTIONS(4551), - [aux_sym__val_number_decimal_token2] = ACTIONS(4553), - [aux_sym__val_number_decimal_token3] = ACTIONS(4555), - [aux_sym__val_number_decimal_token4] = ACTIONS(4557), - [aux_sym__val_number_token1] = ACTIONS(4559), - [aux_sym__val_number_token2] = ACTIONS(4559), - [aux_sym__val_number_token3] = ACTIONS(4559), - [aux_sym__val_number_token4] = ACTIONS(4561), - [aux_sym__val_number_token5] = ACTIONS(4561), - [aux_sym__val_number_token6] = ACTIONS(4561), - [anon_sym_0b] = ACTIONS(4563), - [anon_sym_0o] = ACTIONS(4565), - [anon_sym_0x] = ACTIONS(4565), - [sym_val_date] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4569), - [sym__str_single_quotes] = ACTIONS(4571), - [sym__str_back_ticks] = ACTIONS(4571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4577), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4579), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_err_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_GT_PIPE] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1725), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [anon_sym_null] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym__val_number_decimal_token1] = ACTIONS(1723), + [aux_sym__val_number_decimal_token2] = ACTIONS(1725), + [aux_sym__val_number_decimal_token3] = ACTIONS(1725), + [aux_sym__val_number_decimal_token4] = ACTIONS(1725), + [aux_sym__val_number_token1] = ACTIONS(1725), + [aux_sym__val_number_token2] = ACTIONS(1725), + [aux_sym__val_number_token3] = ACTIONS(1725), + [aux_sym__val_number_token4] = ACTIONS(1725), + [aux_sym__val_number_token5] = ACTIONS(1725), + [aux_sym__val_number_token6] = ACTIONS(1725), + [anon_sym_0b] = ACTIONS(1723), + [sym_filesize_unit] = ACTIONS(1725), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_0o] = ACTIONS(1723), + [anon_sym_0x] = ACTIONS(1723), + [sym_val_date] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1725), + [anon_sym_out_GT_GT] = ACTIONS(1725), + [anon_sym_e_GT_GT] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), + [aux_sym_unquoted_token1] = ACTIONS(1723), + [aux_sym_unquoted_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1725), }, [1328] = { - [sym__expr_parenthesized_immediate] = STATE(1919), - [sym__immediate_decimal] = STATE(1720), - [sym_val_variable] = STATE(1919), + [sym__match_pattern_expression] = STATE(3134), + [sym__match_pattern_value] = STATE(3151), + [sym__match_pattern_list] = STATE(3152), + [sym__match_pattern_record] = STATE(3154), + [sym_expr_parenthesized] = STATE(2932), + [sym_val_range] = STATE(3151), + [sym__val_range] = STATE(7478), + [sym_val_nothing] = STATE(3156), + [sym_val_bool] = STATE(3060), + [sym_val_variable] = STATE(2899), + [sym_val_number] = STATE(3156), + [sym__val_number_decimal] = STATE(2706), + [sym__val_number] = STATE(3188), + [sym_val_duration] = STATE(3156), + [sym_val_filesize] = STATE(3156), + [sym_val_binary] = STATE(3156), + [sym_val_string] = STATE(3156), + [sym__raw_str] = STATE(3162), + [sym__str_double_quotes] = STATE(3162), + [sym_val_table] = STATE(3156), + [sym__unquoted_in_list] = STATE(3134), + [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(4233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [aux_sym__immediate_decimal_token1] = ACTIONS(4235), - [aux_sym__immediate_decimal_token3] = ACTIONS(4237), - [aux_sym__immediate_decimal_token4] = ACTIONS(4239), - [aux_sym__immediate_decimal_token5] = ACTIONS(4241), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1565), - [aux_sym__val_number_decimal_token3] = ACTIONS(1565), - [aux_sym__val_number_decimal_token4] = ACTIONS(1565), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1565), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1579), + [aux_sym__match_pattern_list_repeat1] = STATE(1328), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4460), + [anon_sym_DOLLAR] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_DOT_DOT] = ACTIONS(4469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4472), + [anon_sym_DOT_DOT_LT] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4475), + [anon_sym_true] = ACTIONS(4478), + [anon_sym_false] = ACTIONS(4478), + [aux_sym__val_number_decimal_token1] = ACTIONS(4481), + [aux_sym__val_number_decimal_token2] = ACTIONS(4484), + [aux_sym__val_number_decimal_token3] = ACTIONS(4487), + [aux_sym__val_number_decimal_token4] = ACTIONS(4490), + [aux_sym__val_number_token1] = ACTIONS(4493), + [aux_sym__val_number_token2] = ACTIONS(4493), + [aux_sym__val_number_token3] = ACTIONS(4493), + [aux_sym__val_number_token4] = ACTIONS(4496), + [aux_sym__val_number_token5] = ACTIONS(4496), + [aux_sym__val_number_token6] = ACTIONS(4496), + [anon_sym_0b] = ACTIONS(4499), + [anon_sym_0o] = ACTIONS(4502), + [anon_sym_0x] = ACTIONS(4502), + [sym_val_date] = ACTIONS(4505), + [anon_sym_DQUOTE] = ACTIONS(4508), + [sym__str_single_quotes] = ACTIONS(4511), + [sym__str_back_ticks] = ACTIONS(4511), + [anon_sym_err_GT] = ACTIONS(4514), + [anon_sym_out_GT] = ACTIONS(4514), + [anon_sym_e_GT] = ACTIONS(4514), + [anon_sym_o_GT] = ACTIONS(4514), + [anon_sym_err_PLUSout_GT] = ACTIONS(4514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4514), + [anon_sym_o_PLUSe_GT] = ACTIONS(4514), + [anon_sym_e_PLUSo_GT] = ACTIONS(4514), + [anon_sym_err_GT_GT] = ACTIONS(4517), + [anon_sym_out_GT_GT] = ACTIONS(4517), + [anon_sym_e_GT_GT] = ACTIONS(4517), + [anon_sym_o_GT_GT] = ACTIONS(4517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4517), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4520), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4523), }, [1329] = { - [sym__val_range] = STATE(8380), - [sym__value] = STATE(6298), - [sym_val_nothing] = STATE(6189), - [sym_val_bool] = STATE(6014), - [sym_val_variable] = STATE(6189), - [sym_val_number] = STATE(6189), - [sym__val_number_decimal] = STATE(5368), - [sym__val_number] = STATE(6103), - [sym_val_duration] = STATE(6189), - [sym_val_filesize] = STATE(6189), - [sym_val_binary] = STATE(6189), - [sym_val_string] = STATE(6189), - [sym__raw_str] = STATE(5815), - [sym__str_double_quotes] = STATE(5815), - [sym_val_interpolated] = STATE(6189), - [sym__inter_single_quotes] = STATE(6372), - [sym__inter_double_quotes] = STATE(6374), - [sym_val_list] = STATE(6189), - [sym_val_record] = STATE(6189), - [sym_val_table] = STATE(6189), - [sym_val_closure] = STATE(6189), - [sym_unquoted] = STATE(6304), - [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1329), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_DOLLAR] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [anon_sym_null] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [aux_sym__val_number_decimal_token1] = ACTIONS(4551), - [aux_sym__val_number_decimal_token2] = ACTIONS(4553), - [aux_sym__val_number_decimal_token3] = ACTIONS(4555), - [aux_sym__val_number_decimal_token4] = ACTIONS(4557), - [aux_sym__val_number_token1] = ACTIONS(4559), - [aux_sym__val_number_token2] = ACTIONS(4559), - [aux_sym__val_number_token3] = ACTIONS(4559), - [aux_sym__val_number_token4] = ACTIONS(4561), - [aux_sym__val_number_token5] = ACTIONS(4561), - [aux_sym__val_number_token6] = ACTIONS(4561), - [anon_sym_0b] = ACTIONS(4563), - [anon_sym_0o] = ACTIONS(4565), - [anon_sym_0x] = ACTIONS(4565), - [sym_val_date] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4569), - [sym__str_single_quotes] = ACTIONS(4571), - [sym__str_back_ticks] = ACTIONS(4571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4577), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4579), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [1330] = { - [sym__val_range] = STATE(8529), - [sym__value] = STATE(5829), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(5885), - [sym_val_variable] = STATE(3698), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(5070), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3508), - [sym__str_double_quotes] = STATE(3508), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(5830), - [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1330), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_DOLLAR] = ACTIONS(4105), - [anon_sym_LBRACE] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), - [anon_sym_DOT_DOT_LT] = ACTIONS(4111), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(4127), - [anon_sym_DQUOTE] = ACTIONS(4129), - [sym__str_single_quotes] = ACTIONS(4131), - [sym__str_back_ticks] = ACTIONS(4131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4133), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4526), + [aux_sym__immediate_decimal_token2] = ACTIONS(4528), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1331] = { - [sym__val_range] = STATE(8380), - [sym__value] = STATE(6331), - [sym_val_nothing] = STATE(6189), - [sym_val_bool] = STATE(6014), - [sym_val_variable] = STATE(6189), - [sym_val_number] = STATE(6189), - [sym__val_number_decimal] = STATE(5368), - [sym__val_number] = STATE(6103), - [sym_val_duration] = STATE(6189), - [sym_val_filesize] = STATE(6189), - [sym_val_binary] = STATE(6189), - [sym_val_string] = STATE(6189), - [sym__raw_str] = STATE(5815), - [sym__str_double_quotes] = STATE(5815), - [sym_val_interpolated] = STATE(6189), - [sym__inter_single_quotes] = STATE(6372), - [sym__inter_double_quotes] = STATE(6374), - [sym_val_list] = STATE(6189), - [sym_val_record] = STATE(6189), - [sym_val_table] = STATE(6189), - [sym_val_closure] = STATE(6189), - [sym_unquoted] = STATE(6332), - [sym__unquoted_anonymous_prefix] = STATE(8265), [sym_comment] = STATE(1331), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_DOLLAR] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [anon_sym_null] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [aux_sym__val_number_decimal_token1] = ACTIONS(4551), - [aux_sym__val_number_decimal_token2] = ACTIONS(4553), - [aux_sym__val_number_decimal_token3] = ACTIONS(4555), - [aux_sym__val_number_decimal_token4] = ACTIONS(4557), - [aux_sym__val_number_token1] = ACTIONS(4559), - [aux_sym__val_number_token2] = ACTIONS(4559), - [aux_sym__val_number_token3] = ACTIONS(4559), - [aux_sym__val_number_token4] = ACTIONS(4561), - [aux_sym__val_number_token5] = ACTIONS(4561), - [aux_sym__val_number_token6] = ACTIONS(4561), - [anon_sym_0b] = ACTIONS(4563), - [anon_sym_0o] = ACTIONS(4565), - [anon_sym_0x] = ACTIONS(4565), - [sym_val_date] = ACTIONS(4567), - [anon_sym_DQUOTE] = ACTIONS(4569), - [sym__str_single_quotes] = ACTIONS(4571), - [sym__str_back_ticks] = ACTIONS(4571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4575), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(4577), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4579), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(4530), + [aux_sym__immediate_decimal_token2] = ACTIONS(4532), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1332] = { - [sym__val_range] = STATE(8529), - [sym__value] = STATE(5883), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(5885), - [sym_val_variable] = STATE(3698), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(5070), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3508), - [sym__str_double_quotes] = STATE(3508), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(5886), - [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1332), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_DOLLAR] = ACTIONS(4105), - [anon_sym_LBRACE] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), - [anon_sym_DOT_DOT_LT] = ACTIONS(4111), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(4127), - [anon_sym_DQUOTE] = ACTIONS(4129), - [sym__str_single_quotes] = ACTIONS(4131), - [sym__str_back_ticks] = ACTIONS(4131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4133), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1333] = { - [sym__val_range] = STATE(8529), - [sym__value] = STATE(5825), - [sym_val_nothing] = STATE(3698), - [sym_val_bool] = STATE(5885), - [sym_val_variable] = STATE(3698), - [sym_val_number] = STATE(3698), - [sym__val_number_decimal] = STATE(5070), - [sym__val_number] = STATE(3724), - [sym_val_duration] = STATE(3698), - [sym_val_filesize] = STATE(3698), - [sym_val_binary] = STATE(3698), - [sym_val_string] = STATE(3698), - [sym__raw_str] = STATE(3508), - [sym__str_double_quotes] = STATE(3508), - [sym_val_interpolated] = STATE(3698), - [sym__inter_single_quotes] = STATE(3693), - [sym__inter_double_quotes] = STATE(3723), - [sym_val_list] = STATE(3698), - [sym_val_record] = STATE(3698), - [sym_val_table] = STATE(3698), - [sym_val_closure] = STATE(3698), - [sym_unquoted] = STATE(5833), - [sym__unquoted_anonymous_prefix] = STATE(8531), [sym_comment] = STATE(1333), - [anon_sym_LBRACK] = ACTIONS(4101), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym_DOLLAR] = ACTIONS(4105), - [anon_sym_LBRACE] = ACTIONS(4107), - [anon_sym_DOT_DOT] = ACTIONS(4109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4111), - [anon_sym_DOT_DOT_LT] = ACTIONS(4111), - [anon_sym_null] = ACTIONS(4113), - [anon_sym_true] = ACTIONS(4115), - [anon_sym_false] = ACTIONS(4115), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3393), - [aux_sym__val_number_token2] = ACTIONS(3393), - [aux_sym__val_number_token3] = ACTIONS(3393), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3397), - [anon_sym_0o] = ACTIONS(3399), - [anon_sym_0x] = ACTIONS(3399), - [sym_val_date] = ACTIONS(4127), - [anon_sym_DQUOTE] = ACTIONS(4129), - [sym__str_single_quotes] = ACTIONS(4131), - [sym__str_back_ticks] = ACTIONS(4131), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4133), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4534), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4536), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1334] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(6419), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6082), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(6441), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1334), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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_POUND] = ACTIONS(3), }, [1335] = { [sym_comment] = STATE(1335), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4581), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4421), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1336] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(6418), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6082), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(6420), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1336), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_GT2] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4538), + [anon_sym_and2] = ACTIONS(968), + [anon_sym_xor2] = ACTIONS(968), + [anon_sym_or2] = ACTIONS(968), + [anon_sym_not_DASHin2] = ACTIONS(968), + [anon_sym_starts_DASHwith2] = ACTIONS(968), + [anon_sym_ends_DASHwith2] = ACTIONS(968), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(968), + [anon_sym_STAR_STAR2] = ACTIONS(968), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(966), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_bit_DASHshl2] = ACTIONS(968), + [anon_sym_bit_DASHshr2] = ACTIONS(968), + [anon_sym_bit_DASHand2] = ACTIONS(968), + [anon_sym_bit_DASHxor2] = ACTIONS(968), + [anon_sym_bit_DASHor2] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_COLON2] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(251), }, [1337] = { - [sym__val_range] = STATE(8344), - [sym__value] = STATE(6428), - [sym_val_nothing] = STATE(2225), - [sym_val_bool] = STATE(8064), - [sym_val_variable] = STATE(2225), - [sym_val_number] = STATE(2225), - [sym__val_number_decimal] = STATE(6082), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(2225), - [sym_val_filesize] = STATE(2225), - [sym_val_binary] = STATE(2225), - [sym_val_string] = STATE(2225), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_val_interpolated] = STATE(2225), - [sym__inter_single_quotes] = STATE(2164), - [sym__inter_double_quotes] = STATE(2170), - [sym_val_list] = STATE(2225), - [sym_val_record] = STATE(2225), - [sym_val_table] = STATE(2225), - [sym_val_closure] = STATE(2225), - [sym_unquoted] = STATE(6429), - [sym__unquoted_anonymous_prefix] = STATE(8413), [sym_comment] = STATE(1337), - [anon_sym_LBRACK] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_DOLLAR] = ACTIONS(4509), - [anon_sym_LBRACE] = ACTIONS(3891), - [anon_sym_DOT_DOT] = ACTIONS(4315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4317), - [anon_sym_DOT_DOT_LT] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(3897), - [anon_sym_true] = ACTIONS(3899), - [anon_sym_false] = ACTIONS(3899), - [aux_sym__val_number_decimal_token1] = ACTIONS(3901), - [aux_sym__val_number_decimal_token2] = ACTIONS(3903), - [aux_sym__val_number_decimal_token3] = ACTIONS(3905), - [aux_sym__val_number_decimal_token4] = ACTIONS(3907), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(3909), - [aux_sym__val_number_token5] = ACTIONS(3909), - [aux_sym__val_number_token6] = ACTIONS(3909), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [1338] = { - [sym__val_range] = STATE(8417), - [sym__value] = STATE(5225), - [sym_val_nothing] = STATE(5064), - [sym_val_bool] = STATE(4848), - [sym_val_variable] = STATE(5064), - [sym_val_number] = STATE(5064), - [sym__val_number_decimal] = STATE(4388), - [sym__val_number] = STATE(5141), - [sym_val_duration] = STATE(5064), - [sym_val_filesize] = STATE(5064), - [sym_val_binary] = STATE(5064), - [sym_val_string] = STATE(5064), - [sym__raw_str] = STATE(4801), - [sym__str_double_quotes] = STATE(4801), - [sym_val_interpolated] = STATE(5064), - [sym__inter_single_quotes] = STATE(5066), - [sym__inter_double_quotes] = STATE(5068), - [sym_val_list] = STATE(5064), - [sym_val_record] = STATE(5064), - [sym_val_table] = STATE(5064), - [sym_val_closure] = STATE(5064), - [sym_unquoted] = STATE(5233), - [sym__unquoted_anonymous_prefix] = STATE(8674), + [sym_cell_path] = STATE(1484), + [sym_path] = STATE(1441), [sym_comment] = STATE(1338), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_DOLLAR] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_DOT_DOT] = ACTIONS(4383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4385), - [anon_sym_DOT_DOT_LT] = ACTIONS(4385), - [anon_sym_null] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2165), - [aux_sym__val_number_decimal_token2] = ACTIONS(4391), - [aux_sym__val_number_decimal_token3] = ACTIONS(4393), - [aux_sym__val_number_decimal_token4] = ACTIONS(4395), - [aux_sym__val_number_token1] = ACTIONS(4397), - [aux_sym__val_number_token2] = ACTIONS(4397), - [aux_sym__val_number_token3] = ACTIONS(4397), - [aux_sym__val_number_token4] = ACTIONS(4399), - [aux_sym__val_number_token5] = ACTIONS(4399), - [aux_sym__val_number_token6] = ACTIONS(4399), - [anon_sym_0b] = ACTIONS(2175), - [anon_sym_0o] = ACTIONS(2177), - [anon_sym_0x] = ACTIONS(2177), - [sym_val_date] = ACTIONS(4401), - [anon_sym_DQUOTE] = ACTIONS(4403), - [sym__str_single_quotes] = ACTIONS(4405), - [sym__str_back_ticks] = ACTIONS(4405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4407), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4409), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2195), + [aux_sym_cell_path_repeat1] = STATE(1342), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4443), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), }, [1339] = { - [sym_cell_path] = STATE(1572), - [sym_path] = STATE(1499), [sym_comment] = STATE(1339), - [aux_sym_cell_path_repeat1] = STATE(1399), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1765), + [ts_builtin_sym_end] = ACTIONS(2253), + [anon_sym_STAR_STAR] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_mod] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_bit_DASHshl] = ACTIONS(3182), + [anon_sym_bit_DASHshr] = ACTIONS(3182), + [anon_sym_EQ_TILDE] = ACTIONS(3182), + [anon_sym_BANG_TILDE] = ACTIONS(3182), + [anon_sym_bit_DASHand] = ACTIONS(3182), + [anon_sym_bit_DASHxor] = ACTIONS(3182), + [anon_sym_bit_DASHor] = ACTIONS(3182), + [anon_sym_and] = ACTIONS(3182), + [anon_sym_xor] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_not_DASHin] = ACTIONS(3182), + [anon_sym_starts_DASHwith] = ACTIONS(3182), + [anon_sym_ends_DASHwith] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_GT_EQ] = ACTIONS(3182), + [aux_sym_cmd_identifier_token41] = ACTIONS(3186), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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_POUND] = ACTIONS(3), }, [1340] = { + [sym_cell_path] = STATE(1480), + [sym_path] = STATE(1441), [sym_comment] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(4585), - [aux_sym__immediate_decimal_token2] = ACTIONS(4587), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [aux_sym_cell_path_repeat1] = STATE(1342), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_DOT2] = ACTIONS(4443), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token1] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1763), }, [1341] = { + [sym__expr_parenthesized_immediate] = STATE(1890), + [sym__immediate_decimal] = STATE(1911), + [sym_val_variable] = STATE(1890), [sym_comment] = STATE(1341), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4143), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1691), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(4141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), + [anon_sym_DOT_DOT_LT] = ACTIONS(1691), + [aux_sym__immediate_decimal_token1] = ACTIONS(4423), + [aux_sym__immediate_decimal_token3] = ACTIONS(4425), + [aux_sym__immediate_decimal_token4] = ACTIONS(4427), + [aux_sym__immediate_decimal_token5] = ACTIONS(4429), + [anon_sym_null] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [aux_sym__val_number_decimal_token1] = ACTIONS(1689), + [aux_sym__val_number_decimal_token2] = ACTIONS(1689), + [aux_sym__val_number_decimal_token3] = ACTIONS(1689), + [aux_sym__val_number_decimal_token4] = ACTIONS(1689), + [aux_sym__val_number_token1] = ACTIONS(1691), + [aux_sym__val_number_token2] = ACTIONS(1691), + [aux_sym__val_number_token3] = ACTIONS(1691), + [aux_sym__val_number_token4] = ACTIONS(1691), + [aux_sym__val_number_token5] = ACTIONS(1691), + [aux_sym__val_number_token6] = ACTIONS(1691), + [anon_sym_0b] = ACTIONS(1689), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [sym__str_single_quotes] = ACTIONS(1691), + [sym__str_back_ticks] = ACTIONS(1691), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1691), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [aux_sym_unquoted_token1] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1691), }, [1342] = { + [sym_path] = STATE(1441), [sym_comment] = STATE(1342), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4591), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(1374), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_null] = ACTIONS(950), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(948), + [anon_sym_0o] = ACTIONS(948), + [anon_sym_0x] = ACTIONS(948), + [sym_val_date] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4443), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [aux_sym_unquoted_token1] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), }, [1343] = { - [sym__match_pattern_expression] = STATE(3251), - [sym__match_pattern_value] = STATE(3269), - [sym__match_pattern_list] = STATE(3270), - [sym__match_pattern_record] = STATE(3271), - [sym_expr_parenthesized] = STATE(3049), - [sym_val_range] = STATE(3269), - [sym__val_range] = STATE(8495), - [sym_val_nothing] = STATE(3273), - [sym_val_bool] = STATE(3216), - [sym_val_variable] = STATE(3050), - [sym_val_number] = STATE(3273), - [sym__val_number_decimal] = STATE(2832), - [sym__val_number] = STATE(3264), - [sym_val_duration] = STATE(3273), - [sym_val_filesize] = STATE(3273), - [sym_val_binary] = STATE(3273), - [sym_val_string] = STATE(3273), - [sym__raw_str] = STATE(3279), - [sym__str_double_quotes] = STATE(3279), - [sym_val_table] = STATE(3273), - [sym__unquoted_in_list] = STATE(3251), - [sym__unquoted_anonymous_prefix] = STATE(8543), [sym_comment] = STATE(1343), - [aux_sym__match_pattern_list_repeat1] = STATE(1343), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_RBRACK] = ACTIONS(4596), - [anon_sym_LPAREN] = ACTIONS(4598), - [anon_sym_DOLLAR] = ACTIONS(4601), - [anon_sym_LBRACE] = ACTIONS(4604), - [anon_sym_DOT_DOT] = ACTIONS(4607), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4610), - [anon_sym_DOT_DOT_LT] = ACTIONS(4610), - [anon_sym_null] = ACTIONS(4613), - [anon_sym_true] = ACTIONS(4616), - [anon_sym_false] = ACTIONS(4616), - [aux_sym__val_number_decimal_token1] = ACTIONS(4619), - [aux_sym__val_number_decimal_token2] = ACTIONS(4622), - [aux_sym__val_number_decimal_token3] = ACTIONS(4625), - [aux_sym__val_number_decimal_token4] = ACTIONS(4628), - [aux_sym__val_number_token1] = ACTIONS(4631), - [aux_sym__val_number_token2] = ACTIONS(4631), - [aux_sym__val_number_token3] = ACTIONS(4631), - [aux_sym__val_number_token4] = ACTIONS(4634), - [aux_sym__val_number_token5] = ACTIONS(4634), - [aux_sym__val_number_token6] = ACTIONS(4634), - [anon_sym_0b] = ACTIONS(4637), - [anon_sym_0o] = ACTIONS(4640), - [anon_sym_0x] = ACTIONS(4640), - [sym_val_date] = ACTIONS(4643), - [anon_sym_DQUOTE] = ACTIONS(4646), - [sym__str_single_quotes] = ACTIONS(4649), - [sym__str_back_ticks] = ACTIONS(4649), - [anon_sym_err_GT] = ACTIONS(4652), - [anon_sym_out_GT] = ACTIONS(4652), - [anon_sym_e_GT] = ACTIONS(4652), - [anon_sym_o_GT] = ACTIONS(4652), - [anon_sym_err_PLUSout_GT] = ACTIONS(4652), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4652), - [anon_sym_o_PLUSe_GT] = ACTIONS(4652), - [anon_sym_e_PLUSo_GT] = ACTIONS(4652), - [anon_sym_err_GT_GT] = ACTIONS(4655), - [anon_sym_out_GT_GT] = ACTIONS(4655), - [anon_sym_e_GT_GT] = ACTIONS(4655), - [anon_sym_o_GT_GT] = ACTIONS(4655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4655), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4658), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4661), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1344] = { [sym_comment] = STATE(1344), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4664), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1345] = { [sym_comment] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(4540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1665), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1665), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(4544), + [sym_duration_unit] = ACTIONS(4546), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(4548), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), }, [1346] = { - [sym_path] = STATE(1413), [sym_comment] = STATE(1346), - [aux_sym_cell_path_repeat1] = STATE(1349), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(984), - [anon_sym_DASH_EQ] = ACTIONS(984), - [anon_sym_STAR_EQ] = ACTIONS(984), - [anon_sym_SLASH_EQ] = ACTIONS(984), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(982), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_err_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_GT_PIPE] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1725), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [anon_sym_null] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym__val_number_decimal_token1] = ACTIONS(1723), + [aux_sym__val_number_decimal_token2] = ACTIONS(1725), + [aux_sym__val_number_decimal_token3] = ACTIONS(1725), + [aux_sym__val_number_decimal_token4] = ACTIONS(1725), + [aux_sym__val_number_token1] = ACTIONS(1725), + [aux_sym__val_number_token2] = ACTIONS(1725), + [aux_sym__val_number_token3] = ACTIONS(1725), + [aux_sym__val_number_token4] = ACTIONS(1725), + [aux_sym__val_number_token5] = ACTIONS(1725), + [aux_sym__val_number_token6] = ACTIONS(1725), + [anon_sym_0b] = ACTIONS(1723), + [sym_filesize_unit] = ACTIONS(1725), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_0o] = ACTIONS(1723), + [anon_sym_0x] = ACTIONS(1723), + [sym_val_date] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1725), + [anon_sym_out_GT_GT] = ACTIONS(1725), + [anon_sym_e_GT_GT] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), + [aux_sym_unquoted_token1] = ACTIONS(1723), + [aux_sym_unquoted_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1725), }, [1347] = { [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4666), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1348] = { - [sym_cell_path] = STATE(1530), - [sym_path] = STATE(1499), [sym_comment] = STATE(1348), - [aux_sym_cell_path_repeat1] = STATE(1399), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_DOT_DOT_LT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(969), - [anon_sym_0o] = ACTIONS(969), - [anon_sym_0x] = ACTIONS(969), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [aux_sym_unquoted_token1] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1349] = { - [sym_path] = STATE(1413), [sym_comment] = STATE(1349), - [aux_sym_cell_path_repeat1] = STATE(1349), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(977), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4668), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_err_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_GT_PIPE] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1725), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [anon_sym_null] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym__val_number_decimal_token1] = ACTIONS(1723), + [aux_sym__val_number_decimal_token2] = ACTIONS(1725), + [aux_sym__val_number_decimal_token3] = ACTIONS(1725), + [aux_sym__val_number_decimal_token4] = ACTIONS(1725), + [aux_sym__val_number_token1] = ACTIONS(1725), + [aux_sym__val_number_token2] = ACTIONS(1725), + [aux_sym__val_number_token3] = ACTIONS(1725), + [aux_sym__val_number_token4] = ACTIONS(1725), + [aux_sym__val_number_token5] = ACTIONS(1725), + [aux_sym__val_number_token6] = ACTIONS(1725), + [anon_sym_0b] = ACTIONS(1723), + [sym_filesize_unit] = ACTIONS(1725), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_0o] = ACTIONS(1723), + [anon_sym_0x] = ACTIONS(1723), + [sym_val_date] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1725), + [anon_sym_out_GT_GT] = ACTIONS(1725), + [anon_sym_e_GT_GT] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), + [aux_sym_unquoted_token1] = ACTIONS(1723), + [aux_sym_unquoted_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1725), }, [1350] = { + [sym_cell_path] = STATE(1557), + [sym_path] = STATE(1524), [sym_comment] = STATE(1350), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [aux_sym_cell_path_repeat1] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4550), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), }, [1351] = { + [sym__expr_parenthesized_immediate] = STATE(1880), + [sym__immediate_decimal] = STATE(1884), + [sym_val_variable] = STATE(1880), [sym_comment] = STATE(1351), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(4554), + [aux_sym__immediate_decimal_token1] = ACTIONS(4556), + [aux_sym__immediate_decimal_token3] = ACTIONS(4556), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(251), }, [1352] = { + [sym_cell_path] = STATE(1610), + [sym_path] = STATE(1510), [sym_comment] = STATE(1352), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_EQ_GT] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_COLON2] = ACTIONS(1763), + [anon_sym_DOT2] = ACTIONS(4562), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(251), }, [1353] = { - [sym__expr_parenthesized_immediate] = STATE(1949), - [sym__immediate_decimal] = STATE(1952), - [sym_val_variable] = STATE(1949), + [sym_path] = STATE(1428), [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_LPAREN2] = ACTIONS(4233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4671), - [aux_sym__immediate_decimal_token3] = ACTIONS(4673), - [aux_sym__immediate_decimal_token4] = ACTIONS(4675), - [aux_sym__immediate_decimal_token5] = ACTIONS(4677), - [anon_sym_null] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym__val_number_decimal_token1] = ACTIONS(1739), - [aux_sym__val_number_decimal_token2] = ACTIONS(1739), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1739), - [aux_sym__val_number_token1] = ACTIONS(1741), - [aux_sym__val_number_token2] = ACTIONS(1741), - [aux_sym__val_number_token3] = ACTIONS(1741), - [aux_sym__val_number_token4] = ACTIONS(1741), - [aux_sym__val_number_token5] = ACTIONS(1741), - [aux_sym__val_number_token6] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1739), - [anon_sym_0o] = ACTIONS(1739), - [anon_sym_0x] = ACTIONS(1739), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [aux_sym_unquoted_token1] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1741), + [aux_sym_cell_path_repeat1] = STATE(1358), + [ts_builtin_sym_end] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_PLUS_EQ] = ACTIONS(950), + [anon_sym_DASH_EQ] = ACTIONS(950), + [anon_sym_STAR_EQ] = ACTIONS(950), + [anon_sym_SLASH_EQ] = ACTIONS(950), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4453), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(251), }, [1354] = { - [sym_path] = STATE(1425), + [sym__match_pattern] = STATE(7260), + [sym__match_pattern_expression] = STATE(6933), + [sym__match_pattern_value] = STATE(6936), + [sym__match_pattern_list] = STATE(6937), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5763), + [sym_val_range] = STATE(6936), + [sym__val_range] = STATE(7459), + [sym_val_nothing] = STATE(6945), + [sym_val_bool] = STATE(6928), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6945), + [sym__val_number_decimal] = STATE(5372), + [sym__val_number] = STATE(1660), + [sym_val_duration] = STATE(6945), + [sym_val_filesize] = STATE(6945), + [sym_val_binary] = STATE(6945), + [sym_val_string] = STATE(6945), + [sym__raw_str] = STATE(1427), + [sym__str_double_quotes] = STATE(1427), + [sym_val_table] = STATE(6945), + [sym_unquoted] = STATE(6948), + [sym__unquoted_anonymous_prefix] = STATE(7461), [sym_comment] = STATE(1354), - [aux_sym_cell_path_repeat1] = STATE(1355), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(984), - [anon_sym_DASH_EQ] = ACTIONS(984), - [anon_sym_STAR_EQ] = ACTIONS(984), - [anon_sym_SLASH_EQ] = ACTIONS(984), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(982), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4161), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [aux_sym_record_entry_token1] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_DOT_DOT] = ACTIONS(4564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4566), + [anon_sym_DOT_DOT_LT] = ACTIONS(4566), + [anon_sym_null] = ACTIONS(4568), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [aux_sym__val_number_decimal_token1] = ACTIONS(4572), + [aux_sym__val_number_decimal_token2] = ACTIONS(4574), + [aux_sym__val_number_decimal_token3] = ACTIONS(4576), + [aux_sym__val_number_decimal_token4] = ACTIONS(4578), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(4580), + [aux_sym__val_number_token5] = ACTIONS(4580), + [aux_sym__val_number_token6] = ACTIONS(4580), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(4582), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2674), + [anon_sym_out_GT_GT] = ACTIONS(2674), + [anon_sym_e_GT_GT] = ACTIONS(2674), + [anon_sym_o_GT_GT] = ACTIONS(2674), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2674), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2674), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2674), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2674), + [aux_sym_unquoted_token1] = ACTIONS(3212), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1355] = { - [sym_path] = STATE(1425), [sym_comment] = STATE(1355), - [aux_sym_cell_path_repeat1] = STATE(1355), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(977), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4679), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [aux_sym_record_entry_token1] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1356] = { + [sym_cell_path] = STATE(1608), + [sym_path] = STATE(1524), [sym_comment] = STATE(1356), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_DASH2] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_LT] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [aux_sym__val_number_token4] = ACTIONS(1763), + [aux_sym__val_number_token5] = ACTIONS(1763), + [aux_sym__val_number_token6] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_DOT2] = ACTIONS(4550), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [aux_sym_unquoted_token1] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1763), }, [1357] = { [sym_comment] = STATE(1357), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_GT2] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_STAR2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(990), + [anon_sym_xor2] = ACTIONS(990), + [anon_sym_or2] = ACTIONS(990), + [anon_sym_not_DASHin2] = ACTIONS(990), + [anon_sym_starts_DASHwith2] = ACTIONS(990), + [anon_sym_ends_DASHwith2] = ACTIONS(990), + [anon_sym_EQ_EQ2] = ACTIONS(990), + [anon_sym_BANG_EQ2] = ACTIONS(990), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ2] = ACTIONS(990), + [anon_sym_GT_EQ2] = ACTIONS(990), + [anon_sym_EQ_TILDE2] = ACTIONS(990), + [anon_sym_BANG_TILDE2] = ACTIONS(990), + [anon_sym_STAR_STAR2] = ACTIONS(990), + [anon_sym_PLUS_PLUS2] = ACTIONS(988), + [anon_sym_SLASH2] = ACTIONS(988), + [anon_sym_mod2] = ACTIONS(990), + [anon_sym_SLASH_SLASH2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_bit_DASHshl2] = ACTIONS(990), + [anon_sym_bit_DASHshr2] = ACTIONS(990), + [anon_sym_bit_DASHand2] = ACTIONS(990), + [anon_sym_bit_DASHxor2] = ACTIONS(990), + [anon_sym_bit_DASHor2] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(251), }, [1358] = { + [sym_path] = STATE(1428), [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_mod] = ACTIONS(3209), - [anon_sym_SLASH_SLASH] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_bit_DASHshl] = ACTIONS(3209), - [anon_sym_bit_DASHshr] = ACTIONS(3209), - [anon_sym_EQ_TILDE] = ACTIONS(3209), - [anon_sym_BANG_TILDE] = ACTIONS(3209), - [anon_sym_bit_DASHand] = ACTIONS(3209), - [anon_sym_bit_DASHxor] = ACTIONS(3209), - [anon_sym_bit_DASHor] = ACTIONS(3209), - [anon_sym_and] = ACTIONS(3209), - [anon_sym_xor] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_not_DASHin] = ACTIONS(3209), - [anon_sym_starts_DASHwith] = ACTIONS(3209), - [anon_sym_ends_DASHwith] = ACTIONS(3209), - [anon_sym_EQ_EQ] = ACTIONS(3209), - [anon_sym_BANG_EQ] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3209), - [aux_sym_cmd_identifier_token41] = ACTIONS(3213), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1358), + [ts_builtin_sym_end] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(941), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4584), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(251), }, [1359] = { [sym_comment] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(2238), - [anon_sym_STAR_STAR] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_mod] = ACTIONS(3209), - [anon_sym_SLASH_SLASH] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_bit_DASHshl] = ACTIONS(3209), - [anon_sym_bit_DASHshr] = ACTIONS(3209), - [anon_sym_EQ_TILDE] = ACTIONS(3209), - [anon_sym_BANG_TILDE] = ACTIONS(3209), - [anon_sym_bit_DASHand] = ACTIONS(3209), - [anon_sym_bit_DASHxor] = ACTIONS(3209), - [anon_sym_bit_DASHor] = ACTIONS(3209), - [anon_sym_and] = ACTIONS(3209), - [anon_sym_xor] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3209), - [anon_sym_not_DASHin] = ACTIONS(3209), - [anon_sym_starts_DASHwith] = ACTIONS(3209), - [anon_sym_ends_DASHwith] = ACTIONS(3209), - [anon_sym_EQ_EQ] = ACTIONS(3209), - [anon_sym_BANG_EQ] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3209), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3209), - [aux_sym_cmd_identifier_token41] = ACTIONS(3213), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), }, [1360] = { - [sym__expr_parenthesized_immediate] = STATE(1917), - [sym__immediate_decimal] = STATE(1918), - [sym_val_variable] = STATE(1917), [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(4233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4671), - [aux_sym__immediate_decimal_token3] = ACTIONS(4673), - [aux_sym__immediate_decimal_token4] = ACTIONS(4675), - [aux_sym__immediate_decimal_token5] = ACTIONS(4677), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_GT2] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_STAR2] = ACTIONS(980), + [anon_sym_and2] = ACTIONS(982), + [anon_sym_xor2] = ACTIONS(982), + [anon_sym_or2] = ACTIONS(982), + [anon_sym_not_DASHin2] = ACTIONS(982), + [anon_sym_starts_DASHwith2] = ACTIONS(982), + [anon_sym_ends_DASHwith2] = ACTIONS(982), + [anon_sym_EQ_EQ2] = ACTIONS(982), + [anon_sym_BANG_EQ2] = ACTIONS(982), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ2] = ACTIONS(982), + [anon_sym_GT_EQ2] = ACTIONS(982), + [anon_sym_EQ_TILDE2] = ACTIONS(982), + [anon_sym_BANG_TILDE2] = ACTIONS(982), + [anon_sym_STAR_STAR2] = ACTIONS(982), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(980), + [anon_sym_mod2] = ACTIONS(982), + [anon_sym_SLASH_SLASH2] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_bit_DASHshl2] = ACTIONS(982), + [anon_sym_bit_DASHshr2] = ACTIONS(982), + [anon_sym_bit_DASHand2] = ACTIONS(982), + [anon_sym_bit_DASHxor2] = ACTIONS(982), + [anon_sym_bit_DASHor2] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), }, [1361] = { + [sym__expr_parenthesized_immediate] = STATE(1880), + [sym__immediate_decimal] = STATE(1736), + [sym_val_variable] = STATE(1880), [sym_comment] = STATE(1361), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(4587), + [aux_sym__immediate_decimal_token1] = ACTIONS(4556), + [aux_sym__immediate_decimal_token3] = ACTIONS(4556), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), }, [1362] = { - [sym__expr_parenthesized_immediate] = STATE(8062), [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT2] = ACTIONS(4682), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4684), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4684), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1687), - [sym_filesize_unit] = ACTIONS(4686), - [sym_duration_unit] = ACTIONS(4688), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1687), - [aux_sym_unquoted_token2] = ACTIONS(4690), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), - }, - [1363] = { - [sym_cell_path] = STATE(1535), - [sym_path] = STATE(1499), - [sym_comment] = STATE(1363), - [aux_sym_cell_path_repeat1] = STATE(1399), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1761), - [aux_sym__val_number_decimal_token3] = ACTIONS(1761), - [aux_sym__val_number_decimal_token4] = ACTIONS(1761), - [aux_sym__val_number_token1] = ACTIONS(1761), - [aux_sym__val_number_token2] = ACTIONS(1761), - [aux_sym__val_number_token3] = ACTIONS(1761), - [aux_sym__val_number_token4] = ACTIONS(1761), - [aux_sym__val_number_token5] = ACTIONS(1761), - [aux_sym__val_number_token6] = ACTIONS(1761), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym__str_single_quotes] = ACTIONS(1761), - [sym__str_back_ticks] = ACTIONS(1761), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1761), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1761), - }, - [1364] = { - [sym_comment] = STATE(1364), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1365] = { - [sym_comment] = STATE(1365), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_err_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_GT_PIPE] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1767), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [aux_sym__val_number_token4] = ACTIONS(1769), - [aux_sym__val_number_token5] = ACTIONS(1769), - [aux_sym__val_number_token6] = ACTIONS(1769), - [anon_sym_0b] = ACTIONS(1767), - [sym_filesize_unit] = ACTIONS(1769), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_0o] = ACTIONS(1767), - [anon_sym_0x] = ACTIONS(1767), - [sym_val_date] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1769), - [anon_sym_out_GT_GT] = ACTIONS(1769), - [anon_sym_e_GT_GT] = ACTIONS(1769), - [anon_sym_o_GT_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), - [aux_sym_unquoted_token1] = ACTIONS(1767), - [aux_sym_unquoted_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1769), - }, - [1366] = { - [sym_comment] = STATE(1366), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -217042,8 +210985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4692), - [aux_sym__immediate_decimal_token2] = ACTIONS(4694), + [aux_sym__immediate_decimal_token2] = ACTIONS(4589), [anon_sym_null] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1773), [anon_sym_false] = ACTIONS(1773), @@ -217087,733 +211029,2008 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, + [1363] = { + [sym_comment] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4536), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), + }, + [1364] = { + [sym_cell_path] = STATE(1619), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1364), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_GT2] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1719), + [anon_sym_in2] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_EQ_GT] = ACTIONS(1719), + [anon_sym_STAR2] = ACTIONS(1717), + [anon_sym_and2] = ACTIONS(1719), + [anon_sym_xor2] = ACTIONS(1719), + [anon_sym_or2] = ACTIONS(1719), + [anon_sym_not_DASHin2] = ACTIONS(1719), + [anon_sym_starts_DASHwith2] = ACTIONS(1719), + [anon_sym_ends_DASHwith2] = ACTIONS(1719), + [anon_sym_EQ_EQ2] = ACTIONS(1719), + [anon_sym_BANG_EQ2] = ACTIONS(1719), + [anon_sym_LT2] = ACTIONS(1717), + [anon_sym_LT_EQ2] = ACTIONS(1719), + [anon_sym_GT_EQ2] = ACTIONS(1719), + [anon_sym_EQ_TILDE2] = ACTIONS(1719), + [anon_sym_BANG_TILDE2] = ACTIONS(1719), + [anon_sym_STAR_STAR2] = ACTIONS(1719), + [anon_sym_PLUS_PLUS2] = ACTIONS(1719), + [anon_sym_SLASH2] = ACTIONS(1717), + [anon_sym_mod2] = ACTIONS(1719), + [anon_sym_SLASH_SLASH2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_bit_DASHshl2] = ACTIONS(1719), + [anon_sym_bit_DASHshr2] = ACTIONS(1719), + [anon_sym_bit_DASHand2] = ACTIONS(1719), + [anon_sym_bit_DASHxor2] = ACTIONS(1719), + [anon_sym_bit_DASHor2] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_COLON2] = ACTIONS(1719), + [anon_sym_DOT2] = ACTIONS(4562), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(251), + }, + [1365] = { + [sym__expr_parenthesized_immediate] = STATE(1878), + [sym__immediate_decimal] = STATE(1879), + [sym_val_variable] = STATE(1878), + [sym_comment] = STATE(1365), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(4591), + [aux_sym__immediate_decimal_token1] = ACTIONS(4556), + [aux_sym__immediate_decimal_token3] = ACTIONS(4556), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + }, + [1366] = { + [sym_comment] = STATE(1366), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), + }, [1367] = { - [sym_cell_path] = STATE(1508), - [sym_path] = STATE(1482), + [sym_cell_path] = STATE(1558), + [sym_path] = STATE(1524), [sym_comment] = STATE(1367), - [aux_sym_cell_path_repeat1] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(971), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(969), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4696), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1717), + [anon_sym_0o] = ACTIONS(1717), + [anon_sym_0x] = ACTIONS(1717), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_DOT2] = ACTIONS(4550), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1719), }, [1368] = { - [sym__expr_parenthesized_immediate] = STATE(1954), - [sym__immediate_decimal] = STATE(1955), - [sym_val_variable] = STATE(1954), [sym_comment] = STATE(1368), - [ts_builtin_sym_end] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_DASH_DASH] = ACTIONS(1745), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_LPAREN2] = ACTIONS(4233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [aux_sym__immediate_decimal_token1] = ACTIONS(4671), - [aux_sym__immediate_decimal_token3] = ACTIONS(4673), - [aux_sym__immediate_decimal_token4] = ACTIONS(4675), - [aux_sym__immediate_decimal_token5] = ACTIONS(4677), - [anon_sym_null] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1743), - [aux_sym__val_number_decimal_token3] = ACTIONS(1743), - [aux_sym__val_number_decimal_token4] = ACTIONS(1743), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [aux_sym__val_number_token4] = ACTIONS(1745), - [aux_sym__val_number_token5] = ACTIONS(1745), - [aux_sym__val_number_token6] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1743), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [aux_sym_unquoted_token1] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4593), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4595), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1369] = { [sym_comment] = STATE(1369), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(4597), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1370] = { - [sym__expr_parenthesized_immediate] = STATE(1947), - [sym__immediate_decimal] = STATE(1948), - [sym_val_variable] = STATE(1947), [sym_comment] = STATE(1370), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(4231), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(4233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), - [anon_sym_DOT_DOT_LT] = ACTIONS(1685), - [aux_sym__immediate_decimal_token1] = ACTIONS(4671), - [aux_sym__immediate_decimal_token3] = ACTIONS(4673), - [aux_sym__immediate_decimal_token4] = ACTIONS(4675), - [aux_sym__immediate_decimal_token5] = ACTIONS(4677), - [anon_sym_null] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [aux_sym__val_number_decimal_token1] = ACTIONS(1677), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1685), - [aux_sym__val_number_token2] = ACTIONS(1685), - [aux_sym__val_number_token3] = ACTIONS(1685), - [aux_sym__val_number_token4] = ACTIONS(1685), - [aux_sym__val_number_token5] = ACTIONS(1685), - [aux_sym__val_number_token6] = ACTIONS(1685), - [anon_sym_0b] = ACTIONS(1677), - [anon_sym_0o] = ACTIONS(1677), - [anon_sym_0x] = ACTIONS(1677), - [sym_val_date] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [sym__str_single_quotes] = ACTIONS(1685), - [sym__str_back_ticks] = ACTIONS(1685), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1685), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1685), - [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(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), - [aux_sym_unquoted_token1] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1685), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1371] = { [sym_comment] = STATE(1371), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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_POUND] = ACTIONS(3), }, [1372] = { - [sym__expr_parenthesized_immediate] = STATE(1914), - [sym__immediate_decimal] = STATE(1915), - [sym_val_variable] = STATE(1914), [sym_comment] = STATE(1372), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4702), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4706), - [aux_sym__immediate_decimal_token1] = ACTIONS(4708), - [aux_sym__immediate_decimal_token3] = ACTIONS(4708), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), }, [1373] = { [sym_comment] = STATE(1373), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4599), + [aux_sym__immediate_decimal_token2] = ACTIONS(4601), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1374] = { - [sym_cell_path] = STATE(1609), - [sym_path] = STATE(1533), + [sym_path] = STATE(1441), [sym_comment] = STATE(1374), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1765), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1765), + [aux_sym_cell_path_repeat1] = STATE(1374), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_DOT_DOT_LT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_null] = ACTIONS(943), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(943), + [aux_sym__val_number_token5] = ACTIONS(943), + [aux_sym__val_number_token6] = ACTIONS(943), + [anon_sym_0b] = ACTIONS(941), + [anon_sym_0o] = ACTIONS(941), + [anon_sym_0x] = ACTIONS(941), + [sym_val_date] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4603), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [aux_sym_unquoted_token1] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), }, [1375] = { + [sym__expr_parenthesized_immediate] = STATE(2041), + [sym__immediate_decimal] = STATE(2042), + [sym_val_variable] = STATE(2041), [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_RPAREN] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4606), + [aux_sym__immediate_decimal_token3] = ACTIONS(4606), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(251), }, [1376] = { [sym_comment] = STATE(1376), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1377] = { [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(1773), + [ts_builtin_sym_end] = ACTIONS(954), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_PLUS_EQ] = ACTIONS(954), + [anon_sym_DASH_EQ] = ACTIONS(954), + [anon_sym_STAR_EQ] = ACTIONS(954), + [anon_sym_SLASH_EQ] = ACTIONS(954), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_GT2] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_STAR2] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4608), + [anon_sym_and2] = ACTIONS(954), + [anon_sym_xor2] = ACTIONS(954), + [anon_sym_or2] = ACTIONS(954), + [anon_sym_not_DASHin2] = ACTIONS(954), + [anon_sym_starts_DASHwith2] = ACTIONS(954), + [anon_sym_ends_DASHwith2] = ACTIONS(954), + [anon_sym_EQ_EQ2] = ACTIONS(954), + [anon_sym_BANG_EQ2] = ACTIONS(954), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ2] = ACTIONS(954), + [anon_sym_GT_EQ2] = ACTIONS(954), + [anon_sym_EQ_TILDE2] = ACTIONS(954), + [anon_sym_BANG_TILDE2] = ACTIONS(954), + [anon_sym_STAR_STAR2] = ACTIONS(954), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(952), + [anon_sym_mod2] = ACTIONS(954), + [anon_sym_SLASH_SLASH2] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_bit_DASHshl2] = ACTIONS(954), + [anon_sym_bit_DASHshr2] = ACTIONS(954), + [anon_sym_bit_DASHand2] = ACTIONS(954), + [anon_sym_bit_DASHxor2] = ACTIONS(954), + [anon_sym_bit_DASHor2] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(251), + }, + [1378] = { + [sym_comment] = STATE(1378), + [ts_builtin_sym_end] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_GT2] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4610), + [anon_sym_and2] = ACTIONS(968), + [anon_sym_xor2] = ACTIONS(968), + [anon_sym_or2] = ACTIONS(968), + [anon_sym_not_DASHin2] = ACTIONS(968), + [anon_sym_starts_DASHwith2] = ACTIONS(968), + [anon_sym_ends_DASHwith2] = ACTIONS(968), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(968), + [anon_sym_STAR_STAR2] = ACTIONS(968), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(966), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_bit_DASHshl2] = ACTIONS(968), + [anon_sym_bit_DASHshr2] = ACTIONS(968), + [anon_sym_bit_DASHand2] = ACTIONS(968), + [anon_sym_bit_DASHxor2] = ACTIONS(968), + [anon_sym_bit_DASHor2] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(251), + }, + [1379] = { + [sym_comment] = STATE(1379), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), + }, + [1380] = { + [sym__expr_parenthesized_immediate] = STATE(2089), + [sym__immediate_decimal] = STATE(1892), + [sym_val_variable] = STATE(2089), + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(4616), + [aux_sym__immediate_decimal_token1] = ACTIONS(4618), + [aux_sym__immediate_decimal_token3] = ACTIONS(4618), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + }, + [1381] = { + [sym_cell_path] = STATE(1703), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1381), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(937), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(937), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4562), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(251), + }, + [1382] = { + [sym_comment] = STATE(1382), + [ts_builtin_sym_end] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_GT2] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_STAR2] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(978), + [anon_sym_xor2] = ACTIONS(978), + [anon_sym_or2] = ACTIONS(978), + [anon_sym_not_DASHin2] = ACTIONS(978), + [anon_sym_starts_DASHwith2] = ACTIONS(978), + [anon_sym_ends_DASHwith2] = ACTIONS(978), + [anon_sym_EQ_EQ2] = ACTIONS(978), + [anon_sym_BANG_EQ2] = ACTIONS(978), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ2] = ACTIONS(978), + [anon_sym_GT_EQ2] = ACTIONS(978), + [anon_sym_EQ_TILDE2] = ACTIONS(978), + [anon_sym_BANG_TILDE2] = ACTIONS(978), + [anon_sym_STAR_STAR2] = ACTIONS(978), + [anon_sym_PLUS_PLUS2] = ACTIONS(976), + [anon_sym_SLASH2] = ACTIONS(976), + [anon_sym_mod2] = ACTIONS(978), + [anon_sym_SLASH_SLASH2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_bit_DASHshl2] = ACTIONS(978), + [anon_sym_bit_DASHshr2] = ACTIONS(978), + [anon_sym_bit_DASHand2] = ACTIONS(978), + [anon_sym_bit_DASHxor2] = ACTIONS(978), + [anon_sym_bit_DASHor2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(251), + }, + [1383] = { + [sym__expr_parenthesized_immediate] = STATE(2026), + [sym__immediate_decimal] = STATE(2106), + [sym_val_variable] = STATE(2026), + [sym_comment] = STATE(1383), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(4606), + [aux_sym__immediate_decimal_token3] = ACTIONS(4606), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(251), + }, + [1384] = { + [sym_comment] = STATE(1384), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_GT2] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_STAR2] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(974), + [anon_sym_xor2] = ACTIONS(974), + [anon_sym_or2] = ACTIONS(974), + [anon_sym_not_DASHin2] = ACTIONS(974), + [anon_sym_starts_DASHwith2] = ACTIONS(974), + [anon_sym_ends_DASHwith2] = ACTIONS(974), + [anon_sym_EQ_EQ2] = ACTIONS(974), + [anon_sym_BANG_EQ2] = ACTIONS(974), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ2] = ACTIONS(974), + [anon_sym_GT_EQ2] = ACTIONS(974), + [anon_sym_EQ_TILDE2] = ACTIONS(974), + [anon_sym_BANG_TILDE2] = ACTIONS(974), + [anon_sym_STAR_STAR2] = ACTIONS(974), + [anon_sym_PLUS_PLUS2] = ACTIONS(972), + [anon_sym_SLASH2] = ACTIONS(972), + [anon_sym_mod2] = ACTIONS(974), + [anon_sym_SLASH_SLASH2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_bit_DASHshl2] = ACTIONS(974), + [anon_sym_bit_DASHshr2] = ACTIONS(974), + [anon_sym_bit_DASHand2] = ACTIONS(974), + [anon_sym_bit_DASHxor2] = ACTIONS(974), + [anon_sym_bit_DASHor2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(251), + }, + [1385] = { + [sym__expr_parenthesized_immediate] = STATE(2026), + [sym__immediate_decimal] = STATE(2123), + [sym_val_variable] = STATE(2026), + [sym_comment] = STATE(1385), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(4624), + [aux_sym__immediate_decimal_token3] = ACTIONS(4624), + [aux_sym__immediate_decimal_token4] = ACTIONS(4626), + [aux_sym__immediate_decimal_token5] = ACTIONS(4628), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + }, + [1386] = { + [sym_comment] = STATE(1386), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = 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(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_in2] = ACTIONS(2249), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2249), + [anon_sym_xor2] = ACTIONS(2249), + [anon_sym_or2] = ACTIONS(2249), + [anon_sym_not_DASHin2] = ACTIONS(2249), + [anon_sym_starts_DASHwith2] = ACTIONS(2249), + [anon_sym_ends_DASHwith2] = ACTIONS(2249), + [anon_sym_EQ_EQ2] = ACTIONS(2249), + [anon_sym_BANG_EQ2] = ACTIONS(2249), + [anon_sym_LT2] = ACTIONS(2249), + [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_STAR_STAR2] = ACTIONS(2249), + [anon_sym_PLUS_PLUS2] = ACTIONS(2249), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2249), + [anon_sym_SLASH_SLASH2] = ACTIONS(2249), + [anon_sym_PLUS2] = ACTIONS(2249), + [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_POUND] = ACTIONS(3), + }, + [1387] = { + [sym_comment] = STATE(1387), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = 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(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_in2] = ACTIONS(2257), + [anon_sym_STAR2] = ACTIONS(2257), + [anon_sym_and2] = ACTIONS(2257), + [anon_sym_xor2] = ACTIONS(2257), + [anon_sym_or2] = ACTIONS(2257), + [anon_sym_not_DASHin2] = ACTIONS(2257), + [anon_sym_starts_DASHwith2] = ACTIONS(2257), + [anon_sym_ends_DASHwith2] = ACTIONS(2257), + [anon_sym_EQ_EQ2] = ACTIONS(2257), + [anon_sym_BANG_EQ2] = ACTIONS(2257), + [anon_sym_LT2] = ACTIONS(2257), + [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_STAR_STAR2] = ACTIONS(2257), + [anon_sym_PLUS_PLUS2] = ACTIONS(2257), + [anon_sym_SLASH2] = ACTIONS(2257), + [anon_sym_mod2] = ACTIONS(2257), + [anon_sym_SLASH_SLASH2] = ACTIONS(2257), + [anon_sym_PLUS2] = ACTIONS(2257), + [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_POUND] = ACTIONS(3), + }, + [1388] = { + [sym__expr_parenthesized_immediate] = STATE(2043), + [sym__immediate_decimal] = STATE(2136), + [sym_val_variable] = STATE(2043), + [sym_comment] = STATE(1388), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_in2] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1617), + [anon_sym_and2] = ACTIONS(1619), + [anon_sym_xor2] = ACTIONS(1619), + [anon_sym_or2] = ACTIONS(1619), + [anon_sym_not_DASHin2] = ACTIONS(1619), + [anon_sym_starts_DASHwith2] = ACTIONS(1619), + [anon_sym_ends_DASHwith2] = ACTIONS(1619), + [anon_sym_EQ_EQ2] = ACTIONS(1619), + [anon_sym_BANG_EQ2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1617), + [anon_sym_LT_EQ2] = ACTIONS(1619), + [anon_sym_GT_EQ2] = ACTIONS(1619), + [anon_sym_EQ_TILDE2] = ACTIONS(1619), + [anon_sym_BANG_TILDE2] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1617), + [anon_sym_mod2] = ACTIONS(1619), + [anon_sym_SLASH_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_bit_DASHshl2] = ACTIONS(1619), + [anon_sym_bit_DASHshr2] = ACTIONS(1619), + [anon_sym_bit_DASHand2] = ACTIONS(1619), + [anon_sym_bit_DASHxor2] = ACTIONS(1619), + [anon_sym_bit_DASHor2] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(4624), + [aux_sym__immediate_decimal_token3] = ACTIONS(4624), + [aux_sym__immediate_decimal_token4] = ACTIONS(4626), + [aux_sym__immediate_decimal_token5] = ACTIONS(4628), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + }, + [1389] = { + [sym_comment] = STATE(1389), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), + }, + [1390] = { + [sym_comment] = STATE(1390), + [sym__newline] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_err_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_GT_PIPE] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_DOT_DOT2] = ACTIONS(4630), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT] = ACTIONS(1819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4632), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1827), + [aux_sym__val_number_token5] = ACTIONS(1827), + [aux_sym__val_number_token6] = ACTIONS(1827), + [anon_sym_0b] = ACTIONS(1819), + [anon_sym_0o] = ACTIONS(1819), + [anon_sym_0x] = ACTIONS(1819), + [sym_val_date] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1827), + [anon_sym_err_GT] = ACTIONS(1819), + [anon_sym_out_GT] = ACTIONS(1819), + [anon_sym_e_GT] = ACTIONS(1819), + [anon_sym_o_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT] = ACTIONS(1819), + [anon_sym_err_GT_GT] = ACTIONS(1827), + [anon_sym_out_GT_GT] = ACTIONS(1827), + [anon_sym_e_GT_GT] = ACTIONS(1827), + [anon_sym_o_GT_GT] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1827), + [aux_sym_unquoted_token1] = ACTIONS(1819), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), + }, + [1391] = { + [sym_comment] = STATE(1391), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -217827,10 +213044,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), [anon_sym_LBRACK] = ACTIONS(1773), [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), [anon_sym_DOLLAR] = ACTIONS(1771), [anon_sym_DASH_DASH] = ACTIONS(1773), [anon_sym_DASH2] = ACTIONS(1771), [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_DOT_DOT2] = ACTIONS(1771), @@ -217838,8 +213057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4716), - [aux_sym__immediate_decimal_token2] = ACTIONS(4718), [anon_sym_null] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1773), [anon_sym_false] = ACTIONS(1773), @@ -217883,2739 +213100,1215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [1378] = { - [sym_comment] = STATE(1378), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(4720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4722), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1687), - [sym_filesize_unit] = ACTIONS(4724), - [sym_duration_unit] = ACTIONS(4726), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1687), - [aux_sym_unquoted_token2] = ACTIONS(4728), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), - }, - [1379] = { - [sym_path] = STATE(1482), - [sym_comment] = STATE(1379), - [aux_sym_cell_path_repeat1] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(984), - [anon_sym_DASH_EQ] = ACTIONS(984), - [anon_sym_STAR_EQ] = ACTIONS(984), - [anon_sym_SLASH_EQ] = ACTIONS(984), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(984), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(982), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4696), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - }, - [1380] = { - [sym_comment] = STATE(1380), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1381] = { - [sym_comment] = STATE(1381), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [sym__newline] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(4730), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [aux_sym_record_entry_token1] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), - }, - [1382] = { - [sym_comment] = STATE(1382), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4732), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [aux_sym_record_entry_token1] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), - }, - [1383] = { - [sym_comment] = STATE(1383), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_err_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_GT_PIPE] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1767), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [aux_sym__val_number_token4] = ACTIONS(1769), - [aux_sym__val_number_token5] = ACTIONS(1769), - [aux_sym__val_number_token6] = ACTIONS(1769), - [anon_sym_0b] = ACTIONS(1767), - [sym_filesize_unit] = ACTIONS(1769), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_0o] = ACTIONS(1767), - [anon_sym_0x] = ACTIONS(1767), - [sym_val_date] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1769), - [anon_sym_out_GT_GT] = ACTIONS(1769), - [anon_sym_e_GT_GT] = ACTIONS(1769), - [anon_sym_o_GT_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), - [aux_sym_unquoted_token1] = ACTIONS(1767), - [aux_sym_unquoted_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1769), - }, - [1384] = { - [sym__match_pattern] = STATE(8088), - [sym__match_pattern_expression] = STATE(7510), - [sym__match_pattern_value] = STATE(7539), - [sym__match_pattern_list] = STATE(7540), - [sym__match_pattern_record] = STATE(7543), - [sym_expr_parenthesized] = STATE(6127), - [sym_val_range] = STATE(7539), - [sym__val_range] = STATE(8344), - [sym_val_nothing] = STATE(7547), - [sym_val_bool] = STATE(7399), - [sym_val_variable] = STATE(6134), - [sym_val_number] = STATE(7547), - [sym__val_number_decimal] = STATE(5827), - [sym__val_number] = STATE(1860), - [sym_val_duration] = STATE(7547), - [sym_val_filesize] = STATE(7547), - [sym_val_binary] = STATE(7547), - [sym_val_string] = STATE(7547), - [sym__raw_str] = STATE(1868), - [sym__str_double_quotes] = STATE(1868), - [sym_val_table] = STATE(7547), - [sym_unquoted] = STATE(7555), - [sym__unquoted_anonymous_prefix] = STATE(8413), - [sym_comment] = STATE(1384), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_DOLLAR] = ACTIONS(3697), - [anon_sym_LBRACE] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(4734), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4736), - [anon_sym_DOT_DOT_LT] = ACTIONS(4736), - [anon_sym_null] = ACTIONS(4738), - [anon_sym_true] = ACTIONS(4740), - [anon_sym_false] = ACTIONS(4740), - [aux_sym__val_number_decimal_token1] = ACTIONS(4742), - [aux_sym__val_number_decimal_token2] = ACTIONS(4744), - [aux_sym__val_number_decimal_token3] = ACTIONS(4746), - [aux_sym__val_number_decimal_token4] = ACTIONS(4748), - [aux_sym__val_number_token1] = ACTIONS(431), - [aux_sym__val_number_token2] = ACTIONS(431), - [aux_sym__val_number_token3] = ACTIONS(431), - [aux_sym__val_number_token4] = ACTIONS(4750), - [aux_sym__val_number_token5] = ACTIONS(4750), - [aux_sym__val_number_token6] = ACTIONS(4750), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4752), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__str_single_quotes] = ACTIONS(437), - [sym__str_back_ticks] = ACTIONS(437), - [anon_sym_err_GT] = ACTIONS(2695), - [anon_sym_out_GT] = ACTIONS(2695), - [anon_sym_e_GT] = ACTIONS(2695), - [anon_sym_o_GT] = ACTIONS(2695), - [anon_sym_err_PLUSout_GT] = ACTIONS(2695), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2695), - [anon_sym_o_PLUSe_GT] = ACTIONS(2695), - [anon_sym_e_PLUSo_GT] = ACTIONS(2695), - [anon_sym_err_GT_GT] = ACTIONS(2697), - [anon_sym_out_GT_GT] = ACTIONS(2697), - [anon_sym_e_GT_GT] = ACTIONS(2697), - [anon_sym_o_GT_GT] = ACTIONS(2697), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2697), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2697), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2697), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2697), - [aux_sym_unquoted_token1] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(439), - }, - [1385] = { - [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), - }, - [1386] = { - [sym_comment] = STATE(1386), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [aux_sym_record_entry_token1] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - }, - [1387] = { - [sym_comment] = STATE(1387), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), - }, - [1388] = { - [sym_cell_path] = STATE(1650), - [sym_path] = STATE(1533), - [sym_comment] = STATE(1388), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(971), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_DOT_DOT_LT] = ACTIONS(969), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(969), - [anon_sym_0o] = ACTIONS(969), - [anon_sym_0x] = ACTIONS(969), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [aux_sym_unquoted_token1] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), - }, - [1389] = { - [sym_comment] = STATE(1389), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [aux_sym_record_entry_token1] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - }, - [1390] = { - [sym_comment] = STATE(1390), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), - }, - [1391] = { - [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4754), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, [1392] = { + [sym__expr_parenthesized_immediate] = STATE(2043), + [sym__immediate_decimal] = STATE(2110), + [sym_val_variable] = STATE(2043), [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(4756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4758), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_in2] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1617), + [anon_sym_and2] = ACTIONS(1619), + [anon_sym_xor2] = ACTIONS(1619), + [anon_sym_or2] = ACTIONS(1619), + [anon_sym_not_DASHin2] = ACTIONS(1619), + [anon_sym_starts_DASHwith2] = ACTIONS(1619), + [anon_sym_ends_DASHwith2] = ACTIONS(1619), + [anon_sym_EQ_EQ2] = ACTIONS(1619), + [anon_sym_BANG_EQ2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1617), + [anon_sym_LT_EQ2] = ACTIONS(1619), + [anon_sym_GT_EQ2] = ACTIONS(1619), + [anon_sym_EQ_TILDE2] = ACTIONS(1619), + [anon_sym_BANG_TILDE2] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1617), + [anon_sym_mod2] = ACTIONS(1619), + [anon_sym_SLASH_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_bit_DASHshl2] = ACTIONS(1619), + [anon_sym_bit_DASHshr2] = ACTIONS(1619), + [anon_sym_bit_DASHand2] = ACTIONS(1619), + [anon_sym_bit_DASHxor2] = ACTIONS(1619), + [anon_sym_bit_DASHor2] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(4606), + [aux_sym__immediate_decimal_token3] = ACTIONS(4606), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [anon_sym_POUND] = ACTIONS(251), }, [1393] = { [sym_comment] = STATE(1393), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4634), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1394] = { [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [sym__newline] = ACTIONS(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_LBRACK] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), }, [1395] = { [sym_comment] = STATE(1395), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_DOT_DOT2] = ACTIONS(4638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT] = ACTIONS(1794), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4640), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1794), + [anon_sym_0o] = ACTIONS(1794), + [anon_sym_0x] = ACTIONS(1794), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1794), + [anon_sym_out_GT] = ACTIONS(1794), + [anon_sym_e_GT] = ACTIONS(1794), + [anon_sym_o_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT] = ACTIONS(1794), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [aux_sym_unquoted_token1] = ACTIONS(1794), + [aux_sym_unquoted_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1802), }, [1396] = { [sym_comment] = STATE(1396), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(4760), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4642), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), }, [1397] = { [sym_comment] = STATE(1397), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1601), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_DOT_DOT] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [aux_sym__val_number_decimal_token1] = ACTIONS(1599), + [aux_sym__val_number_decimal_token2] = ACTIONS(1601), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1601), + [aux_sym__val_number_token1] = ACTIONS(1601), + [aux_sym__val_number_token2] = ACTIONS(1601), + [aux_sym__val_number_token3] = ACTIONS(1601), + [aux_sym__val_number_token4] = ACTIONS(1601), + [aux_sym__val_number_token5] = ACTIONS(1601), + [aux_sym__val_number_token6] = ACTIONS(1601), + [anon_sym_0b] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1601), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_0o] = ACTIONS(1599), + [anon_sym_0x] = ACTIONS(1599), + [sym_val_date] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(1601), + [sym__str_single_quotes] = ACTIONS(1601), + [sym__str_back_ticks] = ACTIONS(1601), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token1] = ACTIONS(1599), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1601), }, [1398] = { [sym_comment] = STATE(1398), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4591), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [ts_builtin_sym_end] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_GT2] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_STAR2] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_and2] = ACTIONS(964), + [anon_sym_xor2] = ACTIONS(964), + [anon_sym_or2] = ACTIONS(964), + [anon_sym_not_DASHin2] = ACTIONS(964), + [anon_sym_starts_DASHwith2] = ACTIONS(964), + [anon_sym_ends_DASHwith2] = ACTIONS(964), + [anon_sym_EQ_EQ2] = ACTIONS(964), + [anon_sym_BANG_EQ2] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(962), + [anon_sym_LT_EQ2] = ACTIONS(964), + [anon_sym_GT_EQ2] = ACTIONS(964), + [anon_sym_EQ_TILDE2] = ACTIONS(964), + [anon_sym_BANG_TILDE2] = ACTIONS(964), + [anon_sym_STAR_STAR2] = ACTIONS(964), + [anon_sym_PLUS_PLUS2] = ACTIONS(962), + [anon_sym_SLASH2] = ACTIONS(962), + [anon_sym_mod2] = ACTIONS(964), + [anon_sym_SLASH_SLASH2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_bit_DASHshl2] = ACTIONS(964), + [anon_sym_bit_DASHshr2] = ACTIONS(964), + [anon_sym_bit_DASHand2] = ACTIONS(964), + [anon_sym_bit_DASHxor2] = ACTIONS(964), + [anon_sym_bit_DASHor2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(251), }, [1399] = { - [sym_path] = STATE(1499), [sym_comment] = STATE(1399), - [aux_sym_cell_path_repeat1] = STATE(1401), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_null] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(982), - [anon_sym_0o] = ACTIONS(982), - [anon_sym_0x] = ACTIONS(982), - [sym_val_date] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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), + [anon_sym_POUND] = ACTIONS(251), }, [1400] = { - [sym__expr_parenthesized_immediate] = STATE(2006), - [sym__immediate_decimal] = STATE(2015), - [sym_val_variable] = STATE(2006), [sym_comment] = STATE(1400), - [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_DOLLAR] = ACTIONS(4702), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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] = ACTIONS(4762), - [aux_sym__immediate_decimal_token1] = ACTIONS(4708), - [aux_sym__immediate_decimal_token3] = ACTIONS(4708), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [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(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(251), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_null] = ACTIONS(974), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), }, [1401] = { - [sym_path] = STATE(1499), + [sym__expr_parenthesized_immediate] = STATE(2024), + [sym__immediate_decimal] = STATE(2025), + [sym_val_variable] = STATE(2024), [sym_comment] = STATE(1401), - [aux_sym_cell_path_repeat1] = STATE(1401), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_DOT_DOT_LT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_null] = ACTIONS(977), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(977), - [aux_sym__val_number_token5] = ACTIONS(977), - [aux_sym__val_number_token6] = ACTIONS(977), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [aux_sym_unquoted_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(4606), + [aux_sym__immediate_decimal_token3] = ACTIONS(4606), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), }, [1402] = { + [sym_path] = STATE(1510), [sym_comment] = STATE(1402), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(4767), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [aux_sym_cell_path_repeat1] = STATE(1405), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_EQ_GT] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4562), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(251), }, [1403] = { - [sym_path] = STATE(1482), [sym_comment] = STATE(1403), - [aux_sym_cell_path_repeat1] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(977), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(977), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_in2] = ACTIONS(977), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(975), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(977), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_DOT_DOT_LT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), }, [1404] = { - [sym__expr_parenthesized_immediate] = STATE(2006), - [sym__immediate_decimal] = STATE(1762), - [sym_val_variable] = STATE(2006), [sym_comment] = STATE(1404), - [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_DOLLAR] = ACTIONS(4702), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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] = ACTIONS(4772), - [aux_sym__immediate_decimal_token1] = ACTIONS(4708), - [aux_sym__immediate_decimal_token3] = ACTIONS(4708), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [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(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), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1623), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_DOT_DOT_LT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1625), + [aux_sym__val_number_decimal_token4] = ACTIONS(1625), + [aux_sym__val_number_token1] = ACTIONS(1625), + [aux_sym__val_number_token2] = ACTIONS(1625), + [aux_sym__val_number_token3] = ACTIONS(1625), + [aux_sym__val_number_token4] = ACTIONS(1625), + [aux_sym__val_number_token5] = ACTIONS(1625), + [aux_sym__val_number_token6] = ACTIONS(1625), + [anon_sym_0b] = ACTIONS(1623), + [sym_filesize_unit] = ACTIONS(1625), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_0o] = ACTIONS(1623), + [anon_sym_0x] = ACTIONS(1623), + [sym_val_date] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym__str_single_quotes] = ACTIONS(1625), + [sym__str_back_ticks] = ACTIONS(1625), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1625), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token1] = ACTIONS(1623), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1625), }, [1405] = { + [sym_path] = STATE(1510), [sym_comment] = STATE(1405), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4774), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [aux_sym_cell_path_repeat1] = STATE(1405), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(943), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(943), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4644), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), [anon_sym_POUND] = ACTIONS(251), }, [1406] = { [sym_comment] = STATE(1406), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4595), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1407] = { [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(1769), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_err_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_GT_PIPE] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1767), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [aux_sym__val_number_token4] = ACTIONS(1769), - [aux_sym__val_number_token5] = ACTIONS(1769), - [aux_sym__val_number_token6] = ACTIONS(1769), - [anon_sym_0b] = ACTIONS(1767), - [sym_filesize_unit] = ACTIONS(1769), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_0o] = ACTIONS(1767), - [anon_sym_0x] = ACTIONS(1767), - [sym_val_date] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1769), - [anon_sym_out_GT_GT] = ACTIONS(1769), - [anon_sym_e_GT_GT] = ACTIONS(1769), - [anon_sym_o_GT_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), - [aux_sym_unquoted_token1] = ACTIONS(1767), - [aux_sym_unquoted_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1769), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1408] = { [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4700), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4647), + [aux_sym__immediate_decimal_token2] = ACTIONS(4649), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1409] = { - [sym_cell_path] = STATE(1605), - [sym_path] = STATE(1533), [sym_comment] = STATE(1409), - [aux_sym_cell_path_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [anon_sym_null] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1761), - [aux_sym__val_number_decimal_token3] = ACTIONS(1761), - [aux_sym__val_number_decimal_token4] = ACTIONS(1761), - [aux_sym__val_number_token1] = ACTIONS(1761), - [aux_sym__val_number_token2] = ACTIONS(1761), - [aux_sym__val_number_token3] = ACTIONS(1761), - [aux_sym__val_number_token4] = ACTIONS(1761), - [aux_sym__val_number_token5] = ACTIONS(1761), - [aux_sym__val_number_token6] = ACTIONS(1761), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [sym__str_single_quotes] = ACTIONS(1761), - [sym__str_back_ticks] = ACTIONS(1761), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1761), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1761), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1761), - }, - [1410] = { - [sym_comment] = STATE(1410), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [aux_sym_record_entry_token1] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - }, - [1411] = { - [sym__expr_parenthesized_immediate] = STATE(2133), - [sym__immediate_decimal] = STATE(2222), - [sym_val_variable] = STATE(2133), - [sym_comment] = STATE(1411), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1657), - [anon_sym_xor2] = ACTIONS(1657), - [anon_sym_or2] = ACTIONS(1657), - [anon_sym_not_DASHin2] = ACTIONS(1657), - [anon_sym_starts_DASHwith2] = ACTIONS(1657), - [anon_sym_ends_DASHwith2] = ACTIONS(1657), - [anon_sym_EQ_EQ2] = ACTIONS(1657), - [anon_sym_BANG_EQ2] = ACTIONS(1657), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1657), - [anon_sym_GT_EQ2] = ACTIONS(1657), - [anon_sym_EQ_TILDE2] = ACTIONS(1657), - [anon_sym_BANG_TILDE2] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1657), - [anon_sym_PLUS_PLUS2] = ACTIONS(1657), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1657), - [anon_sym_SLASH_SLASH2] = ACTIONS(1657), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1657), - [anon_sym_bit_DASHshr2] = ACTIONS(1657), - [anon_sym_bit_DASHand2] = ACTIONS(1657), - [anon_sym_bit_DASHxor2] = ACTIONS(1657), - [anon_sym_bit_DASHor2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(4778), - [aux_sym__immediate_decimal_token3] = ACTIONS(4778), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(251), - }, - [1412] = { - [sym_comment] = STATE(1412), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [1413] = { - [sym_comment] = STATE(1413), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1024), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - }, - [1414] = { - [sym__expr_parenthesized_immediate] = STATE(2123), - [sym__immediate_decimal] = STATE(2177), - [sym_val_variable] = STATE(2123), - [sym_comment] = STATE(1414), - [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_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4780), - [aux_sym__immediate_decimal_token3] = ACTIONS(4780), - [aux_sym__immediate_decimal_token4] = ACTIONS(4782), - [aux_sym__immediate_decimal_token5] = ACTIONS(4784), - [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(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), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - }, - [1415] = { - [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(1769), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_err_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_GT_PIPE] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [anon_sym_null] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [aux_sym__val_number_decimal_token1] = ACTIONS(1767), - [aux_sym__val_number_decimal_token2] = ACTIONS(1769), - [aux_sym__val_number_decimal_token3] = ACTIONS(1769), - [aux_sym__val_number_decimal_token4] = ACTIONS(1769), - [aux_sym__val_number_token1] = ACTIONS(1769), - [aux_sym__val_number_token2] = ACTIONS(1769), - [aux_sym__val_number_token3] = ACTIONS(1769), - [aux_sym__val_number_token4] = ACTIONS(1769), - [aux_sym__val_number_token5] = ACTIONS(1769), - [aux_sym__val_number_token6] = ACTIONS(1769), - [anon_sym_0b] = ACTIONS(1767), - [sym_filesize_unit] = ACTIONS(1769), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_0o] = ACTIONS(1767), - [anon_sym_0x] = ACTIONS(1767), - [sym_val_date] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [sym__str_single_quotes] = ACTIONS(1769), - [sym__str_back_ticks] = ACTIONS(1769), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1769), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1769), - [anon_sym_out_GT_GT] = ACTIONS(1769), - [anon_sym_e_GT_GT] = ACTIONS(1769), - [anon_sym_o_GT_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), - [aux_sym_unquoted_token1] = ACTIONS(1767), - [aux_sym_unquoted_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1769), - }, - [1416] = { - [sym_comment] = STATE(1416), [anon_sym_EQ] = ACTIONS(1018), [anon_sym_PLUS_EQ] = ACTIONS(1020), [anon_sym_DASH_EQ] = ACTIONS(1020), @@ -220664,9 +214357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1020), [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_COLON2] = ACTIONS(1020), [anon_sym_err_GT] = ACTIONS(1018), [anon_sym_out_GT] = ACTIONS(1018), [anon_sym_e_GT] = ACTIONS(1018), @@ -220685,363 +214378,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(251), }, - [1417] = { - [sym_comment] = STATE(1417), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - }, - [1418] = { - [sym_comment] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(1002), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1000), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - }, - [1419] = { - [sym_comment] = STATE(1419), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [1420] = { - [sym_comment] = STATE(1420), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), + [1410] = { + [sym__expr_parenthesized_immediate] = STATE(2037), + [sym__immediate_decimal] = STATE(2038), + [sym_val_variable] = STATE(2037), + [sym_comment] = STATE(1410), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(4606), + [aux_sym__immediate_decimal_token3] = ACTIONS(4606), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), }, - [1421] = { - [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1006), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), + [1411] = { + [sym__expr_parenthesized_immediate] = STATE(2039), + [sym__immediate_decimal] = STATE(2040), + [sym_val_variable] = STATE(2039), + [sym_comment] = STATE(1411), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_RPAREN] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_RBRACE] = ACTIONS(1691), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1691), + [anon_sym_xor2] = ACTIONS(1691), + [anon_sym_or2] = ACTIONS(1691), + [anon_sym_not_DASHin2] = ACTIONS(1691), + [anon_sym_starts_DASHwith2] = ACTIONS(1691), + [anon_sym_ends_DASHwith2] = ACTIONS(1691), + [anon_sym_EQ_EQ2] = ACTIONS(1691), + [anon_sym_BANG_EQ2] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1691), + [anon_sym_GT_EQ2] = ACTIONS(1691), + [anon_sym_EQ_TILDE2] = ACTIONS(1691), + [anon_sym_BANG_TILDE2] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_STAR_STAR2] = ACTIONS(1691), + [anon_sym_PLUS_PLUS2] = ACTIONS(1691), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1691), + [anon_sym_SLASH_SLASH2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1691), + [anon_sym_bit_DASHshr2] = ACTIONS(1691), + [anon_sym_bit_DASHand2] = ACTIONS(1691), + [anon_sym_bit_DASHxor2] = ACTIONS(1691), + [anon_sym_bit_DASHor2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token1] = ACTIONS(4606), + [aux_sym__immediate_decimal_token3] = ACTIONS(4606), + [aux_sym__immediate_decimal_token4] = ACTIONS(4558), + [aux_sym__immediate_decimal_token5] = ACTIONS(4560), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), [anon_sym_POUND] = ACTIONS(251), }, - [1422] = { - [sym_comment] = STATE(1422), + [1412] = { + [sym_comment] = STATE(1412), + [ts_builtin_sym_end] = ACTIONS(1773), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -221054,21 +214535,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), [anon_sym_DOLLAR] = ACTIONS(1771), [anon_sym_DASH_DASH] = ACTIONS(1773), [anon_sym_DASH2] = ACTIONS(1771), [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_DOT_DOT2] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), [anon_sym_DOT_DOT_LT] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4786), - [aux_sym__immediate_decimal_token2] = ACTIONS(4788), + [aux_sym__immediate_decimal_token2] = ACTIONS(4651), [anon_sym_null] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1773), [anon_sym_false] = ACTIONS(1773), @@ -221108,2918 +214587,4148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, + [1413] = { + [sym_path] = STATE(1524), + [sym_comment] = STATE(1413), + [aux_sym_cell_path_repeat1] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_null] = ACTIONS(950), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(948), + [anon_sym_0o] = ACTIONS(948), + [anon_sym_0x] = ACTIONS(948), + [sym_val_date] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4550), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [aux_sym_unquoted_token1] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [1414] = { + [sym_comment] = STATE(1414), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), + }, + [1415] = { + [sym_comment] = STATE(1415), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT2] = ACTIONS(4540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), + [anon_sym_DOT_DOT_LT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4542), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4542), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1665), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1665), + [anon_sym_0b] = ACTIONS(1653), + [sym_filesize_unit] = ACTIONS(4653), + [sym_duration_unit] = ACTIONS(4655), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(4657), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), + }, + [1416] = { + [sym_path] = STATE(1524), + [sym_comment] = STATE(1416), + [aux_sym_cell_path_repeat1] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_DOT_DOT_LT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_null] = ACTIONS(943), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(943), + [aux_sym__val_number_token5] = ACTIONS(943), + [aux_sym__val_number_token6] = ACTIONS(943), + [anon_sym_0b] = ACTIONS(941), + [anon_sym_0o] = ACTIONS(941), + [anon_sym_0x] = ACTIONS(941), + [sym_val_date] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4659), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [aux_sym_unquoted_token1] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), + }, + [1417] = { + [sym_comment] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_err_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_GT_PIPE] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1725), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [anon_sym_null] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym__val_number_decimal_token1] = ACTIONS(1723), + [aux_sym__val_number_decimal_token2] = ACTIONS(1725), + [aux_sym__val_number_decimal_token3] = ACTIONS(1725), + [aux_sym__val_number_decimal_token4] = ACTIONS(1725), + [aux_sym__val_number_token1] = ACTIONS(1725), + [aux_sym__val_number_token2] = ACTIONS(1725), + [aux_sym__val_number_token3] = ACTIONS(1725), + [aux_sym__val_number_token4] = ACTIONS(1725), + [aux_sym__val_number_token5] = ACTIONS(1725), + [aux_sym__val_number_token6] = ACTIONS(1725), + [anon_sym_0b] = ACTIONS(1723), + [sym_filesize_unit] = ACTIONS(1725), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_0o] = ACTIONS(1723), + [anon_sym_0x] = ACTIONS(1723), + [sym_val_date] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1725), + [anon_sym_out_GT_GT] = ACTIONS(1725), + [anon_sym_e_GT_GT] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), + [aux_sym_unquoted_token1] = ACTIONS(1723), + [aux_sym_unquoted_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1725), + }, + [1418] = { + [sym_comment] = STATE(1418), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4662), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), + }, + [1419] = { + [sym_comment] = STATE(1419), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), + }, + [1420] = { + [sym_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1421] = { + [sym_comment] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4664), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), + }, + [1422] = { + [sym_comment] = STATE(1422), + [ts_builtin_sym_end] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4666), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), + }, [1423] = { [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), }, [1424] = { [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(986), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(974), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_null] = ACTIONS(974), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), }, [1425] = { [sym_comment] = STATE(1425), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1024), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_DOT_DOT2] = ACTIONS(4668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), + [anon_sym_DOT_DOT_LT] = ACTIONS(1794), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4670), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1794), + [anon_sym_0o] = ACTIONS(1794), + [anon_sym_0x] = ACTIONS(1794), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1794), + [anon_sym_out_GT] = ACTIONS(1794), + [anon_sym_e_GT] = ACTIONS(1794), + [anon_sym_o_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT] = ACTIONS(1794), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [aux_sym_unquoted_token1] = ACTIONS(1794), + [aux_sym_unquoted_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1802), }, [1426] = { + [sym_cell_path] = STATE(1788), + [sym_path] = STATE(1634), [sym_comment] = STATE(1426), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_err_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_GT_PIPE] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2033), + [anon_sym_DASH_DASH] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_null] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2035), + [anon_sym_false] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2033), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_0b] = ACTIONS(2033), + [anon_sym_0o] = ACTIONS(2033), + [anon_sym_0x] = ACTIONS(2033), + [sym_val_date] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2033), + [anon_sym_out_GT] = ACTIONS(2033), + [anon_sym_e_GT] = ACTIONS(2033), + [anon_sym_o_GT] = ACTIONS(2033), + [anon_sym_err_PLUSout_GT] = ACTIONS(2033), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), + [anon_sym_o_PLUSe_GT] = ACTIONS(2033), + [anon_sym_e_PLUSo_GT] = ACTIONS(2033), + [anon_sym_err_GT_GT] = ACTIONS(2035), + [anon_sym_out_GT_GT] = ACTIONS(2035), + [anon_sym_e_GT_GT] = ACTIONS(2035), + [anon_sym_o_GT_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), + [aux_sym_unquoted_token1] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2035), }, [1427] = { [sym_comment] = STATE(1427), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [aux_sym_record_entry_token1] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_EQ_GT] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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), [anon_sym_POUND] = ACTIONS(251), }, [1428] = { [sym_comment] = STATE(1428), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [sym__newline] = ACTIONS(1014), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [aux_sym_record_entry_token1] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [ts_builtin_sym_end] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_GT2] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_STAR2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(990), + [anon_sym_xor2] = ACTIONS(990), + [anon_sym_or2] = ACTIONS(990), + [anon_sym_not_DASHin2] = ACTIONS(990), + [anon_sym_starts_DASHwith2] = ACTIONS(990), + [anon_sym_ends_DASHwith2] = ACTIONS(990), + [anon_sym_EQ_EQ2] = ACTIONS(990), + [anon_sym_BANG_EQ2] = ACTIONS(990), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ2] = ACTIONS(990), + [anon_sym_GT_EQ2] = ACTIONS(990), + [anon_sym_EQ_TILDE2] = ACTIONS(990), + [anon_sym_BANG_TILDE2] = ACTIONS(990), + [anon_sym_STAR_STAR2] = ACTIONS(990), + [anon_sym_PLUS_PLUS2] = ACTIONS(988), + [anon_sym_SLASH2] = ACTIONS(988), + [anon_sym_mod2] = ACTIONS(990), + [anon_sym_SLASH_SLASH2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_bit_DASHshl2] = ACTIONS(990), + [anon_sym_bit_DASHshr2] = ACTIONS(990), + [anon_sym_bit_DASHand2] = ACTIONS(990), + [anon_sym_bit_DASHxor2] = ACTIONS(990), + [anon_sym_bit_DASHor2] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), [anon_sym_POUND] = ACTIONS(251), }, [1429] = { + [sym__expr_parenthesized_immediate] = STATE(2493), + [sym__immediate_decimal] = STATE(2280), + [sym_val_variable] = STATE(2493), [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(4790), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1008), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_in2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1617), + [anon_sym_and2] = ACTIONS(1619), + [anon_sym_xor2] = ACTIONS(1619), + [anon_sym_or2] = ACTIONS(1619), + [anon_sym_not_DASHin2] = ACTIONS(1619), + [anon_sym_starts_DASHwith2] = ACTIONS(1619), + [anon_sym_ends_DASHwith2] = ACTIONS(1619), + [anon_sym_EQ_EQ2] = ACTIONS(1619), + [anon_sym_BANG_EQ2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1617), + [anon_sym_LT_EQ2] = ACTIONS(1619), + [anon_sym_GT_EQ2] = ACTIONS(1619), + [anon_sym_EQ_TILDE2] = ACTIONS(1619), + [anon_sym_BANG_TILDE2] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1617), + [anon_sym_mod2] = ACTIONS(1619), + [anon_sym_SLASH_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_bit_DASHshl2] = ACTIONS(1619), + [anon_sym_bit_DASHshr2] = ACTIONS(1619), + [anon_sym_bit_DASHand2] = ACTIONS(1619), + [anon_sym_bit_DASHxor2] = ACTIONS(1619), + [anon_sym_bit_DASHor2] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(4674), + [aux_sym__immediate_decimal_token3] = ACTIONS(4674), + [aux_sym__immediate_decimal_token4] = ACTIONS(4676), + [aux_sym__immediate_decimal_token5] = ACTIONS(4678), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), + [aux_sym_unquoted_token2] = ACTIONS(1621), [anon_sym_POUND] = ACTIONS(251), }, [1430] = { [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4792), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(990), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1431] = { [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [anon_sym_null] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(1663), - [anon_sym_false] = ACTIONS(1663), - [aux_sym__val_number_decimal_token1] = ACTIONS(1661), - [aux_sym__val_number_decimal_token2] = ACTIONS(1663), - [aux_sym__val_number_decimal_token3] = ACTIONS(1663), - [aux_sym__val_number_decimal_token4] = ACTIONS(1663), - [aux_sym__val_number_token1] = ACTIONS(1663), - [aux_sym__val_number_token2] = ACTIONS(1663), - [aux_sym__val_number_token3] = ACTIONS(1663), - [aux_sym__val_number_token4] = ACTIONS(1663), - [aux_sym__val_number_token5] = ACTIONS(1663), - [aux_sym__val_number_token6] = ACTIONS(1663), - [anon_sym_0b] = ACTIONS(1661), - [sym_filesize_unit] = ACTIONS(1663), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym__str_single_quotes] = ACTIONS(1663), - [sym__str_back_ticks] = ACTIONS(1663), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1663), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token1] = ACTIONS(1661), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1663), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym__newline] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_err_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_GT_PIPE] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_DOT_DOT2] = ACTIONS(4684), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT] = ACTIONS(1819), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4686), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4686), + [anon_sym_null] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1827), + [aux_sym__val_number_token5] = ACTIONS(1827), + [aux_sym__val_number_token6] = ACTIONS(1827), + [anon_sym_0b] = ACTIONS(1819), + [anon_sym_0o] = ACTIONS(1819), + [anon_sym_0x] = ACTIONS(1819), + [sym_val_date] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1827), + [anon_sym_err_GT] = ACTIONS(1819), + [anon_sym_out_GT] = ACTIONS(1819), + [anon_sym_e_GT] = ACTIONS(1819), + [anon_sym_o_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT] = ACTIONS(1819), + [anon_sym_err_GT_GT] = ACTIONS(1827), + [anon_sym_out_GT_GT] = ACTIONS(1827), + [anon_sym_e_GT_GT] = ACTIONS(1827), + [anon_sym_o_GT_GT] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1827), + [aux_sym_unquoted_token1] = ACTIONS(1819), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), }, [1432] = { - [sym__expr_parenthesized_immediate] = STATE(2133), - [sym__immediate_decimal] = STATE(2183), - [sym_val_variable] = STATE(2133), [sym_comment] = STATE(1432), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1657), - [anon_sym_xor2] = ACTIONS(1657), - [anon_sym_or2] = ACTIONS(1657), - [anon_sym_not_DASHin2] = ACTIONS(1657), - [anon_sym_starts_DASHwith2] = ACTIONS(1657), - [anon_sym_ends_DASHwith2] = ACTIONS(1657), - [anon_sym_EQ_EQ2] = ACTIONS(1657), - [anon_sym_BANG_EQ2] = ACTIONS(1657), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1657), - [anon_sym_GT_EQ2] = ACTIONS(1657), - [anon_sym_EQ_TILDE2] = ACTIONS(1657), - [anon_sym_BANG_TILDE2] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1657), - [anon_sym_PLUS_PLUS2] = ACTIONS(1657), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1657), - [anon_sym_SLASH_SLASH2] = ACTIONS(1657), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1657), - [anon_sym_bit_DASHshr2] = ACTIONS(1657), - [anon_sym_bit_DASHand2] = ACTIONS(1657), - [anon_sym_bit_DASHxor2] = ACTIONS(1657), - [anon_sym_bit_DASHor2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(4780), - [aux_sym__immediate_decimal_token3] = ACTIONS(4780), - [aux_sym__immediate_decimal_token4] = ACTIONS(4782), - [aux_sym__immediate_decimal_token5] = ACTIONS(4784), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), - [aux_sym_unquoted_token2] = ACTIONS(1659), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_GT2] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_EQ_GT] = ACTIONS(978), + [anon_sym_STAR2] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(978), + [anon_sym_xor2] = ACTIONS(978), + [anon_sym_or2] = ACTIONS(978), + [anon_sym_not_DASHin2] = ACTIONS(978), + [anon_sym_starts_DASHwith2] = ACTIONS(978), + [anon_sym_ends_DASHwith2] = ACTIONS(978), + [anon_sym_EQ_EQ2] = ACTIONS(978), + [anon_sym_BANG_EQ2] = ACTIONS(978), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ2] = ACTIONS(978), + [anon_sym_GT_EQ2] = ACTIONS(978), + [anon_sym_EQ_TILDE2] = ACTIONS(978), + [anon_sym_BANG_TILDE2] = ACTIONS(978), + [anon_sym_STAR_STAR2] = ACTIONS(978), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(976), + [anon_sym_mod2] = ACTIONS(978), + [anon_sym_SLASH_SLASH2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_bit_DASHshl2] = ACTIONS(978), + [anon_sym_bit_DASHshr2] = ACTIONS(978), + [anon_sym_bit_DASHand2] = ACTIONS(978), + [anon_sym_bit_DASHxor2] = ACTIONS(978), + [anon_sym_bit_DASHor2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(251), }, [1433] = { + [sym_cell_path] = STATE(1709), + [sym_path] = STATE(1634), [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4758), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1971), }, [1434] = { - [sym_path] = STATE(1533), + [sym_cell_path] = STATE(1719), + [sym_path] = STATE(1634), [sym_comment] = STATE(1434), - [aux_sym_cell_path_repeat1] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(984), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4714), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_null] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(982), - [anon_sym_0o] = ACTIONS(982), - [anon_sym_0x] = ACTIONS(982), - [sym_val_date] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_err_GT_PIPE] = ACTIONS(1975), + [anon_sym_out_GT_PIPE] = ACTIONS(1975), + [anon_sym_e_GT_PIPE] = ACTIONS(1975), + [anon_sym_o_GT_PIPE] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), + [anon_sym_DOT_DOT_LT] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1975), + [aux_sym__val_number_decimal_token3] = ACTIONS(1975), + [aux_sym__val_number_decimal_token4] = ACTIONS(1975), + [aux_sym__val_number_token1] = ACTIONS(1975), + [aux_sym__val_number_token2] = ACTIONS(1975), + [aux_sym__val_number_token3] = ACTIONS(1975), + [aux_sym__val_number_token4] = ACTIONS(1975), + [aux_sym__val_number_token5] = ACTIONS(1975), + [aux_sym__val_number_token6] = ACTIONS(1975), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym__str_single_quotes] = ACTIONS(1975), + [sym__str_back_ticks] = ACTIONS(1975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1973), + [anon_sym_out_GT] = ACTIONS(1973), + [anon_sym_e_GT] = ACTIONS(1973), + [anon_sym_o_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT] = ACTIONS(1973), + [anon_sym_err_GT_GT] = ACTIONS(1975), + [anon_sym_out_GT_GT] = ACTIONS(1975), + [anon_sym_e_GT_GT] = ACTIONS(1975), + [anon_sym_o_GT_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1975), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1975), }, [1435] = { - [sym_path] = STATE(1533), + [sym_cell_path] = STATE(1723), + [sym_path] = STATE(1634), [sym_comment] = STATE(1435), - [aux_sym_cell_path_repeat1] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(977), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4794), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_DOT_DOT_LT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_null] = ACTIONS(977), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(977), - [aux_sym__val_number_token5] = ACTIONS(977), - [aux_sym__val_number_token6] = ACTIONS(977), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [aux_sym_unquoted_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_err_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_GT_PIPE] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [anon_sym_null] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1979), + [aux_sym__val_number_token5] = ACTIONS(1979), + [aux_sym__val_number_token6] = ACTIONS(1979), + [anon_sym_0b] = ACTIONS(1977), + [anon_sym_0o] = ACTIONS(1977), + [anon_sym_0x] = ACTIONS(1977), + [sym_val_date] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1977), + [anon_sym_out_GT] = ACTIONS(1977), + [anon_sym_e_GT] = ACTIONS(1977), + [anon_sym_o_GT] = ACTIONS(1977), + [anon_sym_err_PLUSout_GT] = ACTIONS(1977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), + [anon_sym_o_PLUSe_GT] = ACTIONS(1977), + [anon_sym_e_PLUSo_GT] = ACTIONS(1977), + [anon_sym_err_GT_GT] = ACTIONS(1979), + [anon_sym_out_GT_GT] = ACTIONS(1979), + [anon_sym_e_GT_GT] = ACTIONS(1979), + [anon_sym_o_GT_GT] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [aux_sym_unquoted_token1] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1979), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DOT_DOT2] = ACTIONS(4720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4722), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1687), - [sym_filesize_unit] = ACTIONS(4797), - [sym_duration_unit] = ACTIONS(4799), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1687), - [aux_sym_unquoted_token2] = ACTIONS(4801), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_in2] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(4688), + [aux_sym__immediate_decimal_token2] = ACTIONS(4690), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), }, [1437] = { [sym_comment] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(4803), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4692), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1438] = { - [sym__expr_parenthesized_immediate] = STATE(2090), - [sym__immediate_decimal] = STATE(2093), - [sym_val_variable] = STATE(2090), [sym_comment] = STATE(1438), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4778), - [aux_sym__immediate_decimal_token3] = ACTIONS(4778), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(251), }, [1439] = { [sym_comment] = STATE(1439), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4807), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_GT2] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_STAR2] = ACTIONS(980), + [anon_sym_and2] = ACTIONS(982), + [anon_sym_xor2] = ACTIONS(982), + [anon_sym_or2] = ACTIONS(982), + [anon_sym_not_DASHin2] = ACTIONS(982), + [anon_sym_starts_DASHwith2] = ACTIONS(982), + [anon_sym_ends_DASHwith2] = ACTIONS(982), + [anon_sym_EQ_EQ2] = ACTIONS(982), + [anon_sym_BANG_EQ2] = ACTIONS(982), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ2] = ACTIONS(982), + [anon_sym_GT_EQ2] = ACTIONS(982), + [anon_sym_EQ_TILDE2] = ACTIONS(982), + [anon_sym_BANG_TILDE2] = ACTIONS(982), + [anon_sym_STAR_STAR2] = ACTIONS(982), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(980), + [anon_sym_mod2] = ACTIONS(982), + [anon_sym_SLASH_SLASH2] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_bit_DASHshl2] = ACTIONS(982), + [anon_sym_bit_DASHshr2] = ACTIONS(982), + [anon_sym_bit_DASHand2] = ACTIONS(982), + [anon_sym_bit_DASHxor2] = ACTIONS(982), + [anon_sym_bit_DASHor2] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), }, [1440] = { - [sym__expr_parenthesized_immediate] = STATE(2123), - [sym__immediate_decimal] = STATE(2264), - [sym_val_variable] = STATE(2123), + [sym__expr_parenthesized_immediate] = STATE(2087), + [sym__immediate_decimal] = STATE(2088), + [sym_val_variable] = STATE(2087), [sym_comment] = STATE(1440), - [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_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4778), - [aux_sym__immediate_decimal_token3] = ACTIONS(4778), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [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(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), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT] = ACTIONS(4696), + [aux_sym__immediate_decimal_token1] = ACTIONS(4618), + [aux_sym__immediate_decimal_token3] = ACTIONS(4618), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(251), }, [1441] = { - [sym__expr_parenthesized_immediate] = STATE(2080), - [sym__immediate_decimal] = STATE(2091), - [sym_val_variable] = STATE(2080), [sym_comment] = STATE(1441), - [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(4776), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_in2] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_RBRACE] = ACTIONS(1685), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1685), - [anon_sym_xor2] = ACTIONS(1685), - [anon_sym_or2] = ACTIONS(1685), - [anon_sym_not_DASHin2] = ACTIONS(1685), - [anon_sym_starts_DASHwith2] = ACTIONS(1685), - [anon_sym_ends_DASHwith2] = ACTIONS(1685), - [anon_sym_EQ_EQ2] = ACTIONS(1685), - [anon_sym_BANG_EQ2] = ACTIONS(1685), - [anon_sym_LT2] = ACTIONS(1677), - [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_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1685), - [anon_sym_PLUS_PLUS2] = ACTIONS(1685), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1685), - [anon_sym_SLASH_SLASH2] = ACTIONS(1685), - [anon_sym_PLUS2] = ACTIONS(1677), - [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(4778), - [aux_sym__immediate_decimal_token3] = ACTIONS(4778), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [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(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(251), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [aux_sym_unquoted_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), }, [1442] = { - [sym__expr_parenthesized_immediate] = STATE(2138), - [sym__immediate_decimal] = STATE(2140), - [sym_val_variable] = STATE(2138), + [sym_cell_path] = STATE(1724), + [sym_path] = STATE(1634), [sym_comment] = STATE(1442), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_STAR2] = ACTIONS(1739), - [anon_sym_and2] = ACTIONS(1741), - [anon_sym_xor2] = ACTIONS(1741), - [anon_sym_or2] = ACTIONS(1741), - [anon_sym_not_DASHin2] = ACTIONS(1741), - [anon_sym_starts_DASHwith2] = ACTIONS(1741), - [anon_sym_ends_DASHwith2] = ACTIONS(1741), - [anon_sym_EQ_EQ2] = ACTIONS(1741), - [anon_sym_BANG_EQ2] = ACTIONS(1741), - [anon_sym_LT2] = ACTIONS(1739), - [anon_sym_LT_EQ2] = ACTIONS(1741), - [anon_sym_GT_EQ2] = ACTIONS(1741), - [anon_sym_EQ_TILDE2] = ACTIONS(1741), - [anon_sym_BANG_TILDE2] = ACTIONS(1741), - [anon_sym_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1741), - [anon_sym_PLUS_PLUS2] = ACTIONS(1741), - [anon_sym_SLASH2] = ACTIONS(1739), - [anon_sym_mod2] = ACTIONS(1741), - [anon_sym_SLASH_SLASH2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_bit_DASHshl2] = ACTIONS(1741), - [anon_sym_bit_DASHshr2] = ACTIONS(1741), - [anon_sym_bit_DASHand2] = ACTIONS(1741), - [anon_sym_bit_DASHxor2] = ACTIONS(1741), - [anon_sym_bit_DASHor2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4778), - [aux_sym__immediate_decimal_token3] = ACTIONS(4778), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_err_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_GT_PIPE] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DASH2] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [anon_sym_null] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1983), + [aux_sym__val_number_token5] = ACTIONS(1983), + [aux_sym__val_number_token6] = ACTIONS(1983), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1981), + [anon_sym_out_GT] = ACTIONS(1981), + [anon_sym_e_GT] = ACTIONS(1981), + [anon_sym_o_GT] = ACTIONS(1981), + [anon_sym_err_PLUSout_GT] = ACTIONS(1981), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1981), + [anon_sym_o_PLUSe_GT] = ACTIONS(1981), + [anon_sym_e_PLUSo_GT] = ACTIONS(1981), + [anon_sym_err_GT_GT] = ACTIONS(1983), + [anon_sym_out_GT_GT] = ACTIONS(1983), + [anon_sym_e_GT_GT] = ACTIONS(1983), + [anon_sym_o_GT_GT] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [aux_sym_unquoted_token1] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1983), }, [1443] = { [sym_comment] = STATE(1443), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_in2] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2272), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2272), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2272), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2272), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_GT2] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_EQ_GT] = ACTIONS(974), + [anon_sym_STAR2] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(974), + [anon_sym_xor2] = ACTIONS(974), + [anon_sym_or2] = ACTIONS(974), + [anon_sym_not_DASHin2] = ACTIONS(974), + [anon_sym_starts_DASHwith2] = ACTIONS(974), + [anon_sym_ends_DASHwith2] = ACTIONS(974), + [anon_sym_EQ_EQ2] = ACTIONS(974), + [anon_sym_BANG_EQ2] = ACTIONS(974), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ2] = ACTIONS(974), + [anon_sym_GT_EQ2] = ACTIONS(974), + [anon_sym_EQ_TILDE2] = ACTIONS(974), + [anon_sym_BANG_TILDE2] = ACTIONS(974), + [anon_sym_STAR_STAR2] = ACTIONS(974), + [anon_sym_PLUS_PLUS2] = ACTIONS(974), + [anon_sym_SLASH2] = ACTIONS(972), + [anon_sym_mod2] = ACTIONS(974), + [anon_sym_SLASH_SLASH2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_bit_DASHshl2] = ACTIONS(974), + [anon_sym_bit_DASHshr2] = ACTIONS(974), + [anon_sym_bit_DASHand2] = ACTIONS(974), + [anon_sym_bit_DASHxor2] = ACTIONS(974), + [anon_sym_bit_DASHor2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(251), }, [1444] = { + [sym_cell_path] = STATE(1730), + [sym_path] = STATE(1634), [sym_comment] = STATE(1444), - [anon_sym_STAR_STAR] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_SLASH_SLASH] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_bit_DASHshl] = ACTIONS(3197), - [anon_sym_bit_DASHshr] = ACTIONS(3197), - [anon_sym_EQ_TILDE] = ACTIONS(3197), - [anon_sym_BANG_TILDE] = ACTIONS(3197), - [anon_sym_bit_DASHand] = ACTIONS(3197), - [anon_sym_bit_DASHxor] = ACTIONS(3197), - [anon_sym_bit_DASHor] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_xor] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_not_DASHin] = ACTIONS(3197), - [anon_sym_starts_DASHwith] = ACTIONS(3197), - [anon_sym_ends_DASHwith] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3197), - [aux_sym_cmd_identifier_token41] = ACTIONS(3201), - [sym__newline] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_in2] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2234), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2234), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2234), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2234), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_err_GT_PIPE] = ACTIONS(1987), + [anon_sym_out_GT_PIPE] = ACTIONS(1987), + [anon_sym_e_GT_PIPE] = ACTIONS(1987), + [anon_sym_o_GT_PIPE] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), + [anon_sym_DOT_DOT_LT] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [aux_sym__val_number_token4] = ACTIONS(1987), + [aux_sym__val_number_token5] = ACTIONS(1987), + [aux_sym__val_number_token6] = ACTIONS(1987), + [anon_sym_0b] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1985), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1985), + [anon_sym_out_GT] = ACTIONS(1985), + [anon_sym_e_GT] = ACTIONS(1985), + [anon_sym_o_GT] = ACTIONS(1985), + [anon_sym_err_PLUSout_GT] = ACTIONS(1985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), + [anon_sym_o_PLUSe_GT] = ACTIONS(1985), + [anon_sym_e_PLUSo_GT] = ACTIONS(1985), + [anon_sym_err_GT_GT] = ACTIONS(1987), + [anon_sym_out_GT_GT] = ACTIONS(1987), + [anon_sym_e_GT_GT] = ACTIONS(1987), + [anon_sym_o_GT_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), + [aux_sym_unquoted_token1] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1987), }, [1445] = { + [sym_cell_path] = STATE(1732), + [sym_path] = STATE(1634), [sym_comment] = STATE(1445), - [sym__newline] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_err_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_GT_PIPE] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_DOT_DOT2] = ACTIONS(4809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4811), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4811), - [anon_sym_null] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [aux_sym__val_number_token4] = ACTIONS(1838), - [aux_sym__val_number_token5] = ACTIONS(1838), - [aux_sym__val_number_token6] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1830), - [anon_sym_0o] = ACTIONS(1830), - [anon_sym_0x] = ACTIONS(1830), - [sym_val_date] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(1830), - [anon_sym_out_GT] = ACTIONS(1830), - [anon_sym_e_GT] = ACTIONS(1830), - [anon_sym_o_GT] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT] = ACTIONS(1830), - [anon_sym_err_GT_GT] = ACTIONS(1838), - [anon_sym_out_GT_GT] = ACTIONS(1838), - [anon_sym_e_GT_GT] = ACTIONS(1838), - [anon_sym_o_GT_GT] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1830), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1838), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), + [anon_sym_DOT_DOT_LT] = ACTIONS(1831), + [anon_sym_null] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1831), + [aux_sym__val_number_token5] = ACTIONS(1831), + [aux_sym__val_number_token6] = ACTIONS(1831), + [anon_sym_0b] = ACTIONS(1829), + [anon_sym_0o] = ACTIONS(1829), + [anon_sym_0x] = ACTIONS(1829), + [sym_val_date] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), + [aux_sym_unquoted_token1] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1831), }, [1446] = { - [sym__expr_parenthesized_immediate] = STATE(2097), - [sym__immediate_decimal] = STATE(2158), - [sym_val_variable] = STATE(2097), + [sym__expr_parenthesized_immediate] = STATE(2489), + [sym__immediate_decimal] = STATE(2277), + [sym_val_variable] = STATE(2489), [sym_comment] = STATE(1446), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(4776), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(4704), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [aux_sym__immediate_decimal_token1] = ACTIONS(4778), - [aux_sym__immediate_decimal_token3] = ACTIONS(4778), - [aux_sym__immediate_decimal_token4] = ACTIONS(4710), - [aux_sym__immediate_decimal_token5] = ACTIONS(4712), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(4674), + [aux_sym__immediate_decimal_token3] = ACTIONS(4674), + [aux_sym__immediate_decimal_token4] = ACTIONS(4676), + [aux_sym__immediate_decimal_token5] = ACTIONS(4678), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [aux_sym_unquoted_token2] = ACTIONS(1585), [anon_sym_POUND] = ACTIONS(251), }, [1447] = { + [sym_cell_path] = STATE(1789), + [sym_path] = STATE(1634), [sym_comment] = STATE(1447), - [sym__newline] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_err_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_GT_PIPE] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_DOT_DOT2] = ACTIONS(4813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1840), - [anon_sym_DOT_DOT_LT] = ACTIONS(1840), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4815), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4815), - [anon_sym_null] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [aux_sym__val_number_token4] = ACTIONS(1848), - [aux_sym__val_number_token5] = ACTIONS(1848), - [aux_sym__val_number_token6] = ACTIONS(1848), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1840), - [anon_sym_0x] = ACTIONS(1840), - [sym_val_date] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1840), - [anon_sym_out_GT] = ACTIONS(1840), - [anon_sym_e_GT] = ACTIONS(1840), - [anon_sym_o_GT] = ACTIONS(1840), - [anon_sym_err_PLUSout_GT] = ACTIONS(1840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), - [anon_sym_o_PLUSe_GT] = ACTIONS(1840), - [anon_sym_e_PLUSo_GT] = ACTIONS(1840), - [anon_sym_err_GT_GT] = ACTIONS(1848), - [anon_sym_out_GT_GT] = ACTIONS(1848), - [anon_sym_e_GT_GT] = ACTIONS(1848), - [anon_sym_o_GT_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), - [aux_sym_unquoted_token1] = ACTIONS(1840), - [aux_sym_unquoted_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1848), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_err_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_GT_PIPE] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1959), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [anon_sym_null] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1959), + [aux_sym__val_number_decimal_token4] = ACTIONS(1959), + [aux_sym__val_number_token1] = ACTIONS(1959), + [aux_sym__val_number_token2] = ACTIONS(1959), + [aux_sym__val_number_token3] = ACTIONS(1959), + [aux_sym__val_number_token4] = ACTIONS(1959), + [aux_sym__val_number_token5] = ACTIONS(1959), + [aux_sym__val_number_token6] = ACTIONS(1959), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(1959), + [sym__str_single_quotes] = ACTIONS(1959), + [sym__str_back_ticks] = ACTIONS(1959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1959), + [anon_sym_out_GT_GT] = ACTIONS(1959), + [anon_sym_e_GT_GT] = ACTIONS(1959), + [anon_sym_o_GT_GT] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), + [aux_sym_unquoted_token1] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1959), }, [1448] = { + [sym_cell_path] = STATE(1745), + [sym_path] = STATE(1634), [sym_comment] = STATE(1448), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_in2] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4819), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1995), + [aux_sym__val_number_token5] = ACTIONS(1995), + [aux_sym__val_number_token6] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [aux_sym_unquoted_token1] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1995), }, [1449] = { + [sym__expr_parenthesized_immediate] = STATE(2089), + [sym__immediate_decimal] = STATE(2090), + [sym_val_variable] = STATE(2089), [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [sym_filesize_unit] = ACTIONS(1713), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [anon_sym_DOT] = ACTIONS(4698), + [aux_sym__immediate_decimal_token1] = ACTIONS(4618), + [aux_sym__immediate_decimal_token3] = ACTIONS(4618), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), + [anon_sym_POUND] = ACTIONS(251), }, [1450] = { + [sym_cell_path] = STATE(1746), + [sym_path] = STATE(1634), [sym_comment] = STATE(1450), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1997), + [anon_sym_out_GT] = ACTIONS(1997), + [anon_sym_e_GT] = ACTIONS(1997), + [anon_sym_o_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT] = ACTIONS(1997), + [anon_sym_err_GT_GT] = ACTIONS(1999), + [anon_sym_out_GT_GT] = ACTIONS(1999), + [anon_sym_e_GT_GT] = ACTIONS(1999), + [anon_sym_o_GT_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), + [aux_sym_unquoted_token1] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1999), }, [1451] = { + [sym_cell_path] = STATE(1747), + [sym_path] = STATE(1634), [sym_comment] = STATE(1451), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), - [aux_sym_unquoted_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_err_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_GT_PIPE] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT] = ACTIONS(2003), + [anon_sym_null] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2003), + [aux_sym__val_number_token5] = ACTIONS(2003), + [aux_sym__val_number_token6] = ACTIONS(2003), + [anon_sym_0b] = ACTIONS(2001), + [anon_sym_0o] = ACTIONS(2001), + [anon_sym_0x] = ACTIONS(2001), + [sym_val_date] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2001), + [anon_sym_out_GT] = ACTIONS(2001), + [anon_sym_e_GT] = ACTIONS(2001), + [anon_sym_o_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT] = ACTIONS(2001), + [anon_sym_err_GT_GT] = ACTIONS(2003), + [anon_sym_out_GT_GT] = ACTIONS(2003), + [anon_sym_e_GT_GT] = ACTIONS(2003), + [anon_sym_o_GT_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), + [aux_sym_unquoted_token1] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2003), }, [1452] = { [sym_comment] = STATE(1452), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(4821), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [ts_builtin_sym_end] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_DOT_DOT_LT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), }, [1453] = { + [sym_cell_path] = STATE(1748), + [sym_path] = STATE(1634), [sym_comment] = STATE(1453), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4823), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_err_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_GT_PIPE] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_RPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_DASH2] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), + [anon_sym_DOT_DOT_LT] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2005), + [anon_sym_0o] = ACTIONS(2005), + [anon_sym_0x] = ACTIONS(2005), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2005), + [anon_sym_out_GT] = ACTIONS(2005), + [anon_sym_e_GT] = ACTIONS(2005), + [anon_sym_o_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT] = ACTIONS(2005), + [anon_sym_err_GT_GT] = ACTIONS(2007), + [anon_sym_out_GT_GT] = ACTIONS(2007), + [anon_sym_e_GT_GT] = ACTIONS(2007), + [anon_sym_o_GT_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), + [aux_sym_unquoted_token1] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2007), }, [1454] = { + [sym_cell_path] = STATE(1752), + [sym_path] = STATE(1634), [sym_comment] = STATE(1454), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_in2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1663), - [anon_sym_xor2] = ACTIONS(1663), - [anon_sym_or2] = ACTIONS(1663), - [anon_sym_not_DASHin2] = ACTIONS(1663), - [anon_sym_starts_DASHwith2] = ACTIONS(1663), - [anon_sym_ends_DASHwith2] = ACTIONS(1663), - [anon_sym_EQ_EQ2] = ACTIONS(1663), - [anon_sym_BANG_EQ2] = ACTIONS(1663), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1663), - [anon_sym_GT_EQ2] = ACTIONS(1663), - [anon_sym_EQ_TILDE2] = ACTIONS(1663), - [anon_sym_BANG_TILDE2] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_STAR_STAR2] = ACTIONS(1663), - [anon_sym_PLUS_PLUS2] = ACTIONS(1663), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1663), - [anon_sym_SLASH_SLASH2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1663), - [anon_sym_bit_DASHshr2] = ACTIONS(1663), - [anon_sym_bit_DASHand2] = ACTIONS(1663), - [anon_sym_bit_DASHxor2] = ACTIONS(1663), - [anon_sym_bit_DASHor2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(4825), - [aux_sym__immediate_decimal_token2] = ACTIONS(4827), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2011), + [anon_sym_DASH2] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), + [anon_sym_DOT_DOT_LT] = ACTIONS(2011), + [anon_sym_null] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2011), + [aux_sym__val_number_decimal_token3] = ACTIONS(2011), + [aux_sym__val_number_decimal_token4] = ACTIONS(2011), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [aux_sym__val_number_token4] = ACTIONS(2011), + [aux_sym__val_number_token5] = ACTIONS(2011), + [aux_sym__val_number_token6] = ACTIONS(2011), + [anon_sym_0b] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2011), + [sym__str_single_quotes] = ACTIONS(2011), + [sym__str_back_ticks] = ACTIONS(2011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2009), + [anon_sym_out_GT] = ACTIONS(2009), + [anon_sym_e_GT] = ACTIONS(2009), + [anon_sym_o_GT] = ACTIONS(2009), + [anon_sym_err_PLUSout_GT] = ACTIONS(2009), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), + [anon_sym_o_PLUSe_GT] = ACTIONS(2009), + [anon_sym_e_PLUSo_GT] = ACTIONS(2009), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [aux_sym_unquoted_token1] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2011), }, [1455] = { + [sym_cell_path] = STATE(1755), + [sym_path] = STATE(1634), [sym_comment] = STATE(1455), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_err_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_GT_PIPE] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_DASH2] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), + [anon_sym_DOT_DOT_LT] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2013), + [anon_sym_0o] = ACTIONS(2013), + [anon_sym_0x] = ACTIONS(2013), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2015), + [anon_sym_out_GT_GT] = ACTIONS(2015), + [anon_sym_e_GT_GT] = ACTIONS(2015), + [anon_sym_o_GT_GT] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), + [aux_sym_unquoted_token1] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2015), }, [1456] = { [sym_comment] = STATE(1456), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1818), - [anon_sym_0o] = ACTIONS(1818), - [anon_sym_0x] = ACTIONS(1818), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1818), - [aux_sym_unquoted_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), }, [1457] = { + [sym_cell_path] = STATE(1781), + [sym_path] = STATE(1634), [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [aux_sym__val_number_decimal_token1] = ACTIONS(1669), - [aux_sym__val_number_decimal_token2] = ACTIONS(1671), - [aux_sym__val_number_decimal_token3] = ACTIONS(1671), - [aux_sym__val_number_decimal_token4] = ACTIONS(1671), - [aux_sym__val_number_token1] = ACTIONS(1671), - [aux_sym__val_number_token2] = ACTIONS(1671), - [aux_sym__val_number_token3] = ACTIONS(1671), - [aux_sym__val_number_token4] = ACTIONS(1671), - [aux_sym__val_number_token5] = ACTIONS(1671), - [aux_sym__val_number_token6] = ACTIONS(1671), - [anon_sym_0b] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1671), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_0o] = ACTIONS(1669), - [anon_sym_0x] = ACTIONS(1669), - [sym_val_date] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym__str_single_quotes] = ACTIONS(1671), - [sym__str_back_ticks] = ACTIONS(1671), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token1] = ACTIONS(1669), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1671), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_DOT_DOT_LT] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), }, [1458] = { - [sym__expr_parenthesized_immediate] = STATE(2185), - [sym__immediate_decimal] = STATE(1929), - [sym_val_variable] = STATE(2185), + [sym_cell_path] = STATE(1756), + [sym_path] = STATE(1634), [sym_comment] = STATE(1458), - [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4829), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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] = ACTIONS(4833), - [aux_sym__immediate_decimal_token1] = ACTIONS(4835), - [aux_sym__immediate_decimal_token3] = ACTIONS(4835), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [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(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), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_err_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_GT_PIPE] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_DASH2] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [aux_sym__val_number_token4] = ACTIONS(2019), + [aux_sym__val_number_token5] = ACTIONS(2019), + [aux_sym__val_number_token6] = ACTIONS(2019), + [anon_sym_0b] = ACTIONS(2017), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2017), + [anon_sym_out_GT] = ACTIONS(2017), + [anon_sym_e_GT] = ACTIONS(2017), + [anon_sym_o_GT] = ACTIONS(2017), + [anon_sym_err_PLUSout_GT] = ACTIONS(2017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), + [anon_sym_o_PLUSe_GT] = ACTIONS(2017), + [anon_sym_e_PLUSo_GT] = ACTIONS(2017), + [anon_sym_err_GT_GT] = ACTIONS(2019), + [anon_sym_out_GT_GT] = ACTIONS(2019), + [anon_sym_e_GT_GT] = ACTIONS(2019), + [anon_sym_o_GT_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), + [aux_sym_unquoted_token1] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2019), }, [1459] = { [sym_comment] = STATE(1459), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), }, [1460] = { + [sym_cell_path] = STATE(1758), + [sym_path] = STATE(1634), [sym_comment] = STATE(1460), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_err_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_GT_PIPE] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2023), + [anon_sym_DOT_DOT_LT] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [aux_sym__val_number_token4] = ACTIONS(2023), + [aux_sym__val_number_token5] = ACTIONS(2023), + [aux_sym__val_number_token6] = ACTIONS(2023), + [anon_sym_0b] = ACTIONS(2021), + [anon_sym_0o] = ACTIONS(2021), + [anon_sym_0x] = ACTIONS(2021), + [sym_val_date] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2021), + [anon_sym_out_GT] = ACTIONS(2021), + [anon_sym_e_GT] = ACTIONS(2021), + [anon_sym_o_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT] = ACTIONS(2021), + [anon_sym_err_GT_GT] = ACTIONS(2023), + [anon_sym_out_GT_GT] = ACTIONS(2023), + [anon_sym_e_GT_GT] = ACTIONS(2023), + [anon_sym_o_GT_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), + [aux_sym_unquoted_token1] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2023), }, [1461] = { - [sym_cell_path] = STATE(1822), - [sym_path] = STATE(1676), [sym_comment] = STATE(1461), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [aux_sym__val_number_token4] = ACTIONS(1881), - [aux_sym__val_number_token5] = ACTIONS(1881), - [aux_sym__val_number_token6] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1881), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1601), + [anon_sym_in2] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1601), + [anon_sym_xor2] = ACTIONS(1601), + [anon_sym_or2] = ACTIONS(1601), + [anon_sym_not_DASHin2] = ACTIONS(1601), + [anon_sym_starts_DASHwith2] = ACTIONS(1601), + [anon_sym_ends_DASHwith2] = ACTIONS(1601), + [anon_sym_EQ_EQ2] = ACTIONS(1601), + [anon_sym_BANG_EQ2] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1601), + [anon_sym_GT_EQ2] = ACTIONS(1601), + [anon_sym_EQ_TILDE2] = ACTIONS(1601), + [anon_sym_BANG_TILDE2] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_STAR_STAR2] = ACTIONS(1601), + [anon_sym_PLUS_PLUS2] = ACTIONS(1601), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1601), + [anon_sym_SLASH_SLASH2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1601), + [anon_sym_bit_DASHshr2] = ACTIONS(1601), + [anon_sym_bit_DASHand2] = ACTIONS(1601), + [anon_sym_bit_DASHxor2] = ACTIONS(1601), + [anon_sym_bit_DASHor2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4700), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4702), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), }, [1462] = { [sym_comment] = STATE(1462), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(4843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4845), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1463] = { + [sym_cell_path] = STATE(1761), + [sym_path] = STATE(1634), [sym_comment] = STATE(1463), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4807), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_err_GT_PIPE] = ACTIONS(2027), + [anon_sym_out_GT_PIPE] = ACTIONS(2027), + [anon_sym_e_GT_PIPE] = ACTIONS(2027), + [anon_sym_o_GT_PIPE] = ACTIONS(2027), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2027), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2027), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2027), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_DASH2] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2027), + [anon_sym_DOT_DOT_LT] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [aux_sym__val_number_decimal_token1] = ACTIONS(2025), + [aux_sym__val_number_decimal_token2] = ACTIONS(2027), + [aux_sym__val_number_decimal_token3] = ACTIONS(2027), + [aux_sym__val_number_decimal_token4] = ACTIONS(2027), + [aux_sym__val_number_token1] = ACTIONS(2027), + [aux_sym__val_number_token2] = ACTIONS(2027), + [aux_sym__val_number_token3] = ACTIONS(2027), + [aux_sym__val_number_token4] = ACTIONS(2027), + [aux_sym__val_number_token5] = ACTIONS(2027), + [aux_sym__val_number_token6] = ACTIONS(2027), + [anon_sym_0b] = ACTIONS(2025), + [anon_sym_0o] = ACTIONS(2025), + [anon_sym_0x] = ACTIONS(2025), + [sym_val_date] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(2027), + [sym__str_single_quotes] = ACTIONS(2027), + [sym__str_back_ticks] = ACTIONS(2027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2027), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2025), + [anon_sym_out_GT] = ACTIONS(2025), + [anon_sym_e_GT] = ACTIONS(2025), + [anon_sym_o_GT] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT] = ACTIONS(2025), + [anon_sym_err_GT_GT] = ACTIONS(2027), + [anon_sym_out_GT_GT] = ACTIONS(2027), + [anon_sym_e_GT_GT] = ACTIONS(2027), + [anon_sym_o_GT_GT] = ACTIONS(2027), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2027), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2027), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2027), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2027), + [aux_sym_unquoted_token1] = ACTIONS(2025), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1464] = { + [sym_cell_path] = STATE(1762), + [sym_path] = STATE(1634), [sym_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(1773), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_err_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_GT_PIPE] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_DASH2] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [aux_sym__val_number_token4] = ACTIONS(2031), + [aux_sym__val_number_token5] = ACTIONS(2031), + [aux_sym__val_number_token6] = ACTIONS(2031), + [anon_sym_0b] = ACTIONS(2029), + [anon_sym_0o] = ACTIONS(2029), + [anon_sym_0x] = ACTIONS(2029), + [sym_val_date] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(2029), + [anon_sym_out_GT] = ACTIONS(2029), + [anon_sym_e_GT] = ACTIONS(2029), + [anon_sym_o_GT] = ACTIONS(2029), + [anon_sym_err_PLUSout_GT] = ACTIONS(2029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), + [anon_sym_o_PLUSe_GT] = ACTIONS(2029), + [anon_sym_e_PLUSo_GT] = ACTIONS(2029), + [anon_sym_err_GT_GT] = ACTIONS(2031), + [anon_sym_out_GT_GT] = ACTIONS(2031), + [anon_sym_e_GT_GT] = ACTIONS(2031), + [anon_sym_o_GT_GT] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), + [aux_sym_unquoted_token1] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2031), + }, + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1466] = { + [sym_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), + }, + [1467] = { + [sym_cell_path] = STATE(1779), + [sym_path] = STATE(1634), + [sym_comment] = STATE(1467), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_err_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_GT_PIPE] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1951), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), + [anon_sym_DOT_DOT_LT] = ACTIONS(1951), + [anon_sym_null] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1951), + [aux_sym__val_number_decimal_token3] = ACTIONS(1951), + [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [aux_sym__val_number_token1] = ACTIONS(1951), + [aux_sym__val_number_token2] = ACTIONS(1951), + [aux_sym__val_number_token3] = ACTIONS(1951), + [aux_sym__val_number_token4] = ACTIONS(1951), + [aux_sym__val_number_token5] = ACTIONS(1951), + [aux_sym__val_number_token6] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1949), + [anon_sym_0x] = ACTIONS(1949), + [sym_val_date] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1951), + [anon_sym_out_GT_GT] = ACTIONS(1951), + [anon_sym_e_GT_GT] = ACTIONS(1951), + [anon_sym_o_GT_GT] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), + [aux_sym_unquoted_token1] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1951), + }, + [1468] = { + [sym_comment] = STATE(1468), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4704), + [aux_sym__immediate_decimal_token2] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1469] = { + [sym_comment] = STATE(1469), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_GT2] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_STAR2] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4708), + [anon_sym_and2] = ACTIONS(954), + [anon_sym_xor2] = ACTIONS(954), + [anon_sym_or2] = ACTIONS(954), + [anon_sym_not_DASHin2] = ACTIONS(954), + [anon_sym_starts_DASHwith2] = ACTIONS(954), + [anon_sym_ends_DASHwith2] = ACTIONS(954), + [anon_sym_EQ_EQ2] = ACTIONS(954), + [anon_sym_BANG_EQ2] = ACTIONS(954), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ2] = ACTIONS(954), + [anon_sym_GT_EQ2] = ACTIONS(954), + [anon_sym_EQ_TILDE2] = ACTIONS(954), + [anon_sym_BANG_TILDE2] = ACTIONS(954), + [anon_sym_STAR_STAR2] = ACTIONS(954), + [anon_sym_PLUS_PLUS2] = ACTIONS(954), + [anon_sym_SLASH2] = ACTIONS(952), + [anon_sym_mod2] = ACTIONS(954), + [anon_sym_SLASH_SLASH2] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_bit_DASHshl2] = ACTIONS(954), + [anon_sym_bit_DASHshr2] = ACTIONS(954), + [anon_sym_bit_DASHand2] = ACTIONS(954), + [anon_sym_bit_DASHxor2] = ACTIONS(954), + [anon_sym_bit_DASHor2] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(251), + }, + [1470] = { + [sym_comment] = STATE(1470), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_GT2] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_EQ_GT] = ACTIONS(968), + [anon_sym_STAR2] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4710), + [anon_sym_and2] = ACTIONS(968), + [anon_sym_xor2] = ACTIONS(968), + [anon_sym_or2] = ACTIONS(968), + [anon_sym_not_DASHin2] = ACTIONS(968), + [anon_sym_starts_DASHwith2] = ACTIONS(968), + [anon_sym_ends_DASHwith2] = ACTIONS(968), + [anon_sym_EQ_EQ2] = ACTIONS(968), + [anon_sym_BANG_EQ2] = ACTIONS(968), + [anon_sym_LT2] = ACTIONS(966), + [anon_sym_LT_EQ2] = ACTIONS(968), + [anon_sym_GT_EQ2] = ACTIONS(968), + [anon_sym_EQ_TILDE2] = ACTIONS(968), + [anon_sym_BANG_TILDE2] = ACTIONS(968), + [anon_sym_STAR_STAR2] = ACTIONS(968), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(966), + [anon_sym_mod2] = ACTIONS(968), + [anon_sym_SLASH_SLASH2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(966), + [anon_sym_bit_DASHshl2] = ACTIONS(968), + [anon_sym_bit_DASHshr2] = ACTIONS(968), + [anon_sym_bit_DASHand2] = ACTIONS(968), + [anon_sym_bit_DASHxor2] = ACTIONS(968), + [anon_sym_bit_DASHor2] = ACTIONS(968), + [anon_sym_DOT_DOT2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), + [anon_sym_DOT_DOT_LT2] = ACTIONS(968), + [anon_sym_COLON2] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(251), + }, + [1471] = { + [sym_comment] = STATE(1471), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_COLON2] = ACTIONS(4712), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1472] = { + [sym_comment] = STATE(1472), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -224033,18 +218742,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), [anon_sym_LBRACK] = ACTIONS(1773), [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), [anon_sym_DOLLAR] = ACTIONS(1771), [anon_sym_DASH_DASH] = ACTIONS(1773), [anon_sym_DASH2] = ACTIONS(1771), [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_DOT_DOT2] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), [anon_sym_DOT_DOT_LT] = ACTIONS(1771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4847), - [aux_sym__immediate_decimal_token2] = ACTIONS(4849), + [aux_sym__immediate_decimal_token2] = ACTIONS(4714), [anon_sym_null] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1773), [anon_sym_false] = ACTIONS(1773), @@ -224087,218 +218797,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(4851), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [1473] = { + [sym_comment] = STATE(1473), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_GT2] = ACTIONS(962), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_EQ_GT] = ACTIONS(964), + [anon_sym_STAR2] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_and2] = ACTIONS(964), + [anon_sym_xor2] = ACTIONS(964), + [anon_sym_or2] = ACTIONS(964), + [anon_sym_not_DASHin2] = ACTIONS(964), + [anon_sym_starts_DASHwith2] = ACTIONS(964), + [anon_sym_ends_DASHwith2] = ACTIONS(964), + [anon_sym_EQ_EQ2] = ACTIONS(964), + [anon_sym_BANG_EQ2] = ACTIONS(964), + [anon_sym_LT2] = ACTIONS(962), + [anon_sym_LT_EQ2] = ACTIONS(964), + [anon_sym_GT_EQ2] = ACTIONS(964), + [anon_sym_EQ_TILDE2] = ACTIONS(964), + [anon_sym_BANG_TILDE2] = ACTIONS(964), + [anon_sym_STAR_STAR2] = ACTIONS(964), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(962), + [anon_sym_mod2] = ACTIONS(964), + [anon_sym_SLASH_SLASH2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(962), + [anon_sym_bit_DASHshl2] = ACTIONS(964), + [anon_sym_bit_DASHshr2] = ACTIONS(964), + [anon_sym_bit_DASHand2] = ACTIONS(964), + [anon_sym_bit_DASHxor2] = ACTIONS(964), + [anon_sym_bit_DASHor2] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), + [anon_sym_DOT_DOT_LT2] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(251), }, - [1466] = { - [sym_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4853), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_DOT_DOT_LT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [1474] = { + [sym_cell_path] = STATE(1753), + [sym_path] = STATE(1634), + [sym_comment] = STATE(1474), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_err_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_GT_PIPE] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1967), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1967), + [aux_sym__val_number_token2] = ACTIONS(1967), + [aux_sym__val_number_token3] = ACTIONS(1967), + [aux_sym__val_number_token4] = ACTIONS(1967), + [aux_sym__val_number_token5] = ACTIONS(1967), + [aux_sym__val_number_token6] = ACTIONS(1967), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym__str_single_quotes] = ACTIONS(1967), + [sym__str_back_ticks] = ACTIONS(1967), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1967), + [anon_sym_out_GT_GT] = ACTIONS(1967), + [anon_sym_e_GT_GT] = ACTIONS(1967), + [anon_sym_o_GT_GT] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), + [aux_sym_unquoted_token1] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1967), }, - [1467] = { - [sym_cell_path] = STATE(1823), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1467), - [aux_sym_cell_path_repeat1] = STATE(1547), - [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_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1885), - [aux_sym__val_number_token5] = ACTIONS(1885), - [aux_sym__val_number_token6] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_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(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_unquoted_token1] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1885), + [1475] = { + [sym_comment] = STATE(1475), + [ts_builtin_sym_end] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(251), }, - [1468] = { - [sym_comment] = STATE(1468), + [1476] = { + [sym_comment] = STATE(1476), [ts_builtin_sym_end] = ACTIONS(1773), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), @@ -224367,2041 +219077,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [1469] = { - [sym_cell_path] = STATE(1824), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1469), - [aux_sym_cell_path_repeat1] = STATE(1547), - [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_LBRACK] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_LT] = ACTIONS(1889), - [anon_sym_null] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_0b] = ACTIONS(1887), - [anon_sym_0o] = ACTIONS(1887), - [anon_sym_0x] = ACTIONS(1887), - [sym_val_date] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), - [anon_sym_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(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_unquoted_token1] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1889), - }, - [1470] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [1471] = { - [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [1472] = { - [sym_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(1820), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1818), - [anon_sym_0o] = ACTIONS(1818), - [anon_sym_0x] = ACTIONS(1818), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1818), - [aux_sym_unquoted_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), - }, - [1473] = { - [sym_cell_path] = STATE(1825), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1473), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1897), - }, - [1474] = { - [sym_cell_path] = STATE(1826), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1474), - [aux_sym_cell_path_repeat1] = STATE(1547), - [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_LBRACK] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [anon_sym_DOT_DOT_LT] = ACTIONS(1905), - [anon_sym_null] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1903), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [aux_sym__val_number_token4] = ACTIONS(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [anon_sym_0b] = ACTIONS(1903), - [anon_sym_0o] = ACTIONS(1903), - [anon_sym_0x] = ACTIONS(1903), - [sym_val_date] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), - [anon_sym_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(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), - [aux_sym_unquoted_token1] = ACTIONS(1903), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1905), - }, - [1475] = { - [sym_comment] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_GT2] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_STAR2] = ACTIONS(1052), - [anon_sym_and2] = ACTIONS(1054), - [anon_sym_xor2] = ACTIONS(1054), - [anon_sym_or2] = ACTIONS(1054), - [anon_sym_not_DASHin2] = ACTIONS(1054), - [anon_sym_starts_DASHwith2] = ACTIONS(1054), - [anon_sym_ends_DASHwith2] = ACTIONS(1054), - [anon_sym_EQ_EQ2] = ACTIONS(1054), - [anon_sym_BANG_EQ2] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1052), - [anon_sym_LT_EQ2] = ACTIONS(1054), - [anon_sym_GT_EQ2] = ACTIONS(1054), - [anon_sym_EQ_TILDE2] = ACTIONS(1054), - [anon_sym_BANG_TILDE2] = ACTIONS(1054), - [anon_sym_STAR_STAR2] = ACTIONS(1054), - [anon_sym_PLUS_PLUS2] = ACTIONS(1052), - [anon_sym_SLASH2] = ACTIONS(1052), - [anon_sym_mod2] = ACTIONS(1054), - [anon_sym_SLASH_SLASH2] = ACTIONS(1054), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_bit_DASHshl2] = ACTIONS(1054), - [anon_sym_bit_DASHshr2] = ACTIONS(1054), - [anon_sym_bit_DASHand2] = ACTIONS(1054), - [anon_sym_bit_DASHxor2] = ACTIONS(1054), - [anon_sym_bit_DASHor2] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [aux_sym_record_entry_token1] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - }, - [1476] = { - [sym_cell_path] = STATE(1827), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = ACTIONS(1911), - [anon_sym_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), - }, [1477] = { - [sym_cell_path] = STATE(1828), - [sym_path] = STATE(1676), + [sym_cell_path] = STATE(1712), + [sym_path] = STATE(1634), [sym_comment] = STATE(1477), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), - [anon_sym_DOT_DOT_LT] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1919), - [aux_sym__val_number_token5] = ACTIONS(1919), - [aux_sym__val_number_token6] = ACTIONS(1919), - [anon_sym_0b] = ACTIONS(1917), - [anon_sym_0o] = ACTIONS(1917), - [anon_sym_0x] = ACTIONS(1917), - [sym_val_date] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [aux_sym_unquoted_token1] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), - }, - [1478] = { - [sym_comment] = STATE(1478), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_GT2] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_STAR2] = ACTIONS(1052), - [anon_sym_and2] = ACTIONS(1054), - [anon_sym_xor2] = ACTIONS(1054), - [anon_sym_or2] = ACTIONS(1054), - [anon_sym_not_DASHin2] = ACTIONS(1054), - [anon_sym_starts_DASHwith2] = ACTIONS(1054), - [anon_sym_ends_DASHwith2] = ACTIONS(1054), - [anon_sym_EQ_EQ2] = ACTIONS(1054), - [anon_sym_BANG_EQ2] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1052), - [anon_sym_LT_EQ2] = ACTIONS(1054), - [anon_sym_GT_EQ2] = ACTIONS(1054), - [anon_sym_EQ_TILDE2] = ACTIONS(1054), - [anon_sym_BANG_TILDE2] = ACTIONS(1054), - [anon_sym_STAR_STAR2] = ACTIONS(1054), - [anon_sym_PLUS_PLUS2] = ACTIONS(1052), - [anon_sym_SLASH2] = ACTIONS(1052), - [anon_sym_mod2] = ACTIONS(1054), - [anon_sym_SLASH_SLASH2] = ACTIONS(1054), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_bit_DASHshl2] = ACTIONS(1054), - [anon_sym_bit_DASHshr2] = ACTIONS(1054), - [anon_sym_bit_DASHand2] = ACTIONS(1054), - [anon_sym_bit_DASHxor2] = ACTIONS(1054), - [anon_sym_bit_DASHor2] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - }, - [1479] = { - [sym_cell_path] = STATE(1829), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [1480] = { - [sym_cell_path] = STATE(1830), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1480), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1931), - [aux_sym__val_number_token5] = ACTIONS(1931), - [aux_sym__val_number_token6] = ACTIONS(1931), - [anon_sym_0b] = ACTIONS(1929), - [anon_sym_0o] = ACTIONS(1929), - [anon_sym_0x] = ACTIONS(1929), - [sym_val_date] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [aux_sym_unquoted_token1] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [1481] = { - [sym_comment] = STATE(1481), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [aux_sym_record_entry_token1] = ACTIONS(4855), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), - }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1022), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1024), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(251), - }, - [1483] = { - [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_DOT_DOT_LT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [1484] = { - [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(4857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4859), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [1485] = { - [sym_comment] = STATE(1485), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(4861), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [1486] = { - [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(251), - }, - [1487] = { - [sym_cell_path] = STATE(1815), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1487), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_err_GT_PIPE] = ACTIONS(2055), - [anon_sym_out_GT_PIPE] = ACTIONS(2055), - [anon_sym_e_GT_PIPE] = ACTIONS(2055), - [anon_sym_o_GT_PIPE] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_DASH2] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [anon_sym_null] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_decimal_token4] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [aux_sym__val_number_token4] = ACTIONS(2055), - [aux_sym__val_number_token5] = ACTIONS(2055), - [aux_sym__val_number_token6] = ACTIONS(2055), - [anon_sym_0b] = ACTIONS(2053), - [anon_sym_0o] = ACTIONS(2053), - [anon_sym_0x] = ACTIONS(2053), - [sym_val_date] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), - [anon_sym_err_GT] = ACTIONS(2053), - [anon_sym_out_GT] = ACTIONS(2053), - [anon_sym_e_GT] = ACTIONS(2053), - [anon_sym_o_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT] = ACTIONS(2053), - [anon_sym_err_GT_GT] = ACTIONS(2055), - [anon_sym_out_GT_GT] = ACTIONS(2055), - [anon_sym_e_GT_GT] = ACTIONS(2055), - [anon_sym_o_GT_GT] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2055), - [aux_sym_unquoted_token1] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2055), - }, - [1488] = { - [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym__newline] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_err_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_GT_PIPE] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_DOT_DOT2] = ACTIONS(4863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_LT] = ACTIONS(1830), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4865), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [aux_sym__val_number_token4] = ACTIONS(1838), - [aux_sym__val_number_token5] = ACTIONS(1838), - [aux_sym__val_number_token6] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1830), - [anon_sym_0o] = ACTIONS(1830), - [anon_sym_0x] = ACTIONS(1830), - [sym_val_date] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(1830), - [anon_sym_out_GT] = ACTIONS(1830), - [anon_sym_e_GT] = ACTIONS(1830), - [anon_sym_o_GT] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT] = ACTIONS(1830), - [anon_sym_err_GT_GT] = ACTIONS(1838), - [anon_sym_out_GT_GT] = ACTIONS(1838), - [anon_sym_e_GT_GT] = ACTIONS(1838), - [anon_sym_o_GT_GT] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1830), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1838), - }, - [1489] = { - [sym_cell_path] = STATE(1832), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1489), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), - }, - [1490] = { - [sym_comment] = STATE(1490), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_in2] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4819), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - }, - [1491] = { - [sym__expr_parenthesized_immediate] = STATE(2179), - [sym__immediate_decimal] = STATE(2182), - [sym_val_variable] = STATE(2179), - [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4829), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4867), - [aux_sym__immediate_decimal_token1] = ACTIONS(4835), - [aux_sym__immediate_decimal_token3] = ACTIONS(4835), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - }, - [1492] = { - [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [1493] = { - [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_DOT_DOT_LT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [1494] = { - [sym_comment] = STATE(1494), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4869), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - }, - [1495] = { - [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1014), - [anon_sym_PLUS_EQ] = ACTIONS(1016), - [anon_sym_DASH_EQ] = ACTIONS(1016), - [anon_sym_STAR_EQ] = ACTIONS(1016), - [anon_sym_SLASH_EQ] = ACTIONS(1016), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1016), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1014), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(251), - }, - [1496] = { - [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [1497] = { - [sym_cell_path] = STATE(1835), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1497), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), - }, - [1498] = { - [sym_cell_path] = STATE(1808), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1498), - [aux_sym_cell_path_repeat1] = STATE(1547), + [aux_sym_cell_path_repeat1] = STATE(1516), [sym__newline] = ACTIONS(1947), [anon_sym_SEMI] = ACTIONS(1947), [anon_sym_PIPE] = ACTIONS(1947), @@ -226422,7 +219102,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1947), [anon_sym_RBRACE] = ACTIONS(1947), [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), [anon_sym_DOT_DOT_LT] = ACTIONS(1947), [anon_sym_null] = ACTIONS(1947), @@ -226447,6 +219126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1947), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(4672), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -226467,501 +219147,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1947), }, - [1499] = { - [sym_comment] = STATE(1499), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), - [anon_sym_DOT_DOT_LT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1024), - [aux_sym__val_number_token5] = ACTIONS(1024), - [aux_sym__val_number_token6] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), - }, - [1500] = { - [sym__expr_parenthesized_immediate] = STATE(2185), - [sym__immediate_decimal] = STATE(2188), - [sym_val_variable] = STATE(2185), - [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4829), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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] = ACTIONS(4871), - [aux_sym__immediate_decimal_token1] = ACTIONS(4835), - [aux_sym__immediate_decimal_token3] = ACTIONS(4835), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [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(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(251), - }, - [1501] = { - [sym_cell_path] = STATE(1816), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1501), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), - }, - [1502] = { - [sym_cell_path] = STATE(1817), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1502), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [1503] = { - [sym_cell_path] = STATE(1820), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1503), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [aux_sym__val_number_token4] = ACTIONS(1877), - [aux_sym__val_number_token5] = ACTIONS(1877), - [aux_sym__val_number_token6] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_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(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1877), + [1478] = { + [sym_comment] = STATE(1478), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token2] = ACTIONS(4718), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, - [1504] = { - [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(1848), - [sym__newline] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_err_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_GT_PIPE] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_DOT_DOT2] = ACTIONS(4873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1840), - [anon_sym_DOT_DOT_LT] = ACTIONS(1840), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4875), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4875), - [anon_sym_null] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [aux_sym__val_number_token4] = ACTIONS(1848), - [aux_sym__val_number_token5] = ACTIONS(1848), - [aux_sym__val_number_token6] = ACTIONS(1848), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1840), - [anon_sym_0x] = ACTIONS(1840), - [sym_val_date] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1840), - [anon_sym_out_GT] = ACTIONS(1840), - [anon_sym_e_GT] = ACTIONS(1840), - [anon_sym_o_GT] = ACTIONS(1840), - [anon_sym_err_PLUSout_GT] = ACTIONS(1840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), - [anon_sym_o_PLUSe_GT] = ACTIONS(1840), - [anon_sym_e_PLUSo_GT] = ACTIONS(1840), - [anon_sym_err_GT_GT] = ACTIONS(1848), - [anon_sym_out_GT_GT] = ACTIONS(1848), - [anon_sym_e_GT_GT] = ACTIONS(1848), - [anon_sym_o_GT_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), - [aux_sym_unquoted_token1] = ACTIONS(1840), - [aux_sym_unquoted_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1848), + [1479] = { + [sym_cell_path] = STATE(1742), + [sym_path] = STATE(1634), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1516), + [sym__newline] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_err_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_GT_PIPE] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), + [anon_sym_DOT_DOT_LT] = ACTIONS(1991), + [anon_sym_null] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1991), + [aux_sym__val_number_token5] = ACTIONS(1991), + [aux_sym__val_number_token6] = ACTIONS(1991), + [anon_sym_0b] = ACTIONS(1989), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0x] = ACTIONS(1989), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(1989), + [anon_sym_out_GT] = ACTIONS(1989), + [anon_sym_e_GT] = ACTIONS(1989), + [anon_sym_o_GT] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT] = ACTIONS(1989), + [anon_sym_err_GT_GT] = ACTIONS(1991), + [anon_sym_out_GT_GT] = ACTIONS(1991), + [anon_sym_e_GT_GT] = ACTIONS(1991), + [anon_sym_o_GT_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1991), }, - [1505] = { - [sym__expr_parenthesized_immediate] = STATE(2611), - [sym__immediate_decimal] = STATE(2384), - [sym_val_variable] = STATE(2611), - [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4879), - [aux_sym__immediate_decimal_token3] = ACTIONS(4879), - [aux_sym__immediate_decimal_token4] = ACTIONS(4881), - [aux_sym__immediate_decimal_token5] = ACTIONS(4883), - [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(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), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), + [1480] = { + [sym_comment] = STATE(1480), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1717), + [anon_sym_0o] = ACTIONS(1717), + [anon_sym_0x] = ACTIONS(1717), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1719), }, - [1506] = { - [sym_cell_path] = STATE(1811), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1506), - [aux_sym_cell_path_repeat1] = STATE(1547), + [1481] = { + [sym_cell_path] = STATE(1848), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1481), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1951), [sym__newline] = ACTIONS(1951), [anon_sym_SEMI] = ACTIONS(1951), [anon_sym_PIPE] = ACTIONS(1951), @@ -226975,14 +219375,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), [anon_sym_LBRACK] = ACTIONS(1951), [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), [anon_sym_DOLLAR] = ACTIONS(1949), [anon_sym_DASH_DASH] = ACTIONS(1951), [anon_sym_DASH2] = ACTIONS(1949), [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), [anon_sym_DOT_DOT_LT] = ACTIONS(1951), [anon_sym_null] = ACTIONS(1951), @@ -227007,6 +219404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1951), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_DOT2] = ACTIONS(4720), [anon_sym_err_GT] = ACTIONS(1949), [anon_sym_out_GT] = ACTIONS(1949), [anon_sym_e_GT] = ACTIONS(1949), @@ -227027,8 +219425,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1951), }, - [1507] = { - [sym_comment] = STATE(1507), + [1482] = { + [sym_comment] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), + }, + [1483] = { + [sym__expr_parenthesized_immediate] = STATE(2454), + [sym__immediate_decimal] = STATE(2465), + [sym_val_variable] = STATE(2454), + [sym_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(1691), + [sym__newline] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_err_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_GT_PIPE] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1691), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1689), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_in2] = ACTIONS(1691), + [anon_sym_STAR2] = ACTIONS(1689), + [anon_sym_and2] = ACTIONS(1691), + [anon_sym_xor2] = ACTIONS(1691), + [anon_sym_or2] = ACTIONS(1691), + [anon_sym_not_DASHin2] = ACTIONS(1691), + [anon_sym_starts_DASHwith2] = ACTIONS(1691), + [anon_sym_ends_DASHwith2] = ACTIONS(1691), + [anon_sym_EQ_EQ2] = ACTIONS(1691), + [anon_sym_BANG_EQ2] = ACTIONS(1691), + [anon_sym_LT2] = ACTIONS(1689), + [anon_sym_LT_EQ2] = ACTIONS(1691), + [anon_sym_GT_EQ2] = ACTIONS(1691), + [anon_sym_EQ_TILDE2] = ACTIONS(1691), + [anon_sym_BANG_TILDE2] = ACTIONS(1691), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1691), + [anon_sym_PLUS_PLUS2] = ACTIONS(1691), + [anon_sym_SLASH2] = ACTIONS(1689), + [anon_sym_mod2] = ACTIONS(1691), + [anon_sym_SLASH_SLASH2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1689), + [anon_sym_bit_DASHshl2] = ACTIONS(1691), + [anon_sym_bit_DASHshr2] = ACTIONS(1691), + [anon_sym_bit_DASHand2] = ACTIONS(1691), + [anon_sym_bit_DASHxor2] = ACTIONS(1691), + [anon_sym_bit_DASHor2] = ACTIONS(1691), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token3] = ACTIONS(4722), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1689), + [anon_sym_out_GT] = ACTIONS(1689), + [anon_sym_e_GT] = ACTIONS(1689), + [anon_sym_o_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT] = ACTIONS(1689), + [anon_sym_err_GT_GT] = ACTIONS(1691), + [anon_sym_out_GT_GT] = ACTIONS(1691), + [anon_sym_e_GT_GT] = ACTIONS(1691), + [anon_sym_o_GT_GT] = ACTIONS(1691), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1691), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1691), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1691), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1691), + [anon_sym_POUND] = ACTIONS(251), + }, + [1484] = { + [sym_comment] = STATE(1484), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -227050,7 +219586,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1020), [anon_sym_DOT_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), [anon_sym_DOT_DOT_LT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), @@ -227097,291 +219632,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_GT2] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_in2] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_STAR2] = ACTIONS(1052), - [anon_sym_and2] = ACTIONS(1054), - [anon_sym_xor2] = ACTIONS(1054), - [anon_sym_or2] = ACTIONS(1054), - [anon_sym_not_DASHin2] = ACTIONS(1054), - [anon_sym_starts_DASHwith2] = ACTIONS(1054), - [anon_sym_ends_DASHwith2] = ACTIONS(1054), - [anon_sym_EQ_EQ2] = ACTIONS(1054), - [anon_sym_BANG_EQ2] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1052), - [anon_sym_LT_EQ2] = ACTIONS(1054), - [anon_sym_GT_EQ2] = ACTIONS(1054), - [anon_sym_EQ_TILDE2] = ACTIONS(1054), - [anon_sym_BANG_TILDE2] = ACTIONS(1054), - [anon_sym_STAR_STAR2] = ACTIONS(1054), - [anon_sym_PLUS_PLUS2] = ACTIONS(1052), - [anon_sym_SLASH2] = ACTIONS(1052), - [anon_sym_mod2] = ACTIONS(1054), - [anon_sym_SLASH_SLASH2] = ACTIONS(1054), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_bit_DASHshl2] = ACTIONS(1054), - [anon_sym_bit_DASHshr2] = ACTIONS(1054), - [anon_sym_bit_DASHand2] = ACTIONS(1054), - [anon_sym_bit_DASHxor2] = ACTIONS(1054), - [anon_sym_bit_DASHor2] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), + [1485] = { + [sym_cell_path] = STATE(1889), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1485), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), + [anon_sym_DOT_DOT_LT] = ACTIONS(1831), + [anon_sym_null] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1831), + [aux_sym__val_number_token5] = ACTIONS(1831), + [aux_sym__val_number_token6] = ACTIONS(1831), + [anon_sym_0b] = ACTIONS(1829), + [anon_sym_0o] = ACTIONS(1829), + [anon_sym_0x] = ACTIONS(1829), + [sym_val_date] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), + [aux_sym_unquoted_token1] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1831), }, - [1509] = { - [sym_cell_path] = STATE(1814), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1509), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_err_GT_PIPE] = ACTIONS(2051), - [anon_sym_out_GT_PIPE] = ACTIONS(2051), - [anon_sym_e_GT_PIPE] = ACTIONS(2051), - [anon_sym_o_GT_PIPE] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), - [anon_sym_DOT_DOT_LT] = ACTIONS(2051), - [anon_sym_null] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2051), - [aux_sym__val_number_decimal_token3] = ACTIONS(2051), - [aux_sym__val_number_decimal_token4] = ACTIONS(2051), - [aux_sym__val_number_token1] = ACTIONS(2051), - [aux_sym__val_number_token2] = ACTIONS(2051), - [aux_sym__val_number_token3] = ACTIONS(2051), - [aux_sym__val_number_token4] = ACTIONS(2051), - [aux_sym__val_number_token5] = ACTIONS(2051), - [aux_sym__val_number_token6] = ACTIONS(2051), - [anon_sym_0b] = ACTIONS(2049), - [anon_sym_0o] = ACTIONS(2049), - [anon_sym_0x] = ACTIONS(2049), - [sym_val_date] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), - [anon_sym_err_GT] = ACTIONS(2049), - [anon_sym_out_GT] = ACTIONS(2049), - [anon_sym_e_GT] = ACTIONS(2049), - [anon_sym_o_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT] = ACTIONS(2049), - [anon_sym_err_GT_GT] = ACTIONS(2051), - [anon_sym_out_GT_GT] = ACTIONS(2051), - [anon_sym_e_GT_GT] = ACTIONS(2051), - [anon_sym_o_GT_GT] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2051), - [aux_sym_unquoted_token1] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2051), + [1486] = { + [sym_cell_path] = STATE(1850), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1486), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym__newline] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_err_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_GT_PIPE] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(1991), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), + [anon_sym_DOT_DOT_LT] = ACTIONS(1991), + [anon_sym_null] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token2] = ACTIONS(1991), + [aux_sym__val_number_decimal_token3] = ACTIONS(1991), + [aux_sym__val_number_decimal_token4] = ACTIONS(1991), + [aux_sym__val_number_token1] = ACTIONS(1991), + [aux_sym__val_number_token2] = ACTIONS(1991), + [aux_sym__val_number_token3] = ACTIONS(1991), + [aux_sym__val_number_token4] = ACTIONS(1991), + [aux_sym__val_number_token5] = ACTIONS(1991), + [aux_sym__val_number_token6] = ACTIONS(1991), + [anon_sym_0b] = ACTIONS(1989), + [anon_sym_0o] = ACTIONS(1989), + [anon_sym_0x] = ACTIONS(1989), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1989), + [anon_sym_out_GT] = ACTIONS(1989), + [anon_sym_e_GT] = ACTIONS(1989), + [anon_sym_o_GT] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT] = ACTIONS(1989), + [anon_sym_err_GT_GT] = ACTIONS(1991), + [anon_sym_out_GT_GT] = ACTIONS(1991), + [anon_sym_e_GT_GT] = ACTIONS(1991), + [anon_sym_o_GT_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1991), }, - [1510] = { - [sym__expr_parenthesized_immediate] = STATE(2655), - [sym__immediate_decimal] = STATE(2287), - [sym_val_variable] = STATE(2655), - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(1657), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1657), - [anon_sym_xor2] = ACTIONS(1657), - [anon_sym_or2] = ACTIONS(1657), - [anon_sym_not_DASHin2] = ACTIONS(1657), - [anon_sym_starts_DASHwith2] = ACTIONS(1657), - [anon_sym_ends_DASHwith2] = ACTIONS(1657), - [anon_sym_EQ_EQ2] = ACTIONS(1657), - [anon_sym_BANG_EQ2] = ACTIONS(1657), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1657), - [anon_sym_GT_EQ2] = ACTIONS(1657), - [anon_sym_EQ_TILDE2] = ACTIONS(1657), - [anon_sym_BANG_TILDE2] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1657), - [anon_sym_PLUS_PLUS2] = ACTIONS(1657), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1657), - [anon_sym_SLASH_SLASH2] = ACTIONS(1657), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1657), - [anon_sym_bit_DASHshr2] = ACTIONS(1657), - [anon_sym_bit_DASHand2] = ACTIONS(1657), - [anon_sym_bit_DASHxor2] = ACTIONS(1657), - [anon_sym_bit_DASHor2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(4879), - [aux_sym__immediate_decimal_token3] = ACTIONS(4879), - [aux_sym__immediate_decimal_token4] = ACTIONS(4881), - [aux_sym__immediate_decimal_token5] = ACTIONS(4883), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), - [aux_sym_unquoted_token2] = ACTIONS(1659), + [1487] = { + [sym__expr_parenthesized_immediate] = STATE(2489), + [sym__immediate_decimal] = STATE(2490), + [sym_val_variable] = STATE(2489), + [sym_comment] = STATE(1487), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym__newline] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_PIPE] = ACTIONS(1583), + [anon_sym_err_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_GT_PIPE] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1583), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1569), + [anon_sym_DASH2] = ACTIONS(1569), + [anon_sym_in2] = ACTIONS(1583), + [anon_sym_STAR2] = ACTIONS(1569), + [anon_sym_and2] = ACTIONS(1583), + [anon_sym_xor2] = ACTIONS(1583), + [anon_sym_or2] = ACTIONS(1583), + [anon_sym_not_DASHin2] = ACTIONS(1583), + [anon_sym_starts_DASHwith2] = ACTIONS(1583), + [anon_sym_ends_DASHwith2] = ACTIONS(1583), + [anon_sym_EQ_EQ2] = ACTIONS(1583), + [anon_sym_BANG_EQ2] = ACTIONS(1583), + [anon_sym_LT2] = ACTIONS(1569), + [anon_sym_LT_EQ2] = ACTIONS(1583), + [anon_sym_GT_EQ2] = ACTIONS(1583), + [anon_sym_EQ_TILDE2] = ACTIONS(1583), + [anon_sym_BANG_TILDE2] = ACTIONS(1583), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1583), + [anon_sym_PLUS_PLUS2] = ACTIONS(1583), + [anon_sym_SLASH2] = ACTIONS(1569), + [anon_sym_mod2] = ACTIONS(1583), + [anon_sym_SLASH_SLASH2] = ACTIONS(1583), + [anon_sym_PLUS2] = ACTIONS(1569), + [anon_sym_bit_DASHshl2] = ACTIONS(1583), + [anon_sym_bit_DASHshr2] = ACTIONS(1583), + [anon_sym_bit_DASHand2] = ACTIONS(1583), + [anon_sym_bit_DASHxor2] = ACTIONS(1583), + [anon_sym_bit_DASHor2] = ACTIONS(1583), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token3] = ACTIONS(4722), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1569), + [anon_sym_out_GT] = ACTIONS(1569), + [anon_sym_e_GT] = ACTIONS(1569), + [anon_sym_o_GT] = ACTIONS(1569), + [anon_sym_err_PLUSout_GT] = ACTIONS(1569), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1569), + [anon_sym_o_PLUSe_GT] = ACTIONS(1569), + [anon_sym_e_PLUSo_GT] = ACTIONS(1569), + [anon_sym_err_GT_GT] = ACTIONS(1583), + [anon_sym_out_GT_GT] = ACTIONS(1583), + [anon_sym_e_GT_GT] = ACTIONS(1583), + [anon_sym_o_GT_GT] = ACTIONS(1583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1583), [anon_sym_POUND] = ACTIONS(251), }, - [1511] = { - [sym_comment] = STATE(1511), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4885), - [aux_sym__immediate_decimal_token2] = ACTIONS(4887), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), - [aux_sym_unquoted_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), + [1488] = { + [sym_path] = STATE(1634), + [sym_comment] = STATE(1488), + [aux_sym_cell_path_repeat1] = STATE(1488), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_DOT_DOT_LT] = ACTIONS(943), + [anon_sym_null] = ACTIONS(943), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(943), + [aux_sym__val_number_token5] = ACTIONS(943), + [aux_sym__val_number_token6] = ACTIONS(943), + [anon_sym_0b] = ACTIONS(941), + [anon_sym_0o] = ACTIONS(941), + [anon_sym_0x] = ACTIONS(941), + [sym_val_date] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4724), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [aux_sym_unquoted_token1] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), }, - [1512] = { - [sym_cell_path] = STATE(1836), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1512), - [aux_sym_cell_path_repeat1] = STATE(1547), + [1489] = { + [sym_comment] = STATE(1489), + [sym__newline] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_err_GT_PIPE] = ACTIONS(2121), + [anon_sym_out_GT_PIPE] = ACTIONS(2121), + [anon_sym_e_GT_PIPE] = ACTIONS(2121), + [anon_sym_o_GT_PIPE] = ACTIONS(2121), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2121), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2121), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2121), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_RPAREN] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2121), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_DOT_DOT2] = ACTIONS(4727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT] = ACTIONS(2115), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2121), + [aux_sym__val_number_decimal_token3] = ACTIONS(2121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2121), + [aux_sym__val_number_token1] = ACTIONS(2121), + [aux_sym__val_number_token2] = ACTIONS(2121), + [aux_sym__val_number_token3] = ACTIONS(2121), + [aux_sym__val_number_token4] = ACTIONS(2121), + [aux_sym__val_number_token5] = ACTIONS(2121), + [aux_sym__val_number_token6] = ACTIONS(2121), + [anon_sym_0b] = ACTIONS(2115), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_err_GT] = ACTIONS(2115), + [anon_sym_out_GT] = ACTIONS(2115), + [anon_sym_e_GT] = ACTIONS(2115), + [anon_sym_o_GT] = ACTIONS(2115), + [anon_sym_err_PLUSout_GT] = ACTIONS(2115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2115), + [anon_sym_o_PLUSe_GT] = ACTIONS(2115), + [anon_sym_e_PLUSo_GT] = ACTIONS(2115), + [anon_sym_err_GT_GT] = ACTIONS(2121), + [anon_sym_out_GT_GT] = ACTIONS(2121), + [anon_sym_e_GT_GT] = ACTIONS(2121), + [anon_sym_o_GT_GT] = ACTIONS(2121), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2121), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2121), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2121), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2121), + [aux_sym_unquoted_token1] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2121), + }, + [1490] = { + [sym_cell_path] = STATE(1856), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1490), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1995), + [aux_sym__val_number_token5] = ACTIONS(1995), + [aux_sym__val_number_token6] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [aux_sym_unquoted_token1] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1995), + }, + [1491] = { + [sym_comment] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT] = ACTIONS(4731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4733), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1492] = { + [sym_cell_path] = STATE(1867), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1492), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym__newline] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1999), + [aux_sym__val_number_token5] = ACTIONS(1999), + [aux_sym__val_number_token6] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1997), + [anon_sym_out_GT] = ACTIONS(1997), + [anon_sym_e_GT] = ACTIONS(1997), + [anon_sym_o_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT] = ACTIONS(1997), + [anon_sym_err_GT_GT] = ACTIONS(1999), + [anon_sym_out_GT_GT] = ACTIONS(1999), + [anon_sym_e_GT_GT] = ACTIONS(1999), + [anon_sym_o_GT_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), + [aux_sym_unquoted_token1] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [1493] = { + [sym_cell_path] = STATE(1917), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1493), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1959), [sym__newline] = ACTIONS(1959), [anon_sym_SEMI] = ACTIONS(1959), [anon_sym_PIPE] = ACTIONS(1959), @@ -227395,14 +220203,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), [anon_sym_LBRACK] = ACTIONS(1959), [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), [anon_sym_DOLLAR] = ACTIONS(1957), [anon_sym_DASH_DASH] = ACTIONS(1959), [anon_sym_DASH2] = ACTIONS(1957), [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), [anon_sym_DOT_DOT_LT] = ACTIONS(1959), [anon_sym_null] = ACTIONS(1959), @@ -227427,6 +220232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1959), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), + [anon_sym_DOT2] = ACTIONS(4720), [anon_sym_err_GT] = ACTIONS(1957), [anon_sym_out_GT] = ACTIONS(1957), [anon_sym_e_GT] = ACTIONS(1957), @@ -227447,11 +220253,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1959), }, - [1513] = { - [sym_cell_path] = STATE(1813), - [sym_path] = STATE(1676), - [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1547), + [1494] = { + [sym_comment] = STATE(1494), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1729), + [anon_sym_in2] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1729), + [anon_sym_xor2] = ACTIONS(1729), + [anon_sym_or2] = ACTIONS(1729), + [anon_sym_not_DASHin2] = ACTIONS(1729), + [anon_sym_starts_DASHwith2] = ACTIONS(1729), + [anon_sym_ends_DASHwith2] = ACTIONS(1729), + [anon_sym_EQ_EQ2] = ACTIONS(1729), + [anon_sym_BANG_EQ2] = ACTIONS(1729), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1729), + [anon_sym_GT_EQ2] = ACTIONS(1729), + [anon_sym_EQ_TILDE2] = ACTIONS(1729), + [anon_sym_BANG_TILDE2] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_STAR_STAR2] = ACTIONS(1729), + [anon_sym_PLUS_PLUS2] = ACTIONS(1729), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1729), + [anon_sym_SLASH_SLASH2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1729), + [anon_sym_bit_DASHshr2] = ACTIONS(1729), + [anon_sym_bit_DASHand2] = ACTIONS(1729), + [anon_sym_bit_DASHxor2] = ACTIONS(1729), + [anon_sym_bit_DASHor2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4735), + [aux_sym__immediate_decimal_token2] = ACTIONS(4737), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + }, + [1495] = { + [sym_comment] = STATE(1495), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1496] = { + [sym_cell_path] = STATE(1872), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1496), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2003), + [sym__newline] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_err_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_GT_PIPE] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT] = ACTIONS(2003), + [anon_sym_null] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2003), + [aux_sym__val_number_token5] = ACTIONS(2003), + [aux_sym__val_number_token6] = ACTIONS(2003), + [anon_sym_0b] = ACTIONS(2001), + [anon_sym_0o] = ACTIONS(2001), + [anon_sym_0x] = ACTIONS(2001), + [sym_val_date] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2001), + [anon_sym_out_GT] = ACTIONS(2001), + [anon_sym_e_GT] = ACTIONS(2001), + [anon_sym_o_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT] = ACTIONS(2001), + [anon_sym_err_GT_GT] = ACTIONS(2003), + [anon_sym_out_GT_GT] = ACTIONS(2003), + [anon_sym_e_GT_GT] = ACTIONS(2003), + [anon_sym_o_GT_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), + [aux_sym_unquoted_token1] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [1497] = { + [sym__expr_parenthesized_immediate] = STATE(2472), + [sym__immediate_decimal] = STATE(2487), + [sym_val_variable] = STATE(2472), + [sym_comment] = STATE(1497), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym__newline] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_err_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_GT_PIPE] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1693), + [anon_sym_DASH2] = ACTIONS(1693), + [anon_sym_in2] = ACTIONS(1695), + [anon_sym_STAR2] = ACTIONS(1693), + [anon_sym_and2] = ACTIONS(1695), + [anon_sym_xor2] = ACTIONS(1695), + [anon_sym_or2] = ACTIONS(1695), + [anon_sym_not_DASHin2] = ACTIONS(1695), + [anon_sym_starts_DASHwith2] = ACTIONS(1695), + [anon_sym_ends_DASHwith2] = ACTIONS(1695), + [anon_sym_EQ_EQ2] = ACTIONS(1695), + [anon_sym_BANG_EQ2] = ACTIONS(1695), + [anon_sym_LT2] = ACTIONS(1693), + [anon_sym_LT_EQ2] = ACTIONS(1695), + [anon_sym_GT_EQ2] = ACTIONS(1695), + [anon_sym_EQ_TILDE2] = ACTIONS(1695), + [anon_sym_BANG_TILDE2] = ACTIONS(1695), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1695), + [anon_sym_PLUS_PLUS2] = ACTIONS(1695), + [anon_sym_SLASH2] = ACTIONS(1693), + [anon_sym_mod2] = ACTIONS(1695), + [anon_sym_SLASH_SLASH2] = ACTIONS(1695), + [anon_sym_PLUS2] = ACTIONS(1693), + [anon_sym_bit_DASHshl2] = ACTIONS(1695), + [anon_sym_bit_DASHshr2] = ACTIONS(1695), + [anon_sym_bit_DASHand2] = ACTIONS(1695), + [anon_sym_bit_DASHxor2] = ACTIONS(1695), + [anon_sym_bit_DASHor2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token3] = ACTIONS(4722), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1693), + [anon_sym_out_GT] = ACTIONS(1693), + [anon_sym_e_GT] = ACTIONS(1693), + [anon_sym_o_GT] = ACTIONS(1693), + [anon_sym_err_PLUSout_GT] = ACTIONS(1693), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1693), + [anon_sym_o_PLUSe_GT] = ACTIONS(1693), + [anon_sym_e_PLUSo_GT] = ACTIONS(1693), + [anon_sym_err_GT_GT] = ACTIONS(1695), + [anon_sym_out_GT_GT] = ACTIONS(1695), + [anon_sym_e_GT_GT] = ACTIONS(1695), + [anon_sym_o_GT_GT] = ACTIONS(1695), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1695), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1695), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1695), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1695), + [anon_sym_POUND] = ACTIONS(251), + }, + [1498] = { + [sym_cell_path] = STATE(1900), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1498), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym__newline] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_err_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_GT_PIPE] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_DASH2] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), + [anon_sym_DOT_DOT_LT] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [aux_sym__val_number_token4] = ACTIONS(2007), + [aux_sym__val_number_token5] = ACTIONS(2007), + [aux_sym__val_number_token6] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2005), + [anon_sym_0o] = ACTIONS(2005), + [anon_sym_0x] = ACTIONS(2005), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2005), + [anon_sym_out_GT] = ACTIONS(2005), + [anon_sym_e_GT] = ACTIONS(2005), + [anon_sym_o_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT] = ACTIONS(2005), + [anon_sym_err_GT_GT] = ACTIONS(2007), + [anon_sym_out_GT_GT] = ACTIONS(2007), + [anon_sym_e_GT_GT] = ACTIONS(2007), + [anon_sym_o_GT_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), + [aux_sym_unquoted_token1] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2007), + }, + [1499] = { + [sym_comment] = STATE(1499), + [anon_sym_EQ] = ACTIONS(4739), + [anon_sym_PLUS_EQ] = ACTIONS(4741), + [anon_sym_DASH_EQ] = ACTIONS(4741), + [anon_sym_STAR_EQ] = ACTIONS(4741), + [anon_sym_SLASH_EQ] = ACTIONS(4741), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4741), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1500] = { + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(4743), + [anon_sym_PLUS_EQ] = ACTIONS(4745), + [anon_sym_DASH_EQ] = ACTIONS(4745), + [anon_sym_STAR_EQ] = ACTIONS(4745), + [anon_sym_SLASH_EQ] = ACTIONS(4745), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4745), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(4747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4749), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1501] = { + [sym_comment] = STATE(1501), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_DASH2] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT_DOT2] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [aux_sym__val_number_token4] = ACTIONS(2057), + [aux_sym__val_number_token5] = ACTIONS(2057), + [aux_sym__val_number_token6] = ACTIONS(2057), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2055), + [anon_sym_out_GT] = ACTIONS(2055), + [anon_sym_e_GT] = ACTIONS(2055), + [anon_sym_o_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT] = ACTIONS(2055), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [aux_sym_unquoted_token1] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2057), + }, + [1502] = { + [sym_cell_path] = STATE(1897), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1502), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2035), [sym__newline] = ACTIONS(2035), [anon_sym_SEMI] = ACTIONS(2035), [anon_sym_PIPE] = ACTIONS(2035), @@ -227465,14 +220824,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), [anon_sym_LBRACK] = ACTIONS(2035), [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_RPAREN] = ACTIONS(2035), [anon_sym_DOLLAR] = ACTIONS(2033), [anon_sym_DASH_DASH] = ACTIONS(2035), [anon_sym_DASH2] = ACTIONS(2033), [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_DOT] = ACTIONS(4841), [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), [anon_sym_DOT_DOT_LT] = ACTIONS(2035), [anon_sym_null] = ACTIONS(2035), @@ -227497,6 +220853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2035), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), + [anon_sym_DOT2] = ACTIONS(4720), [anon_sym_err_GT] = ACTIONS(2033), [anon_sym_out_GT] = ACTIONS(2033), [anon_sym_e_GT] = ACTIONS(2033), @@ -227517,289 +220874,1529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2035), }, + [1503] = { + [sym_comment] = STATE(1503), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1504] = { + [sym_cell_path] = STATE(1907), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1504), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2011), + [anon_sym_DASH2] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), + [anon_sym_DOT_DOT_LT] = ACTIONS(2011), + [anon_sym_null] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2011), + [aux_sym__val_number_decimal_token3] = ACTIONS(2011), + [aux_sym__val_number_decimal_token4] = ACTIONS(2011), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [aux_sym__val_number_token4] = ACTIONS(2011), + [aux_sym__val_number_token5] = ACTIONS(2011), + [aux_sym__val_number_token6] = ACTIONS(2011), + [anon_sym_0b] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2011), + [sym__str_single_quotes] = ACTIONS(2011), + [sym__str_back_ticks] = ACTIONS(2011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2009), + [anon_sym_out_GT] = ACTIONS(2009), + [anon_sym_e_GT] = ACTIONS(2009), + [anon_sym_o_GT] = ACTIONS(2009), + [anon_sym_err_PLUSout_GT] = ACTIONS(2009), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), + [anon_sym_o_PLUSe_GT] = ACTIONS(2009), + [anon_sym_e_PLUSo_GT] = ACTIONS(2009), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [aux_sym_unquoted_token1] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2011), + }, + [1505] = { + [sym_comment] = STATE(1505), + [sym__newline] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_err_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_GT_PIPE] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_DASH2] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4753), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4753), + [anon_sym_DOT_DOT_LT] = ACTIONS(4753), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [anon_sym_null] = ACTIONS(4751), + [anon_sym_true] = ACTIONS(4751), + [anon_sym_false] = ACTIONS(4751), + [aux_sym__val_number_decimal_token1] = ACTIONS(4753), + [aux_sym__val_number_decimal_token2] = ACTIONS(4751), + [aux_sym__val_number_decimal_token3] = ACTIONS(4751), + [aux_sym__val_number_decimal_token4] = ACTIONS(4751), + [aux_sym__val_number_token1] = ACTIONS(4751), + [aux_sym__val_number_token2] = ACTIONS(4751), + [aux_sym__val_number_token3] = ACTIONS(4751), + [aux_sym__val_number_token4] = ACTIONS(4751), + [aux_sym__val_number_token5] = ACTIONS(4751), + [aux_sym__val_number_token6] = ACTIONS(4751), + [anon_sym_0b] = ACTIONS(4753), + [anon_sym_0o] = ACTIONS(4753), + [anon_sym_0x] = ACTIONS(4753), + [sym_val_date] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [sym__str_single_quotes] = ACTIONS(4751), + [sym__str_back_ticks] = ACTIONS(4751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4751), + [anon_sym_err_GT] = ACTIONS(4753), + [anon_sym_out_GT] = ACTIONS(4753), + [anon_sym_e_GT] = ACTIONS(4753), + [anon_sym_o_GT] = ACTIONS(4753), + [anon_sym_err_PLUSout_GT] = ACTIONS(4753), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4753), + [anon_sym_o_PLUSe_GT] = ACTIONS(4753), + [anon_sym_e_PLUSo_GT] = ACTIONS(4753), + [anon_sym_err_GT_GT] = ACTIONS(4751), + [anon_sym_out_GT_GT] = ACTIONS(4751), + [anon_sym_e_GT_GT] = ACTIONS(4751), + [anon_sym_o_GT_GT] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4751), + [aux_sym_unquoted_token1] = ACTIONS(4753), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4751), + }, + [1506] = { + [sym_comment] = STATE(1506), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2174), + [anon_sym_DOT_DOT2] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2174), + [anon_sym_DOT_DOT_LT] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), + [anon_sym_null] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2176), + [aux_sym__val_number_decimal_token3] = ACTIONS(2176), + [aux_sym__val_number_decimal_token4] = ACTIONS(2176), + [aux_sym__val_number_token1] = ACTIONS(2176), + [aux_sym__val_number_token2] = ACTIONS(2176), + [aux_sym__val_number_token3] = ACTIONS(2176), + [aux_sym__val_number_token4] = ACTIONS(2176), + [aux_sym__val_number_token5] = ACTIONS(2176), + [aux_sym__val_number_token6] = ACTIONS(2176), + [anon_sym_0b] = ACTIONS(2174), + [anon_sym_0o] = ACTIONS(2174), + [anon_sym_0x] = ACTIONS(2174), + [sym_val_date] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym__str_single_quotes] = ACTIONS(2176), + [sym__str_back_ticks] = ACTIONS(2176), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), + [aux_sym_unquoted_token1] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2176), + }, + [1507] = { + [sym_comment] = STATE(1507), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4759), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1508] = { + [sym_comment] = STATE(1508), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [1509] = { + [sym_cell_path] = STATE(1928), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1509), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_DOT_DOT_LT] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), + }, + [1510] = { + [sym_comment] = STATE(1510), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_GT2] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(990), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_EQ_GT] = ACTIONS(990), + [anon_sym_STAR2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(990), + [anon_sym_xor2] = ACTIONS(990), + [anon_sym_or2] = ACTIONS(990), + [anon_sym_not_DASHin2] = ACTIONS(990), + [anon_sym_starts_DASHwith2] = ACTIONS(990), + [anon_sym_ends_DASHwith2] = ACTIONS(990), + [anon_sym_EQ_EQ2] = ACTIONS(990), + [anon_sym_BANG_EQ2] = ACTIONS(990), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ2] = ACTIONS(990), + [anon_sym_GT_EQ2] = ACTIONS(990), + [anon_sym_EQ_TILDE2] = ACTIONS(990), + [anon_sym_BANG_TILDE2] = ACTIONS(990), + [anon_sym_STAR_STAR2] = ACTIONS(990), + [anon_sym_PLUS_PLUS2] = ACTIONS(990), + [anon_sym_SLASH2] = ACTIONS(988), + [anon_sym_mod2] = ACTIONS(990), + [anon_sym_SLASH_SLASH2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_bit_DASHshl2] = ACTIONS(990), + [anon_sym_bit_DASHshr2] = ACTIONS(990), + [anon_sym_bit_DASHand2] = ACTIONS(990), + [anon_sym_bit_DASHxor2] = ACTIONS(990), + [anon_sym_bit_DASHor2] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(251), + }, + [1511] = { + [sym_comment] = STATE(1511), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4763), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + }, + [1512] = { + [sym_comment] = STATE(1512), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2170), + [anon_sym_DOT_DOT_LT] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2172), + [aux_sym__val_number_token5] = ACTIONS(2172), + [aux_sym__val_number_token6] = ACTIONS(2172), + [anon_sym_0b] = ACTIONS(2170), + [anon_sym_0o] = ACTIONS(2170), + [anon_sym_0x] = ACTIONS(2170), + [sym_val_date] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2170), + [anon_sym_out_GT] = ACTIONS(2170), + [anon_sym_e_GT] = ACTIONS(2170), + [anon_sym_o_GT] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT] = ACTIONS(2170), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [aux_sym_unquoted_token1] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2172), + }, + [1513] = { + [sym_cell_path] = STATE(1922), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1513), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym__newline] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_err_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_GT_PIPE] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_DASH2] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), + [anon_sym_DOT_DOT_LT] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [aux_sym__val_number_token4] = ACTIONS(2015), + [aux_sym__val_number_token5] = ACTIONS(2015), + [aux_sym__val_number_token6] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2013), + [anon_sym_0o] = ACTIONS(2013), + [anon_sym_0x] = ACTIONS(2013), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2015), + [anon_sym_out_GT_GT] = ACTIONS(2015), + [anon_sym_e_GT_GT] = ACTIONS(2015), + [anon_sym_o_GT_GT] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), + [aux_sym_unquoted_token1] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2015), + }, [1514] = { - [sym_cell_path] = STATE(1866), - [sym_path] = STATE(1676), + [sym_cell_path] = STATE(1923), + [sym_path] = STATE(1725), [sym_comment] = STATE(1514), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_DOT_DOT_LT] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(969), - [anon_sym_0o] = ACTIONS(969), - [anon_sym_0x] = ACTIONS(969), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [aux_sym_unquoted_token1] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym__newline] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_err_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_GT_PIPE] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_DASH2] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [aux_sym__val_number_token4] = ACTIONS(2019), + [aux_sym__val_number_token5] = ACTIONS(2019), + [aux_sym__val_number_token6] = ACTIONS(2019), + [anon_sym_0b] = ACTIONS(2017), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2017), + [anon_sym_out_GT] = ACTIONS(2017), + [anon_sym_e_GT] = ACTIONS(2017), + [anon_sym_o_GT] = ACTIONS(2017), + [anon_sym_err_PLUSout_GT] = ACTIONS(2017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), + [anon_sym_o_PLUSe_GT] = ACTIONS(2017), + [anon_sym_e_PLUSo_GT] = ACTIONS(2017), + [anon_sym_err_GT_GT] = ACTIONS(2019), + [anon_sym_out_GT_GT] = ACTIONS(2019), + [anon_sym_e_GT_GT] = ACTIONS(2019), + [anon_sym_o_GT_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), + [aux_sym_unquoted_token1] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2019), }, [1515] = { - [sym_cell_path] = STATE(1890), - [sym_path] = STATE(1676), + [sym_cell_path] = STATE(1903), + [sym_path] = STATE(1725), [sym_comment] = STATE(1515), - [aux_sym_cell_path_repeat1] = STATE(1547), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), + [anon_sym_DOT_DOT_LT] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1969), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1971), }, [1516] = { - [sym__expr_parenthesized_immediate] = STATE(2611), - [sym__immediate_decimal] = STATE(2648), - [sym_val_variable] = STATE(2611), + [sym_path] = STATE(1634), [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_STAR2] = ACTIONS(1565), - [anon_sym_and2] = ACTIONS(1579), - [anon_sym_xor2] = ACTIONS(1579), - [anon_sym_or2] = ACTIONS(1579), - [anon_sym_not_DASHin2] = ACTIONS(1579), - [anon_sym_starts_DASHwith2] = ACTIONS(1579), - [anon_sym_ends_DASHwith2] = ACTIONS(1579), - [anon_sym_EQ_EQ2] = ACTIONS(1579), - [anon_sym_BANG_EQ2] = ACTIONS(1579), - [anon_sym_LT2] = ACTIONS(1565), - [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_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1579), - [anon_sym_PLUS_PLUS2] = ACTIONS(1579), - [anon_sym_SLASH2] = ACTIONS(1565), - [anon_sym_mod2] = ACTIONS(1579), - [anon_sym_SLASH_SLASH2] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1565), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4889), - [aux_sym__immediate_decimal_token3] = ACTIONS(4889), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [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(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(251), + [aux_sym_cell_path_repeat1] = STATE(1488), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_null] = ACTIONS(950), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(948), + [anon_sym_0o] = ACTIONS(948), + [anon_sym_0x] = ACTIONS(948), + [sym_val_date] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4672), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [aux_sym_unquoted_token1] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), }, [1517] = { + [sym_cell_path] = STATE(1927), + [sym_path] = STATE(1725), [sym_comment] = STATE(1517), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_err_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_GT_PIPE] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), - [anon_sym_RPAREN] = ACTIONS(1769), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1769), - [anon_sym_in2] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1769), - [anon_sym_xor2] = ACTIONS(1769), - [anon_sym_or2] = ACTIONS(1769), - [anon_sym_not_DASHin2] = ACTIONS(1769), - [anon_sym_starts_DASHwith2] = ACTIONS(1769), - [anon_sym_ends_DASHwith2] = ACTIONS(1769), - [anon_sym_EQ_EQ2] = ACTIONS(1769), - [anon_sym_BANG_EQ2] = ACTIONS(1769), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1769), - [anon_sym_GT_EQ2] = ACTIONS(1769), - [anon_sym_EQ_TILDE2] = ACTIONS(1769), - [anon_sym_BANG_TILDE2] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_STAR_STAR2] = ACTIONS(1769), - [anon_sym_PLUS_PLUS2] = ACTIONS(1769), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1769), - [anon_sym_SLASH_SLASH2] = ACTIONS(1769), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1769), - [anon_sym_bit_DASHshr2] = ACTIONS(1769), - [anon_sym_bit_DASHand2] = ACTIONS(1769), - [anon_sym_bit_DASHxor2] = ACTIONS(1769), - [anon_sym_bit_DASHor2] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1769), - [anon_sym_out_GT_GT] = ACTIONS(1769), - [anon_sym_e_GT_GT] = ACTIONS(1769), - [anon_sym_o_GT_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym__newline] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_err_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_GT_PIPE] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2023), + [anon_sym_DASH2] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2023), + [anon_sym_DOT_DOT_LT] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [aux_sym__val_number_token4] = ACTIONS(2023), + [aux_sym__val_number_token5] = ACTIONS(2023), + [aux_sym__val_number_token6] = ACTIONS(2023), + [anon_sym_0b] = ACTIONS(2021), + [anon_sym_0o] = ACTIONS(2021), + [anon_sym_0x] = ACTIONS(2021), + [sym_val_date] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2021), + [anon_sym_out_GT] = ACTIONS(2021), + [anon_sym_e_GT] = ACTIONS(2021), + [anon_sym_o_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT] = ACTIONS(2021), + [anon_sym_err_GT_GT] = ACTIONS(2023), + [anon_sym_out_GT_GT] = ACTIONS(2023), + [anon_sym_e_GT_GT] = ACTIONS(2023), + [anon_sym_o_GT_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), + [aux_sym_unquoted_token1] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2023), }, [1518] = { - [sym_cell_path] = STATE(1907), - [sym_path] = STATE(1843), + [sym__expr_parenthesized_immediate] = STATE(7290), [sym_comment] = STATE(1518), - [aux_sym_cell_path_repeat1] = STATE(1624), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_in2] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(4765), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4767), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4767), + [sym_filesize_unit] = ACTIONS(4769), + [sym_duration_unit] = ACTIONS(4771), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token2] = ACTIONS(4773), + [anon_sym_POUND] = ACTIONS(251), + }, + [1519] = { + [sym_comment] = STATE(1519), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1601), + [anon_sym_in2] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1601), + [anon_sym_xor2] = ACTIONS(1601), + [anon_sym_or2] = ACTIONS(1601), + [anon_sym_not_DASHin2] = ACTIONS(1601), + [anon_sym_starts_DASHwith2] = ACTIONS(1601), + [anon_sym_ends_DASHwith2] = ACTIONS(1601), + [anon_sym_EQ_EQ2] = ACTIONS(1601), + [anon_sym_BANG_EQ2] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1601), + [anon_sym_GT_EQ2] = ACTIONS(1601), + [anon_sym_EQ_TILDE2] = ACTIONS(1601), + [anon_sym_BANG_TILDE2] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_STAR_STAR2] = ACTIONS(1601), + [anon_sym_PLUS_PLUS2] = ACTIONS(1601), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1601), + [anon_sym_SLASH_SLASH2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1601), + [anon_sym_bit_DASHshr2] = ACTIONS(1601), + [anon_sym_bit_DASHand2] = ACTIONS(1601), + [anon_sym_bit_DASHxor2] = ACTIONS(1601), + [anon_sym_bit_DASHor2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4702), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), + }, + [1520] = { + [sym_cell_path] = STATE(1906), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1520), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym__newline] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_err_GT_PIPE] = ACTIONS(1975), + [anon_sym_out_GT_PIPE] = ACTIONS(1975), + [anon_sym_e_GT_PIPE] = ACTIONS(1975), + [anon_sym_o_GT_PIPE] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), + [anon_sym_DOT_DOT_LT] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1975), + [anon_sym_false] = ACTIONS(1975), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1975), + [aux_sym__val_number_decimal_token3] = ACTIONS(1975), + [aux_sym__val_number_decimal_token4] = ACTIONS(1975), + [aux_sym__val_number_token1] = ACTIONS(1975), + [aux_sym__val_number_token2] = ACTIONS(1975), + [aux_sym__val_number_token3] = ACTIONS(1975), + [aux_sym__val_number_token4] = ACTIONS(1975), + [aux_sym__val_number_token5] = ACTIONS(1975), + [aux_sym__val_number_token6] = ACTIONS(1975), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [sym__str_single_quotes] = ACTIONS(1975), + [sym__str_back_ticks] = ACTIONS(1975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1973), + [anon_sym_out_GT] = ACTIONS(1973), + [anon_sym_e_GT] = ACTIONS(1973), + [anon_sym_o_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT] = ACTIONS(1973), + [anon_sym_err_GT_GT] = ACTIONS(1975), + [anon_sym_out_GT_GT] = ACTIONS(1975), + [anon_sym_e_GT_GT] = ACTIONS(1975), + [anon_sym_o_GT_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1975), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1975), + }, + [1521] = { + [sym_comment] = STATE(1521), + [anon_sym_EQ] = ACTIONS(4775), + [anon_sym_PLUS_EQ] = ACTIONS(4777), + [anon_sym_DASH_EQ] = ACTIONS(4777), + [anon_sym_STAR_EQ] = ACTIONS(4777), + [anon_sym_SLASH_EQ] = ACTIONS(4777), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4777), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1522] = { + [sym_cell_path] = STATE(1938), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1522), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym__newline] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_err_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_GT_PIPE] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), + [anon_sym_DOT_DOT_LT] = ACTIONS(1979), + [anon_sym_null] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1977), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1979), + [aux_sym__val_number_token5] = ACTIONS(1979), + [aux_sym__val_number_token6] = ACTIONS(1979), + [anon_sym_0b] = ACTIONS(1977), + [anon_sym_0o] = ACTIONS(1977), + [anon_sym_0x] = ACTIONS(1977), + [sym_val_date] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1977), + [anon_sym_out_GT] = ACTIONS(1977), + [anon_sym_e_GT] = ACTIONS(1977), + [anon_sym_o_GT] = ACTIONS(1977), + [anon_sym_err_PLUSout_GT] = ACTIONS(1977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), + [anon_sym_o_PLUSe_GT] = ACTIONS(1977), + [anon_sym_e_PLUSo_GT] = ACTIONS(1977), + [anon_sym_err_GT_GT] = ACTIONS(1979), + [anon_sym_out_GT_GT] = ACTIONS(1979), + [anon_sym_e_GT_GT] = ACTIONS(1979), + [anon_sym_o_GT_GT] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [aux_sym_unquoted_token1] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [1523] = { + [sym_cell_path] = STATE(1891), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1523), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym__newline] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_err_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_GT_PIPE] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_DASH2] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), + [anon_sym_DOT_DOT_LT] = ACTIONS(1983), + [anon_sym_null] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1983), + [anon_sym_false] = ACTIONS(1983), + [aux_sym__val_number_decimal_token1] = ACTIONS(1981), + [aux_sym__val_number_decimal_token2] = ACTIONS(1983), + [aux_sym__val_number_decimal_token3] = ACTIONS(1983), + [aux_sym__val_number_decimal_token4] = ACTIONS(1983), + [aux_sym__val_number_token1] = ACTIONS(1983), + [aux_sym__val_number_token2] = ACTIONS(1983), + [aux_sym__val_number_token3] = ACTIONS(1983), + [aux_sym__val_number_token4] = ACTIONS(1983), + [aux_sym__val_number_token5] = ACTIONS(1983), + [aux_sym__val_number_token6] = ACTIONS(1983), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1983), + [sym__str_single_quotes] = ACTIONS(1983), + [sym__str_back_ticks] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1981), + [anon_sym_out_GT] = ACTIONS(1981), + [anon_sym_e_GT] = ACTIONS(1981), + [anon_sym_o_GT] = ACTIONS(1981), + [anon_sym_err_PLUSout_GT] = ACTIONS(1981), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1981), + [anon_sym_o_PLUSe_GT] = ACTIONS(1981), + [anon_sym_e_PLUSo_GT] = ACTIONS(1981), + [anon_sym_err_GT_GT] = ACTIONS(1983), + [anon_sym_out_GT_GT] = ACTIONS(1983), + [anon_sym_e_GT_GT] = ACTIONS(1983), + [anon_sym_o_GT_GT] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [aux_sym_unquoted_token1] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1983), + }, + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(990), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [aux_sym_unquoted_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), + }, + [1525] = { + [sym_cell_path] = STATE(1908), + [sym_path] = STATE(1725), + [sym_comment] = STATE(1525), + [aux_sym_cell_path_repeat1] = STATE(1604), [ts_builtin_sym_end] = ACTIONS(1947), [sym__newline] = ACTIONS(1947), [anon_sym_SEMI] = ACTIONS(1947), @@ -227819,7 +222416,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1945), [anon_sym_LBRACE] = ACTIONS(1947), [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(4891), [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), [anon_sym_DOT_DOT_LT] = ACTIONS(1947), [anon_sym_null] = ACTIONS(1947), @@ -227844,6 +222440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1947), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(4720), [anon_sym_err_GT] = ACTIONS(1945), [anon_sym_out_GT] = ACTIONS(1945), [anon_sym_e_GT] = ACTIONS(1945), @@ -227864,629 +222461,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1947), }, - [1519] = { - [sym__expr_parenthesized_immediate] = STATE(2594), - [sym__immediate_decimal] = STATE(2598), - [sym_val_variable] = STATE(2594), - [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = 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(4877), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_in2] = ACTIONS(1685), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1685), - [anon_sym_xor2] = ACTIONS(1685), - [anon_sym_or2] = ACTIONS(1685), - [anon_sym_not_DASHin2] = ACTIONS(1685), - [anon_sym_starts_DASHwith2] = ACTIONS(1685), - [anon_sym_ends_DASHwith2] = ACTIONS(1685), - [anon_sym_EQ_EQ2] = ACTIONS(1685), - [anon_sym_BANG_EQ2] = ACTIONS(1685), - [anon_sym_LT2] = ACTIONS(1677), - [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_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1685), - [anon_sym_PLUS_PLUS2] = ACTIONS(1685), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1685), - [anon_sym_SLASH_SLASH2] = ACTIONS(1685), - [anon_sym_PLUS2] = ACTIONS(1677), - [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(4889), - [aux_sym__immediate_decimal_token3] = ACTIONS(4889), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [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(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(251), - }, - [1520] = { - [sym__expr_parenthesized_immediate] = STATE(2604), - [sym__immediate_decimal] = STATE(2613), - [sym_val_variable] = STATE(2604), - [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(1741), - [sym__newline] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_err_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_GT_PIPE] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1739), - [anon_sym_DASH2] = ACTIONS(1739), - [anon_sym_in2] = ACTIONS(1741), - [anon_sym_STAR2] = ACTIONS(1739), - [anon_sym_and2] = ACTIONS(1741), - [anon_sym_xor2] = ACTIONS(1741), - [anon_sym_or2] = ACTIONS(1741), - [anon_sym_not_DASHin2] = ACTIONS(1741), - [anon_sym_starts_DASHwith2] = ACTIONS(1741), - [anon_sym_ends_DASHwith2] = ACTIONS(1741), - [anon_sym_EQ_EQ2] = ACTIONS(1741), - [anon_sym_BANG_EQ2] = ACTIONS(1741), - [anon_sym_LT2] = ACTIONS(1739), - [anon_sym_LT_EQ2] = ACTIONS(1741), - [anon_sym_GT_EQ2] = ACTIONS(1741), - [anon_sym_EQ_TILDE2] = ACTIONS(1741), - [anon_sym_BANG_TILDE2] = ACTIONS(1741), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1741), - [anon_sym_PLUS_PLUS2] = ACTIONS(1741), - [anon_sym_SLASH2] = ACTIONS(1739), - [anon_sym_mod2] = ACTIONS(1741), - [anon_sym_SLASH_SLASH2] = ACTIONS(1741), - [anon_sym_PLUS2] = ACTIONS(1739), - [anon_sym_bit_DASHshl2] = ACTIONS(1741), - [anon_sym_bit_DASHshr2] = ACTIONS(1741), - [anon_sym_bit_DASHand2] = ACTIONS(1741), - [anon_sym_bit_DASHxor2] = ACTIONS(1741), - [anon_sym_bit_DASHor2] = ACTIONS(1741), - [aux_sym__immediate_decimal_token1] = ACTIONS(4889), - [aux_sym__immediate_decimal_token3] = ACTIONS(4889), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(1739), - [anon_sym_out_GT] = ACTIONS(1739), - [anon_sym_e_GT] = ACTIONS(1739), - [anon_sym_o_GT] = ACTIONS(1739), - [anon_sym_err_PLUSout_GT] = ACTIONS(1739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1739), - [anon_sym_o_PLUSe_GT] = ACTIONS(1739), - [anon_sym_e_PLUSo_GT] = ACTIONS(1739), - [anon_sym_err_GT_GT] = ACTIONS(1741), - [anon_sym_out_GT_GT] = ACTIONS(1741), - [anon_sym_e_GT_GT] = ACTIONS(1741), - [anon_sym_o_GT_GT] = ACTIONS(1741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1741), - [anon_sym_POUND] = ACTIONS(251), - }, - [1521] = { - [sym_cell_path] = STATE(1961), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1521), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(2055), - [sym__newline] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_err_GT_PIPE] = ACTIONS(2055), - [anon_sym_out_GT_PIPE] = ACTIONS(2055), - [anon_sym_e_GT_PIPE] = ACTIONS(2055), - [anon_sym_o_GT_PIPE] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2053), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [anon_sym_DASH2] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), - [anon_sym_DOT_DOT_LT] = ACTIONS(2055), - [anon_sym_null] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(2055), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_decimal_token4] = ACTIONS(2055), - [aux_sym__val_number_token1] = ACTIONS(2055), - [aux_sym__val_number_token2] = ACTIONS(2055), - [aux_sym__val_number_token3] = ACTIONS(2055), - [aux_sym__val_number_token4] = ACTIONS(2055), - [aux_sym__val_number_token5] = ACTIONS(2055), - [aux_sym__val_number_token6] = ACTIONS(2055), - [anon_sym_0b] = ACTIONS(2053), - [anon_sym_0o] = ACTIONS(2053), - [anon_sym_0x] = ACTIONS(2053), - [sym_val_date] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [sym__str_single_quotes] = ACTIONS(2055), - [sym__str_back_ticks] = ACTIONS(2055), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2055), - [anon_sym_err_GT] = ACTIONS(2053), - [anon_sym_out_GT] = ACTIONS(2053), - [anon_sym_e_GT] = ACTIONS(2053), - [anon_sym_o_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT] = ACTIONS(2053), - [anon_sym_err_GT_GT] = ACTIONS(2055), - [anon_sym_out_GT_GT] = ACTIONS(2055), - [anon_sym_e_GT_GT] = ACTIONS(2055), - [anon_sym_o_GT_GT] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2055), - [aux_sym_unquoted_token1] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2055), - }, - [1522] = { - [sym__expr_parenthesized_immediate] = STATE(2639), - [sym__immediate_decimal] = STATE(2647), - [sym_val_variable] = STATE(2639), - [sym_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_err_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_GT_PIPE] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_in2] = ACTIONS(1745), - [anon_sym_STAR2] = ACTIONS(1743), - [anon_sym_and2] = ACTIONS(1745), - [anon_sym_xor2] = ACTIONS(1745), - [anon_sym_or2] = ACTIONS(1745), - [anon_sym_not_DASHin2] = ACTIONS(1745), - [anon_sym_starts_DASHwith2] = ACTIONS(1745), - [anon_sym_ends_DASHwith2] = ACTIONS(1745), - [anon_sym_EQ_EQ2] = ACTIONS(1745), - [anon_sym_BANG_EQ2] = ACTIONS(1745), - [anon_sym_LT2] = ACTIONS(1743), - [anon_sym_LT_EQ2] = ACTIONS(1745), - [anon_sym_GT_EQ2] = ACTIONS(1745), - [anon_sym_EQ_TILDE2] = ACTIONS(1745), - [anon_sym_BANG_TILDE2] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1745), - [anon_sym_PLUS_PLUS2] = ACTIONS(1745), - [anon_sym_SLASH2] = ACTIONS(1743), - [anon_sym_mod2] = ACTIONS(1745), - [anon_sym_SLASH_SLASH2] = ACTIONS(1745), - [anon_sym_PLUS2] = ACTIONS(1743), - [anon_sym_bit_DASHshl2] = ACTIONS(1745), - [anon_sym_bit_DASHshr2] = ACTIONS(1745), - [anon_sym_bit_DASHand2] = ACTIONS(1745), - [anon_sym_bit_DASHxor2] = ACTIONS(1745), - [anon_sym_bit_DASHor2] = ACTIONS(1745), - [aux_sym__immediate_decimal_token1] = ACTIONS(4889), - [aux_sym__immediate_decimal_token3] = ACTIONS(4889), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(1743), - [anon_sym_out_GT] = ACTIONS(1743), - [anon_sym_e_GT] = ACTIONS(1743), - [anon_sym_o_GT] = ACTIONS(1743), - [anon_sym_err_PLUSout_GT] = ACTIONS(1743), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1743), - [anon_sym_o_PLUSe_GT] = ACTIONS(1743), - [anon_sym_e_PLUSo_GT] = ACTIONS(1743), - [anon_sym_err_GT_GT] = ACTIONS(1745), - [anon_sym_out_GT_GT] = ACTIONS(1745), - [anon_sym_e_GT_GT] = ACTIONS(1745), - [anon_sym_o_GT_GT] = ACTIONS(1745), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1745), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1745), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1745), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - }, - [1523] = { - [sym__expr_parenthesized_immediate] = STATE(2655), - [sym__immediate_decimal] = STATE(2657), - [sym_val_variable] = STATE(2655), - [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(1657), - [sym__newline] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_err_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_GT_PIPE] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1657), - [anon_sym_xor2] = ACTIONS(1657), - [anon_sym_or2] = ACTIONS(1657), - [anon_sym_not_DASHin2] = ACTIONS(1657), - [anon_sym_starts_DASHwith2] = ACTIONS(1657), - [anon_sym_ends_DASHwith2] = ACTIONS(1657), - [anon_sym_EQ_EQ2] = ACTIONS(1657), - [anon_sym_BANG_EQ2] = ACTIONS(1657), - [anon_sym_LT2] = ACTIONS(1645), - [anon_sym_LT_EQ2] = ACTIONS(1657), - [anon_sym_GT_EQ2] = ACTIONS(1657), - [anon_sym_EQ_TILDE2] = ACTIONS(1657), - [anon_sym_BANG_TILDE2] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1657), - [anon_sym_PLUS_PLUS2] = ACTIONS(1657), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1657), - [anon_sym_SLASH_SLASH2] = ACTIONS(1657), - [anon_sym_PLUS2] = ACTIONS(1645), - [anon_sym_bit_DASHshl2] = ACTIONS(1657), - [anon_sym_bit_DASHshr2] = ACTIONS(1657), - [anon_sym_bit_DASHand2] = ACTIONS(1657), - [anon_sym_bit_DASHxor2] = ACTIONS(1657), - [anon_sym_bit_DASHor2] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(4889), - [aux_sym__immediate_decimal_token3] = ACTIONS(4889), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(1645), - [anon_sym_out_GT] = ACTIONS(1645), - [anon_sym_e_GT] = ACTIONS(1645), - [anon_sym_o_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT] = ACTIONS(1645), - [anon_sym_err_GT_GT] = ACTIONS(1657), - [anon_sym_out_GT_GT] = ACTIONS(1657), - [anon_sym_e_GT_GT] = ACTIONS(1657), - [anon_sym_o_GT_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(251), - }, - [1524] = { - [sym_comment] = STATE(1524), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), - }, - [1525] = { - [sym_cell_path] = STATE(1975), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1525), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_LT] = ACTIONS(1889), - [anon_sym_null] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym__val_number_decimal_token1] = ACTIONS(1887), - [aux_sym__val_number_decimal_token2] = ACTIONS(1889), - [aux_sym__val_number_decimal_token3] = ACTIONS(1889), - [aux_sym__val_number_decimal_token4] = ACTIONS(1889), - [aux_sym__val_number_token1] = ACTIONS(1889), - [aux_sym__val_number_token2] = ACTIONS(1889), - [aux_sym__val_number_token3] = ACTIONS(1889), - [aux_sym__val_number_token4] = ACTIONS(1889), - [aux_sym__val_number_token5] = ACTIONS(1889), - [aux_sym__val_number_token6] = ACTIONS(1889), - [anon_sym_0b] = ACTIONS(1887), - [anon_sym_0o] = ACTIONS(1887), - [anon_sym_0x] = ACTIONS(1887), - [sym_val_date] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), - [anon_sym_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(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_unquoted_token1] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1889), - }, [1526] = { - [sym_cell_path] = STATE(2001), - [sym_path] = STATE(1843), [sym_comment] = STATE(1526), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(971), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(971), - [anon_sym_DASH2] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_DOT_DOT_LT] = ACTIONS(971), - [anon_sym_null] = ACTIONS(971), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [aux_sym__val_number_decimal_token1] = ACTIONS(969), - [aux_sym__val_number_decimal_token2] = ACTIONS(971), - [aux_sym__val_number_decimal_token3] = ACTIONS(971), - [aux_sym__val_number_decimal_token4] = ACTIONS(971), - [aux_sym__val_number_token1] = ACTIONS(971), - [aux_sym__val_number_token2] = ACTIONS(971), - [aux_sym__val_number_token3] = ACTIONS(971), - [aux_sym__val_number_token4] = ACTIONS(971), - [aux_sym__val_number_token5] = ACTIONS(971), - [aux_sym__val_number_token6] = ACTIONS(971), - [anon_sym_0b] = ACTIONS(969), - [anon_sym_0o] = ACTIONS(969), - [anon_sym_0x] = ACTIONS(969), - [sym_val_date] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(971), - [sym__str_single_quotes] = ACTIONS(971), - [sym__str_back_ticks] = ACTIONS(971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [aux_sym_unquoted_token1] = ACTIONS(969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(971), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1527] = { [sym_comment] = STATE(1527), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1779), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1779), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1779), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4895), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4694), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1528] = { [sym_comment] = STATE(1528), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(4779), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + }, + [1529] = { + [sym_comment] = STATE(1529), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1530] = { + [sym_comment] = STATE(1530), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -228554,918 +222806,1807 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [1529] = { - [sym_cell_path] = STATE(1978), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1529), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1893), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_DASH2] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_null] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [aux_sym__val_number_decimal_token1] = ACTIONS(1891), - [aux_sym__val_number_decimal_token2] = ACTIONS(1893), - [aux_sym__val_number_decimal_token3] = ACTIONS(1893), - [aux_sym__val_number_decimal_token4] = ACTIONS(1893), - [aux_sym__val_number_token1] = ACTIONS(1893), - [aux_sym__val_number_token2] = ACTIONS(1893), - [aux_sym__val_number_token3] = ACTIONS(1893), - [aux_sym__val_number_token4] = ACTIONS(1893), - [aux_sym__val_number_token5] = ACTIONS(1893), - [aux_sym__val_number_token6] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1891), - [anon_sym_0o] = ACTIONS(1891), - [anon_sym_0x] = ACTIONS(1891), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [aux_sym_unquoted_token1] = ACTIONS(1891), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [1530] = { - [sym_comment] = STATE(1530), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1052), - [anon_sym_0o] = ACTIONS(1052), - [anon_sym_0x] = ACTIONS(1052), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [aux_sym_unquoted_token1] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1054), - }, [1531] = { - [sym_cell_path] = STATE(1979), - [sym_path] = STATE(1843), [sym_comment] = STATE(1531), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_DASH2] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_null] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [aux_sym__val_number_decimal_token1] = ACTIONS(1895), - [aux_sym__val_number_decimal_token2] = ACTIONS(1897), - [aux_sym__val_number_decimal_token3] = ACTIONS(1897), - [aux_sym__val_number_decimal_token4] = ACTIONS(1897), - [aux_sym__val_number_token1] = ACTIONS(1897), - [aux_sym__val_number_token2] = ACTIONS(1897), - [aux_sym__val_number_token3] = ACTIONS(1897), - [aux_sym__val_number_token4] = ACTIONS(1897), - [aux_sym__val_number_token5] = ACTIONS(1897), - [aux_sym__val_number_token6] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1895), - [anon_sym_0o] = ACTIONS(1895), - [anon_sym_0x] = ACTIONS(1895), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), - [aux_sym_unquoted_token1] = ACTIONS(1895), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4781), + [aux_sym__immediate_decimal_token2] = ACTIONS(4783), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1532] = { + [sym_cell_path] = STATE(1888), + [sym_path] = STATE(1725), [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4859), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym__newline] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_err_GT_PIPE] = ACTIONS(1987), + [anon_sym_out_GT_PIPE] = ACTIONS(1987), + [anon_sym_e_GT_PIPE] = ACTIONS(1987), + [anon_sym_o_GT_PIPE] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1985), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), + [anon_sym_DOT_DOT_LT] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1987), + [anon_sym_false] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1985), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [aux_sym__val_number_token4] = ACTIONS(1987), + [aux_sym__val_number_token5] = ACTIONS(1987), + [aux_sym__val_number_token6] = ACTIONS(1987), + [anon_sym_0b] = ACTIONS(1985), + [anon_sym_0o] = ACTIONS(1985), + [anon_sym_0x] = ACTIONS(1985), + [sym_val_date] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1985), + [anon_sym_out_GT] = ACTIONS(1985), + [anon_sym_e_GT] = ACTIONS(1985), + [anon_sym_o_GT] = ACTIONS(1985), + [anon_sym_err_PLUSout_GT] = ACTIONS(1985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), + [anon_sym_o_PLUSe_GT] = ACTIONS(1985), + [anon_sym_e_PLUSo_GT] = ACTIONS(1985), + [anon_sym_err_GT_GT] = ACTIONS(1987), + [anon_sym_out_GT_GT] = ACTIONS(1987), + [anon_sym_e_GT_GT] = ACTIONS(1987), + [anon_sym_o_GT_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), + [aux_sym_unquoted_token1] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1987), }, [1533] = { [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), - [anon_sym_DOT_DOT_LT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1024), - [aux_sym__val_number_token5] = ACTIONS(1024), - [aux_sym__val_number_token6] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_EQ_GT] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(986), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), }, [1534] = { [sym_comment] = STATE(1534), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_DOT_DOT2] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2084), - [aux_sym__val_number_token5] = ACTIONS(2084), - [aux_sym__val_number_token6] = ACTIONS(2084), - [anon_sym_0b] = ACTIONS(2082), - [anon_sym_0o] = ACTIONS(2082), - [anon_sym_0x] = ACTIONS(2082), - [sym_val_date] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2082), - [anon_sym_out_GT] = ACTIONS(2082), - [anon_sym_e_GT] = ACTIONS(2082), - [anon_sym_o_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT] = ACTIONS(2082), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [aux_sym_unquoted_token1] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_GT2] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(982), + [anon_sym_STAR2] = ACTIONS(980), + [anon_sym_and2] = ACTIONS(982), + [anon_sym_xor2] = ACTIONS(982), + [anon_sym_or2] = ACTIONS(982), + [anon_sym_not_DASHin2] = ACTIONS(982), + [anon_sym_starts_DASHwith2] = ACTIONS(982), + [anon_sym_ends_DASHwith2] = ACTIONS(982), + [anon_sym_EQ_EQ2] = ACTIONS(982), + [anon_sym_BANG_EQ2] = ACTIONS(982), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ2] = ACTIONS(982), + [anon_sym_GT_EQ2] = ACTIONS(982), + [anon_sym_EQ_TILDE2] = ACTIONS(982), + [anon_sym_BANG_TILDE2] = ACTIONS(982), + [anon_sym_STAR_STAR2] = ACTIONS(982), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), + [anon_sym_SLASH2] = ACTIONS(980), + [anon_sym_mod2] = ACTIONS(982), + [anon_sym_SLASH_SLASH2] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_bit_DASHshl2] = ACTIONS(982), + [anon_sym_bit_DASHshr2] = ACTIONS(982), + [anon_sym_bit_DASHand2] = ACTIONS(982), + [anon_sym_bit_DASHxor2] = ACTIONS(982), + [anon_sym_bit_DASHor2] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), }, [1535] = { [sym_comment] = STATE(1535), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1765), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1601), + [anon_sym_in2] = ACTIONS(1601), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1601), + [anon_sym_xor2] = ACTIONS(1601), + [anon_sym_or2] = ACTIONS(1601), + [anon_sym_not_DASHin2] = ACTIONS(1601), + [anon_sym_starts_DASHwith2] = ACTIONS(1601), + [anon_sym_ends_DASHwith2] = ACTIONS(1601), + [anon_sym_EQ_EQ2] = ACTIONS(1601), + [anon_sym_BANG_EQ2] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1601), + [anon_sym_GT_EQ2] = ACTIONS(1601), + [anon_sym_EQ_TILDE2] = ACTIONS(1601), + [anon_sym_BANG_TILDE2] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_STAR_STAR2] = ACTIONS(1601), + [anon_sym_PLUS_PLUS2] = ACTIONS(1601), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1601), + [anon_sym_SLASH_SLASH2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1601), + [anon_sym_bit_DASHshr2] = ACTIONS(1601), + [anon_sym_bit_DASHand2] = ACTIONS(1601), + [anon_sym_bit_DASHxor2] = ACTIONS(1601), + [anon_sym_bit_DASHor2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT] = ACTIONS(4785), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4787), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), }, [1536] = { - [sym_cell_path] = STATE(1994), - [sym_path] = STATE(1843), + [sym__expr_parenthesized_immediate] = STATE(2493), + [sym__immediate_decimal] = STATE(2494), + [sym_val_variable] = STATE(2493), [sym_comment] = STATE(1536), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym__newline] = ACTIONS(1619), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_PIPE] = ACTIONS(1619), + [anon_sym_err_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_GT_PIPE] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1617), + [anon_sym_DASH2] = ACTIONS(1617), + [anon_sym_in2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1617), + [anon_sym_and2] = ACTIONS(1619), + [anon_sym_xor2] = ACTIONS(1619), + [anon_sym_or2] = ACTIONS(1619), + [anon_sym_not_DASHin2] = ACTIONS(1619), + [anon_sym_starts_DASHwith2] = ACTIONS(1619), + [anon_sym_ends_DASHwith2] = ACTIONS(1619), + [anon_sym_EQ_EQ2] = ACTIONS(1619), + [anon_sym_BANG_EQ2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1617), + [anon_sym_LT_EQ2] = ACTIONS(1619), + [anon_sym_GT_EQ2] = ACTIONS(1619), + [anon_sym_EQ_TILDE2] = ACTIONS(1619), + [anon_sym_BANG_TILDE2] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1617), + [anon_sym_mod2] = ACTIONS(1619), + [anon_sym_SLASH_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1617), + [anon_sym_bit_DASHshl2] = ACTIONS(1619), + [anon_sym_bit_DASHshr2] = ACTIONS(1619), + [anon_sym_bit_DASHand2] = ACTIONS(1619), + [anon_sym_bit_DASHxor2] = ACTIONS(1619), + [anon_sym_bit_DASHor2] = ACTIONS(1619), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token3] = ACTIONS(4722), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1617), + [anon_sym_out_GT] = ACTIONS(1617), + [anon_sym_e_GT] = ACTIONS(1617), + [anon_sym_o_GT] = ACTIONS(1617), + [anon_sym_err_PLUSout_GT] = ACTIONS(1617), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1617), + [anon_sym_o_PLUSe_GT] = ACTIONS(1617), + [anon_sym_e_PLUSo_GT] = ACTIONS(1617), + [anon_sym_err_GT_GT] = ACTIONS(1619), + [anon_sym_out_GT_GT] = ACTIONS(1619), + [anon_sym_e_GT_GT] = ACTIONS(1619), + [anon_sym_o_GT_GT] = ACTIONS(1619), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), }, [1537] = { - [sym_cell_path] = STATE(1970), - [sym_path] = STATE(1843), + [sym_cell_path] = STATE(1912), + [sym_path] = STATE(1725), [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1881), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_DASH2] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [anon_sym_null] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [aux_sym__val_number_decimal_token1] = ACTIONS(1879), - [aux_sym__val_number_decimal_token2] = ACTIONS(1881), - [aux_sym__val_number_decimal_token3] = ACTIONS(1881), - [aux_sym__val_number_decimal_token4] = ACTIONS(1881), - [aux_sym__val_number_token1] = ACTIONS(1881), - [aux_sym__val_number_token2] = ACTIONS(1881), - [aux_sym__val_number_token3] = ACTIONS(1881), - [aux_sym__val_number_token4] = ACTIONS(1881), - [aux_sym__val_number_token5] = ACTIONS(1881), - [aux_sym__val_number_token6] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1879), - [anon_sym_0o] = ACTIONS(1879), - [anon_sym_0x] = ACTIONS(1879), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), - [aux_sym_unquoted_token1] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1881), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(1967), + [sym__newline] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_err_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_GT_PIPE] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), + [anon_sym_DOT_DOT_LT] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1967), + [anon_sym_false] = ACTIONS(1967), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1967), + [aux_sym__val_number_decimal_token3] = ACTIONS(1967), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1967), + [aux_sym__val_number_token2] = ACTIONS(1967), + [aux_sym__val_number_token3] = ACTIONS(1967), + [aux_sym__val_number_token4] = ACTIONS(1967), + [aux_sym__val_number_token5] = ACTIONS(1967), + [aux_sym__val_number_token6] = ACTIONS(1967), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym__str_single_quotes] = ACTIONS(1967), + [sym__str_back_ticks] = ACTIONS(1967), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1967), + [anon_sym_out_GT_GT] = ACTIONS(1967), + [anon_sym_e_GT_GT] = ACTIONS(1967), + [anon_sym_o_GT_GT] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), + [aux_sym_unquoted_token1] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1967), }, [1538] = { + [sym_cell_path] = STATE(1932), + [sym_path] = STATE(1725), [sym_comment] = STATE(1538), - [anon_sym_EQ] = ACTIONS(4897), - [anon_sym_PLUS_EQ] = ACTIONS(4899), - [anon_sym_DASH_EQ] = ACTIONS(4899), - [anon_sym_STAR_EQ] = ACTIONS(4899), - [anon_sym_SLASH_EQ] = ACTIONS(4899), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4899), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym__newline] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_err_GT_PIPE] = ACTIONS(2027), + [anon_sym_out_GT_PIPE] = ACTIONS(2027), + [anon_sym_e_GT_PIPE] = ACTIONS(2027), + [anon_sym_o_GT_PIPE] = ACTIONS(2027), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2027), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2027), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2027), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2025), + [anon_sym_DASH_DASH] = ACTIONS(2027), + [anon_sym_DASH2] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2027), + [anon_sym_DOT_DOT_LT] = ACTIONS(2027), + [anon_sym_null] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2027), + [anon_sym_false] = ACTIONS(2027), + [aux_sym__val_number_decimal_token1] = ACTIONS(2025), + [aux_sym__val_number_decimal_token2] = ACTIONS(2027), + [aux_sym__val_number_decimal_token3] = ACTIONS(2027), + [aux_sym__val_number_decimal_token4] = ACTIONS(2027), + [aux_sym__val_number_token1] = ACTIONS(2027), + [aux_sym__val_number_token2] = ACTIONS(2027), + [aux_sym__val_number_token3] = ACTIONS(2027), + [aux_sym__val_number_token4] = ACTIONS(2027), + [aux_sym__val_number_token5] = ACTIONS(2027), + [aux_sym__val_number_token6] = ACTIONS(2027), + [anon_sym_0b] = ACTIONS(2025), + [anon_sym_0o] = ACTIONS(2025), + [anon_sym_0x] = ACTIONS(2025), + [sym_val_date] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(2027), + [sym__str_single_quotes] = ACTIONS(2027), + [sym__str_back_ticks] = ACTIONS(2027), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2027), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2025), + [anon_sym_out_GT] = ACTIONS(2025), + [anon_sym_e_GT] = ACTIONS(2025), + [anon_sym_o_GT] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT] = ACTIONS(2025), + [anon_sym_err_GT_GT] = ACTIONS(2027), + [anon_sym_out_GT_GT] = ACTIONS(2027), + [anon_sym_e_GT_GT] = ACTIONS(2027), + [anon_sym_o_GT_GT] = ACTIONS(2027), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2027), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2027), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2027), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2027), + [aux_sym_unquoted_token1] = ACTIONS(2025), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2027), }, [1539] = { - [sym_cell_path] = STATE(1982), - [sym_path] = STATE(1843), + [sym_cell_path] = STATE(1887), + [sym_path] = STATE(1725), [sym_comment] = STATE(1539), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1903), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [anon_sym_DOT_DOT_LT] = ACTIONS(1905), - [anon_sym_null] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1903), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [aux_sym__val_number_token4] = ACTIONS(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [anon_sym_0b] = ACTIONS(1903), - [anon_sym_0o] = ACTIONS(1903), - [anon_sym_0x] = ACTIONS(1903), - [sym_val_date] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), - [anon_sym_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(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), - [aux_sym_unquoted_token1] = ACTIONS(1903), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1905), + [aux_sym_cell_path_repeat1] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym__newline] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_err_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_GT_PIPE] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2029), + [anon_sym_DASH_DASH] = ACTIONS(2031), + [anon_sym_DASH2] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2029), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT] = ACTIONS(2031), + [anon_sym_null] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [aux_sym__val_number_decimal_token1] = ACTIONS(2029), + [aux_sym__val_number_decimal_token2] = ACTIONS(2031), + [aux_sym__val_number_decimal_token3] = ACTIONS(2031), + [aux_sym__val_number_decimal_token4] = ACTIONS(2031), + [aux_sym__val_number_token1] = ACTIONS(2031), + [aux_sym__val_number_token2] = ACTIONS(2031), + [aux_sym__val_number_token3] = ACTIONS(2031), + [aux_sym__val_number_token4] = ACTIONS(2031), + [aux_sym__val_number_token5] = ACTIONS(2031), + [aux_sym__val_number_token6] = ACTIONS(2031), + [anon_sym_0b] = ACTIONS(2029), + [anon_sym_0o] = ACTIONS(2029), + [anon_sym_0x] = ACTIONS(2029), + [sym_val_date] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(2029), + [anon_sym_out_GT] = ACTIONS(2029), + [anon_sym_e_GT] = ACTIONS(2029), + [anon_sym_o_GT] = ACTIONS(2029), + [anon_sym_err_PLUSout_GT] = ACTIONS(2029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), + [anon_sym_o_PLUSe_GT] = ACTIONS(2029), + [anon_sym_e_PLUSo_GT] = ACTIONS(2029), + [anon_sym_err_GT_GT] = ACTIONS(2031), + [anon_sym_out_GT_GT] = ACTIONS(2031), + [anon_sym_e_GT_GT] = ACTIONS(2031), + [anon_sym_o_GT_GT] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), + [aux_sym_unquoted_token1] = ACTIONS(2029), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2031), }, [1540] = { [sym_comment] = STATE(1540), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_DOT_DOT2] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2088), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2088), - [aux_sym__val_number_token1] = ACTIONS(2088), - [aux_sym__val_number_token2] = ACTIONS(2088), - [aux_sym__val_number_token3] = ACTIONS(2088), - [aux_sym__val_number_token4] = ACTIONS(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [anon_sym_0b] = ACTIONS(2086), - [anon_sym_0o] = ACTIONS(2086), - [anon_sym_0x] = ACTIONS(2086), - [sym_val_date] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym__str_single_quotes] = ACTIONS(2088), - [sym__str_back_ticks] = ACTIONS(2088), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2088), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [aux_sym_unquoted_token1] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2088), + [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_LBRACK] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), }, [1541] = { + [sym__expr_parenthesized_immediate] = STATE(2504), + [sym__immediate_decimal] = STATE(2518), + [sym_val_variable] = STATE(2504), [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(4901), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [1542] = { - [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token3] = ACTIONS(4722), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(251), + }, + [1542] = { + [sym__expr_parenthesized_immediate] = STATE(2483), + [sym__immediate_decimal] = STATE(2484), + [sym_val_variable] = STATE(2483), + [sym_comment] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(4612), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(4614), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token3] = ACTIONS(4722), + [aux_sym__immediate_decimal_token4] = ACTIONS(4620), + [aux_sym__immediate_decimal_token5] = ACTIONS(4622), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + }, + [1543] = { + [sym_comment] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), + }, + [1544] = { + [sym_comment] = STATE(1544), + [sym__newline] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_err_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_GT_PIPE] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2142), + [anon_sym_DOT_DOT2] = ACTIONS(4789), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2142), + [anon_sym_DOT_DOT_LT] = ACTIONS(2142), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4791), + [anon_sym_null] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2142), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2148), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2148), + [anon_sym_0b] = ACTIONS(2142), + [anon_sym_0o] = ACTIONS(2142), + [anon_sym_0x] = ACTIONS(2142), + [sym_val_date] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_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(2148), + [anon_sym_out_GT_GT] = ACTIONS(2148), + [anon_sym_e_GT_GT] = ACTIONS(2148), + [anon_sym_o_GT_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [aux_sym_unquoted_token1] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2148), + }, + [1545] = { + [sym_comment] = STATE(1545), + [sym__newline] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_err_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_GT_PIPE] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2150), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2150), + [anon_sym_DOT_DOT2] = ACTIONS(4793), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2150), + [anon_sym_DOT_DOT_LT] = ACTIONS(2150), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4795), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4795), + [anon_sym_null] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2156), + [anon_sym_false] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2150), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_0b] = ACTIONS(2150), + [anon_sym_0o] = ACTIONS(2150), + [anon_sym_0x] = ACTIONS(2150), + [sym_val_date] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2156), + [anon_sym_err_GT] = ACTIONS(2150), + [anon_sym_out_GT] = ACTIONS(2150), + [anon_sym_e_GT] = ACTIONS(2150), + [anon_sym_o_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT] = ACTIONS(2150), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [aux_sym_unquoted_token1] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2156), + }, + [1546] = { + [sym_comment] = STATE(1546), + [sym__newline] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_err_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_GT_PIPE] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2158), + [anon_sym_DOT_DOT2] = ACTIONS(4797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2158), + [anon_sym_DOT_DOT_LT] = ACTIONS(2158), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4799), + [anon_sym_null] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2158), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_0b] = ACTIONS(2158), + [anon_sym_0o] = ACTIONS(2158), + [anon_sym_0x] = ACTIONS(2158), + [sym_val_date] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(2158), + [anon_sym_out_GT] = ACTIONS(2158), + [anon_sym_e_GT] = ACTIONS(2158), + [anon_sym_o_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT] = ACTIONS(2158), + [anon_sym_err_GT_GT] = ACTIONS(2164), + [anon_sym_out_GT_GT] = ACTIONS(2164), + [anon_sym_e_GT_GT] = ACTIONS(2164), + [anon_sym_o_GT_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2164), + }, + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4801), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), + }, + [1548] = { + [sym_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_in2] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(4803), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + }, + [1549] = { + [sym_comment] = STATE(1549), + [anon_sym_EQ] = ACTIONS(4807), + [anon_sym_PLUS_EQ] = ACTIONS(4809), + [anon_sym_DASH_EQ] = ACTIONS(4809), + [anon_sym_STAR_EQ] = ACTIONS(4809), + [anon_sym_SLASH_EQ] = ACTIONS(4809), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4809), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1550] = { + [sym_cell_path] = STATE(2063), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1550), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_err_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_GT_PIPE] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_GT2] = ACTIONS(2029), + [anon_sym_DASH2] = ACTIONS(2031), + [anon_sym_in2] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_EQ_GT] = ACTIONS(2031), + [anon_sym_STAR2] = ACTIONS(2029), + [anon_sym_and2] = ACTIONS(2031), + [anon_sym_xor2] = ACTIONS(2031), + [anon_sym_or2] = ACTIONS(2031), + [anon_sym_not_DASHin2] = ACTIONS(2031), + [anon_sym_starts_DASHwith2] = ACTIONS(2031), + [anon_sym_ends_DASHwith2] = ACTIONS(2031), + [anon_sym_EQ_EQ2] = ACTIONS(2031), + [anon_sym_BANG_EQ2] = ACTIONS(2031), + [anon_sym_LT2] = ACTIONS(2029), + [anon_sym_LT_EQ2] = ACTIONS(2031), + [anon_sym_GT_EQ2] = ACTIONS(2031), + [anon_sym_EQ_TILDE2] = ACTIONS(2031), + [anon_sym_BANG_TILDE2] = ACTIONS(2031), + [anon_sym_STAR_STAR2] = ACTIONS(2031), + [anon_sym_PLUS_PLUS2] = ACTIONS(2031), + [anon_sym_SLASH2] = ACTIONS(2029), + [anon_sym_mod2] = ACTIONS(2031), + [anon_sym_SLASH_SLASH2] = ACTIONS(2031), + [anon_sym_PLUS2] = ACTIONS(2029), + [anon_sym_bit_DASHshl2] = ACTIONS(2031), + [anon_sym_bit_DASHshr2] = ACTIONS(2031), + [anon_sym_bit_DASHand2] = ACTIONS(2031), + [anon_sym_bit_DASHxor2] = ACTIONS(2031), + [anon_sym_bit_DASHor2] = ACTIONS(2031), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2029), + [anon_sym_out_GT] = ACTIONS(2029), + [anon_sym_e_GT] = ACTIONS(2029), + [anon_sym_o_GT] = ACTIONS(2029), + [anon_sym_err_PLUSout_GT] = ACTIONS(2029), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), + [anon_sym_o_PLUSe_GT] = ACTIONS(2029), + [anon_sym_e_PLUSo_GT] = ACTIONS(2029), + [anon_sym_err_GT_GT] = ACTIONS(2031), + [anon_sym_out_GT_GT] = ACTIONS(2031), + [anon_sym_e_GT_GT] = ACTIONS(2031), + [anon_sym_o_GT_GT] = ACTIONS(2031), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(251), + }, + [1551] = { + [sym_cell_path] = STATE(2057), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1551), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_err_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_GT_PIPE] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), + [anon_sym_RPAREN] = ACTIONS(2007), + [anon_sym_GT2] = ACTIONS(2005), + [anon_sym_DASH2] = ACTIONS(2007), + [anon_sym_in2] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_EQ_GT] = ACTIONS(2007), + [anon_sym_STAR2] = ACTIONS(2005), + [anon_sym_and2] = ACTIONS(2007), + [anon_sym_xor2] = ACTIONS(2007), + [anon_sym_or2] = ACTIONS(2007), + [anon_sym_not_DASHin2] = ACTIONS(2007), + [anon_sym_starts_DASHwith2] = ACTIONS(2007), + [anon_sym_ends_DASHwith2] = ACTIONS(2007), + [anon_sym_EQ_EQ2] = ACTIONS(2007), + [anon_sym_BANG_EQ2] = ACTIONS(2007), + [anon_sym_LT2] = ACTIONS(2005), + [anon_sym_LT_EQ2] = ACTIONS(2007), + [anon_sym_GT_EQ2] = ACTIONS(2007), + [anon_sym_EQ_TILDE2] = ACTIONS(2007), + [anon_sym_BANG_TILDE2] = ACTIONS(2007), + [anon_sym_STAR_STAR2] = ACTIONS(2007), + [anon_sym_PLUS_PLUS2] = ACTIONS(2007), + [anon_sym_SLASH2] = ACTIONS(2005), + [anon_sym_mod2] = ACTIONS(2007), + [anon_sym_SLASH_SLASH2] = ACTIONS(2007), + [anon_sym_PLUS2] = ACTIONS(2005), + [anon_sym_bit_DASHshl2] = ACTIONS(2007), + [anon_sym_bit_DASHshr2] = ACTIONS(2007), + [anon_sym_bit_DASHand2] = ACTIONS(2007), + [anon_sym_bit_DASHxor2] = ACTIONS(2007), + [anon_sym_bit_DASHor2] = ACTIONS(2007), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2005), + [anon_sym_out_GT] = ACTIONS(2005), + [anon_sym_e_GT] = ACTIONS(2005), + [anon_sym_o_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT] = ACTIONS(2005), + [anon_sym_err_GT_GT] = ACTIONS(2007), + [anon_sym_out_GT_GT] = ACTIONS(2007), + [anon_sym_e_GT_GT] = ACTIONS(2007), + [anon_sym_o_GT_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(251), + }, + [1552] = { + [sym_comment] = STATE(1552), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [aux_sym_unquoted_token4] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [1553] = { + [sym_comment] = STATE(1553), + [sym__newline] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_err_GT_PIPE] = ACTIONS(2216), + [anon_sym_out_GT_PIPE] = ACTIONS(2216), + [anon_sym_e_GT_PIPE] = ACTIONS(2216), + [anon_sym_o_GT_PIPE] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_0b] = ACTIONS(2214), + [anon_sym_0o] = ACTIONS(2214), + [anon_sym_0x] = ACTIONS(2214), + [sym_val_date] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym__str_single_quotes] = ACTIONS(2216), + [sym__str_back_ticks] = ACTIONS(2216), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2216), + [anon_sym_err_GT] = ACTIONS(2214), + [anon_sym_out_GT] = ACTIONS(2214), + [anon_sym_e_GT] = ACTIONS(2214), + [anon_sym_o_GT] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT] = ACTIONS(2214), + [anon_sym_err_GT_GT] = ACTIONS(2216), + [anon_sym_out_GT_GT] = ACTIONS(2216), + [anon_sym_e_GT_GT] = ACTIONS(2216), + [anon_sym_o_GT_GT] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2216), + [aux_sym_unquoted_token1] = ACTIONS(2214), + [aux_sym_unquoted_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2216), + }, + [1554] = { + [sym_path] = STATE(1725), + [sym_comment] = STATE(1554), + [aux_sym_cell_path_repeat1] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_DOT_DOT_LT] = ACTIONS(943), + [anon_sym_null] = ACTIONS(943), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(943), + [aux_sym__val_number_token5] = ACTIONS(943), + [aux_sym__val_number_token6] = ACTIONS(943), + [anon_sym_0b] = ACTIONS(941), + [anon_sym_0o] = ACTIONS(941), + [anon_sym_0x] = ACTIONS(941), + [sym_val_date] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4813), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [aux_sym_unquoted_token1] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(943), + }, + [1555] = { + [sym_comment] = STATE(1555), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1794), + [anon_sym_0o] = ACTIONS(1794), + [anon_sym_0x] = ACTIONS(1794), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1794), + [anon_sym_out_GT] = ACTIONS(1794), + [anon_sym_e_GT] = ACTIONS(1794), + [anon_sym_o_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT] = ACTIONS(1794), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [aux_sym_unquoted_token1] = ACTIONS(1794), + [aux_sym_unquoted_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1802), + }, + [1556] = { + [sym_cell_path] = STATE(2058), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1556), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2009), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_in2] = ACTIONS(2011), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2009), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2009), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2009), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2009), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2009), + [anon_sym_out_GT] = ACTIONS(2009), + [anon_sym_e_GT] = ACTIONS(2009), + [anon_sym_o_GT] = ACTIONS(2009), + [anon_sym_err_PLUSout_GT] = ACTIONS(2009), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), + [anon_sym_o_PLUSe_GT] = ACTIONS(2009), + [anon_sym_e_PLUSo_GT] = ACTIONS(2009), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(251), + }, + [1557] = { + [sym_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), [anon_sym_LPAREN] = ACTIONS(1020), [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_DASH_DASH] = ACTIONS(1020), @@ -229473,7 +224614,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1020), [anon_sym_DOT_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), [anon_sym_DOT_DOT_LT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), @@ -229520,491 +224660,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [1543] = { - [sym_cell_path] = STATE(1974), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1543), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_DASH2] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [anon_sym_null] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [aux_sym__val_number_decimal_token1] = ACTIONS(1883), - [aux_sym__val_number_decimal_token2] = ACTIONS(1885), - [aux_sym__val_number_decimal_token3] = ACTIONS(1885), - [aux_sym__val_number_decimal_token4] = ACTIONS(1885), - [aux_sym__val_number_token1] = ACTIONS(1885), - [aux_sym__val_number_token2] = ACTIONS(1885), - [aux_sym__val_number_token3] = ACTIONS(1885), - [aux_sym__val_number_token4] = ACTIONS(1885), - [aux_sym__val_number_token5] = ACTIONS(1885), - [aux_sym__val_number_token6] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1883), - [anon_sym_0o] = ACTIONS(1883), - [anon_sym_0x] = ACTIONS(1883), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_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(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_unquoted_token1] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [1544] = { - [sym_cell_path] = STATE(1959), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1544), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(2051), - [sym__newline] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_err_GT_PIPE] = ACTIONS(2051), - [anon_sym_out_GT_PIPE] = ACTIONS(2051), - [anon_sym_e_GT_PIPE] = ACTIONS(2051), - [anon_sym_o_GT_PIPE] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2051), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2051), - [anon_sym_DOT_DOT_LT] = ACTIONS(2051), - [anon_sym_null] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2051), - [aux_sym__val_number_decimal_token3] = ACTIONS(2051), - [aux_sym__val_number_decimal_token4] = ACTIONS(2051), - [aux_sym__val_number_token1] = ACTIONS(2051), - [aux_sym__val_number_token2] = ACTIONS(2051), - [aux_sym__val_number_token3] = ACTIONS(2051), - [aux_sym__val_number_token4] = ACTIONS(2051), - [aux_sym__val_number_token5] = ACTIONS(2051), - [aux_sym__val_number_token6] = ACTIONS(2051), - [anon_sym_0b] = ACTIONS(2049), - [anon_sym_0o] = ACTIONS(2049), - [anon_sym_0x] = ACTIONS(2049), - [sym_val_date] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2051), - [sym__str_single_quotes] = ACTIONS(2051), - [sym__str_back_ticks] = ACTIONS(2051), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2051), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), - [anon_sym_err_GT] = ACTIONS(2049), - [anon_sym_out_GT] = ACTIONS(2049), - [anon_sym_e_GT] = ACTIONS(2049), - [anon_sym_o_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT] = ACTIONS(2049), - [anon_sym_err_GT_GT] = ACTIONS(2051), - [anon_sym_out_GT_GT] = ACTIONS(2051), - [anon_sym_e_GT_GT] = ACTIONS(2051), - [anon_sym_o_GT_GT] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2051), - [aux_sym_unquoted_token1] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2051), - }, - [1545] = { - [sym_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_in2] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4903), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4905), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - }, - [1546] = { - [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(1016), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [1547] = { - [sym_path] = STATE(1676), - [sym_comment] = STATE(1547), - [aux_sym_cell_path_repeat1] = STATE(1551), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_null] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(982), - [anon_sym_0o] = ACTIONS(982), - [anon_sym_0x] = ACTIONS(982), - [sym_val_date] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), + [1558] = { + [sym_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(2057), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_DASH2] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT_DOT2] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2055), + [anon_sym_DOT_DOT_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [aux_sym__val_number_token4] = ACTIONS(2057), + [aux_sym__val_number_token5] = ACTIONS(2057), + [aux_sym__val_number_token6] = ACTIONS(2057), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2055), + [anon_sym_out_GT] = ACTIONS(2055), + [anon_sym_e_GT] = ACTIONS(2055), + [anon_sym_o_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT] = ACTIONS(2055), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [aux_sym_unquoted_token1] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2057), }, - [1548] = { - [sym_comment] = STATE(1548), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT2] = ACTIONS(4907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [aux_sym__val_number_token4] = ACTIONS(1036), - [aux_sym__val_number_token5] = ACTIONS(1036), - [aux_sym__val_number_token6] = ACTIONS(1036), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1036), + [1559] = { + [sym_comment] = STATE(1559), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, - [1549] = { - [sym_cell_path] = STATE(1983), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1549), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1911), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1911), - [anon_sym_DASH2] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), - [anon_sym_DOT_DOT_LT] = ACTIONS(1911), - [anon_sym_null] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [aux_sym__val_number_decimal_token1] = ACTIONS(1909), - [aux_sym__val_number_decimal_token2] = ACTIONS(1911), - [aux_sym__val_number_decimal_token3] = ACTIONS(1911), - [aux_sym__val_number_decimal_token4] = ACTIONS(1911), - [aux_sym__val_number_token1] = ACTIONS(1911), - [aux_sym__val_number_token2] = ACTIONS(1911), - [aux_sym__val_number_token3] = ACTIONS(1911), - [aux_sym__val_number_token4] = ACTIONS(1911), - [aux_sym__val_number_token5] = ACTIONS(1911), - [aux_sym__val_number_token6] = ACTIONS(1911), - [anon_sym_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1911), - [sym__str_single_quotes] = ACTIONS(1911), - [sym__str_back_ticks] = ACTIONS(1911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [aux_sym_unquoted_token1] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1911), + [1560] = { + [sym_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4733), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, - [1550] = { - [sym_comment] = STATE(1550), + [1561] = { + [sym_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(1773), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -230016,43 +224878,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1773), - [anon_sym_in2] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1773), - [anon_sym_xor2] = ACTIONS(1773), - [anon_sym_or2] = ACTIONS(1773), - [anon_sym_not_DASHin2] = ACTIONS(1773), - [anon_sym_starts_DASHwith2] = ACTIONS(1773), - [anon_sym_ends_DASHwith2] = ACTIONS(1773), - [anon_sym_EQ_EQ2] = ACTIONS(1773), - [anon_sym_BANG_EQ2] = ACTIONS(1773), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1773), - [anon_sym_GT_EQ2] = ACTIONS(1773), - [anon_sym_EQ_TILDE2] = ACTIONS(1773), - [anon_sym_BANG_TILDE2] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_STAR_STAR2] = ACTIONS(1773), - [anon_sym_PLUS_PLUS2] = ACTIONS(1773), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1773), - [anon_sym_SLASH_SLASH2] = ACTIONS(1773), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1773), - [anon_sym_bit_DASHshr2] = ACTIONS(1773), - [anon_sym_bit_DASHand2] = ACTIONS(1773), - [anon_sym_bit_DASHxor2] = ACTIONS(1773), - [anon_sym_bit_DASHor2] = ACTIONS(1773), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4911), - [aux_sym__immediate_decimal_token2] = ACTIONS(4913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), [anon_sym_err_GT] = ACTIONS(1771), [anon_sym_out_GT] = ACTIONS(1771), [anon_sym_e_GT] = ACTIONS(1771), @@ -230069,288 +224927,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, - [1551] = { - [sym_path] = STATE(1676), - [sym_comment] = STATE(1551), - [aux_sym_cell_path_repeat1] = STATE(1551), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(4915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_DOT_DOT_LT] = ACTIONS(977), - [anon_sym_null] = ACTIONS(977), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(977), - [aux_sym__val_number_token5] = ACTIONS(977), - [aux_sym__val_number_token6] = ACTIONS(977), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [aux_sym_unquoted_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), - }, - [1552] = { - [sym_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_in2] = ACTIONS(1663), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1663), - [anon_sym_xor2] = ACTIONS(1663), - [anon_sym_or2] = ACTIONS(1663), - [anon_sym_not_DASHin2] = ACTIONS(1663), - [anon_sym_starts_DASHwith2] = ACTIONS(1663), - [anon_sym_ends_DASHwith2] = ACTIONS(1663), - [anon_sym_EQ_EQ2] = ACTIONS(1663), - [anon_sym_BANG_EQ2] = ACTIONS(1663), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1663), - [anon_sym_GT_EQ2] = ACTIONS(1663), - [anon_sym_EQ_TILDE2] = ACTIONS(1663), - [anon_sym_BANG_TILDE2] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_STAR_STAR2] = ACTIONS(1663), - [anon_sym_PLUS_PLUS2] = ACTIONS(1663), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1663), - [anon_sym_SLASH_SLASH2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1663), - [anon_sym_bit_DASHshr2] = ACTIONS(1663), - [anon_sym_bit_DASHand2] = ACTIONS(1663), - [anon_sym_bit_DASHxor2] = ACTIONS(1663), - [anon_sym_bit_DASHor2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [aux_sym__immediate_decimal_token1] = ACTIONS(4918), - [aux_sym__immediate_decimal_token2] = ACTIONS(4920), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token2] = ACTIONS(1661), + [1562] = { + [sym_cell_path] = STATE(2061), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1562), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_err_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_GT_PIPE] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_GT2] = ACTIONS(2021), + [anon_sym_DASH2] = ACTIONS(2023), + [anon_sym_in2] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_EQ_GT] = ACTIONS(2023), + [anon_sym_STAR2] = ACTIONS(2021), + [anon_sym_and2] = ACTIONS(2023), + [anon_sym_xor2] = ACTIONS(2023), + [anon_sym_or2] = ACTIONS(2023), + [anon_sym_not_DASHin2] = ACTIONS(2023), + [anon_sym_starts_DASHwith2] = ACTIONS(2023), + [anon_sym_ends_DASHwith2] = ACTIONS(2023), + [anon_sym_EQ_EQ2] = ACTIONS(2023), + [anon_sym_BANG_EQ2] = ACTIONS(2023), + [anon_sym_LT2] = ACTIONS(2021), + [anon_sym_LT_EQ2] = ACTIONS(2023), + [anon_sym_GT_EQ2] = ACTIONS(2023), + [anon_sym_EQ_TILDE2] = ACTIONS(2023), + [anon_sym_BANG_TILDE2] = ACTIONS(2023), + [anon_sym_STAR_STAR2] = ACTIONS(2023), + [anon_sym_PLUS_PLUS2] = ACTIONS(2023), + [anon_sym_SLASH2] = ACTIONS(2021), + [anon_sym_mod2] = ACTIONS(2023), + [anon_sym_SLASH_SLASH2] = ACTIONS(2023), + [anon_sym_PLUS2] = ACTIONS(2021), + [anon_sym_bit_DASHshl2] = ACTIONS(2023), + [anon_sym_bit_DASHshr2] = ACTIONS(2023), + [anon_sym_bit_DASHand2] = ACTIONS(2023), + [anon_sym_bit_DASHxor2] = ACTIONS(2023), + [anon_sym_bit_DASHor2] = ACTIONS(2023), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2021), + [anon_sym_out_GT] = ACTIONS(2021), + [anon_sym_e_GT] = ACTIONS(2021), + [anon_sym_o_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT] = ACTIONS(2021), + [anon_sym_err_GT_GT] = ACTIONS(2023), + [anon_sym_out_GT_GT] = ACTIONS(2023), + [anon_sym_e_GT_GT] = ACTIONS(2023), + [anon_sym_o_GT_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), [anon_sym_POUND] = ACTIONS(251), }, - [1553] = { - [sym_cell_path] = STATE(1984), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_DASH2] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1919), - [anon_sym_DOT_DOT_LT] = ACTIONS(1919), - [anon_sym_null] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [aux_sym__val_number_decimal_token1] = ACTIONS(1917), - [aux_sym__val_number_decimal_token2] = ACTIONS(1919), - [aux_sym__val_number_decimal_token3] = ACTIONS(1919), - [aux_sym__val_number_decimal_token4] = ACTIONS(1919), - [aux_sym__val_number_token1] = ACTIONS(1919), - [aux_sym__val_number_token2] = ACTIONS(1919), - [aux_sym__val_number_token3] = ACTIONS(1919), - [aux_sym__val_number_token4] = ACTIONS(1919), - [aux_sym__val_number_token5] = ACTIONS(1919), - [aux_sym__val_number_token6] = ACTIONS(1919), - [anon_sym_0b] = ACTIONS(1917), - [anon_sym_0o] = ACTIONS(1917), - [anon_sym_0x] = ACTIONS(1917), - [sym_val_date] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym__str_single_quotes] = ACTIONS(1919), - [sym__str_back_ticks] = ACTIONS(1919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [aux_sym_unquoted_token1] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1919), + [1563] = { + [sym_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(4818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1000), }, - [1554] = { - [sym_cell_path] = STATE(1986), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1554), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1927), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [1564] = { + [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, - [1555] = { - [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(1773), + [1565] = { + [sym_comment] = STATE(1565), [sym__newline] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1773), [anon_sym_PIPE] = ACTIONS(1773), @@ -230364,16 +225151,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), [anon_sym_LBRACK] = ACTIONS(1773), [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1773), [anon_sym_DOLLAR] = ACTIONS(1771), [anon_sym_DASH_DASH] = ACTIONS(1773), [anon_sym_DASH2] = ACTIONS(1771), [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), [anon_sym_DOT_DOT] = ACTIONS(1771), [anon_sym_LPAREN2] = ACTIONS(1773), [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), [anon_sym_DOT_DOT_LT] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(4922), - [aux_sym__immediate_decimal_token2] = ACTIONS(4924), [anon_sym_null] = ACTIONS(1773), [anon_sym_true] = ACTIONS(1773), [anon_sym_false] = ACTIONS(1773), @@ -230417,6168 +225204,6708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1773), }, - [1556] = { - [sym_comment] = STATE(1556), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_EQ_GT] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [aux_sym_record_entry_token1] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - }, - [1557] = { - [sym_comment] = STATE(1557), - [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_LBRACK] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(4926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2098), - [anon_sym_DOT_DOT_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2104), - [aux_sym__val_number_token5] = ACTIONS(2104), - [aux_sym__val_number_token6] = ACTIONS(2104), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(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), - [aux_sym_unquoted_token1] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [1558] = { - [sym_comment] = STATE(1558), - [sym__newline] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [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(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_RPAREN] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_DASH2] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT2] = ACTIONS(4930), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT] = ACTIONS(2131), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4932), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4932), - [anon_sym_null] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2137), - [aux_sym__val_number_decimal_token3] = ACTIONS(2137), - [aux_sym__val_number_decimal_token4] = ACTIONS(2137), - [aux_sym__val_number_token1] = ACTIONS(2137), - [aux_sym__val_number_token2] = ACTIONS(2137), - [aux_sym__val_number_token3] = ACTIONS(2137), - [aux_sym__val_number_token4] = ACTIONS(2137), - [aux_sym__val_number_token5] = ACTIONS(2137), - [aux_sym__val_number_token6] = ACTIONS(2137), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [sym__str_single_quotes] = ACTIONS(2137), - [sym__str_back_ticks] = ACTIONS(2137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2137), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2137), - [anon_sym_err_GT] = ACTIONS(2131), - [anon_sym_out_GT] = ACTIONS(2131), - [anon_sym_e_GT] = ACTIONS(2131), - [anon_sym_o_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT] = ACTIONS(2131), - [anon_sym_err_GT_GT] = ACTIONS(2137), - [anon_sym_out_GT_GT] = ACTIONS(2137), - [anon_sym_e_GT_GT] = ACTIONS(2137), - [anon_sym_o_GT_GT] = ACTIONS(2137), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2137), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2137), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2137), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2137), - [aux_sym_unquoted_token1] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2137), - }, - [1559] = { - [sym_comment] = STATE(1559), - [sym__newline] = ACTIONS(2078), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_err_GT_PIPE] = ACTIONS(2078), - [anon_sym_out_GT_PIPE] = ACTIONS(2078), - [anon_sym_e_GT_PIPE] = ACTIONS(2078), - [anon_sym_o_GT_PIPE] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_RBRACE] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_DOT_DOT2] = ACTIONS(4934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), - [anon_sym_DOT_DOT_LT] = ACTIONS(2072), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4936), - [anon_sym_null] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2078), - [aux_sym__val_number_decimal_token3] = ACTIONS(2078), - [aux_sym__val_number_decimal_token4] = ACTIONS(2078), - [aux_sym__val_number_token1] = ACTIONS(2078), - [aux_sym__val_number_token2] = ACTIONS(2078), - [aux_sym__val_number_token3] = ACTIONS(2078), - [aux_sym__val_number_token4] = ACTIONS(2078), - [aux_sym__val_number_token5] = ACTIONS(2078), - [aux_sym__val_number_token6] = ACTIONS(2078), - [anon_sym_0b] = ACTIONS(2072), - [anon_sym_0o] = ACTIONS(2072), - [anon_sym_0x] = ACTIONS(2072), - [sym_val_date] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [sym__str_single_quotes] = ACTIONS(2078), - [sym__str_back_ticks] = ACTIONS(2078), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), - [anon_sym_err_GT] = ACTIONS(2072), - [anon_sym_out_GT] = ACTIONS(2072), - [anon_sym_e_GT] = ACTIONS(2072), - [anon_sym_o_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT] = ACTIONS(2072), - [anon_sym_err_GT_GT] = ACTIONS(2078), - [anon_sym_out_GT_GT] = ACTIONS(2078), - [anon_sym_e_GT_GT] = ACTIONS(2078), - [anon_sym_o_GT_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2078), - [aux_sym_unquoted_token1] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2078), - }, - [1560] = { - [sym__expr_parenthesized_immediate] = STATE(8201), - [sym_comment] = STATE(1560), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_in2] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(4938), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4940), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4940), - [sym_filesize_unit] = ACTIONS(4942), - [sym_duration_unit] = ACTIONS(4944), - [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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token2] = ACTIONS(4946), - [anon_sym_POUND] = ACTIONS(251), - }, - [1561] = { - [sym_cell_path] = STATE(1987), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1561), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1931), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_DASH_DASH] = ACTIONS(1931), - [anon_sym_DASH2] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1929), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [aux_sym__val_number_token4] = ACTIONS(1931), - [aux_sym__val_number_token5] = ACTIONS(1931), - [aux_sym__val_number_token6] = ACTIONS(1931), - [anon_sym_0b] = ACTIONS(1929), - [anon_sym_0o] = ACTIONS(1929), - [anon_sym_0x] = ACTIONS(1929), - [sym_val_date] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), - [aux_sym_unquoted_token1] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1931), - }, - [1562] = { - [sym_cell_path] = STATE(1965), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1562), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1871), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1871), - [anon_sym_0o] = ACTIONS(1871), - [anon_sym_0x] = ACTIONS(1871), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [1563] = { - [sym_cell_path] = STATE(1990), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1563), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1935), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1564] = { - [sym_cell_path] = STATE(1966), - [sym_path] = STATE(1843), - [sym_comment] = STATE(1564), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [aux_sym__val_number_token4] = ACTIONS(1877), - [aux_sym__val_number_token5] = ACTIONS(1877), - [aux_sym__val_number_token6] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_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(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1877), - }, - [1565] = { - [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, [1566] = { - [sym_cell_path] = STATE(1993), - [sym_path] = STATE(1843), [sym_comment] = STATE(1566), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1939), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), + [sym_raw_string_begin] = ACTIONS(1773), }, [1567] = { - [sym_cell_path] = STATE(1934), - [sym_path] = STATE(1843), [sym_comment] = STATE(1567), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [aux_sym__val_number_token4] = ACTIONS(1951), - [aux_sym__val_number_token5] = ACTIONS(1951), - [aux_sym__val_number_token6] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), + [ts_builtin_sym_end] = ACTIONS(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_LBRACK] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_DOT_DOT_LT] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), }, [1568] = { [sym_comment] = STATE(1568), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym__newline] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_err_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_GT_PIPE] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = ACTIONS(2222), + [anon_sym_0b] = ACTIONS(2218), + [anon_sym_0o] = ACTIONS(2218), + [anon_sym_0x] = ACTIONS(2218), + [sym_val_date] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2218), + [anon_sym_out_GT] = ACTIONS(2218), + [anon_sym_e_GT] = ACTIONS(2218), + [anon_sym_o_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT] = ACTIONS(2218), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [aux_sym_unquoted_token1] = ACTIONS(2218), + [aux_sym_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2222), }, [1569] = { [sym_comment] = STATE(1569), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_in2] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(2121), + [sym__newline] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_err_GT_PIPE] = ACTIONS(2121), + [anon_sym_out_GT_PIPE] = ACTIONS(2121), + [anon_sym_e_GT_PIPE] = ACTIONS(2121), + [anon_sym_o_GT_PIPE] = ACTIONS(2121), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2121), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2121), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2121), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(2115), + [anon_sym_DASH_DASH] = ACTIONS(2121), + [anon_sym_DASH2] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_DOT_DOT2] = ACTIONS(4822), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2115), + [anon_sym_DOT_DOT_LT] = ACTIONS(2115), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4824), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [aux_sym__val_number_decimal_token1] = ACTIONS(2115), + [aux_sym__val_number_decimal_token2] = ACTIONS(2121), + [aux_sym__val_number_decimal_token3] = ACTIONS(2121), + [aux_sym__val_number_decimal_token4] = ACTIONS(2121), + [aux_sym__val_number_token1] = ACTIONS(2121), + [aux_sym__val_number_token2] = ACTIONS(2121), + [aux_sym__val_number_token3] = ACTIONS(2121), + [aux_sym__val_number_token4] = ACTIONS(2121), + [aux_sym__val_number_token5] = ACTIONS(2121), + [aux_sym__val_number_token6] = ACTIONS(2121), + [anon_sym_0b] = ACTIONS(2115), + [anon_sym_0o] = ACTIONS(2115), + [anon_sym_0x] = ACTIONS(2115), + [sym_val_date] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2121), + [sym__str_single_quotes] = ACTIONS(2121), + [sym__str_back_ticks] = ACTIONS(2121), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2121), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2121), + [anon_sym_err_GT] = ACTIONS(2115), + [anon_sym_out_GT] = ACTIONS(2115), + [anon_sym_e_GT] = ACTIONS(2115), + [anon_sym_o_GT] = ACTIONS(2115), + [anon_sym_err_PLUSout_GT] = ACTIONS(2115), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2115), + [anon_sym_o_PLUSe_GT] = ACTIONS(2115), + [anon_sym_e_PLUSo_GT] = ACTIONS(2115), + [anon_sym_err_GT_GT] = ACTIONS(2121), + [anon_sym_out_GT_GT] = ACTIONS(2121), + [anon_sym_e_GT_GT] = ACTIONS(2121), + [anon_sym_o_GT_GT] = ACTIONS(2121), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2121), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2121), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2121), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2121), + [aux_sym_unquoted_token1] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2121), }, [1570] = { [sym_comment] = STATE(1570), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1818), - [anon_sym_0o] = ACTIONS(1818), - [anon_sym_0x] = ACTIONS(1818), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [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_LBRACK] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), }, [1571] = { + [sym_cell_path] = STATE(2055), + [sym_path] = STATE(1510), [sym_comment] = STATE(1571), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_if] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_EQ_GT] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [aux_sym_record_entry_token1] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_GT2] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1999), + [anon_sym_in2] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_EQ_GT] = ACTIONS(1999), + [anon_sym_STAR2] = ACTIONS(1997), + [anon_sym_and2] = ACTIONS(1999), + [anon_sym_xor2] = ACTIONS(1999), + [anon_sym_or2] = ACTIONS(1999), + [anon_sym_not_DASHin2] = ACTIONS(1999), + [anon_sym_starts_DASHwith2] = ACTIONS(1999), + [anon_sym_ends_DASHwith2] = ACTIONS(1999), + [anon_sym_EQ_EQ2] = ACTIONS(1999), + [anon_sym_BANG_EQ2] = ACTIONS(1999), + [anon_sym_LT2] = ACTIONS(1997), + [anon_sym_LT_EQ2] = ACTIONS(1999), + [anon_sym_GT_EQ2] = ACTIONS(1999), + [anon_sym_EQ_TILDE2] = ACTIONS(1999), + [anon_sym_BANG_TILDE2] = ACTIONS(1999), + [anon_sym_STAR_STAR2] = ACTIONS(1999), + [anon_sym_PLUS_PLUS2] = ACTIONS(1999), + [anon_sym_SLASH2] = ACTIONS(1997), + [anon_sym_mod2] = ACTIONS(1999), + [anon_sym_SLASH_SLASH2] = ACTIONS(1999), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_bit_DASHshl2] = ACTIONS(1999), + [anon_sym_bit_DASHshr2] = ACTIONS(1999), + [anon_sym_bit_DASHand2] = ACTIONS(1999), + [anon_sym_bit_DASHxor2] = ACTIONS(1999), + [anon_sym_bit_DASHor2] = ACTIONS(1999), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1997), + [anon_sym_out_GT] = ACTIONS(1997), + [anon_sym_e_GT] = ACTIONS(1997), + [anon_sym_o_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT] = ACTIONS(1997), + [anon_sym_err_GT_GT] = ACTIONS(1999), + [anon_sym_out_GT_GT] = ACTIONS(1999), + [anon_sym_e_GT_GT] = ACTIONS(1999), + [anon_sym_o_GT_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(251), }, [1572] = { + [sym_cell_path] = STATE(2056), + [sym_path] = STATE(1510), [sym_comment] = STATE(1572), - [sym__newline] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_err_GT_PIPE] = ACTIONS(2125), - [anon_sym_out_GT_PIPE] = ACTIONS(2125), - [anon_sym_e_GT_PIPE] = ACTIONS(2125), - [anon_sym_o_GT_PIPE] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_DASH2] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2123), - [anon_sym_DOT_DOT2] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2123), - [anon_sym_DOT_DOT_LT] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2125), - [aux_sym__val_number_decimal_token3] = ACTIONS(2125), - [aux_sym__val_number_decimal_token4] = ACTIONS(2125), - [aux_sym__val_number_token1] = ACTIONS(2125), - [aux_sym__val_number_token2] = ACTIONS(2125), - [aux_sym__val_number_token3] = ACTIONS(2125), - [aux_sym__val_number_token4] = ACTIONS(2125), - [aux_sym__val_number_token5] = ACTIONS(2125), - [aux_sym__val_number_token6] = ACTIONS(2125), - [anon_sym_0b] = ACTIONS(2123), - [anon_sym_0o] = ACTIONS(2123), - [anon_sym_0x] = ACTIONS(2123), - [sym_val_date] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_err_GT] = ACTIONS(2123), - [anon_sym_out_GT] = ACTIONS(2123), - [anon_sym_e_GT] = ACTIONS(2123), - [anon_sym_o_GT] = ACTIONS(2123), - [anon_sym_err_PLUSout_GT] = ACTIONS(2123), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), - [anon_sym_o_PLUSe_GT] = ACTIONS(2123), - [anon_sym_e_PLUSo_GT] = ACTIONS(2123), - [anon_sym_err_GT_GT] = ACTIONS(2125), - [anon_sym_out_GT_GT] = ACTIONS(2125), - [anon_sym_e_GT_GT] = ACTIONS(2125), - [anon_sym_o_GT_GT] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), - [aux_sym_unquoted_token1] = ACTIONS(2123), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2125), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_err_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_GT_PIPE] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), + [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_GT2] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2003), + [anon_sym_in2] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_EQ_GT] = ACTIONS(2003), + [anon_sym_STAR2] = ACTIONS(2001), + [anon_sym_and2] = ACTIONS(2003), + [anon_sym_xor2] = ACTIONS(2003), + [anon_sym_or2] = ACTIONS(2003), + [anon_sym_not_DASHin2] = ACTIONS(2003), + [anon_sym_starts_DASHwith2] = ACTIONS(2003), + [anon_sym_ends_DASHwith2] = ACTIONS(2003), + [anon_sym_EQ_EQ2] = ACTIONS(2003), + [anon_sym_BANG_EQ2] = ACTIONS(2003), + [anon_sym_LT2] = ACTIONS(2001), + [anon_sym_LT_EQ2] = ACTIONS(2003), + [anon_sym_GT_EQ2] = ACTIONS(2003), + [anon_sym_EQ_TILDE2] = ACTIONS(2003), + [anon_sym_BANG_TILDE2] = ACTIONS(2003), + [anon_sym_STAR_STAR2] = ACTIONS(2003), + [anon_sym_PLUS_PLUS2] = ACTIONS(2003), + [anon_sym_SLASH2] = ACTIONS(2001), + [anon_sym_mod2] = ACTIONS(2003), + [anon_sym_SLASH_SLASH2] = ACTIONS(2003), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_bit_DASHshl2] = ACTIONS(2003), + [anon_sym_bit_DASHshr2] = ACTIONS(2003), + [anon_sym_bit_DASHand2] = ACTIONS(2003), + [anon_sym_bit_DASHxor2] = ACTIONS(2003), + [anon_sym_bit_DASHor2] = ACTIONS(2003), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2001), + [anon_sym_out_GT] = ACTIONS(2001), + [anon_sym_e_GT] = ACTIONS(2001), + [anon_sym_o_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT] = ACTIONS(2001), + [anon_sym_err_GT_GT] = ACTIONS(2003), + [anon_sym_out_GT_GT] = ACTIONS(2003), + [anon_sym_e_GT_GT] = ACTIONS(2003), + [anon_sym_o_GT_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(251), }, [1573] = { [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [anon_sym_LPAREN2] = ACTIONS(2243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), + [anon_sym_DOT_DOT_LT] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2241), + [aux_sym__val_number_decimal_token3] = ACTIONS(2241), + [aux_sym__val_number_decimal_token4] = ACTIONS(2241), + [aux_sym__val_number_token1] = ACTIONS(2241), + [aux_sym__val_number_token2] = ACTIONS(2241), + [aux_sym__val_number_token3] = ACTIONS(2241), + [aux_sym__val_number_token4] = ACTIONS(2241), + [aux_sym__val_number_token5] = ACTIONS(2241), + [aux_sym__val_number_token6] = ACTIONS(2241), + [anon_sym_0b] = ACTIONS(2241), + [anon_sym_0o] = ACTIONS(2241), + [anon_sym_0x] = ACTIONS(2241), + [sym_val_date] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym__str_single_quotes] = ACTIONS(2245), + [sym__str_back_ticks] = ACTIONS(2245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), + [anon_sym_err_GT] = ACTIONS(2241), + [anon_sym_out_GT] = ACTIONS(2241), + [anon_sym_e_GT] = ACTIONS(2241), + [anon_sym_o_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT] = ACTIONS(2241), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2241), + [aux_sym_unquoted_token4] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2245), }, [1574] = { - [sym__expr_parenthesized_immediate] = STATE(2650), - [sym__immediate_decimal] = STATE(2672), - [sym_val_variable] = STATE(2650), [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4877), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4831), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4889), - [aux_sym__immediate_decimal_token3] = ACTIONS(4889), - [aux_sym__immediate_decimal_token4] = ACTIONS(4837), - [aux_sym__immediate_decimal_token5] = ACTIONS(4839), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_err_GT_PIPE] = ACTIONS(2683), + [anon_sym_out_GT_PIPE] = ACTIONS(2683), + [anon_sym_e_GT_PIPE] = ACTIONS(2683), + [anon_sym_o_GT_PIPE] = ACTIONS(2683), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2683), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2683), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2683), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_DOLLAR] = ACTIONS(4826), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_DASH2] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_DOT_DOT] = ACTIONS(4826), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4826), + [anon_sym_DOT_DOT_LT] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym__val_number_decimal_token1] = ACTIONS(4826), + [aux_sym__val_number_decimal_token2] = ACTIONS(2683), + [aux_sym__val_number_decimal_token3] = ACTIONS(2683), + [aux_sym__val_number_decimal_token4] = ACTIONS(2683), + [aux_sym__val_number_token1] = ACTIONS(2683), + [aux_sym__val_number_token2] = ACTIONS(2683), + [aux_sym__val_number_token3] = ACTIONS(2683), + [aux_sym__val_number_token4] = ACTIONS(2683), + [aux_sym__val_number_token5] = ACTIONS(2683), + [aux_sym__val_number_token6] = ACTIONS(2683), + [anon_sym_0b] = ACTIONS(4826), + [anon_sym_0o] = ACTIONS(4826), + [anon_sym_0x] = ACTIONS(4826), + [sym_val_date] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [sym__str_single_quotes] = ACTIONS(2683), + [sym__str_back_ticks] = ACTIONS(2683), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2683), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(4826), + [anon_sym_out_GT] = ACTIONS(4826), + [anon_sym_e_GT] = ACTIONS(4826), + [anon_sym_o_GT] = ACTIONS(4826), + [anon_sym_err_PLUSout_GT] = ACTIONS(4826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4826), + [anon_sym_o_PLUSe_GT] = ACTIONS(4826), + [anon_sym_e_PLUSo_GT] = ACTIONS(4826), + [anon_sym_err_GT_GT] = ACTIONS(2683), + [anon_sym_out_GT_GT] = ACTIONS(2683), + [anon_sym_e_GT_GT] = ACTIONS(2683), + [anon_sym_o_GT_GT] = ACTIONS(2683), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2683), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2683), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2683), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2683), + [aux_sym_unquoted_token1] = ACTIONS(4826), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2683), }, [1575] = { - [sym_cell_path] = STATE(1964), - [sym_path] = STATE(1843), + [sym__expr_parenthesized_immediate] = STATE(7231), [sym_comment] = STATE(1575), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1943), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1943), + [sym__newline] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_err_GT_PIPE] = ACTIONS(4828), + [anon_sym_out_GT_PIPE] = ACTIONS(4828), + [anon_sym_e_GT_PIPE] = ACTIONS(4828), + [anon_sym_o_GT_PIPE] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4828), + [anon_sym_DOLLAR] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_DASH2] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_RBRACE] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_DOT_DOT_LT] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4828), + [anon_sym_false] = ACTIONS(4828), + [aux_sym__val_number_decimal_token1] = ACTIONS(4830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4828), + [aux_sym__val_number_decimal_token3] = ACTIONS(4828), + [aux_sym__val_number_decimal_token4] = ACTIONS(4828), + [aux_sym__val_number_token1] = ACTIONS(4828), + [aux_sym__val_number_token2] = ACTIONS(4828), + [aux_sym__val_number_token3] = ACTIONS(4828), + [aux_sym__val_number_token4] = ACTIONS(4828), + [aux_sym__val_number_token5] = ACTIONS(4828), + [aux_sym__val_number_token6] = ACTIONS(4828), + [anon_sym_0b] = ACTIONS(4830), + [anon_sym_0o] = ACTIONS(4830), + [anon_sym_0x] = ACTIONS(4830), + [sym_val_date] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym__str_single_quotes] = ACTIONS(4828), + [sym__str_back_ticks] = ACTIONS(4828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4828), + [anon_sym_err_GT] = ACTIONS(4830), + [anon_sym_out_GT] = ACTIONS(4830), + [anon_sym_e_GT] = ACTIONS(4830), + [anon_sym_o_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT] = ACTIONS(4830), + [anon_sym_err_GT_GT] = ACTIONS(4828), + [anon_sym_out_GT_GT] = ACTIONS(4828), + [anon_sym_e_GT_GT] = ACTIONS(4828), + [anon_sym_o_GT_GT] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4828), + [aux_sym_unquoted_token1] = ACTIONS(4830), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4828), }, [1576] = { [sym_comment] = STATE(1576), - [sym__newline] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4952), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_err_GT_PIPE] = ACTIONS(4952), - [anon_sym_out_GT_PIPE] = ACTIONS(4952), - [anon_sym_e_GT_PIPE] = ACTIONS(4952), - [anon_sym_o_GT_PIPE] = ACTIONS(4952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), - [anon_sym_LBRACK] = ACTIONS(4952), - [anon_sym_LPAREN] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4952), - [anon_sym_DOLLAR] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4952), - [anon_sym_DASH2] = ACTIONS(4954), - [anon_sym_LBRACE] = ACTIONS(4952), - [anon_sym_RBRACE] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_DOT_DOT2] = ACTIONS(4907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), - [anon_sym_DOT_DOT_LT] = ACTIONS(4954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_true] = ACTIONS(4952), - [anon_sym_false] = ACTIONS(4952), - [aux_sym__val_number_decimal_token1] = ACTIONS(4954), - [aux_sym__val_number_decimal_token2] = ACTIONS(4952), - [aux_sym__val_number_decimal_token3] = ACTIONS(4952), - [aux_sym__val_number_decimal_token4] = ACTIONS(4952), - [aux_sym__val_number_token1] = ACTIONS(4952), - [aux_sym__val_number_token2] = ACTIONS(4952), - [aux_sym__val_number_token3] = ACTIONS(4952), - [aux_sym__val_number_token4] = ACTIONS(4952), - [aux_sym__val_number_token5] = ACTIONS(4952), - [aux_sym__val_number_token6] = ACTIONS(4952), - [anon_sym_0b] = ACTIONS(4954), - [anon_sym_0o] = ACTIONS(4954), - [anon_sym_0x] = ACTIONS(4954), - [sym_val_date] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4952), - [sym__str_single_quotes] = ACTIONS(4952), - [sym__str_back_ticks] = ACTIONS(4952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), - [anon_sym_err_GT] = ACTIONS(4954), - [anon_sym_out_GT] = ACTIONS(4954), - [anon_sym_e_GT] = ACTIONS(4954), - [anon_sym_o_GT] = ACTIONS(4954), - [anon_sym_err_PLUSout_GT] = ACTIONS(4954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4954), - [anon_sym_o_PLUSe_GT] = ACTIONS(4954), - [anon_sym_e_PLUSo_GT] = ACTIONS(4954), - [anon_sym_err_GT_GT] = ACTIONS(4952), - [anon_sym_out_GT_GT] = ACTIONS(4952), - [anon_sym_e_GT_GT] = ACTIONS(4952), - [anon_sym_o_GT_GT] = ACTIONS(4952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), - [aux_sym_unquoted_token1] = ACTIONS(4954), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4952), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4832), + [aux_sym__immediate_decimal_token2] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, [1577] = { - [sym_cell_path] = STATE(2023), - [sym_path] = STATE(1843), [sym_comment] = STATE(1577), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), + [sym__newline] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_err_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_GT_PIPE] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym__val_number_decimal_token1] = ACTIONS(2249), + [aux_sym__val_number_decimal_token2] = ACTIONS(2249), + [aux_sym__val_number_decimal_token3] = ACTIONS(2249), + [aux_sym__val_number_decimal_token4] = ACTIONS(2249), + [aux_sym__val_number_token1] = ACTIONS(2249), + [aux_sym__val_number_token2] = ACTIONS(2249), + [aux_sym__val_number_token3] = ACTIONS(2249), + [aux_sym__val_number_token4] = ACTIONS(2249), + [aux_sym__val_number_token5] = ACTIONS(2249), + [aux_sym__val_number_token6] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2249), + [aux_sym_unquoted_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2253), }, [1578] = { [sym_comment] = STATE(1578), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_err_GT_PIPE] = ACTIONS(2259), + [anon_sym_out_GT_PIPE] = ACTIONS(2259), + [anon_sym_e_GT_PIPE] = ACTIONS(2259), + [anon_sym_o_GT_PIPE] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2257), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [aux_sym__val_number_token4] = ACTIONS(2257), + [aux_sym__val_number_token5] = ACTIONS(2257), + [aux_sym__val_number_token6] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2257), + [anon_sym_0o] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2257), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2259), + [sym__str_single_quotes] = ACTIONS(2259), + [sym__str_back_ticks] = ACTIONS(2259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2259), + [anon_sym_err_GT] = ACTIONS(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2257), + [aux_sym_unquoted_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2259), }, [1579] = { - [sym_cell_path] = STATE(1738), - [sym_path] = STATE(1643), [sym_comment] = STATE(1579), - [aux_sym_cell_path_repeat1] = STATE(1644), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1757), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1757), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1757), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2170), + [anon_sym_DOT_DOT_LT] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2172), + [aux_sym__val_number_decimal_token3] = ACTIONS(2172), + [aux_sym__val_number_decimal_token4] = ACTIONS(2172), + [aux_sym__val_number_token1] = ACTIONS(2172), + [aux_sym__val_number_token2] = ACTIONS(2172), + [aux_sym__val_number_token3] = ACTIONS(2172), + [aux_sym__val_number_token4] = ACTIONS(2172), + [aux_sym__val_number_token5] = ACTIONS(2172), + [aux_sym__val_number_token6] = ACTIONS(2172), + [anon_sym_0b] = ACTIONS(2170), + [anon_sym_0o] = ACTIONS(2170), + [anon_sym_0x] = ACTIONS(2170), + [sym_val_date] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [sym__str_single_quotes] = ACTIONS(2172), + [sym__str_back_ticks] = ACTIONS(2172), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2172), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2170), + [anon_sym_out_GT] = ACTIONS(2170), + [anon_sym_e_GT] = ACTIONS(2170), + [anon_sym_o_GT] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT] = ACTIONS(2170), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [aux_sym_unquoted_token1] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2172), }, [1580] = { [sym_comment] = STATE(1580), - [anon_sym_EQ] = ACTIONS(4958), - [anon_sym_PLUS_EQ] = ACTIONS(4960), - [anon_sym_DASH_EQ] = ACTIONS(4960), - [anon_sym_STAR_EQ] = ACTIONS(4960), - [anon_sym_SLASH_EQ] = ACTIONS(4960), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4960), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4836), + [anon_sym_DOT_DOT_EQ] = ACTIONS(954), + [anon_sym_DOT_DOT_LT] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), }, [1581] = { - [sym_cell_path] = STATE(1694), - [sym_path] = STATE(1643), [sym_comment] = STATE(1581), - [aux_sym_cell_path_repeat1] = STATE(1644), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), }, [1582] = { [sym_comment] = STATE(1582), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_in2] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1663), - [anon_sym_xor2] = ACTIONS(1663), - [anon_sym_or2] = ACTIONS(1663), - [anon_sym_not_DASHin2] = ACTIONS(1663), - [anon_sym_starts_DASHwith2] = ACTIONS(1663), - [anon_sym_ends_DASHwith2] = ACTIONS(1663), - [anon_sym_EQ_EQ2] = ACTIONS(1663), - [anon_sym_BANG_EQ2] = ACTIONS(1663), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1663), - [anon_sym_GT_EQ2] = ACTIONS(1663), - [anon_sym_EQ_TILDE2] = ACTIONS(1663), - [anon_sym_BANG_TILDE2] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_STAR_STAR2] = ACTIONS(1663), - [anon_sym_PLUS_PLUS2] = ACTIONS(1663), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1663), - [anon_sym_SLASH_SLASH2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1663), - [anon_sym_bit_DASHshr2] = ACTIONS(1663), - [anon_sym_bit_DASHand2] = ACTIONS(1663), - [anon_sym_bit_DASHxor2] = ACTIONS(1663), - [anon_sym_bit_DASHor2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_DASH_DASH] = ACTIONS(2176), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2174), + [anon_sym_DOT_DOT2] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2174), + [anon_sym_DOT_DOT_LT] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), + [anon_sym_null] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2176), + [aux_sym__val_number_decimal_token3] = ACTIONS(2176), + [aux_sym__val_number_decimal_token4] = ACTIONS(2176), + [aux_sym__val_number_token1] = ACTIONS(2176), + [aux_sym__val_number_token2] = ACTIONS(2176), + [aux_sym__val_number_token3] = ACTIONS(2176), + [aux_sym__val_number_token4] = ACTIONS(2176), + [aux_sym__val_number_token5] = ACTIONS(2176), + [aux_sym__val_number_token6] = ACTIONS(2176), + [anon_sym_0b] = ACTIONS(2174), + [anon_sym_0o] = ACTIONS(2174), + [anon_sym_0x] = ACTIONS(2174), + [sym_val_date] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym__str_single_quotes] = ACTIONS(2176), + [sym__str_back_ticks] = ACTIONS(2176), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), + [aux_sym_unquoted_token1] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2176), }, [1583] = { [sym_comment] = STATE(1583), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_GT2] = ACTIONS(1008), - [anon_sym_DASH2] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_EQ_GT] = ACTIONS(1010), - [anon_sym_STAR2] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(4962), - [anon_sym_and2] = ACTIONS(1010), - [anon_sym_xor2] = ACTIONS(1010), - [anon_sym_or2] = ACTIONS(1010), - [anon_sym_not_DASHin2] = ACTIONS(1010), - [anon_sym_starts_DASHwith2] = ACTIONS(1010), - [anon_sym_ends_DASHwith2] = ACTIONS(1010), - [anon_sym_EQ_EQ2] = ACTIONS(1010), - [anon_sym_BANG_EQ2] = ACTIONS(1010), - [anon_sym_LT2] = ACTIONS(1008), - [anon_sym_LT_EQ2] = ACTIONS(1010), - [anon_sym_GT_EQ2] = ACTIONS(1010), - [anon_sym_EQ_TILDE2] = ACTIONS(1010), - [anon_sym_BANG_TILDE2] = ACTIONS(1010), - [anon_sym_STAR_STAR2] = ACTIONS(1010), - [anon_sym_PLUS_PLUS2] = ACTIONS(1010), - [anon_sym_SLASH2] = ACTIONS(1008), - [anon_sym_mod2] = ACTIONS(1010), - [anon_sym_SLASH_SLASH2] = ACTIONS(1010), - [anon_sym_PLUS2] = ACTIONS(1008), - [anon_sym_bit_DASHshl2] = ACTIONS(1010), - [anon_sym_bit_DASHshr2] = ACTIONS(1010), - [anon_sym_bit_DASHand2] = ACTIONS(1010), - [anon_sym_bit_DASHxor2] = ACTIONS(1010), - [anon_sym_bit_DASHor2] = ACTIONS(1010), - [anon_sym_DOT_DOT2] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_err_GT_PIPE] = ACTIONS(4840), + [anon_sym_out_GT_PIPE] = ACTIONS(4840), + [anon_sym_e_GT_PIPE] = ACTIONS(4840), + [anon_sym_o_GT_PIPE] = ACTIONS(4840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4840), + [anon_sym_LBRACK] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4840), + [anon_sym_RPAREN] = ACTIONS(4840), + [anon_sym_DOLLAR] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4840), + [anon_sym_DASH2] = ACTIONS(4842), + [anon_sym_LBRACE] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_DOT_DOT2] = ACTIONS(4755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4842), + [anon_sym_DOT_DOT_LT] = ACTIONS(4842), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4757), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [aux_sym__val_number_decimal_token1] = ACTIONS(4842), + [aux_sym__val_number_decimal_token2] = ACTIONS(4840), + [aux_sym__val_number_decimal_token3] = ACTIONS(4840), + [aux_sym__val_number_decimal_token4] = ACTIONS(4840), + [aux_sym__val_number_token1] = ACTIONS(4840), + [aux_sym__val_number_token2] = ACTIONS(4840), + [aux_sym__val_number_token3] = ACTIONS(4840), + [aux_sym__val_number_token4] = ACTIONS(4840), + [aux_sym__val_number_token5] = ACTIONS(4840), + [aux_sym__val_number_token6] = ACTIONS(4840), + [anon_sym_0b] = ACTIONS(4842), + [anon_sym_0o] = ACTIONS(4842), + [anon_sym_0x] = ACTIONS(4842), + [sym_val_date] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(4840), + [sym__str_single_quotes] = ACTIONS(4840), + [sym__str_back_ticks] = ACTIONS(4840), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4840), + [anon_sym_err_GT] = ACTIONS(4842), + [anon_sym_out_GT] = ACTIONS(4842), + [anon_sym_e_GT] = ACTIONS(4842), + [anon_sym_o_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT] = ACTIONS(4842), + [anon_sym_err_GT_GT] = ACTIONS(4840), + [anon_sym_out_GT_GT] = ACTIONS(4840), + [anon_sym_e_GT_GT] = ACTIONS(4840), + [anon_sym_o_GT_GT] = ACTIONS(4840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4840), + [aux_sym_unquoted_token1] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4840), }, [1584] = { [sym_comment] = STATE(1584), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_if] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_EQ_GT] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [aux_sym_record_entry_token1] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_DASH2] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), + [anon_sym_DOT_DOT_LT] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [aux_sym__val_number_token4] = ACTIONS(2228), + [aux_sym__val_number_token5] = ACTIONS(2228), + [aux_sym__val_number_token6] = ACTIONS(2228), + [anon_sym_0b] = ACTIONS(2224), + [anon_sym_0o] = ACTIONS(2224), + [anon_sym_0x] = ACTIONS(2224), + [sym_val_date] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2224), + [anon_sym_out_GT] = ACTIONS(2224), + [anon_sym_e_GT] = ACTIONS(2224), + [anon_sym_o_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT] = ACTIONS(2224), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [aux_sym_unquoted_token1] = ACTIONS(2224), + [aux_sym_unquoted_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2228), }, [1585] = { [sym_comment] = STATE(1585), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_GT2] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_EQ_GT] = ACTIONS(992), - [anon_sym_STAR2] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(4964), - [anon_sym_and2] = ACTIONS(992), - [anon_sym_xor2] = ACTIONS(992), - [anon_sym_or2] = ACTIONS(992), - [anon_sym_not_DASHin2] = ACTIONS(992), - [anon_sym_starts_DASHwith2] = ACTIONS(992), - [anon_sym_ends_DASHwith2] = ACTIONS(992), - [anon_sym_EQ_EQ2] = ACTIONS(992), - [anon_sym_BANG_EQ2] = ACTIONS(992), - [anon_sym_LT2] = ACTIONS(990), - [anon_sym_LT_EQ2] = ACTIONS(992), - [anon_sym_GT_EQ2] = ACTIONS(992), - [anon_sym_EQ_TILDE2] = ACTIONS(992), - [anon_sym_BANG_TILDE2] = ACTIONS(992), - [anon_sym_STAR_STAR2] = ACTIONS(992), - [anon_sym_PLUS_PLUS2] = ACTIONS(992), - [anon_sym_SLASH2] = ACTIONS(990), - [anon_sym_mod2] = ACTIONS(992), - [anon_sym_SLASH_SLASH2] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(990), - [anon_sym_bit_DASHshl2] = ACTIONS(992), - [anon_sym_bit_DASHshr2] = ACTIONS(992), - [anon_sym_bit_DASHand2] = ACTIONS(992), - [anon_sym_bit_DASHxor2] = ACTIONS(992), - [anon_sym_bit_DASHor2] = ACTIONS(992), - [anon_sym_DOT_DOT2] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1601), + [anon_sym_in2] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1601), + [anon_sym_xor2] = ACTIONS(1601), + [anon_sym_or2] = ACTIONS(1601), + [anon_sym_not_DASHin2] = ACTIONS(1601), + [anon_sym_starts_DASHwith2] = ACTIONS(1601), + [anon_sym_ends_DASHwith2] = ACTIONS(1601), + [anon_sym_EQ_EQ2] = ACTIONS(1601), + [anon_sym_BANG_EQ2] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1601), + [anon_sym_GT_EQ2] = ACTIONS(1601), + [anon_sym_EQ_TILDE2] = ACTIONS(1601), + [anon_sym_BANG_TILDE2] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_STAR_STAR2] = ACTIONS(1601), + [anon_sym_PLUS_PLUS2] = ACTIONS(1601), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1601), + [anon_sym_SLASH_SLASH2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1601), + [anon_sym_bit_DASHshr2] = ACTIONS(1601), + [anon_sym_bit_DASHand2] = ACTIONS(1601), + [anon_sym_bit_DASHxor2] = ACTIONS(1601), + [anon_sym_bit_DASHor2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token2] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(251), }, [1586] = { - [sym_cell_path] = STATE(1742), - [sym_path] = STATE(1643), [sym_comment] = STATE(1586), - [aux_sym_cell_path_repeat1] = STATE(1644), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_in2] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token2] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(251), }, [1587] = { [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(4966), - [anon_sym_PLUS_EQ] = ACTIONS(4968), - [anon_sym_DASH_EQ] = ACTIONS(4968), - [anon_sym_STAR_EQ] = ACTIONS(4968), - [anon_sym_SLASH_EQ] = ACTIONS(4968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4968), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(4970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4972), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(251), }, [1588] = { [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4845), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_err_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_GT_PIPE] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1725), + [anon_sym_in2] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1725), + [anon_sym_xor2] = ACTIONS(1725), + [anon_sym_or2] = ACTIONS(1725), + [anon_sym_not_DASHin2] = ACTIONS(1725), + [anon_sym_starts_DASHwith2] = ACTIONS(1725), + [anon_sym_ends_DASHwith2] = ACTIONS(1725), + [anon_sym_EQ_EQ2] = ACTIONS(1725), + [anon_sym_BANG_EQ2] = ACTIONS(1725), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1725), + [anon_sym_GT_EQ2] = ACTIONS(1725), + [anon_sym_EQ_TILDE2] = ACTIONS(1725), + [anon_sym_BANG_TILDE2] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_STAR_STAR2] = ACTIONS(1725), + [anon_sym_PLUS_PLUS2] = ACTIONS(1725), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1725), + [anon_sym_SLASH_SLASH2] = ACTIONS(1725), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1725), + [anon_sym_bit_DASHshr2] = ACTIONS(1725), + [anon_sym_bit_DASHand2] = ACTIONS(1725), + [anon_sym_bit_DASHxor2] = ACTIONS(1725), + [anon_sym_bit_DASHor2] = ACTIONS(1725), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1725), + [anon_sym_out_GT_GT] = ACTIONS(1725), + [anon_sym_e_GT_GT] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), + [aux_sym_unquoted_token2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(251), }, [1589] = { [sym_comment] = STATE(1589), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_EQ_GT] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [aux_sym_record_entry_token1] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1590] = { [sym_comment] = STATE(1590), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(4974), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [sym_long_flag_identifier] = ACTIONS(4848), + [sym__newline] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_err_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_GT_PIPE] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH2] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4850), + [anon_sym_DOT_DOT_LT] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4852), + [anon_sym_false] = ACTIONS(4852), + [aux_sym__val_number_decimal_token1] = ACTIONS(4852), + [aux_sym__val_number_decimal_token2] = ACTIONS(4850), + [aux_sym__val_number_decimal_token3] = ACTIONS(4850), + [aux_sym__val_number_decimal_token4] = ACTIONS(4850), + [aux_sym__val_number_token1] = ACTIONS(4852), + [aux_sym__val_number_token2] = ACTIONS(4852), + [aux_sym__val_number_token3] = ACTIONS(4852), + [aux_sym__val_number_token4] = ACTIONS(4852), + [aux_sym__val_number_token5] = ACTIONS(4850), + [aux_sym__val_number_token6] = ACTIONS(4852), + [anon_sym_0b] = ACTIONS(4852), + [anon_sym_0o] = ACTIONS(4852), + [anon_sym_0x] = ACTIONS(4852), + [sym_val_date] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4850), + [sym__str_single_quotes] = ACTIONS(4850), + [sym__str_back_ticks] = ACTIONS(4850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4850), + [anon_sym_err_GT] = ACTIONS(4852), + [anon_sym_out_GT] = ACTIONS(4852), + [anon_sym_e_GT] = ACTIONS(4852), + [anon_sym_o_GT] = ACTIONS(4852), + [anon_sym_err_PLUSout_GT] = ACTIONS(4852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4852), + [anon_sym_o_PLUSe_GT] = ACTIONS(4852), + [anon_sym_e_PLUSo_GT] = ACTIONS(4852), + [anon_sym_err_GT_GT] = ACTIONS(4850), + [anon_sym_out_GT_GT] = ACTIONS(4850), + [anon_sym_e_GT_GT] = ACTIONS(4850), + [anon_sym_o_GT_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4850), + [anon_sym_EQ2] = ACTIONS(4854), + [aux_sym_unquoted_token1] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4850), }, [1591] = { - [sym_cell_path] = STATE(1944), - [sym_path] = STATE(1843), [sym_comment] = STATE(1591), - [aux_sym_cell_path_repeat1] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(2035), - [sym__newline] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_err_GT_PIPE] = ACTIONS(2035), - [anon_sym_out_GT_PIPE] = ACTIONS(2035), - [anon_sym_e_GT_PIPE] = ACTIONS(2035), - [anon_sym_o_GT_PIPE] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2035), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [aux_sym__val_number_token4] = ACTIONS(2035), - [aux_sym__val_number_token5] = ACTIONS(2035), - [aux_sym__val_number_token6] = ACTIONS(2035), - [anon_sym_0b] = ACTIONS(2033), - [anon_sym_0o] = ACTIONS(2033), - [anon_sym_0x] = ACTIONS(2033), - [sym_val_date] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_err_GT] = ACTIONS(2033), - [anon_sym_out_GT] = ACTIONS(2033), - [anon_sym_e_GT] = ACTIONS(2033), - [anon_sym_o_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT] = ACTIONS(2033), - [anon_sym_err_GT_GT] = ACTIONS(2035), - [anon_sym_out_GT_GT] = ACTIONS(2035), - [anon_sym_e_GT_GT] = ACTIONS(2035), - [anon_sym_o_GT_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), - [aux_sym_unquoted_token1] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2035), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1592] = { [sym_comment] = STATE(1592), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_DOT_DOT2] = ACTIONS(4976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2090), - [anon_sym_DOT_DOT_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4978), - [anon_sym_null] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2096), - [aux_sym__val_number_token5] = ACTIONS(2096), - [aux_sym__val_number_token6] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2090), - [anon_sym_0x] = ACTIONS(2090), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), - [aux_sym_unquoted_token1] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2096), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym__newline] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_err_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_GT_PIPE] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_DASH_DASH] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2158), + [anon_sym_DOT_DOT2] = ACTIONS(4856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2158), + [anon_sym_DOT_DOT_LT] = ACTIONS(2158), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2158), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_0b] = ACTIONS(2158), + [anon_sym_0o] = ACTIONS(2158), + [anon_sym_0x] = ACTIONS(2158), + [sym_val_date] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2164), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(2158), + [anon_sym_out_GT] = ACTIONS(2158), + [anon_sym_e_GT] = ACTIONS(2158), + [anon_sym_o_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT] = ACTIONS(2158), + [anon_sym_err_GT_GT] = ACTIONS(2164), + [anon_sym_out_GT_GT] = ACTIONS(2164), + [anon_sym_e_GT_GT] = ACTIONS(2164), + [anon_sym_o_GT_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), + [aux_sym_unquoted_token1] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2164), }, [1593] = { - [sym_cell_path] = STATE(2071), - [sym_path] = STATE(1898), [sym_comment] = STATE(1593), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_err_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_GT_PIPE] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_GT2] = ACTIONS(1891), - [anon_sym_DASH2] = ACTIONS(1893), - [anon_sym_in2] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_EQ_GT] = ACTIONS(1893), - [anon_sym_STAR2] = ACTIONS(1891), - [anon_sym_and2] = ACTIONS(1893), - [anon_sym_xor2] = ACTIONS(1893), - [anon_sym_or2] = ACTIONS(1893), - [anon_sym_not_DASHin2] = ACTIONS(1893), - [anon_sym_starts_DASHwith2] = ACTIONS(1893), - [anon_sym_ends_DASHwith2] = ACTIONS(1893), - [anon_sym_EQ_EQ2] = ACTIONS(1893), - [anon_sym_BANG_EQ2] = ACTIONS(1893), - [anon_sym_LT2] = ACTIONS(1891), - [anon_sym_LT_EQ2] = ACTIONS(1893), - [anon_sym_GT_EQ2] = ACTIONS(1893), - [anon_sym_EQ_TILDE2] = ACTIONS(1893), - [anon_sym_BANG_TILDE2] = ACTIONS(1893), - [anon_sym_STAR_STAR2] = ACTIONS(1893), - [anon_sym_PLUS_PLUS2] = ACTIONS(1893), - [anon_sym_SLASH2] = ACTIONS(1891), - [anon_sym_mod2] = ACTIONS(1893), - [anon_sym_SLASH_SLASH2] = ACTIONS(1893), - [anon_sym_PLUS2] = ACTIONS(1891), - [anon_sym_bit_DASHshl2] = ACTIONS(1893), - [anon_sym_bit_DASHshr2] = ACTIONS(1893), - [anon_sym_bit_DASHand2] = ACTIONS(1893), - [anon_sym_bit_DASHxor2] = ACTIONS(1893), - [anon_sym_bit_DASHor2] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1891), - [anon_sym_out_GT] = ACTIONS(1891), - [anon_sym_e_GT] = ACTIONS(1891), - [anon_sym_o_GT] = ACTIONS(1891), - [anon_sym_err_PLUSout_GT] = ACTIONS(1891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1891), - [anon_sym_o_PLUSe_GT] = ACTIONS(1891), - [anon_sym_e_PLUSo_GT] = ACTIONS(1891), - [anon_sym_err_GT_GT] = ACTIONS(1893), - [anon_sym_out_GT_GT] = ACTIONS(1893), - [anon_sym_e_GT_GT] = ACTIONS(1893), - [anon_sym_o_GT_GT] = ACTIONS(1893), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1893), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1893), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1893), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, [1594] = { [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(2078), - [sym__newline] = ACTIONS(2078), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_err_GT_PIPE] = ACTIONS(2078), - [anon_sym_out_GT_PIPE] = ACTIONS(2078), - [anon_sym_e_GT_PIPE] = ACTIONS(2078), - [anon_sym_o_GT_PIPE] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_DOT_DOT] = ACTIONS(2072), - [anon_sym_DOT_DOT2] = ACTIONS(4982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), - [anon_sym_DOT_DOT_LT] = ACTIONS(2072), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4984), - [anon_sym_null] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2078), - [anon_sym_false] = ACTIONS(2078), - [aux_sym__val_number_decimal_token1] = ACTIONS(2072), - [aux_sym__val_number_decimal_token2] = ACTIONS(2078), - [aux_sym__val_number_decimal_token3] = ACTIONS(2078), - [aux_sym__val_number_decimal_token4] = ACTIONS(2078), - [aux_sym__val_number_token1] = ACTIONS(2078), - [aux_sym__val_number_token2] = ACTIONS(2078), - [aux_sym__val_number_token3] = ACTIONS(2078), - [aux_sym__val_number_token4] = ACTIONS(2078), - [aux_sym__val_number_token5] = ACTIONS(2078), - [aux_sym__val_number_token6] = ACTIONS(2078), - [anon_sym_0b] = ACTIONS(2072), - [anon_sym_0o] = ACTIONS(2072), - [anon_sym_0x] = ACTIONS(2072), - [sym_val_date] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2078), - [sym__str_single_quotes] = ACTIONS(2078), - [sym__str_back_ticks] = ACTIONS(2078), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), - [anon_sym_err_GT] = ACTIONS(2072), - [anon_sym_out_GT] = ACTIONS(2072), - [anon_sym_e_GT] = ACTIONS(2072), - [anon_sym_o_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT] = ACTIONS(2072), - [anon_sym_err_GT_GT] = ACTIONS(2078), - [anon_sym_out_GT_GT] = ACTIONS(2078), - [anon_sym_e_GT_GT] = ACTIONS(2078), - [anon_sym_o_GT_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2078), - [aux_sym_unquoted_token1] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2078), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_GT2] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1773), + [anon_sym_in2] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_STAR2] = ACTIONS(1771), + [anon_sym_and2] = ACTIONS(1773), + [anon_sym_xor2] = ACTIONS(1773), + [anon_sym_or2] = ACTIONS(1773), + [anon_sym_not_DASHin2] = ACTIONS(1773), + [anon_sym_starts_DASHwith2] = ACTIONS(1773), + [anon_sym_ends_DASHwith2] = ACTIONS(1773), + [anon_sym_EQ_EQ2] = ACTIONS(1773), + [anon_sym_BANG_EQ2] = ACTIONS(1773), + [anon_sym_LT2] = ACTIONS(1771), + [anon_sym_LT_EQ2] = ACTIONS(1773), + [anon_sym_GT_EQ2] = ACTIONS(1773), + [anon_sym_EQ_TILDE2] = ACTIONS(1773), + [anon_sym_BANG_TILDE2] = ACTIONS(1773), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_STAR_STAR2] = ACTIONS(1773), + [anon_sym_PLUS_PLUS2] = ACTIONS(1773), + [anon_sym_SLASH2] = ACTIONS(1771), + [anon_sym_mod2] = ACTIONS(1773), + [anon_sym_SLASH_SLASH2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_bit_DASHshl2] = ACTIONS(1773), + [anon_sym_bit_DASHshr2] = ACTIONS(1773), + [anon_sym_bit_DASHand2] = ACTIONS(1773), + [anon_sym_bit_DASHxor2] = ACTIONS(1773), + [anon_sym_bit_DASHor2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4860), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token2] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(251), }, [1595] = { - [sym__expr_parenthesized_immediate] = STATE(8466), + [sym__expr_parenthesized_immediate] = STATE(7642), [sym_comment] = STATE(1595), - [sym__newline] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4986), - [anon_sym_err_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_GT_PIPE] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_DOLLAR] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_DASH2] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4988), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), - [anon_sym_DOT_DOT_LT] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4986), - [anon_sym_false] = ACTIONS(4986), - [aux_sym__val_number_decimal_token1] = ACTIONS(4988), - [aux_sym__val_number_decimal_token2] = ACTIONS(4986), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4986), - [aux_sym__val_number_token1] = ACTIONS(4986), - [aux_sym__val_number_token2] = ACTIONS(4986), - [aux_sym__val_number_token3] = ACTIONS(4986), - [aux_sym__val_number_token4] = ACTIONS(4986), - [aux_sym__val_number_token5] = ACTIONS(4986), - [aux_sym__val_number_token6] = ACTIONS(4986), - [anon_sym_0b] = ACTIONS(4988), - [anon_sym_0o] = ACTIONS(4988), - [anon_sym_0x] = ACTIONS(4988), - [sym_val_date] = ACTIONS(4986), - [anon_sym_DQUOTE] = ACTIONS(4986), - [sym__str_single_quotes] = ACTIONS(4986), - [sym__str_back_ticks] = ACTIONS(4986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4986), - [anon_sym_err_GT] = ACTIONS(4988), - [anon_sym_out_GT] = ACTIONS(4988), - [anon_sym_e_GT] = ACTIONS(4988), - [anon_sym_o_GT] = ACTIONS(4988), - [anon_sym_err_PLUSout_GT] = ACTIONS(4988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4988), - [anon_sym_o_PLUSe_GT] = ACTIONS(4988), - [anon_sym_e_PLUSo_GT] = ACTIONS(4988), - [anon_sym_err_GT_GT] = ACTIONS(4986), - [anon_sym_out_GT_GT] = ACTIONS(4986), - [anon_sym_e_GT_GT] = ACTIONS(4986), - [anon_sym_o_GT_GT] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4986), - [aux_sym_unquoted_token1] = ACTIONS(4988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4986), + [sym__newline] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_err_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_GT_PIPE] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_RPAREN] = ACTIONS(4862), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH2] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4862), + [anon_sym_RBRACE] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4862), + [anon_sym_DOT_DOT_LT] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [aux_sym__val_number_decimal_token1] = ACTIONS(4864), + [aux_sym__val_number_decimal_token2] = ACTIONS(4862), + [aux_sym__val_number_decimal_token3] = ACTIONS(4862), + [aux_sym__val_number_decimal_token4] = ACTIONS(4862), + [aux_sym__val_number_token1] = ACTIONS(4862), + [aux_sym__val_number_token2] = ACTIONS(4862), + [aux_sym__val_number_token3] = ACTIONS(4862), + [aux_sym__val_number_token4] = ACTIONS(4862), + [aux_sym__val_number_token5] = ACTIONS(4862), + [aux_sym__val_number_token6] = ACTIONS(4862), + [anon_sym_0b] = ACTIONS(4864), + [anon_sym_0o] = ACTIONS(4864), + [anon_sym_0x] = ACTIONS(4864), + [sym_val_date] = ACTIONS(4862), + [anon_sym_DQUOTE] = ACTIONS(4862), + [sym__str_single_quotes] = ACTIONS(4862), + [sym__str_back_ticks] = ACTIONS(4862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), + [anon_sym_err_GT] = ACTIONS(4864), + [anon_sym_out_GT] = ACTIONS(4864), + [anon_sym_e_GT] = ACTIONS(4864), + [anon_sym_o_GT] = ACTIONS(4864), + [anon_sym_err_PLUSout_GT] = ACTIONS(4864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4864), + [anon_sym_o_PLUSe_GT] = ACTIONS(4864), + [anon_sym_e_PLUSo_GT] = ACTIONS(4864), + [anon_sym_err_GT_GT] = ACTIONS(4862), + [anon_sym_out_GT_GT] = ACTIONS(4862), + [anon_sym_e_GT_GT] = ACTIONS(4862), + [anon_sym_o_GT_GT] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4862), + [aux_sym_unquoted_token1] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4862), }, [1596] = { + [sym__expr_parenthesized_immediate] = STATE(7642), [sym_comment] = STATE(1596), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_in2] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token2] = ACTIONS(4905), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4866), + [anon_sym_PIPE] = ACTIONS(4866), + [anon_sym_err_GT_PIPE] = ACTIONS(4866), + [anon_sym_out_GT_PIPE] = ACTIONS(4866), + [anon_sym_e_GT_PIPE] = ACTIONS(4866), + [anon_sym_o_GT_PIPE] = ACTIONS(4866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_RPAREN] = ACTIONS(4866), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH2] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4866), + [anon_sym_DOT_DOT_LT] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [aux_sym__val_number_decimal_token1] = ACTIONS(4868), + [aux_sym__val_number_decimal_token2] = ACTIONS(4866), + [aux_sym__val_number_decimal_token3] = ACTIONS(4866), + [aux_sym__val_number_decimal_token4] = ACTIONS(4866), + [aux_sym__val_number_token1] = ACTIONS(4866), + [aux_sym__val_number_token2] = ACTIONS(4866), + [aux_sym__val_number_token3] = ACTIONS(4866), + [aux_sym__val_number_token4] = ACTIONS(4866), + [aux_sym__val_number_token5] = ACTIONS(4866), + [aux_sym__val_number_token6] = ACTIONS(4866), + [anon_sym_0b] = ACTIONS(4868), + [anon_sym_0o] = ACTIONS(4868), + [anon_sym_0x] = ACTIONS(4868), + [sym_val_date] = ACTIONS(4866), + [anon_sym_DQUOTE] = ACTIONS(4866), + [sym__str_single_quotes] = ACTIONS(4866), + [sym__str_back_ticks] = ACTIONS(4866), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4866), + [anon_sym_err_GT] = ACTIONS(4868), + [anon_sym_out_GT] = ACTIONS(4868), + [anon_sym_e_GT] = ACTIONS(4868), + [anon_sym_o_GT] = ACTIONS(4868), + [anon_sym_err_PLUSout_GT] = ACTIONS(4868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4868), + [anon_sym_o_PLUSe_GT] = ACTIONS(4868), + [anon_sym_e_PLUSo_GT] = ACTIONS(4868), + [anon_sym_err_GT_GT] = ACTIONS(4866), + [anon_sym_out_GT_GT] = ACTIONS(4866), + [anon_sym_e_GT_GT] = ACTIONS(4866), + [anon_sym_o_GT_GT] = ACTIONS(4866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4866), + [aux_sym_unquoted_token1] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4866), }, [1597] = { - [sym_cell_path] = STATE(2051), - [sym_path] = STATE(1898), + [sym__expr_parenthesized_immediate] = STATE(7642), [sym_comment] = STATE(1597), - [aux_sym_cell_path_repeat1] = STATE(1733), - [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(1883), - [anon_sym_DASH2] = ACTIONS(1885), - [anon_sym_in2] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_EQ_GT] = ACTIONS(1885), - [anon_sym_STAR2] = ACTIONS(1883), - [anon_sym_and2] = ACTIONS(1885), - [anon_sym_xor2] = ACTIONS(1885), - [anon_sym_or2] = ACTIONS(1885), - [anon_sym_not_DASHin2] = ACTIONS(1885), - [anon_sym_starts_DASHwith2] = ACTIONS(1885), - [anon_sym_ends_DASHwith2] = ACTIONS(1885), - [anon_sym_EQ_EQ2] = ACTIONS(1885), - [anon_sym_BANG_EQ2] = ACTIONS(1885), - [anon_sym_LT2] = ACTIONS(1883), - [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_STAR_STAR2] = ACTIONS(1885), - [anon_sym_PLUS_PLUS2] = ACTIONS(1885), - [anon_sym_SLASH2] = ACTIONS(1883), - [anon_sym_mod2] = ACTIONS(1885), - [anon_sym_SLASH_SLASH2] = ACTIONS(1885), - [anon_sym_PLUS2] = ACTIONS(1883), - [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_DOT] = ACTIONS(4980), - [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(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(251), + [sym__newline] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4870), + [anon_sym_PIPE] = ACTIONS(4870), + [anon_sym_err_GT_PIPE] = ACTIONS(4870), + [anon_sym_out_GT_PIPE] = ACTIONS(4870), + [anon_sym_e_GT_PIPE] = ACTIONS(4870), + [anon_sym_o_GT_PIPE] = ACTIONS(4870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_RPAREN] = ACTIONS(4870), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH2] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4870), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4870), + [anon_sym_DOT_DOT_LT] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [aux_sym__val_number_decimal_token1] = ACTIONS(4872), + [aux_sym__val_number_decimal_token2] = ACTIONS(4870), + [aux_sym__val_number_decimal_token3] = ACTIONS(4870), + [aux_sym__val_number_decimal_token4] = ACTIONS(4870), + [aux_sym__val_number_token1] = ACTIONS(4870), + [aux_sym__val_number_token2] = ACTIONS(4870), + [aux_sym__val_number_token3] = ACTIONS(4870), + [aux_sym__val_number_token4] = ACTIONS(4870), + [aux_sym__val_number_token5] = ACTIONS(4870), + [aux_sym__val_number_token6] = ACTIONS(4870), + [anon_sym_0b] = ACTIONS(4872), + [anon_sym_0o] = ACTIONS(4872), + [anon_sym_0x] = ACTIONS(4872), + [sym_val_date] = ACTIONS(4870), + [anon_sym_DQUOTE] = ACTIONS(4870), + [sym__str_single_quotes] = ACTIONS(4870), + [sym__str_back_ticks] = ACTIONS(4870), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4870), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4870), + [anon_sym_err_GT] = ACTIONS(4872), + [anon_sym_out_GT] = ACTIONS(4872), + [anon_sym_e_GT] = ACTIONS(4872), + [anon_sym_o_GT] = ACTIONS(4872), + [anon_sym_err_PLUSout_GT] = ACTIONS(4872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4872), + [anon_sym_o_PLUSe_GT] = ACTIONS(4872), + [anon_sym_e_PLUSo_GT] = ACTIONS(4872), + [anon_sym_err_GT_GT] = ACTIONS(4870), + [anon_sym_out_GT_GT] = ACTIONS(4870), + [anon_sym_e_GT_GT] = ACTIONS(4870), + [anon_sym_o_GT_GT] = ACTIONS(4870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4870), + [aux_sym_unquoted_token1] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4870), }, [1598] = { [sym_comment] = STATE(1598), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2256), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_LT] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_0b] = ACTIONS(2254), - [anon_sym_0o] = ACTIONS(2254), - [anon_sym_0x] = ACTIONS(2254), - [sym_val_date] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2258), - [sym__str_single_quotes] = ACTIONS(2258), - [sym__str_back_ticks] = ACTIONS(2258), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [aux_sym_unquoted_token1] = ACTIONS(2254), - [aux_sym_unquoted_token4] = ACTIONS(2260), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DASH2] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_LPAREN2] = ACTIONS(2263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2261), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [aux_sym__val_number_token4] = ACTIONS(2261), + [aux_sym__val_number_token5] = ACTIONS(2261), + [aux_sym__val_number_token6] = ACTIONS(2261), + [anon_sym_0b] = ACTIONS(2261), + [anon_sym_0o] = ACTIONS(2261), + [anon_sym_0x] = ACTIONS(2261), + [sym_val_date] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2263), + [sym__str_single_quotes] = ACTIONS(2263), + [sym__str_back_ticks] = ACTIONS(2263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2263), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2261), + [anon_sym_out_GT] = ACTIONS(2261), + [anon_sym_e_GT] = ACTIONS(2261), + [anon_sym_o_GT] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT] = ACTIONS(2261), + [anon_sym_err_GT_GT] = ACTIONS(2261), + [anon_sym_out_GT_GT] = ACTIONS(2261), + [anon_sym_e_GT_GT] = ACTIONS(2261), + [anon_sym_o_GT_GT] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2261), + [aux_sym_unquoted_token1] = ACTIONS(2261), + [aux_sym_unquoted_token4] = ACTIONS(2261), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2258), + [sym_raw_string_begin] = ACTIONS(2263), }, [1599] = { - [sym_cell_path] = STATE(2065), - [sym_path] = STATE(1898), + [sym__expr_parenthesized_immediate] = STATE(7642), [sym_comment] = STATE(1599), - [aux_sym_cell_path_repeat1] = STATE(1733), - [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(1887), - [anon_sym_DASH2] = ACTIONS(1889), - [anon_sym_in2] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_EQ_GT] = ACTIONS(1889), - [anon_sym_STAR2] = ACTIONS(1887), - [anon_sym_and2] = ACTIONS(1889), - [anon_sym_xor2] = ACTIONS(1889), - [anon_sym_or2] = ACTIONS(1889), - [anon_sym_not_DASHin2] = ACTIONS(1889), - [anon_sym_starts_DASHwith2] = ACTIONS(1889), - [anon_sym_ends_DASHwith2] = ACTIONS(1889), - [anon_sym_EQ_EQ2] = ACTIONS(1889), - [anon_sym_BANG_EQ2] = ACTIONS(1889), - [anon_sym_LT2] = ACTIONS(1887), - [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_STAR_STAR2] = ACTIONS(1889), - [anon_sym_PLUS_PLUS2] = ACTIONS(1889), - [anon_sym_SLASH2] = ACTIONS(1887), - [anon_sym_mod2] = ACTIONS(1889), - [anon_sym_SLASH_SLASH2] = ACTIONS(1889), - [anon_sym_PLUS2] = ACTIONS(1887), - [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_DOT] = ACTIONS(4980), - [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(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(251), + [sym__newline] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4874), + [anon_sym_err_GT_PIPE] = ACTIONS(4874), + [anon_sym_out_GT_PIPE] = ACTIONS(4874), + [anon_sym_e_GT_PIPE] = ACTIONS(4874), + [anon_sym_o_GT_PIPE] = ACTIONS(4874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH2] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4874), + [anon_sym_DOT_DOT_LT] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [aux_sym__val_number_decimal_token1] = ACTIONS(4876), + [aux_sym__val_number_decimal_token2] = ACTIONS(4874), + [aux_sym__val_number_decimal_token3] = ACTIONS(4874), + [aux_sym__val_number_decimal_token4] = ACTIONS(4874), + [aux_sym__val_number_token1] = ACTIONS(4874), + [aux_sym__val_number_token2] = ACTIONS(4874), + [aux_sym__val_number_token3] = ACTIONS(4874), + [aux_sym__val_number_token4] = ACTIONS(4874), + [aux_sym__val_number_token5] = ACTIONS(4874), + [aux_sym__val_number_token6] = ACTIONS(4874), + [anon_sym_0b] = ACTIONS(4876), + [anon_sym_0o] = ACTIONS(4876), + [anon_sym_0x] = ACTIONS(4876), + [sym_val_date] = ACTIONS(4874), + [anon_sym_DQUOTE] = ACTIONS(4874), + [sym__str_single_quotes] = ACTIONS(4874), + [sym__str_back_ticks] = ACTIONS(4874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4874), + [anon_sym_err_GT] = ACTIONS(4876), + [anon_sym_out_GT] = ACTIONS(4876), + [anon_sym_e_GT] = ACTIONS(4876), + [anon_sym_o_GT] = ACTIONS(4876), + [anon_sym_err_PLUSout_GT] = ACTIONS(4876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4876), + [anon_sym_o_PLUSe_GT] = ACTIONS(4876), + [anon_sym_e_PLUSo_GT] = ACTIONS(4876), + [anon_sym_err_GT_GT] = ACTIONS(4874), + [anon_sym_out_GT_GT] = ACTIONS(4874), + [anon_sym_e_GT_GT] = ACTIONS(4874), + [anon_sym_o_GT_GT] = ACTIONS(4874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4874), + [aux_sym_unquoted_token1] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4874), }, [1600] = { - [sym_cell_path] = STATE(2156), - [sym_path] = STATE(1971), [sym_comment] = STATE(1600), - [aux_sym_cell_path_repeat1] = STATE(1750), - [sym__newline] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1757), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1757), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1757), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [aux_sym_record_entry_token1] = ACTIONS(1761), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), }, [1601] = { - [sym__expr_parenthesized_immediate] = STATE(8466), + [sym_cell_path] = STATE(2059), + [sym_path] = STATE(1510), [sym_comment] = STATE(1601), - [sym__newline] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4992), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_err_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_GT_PIPE] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4992), - [anon_sym_DOLLAR] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4992), - [anon_sym_DASH2] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4992), - [anon_sym_RBRACE] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), - [anon_sym_DOT_DOT_LT] = ACTIONS(4992), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [aux_sym__val_number_decimal_token1] = ACTIONS(4994), - [aux_sym__val_number_decimal_token2] = ACTIONS(4992), - [aux_sym__val_number_decimal_token3] = ACTIONS(4992), - [aux_sym__val_number_decimal_token4] = ACTIONS(4992), - [aux_sym__val_number_token1] = ACTIONS(4992), - [aux_sym__val_number_token2] = ACTIONS(4992), - [aux_sym__val_number_token3] = ACTIONS(4992), - [aux_sym__val_number_token4] = ACTIONS(4992), - [aux_sym__val_number_token5] = ACTIONS(4992), - [aux_sym__val_number_token6] = ACTIONS(4992), - [anon_sym_0b] = ACTIONS(4994), - [anon_sym_0o] = ACTIONS(4994), - [anon_sym_0x] = ACTIONS(4994), - [sym_val_date] = ACTIONS(4992), - [anon_sym_DQUOTE] = ACTIONS(4992), - [sym__str_single_quotes] = ACTIONS(4992), - [sym__str_back_ticks] = ACTIONS(4992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), - [anon_sym_err_GT] = ACTIONS(4994), - [anon_sym_out_GT] = ACTIONS(4994), - [anon_sym_e_GT] = ACTIONS(4994), - [anon_sym_o_GT] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT] = ACTIONS(4994), - [anon_sym_err_GT_GT] = ACTIONS(4992), - [anon_sym_out_GT_GT] = ACTIONS(4992), - [anon_sym_e_GT_GT] = ACTIONS(4992), - [anon_sym_o_GT_GT] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), - [aux_sym_unquoted_token1] = ACTIONS(4994), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4992), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_err_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_GT_PIPE] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2015), + [anon_sym_in2] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_EQ_GT] = ACTIONS(2015), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2015), + [anon_sym_xor2] = ACTIONS(2015), + [anon_sym_or2] = ACTIONS(2015), + [anon_sym_not_DASHin2] = ACTIONS(2015), + [anon_sym_starts_DASHwith2] = ACTIONS(2015), + [anon_sym_ends_DASHwith2] = ACTIONS(2015), + [anon_sym_EQ_EQ2] = ACTIONS(2015), + [anon_sym_BANG_EQ2] = ACTIONS(2015), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2015), + [anon_sym_GT_EQ2] = ACTIONS(2015), + [anon_sym_EQ_TILDE2] = ACTIONS(2015), + [anon_sym_BANG_TILDE2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2015), + [anon_sym_PLUS_PLUS2] = ACTIONS(2015), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2015), + [anon_sym_SLASH_SLASH2] = ACTIONS(2015), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2015), + [anon_sym_bit_DASHshr2] = ACTIONS(2015), + [anon_sym_bit_DASHand2] = ACTIONS(2015), + [anon_sym_bit_DASHxor2] = ACTIONS(2015), + [anon_sym_bit_DASHor2] = ACTIONS(2015), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2015), + [anon_sym_out_GT_GT] = ACTIONS(2015), + [anon_sym_e_GT_GT] = ACTIONS(2015), + [anon_sym_o_GT_GT] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(251), }, [1602] = { [sym_comment] = STATE(1602), - [sym__newline] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_err_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_GT_PIPE] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), - [anon_sym_DOT_DOT_LT] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [aux_sym__val_number_token4] = ACTIONS(1838), - [aux_sym__val_number_token5] = ACTIONS(1838), - [aux_sym__val_number_token6] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1830), - [anon_sym_0o] = ACTIONS(1830), - [anon_sym_0x] = ACTIONS(1830), - [sym_val_date] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(1830), - [anon_sym_out_GT] = ACTIONS(1830), - [anon_sym_e_GT] = ACTIONS(1830), - [anon_sym_o_GT] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT] = ACTIONS(1830), - [anon_sym_err_GT_GT] = ACTIONS(1838), - [anon_sym_out_GT_GT] = ACTIONS(1838), - [anon_sym_e_GT_GT] = ACTIONS(1838), - [anon_sym_o_GT_GT] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1830), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1838), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_DOT_DOT_LT] = ACTIONS(974), + [anon_sym_null] = ACTIONS(974), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), }, [1603] = { [sym_comment] = STATE(1603), - [ts_builtin_sym_end] = ACTIONS(1820), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1818), - [anon_sym_DOT_DOT_LT] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1818), - [anon_sym_0o] = ACTIONS(1818), - [anon_sym_0x] = ACTIONS(1818), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(4751), + [sym__newline] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_err_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_GT_PIPE] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_DASH2] = ACTIONS(4753), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_DOT_DOT] = ACTIONS(4753), + [anon_sym_DOT_DOT2] = ACTIONS(4818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4753), + [anon_sym_DOT_DOT_LT] = ACTIONS(4753), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4820), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4751), + [anon_sym_true] = ACTIONS(4751), + [anon_sym_false] = ACTIONS(4751), + [aux_sym__val_number_decimal_token1] = ACTIONS(4753), + [aux_sym__val_number_decimal_token2] = ACTIONS(4751), + [aux_sym__val_number_decimal_token3] = ACTIONS(4751), + [aux_sym__val_number_decimal_token4] = ACTIONS(4751), + [aux_sym__val_number_token1] = ACTIONS(4751), + [aux_sym__val_number_token2] = ACTIONS(4751), + [aux_sym__val_number_token3] = ACTIONS(4751), + [aux_sym__val_number_token4] = ACTIONS(4751), + [aux_sym__val_number_token5] = ACTIONS(4751), + [aux_sym__val_number_token6] = ACTIONS(4751), + [anon_sym_0b] = ACTIONS(4753), + [anon_sym_0o] = ACTIONS(4753), + [anon_sym_0x] = ACTIONS(4753), + [sym_val_date] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [sym__str_single_quotes] = ACTIONS(4751), + [sym__str_back_ticks] = ACTIONS(4751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4751), + [anon_sym_err_GT] = ACTIONS(4753), + [anon_sym_out_GT] = ACTIONS(4753), + [anon_sym_e_GT] = ACTIONS(4753), + [anon_sym_o_GT] = ACTIONS(4753), + [anon_sym_err_PLUSout_GT] = ACTIONS(4753), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4753), + [anon_sym_o_PLUSe_GT] = ACTIONS(4753), + [anon_sym_e_PLUSo_GT] = ACTIONS(4753), + [anon_sym_err_GT_GT] = ACTIONS(4751), + [anon_sym_out_GT_GT] = ACTIONS(4751), + [anon_sym_e_GT_GT] = ACTIONS(4751), + [anon_sym_o_GT_GT] = ACTIONS(4751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4751), + [aux_sym_unquoted_token1] = ACTIONS(4753), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4751), }, [1604] = { + [sym_path] = STATE(1725), [sym_comment] = STATE(1604), - [sym__newline] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_err_GT_PIPE] = ACTIONS(2274), - [anon_sym_out_GT_PIPE] = ACTIONS(2274), - [anon_sym_e_GT_PIPE] = ACTIONS(2274), - [anon_sym_o_GT_PIPE] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2272), - [anon_sym_DOT_DOT_LT] = ACTIONS(2272), - [anon_sym_null] = ACTIONS(2272), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_0b] = ACTIONS(2272), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym__str_single_quotes] = ACTIONS(2274), - [sym__str_back_ticks] = ACTIONS(2274), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [aux_sym_unquoted_token1] = ACTIONS(2272), - [aux_sym_unquoted_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2274), + [aux_sym_cell_path_repeat1] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_null] = ACTIONS(950), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(948), + [anon_sym_0o] = ACTIONS(948), + [anon_sym_0x] = ACTIONS(948), + [sym_val_date] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4720), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [aux_sym_unquoted_token1] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), }, [1605] = { [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(1765), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_null] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1763), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_0b] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1765), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [aux_sym_unquoted_token1] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1765), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), }, [1606] = { + [sym_cell_path] = STATE(2060), + [sym_path] = STATE(1510), [sym_comment] = STATE(1606), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2294), - [anon_sym_DOT_DOT_LT] = ACTIONS(2294), - [anon_sym_null] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2294), - [anon_sym_false] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2292), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_0b] = ACTIONS(2292), - [anon_sym_0o] = ACTIONS(2292), - [anon_sym_0x] = ACTIONS(2292), - [sym_val_date] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2292), - [anon_sym_out_GT] = ACTIONS(2292), - [anon_sym_e_GT] = ACTIONS(2292), - [anon_sym_o_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT] = ACTIONS(2292), - [anon_sym_err_GT_GT] = ACTIONS(2294), - [anon_sym_out_GT_GT] = ACTIONS(2294), - [anon_sym_e_GT_GT] = ACTIONS(2294), - [anon_sym_o_GT_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), - [aux_sym_unquoted_token1] = ACTIONS(2292), - [aux_sym_unquoted_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2294), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_err_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_GT_PIPE] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_GT2] = ACTIONS(2017), + [anon_sym_DASH2] = ACTIONS(2019), + [anon_sym_in2] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_EQ_GT] = ACTIONS(2019), + [anon_sym_STAR2] = ACTIONS(2017), + [anon_sym_and2] = ACTIONS(2019), + [anon_sym_xor2] = ACTIONS(2019), + [anon_sym_or2] = ACTIONS(2019), + [anon_sym_not_DASHin2] = ACTIONS(2019), + [anon_sym_starts_DASHwith2] = ACTIONS(2019), + [anon_sym_ends_DASHwith2] = ACTIONS(2019), + [anon_sym_EQ_EQ2] = ACTIONS(2019), + [anon_sym_BANG_EQ2] = ACTIONS(2019), + [anon_sym_LT2] = ACTIONS(2017), + [anon_sym_LT_EQ2] = ACTIONS(2019), + [anon_sym_GT_EQ2] = ACTIONS(2019), + [anon_sym_EQ_TILDE2] = ACTIONS(2019), + [anon_sym_BANG_TILDE2] = ACTIONS(2019), + [anon_sym_STAR_STAR2] = ACTIONS(2019), + [anon_sym_PLUS_PLUS2] = ACTIONS(2019), + [anon_sym_SLASH2] = ACTIONS(2017), + [anon_sym_mod2] = ACTIONS(2019), + [anon_sym_SLASH_SLASH2] = ACTIONS(2019), + [anon_sym_PLUS2] = ACTIONS(2017), + [anon_sym_bit_DASHshl2] = ACTIONS(2019), + [anon_sym_bit_DASHshr2] = ACTIONS(2019), + [anon_sym_bit_DASHand2] = ACTIONS(2019), + [anon_sym_bit_DASHxor2] = ACTIONS(2019), + [anon_sym_bit_DASHor2] = ACTIONS(2019), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2017), + [anon_sym_out_GT] = ACTIONS(2017), + [anon_sym_e_GT] = ACTIONS(2017), + [anon_sym_o_GT] = ACTIONS(2017), + [anon_sym_err_PLUSout_GT] = ACTIONS(2017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), + [anon_sym_o_PLUSe_GT] = ACTIONS(2017), + [anon_sym_e_PLUSo_GT] = ACTIONS(2017), + [anon_sym_err_GT_GT] = ACTIONS(2019), + [anon_sym_out_GT_GT] = ACTIONS(2019), + [anon_sym_e_GT_GT] = ACTIONS(2019), + [anon_sym_o_GT_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(251), }, [1607] = { + [sym_cell_path] = STATE(2062), + [sym_path] = STATE(1510), [sym_comment] = STATE(1607), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [aux_sym_unquoted_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2238), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_err_GT_PIPE] = ACTIONS(2027), + [anon_sym_out_GT_PIPE] = ACTIONS(2027), + [anon_sym_e_GT_PIPE] = ACTIONS(2027), + [anon_sym_o_GT_PIPE] = ACTIONS(2027), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2027), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2027), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2027), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_GT2] = ACTIONS(2025), + [anon_sym_DASH2] = ACTIONS(2027), + [anon_sym_in2] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_EQ_GT] = ACTIONS(2027), + [anon_sym_STAR2] = ACTIONS(2025), + [anon_sym_and2] = ACTIONS(2027), + [anon_sym_xor2] = ACTIONS(2027), + [anon_sym_or2] = ACTIONS(2027), + [anon_sym_not_DASHin2] = ACTIONS(2027), + [anon_sym_starts_DASHwith2] = ACTIONS(2027), + [anon_sym_ends_DASHwith2] = ACTIONS(2027), + [anon_sym_EQ_EQ2] = ACTIONS(2027), + [anon_sym_BANG_EQ2] = ACTIONS(2027), + [anon_sym_LT2] = ACTIONS(2025), + [anon_sym_LT_EQ2] = ACTIONS(2027), + [anon_sym_GT_EQ2] = ACTIONS(2027), + [anon_sym_EQ_TILDE2] = ACTIONS(2027), + [anon_sym_BANG_TILDE2] = ACTIONS(2027), + [anon_sym_STAR_STAR2] = ACTIONS(2027), + [anon_sym_PLUS_PLUS2] = ACTIONS(2027), + [anon_sym_SLASH2] = ACTIONS(2025), + [anon_sym_mod2] = ACTIONS(2027), + [anon_sym_SLASH_SLASH2] = ACTIONS(2027), + [anon_sym_PLUS2] = ACTIONS(2025), + [anon_sym_bit_DASHshl2] = ACTIONS(2027), + [anon_sym_bit_DASHshr2] = ACTIONS(2027), + [anon_sym_bit_DASHand2] = ACTIONS(2027), + [anon_sym_bit_DASHxor2] = ACTIONS(2027), + [anon_sym_bit_DASHor2] = ACTIONS(2027), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(2025), + [anon_sym_out_GT] = ACTIONS(2025), + [anon_sym_e_GT] = ACTIONS(2025), + [anon_sym_o_GT] = ACTIONS(2025), + [anon_sym_err_PLUSout_GT] = ACTIONS(2025), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2025), + [anon_sym_o_PLUSe_GT] = ACTIONS(2025), + [anon_sym_e_PLUSo_GT] = ACTIONS(2025), + [anon_sym_err_GT_GT] = ACTIONS(2027), + [anon_sym_out_GT_GT] = ACTIONS(2027), + [anon_sym_e_GT_GT] = ACTIONS(2027), + [anon_sym_o_GT_GT] = ACTIONS(2027), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2027), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2027), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2027), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(251), }, [1608] = { [sym_comment] = STATE(1608), - [sym__newline] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_err_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_GT_PIPE] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1848), - [anon_sym_DOT_DOT_LT] = ACTIONS(1848), - [anon_sym_null] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [aux_sym__val_number_token4] = ACTIONS(1848), - [aux_sym__val_number_token5] = ACTIONS(1848), - [aux_sym__val_number_token6] = ACTIONS(1848), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1840), - [anon_sym_0x] = ACTIONS(1840), - [sym_val_date] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1840), - [anon_sym_out_GT] = ACTIONS(1840), - [anon_sym_e_GT] = ACTIONS(1840), - [anon_sym_o_GT] = ACTIONS(1840), - [anon_sym_err_PLUSout_GT] = ACTIONS(1840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), - [anon_sym_o_PLUSe_GT] = ACTIONS(1840), - [anon_sym_e_PLUSo_GT] = ACTIONS(1840), - [anon_sym_err_GT_GT] = ACTIONS(1848), - [anon_sym_out_GT_GT] = ACTIONS(1848), - [anon_sym_e_GT_GT] = ACTIONS(1848), - [anon_sym_o_GT_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), - [aux_sym_unquoted_token1] = ACTIONS(1840), - [aux_sym_unquoted_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1848), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_DASH2] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), + [aux_sym__val_number_decimal_token1] = ACTIONS(1717), + [aux_sym__val_number_decimal_token2] = ACTIONS(1719), + [aux_sym__val_number_decimal_token3] = ACTIONS(1719), + [aux_sym__val_number_decimal_token4] = ACTIONS(1719), + [aux_sym__val_number_token1] = ACTIONS(1719), + [aux_sym__val_number_token2] = ACTIONS(1719), + [aux_sym__val_number_token3] = ACTIONS(1719), + [aux_sym__val_number_token4] = ACTIONS(1719), + [aux_sym__val_number_token5] = ACTIONS(1719), + [aux_sym__val_number_token6] = ACTIONS(1719), + [anon_sym_0b] = ACTIONS(1717), + [anon_sym_0o] = ACTIONS(1717), + [anon_sym_0x] = ACTIONS(1717), + [sym_val_date] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(1719), + [sym__str_single_quotes] = ACTIONS(1719), + [sym__str_back_ticks] = ACTIONS(1719), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [aux_sym_unquoted_token1] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1719), }, [1609] = { [sym_comment] = STATE(1609), - [ts_builtin_sym_end] = ACTIONS(2125), - [sym__newline] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_err_GT_PIPE] = ACTIONS(2125), - [anon_sym_out_GT_PIPE] = ACTIONS(2125), - [anon_sym_e_GT_PIPE] = ACTIONS(2125), - [anon_sym_o_GT_PIPE] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_DOLLAR] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2125), - [anon_sym_DASH2] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2123), - [anon_sym_DOT_DOT2] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2123), - [anon_sym_DOT_DOT_LT] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), - [anon_sym_null] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [aux_sym__val_number_decimal_token1] = ACTIONS(2123), - [aux_sym__val_number_decimal_token2] = ACTIONS(2125), - [aux_sym__val_number_decimal_token3] = ACTIONS(2125), - [aux_sym__val_number_decimal_token4] = ACTIONS(2125), - [aux_sym__val_number_token1] = ACTIONS(2125), - [aux_sym__val_number_token2] = ACTIONS(2125), - [aux_sym__val_number_token3] = ACTIONS(2125), - [aux_sym__val_number_token4] = ACTIONS(2125), - [aux_sym__val_number_token5] = ACTIONS(2125), - [aux_sym__val_number_token6] = ACTIONS(2125), - [anon_sym_0b] = ACTIONS(2123), - [anon_sym_0o] = ACTIONS(2123), - [anon_sym_0x] = ACTIONS(2123), - [sym_val_date] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(2125), - [sym__str_single_quotes] = ACTIONS(2125), - [sym__str_back_ticks] = ACTIONS(2125), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2125), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2125), - [anon_sym_err_GT] = ACTIONS(2123), - [anon_sym_out_GT] = ACTIONS(2123), - [anon_sym_e_GT] = ACTIONS(2123), - [anon_sym_o_GT] = ACTIONS(2123), - [anon_sym_err_PLUSout_GT] = ACTIONS(2123), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), - [anon_sym_o_PLUSe_GT] = ACTIONS(2123), - [anon_sym_e_PLUSo_GT] = ACTIONS(2123), - [anon_sym_err_GT_GT] = ACTIONS(2125), - [anon_sym_out_GT_GT] = ACTIONS(2125), - [anon_sym_e_GT_GT] = ACTIONS(2125), - [anon_sym_o_GT_GT] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), - [aux_sym_unquoted_token1] = ACTIONS(2123), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2125), + [sym__newline] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_err_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_GT_PIPE] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), + [anon_sym_DOT_DOT_LT] = ACTIONS(1827), + [anon_sym_null] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1827), + [aux_sym__val_number_token5] = ACTIONS(1827), + [aux_sym__val_number_token6] = ACTIONS(1827), + [anon_sym_0b] = ACTIONS(1819), + [anon_sym_0o] = ACTIONS(1819), + [anon_sym_0x] = ACTIONS(1819), + [sym_val_date] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1827), + [anon_sym_err_GT] = ACTIONS(1819), + [anon_sym_out_GT] = ACTIONS(1819), + [anon_sym_e_GT] = ACTIONS(1819), + [anon_sym_o_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT] = ACTIONS(1819), + [anon_sym_err_GT_GT] = ACTIONS(1827), + [anon_sym_out_GT_GT] = ACTIONS(1827), + [anon_sym_e_GT_GT] = ACTIONS(1827), + [anon_sym_o_GT_GT] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1827), + [aux_sym_unquoted_token1] = ACTIONS(1819), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), }, [1610] = { [sym_comment] = STATE(1610), - [sym__newline] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4996), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_err_GT_PIPE] = ACTIONS(4996), - [anon_sym_out_GT_PIPE] = ACTIONS(4996), - [anon_sym_e_GT_PIPE] = ACTIONS(4996), - [anon_sym_o_GT_PIPE] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(4996), - [anon_sym_RPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4996), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_DOT_DOT2] = ACTIONS(4907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4998), - [anon_sym_DOT_DOT_LT] = ACTIONS(4998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), - [anon_sym_null] = ACTIONS(4996), - [anon_sym_true] = ACTIONS(4996), - [anon_sym_false] = ACTIONS(4996), - [aux_sym__val_number_decimal_token1] = ACTIONS(4998), - [aux_sym__val_number_decimal_token2] = ACTIONS(4996), - [aux_sym__val_number_decimal_token3] = ACTIONS(4996), - [aux_sym__val_number_decimal_token4] = ACTIONS(4996), - [aux_sym__val_number_token1] = ACTIONS(4996), - [aux_sym__val_number_token2] = ACTIONS(4996), - [aux_sym__val_number_token3] = ACTIONS(4996), - [aux_sym__val_number_token4] = ACTIONS(4996), - [aux_sym__val_number_token5] = ACTIONS(4996), - [aux_sym__val_number_token6] = ACTIONS(4996), - [anon_sym_0b] = ACTIONS(4998), - [anon_sym_0o] = ACTIONS(4998), - [anon_sym_0x] = ACTIONS(4998), - [sym_val_date] = ACTIONS(4996), - [anon_sym_DQUOTE] = ACTIONS(4996), - [sym__str_single_quotes] = ACTIONS(4996), - [sym__str_back_ticks] = ACTIONS(4996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4996), - [anon_sym_err_GT] = ACTIONS(4998), - [anon_sym_out_GT] = ACTIONS(4998), - [anon_sym_e_GT] = ACTIONS(4998), - [anon_sym_o_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT] = ACTIONS(4998), - [anon_sym_err_GT_GT] = ACTIONS(4996), - [anon_sym_out_GT_GT] = ACTIONS(4996), - [anon_sym_e_GT_GT] = ACTIONS(4996), - [anon_sym_o_GT_GT] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4996), - [aux_sym_unquoted_token1] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4996), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_GT2] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1719), + [anon_sym_in2] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_EQ_GT] = ACTIONS(1719), + [anon_sym_STAR2] = ACTIONS(1717), + [anon_sym_and2] = ACTIONS(1719), + [anon_sym_xor2] = ACTIONS(1719), + [anon_sym_or2] = ACTIONS(1719), + [anon_sym_not_DASHin2] = ACTIONS(1719), + [anon_sym_starts_DASHwith2] = ACTIONS(1719), + [anon_sym_ends_DASHwith2] = ACTIONS(1719), + [anon_sym_EQ_EQ2] = ACTIONS(1719), + [anon_sym_BANG_EQ2] = ACTIONS(1719), + [anon_sym_LT2] = ACTIONS(1717), + [anon_sym_LT_EQ2] = ACTIONS(1719), + [anon_sym_GT_EQ2] = ACTIONS(1719), + [anon_sym_EQ_TILDE2] = ACTIONS(1719), + [anon_sym_BANG_TILDE2] = ACTIONS(1719), + [anon_sym_STAR_STAR2] = ACTIONS(1719), + [anon_sym_PLUS_PLUS2] = ACTIONS(1719), + [anon_sym_SLASH2] = ACTIONS(1717), + [anon_sym_mod2] = ACTIONS(1719), + [anon_sym_SLASH_SLASH2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_bit_DASHshl2] = ACTIONS(1719), + [anon_sym_bit_DASHshr2] = ACTIONS(1719), + [anon_sym_bit_DASHand2] = ACTIONS(1719), + [anon_sym_bit_DASHxor2] = ACTIONS(1719), + [anon_sym_bit_DASHor2] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_COLON2] = ACTIONS(1719), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(251), }, [1611] = { - [sym_cell_path] = STATE(2086), - [sym_path] = STATE(1898), [sym_comment] = STATE(1611), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_err_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_GT_PIPE] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_GT2] = ACTIONS(1895), - [anon_sym_DASH2] = ACTIONS(1897), - [anon_sym_in2] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_EQ_GT] = ACTIONS(1897), - [anon_sym_STAR2] = ACTIONS(1895), - [anon_sym_and2] = ACTIONS(1897), - [anon_sym_xor2] = ACTIONS(1897), - [anon_sym_or2] = ACTIONS(1897), - [anon_sym_not_DASHin2] = ACTIONS(1897), - [anon_sym_starts_DASHwith2] = ACTIONS(1897), - [anon_sym_ends_DASHwith2] = ACTIONS(1897), - [anon_sym_EQ_EQ2] = ACTIONS(1897), - [anon_sym_BANG_EQ2] = ACTIONS(1897), - [anon_sym_LT2] = ACTIONS(1895), - [anon_sym_LT_EQ2] = ACTIONS(1897), - [anon_sym_GT_EQ2] = ACTIONS(1897), - [anon_sym_EQ_TILDE2] = ACTIONS(1897), - [anon_sym_BANG_TILDE2] = ACTIONS(1897), - [anon_sym_STAR_STAR2] = ACTIONS(1897), - [anon_sym_PLUS_PLUS2] = ACTIONS(1897), - [anon_sym_SLASH2] = ACTIONS(1895), - [anon_sym_mod2] = ACTIONS(1897), - [anon_sym_SLASH_SLASH2] = ACTIONS(1897), - [anon_sym_PLUS2] = ACTIONS(1895), - [anon_sym_bit_DASHshl2] = ACTIONS(1897), - [anon_sym_bit_DASHshr2] = ACTIONS(1897), - [anon_sym_bit_DASHand2] = ACTIONS(1897), - [anon_sym_bit_DASHxor2] = ACTIONS(1897), - [anon_sym_bit_DASHor2] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1895), - [anon_sym_out_GT] = ACTIONS(1895), - [anon_sym_e_GT] = ACTIONS(1895), - [anon_sym_o_GT] = ACTIONS(1895), - [anon_sym_err_PLUSout_GT] = ACTIONS(1895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1895), - [anon_sym_o_PLUSe_GT] = ACTIONS(1895), - [anon_sym_e_PLUSo_GT] = ACTIONS(1895), - [anon_sym_err_GT_GT] = ACTIONS(1897), - [anon_sym_out_GT_GT] = ACTIONS(1897), - [anon_sym_e_GT_GT] = ACTIONS(1897), - [anon_sym_o_GT_GT] = ACTIONS(1897), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1897), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1897), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1897), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1601), + [anon_sym_in2] = ACTIONS(1601), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1601), + [anon_sym_xor2] = ACTIONS(1601), + [anon_sym_or2] = ACTIONS(1601), + [anon_sym_not_DASHin2] = ACTIONS(1601), + [anon_sym_starts_DASHwith2] = ACTIONS(1601), + [anon_sym_ends_DASHwith2] = ACTIONS(1601), + [anon_sym_EQ_EQ2] = ACTIONS(1601), + [anon_sym_BANG_EQ2] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1601), + [anon_sym_GT_EQ2] = ACTIONS(1601), + [anon_sym_EQ_TILDE2] = ACTIONS(1601), + [anon_sym_BANG_TILDE2] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_STAR_STAR2] = ACTIONS(1601), + [anon_sym_PLUS_PLUS2] = ACTIONS(1601), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1601), + [anon_sym_SLASH_SLASH2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1601), + [anon_sym_bit_DASHshr2] = ACTIONS(1601), + [anon_sym_bit_DASHand2] = ACTIONS(1601), + [anon_sym_bit_DASHxor2] = ACTIONS(1601), + [anon_sym_bit_DASHor2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(4787), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token2] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(251), }, [1612] = { [sym_comment] = STATE(1612), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(5000), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), }, [1613] = { [sym_comment] = STATE(1613), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(5002), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym__newline] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_err_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_GT_PIPE] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2150), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2150), + [anon_sym_DOT_DOT2] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2150), + [anon_sym_DOT_DOT_LT] = ACTIONS(2150), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2156), + [anon_sym_false] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2150), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_0b] = ACTIONS(2150), + [anon_sym_0o] = ACTIONS(2150), + [anon_sym_0x] = ACTIONS(2150), + [sym_val_date] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2156), + [anon_sym_err_GT] = ACTIONS(2150), + [anon_sym_out_GT] = ACTIONS(2150), + [anon_sym_e_GT] = ACTIONS(2150), + [anon_sym_o_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT] = ACTIONS(2150), + [anon_sym_err_GT_GT] = ACTIONS(2156), + [anon_sym_out_GT_GT] = ACTIONS(2156), + [anon_sym_e_GT_GT] = ACTIONS(2156), + [anon_sym_o_GT_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2156), + [aux_sym_unquoted_token1] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2156), }, [1614] = { - [sym_cell_path] = STATE(2048), - [sym_path] = STATE(1898), + [sym__expr_parenthesized_immediate] = STATE(7360), [sym_comment] = STATE(1614), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_GT2] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1943), - [anon_sym_in2] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_EQ_GT] = ACTIONS(1943), - [anon_sym_STAR2] = ACTIONS(1941), - [anon_sym_and2] = ACTIONS(1943), - [anon_sym_xor2] = ACTIONS(1943), - [anon_sym_or2] = ACTIONS(1943), - [anon_sym_not_DASHin2] = ACTIONS(1943), - [anon_sym_starts_DASHwith2] = ACTIONS(1943), - [anon_sym_ends_DASHwith2] = ACTIONS(1943), - [anon_sym_EQ_EQ2] = ACTIONS(1943), - [anon_sym_BANG_EQ2] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1941), - [anon_sym_LT_EQ2] = ACTIONS(1943), - [anon_sym_GT_EQ2] = ACTIONS(1943), - [anon_sym_EQ_TILDE2] = ACTIONS(1943), - [anon_sym_BANG_TILDE2] = ACTIONS(1943), - [anon_sym_STAR_STAR2] = ACTIONS(1943), - [anon_sym_PLUS_PLUS2] = ACTIONS(1943), - [anon_sym_SLASH2] = ACTIONS(1941), - [anon_sym_mod2] = ACTIONS(1943), - [anon_sym_SLASH_SLASH2] = ACTIONS(1943), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_bit_DASHshl2] = ACTIONS(1943), - [anon_sym_bit_DASHshr2] = ACTIONS(1943), - [anon_sym_bit_DASHand2] = ACTIONS(1943), - [anon_sym_bit_DASHxor2] = ACTIONS(1943), - [anon_sym_bit_DASHor2] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_in2] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4884), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4884), + [sym_filesize_unit] = ACTIONS(4886), + [sym_duration_unit] = ACTIONS(4888), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token2] = ACTIONS(4890), [anon_sym_POUND] = ACTIONS(251), }, [1615] = { [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(1773), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4894), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), }, [1616] = { [sym_comment] = STATE(1616), - [sym__newline] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_err_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_GT_PIPE] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_DOLLAR] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2270), - [anon_sym_DOT_DOT_LT] = ACTIONS(2270), - [anon_sym_null] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2270), - [anon_sym_false] = ACTIONS(2270), - [aux_sym__val_number_decimal_token1] = ACTIONS(2266), - [aux_sym__val_number_decimal_token2] = ACTIONS(2270), - [aux_sym__val_number_decimal_token3] = ACTIONS(2270), - [aux_sym__val_number_decimal_token4] = ACTIONS(2270), - [aux_sym__val_number_token1] = ACTIONS(2270), - [aux_sym__val_number_token2] = ACTIONS(2270), - [aux_sym__val_number_token3] = ACTIONS(2270), - [aux_sym__val_number_token4] = ACTIONS(2270), - [aux_sym__val_number_token5] = ACTIONS(2270), - [aux_sym__val_number_token6] = ACTIONS(2270), - [anon_sym_0b] = ACTIONS(2266), - [anon_sym_0o] = ACTIONS(2266), - [anon_sym_0x] = ACTIONS(2266), - [sym_val_date] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), - [anon_sym_err_GT] = ACTIONS(2266), - [anon_sym_out_GT] = ACTIONS(2266), - [anon_sym_e_GT] = ACTIONS(2266), - [anon_sym_o_GT] = ACTIONS(2266), - [anon_sym_err_PLUSout_GT] = ACTIONS(2266), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), - [anon_sym_o_PLUSe_GT] = ACTIONS(2266), - [anon_sym_e_PLUSo_GT] = ACTIONS(2266), - [anon_sym_err_GT_GT] = ACTIONS(2270), - [anon_sym_out_GT_GT] = ACTIONS(2270), - [anon_sym_e_GT_GT] = ACTIONS(2270), - [anon_sym_o_GT_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2270), - [aux_sym_unquoted_token1] = ACTIONS(2266), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [1617] = { - [sym__expr_parenthesized_immediate] = STATE(8466), - [sym_comment] = STATE(1617), - [sym__newline] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5004), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_err_GT_PIPE] = ACTIONS(5004), - [anon_sym_out_GT_PIPE] = ACTIONS(5004), - [anon_sym_e_GT_PIPE] = ACTIONS(5004), - [anon_sym_o_GT_PIPE] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5004), - [anon_sym_DOLLAR] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_DASH2] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5004), - [anon_sym_RBRACE] = ACTIONS(5004), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5004), - [anon_sym_DOT_DOT_LT] = ACTIONS(5004), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_true] = ACTIONS(5004), - [anon_sym_false] = ACTIONS(5004), - [aux_sym__val_number_decimal_token1] = ACTIONS(5006), - [aux_sym__val_number_decimal_token2] = ACTIONS(5004), - [aux_sym__val_number_decimal_token3] = ACTIONS(5004), - [aux_sym__val_number_decimal_token4] = ACTIONS(5004), - [aux_sym__val_number_token1] = ACTIONS(5004), - [aux_sym__val_number_token2] = ACTIONS(5004), - [aux_sym__val_number_token3] = ACTIONS(5004), - [aux_sym__val_number_token4] = ACTIONS(5004), - [aux_sym__val_number_token5] = ACTIONS(5004), - [aux_sym__val_number_token6] = ACTIONS(5004), - [anon_sym_0b] = ACTIONS(5006), - [anon_sym_0o] = ACTIONS(5006), - [anon_sym_0x] = ACTIONS(5006), - [sym_val_date] = ACTIONS(5004), - [anon_sym_DQUOTE] = ACTIONS(5004), - [sym__str_single_quotes] = ACTIONS(5004), - [sym__str_back_ticks] = ACTIONS(5004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5004), - [anon_sym_err_GT] = ACTIONS(5006), - [anon_sym_out_GT] = ACTIONS(5006), - [anon_sym_e_GT] = ACTIONS(5006), - [anon_sym_o_GT] = ACTIONS(5006), - [anon_sym_err_PLUSout_GT] = ACTIONS(5006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5006), - [anon_sym_o_PLUSe_GT] = ACTIONS(5006), - [anon_sym_e_PLUSo_GT] = ACTIONS(5006), - [anon_sym_err_GT_GT] = ACTIONS(5004), - [anon_sym_out_GT_GT] = ACTIONS(5004), - [anon_sym_e_GT_GT] = ACTIONS(5004), - [anon_sym_o_GT_GT] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5004), - [aux_sym_unquoted_token1] = ACTIONS(5006), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5004), - }, - [1618] = { - [sym_comment] = STATE(1618), - [sym_long_flag_identifier] = ACTIONS(5008), - [sym__newline] = ACTIONS(5010), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5010), - [anon_sym_err_GT_PIPE] = ACTIONS(5010), - [anon_sym_out_GT_PIPE] = ACTIONS(5010), - [anon_sym_e_GT_PIPE] = ACTIONS(5010), - [anon_sym_o_GT_PIPE] = ACTIONS(5010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_DOLLAR] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_DASH2] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), - [anon_sym_DOT_DOT_LT] = ACTIONS(5010), - [anon_sym_null] = ACTIONS(5012), - [anon_sym_true] = ACTIONS(5012), - [anon_sym_false] = ACTIONS(5012), - [aux_sym__val_number_decimal_token1] = ACTIONS(5012), - [aux_sym__val_number_decimal_token2] = ACTIONS(5010), - [aux_sym__val_number_decimal_token3] = ACTIONS(5010), - [aux_sym__val_number_decimal_token4] = ACTIONS(5010), - [aux_sym__val_number_token1] = ACTIONS(5012), - [aux_sym__val_number_token2] = ACTIONS(5012), - [aux_sym__val_number_token3] = ACTIONS(5012), - [aux_sym__val_number_token4] = ACTIONS(5012), - [aux_sym__val_number_token5] = ACTIONS(5010), - [aux_sym__val_number_token6] = ACTIONS(5012), - [anon_sym_0b] = ACTIONS(5012), - [anon_sym_0o] = ACTIONS(5012), - [anon_sym_0x] = ACTIONS(5012), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(5010), - [sym__str_single_quotes] = ACTIONS(5010), - [sym__str_back_ticks] = ACTIONS(5010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5010), - [anon_sym_err_GT] = ACTIONS(5012), - [anon_sym_out_GT] = ACTIONS(5012), - [anon_sym_e_GT] = ACTIONS(5012), - [anon_sym_o_GT] = ACTIONS(5012), - [anon_sym_err_PLUSout_GT] = ACTIONS(5012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5012), - [anon_sym_o_PLUSe_GT] = ACTIONS(5012), - [anon_sym_e_PLUSo_GT] = ACTIONS(5012), - [anon_sym_err_GT_GT] = ACTIONS(5010), - [anon_sym_out_GT_GT] = ACTIONS(5010), - [anon_sym_e_GT_GT] = ACTIONS(5010), - [anon_sym_o_GT_GT] = ACTIONS(5010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5010), - [anon_sym_EQ2] = ACTIONS(5014), - [aux_sym_unquoted_token1] = ACTIONS(5012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5010), - }, - [1619] = { - [sym_cell_path] = STATE(2163), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1619), - [aux_sym_cell_path_repeat1] = STATE(1733), - [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_RPAREN] = ACTIONS(1905), - [anon_sym_GT2] = ACTIONS(1903), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_in2] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_EQ_GT] = ACTIONS(1905), - [anon_sym_STAR2] = ACTIONS(1903), - [anon_sym_and2] = ACTIONS(1905), - [anon_sym_xor2] = ACTIONS(1905), - [anon_sym_or2] = ACTIONS(1905), - [anon_sym_not_DASHin2] = ACTIONS(1905), - [anon_sym_starts_DASHwith2] = ACTIONS(1905), - [anon_sym_ends_DASHwith2] = ACTIONS(1905), - [anon_sym_EQ_EQ2] = ACTIONS(1905), - [anon_sym_BANG_EQ2] = ACTIONS(1905), - [anon_sym_LT2] = ACTIONS(1903), - [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_STAR_STAR2] = ACTIONS(1905), - [anon_sym_PLUS_PLUS2] = ACTIONS(1905), - [anon_sym_SLASH2] = ACTIONS(1903), - [anon_sym_mod2] = ACTIONS(1905), - [anon_sym_SLASH_SLASH2] = ACTIONS(1905), - [anon_sym_PLUS2] = ACTIONS(1903), - [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] = ACTIONS(4980), - [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(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(251), - }, - [1620] = { - [sym_cell_path] = STATE(2141), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1620), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_err_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_GT_PIPE] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), - [anon_sym_RPAREN] = ACTIONS(1911), - [anon_sym_GT2] = ACTIONS(1909), - [anon_sym_DASH2] = ACTIONS(1911), - [anon_sym_in2] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_RBRACE] = ACTIONS(1911), - [anon_sym_EQ_GT] = ACTIONS(1911), - [anon_sym_STAR2] = ACTIONS(1909), - [anon_sym_and2] = ACTIONS(1911), - [anon_sym_xor2] = ACTIONS(1911), - [anon_sym_or2] = ACTIONS(1911), - [anon_sym_not_DASHin2] = ACTIONS(1911), - [anon_sym_starts_DASHwith2] = ACTIONS(1911), - [anon_sym_ends_DASHwith2] = ACTIONS(1911), - [anon_sym_EQ_EQ2] = ACTIONS(1911), - [anon_sym_BANG_EQ2] = ACTIONS(1911), - [anon_sym_LT2] = ACTIONS(1909), - [anon_sym_LT_EQ2] = ACTIONS(1911), - [anon_sym_GT_EQ2] = ACTIONS(1911), - [anon_sym_EQ_TILDE2] = ACTIONS(1911), - [anon_sym_BANG_TILDE2] = ACTIONS(1911), - [anon_sym_STAR_STAR2] = ACTIONS(1911), - [anon_sym_PLUS_PLUS2] = ACTIONS(1911), - [anon_sym_SLASH2] = ACTIONS(1909), - [anon_sym_mod2] = ACTIONS(1911), - [anon_sym_SLASH_SLASH2] = ACTIONS(1911), - [anon_sym_PLUS2] = ACTIONS(1909), - [anon_sym_bit_DASHshl2] = ACTIONS(1911), - [anon_sym_bit_DASHshr2] = ACTIONS(1911), - [anon_sym_bit_DASHand2] = ACTIONS(1911), - [anon_sym_bit_DASHxor2] = ACTIONS(1911), - [anon_sym_bit_DASHor2] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1909), - [anon_sym_out_GT] = ACTIONS(1909), - [anon_sym_e_GT] = ACTIONS(1909), - [anon_sym_o_GT] = ACTIONS(1909), - [anon_sym_err_PLUSout_GT] = ACTIONS(1909), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), - [anon_sym_o_PLUSe_GT] = ACTIONS(1909), - [anon_sym_e_PLUSo_GT] = ACTIONS(1909), - [anon_sym_err_GT_GT] = ACTIONS(1911), - [anon_sym_out_GT_GT] = ACTIONS(1911), - [anon_sym_e_GT_GT] = ACTIONS(1911), - [anon_sym_o_GT_GT] = ACTIONS(1911), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(251), - }, - [1621] = { - [sym_path] = STATE(1843), - [sym_comment] = STATE(1621), - [aux_sym_cell_path_repeat1] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(977), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_DASH_DASH] = ACTIONS(977), - [anon_sym_DASH2] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(5016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_DOT_DOT_LT] = ACTIONS(977), - [anon_sym_null] = ACTIONS(977), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [aux_sym__val_number_decimal_token1] = ACTIONS(975), - [aux_sym__val_number_decimal_token2] = ACTIONS(977), - [aux_sym__val_number_decimal_token3] = ACTIONS(977), - [aux_sym__val_number_decimal_token4] = ACTIONS(977), - [aux_sym__val_number_token1] = ACTIONS(977), - [aux_sym__val_number_token2] = ACTIONS(977), - [aux_sym__val_number_token3] = ACTIONS(977), - [aux_sym__val_number_token4] = ACTIONS(977), - [aux_sym__val_number_token5] = ACTIONS(977), - [aux_sym__val_number_token6] = ACTIONS(977), - [anon_sym_0b] = ACTIONS(975), - [anon_sym_0o] = ACTIONS(975), - [anon_sym_0x] = ACTIONS(975), - [sym_val_date] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym__str_single_quotes] = ACTIONS(977), - [sym__str_back_ticks] = ACTIONS(977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [aux_sym_unquoted_token1] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(977), - }, - [1622] = { - [sym_comment] = STATE(1622), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(5019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [1623] = { - [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4950), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token2] = ACTIONS(4896), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + }, + [1617] = { + [sym_cell_path] = STATE(2036), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1617), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_PIPE] = ACTIONS(1967), + [anon_sym_err_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_GT_PIPE] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_GT2] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1967), + [anon_sym_in2] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(1967), + [anon_sym_STAR2] = ACTIONS(1965), + [anon_sym_and2] = ACTIONS(1967), + [anon_sym_xor2] = ACTIONS(1967), + [anon_sym_or2] = ACTIONS(1967), + [anon_sym_not_DASHin2] = ACTIONS(1967), + [anon_sym_starts_DASHwith2] = ACTIONS(1967), + [anon_sym_ends_DASHwith2] = ACTIONS(1967), + [anon_sym_EQ_EQ2] = ACTIONS(1967), + [anon_sym_BANG_EQ2] = ACTIONS(1967), + [anon_sym_LT2] = ACTIONS(1965), + [anon_sym_LT_EQ2] = ACTIONS(1967), + [anon_sym_GT_EQ2] = ACTIONS(1967), + [anon_sym_EQ_TILDE2] = ACTIONS(1967), + [anon_sym_BANG_TILDE2] = ACTIONS(1967), + [anon_sym_STAR_STAR2] = ACTIONS(1967), + [anon_sym_PLUS_PLUS2] = ACTIONS(1967), + [anon_sym_SLASH2] = ACTIONS(1965), + [anon_sym_mod2] = ACTIONS(1967), + [anon_sym_SLASH_SLASH2] = ACTIONS(1967), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_bit_DASHshl2] = ACTIONS(1967), + [anon_sym_bit_DASHshr2] = ACTIONS(1967), + [anon_sym_bit_DASHand2] = ACTIONS(1967), + [anon_sym_bit_DASHxor2] = ACTIONS(1967), + [anon_sym_bit_DASHor2] = ACTIONS(1967), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1967), + [anon_sym_out_GT_GT] = ACTIONS(1967), + [anon_sym_e_GT_GT] = ACTIONS(1967), + [anon_sym_o_GT_GT] = ACTIONS(1967), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), + [anon_sym_POUND] = ACTIONS(251), + }, + [1618] = { + [sym_cell_path] = STATE(2054), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1618), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_GT2] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_in2] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_EQ_GT] = ACTIONS(1995), + [anon_sym_STAR2] = ACTIONS(1993), + [anon_sym_and2] = ACTIONS(1995), + [anon_sym_xor2] = ACTIONS(1995), + [anon_sym_or2] = ACTIONS(1995), + [anon_sym_not_DASHin2] = ACTIONS(1995), + [anon_sym_starts_DASHwith2] = ACTIONS(1995), + [anon_sym_ends_DASHwith2] = ACTIONS(1995), + [anon_sym_EQ_EQ2] = ACTIONS(1995), + [anon_sym_BANG_EQ2] = ACTIONS(1995), + [anon_sym_LT2] = ACTIONS(1993), + [anon_sym_LT_EQ2] = ACTIONS(1995), + [anon_sym_GT_EQ2] = ACTIONS(1995), + [anon_sym_EQ_TILDE2] = ACTIONS(1995), + [anon_sym_BANG_TILDE2] = ACTIONS(1995), + [anon_sym_STAR_STAR2] = ACTIONS(1995), + [anon_sym_PLUS_PLUS2] = ACTIONS(1995), + [anon_sym_SLASH2] = ACTIONS(1993), + [anon_sym_mod2] = ACTIONS(1995), + [anon_sym_SLASH_SLASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_bit_DASHshl2] = ACTIONS(1995), + [anon_sym_bit_DASHshr2] = ACTIONS(1995), + [anon_sym_bit_DASHand2] = ACTIONS(1995), + [anon_sym_bit_DASHxor2] = ACTIONS(1995), + [anon_sym_bit_DASHor2] = ACTIONS(1995), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(251), + }, + [1619] = { + [sym_comment] = STATE(1619), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_GT2] = ACTIONS(2055), + [anon_sym_DASH2] = ACTIONS(2057), + [anon_sym_in2] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_EQ_GT] = ACTIONS(2057), + [anon_sym_STAR2] = ACTIONS(2055), + [anon_sym_and2] = ACTIONS(2057), + [anon_sym_xor2] = ACTIONS(2057), + [anon_sym_or2] = ACTIONS(2057), + [anon_sym_not_DASHin2] = ACTIONS(2057), + [anon_sym_starts_DASHwith2] = ACTIONS(2057), + [anon_sym_ends_DASHwith2] = ACTIONS(2057), + [anon_sym_EQ_EQ2] = ACTIONS(2057), + [anon_sym_BANG_EQ2] = ACTIONS(2057), + [anon_sym_LT2] = ACTIONS(2055), + [anon_sym_LT_EQ2] = ACTIONS(2057), + [anon_sym_GT_EQ2] = ACTIONS(2057), + [anon_sym_EQ_TILDE2] = ACTIONS(2057), + [anon_sym_BANG_TILDE2] = ACTIONS(2057), + [anon_sym_STAR_STAR2] = ACTIONS(2057), + [anon_sym_PLUS_PLUS2] = ACTIONS(2057), + [anon_sym_SLASH2] = ACTIONS(2055), + [anon_sym_mod2] = ACTIONS(2057), + [anon_sym_SLASH_SLASH2] = ACTIONS(2057), + [anon_sym_PLUS2] = ACTIONS(2055), + [anon_sym_bit_DASHshl2] = ACTIONS(2057), + [anon_sym_bit_DASHshr2] = ACTIONS(2057), + [anon_sym_bit_DASHand2] = ACTIONS(2057), + [anon_sym_bit_DASHxor2] = ACTIONS(2057), + [anon_sym_bit_DASHor2] = ACTIONS(2057), + [anon_sym_DOT_DOT2] = ACTIONS(2055), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), + [anon_sym_COLON2] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2055), + [anon_sym_out_GT] = ACTIONS(2055), + [anon_sym_e_GT] = ACTIONS(2055), + [anon_sym_o_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT] = ACTIONS(2055), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(251), + }, + [1620] = { + [sym_cell_path] = STATE(2044), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1620), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_GT2] = ACTIONS(1969), + [anon_sym_DASH2] = ACTIONS(1971), + [anon_sym_in2] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(1971), + [anon_sym_STAR2] = ACTIONS(1969), + [anon_sym_and2] = ACTIONS(1971), + [anon_sym_xor2] = ACTIONS(1971), + [anon_sym_or2] = ACTIONS(1971), + [anon_sym_not_DASHin2] = ACTIONS(1971), + [anon_sym_starts_DASHwith2] = ACTIONS(1971), + [anon_sym_ends_DASHwith2] = ACTIONS(1971), + [anon_sym_EQ_EQ2] = ACTIONS(1971), + [anon_sym_BANG_EQ2] = ACTIONS(1971), + [anon_sym_LT2] = ACTIONS(1969), + [anon_sym_LT_EQ2] = ACTIONS(1971), + [anon_sym_GT_EQ2] = ACTIONS(1971), + [anon_sym_EQ_TILDE2] = ACTIONS(1971), + [anon_sym_BANG_TILDE2] = ACTIONS(1971), + [anon_sym_STAR_STAR2] = ACTIONS(1971), + [anon_sym_PLUS_PLUS2] = ACTIONS(1971), + [anon_sym_SLASH2] = ACTIONS(1969), + [anon_sym_mod2] = ACTIONS(1971), + [anon_sym_SLASH_SLASH2] = ACTIONS(1971), + [anon_sym_PLUS2] = ACTIONS(1969), + [anon_sym_bit_DASHshl2] = ACTIONS(1971), + [anon_sym_bit_DASHshr2] = ACTIONS(1971), + [anon_sym_bit_DASHand2] = ACTIONS(1971), + [anon_sym_bit_DASHxor2] = ACTIONS(1971), + [anon_sym_bit_DASHor2] = ACTIONS(1971), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1969), + [anon_sym_out_GT] = ACTIONS(1969), + [anon_sym_e_GT] = ACTIONS(1969), + [anon_sym_o_GT] = ACTIONS(1969), + [anon_sym_err_PLUSout_GT] = ACTIONS(1969), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), + [anon_sym_o_PLUSe_GT] = ACTIONS(1969), + [anon_sym_e_PLUSo_GT] = ACTIONS(1969), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(251), + }, + [1621] = { + [sym_cell_path] = STATE(2046), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1621), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_err_GT_PIPE] = ACTIONS(1975), + [anon_sym_out_GT_PIPE] = ACTIONS(1975), + [anon_sym_e_GT_PIPE] = ACTIONS(1975), + [anon_sym_o_GT_PIPE] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_GT2] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1975), + [anon_sym_in2] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_EQ_GT] = ACTIONS(1975), + [anon_sym_STAR2] = ACTIONS(1973), + [anon_sym_and2] = ACTIONS(1975), + [anon_sym_xor2] = ACTIONS(1975), + [anon_sym_or2] = ACTIONS(1975), + [anon_sym_not_DASHin2] = ACTIONS(1975), + [anon_sym_starts_DASHwith2] = ACTIONS(1975), + [anon_sym_ends_DASHwith2] = ACTIONS(1975), + [anon_sym_EQ_EQ2] = ACTIONS(1975), + [anon_sym_BANG_EQ2] = ACTIONS(1975), + [anon_sym_LT2] = ACTIONS(1973), + [anon_sym_LT_EQ2] = ACTIONS(1975), + [anon_sym_GT_EQ2] = ACTIONS(1975), + [anon_sym_EQ_TILDE2] = ACTIONS(1975), + [anon_sym_BANG_TILDE2] = ACTIONS(1975), + [anon_sym_STAR_STAR2] = ACTIONS(1975), + [anon_sym_PLUS_PLUS2] = ACTIONS(1975), + [anon_sym_SLASH2] = ACTIONS(1973), + [anon_sym_mod2] = ACTIONS(1975), + [anon_sym_SLASH_SLASH2] = ACTIONS(1975), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_bit_DASHshl2] = ACTIONS(1975), + [anon_sym_bit_DASHshr2] = ACTIONS(1975), + [anon_sym_bit_DASHand2] = ACTIONS(1975), + [anon_sym_bit_DASHxor2] = ACTIONS(1975), + [anon_sym_bit_DASHor2] = ACTIONS(1975), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1973), + [anon_sym_out_GT] = ACTIONS(1973), + [anon_sym_e_GT] = ACTIONS(1973), + [anon_sym_o_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT] = ACTIONS(1973), + [anon_sym_err_GT_GT] = ACTIONS(1975), + [anon_sym_out_GT_GT] = ACTIONS(1975), + [anon_sym_e_GT_GT] = ACTIONS(1975), + [anon_sym_o_GT_GT] = ACTIONS(1975), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1975), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1975), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1975), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1975), + [anon_sym_POUND] = ACTIONS(251), + }, + [1622] = { + [sym_comment] = STATE(1622), + [sym__newline] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_err_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_GT_PIPE] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_DASH2] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), + [anon_sym_DOT_DOT_LT] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4900), + [anon_sym_false] = ACTIONS(4900), + [aux_sym__val_number_decimal_token1] = ACTIONS(4900), + [aux_sym__val_number_decimal_token2] = ACTIONS(4900), + [aux_sym__val_number_decimal_token3] = ACTIONS(4898), + [aux_sym__val_number_decimal_token4] = ACTIONS(4898), + [aux_sym__val_number_token1] = ACTIONS(4900), + [aux_sym__val_number_token2] = ACTIONS(4900), + [aux_sym__val_number_token3] = ACTIONS(4900), + [aux_sym__val_number_token4] = ACTIONS(4900), + [aux_sym__val_number_token5] = ACTIONS(4900), + [aux_sym__val_number_token6] = ACTIONS(4900), + [anon_sym_0b] = ACTIONS(4900), + [anon_sym_0o] = ACTIONS(4900), + [anon_sym_0x] = ACTIONS(4900), + [sym_val_date] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4898), + [sym__str_single_quotes] = ACTIONS(4898), + [sym__str_back_ticks] = ACTIONS(4898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4898), + [anon_sym_err_GT] = ACTIONS(4900), + [anon_sym_out_GT] = ACTIONS(4900), + [anon_sym_e_GT] = ACTIONS(4900), + [anon_sym_o_GT] = ACTIONS(4900), + [anon_sym_err_PLUSout_GT] = ACTIONS(4900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4900), + [anon_sym_o_PLUSe_GT] = ACTIONS(4900), + [anon_sym_e_PLUSo_GT] = ACTIONS(4900), + [anon_sym_err_GT_GT] = ACTIONS(4898), + [anon_sym_out_GT_GT] = ACTIONS(4898), + [anon_sym_e_GT_GT] = ACTIONS(4898), + [anon_sym_o_GT_GT] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4898), + [anon_sym_EQ2] = ACTIONS(4902), + [sym_short_flag_identifier] = ACTIONS(4904), + [aux_sym_unquoted_token1] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4898), + }, + [1623] = { + [sym_cell_path] = STATE(2047), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1623), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_err_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_GT_PIPE] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_GT2] = ACTIONS(1977), + [anon_sym_DASH2] = ACTIONS(1979), + [anon_sym_in2] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_EQ_GT] = ACTIONS(1979), + [anon_sym_STAR2] = ACTIONS(1977), + [anon_sym_and2] = ACTIONS(1979), + [anon_sym_xor2] = ACTIONS(1979), + [anon_sym_or2] = ACTIONS(1979), + [anon_sym_not_DASHin2] = ACTIONS(1979), + [anon_sym_starts_DASHwith2] = ACTIONS(1979), + [anon_sym_ends_DASHwith2] = ACTIONS(1979), + [anon_sym_EQ_EQ2] = ACTIONS(1979), + [anon_sym_BANG_EQ2] = ACTIONS(1979), + [anon_sym_LT2] = ACTIONS(1977), + [anon_sym_LT_EQ2] = ACTIONS(1979), + [anon_sym_GT_EQ2] = ACTIONS(1979), + [anon_sym_EQ_TILDE2] = ACTIONS(1979), + [anon_sym_BANG_TILDE2] = ACTIONS(1979), + [anon_sym_STAR_STAR2] = ACTIONS(1979), + [anon_sym_PLUS_PLUS2] = ACTIONS(1979), + [anon_sym_SLASH2] = ACTIONS(1977), + [anon_sym_mod2] = ACTIONS(1979), + [anon_sym_SLASH_SLASH2] = ACTIONS(1979), + [anon_sym_PLUS2] = ACTIONS(1977), + [anon_sym_bit_DASHshl2] = ACTIONS(1979), + [anon_sym_bit_DASHshr2] = ACTIONS(1979), + [anon_sym_bit_DASHand2] = ACTIONS(1979), + [anon_sym_bit_DASHxor2] = ACTIONS(1979), + [anon_sym_bit_DASHor2] = ACTIONS(1979), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1977), + [anon_sym_out_GT] = ACTIONS(1977), + [anon_sym_e_GT] = ACTIONS(1977), + [anon_sym_o_GT] = ACTIONS(1977), + [anon_sym_err_PLUSout_GT] = ACTIONS(1977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), + [anon_sym_o_PLUSe_GT] = ACTIONS(1977), + [anon_sym_e_PLUSo_GT] = ACTIONS(1977), + [anon_sym_err_GT_GT] = ACTIONS(1979), + [anon_sym_out_GT_GT] = ACTIONS(1979), + [anon_sym_e_GT_GT] = ACTIONS(1979), + [anon_sym_o_GT_GT] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(251), }, [1624] = { - [sym_path] = STATE(1843), + [sym_cell_path] = STATE(2048), + [sym_path] = STATE(1510), [sym_comment] = STATE(1624), - [aux_sym_cell_path_repeat1] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(984), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_null] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(982), - [anon_sym_0o] = ACTIONS(982), - [anon_sym_0x] = ACTIONS(982), - [sym_val_date] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(984), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1983), + [anon_sym_err_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_GT_PIPE] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_GT2] = ACTIONS(1981), + [anon_sym_DASH2] = ACTIONS(1983), + [anon_sym_in2] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_EQ_GT] = ACTIONS(1983), + [anon_sym_STAR2] = ACTIONS(1981), + [anon_sym_and2] = ACTIONS(1983), + [anon_sym_xor2] = ACTIONS(1983), + [anon_sym_or2] = ACTIONS(1983), + [anon_sym_not_DASHin2] = ACTIONS(1983), + [anon_sym_starts_DASHwith2] = ACTIONS(1983), + [anon_sym_ends_DASHwith2] = ACTIONS(1983), + [anon_sym_EQ_EQ2] = ACTIONS(1983), + [anon_sym_BANG_EQ2] = ACTIONS(1983), + [anon_sym_LT2] = ACTIONS(1981), + [anon_sym_LT_EQ2] = ACTIONS(1983), + [anon_sym_GT_EQ2] = ACTIONS(1983), + [anon_sym_EQ_TILDE2] = ACTIONS(1983), + [anon_sym_BANG_TILDE2] = ACTIONS(1983), + [anon_sym_STAR_STAR2] = ACTIONS(1983), + [anon_sym_PLUS_PLUS2] = ACTIONS(1983), + [anon_sym_SLASH2] = ACTIONS(1981), + [anon_sym_mod2] = ACTIONS(1983), + [anon_sym_SLASH_SLASH2] = ACTIONS(1983), + [anon_sym_PLUS2] = ACTIONS(1981), + [anon_sym_bit_DASHshl2] = ACTIONS(1983), + [anon_sym_bit_DASHshr2] = ACTIONS(1983), + [anon_sym_bit_DASHand2] = ACTIONS(1983), + [anon_sym_bit_DASHxor2] = ACTIONS(1983), + [anon_sym_bit_DASHor2] = ACTIONS(1983), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1981), + [anon_sym_out_GT] = ACTIONS(1981), + [anon_sym_e_GT] = ACTIONS(1981), + [anon_sym_o_GT] = ACTIONS(1981), + [anon_sym_err_PLUSout_GT] = ACTIONS(1981), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1981), + [anon_sym_o_PLUSe_GT] = ACTIONS(1981), + [anon_sym_e_PLUSo_GT] = ACTIONS(1981), + [anon_sym_err_GT_GT] = ACTIONS(1983), + [anon_sym_out_GT_GT] = ACTIONS(1983), + [anon_sym_e_GT_GT] = ACTIONS(1983), + [anon_sym_o_GT_GT] = ACTIONS(1983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [anon_sym_POUND] = ACTIONS(251), }, [1625] = { - [sym__expr_parenthesized_immediate] = STATE(8149), + [sym_cell_path] = STATE(2050), + [sym_path] = STATE(1510), [sym_comment] = STATE(1625), - [sym__newline] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_err_GT_PIPE] = ACTIONS(5023), - [anon_sym_out_GT_PIPE] = ACTIONS(5023), - [anon_sym_e_GT_PIPE] = ACTIONS(5023), - [anon_sym_o_GT_PIPE] = ACTIONS(5023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_DASH2] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_DOT_DOT] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5023), - [anon_sym_DOT_DOT_LT] = ACTIONS(5023), - [anon_sym_null] = ACTIONS(5023), - [anon_sym_true] = ACTIONS(5023), - [anon_sym_false] = ACTIONS(5023), - [aux_sym__val_number_decimal_token1] = ACTIONS(5025), - [aux_sym__val_number_decimal_token2] = ACTIONS(5023), - [aux_sym__val_number_decimal_token3] = ACTIONS(5023), - [aux_sym__val_number_decimal_token4] = ACTIONS(5023), - [aux_sym__val_number_token1] = ACTIONS(5023), - [aux_sym__val_number_token2] = ACTIONS(5023), - [aux_sym__val_number_token3] = ACTIONS(5023), - [aux_sym__val_number_token4] = ACTIONS(5023), - [aux_sym__val_number_token5] = ACTIONS(5023), - [aux_sym__val_number_token6] = ACTIONS(5023), - [anon_sym_0b] = ACTIONS(5025), - [anon_sym_0o] = ACTIONS(5025), - [anon_sym_0x] = ACTIONS(5025), - [sym_val_date] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [sym__str_single_quotes] = ACTIONS(5023), - [sym__str_back_ticks] = ACTIONS(5023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5023), - [anon_sym_err_GT] = ACTIONS(5025), - [anon_sym_out_GT] = ACTIONS(5025), - [anon_sym_e_GT] = ACTIONS(5025), - [anon_sym_o_GT] = ACTIONS(5025), - [anon_sym_err_PLUSout_GT] = ACTIONS(5025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5025), - [anon_sym_o_PLUSe_GT] = ACTIONS(5025), - [anon_sym_e_PLUSo_GT] = ACTIONS(5025), - [anon_sym_err_GT_GT] = ACTIONS(5023), - [anon_sym_out_GT_GT] = ACTIONS(5023), - [anon_sym_e_GT_GT] = ACTIONS(5023), - [anon_sym_o_GT_GT] = ACTIONS(5023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5023), - [aux_sym_unquoted_token1] = ACTIONS(5025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5023), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1987), + [anon_sym_PIPE] = ACTIONS(1987), + [anon_sym_err_GT_PIPE] = ACTIONS(1987), + [anon_sym_out_GT_PIPE] = ACTIONS(1987), + [anon_sym_e_GT_PIPE] = ACTIONS(1987), + [anon_sym_o_GT_PIPE] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1987), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_GT2] = ACTIONS(1985), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_in2] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_EQ_GT] = ACTIONS(1987), + [anon_sym_STAR2] = ACTIONS(1985), + [anon_sym_and2] = ACTIONS(1987), + [anon_sym_xor2] = ACTIONS(1987), + [anon_sym_or2] = ACTIONS(1987), + [anon_sym_not_DASHin2] = ACTIONS(1987), + [anon_sym_starts_DASHwith2] = ACTIONS(1987), + [anon_sym_ends_DASHwith2] = ACTIONS(1987), + [anon_sym_EQ_EQ2] = ACTIONS(1987), + [anon_sym_BANG_EQ2] = ACTIONS(1987), + [anon_sym_LT2] = ACTIONS(1985), + [anon_sym_LT_EQ2] = ACTIONS(1987), + [anon_sym_GT_EQ2] = ACTIONS(1987), + [anon_sym_EQ_TILDE2] = ACTIONS(1987), + [anon_sym_BANG_TILDE2] = ACTIONS(1987), + [anon_sym_STAR_STAR2] = ACTIONS(1987), + [anon_sym_PLUS_PLUS2] = ACTIONS(1987), + [anon_sym_SLASH2] = ACTIONS(1985), + [anon_sym_mod2] = ACTIONS(1987), + [anon_sym_SLASH_SLASH2] = ACTIONS(1987), + [anon_sym_PLUS2] = ACTIONS(1985), + [anon_sym_bit_DASHshl2] = ACTIONS(1987), + [anon_sym_bit_DASHshr2] = ACTIONS(1987), + [anon_sym_bit_DASHand2] = ACTIONS(1987), + [anon_sym_bit_DASHxor2] = ACTIONS(1987), + [anon_sym_bit_DASHor2] = ACTIONS(1987), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1985), + [anon_sym_out_GT] = ACTIONS(1985), + [anon_sym_e_GT] = ACTIONS(1985), + [anon_sym_o_GT] = ACTIONS(1985), + [anon_sym_err_PLUSout_GT] = ACTIONS(1985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), + [anon_sym_o_PLUSe_GT] = ACTIONS(1985), + [anon_sym_e_PLUSo_GT] = ACTIONS(1985), + [anon_sym_err_GT_GT] = ACTIONS(1987), + [anon_sym_out_GT_GT] = ACTIONS(1987), + [anon_sym_e_GT_GT] = ACTIONS(1987), + [anon_sym_o_GT_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(251), }, [1626] = { + [sym_cell_path] = STATE(2051), + [sym_path] = STATE(1510), [sym_comment] = STATE(1626), - [sym__newline] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_err_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_GT_PIPE] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_LPAREN2] = ACTIONS(2228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), - [anon_sym_DOT_DOT_LT] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [aux_sym__val_number_token4] = ACTIONS(2230), - [aux_sym__val_number_token5] = ACTIONS(2230), - [aux_sym__val_number_token6] = ACTIONS(2230), - [anon_sym_0b] = ACTIONS(2226), - [anon_sym_0o] = ACTIONS(2226), - [anon_sym_0x] = ACTIONS(2226), - [sym_val_date] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), - [anon_sym_err_GT] = ACTIONS(2226), - [anon_sym_out_GT] = ACTIONS(2226), - [anon_sym_e_GT] = ACTIONS(2226), - [anon_sym_o_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT] = ACTIONS(2226), - [anon_sym_err_GT_GT] = ACTIONS(2230), - [anon_sym_out_GT_GT] = ACTIONS(2230), - [anon_sym_e_GT_GT] = ACTIONS(2230), - [anon_sym_o_GT_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), - [aux_sym_unquoted_token1] = ACTIONS(2226), - [aux_sym_unquoted_token2] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2230), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_GT2] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1831), + [anon_sym_in2] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_EQ_GT] = ACTIONS(1831), + [anon_sym_STAR2] = ACTIONS(1829), + [anon_sym_and2] = ACTIONS(1831), + [anon_sym_xor2] = ACTIONS(1831), + [anon_sym_or2] = ACTIONS(1831), + [anon_sym_not_DASHin2] = ACTIONS(1831), + [anon_sym_starts_DASHwith2] = ACTIONS(1831), + [anon_sym_ends_DASHwith2] = ACTIONS(1831), + [anon_sym_EQ_EQ2] = ACTIONS(1831), + [anon_sym_BANG_EQ2] = ACTIONS(1831), + [anon_sym_LT2] = ACTIONS(1829), + [anon_sym_LT_EQ2] = ACTIONS(1831), + [anon_sym_GT_EQ2] = ACTIONS(1831), + [anon_sym_EQ_TILDE2] = ACTIONS(1831), + [anon_sym_BANG_TILDE2] = ACTIONS(1831), + [anon_sym_STAR_STAR2] = ACTIONS(1831), + [anon_sym_PLUS_PLUS2] = ACTIONS(1831), + [anon_sym_SLASH2] = ACTIONS(1829), + [anon_sym_mod2] = ACTIONS(1831), + [anon_sym_SLASH_SLASH2] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_bit_DASHshl2] = ACTIONS(1831), + [anon_sym_bit_DASHshr2] = ACTIONS(1831), + [anon_sym_bit_DASHand2] = ACTIONS(1831), + [anon_sym_bit_DASHxor2] = ACTIONS(1831), + [anon_sym_bit_DASHor2] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(251), }, [1627] = { - [sym_cell_path] = STATE(2084), - [sym_path] = STATE(1898), + [sym_cell_path] = STATE(2053), + [sym_path] = STATE(1510), [sym_comment] = STATE(1627), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_err_GT_PIPE] = ACTIONS(2051), - [anon_sym_out_GT_PIPE] = ACTIONS(2051), - [anon_sym_e_GT_PIPE] = ACTIONS(2051), - [anon_sym_o_GT_PIPE] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2051), - [anon_sym_RPAREN] = ACTIONS(2051), - [anon_sym_GT2] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2051), - [anon_sym_in2] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_EQ_GT] = ACTIONS(2051), - [anon_sym_STAR2] = ACTIONS(2049), - [anon_sym_and2] = ACTIONS(2051), - [anon_sym_xor2] = ACTIONS(2051), - [anon_sym_or2] = ACTIONS(2051), - [anon_sym_not_DASHin2] = ACTIONS(2051), - [anon_sym_starts_DASHwith2] = ACTIONS(2051), - [anon_sym_ends_DASHwith2] = ACTIONS(2051), - [anon_sym_EQ_EQ2] = ACTIONS(2051), - [anon_sym_BANG_EQ2] = ACTIONS(2051), - [anon_sym_LT2] = ACTIONS(2049), - [anon_sym_LT_EQ2] = ACTIONS(2051), - [anon_sym_GT_EQ2] = ACTIONS(2051), - [anon_sym_EQ_TILDE2] = ACTIONS(2051), - [anon_sym_BANG_TILDE2] = ACTIONS(2051), - [anon_sym_STAR_STAR2] = ACTIONS(2051), - [anon_sym_PLUS_PLUS2] = ACTIONS(2051), - [anon_sym_SLASH2] = ACTIONS(2049), - [anon_sym_mod2] = ACTIONS(2051), - [anon_sym_SLASH_SLASH2] = ACTIONS(2051), - [anon_sym_PLUS2] = ACTIONS(2049), - [anon_sym_bit_DASHshl2] = ACTIONS(2051), - [anon_sym_bit_DASHshr2] = ACTIONS(2051), - [anon_sym_bit_DASHand2] = ACTIONS(2051), - [anon_sym_bit_DASHxor2] = ACTIONS(2051), - [anon_sym_bit_DASHor2] = ACTIONS(2051), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(2049), - [anon_sym_out_GT] = ACTIONS(2049), - [anon_sym_e_GT] = ACTIONS(2049), - [anon_sym_o_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT] = ACTIONS(2049), - [anon_sym_err_GT_GT] = ACTIONS(2051), - [anon_sym_out_GT_GT] = ACTIONS(2051), - [anon_sym_e_GT_GT] = ACTIONS(2051), - [anon_sym_o_GT_GT] = ACTIONS(2051), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2051), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2051), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2051), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2051), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_err_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_GT_PIPE] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_GT2] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1991), + [anon_sym_in2] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_EQ_GT] = ACTIONS(1991), + [anon_sym_STAR2] = ACTIONS(1989), + [anon_sym_and2] = ACTIONS(1991), + [anon_sym_xor2] = ACTIONS(1991), + [anon_sym_or2] = ACTIONS(1991), + [anon_sym_not_DASHin2] = ACTIONS(1991), + [anon_sym_starts_DASHwith2] = ACTIONS(1991), + [anon_sym_ends_DASHwith2] = ACTIONS(1991), + [anon_sym_EQ_EQ2] = ACTIONS(1991), + [anon_sym_BANG_EQ2] = ACTIONS(1991), + [anon_sym_LT2] = ACTIONS(1989), + [anon_sym_LT_EQ2] = ACTIONS(1991), + [anon_sym_GT_EQ2] = ACTIONS(1991), + [anon_sym_EQ_TILDE2] = ACTIONS(1991), + [anon_sym_BANG_TILDE2] = ACTIONS(1991), + [anon_sym_STAR_STAR2] = ACTIONS(1991), + [anon_sym_PLUS_PLUS2] = ACTIONS(1991), + [anon_sym_SLASH2] = ACTIONS(1989), + [anon_sym_mod2] = ACTIONS(1991), + [anon_sym_SLASH_SLASH2] = ACTIONS(1991), + [anon_sym_PLUS2] = ACTIONS(1989), + [anon_sym_bit_DASHshl2] = ACTIONS(1991), + [anon_sym_bit_DASHshr2] = ACTIONS(1991), + [anon_sym_bit_DASHand2] = ACTIONS(1991), + [anon_sym_bit_DASHxor2] = ACTIONS(1991), + [anon_sym_bit_DASHor2] = ACTIONS(1991), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1989), + [anon_sym_out_GT] = ACTIONS(1989), + [anon_sym_e_GT] = ACTIONS(1989), + [anon_sym_o_GT] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT] = ACTIONS(1989), + [anon_sym_err_GT_GT] = ACTIONS(1991), + [anon_sym_out_GT_GT] = ACTIONS(1991), + [anon_sym_e_GT_GT] = ACTIONS(1991), + [anon_sym_o_GT_GT] = ACTIONS(1991), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), [anon_sym_POUND] = ACTIONS(251), }, [1628] = { - [sym_cell_path] = STATE(2058), - [sym_path] = STATE(1898), [sym_comment] = STATE(1628), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_err_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_GT_PIPE] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_GT2] = ACTIONS(1917), - [anon_sym_DASH2] = ACTIONS(1919), - [anon_sym_in2] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_EQ_GT] = ACTIONS(1919), - [anon_sym_STAR2] = ACTIONS(1917), - [anon_sym_and2] = ACTIONS(1919), - [anon_sym_xor2] = ACTIONS(1919), - [anon_sym_or2] = ACTIONS(1919), - [anon_sym_not_DASHin2] = ACTIONS(1919), - [anon_sym_starts_DASHwith2] = ACTIONS(1919), - [anon_sym_ends_DASHwith2] = ACTIONS(1919), - [anon_sym_EQ_EQ2] = ACTIONS(1919), - [anon_sym_BANG_EQ2] = ACTIONS(1919), - [anon_sym_LT2] = ACTIONS(1917), - [anon_sym_LT_EQ2] = ACTIONS(1919), - [anon_sym_GT_EQ2] = ACTIONS(1919), - [anon_sym_EQ_TILDE2] = ACTIONS(1919), - [anon_sym_BANG_TILDE2] = ACTIONS(1919), - [anon_sym_STAR_STAR2] = ACTIONS(1919), - [anon_sym_PLUS_PLUS2] = ACTIONS(1919), - [anon_sym_SLASH2] = ACTIONS(1917), - [anon_sym_mod2] = ACTIONS(1919), - [anon_sym_SLASH_SLASH2] = ACTIONS(1919), - [anon_sym_PLUS2] = ACTIONS(1917), - [anon_sym_bit_DASHshl2] = ACTIONS(1919), - [anon_sym_bit_DASHshr2] = ACTIONS(1919), - [anon_sym_bit_DASHand2] = ACTIONS(1919), - [anon_sym_bit_DASHxor2] = ACTIONS(1919), - [anon_sym_bit_DASHor2] = ACTIONS(1919), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1917), - [anon_sym_out_GT] = ACTIONS(1917), - [anon_sym_e_GT] = ACTIONS(1917), - [anon_sym_o_GT] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT] = ACTIONS(1917), - [anon_sym_err_GT_GT] = ACTIONS(1919), - [anon_sym_out_GT_GT] = ACTIONS(1919), - [anon_sym_e_GT_GT] = ACTIONS(1919), - [anon_sym_o_GT_GT] = ACTIONS(1919), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1919), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1919), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1919), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym__newline] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_err_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_GT_PIPE] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2142), + [anon_sym_DOT_DOT2] = ACTIONS(4906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2142), + [anon_sym_DOT_DOT_LT] = ACTIONS(2142), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4908), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4908), + [anon_sym_null] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2142), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2148), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2148), + [anon_sym_0b] = ACTIONS(2142), + [anon_sym_0o] = ACTIONS(2142), + [anon_sym_0x] = ACTIONS(2142), + [sym_val_date] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_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(2148), + [anon_sym_out_GT_GT] = ACTIONS(2148), + [anon_sym_e_GT_GT] = ACTIONS(2148), + [anon_sym_o_GT_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [aux_sym_unquoted_token1] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2148), }, [1629] = { [sym_comment] = STATE(1629), - [sym__newline] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_err_GT_PIPE] = ACTIONS(5027), - [anon_sym_out_GT_PIPE] = ACTIONS(5027), - [anon_sym_e_GT_PIPE] = ACTIONS(5027), - [anon_sym_o_GT_PIPE] = ACTIONS(5027), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5027), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5027), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5027), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH2] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_DOT_DOT] = ACTIONS(5029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5027), - [anon_sym_DOT_DOT_LT] = ACTIONS(5027), - [anon_sym_null] = ACTIONS(5029), - [anon_sym_true] = ACTIONS(5029), - [anon_sym_false] = ACTIONS(5029), - [aux_sym__val_number_decimal_token1] = ACTIONS(5029), - [aux_sym__val_number_decimal_token2] = ACTIONS(5029), - [aux_sym__val_number_decimal_token3] = ACTIONS(5027), - [aux_sym__val_number_decimal_token4] = ACTIONS(5027), - [aux_sym__val_number_token1] = ACTIONS(5029), - [aux_sym__val_number_token2] = ACTIONS(5029), - [aux_sym__val_number_token3] = ACTIONS(5029), - [aux_sym__val_number_token4] = ACTIONS(5029), - [aux_sym__val_number_token5] = ACTIONS(5029), - [aux_sym__val_number_token6] = ACTIONS(5029), - [anon_sym_0b] = ACTIONS(5029), - [anon_sym_0o] = ACTIONS(5029), - [anon_sym_0x] = ACTIONS(5029), - [sym_val_date] = ACTIONS(5029), - [anon_sym_DQUOTE] = ACTIONS(5027), - [sym__str_single_quotes] = ACTIONS(5027), - [sym__str_back_ticks] = ACTIONS(5027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5027), - [anon_sym_err_GT] = ACTIONS(5029), - [anon_sym_out_GT] = ACTIONS(5029), - [anon_sym_e_GT] = ACTIONS(5029), - [anon_sym_o_GT] = ACTIONS(5029), - [anon_sym_err_PLUSout_GT] = ACTIONS(5029), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5029), - [anon_sym_o_PLUSe_GT] = ACTIONS(5029), - [anon_sym_e_PLUSo_GT] = ACTIONS(5029), - [anon_sym_err_GT_GT] = ACTIONS(5027), - [anon_sym_out_GT_GT] = ACTIONS(5027), - [anon_sym_e_GT_GT] = ACTIONS(5027), - [anon_sym_o_GT_GT] = ACTIONS(5027), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5027), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5027), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5027), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5027), - [anon_sym_EQ2] = ACTIONS(5031), - [sym_short_flag_identifier] = ACTIONS(5033), - [aux_sym_unquoted_token1] = ACTIONS(5029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5027), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4763), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), }, [1630] = { - [sym_cell_path] = STATE(2067), - [sym_path] = STATE(1898), [sym_comment] = STATE(1630), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_GT2] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_EQ_GT] = ACTIONS(1927), - [anon_sym_STAR2] = ACTIONS(1925), - [anon_sym_and2] = ACTIONS(1927), - [anon_sym_xor2] = ACTIONS(1927), - [anon_sym_or2] = ACTIONS(1927), - [anon_sym_not_DASHin2] = ACTIONS(1927), - [anon_sym_starts_DASHwith2] = ACTIONS(1927), - [anon_sym_ends_DASHwith2] = ACTIONS(1927), - [anon_sym_EQ_EQ2] = ACTIONS(1927), - [anon_sym_BANG_EQ2] = ACTIONS(1927), - [anon_sym_LT2] = ACTIONS(1925), - [anon_sym_LT_EQ2] = ACTIONS(1927), - [anon_sym_GT_EQ2] = ACTIONS(1927), - [anon_sym_EQ_TILDE2] = ACTIONS(1927), - [anon_sym_BANG_TILDE2] = ACTIONS(1927), - [anon_sym_STAR_STAR2] = ACTIONS(1927), - [anon_sym_PLUS_PLUS2] = ACTIONS(1927), - [anon_sym_SLASH2] = ACTIONS(1925), - [anon_sym_mod2] = ACTIONS(1927), - [anon_sym_SLASH_SLASH2] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_bit_DASHshl2] = ACTIONS(1927), - [anon_sym_bit_DASHshr2] = ACTIONS(1927), - [anon_sym_bit_DASHand2] = ACTIONS(1927), - [anon_sym_bit_DASHxor2] = ACTIONS(1927), - [anon_sym_bit_DASHor2] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym__newline] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_err_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_GT_PIPE] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_DASH_DASH] = ACTIONS(1827), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), + [anon_sym_DOT_DOT_LT] = ACTIONS(1827), + [anon_sym_null] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1819), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1827), + [aux_sym__val_number_token5] = ACTIONS(1827), + [aux_sym__val_number_token6] = ACTIONS(1827), + [anon_sym_0b] = ACTIONS(1819), + [anon_sym_0o] = ACTIONS(1819), + [anon_sym_0x] = ACTIONS(1819), + [sym_val_date] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1827), + [anon_sym_err_GT] = ACTIONS(1819), + [anon_sym_out_GT] = ACTIONS(1819), + [anon_sym_e_GT] = ACTIONS(1819), + [anon_sym_o_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT] = ACTIONS(1819), + [anon_sym_err_GT_GT] = ACTIONS(1827), + [anon_sym_out_GT_GT] = ACTIONS(1827), + [anon_sym_e_GT_GT] = ACTIONS(1827), + [anon_sym_o_GT_GT] = ACTIONS(1827), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1827), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1827), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1827), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1827), + [aux_sym_unquoted_token1] = ACTIONS(1819), + [aux_sym_unquoted_token2] = ACTIONS(1585), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), }, [1631] = { [sym_comment] = STATE(1631), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_PLUS_EQ] = ACTIONS(5037), - [anon_sym_DASH_EQ] = ACTIONS(5037), - [anon_sym_STAR_EQ] = ACTIONS(5037), - [anon_sym_SLASH_EQ] = ACTIONS(5037), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(5037), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(4850), + [sym_long_flag_identifier] = ACTIONS(4910), + [sym__newline] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4850), + [anon_sym_PIPE] = ACTIONS(4850), + [anon_sym_err_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_GT_PIPE] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4850), + [anon_sym_LBRACK] = ACTIONS(4850), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4850), + [anon_sym_DASH2] = ACTIONS(4852), + [anon_sym_LBRACE] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4850), + [anon_sym_DOT_DOT_LT] = ACTIONS(4850), + [anon_sym_null] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4852), + [anon_sym_false] = ACTIONS(4852), + [aux_sym__val_number_decimal_token1] = ACTIONS(4852), + [aux_sym__val_number_decimal_token2] = ACTIONS(4850), + [aux_sym__val_number_decimal_token3] = ACTIONS(4850), + [aux_sym__val_number_decimal_token4] = ACTIONS(4850), + [aux_sym__val_number_token1] = ACTIONS(4852), + [aux_sym__val_number_token2] = ACTIONS(4852), + [aux_sym__val_number_token3] = ACTIONS(4852), + [aux_sym__val_number_token4] = ACTIONS(4852), + [aux_sym__val_number_token5] = ACTIONS(4850), + [aux_sym__val_number_token6] = ACTIONS(4852), + [anon_sym_0b] = ACTIONS(4852), + [anon_sym_0o] = ACTIONS(4852), + [anon_sym_0x] = ACTIONS(4852), + [sym_val_date] = ACTIONS(4852), + [anon_sym_DQUOTE] = ACTIONS(4850), + [sym__str_single_quotes] = ACTIONS(4850), + [sym__str_back_ticks] = ACTIONS(4850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4850), + [anon_sym_err_GT] = ACTIONS(4852), + [anon_sym_out_GT] = ACTIONS(4852), + [anon_sym_e_GT] = ACTIONS(4852), + [anon_sym_o_GT] = ACTIONS(4852), + [anon_sym_err_PLUSout_GT] = ACTIONS(4852), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4852), + [anon_sym_o_PLUSe_GT] = ACTIONS(4852), + [anon_sym_e_PLUSo_GT] = ACTIONS(4852), + [anon_sym_err_GT_GT] = ACTIONS(4850), + [anon_sym_out_GT_GT] = ACTIONS(4850), + [anon_sym_e_GT_GT] = ACTIONS(4850), + [anon_sym_o_GT_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4850), + [anon_sym_EQ2] = ACTIONS(4912), + [aux_sym_unquoted_token1] = ACTIONS(4852), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4850), }, [1632] = { - [sym_cell_path] = STATE(2081), - [sym_path] = STATE(1898), [sym_comment] = STATE(1632), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(1931), - [anon_sym_err_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_GT_PIPE] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), - [anon_sym_RPAREN] = ACTIONS(1931), - [anon_sym_GT2] = ACTIONS(1929), - [anon_sym_DASH2] = ACTIONS(1931), - [anon_sym_in2] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_EQ_GT] = ACTIONS(1931), - [anon_sym_STAR2] = ACTIONS(1929), - [anon_sym_and2] = ACTIONS(1931), - [anon_sym_xor2] = ACTIONS(1931), - [anon_sym_or2] = ACTIONS(1931), - [anon_sym_not_DASHin2] = ACTIONS(1931), - [anon_sym_starts_DASHwith2] = ACTIONS(1931), - [anon_sym_ends_DASHwith2] = ACTIONS(1931), - [anon_sym_EQ_EQ2] = ACTIONS(1931), - [anon_sym_BANG_EQ2] = ACTIONS(1931), - [anon_sym_LT2] = ACTIONS(1929), - [anon_sym_LT_EQ2] = ACTIONS(1931), - [anon_sym_GT_EQ2] = ACTIONS(1931), - [anon_sym_EQ_TILDE2] = ACTIONS(1931), - [anon_sym_BANG_TILDE2] = ACTIONS(1931), - [anon_sym_STAR_STAR2] = ACTIONS(1931), - [anon_sym_PLUS_PLUS2] = ACTIONS(1931), - [anon_sym_SLASH2] = ACTIONS(1929), - [anon_sym_mod2] = ACTIONS(1931), - [anon_sym_SLASH_SLASH2] = ACTIONS(1931), - [anon_sym_PLUS2] = ACTIONS(1929), - [anon_sym_bit_DASHshl2] = ACTIONS(1931), - [anon_sym_bit_DASHshr2] = ACTIONS(1931), - [anon_sym_bit_DASHand2] = ACTIONS(1931), - [anon_sym_bit_DASHxor2] = ACTIONS(1931), - [anon_sym_bit_DASHor2] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1929), - [anon_sym_out_GT] = ACTIONS(1929), - [anon_sym_e_GT] = ACTIONS(1929), - [anon_sym_o_GT] = ACTIONS(1929), - [anon_sym_err_PLUSout_GT] = ACTIONS(1929), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), - [anon_sym_o_PLUSe_GT] = ACTIONS(1929), - [anon_sym_e_PLUSo_GT] = ACTIONS(1929), - [anon_sym_err_GT_GT] = ACTIONS(1931), - [anon_sym_out_GT_GT] = ACTIONS(1931), - [anon_sym_e_GT_GT] = ACTIONS(1931), - [anon_sym_o_GT_GT] = ACTIONS(1931), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_GT2] = ACTIONS(1771), + [anon_sym_DASH2] = ACTIONS(1773), + [anon_sym_in2] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_STAR2] = ACTIONS(1771), + [anon_sym_and2] = ACTIONS(1773), + [anon_sym_xor2] = ACTIONS(1773), + [anon_sym_or2] = ACTIONS(1773), + [anon_sym_not_DASHin2] = ACTIONS(1773), + [anon_sym_starts_DASHwith2] = ACTIONS(1773), + [anon_sym_ends_DASHwith2] = ACTIONS(1773), + [anon_sym_EQ_EQ2] = ACTIONS(1773), + [anon_sym_BANG_EQ2] = ACTIONS(1773), + [anon_sym_LT2] = ACTIONS(1771), + [anon_sym_LT_EQ2] = ACTIONS(1773), + [anon_sym_GT_EQ2] = ACTIONS(1773), + [anon_sym_EQ_TILDE2] = ACTIONS(1773), + [anon_sym_BANG_TILDE2] = ACTIONS(1773), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_STAR_STAR2] = ACTIONS(1773), + [anon_sym_PLUS_PLUS2] = ACTIONS(1773), + [anon_sym_SLASH2] = ACTIONS(1771), + [anon_sym_mod2] = ACTIONS(1773), + [anon_sym_SLASH_SLASH2] = ACTIONS(1773), + [anon_sym_PLUS2] = ACTIONS(1771), + [anon_sym_bit_DASHshl2] = ACTIONS(1773), + [anon_sym_bit_DASHshr2] = ACTIONS(1773), + [anon_sym_bit_DASHand2] = ACTIONS(1773), + [anon_sym_bit_DASHxor2] = ACTIONS(1773), + [anon_sym_bit_DASHor2] = ACTIONS(1773), + [anon_sym_DOT_DOT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), }, [1633] = { - [sym_cell_path] = STATE(2113), - [sym_path] = STATE(1898), [sym_comment] = STATE(1633), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_GT2] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_EQ_GT] = ACTIONS(1935), - [anon_sym_STAR2] = ACTIONS(1933), - [anon_sym_and2] = ACTIONS(1935), - [anon_sym_xor2] = ACTIONS(1935), - [anon_sym_or2] = ACTIONS(1935), - [anon_sym_not_DASHin2] = ACTIONS(1935), - [anon_sym_starts_DASHwith2] = ACTIONS(1935), - [anon_sym_ends_DASHwith2] = ACTIONS(1935), - [anon_sym_EQ_EQ2] = ACTIONS(1935), - [anon_sym_BANG_EQ2] = ACTIONS(1935), - [anon_sym_LT2] = ACTIONS(1933), - [anon_sym_LT_EQ2] = ACTIONS(1935), - [anon_sym_GT_EQ2] = ACTIONS(1935), - [anon_sym_EQ_TILDE2] = ACTIONS(1935), - [anon_sym_BANG_TILDE2] = ACTIONS(1935), - [anon_sym_STAR_STAR2] = ACTIONS(1935), - [anon_sym_PLUS_PLUS2] = ACTIONS(1935), - [anon_sym_SLASH2] = ACTIONS(1933), - [anon_sym_mod2] = ACTIONS(1935), - [anon_sym_SLASH_SLASH2] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_bit_DASHshl2] = ACTIONS(1935), - [anon_sym_bit_DASHshr2] = ACTIONS(1935), - [anon_sym_bit_DASHand2] = ACTIONS(1935), - [anon_sym_bit_DASHxor2] = ACTIONS(1935), - [anon_sym_bit_DASHor2] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [aux_sym_unquoted_token4] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), }, [1634] = { [sym_comment] = STATE(1634), - [sym__newline] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_err_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_GT_PIPE] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_LPAREN2] = ACTIONS(2244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2242), - [anon_sym_DOT_DOT_LT] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2242), - [aux_sym__val_number_decimal_token3] = ACTIONS(2242), - [aux_sym__val_number_decimal_token4] = ACTIONS(2242), - [aux_sym__val_number_token1] = ACTIONS(2242), - [aux_sym__val_number_token2] = ACTIONS(2242), - [aux_sym__val_number_token3] = ACTIONS(2242), - [aux_sym__val_number_token4] = ACTIONS(2242), - [aux_sym__val_number_token5] = ACTIONS(2242), - [aux_sym__val_number_token6] = ACTIONS(2242), - [anon_sym_0b] = ACTIONS(2242), - [anon_sym_0o] = ACTIONS(2242), - [anon_sym_0x] = ACTIONS(2242), - [sym_val_date] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym__str_single_quotes] = ACTIONS(2244), - [sym__str_back_ticks] = ACTIONS(2244), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), - [anon_sym_err_GT] = ACTIONS(2242), - [anon_sym_out_GT] = ACTIONS(2242), - [anon_sym_e_GT] = ACTIONS(2242), - [anon_sym_o_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT] = ACTIONS(2242), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), - [aux_sym_unquoted_token1] = ACTIONS(2242), - [aux_sym_unquoted_token4] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2244), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_DOT_DOT_LT] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [aux_sym_unquoted_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), }, [1635] = { [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1779), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1779), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1779), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(4895), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), + [ts_builtin_sym_end] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(954), + [anon_sym_DOT_DOT_LT] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), }, [1636] = { - [sym_cell_path] = STATE(2150), - [sym_path] = STATE(1898), [sym_comment] = STATE(1636), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_GT2] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1939), - [anon_sym_in2] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1939), - [anon_sym_STAR2] = ACTIONS(1937), - [anon_sym_and2] = ACTIONS(1939), - [anon_sym_xor2] = ACTIONS(1939), - [anon_sym_or2] = ACTIONS(1939), - [anon_sym_not_DASHin2] = ACTIONS(1939), - [anon_sym_starts_DASHwith2] = ACTIONS(1939), - [anon_sym_ends_DASHwith2] = ACTIONS(1939), - [anon_sym_EQ_EQ2] = ACTIONS(1939), - [anon_sym_BANG_EQ2] = ACTIONS(1939), - [anon_sym_LT2] = ACTIONS(1937), - [anon_sym_LT_EQ2] = ACTIONS(1939), - [anon_sym_GT_EQ2] = ACTIONS(1939), - [anon_sym_EQ_TILDE2] = ACTIONS(1939), - [anon_sym_BANG_TILDE2] = ACTIONS(1939), - [anon_sym_STAR_STAR2] = ACTIONS(1939), - [anon_sym_PLUS_PLUS2] = ACTIONS(1939), - [anon_sym_SLASH2] = ACTIONS(1937), - [anon_sym_mod2] = ACTIONS(1939), - [anon_sym_SLASH_SLASH2] = ACTIONS(1939), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_bit_DASHshl2] = ACTIONS(1939), - [anon_sym_bit_DASHshr2] = ACTIONS(1939), - [anon_sym_bit_DASHand2] = ACTIONS(1939), - [anon_sym_bit_DASHxor2] = ACTIONS(1939), - [anon_sym_bit_DASHor2] = ACTIONS(1939), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), + [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(1786), + [anon_sym_DASH2] = ACTIONS(1788), + [anon_sym_in2] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR2] = ACTIONS(1786), + [anon_sym_and2] = ACTIONS(1788), + [anon_sym_xor2] = ACTIONS(1788), + [anon_sym_or2] = ACTIONS(1788), + [anon_sym_not_DASHin2] = ACTIONS(1788), + [anon_sym_starts_DASHwith2] = ACTIONS(1788), + [anon_sym_ends_DASHwith2] = ACTIONS(1788), + [anon_sym_EQ_EQ2] = ACTIONS(1788), + [anon_sym_BANG_EQ2] = ACTIONS(1788), + [anon_sym_LT2] = ACTIONS(1786), + [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_LPAREN2] = ACTIONS(1788), + [anon_sym_STAR_STAR2] = ACTIONS(1788), + [anon_sym_PLUS_PLUS2] = ACTIONS(1788), + [anon_sym_SLASH2] = ACTIONS(1786), + [anon_sym_mod2] = ACTIONS(1788), + [anon_sym_SLASH_SLASH2] = ACTIONS(1788), + [anon_sym_PLUS2] = ACTIONS(1786), + [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(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token2] = ACTIONS(1786), [anon_sym_POUND] = ACTIONS(251), }, [1637] = { [sym_comment] = STATE(1637), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_GT2] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_STAR2] = ACTIONS(1799), - [anon_sym_and2] = ACTIONS(1801), - [anon_sym_xor2] = ACTIONS(1801), - [anon_sym_or2] = ACTIONS(1801), - [anon_sym_not_DASHin2] = ACTIONS(1801), - [anon_sym_starts_DASHwith2] = ACTIONS(1801), - [anon_sym_ends_DASHwith2] = ACTIONS(1801), - [anon_sym_EQ_EQ2] = ACTIONS(1801), - [anon_sym_BANG_EQ2] = ACTIONS(1801), - [anon_sym_LT2] = ACTIONS(1799), - [anon_sym_LT_EQ2] = ACTIONS(1801), - [anon_sym_GT_EQ2] = ACTIONS(1801), - [anon_sym_EQ_TILDE2] = ACTIONS(1801), - [anon_sym_BANG_TILDE2] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_STAR_STAR2] = ACTIONS(1801), - [anon_sym_PLUS_PLUS2] = ACTIONS(1801), - [anon_sym_SLASH2] = ACTIONS(1799), - [anon_sym_mod2] = ACTIONS(1801), - [anon_sym_SLASH_SLASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_bit_DASHshl2] = ACTIONS(1801), - [anon_sym_bit_DASHshr2] = ACTIONS(1801), - [anon_sym_bit_DASHand2] = ACTIONS(1801), - [anon_sym_bit_DASHxor2] = ACTIONS(1801), - [anon_sym_bit_DASHor2] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(5039), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1799), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_LPAREN2] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), + [aux_sym_unquoted_token2] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, [1638] = { [sym_comment] = STATE(1638), - [ts_builtin_sym_end] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT2] = ACTIONS(5041), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5043), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(1036), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [aux_sym__val_number_token4] = ACTIONS(1036), - [aux_sym__val_number_token5] = ACTIONS(1036), - [aux_sym__val_number_token6] = ACTIONS(1036), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1036), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_DOT_DOT_LT] = ACTIONS(1665), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1665), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1665), + [anon_sym_0b] = ACTIONS(1653), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(4548), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), }, [1639] = { [sym_comment] = STATE(1639), - [sym__newline] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_err_GT_PIPE] = ACTIONS(2815), - [anon_sym_out_GT_PIPE] = ACTIONS(2815), - [anon_sym_e_GT_PIPE] = ACTIONS(2815), - [anon_sym_o_GT_PIPE] = ACTIONS(2815), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2815), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2815), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2815), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_DOLLAR] = ACTIONS(5045), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [anon_sym_DASH2] = ACTIONS(5045), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_DOT_DOT] = ACTIONS(5045), - [anon_sym_DOT_DOT2] = ACTIONS(4907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5045), - [anon_sym_DOT_DOT_LT] = ACTIONS(5045), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), - [anon_sym_null] = ACTIONS(2815), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [aux_sym__val_number_decimal_token1] = ACTIONS(5045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2815), - [aux_sym__val_number_decimal_token3] = ACTIONS(2815), - [aux_sym__val_number_decimal_token4] = ACTIONS(2815), - [aux_sym__val_number_token1] = ACTIONS(2815), - [aux_sym__val_number_token2] = ACTIONS(2815), - [aux_sym__val_number_token3] = ACTIONS(2815), - [aux_sym__val_number_token4] = ACTIONS(2815), - [aux_sym__val_number_token5] = ACTIONS(2815), - [aux_sym__val_number_token6] = ACTIONS(2815), - [anon_sym_0b] = ACTIONS(5045), - [anon_sym_0o] = ACTIONS(5045), - [anon_sym_0x] = ACTIONS(5045), - [sym_val_date] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [sym__str_single_quotes] = ACTIONS(2815), - [sym__str_back_ticks] = ACTIONS(2815), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2815), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2815), - [anon_sym_err_GT] = ACTIONS(5045), - [anon_sym_out_GT] = ACTIONS(5045), - [anon_sym_e_GT] = ACTIONS(5045), - [anon_sym_o_GT] = ACTIONS(5045), - [anon_sym_err_PLUSout_GT] = ACTIONS(5045), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5045), - [anon_sym_o_PLUSe_GT] = ACTIONS(5045), - [anon_sym_e_PLUSo_GT] = ACTIONS(5045), - [anon_sym_err_GT_GT] = ACTIONS(2815), - [anon_sym_out_GT_GT] = ACTIONS(2815), - [anon_sym_e_GT_GT] = ACTIONS(2815), - [anon_sym_o_GT_GT] = ACTIONS(2815), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2815), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2815), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2815), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2815), - [aux_sym_unquoted_token1] = ACTIONS(5045), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(4898), + [sym__newline] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_err_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_GT_PIPE] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4900), + [anon_sym_DASH2] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), + [anon_sym_DOT_DOT_LT] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4900), + [anon_sym_true] = ACTIONS(4900), + [anon_sym_false] = ACTIONS(4900), + [aux_sym__val_number_decimal_token1] = ACTIONS(4900), + [aux_sym__val_number_decimal_token2] = ACTIONS(4900), + [aux_sym__val_number_decimal_token3] = ACTIONS(4898), + [aux_sym__val_number_decimal_token4] = ACTIONS(4898), + [aux_sym__val_number_token1] = ACTIONS(4900), + [aux_sym__val_number_token2] = ACTIONS(4900), + [aux_sym__val_number_token3] = ACTIONS(4900), + [aux_sym__val_number_token4] = ACTIONS(4900), + [aux_sym__val_number_token5] = ACTIONS(4900), + [aux_sym__val_number_token6] = ACTIONS(4900), + [anon_sym_0b] = ACTIONS(4900), + [anon_sym_0o] = ACTIONS(4900), + [anon_sym_0x] = ACTIONS(4900), + [sym_val_date] = ACTIONS(4900), + [anon_sym_DQUOTE] = ACTIONS(4898), + [sym__str_single_quotes] = ACTIONS(4898), + [sym__str_back_ticks] = ACTIONS(4898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4898), + [anon_sym_err_GT] = ACTIONS(4900), + [anon_sym_out_GT] = ACTIONS(4900), + [anon_sym_e_GT] = ACTIONS(4900), + [anon_sym_o_GT] = ACTIONS(4900), + [anon_sym_err_PLUSout_GT] = ACTIONS(4900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4900), + [anon_sym_o_PLUSe_GT] = ACTIONS(4900), + [anon_sym_e_PLUSo_GT] = ACTIONS(4900), + [anon_sym_err_GT_GT] = ACTIONS(4898), + [anon_sym_out_GT_GT] = ACTIONS(4898), + [anon_sym_e_GT_GT] = ACTIONS(4898), + [anon_sym_o_GT_GT] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4898), + [anon_sym_EQ2] = ACTIONS(4916), + [sym_short_flag_identifier] = ACTIONS(4918), + [aux_sym_unquoted_token1] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4898), }, [1640] = { [sym_comment] = STATE(1640), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1034), - [anon_sym_out_GT_GT] = ACTIONS(1034), - [anon_sym_e_GT_GT] = ACTIONS(1034), - [anon_sym_o_GT_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1034), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [aux_sym_unquoted_token4] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym__newline] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_err_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_GT_PIPE] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1601), + [anon_sym_GT2] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1601), + [anon_sym_in2] = ACTIONS(1601), + [anon_sym_STAR2] = ACTIONS(1599), + [anon_sym_and2] = ACTIONS(1601), + [anon_sym_xor2] = ACTIONS(1601), + [anon_sym_or2] = ACTIONS(1601), + [anon_sym_not_DASHin2] = ACTIONS(1601), + [anon_sym_starts_DASHwith2] = ACTIONS(1601), + [anon_sym_ends_DASHwith2] = ACTIONS(1601), + [anon_sym_EQ_EQ2] = ACTIONS(1601), + [anon_sym_BANG_EQ2] = ACTIONS(1601), + [anon_sym_LT2] = ACTIONS(1599), + [anon_sym_LT_EQ2] = ACTIONS(1601), + [anon_sym_GT_EQ2] = ACTIONS(1601), + [anon_sym_EQ_TILDE2] = ACTIONS(1601), + [anon_sym_BANG_TILDE2] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1601), + [anon_sym_STAR_STAR2] = ACTIONS(1601), + [anon_sym_PLUS_PLUS2] = ACTIONS(1601), + [anon_sym_SLASH2] = ACTIONS(1599), + [anon_sym_mod2] = ACTIONS(1601), + [anon_sym_SLASH_SLASH2] = ACTIONS(1601), + [anon_sym_PLUS2] = ACTIONS(1599), + [anon_sym_bit_DASHshl2] = ACTIONS(1601), + [anon_sym_bit_DASHshr2] = ACTIONS(1601), + [anon_sym_bit_DASHand2] = ACTIONS(1601), + [anon_sym_bit_DASHxor2] = ACTIONS(1601), + [anon_sym_bit_DASHor2] = ACTIONS(1601), + [anon_sym_DOT_DOT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1601), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1601), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1601), + [anon_sym_err_GT] = ACTIONS(1599), + [anon_sym_out_GT] = ACTIONS(1599), + [anon_sym_e_GT] = ACTIONS(1599), + [anon_sym_o_GT] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT] = ACTIONS(1599), + [anon_sym_err_GT_GT] = ACTIONS(1601), + [anon_sym_out_GT_GT] = ACTIONS(1601), + [anon_sym_e_GT_GT] = ACTIONS(1601), + [anon_sym_o_GT_GT] = ACTIONS(1601), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1601), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1601), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1601), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1601), + [aux_sym_unquoted_token2] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(251), }, [1641] = { [sym_comment] = STATE(1641), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token2] = ACTIONS(5047), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), + [sym__newline] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_err_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_GT_PIPE] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_DASH2] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [aux_sym__immediate_decimal_token2] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym__val_number_decimal_token1] = ACTIONS(1771), + [aux_sym__val_number_decimal_token2] = ACTIONS(1773), + [aux_sym__val_number_decimal_token3] = ACTIONS(1773), + [aux_sym__val_number_decimal_token4] = ACTIONS(1773), + [aux_sym__val_number_token1] = ACTIONS(1773), + [aux_sym__val_number_token2] = ACTIONS(1773), + [aux_sym__val_number_token3] = ACTIONS(1773), + [aux_sym__val_number_token4] = ACTIONS(1773), + [aux_sym__val_number_token5] = ACTIONS(1773), + [aux_sym__val_number_token6] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1771), + [anon_sym_0o] = ACTIONS(1771), + [anon_sym_0x] = ACTIONS(1771), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_err_GT] = ACTIONS(1771), + [anon_sym_out_GT] = ACTIONS(1771), + [anon_sym_e_GT] = ACTIONS(1771), + [anon_sym_o_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT] = ACTIONS(1771), + [anon_sym_err_GT_GT] = ACTIONS(1773), + [anon_sym_out_GT_GT] = ACTIONS(1773), + [anon_sym_e_GT_GT] = ACTIONS(1773), + [anon_sym_o_GT_GT] = ACTIONS(1773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), + [aux_sym_unquoted_token1] = ACTIONS(1771), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1773), }, [1642] = { [sym_comment] = STATE(1642), - [anon_sym_EQ] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5051), - [anon_sym_DASH_EQ] = ACTIONS(5051), - [anon_sym_STAR_EQ] = ACTIONS(5051), - [anon_sym_SLASH_EQ] = ACTIONS(5051), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(5051), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_GT2] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_in2] = ACTIONS(1036), - [anon_sym_STAR2] = ACTIONS(1034), - [anon_sym_and2] = ACTIONS(1036), - [anon_sym_xor2] = ACTIONS(1036), - [anon_sym_or2] = ACTIONS(1036), - [anon_sym_not_DASHin2] = ACTIONS(1036), - [anon_sym_starts_DASHwith2] = ACTIONS(1036), - [anon_sym_ends_DASHwith2] = ACTIONS(1036), - [anon_sym_EQ_EQ2] = ACTIONS(1036), - [anon_sym_BANG_EQ2] = ACTIONS(1036), - [anon_sym_LT2] = ACTIONS(1034), - [anon_sym_LT_EQ2] = ACTIONS(1036), - [anon_sym_GT_EQ2] = ACTIONS(1036), - [anon_sym_EQ_TILDE2] = ACTIONS(1036), - [anon_sym_BANG_TILDE2] = ACTIONS(1036), - [anon_sym_STAR_STAR2] = ACTIONS(1036), - [anon_sym_PLUS_PLUS2] = ACTIONS(1034), - [anon_sym_SLASH2] = ACTIONS(1034), - [anon_sym_mod2] = ACTIONS(1036), - [anon_sym_SLASH_SLASH2] = ACTIONS(1036), - [anon_sym_PLUS2] = ACTIONS(1034), - [anon_sym_bit_DASHshl2] = ACTIONS(1036), - [anon_sym_bit_DASHshr2] = ACTIONS(1036), - [anon_sym_bit_DASHand2] = ACTIONS(1036), - [anon_sym_bit_DASHxor2] = ACTIONS(1036), - [anon_sym_bit_DASHor2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DASH2] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2261), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [aux_sym__val_number_token4] = ACTIONS(2261), + [aux_sym__val_number_token5] = ACTIONS(2261), + [aux_sym__val_number_token6] = ACTIONS(2261), + [anon_sym_0b] = ACTIONS(2261), + [anon_sym_0o] = ACTIONS(2261), + [anon_sym_0x] = ACTIONS(2261), + [sym_val_date] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2263), + [sym__str_single_quotes] = ACTIONS(2263), + [sym__str_back_ticks] = ACTIONS(2263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2263), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2261), + [anon_sym_out_GT] = ACTIONS(2261), + [anon_sym_e_GT] = ACTIONS(2261), + [anon_sym_o_GT] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT] = ACTIONS(2261), + [anon_sym_err_GT_GT] = ACTIONS(2261), + [anon_sym_out_GT_GT] = ACTIONS(2261), + [anon_sym_e_GT_GT] = ACTIONS(2261), + [anon_sym_o_GT_GT] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2261), + [aux_sym_unquoted_token1] = ACTIONS(2261), + [aux_sym_unquoted_token4] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2263), }, [1643] = { + [sym_cell_path] = STATE(2132), + [sym_path] = STATE(1826), [sym_comment] = STATE(1643), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_GT2] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(1024), - [anon_sym_in2] = ACTIONS(1024), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_EQ_GT] = ACTIONS(1024), - [anon_sym_STAR2] = ACTIONS(1022), - [anon_sym_and2] = ACTIONS(1024), - [anon_sym_xor2] = ACTIONS(1024), - [anon_sym_or2] = ACTIONS(1024), - [anon_sym_not_DASHin2] = ACTIONS(1024), - [anon_sym_starts_DASHwith2] = ACTIONS(1024), - [anon_sym_ends_DASHwith2] = ACTIONS(1024), - [anon_sym_EQ_EQ2] = ACTIONS(1024), - [anon_sym_BANG_EQ2] = ACTIONS(1024), - [anon_sym_LT2] = ACTIONS(1022), - [anon_sym_LT_EQ2] = ACTIONS(1024), - [anon_sym_GT_EQ2] = ACTIONS(1024), - [anon_sym_EQ_TILDE2] = ACTIONS(1024), - [anon_sym_BANG_TILDE2] = ACTIONS(1024), - [anon_sym_STAR_STAR2] = ACTIONS(1024), - [anon_sym_PLUS_PLUS2] = ACTIONS(1024), - [anon_sym_SLASH2] = ACTIONS(1022), - [anon_sym_mod2] = ACTIONS(1024), - [anon_sym_SLASH_SLASH2] = ACTIONS(1024), - [anon_sym_PLUS2] = ACTIONS(1022), - [anon_sym_bit_DASHshl2] = ACTIONS(1024), - [anon_sym_bit_DASHshr2] = ACTIONS(1024), - [anon_sym_bit_DASHand2] = ACTIONS(1024), - [anon_sym_bit_DASHxor2] = ACTIONS(1024), - [anon_sym_bit_DASHor2] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym__newline] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_err_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_GT_PIPE] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), + [anon_sym_GT2] = ACTIONS(1717), + [anon_sym_DASH2] = ACTIONS(1719), + [anon_sym_in2] = ACTIONS(1719), + [anon_sym_STAR2] = ACTIONS(1717), + [anon_sym_and2] = ACTIONS(1719), + [anon_sym_xor2] = ACTIONS(1719), + [anon_sym_or2] = ACTIONS(1719), + [anon_sym_not_DASHin2] = ACTIONS(1719), + [anon_sym_starts_DASHwith2] = ACTIONS(1719), + [anon_sym_ends_DASHwith2] = ACTIONS(1719), + [anon_sym_EQ_EQ2] = ACTIONS(1719), + [anon_sym_BANG_EQ2] = ACTIONS(1719), + [anon_sym_LT2] = ACTIONS(1717), + [anon_sym_LT_EQ2] = ACTIONS(1719), + [anon_sym_GT_EQ2] = ACTIONS(1719), + [anon_sym_EQ_TILDE2] = ACTIONS(1719), + [anon_sym_BANG_TILDE2] = ACTIONS(1719), + [anon_sym_STAR_STAR2] = ACTIONS(1719), + [anon_sym_PLUS_PLUS2] = ACTIONS(1719), + [anon_sym_SLASH2] = ACTIONS(1717), + [anon_sym_mod2] = ACTIONS(1719), + [anon_sym_SLASH_SLASH2] = ACTIONS(1719), + [anon_sym_PLUS2] = ACTIONS(1717), + [anon_sym_bit_DASHshl2] = ACTIONS(1719), + [anon_sym_bit_DASHshr2] = ACTIONS(1719), + [anon_sym_bit_DASHand2] = ACTIONS(1719), + [anon_sym_bit_DASHxor2] = ACTIONS(1719), + [anon_sym_bit_DASHor2] = ACTIONS(1719), + [anon_sym_DOT_DOT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), + [anon_sym_DOT2] = ACTIONS(4922), + [anon_sym_err_GT] = ACTIONS(1717), + [anon_sym_out_GT] = ACTIONS(1717), + [anon_sym_e_GT] = ACTIONS(1717), + [anon_sym_o_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT] = ACTIONS(1717), + [anon_sym_err_GT_GT] = ACTIONS(1719), + [anon_sym_out_GT_GT] = ACTIONS(1719), + [anon_sym_e_GT_GT] = ACTIONS(1719), + [anon_sym_o_GT_GT] = ACTIONS(1719), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), [anon_sym_POUND] = ACTIONS(251), }, [1644] = { - [sym_path] = STATE(1643), [sym_comment] = STATE(1644), - [aux_sym_cell_path_repeat1] = STATE(1669), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_err_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_GT_PIPE] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym__val_number_decimal_token1] = ACTIONS(2249), + [aux_sym__val_number_decimal_token2] = ACTIONS(2249), + [aux_sym__val_number_decimal_token3] = ACTIONS(2249), + [aux_sym__val_number_decimal_token4] = ACTIONS(2249), + [aux_sym__val_number_token1] = ACTIONS(2249), + [aux_sym__val_number_token2] = ACTIONS(2249), + [aux_sym__val_number_token3] = ACTIONS(2249), + [aux_sym__val_number_token4] = ACTIONS(2249), + [aux_sym__val_number_token5] = ACTIONS(2249), + [aux_sym__val_number_token6] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2249), + [aux_sym_unquoted_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2253), }, [1645] = { - [sym__expr_parenthesized_immediate] = STATE(8150), [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_GT2] = ACTIONS(1687), - [anon_sym_DASH2] = ACTIONS(1699), - [anon_sym_in2] = ACTIONS(1699), - [anon_sym_STAR2] = ACTIONS(1687), - [anon_sym_and2] = ACTIONS(1699), - [anon_sym_xor2] = ACTIONS(1699), - [anon_sym_or2] = ACTIONS(1699), - [anon_sym_not_DASHin2] = ACTIONS(1699), - [anon_sym_starts_DASHwith2] = ACTIONS(1699), - [anon_sym_ends_DASHwith2] = ACTIONS(1699), - [anon_sym_EQ_EQ2] = ACTIONS(1699), - [anon_sym_BANG_EQ2] = ACTIONS(1699), - [anon_sym_LT2] = ACTIONS(1687), - [anon_sym_LT_EQ2] = ACTIONS(1699), - [anon_sym_GT_EQ2] = ACTIONS(1699), - [anon_sym_EQ_TILDE2] = ACTIONS(1699), - [anon_sym_BANG_TILDE2] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_STAR_STAR2] = ACTIONS(1699), - [anon_sym_PLUS_PLUS2] = ACTIONS(1699), - [anon_sym_SLASH2] = ACTIONS(1687), - [anon_sym_mod2] = ACTIONS(1699), - [anon_sym_SLASH_SLASH2] = ACTIONS(1699), - [anon_sym_PLUS2] = ACTIONS(1687), - [anon_sym_bit_DASHshl2] = ACTIONS(1699), - [anon_sym_bit_DASHshr2] = ACTIONS(1699), - [anon_sym_bit_DASHand2] = ACTIONS(1699), - [anon_sym_bit_DASHxor2] = ACTIONS(1699), - [anon_sym_bit_DASHor2] = ACTIONS(1699), - [anon_sym_DOT_DOT2] = ACTIONS(5053), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5055), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5055), - [sym_filesize_unit] = ACTIONS(5057), - [sym_duration_unit] = ACTIONS(5059), - [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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token2] = ACTIONS(5061), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym__newline] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_err_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_GT_PIPE] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1725), + [anon_sym_GT2] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1725), + [anon_sym_in2] = ACTIONS(1725), + [anon_sym_STAR2] = ACTIONS(1723), + [anon_sym_and2] = ACTIONS(1725), + [anon_sym_xor2] = ACTIONS(1725), + [anon_sym_or2] = ACTIONS(1725), + [anon_sym_not_DASHin2] = ACTIONS(1725), + [anon_sym_starts_DASHwith2] = ACTIONS(1725), + [anon_sym_ends_DASHwith2] = ACTIONS(1725), + [anon_sym_EQ_EQ2] = ACTIONS(1725), + [anon_sym_BANG_EQ2] = ACTIONS(1725), + [anon_sym_LT2] = ACTIONS(1723), + [anon_sym_LT_EQ2] = ACTIONS(1725), + [anon_sym_GT_EQ2] = ACTIONS(1725), + [anon_sym_EQ_TILDE2] = ACTIONS(1725), + [anon_sym_BANG_TILDE2] = ACTIONS(1725), + [anon_sym_LPAREN2] = ACTIONS(1725), + [anon_sym_STAR_STAR2] = ACTIONS(1725), + [anon_sym_PLUS_PLUS2] = ACTIONS(1725), + [anon_sym_SLASH2] = ACTIONS(1723), + [anon_sym_mod2] = ACTIONS(1725), + [anon_sym_SLASH_SLASH2] = ACTIONS(1725), + [anon_sym_PLUS2] = ACTIONS(1723), + [anon_sym_bit_DASHshl2] = ACTIONS(1725), + [anon_sym_bit_DASHshr2] = ACTIONS(1725), + [anon_sym_bit_DASHand2] = ACTIONS(1725), + [anon_sym_bit_DASHxor2] = ACTIONS(1725), + [anon_sym_bit_DASHor2] = ACTIONS(1725), + [anon_sym_DOT_DOT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1725), + [sym_filesize_unit] = ACTIONS(1723), + [sym_duration_unit] = ACTIONS(1725), + [anon_sym_err_GT] = ACTIONS(1723), + [anon_sym_out_GT] = ACTIONS(1723), + [anon_sym_e_GT] = ACTIONS(1723), + [anon_sym_o_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT] = ACTIONS(1723), + [anon_sym_err_GT_GT] = ACTIONS(1725), + [anon_sym_out_GT_GT] = ACTIONS(1725), + [anon_sym_e_GT_GT] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1725), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1725), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1725), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1725), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1725), + [aux_sym_unquoted_token2] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(251), }, [1646] = { - [sym_cell_path] = STATE(2035), - [sym_path] = STATE(1898), [sym_comment] = STATE(1646), - [aux_sym_cell_path_repeat1] = STATE(1733), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_GT2] = ACTIONS(1623), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_in2] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1623), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1623), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1623), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1623), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [sym_filesize_unit] = ACTIONS(1623), + [sym_duration_unit] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1623), + [anon_sym_out_GT] = ACTIONS(1623), + [anon_sym_e_GT] = ACTIONS(1623), + [anon_sym_o_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT] = ACTIONS(1623), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [aux_sym_unquoted_token2] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(251), + }, + [1647] = { + [sym_comment] = STATE(1647), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym__newline] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2222), + [anon_sym_PIPE] = ACTIONS(2222), + [anon_sym_err_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_GT_PIPE] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(2220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [aux_sym__val_number_token4] = ACTIONS(2222), + [aux_sym__val_number_token5] = ACTIONS(2222), + [aux_sym__val_number_token6] = ACTIONS(2222), + [anon_sym_0b] = ACTIONS(2218), + [anon_sym_0o] = ACTIONS(2218), + [anon_sym_0x] = ACTIONS(2218), + [sym_val_date] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2222), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2218), + [anon_sym_out_GT] = ACTIONS(2218), + [anon_sym_e_GT] = ACTIONS(2218), + [anon_sym_o_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT] = ACTIONS(2218), + [anon_sym_err_GT_GT] = ACTIONS(2222), + [anon_sym_out_GT_GT] = ACTIONS(2222), + [anon_sym_e_GT_GT] = ACTIONS(2222), + [anon_sym_o_GT_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), + [aux_sym_unquoted_token1] = ACTIONS(2218), + [aux_sym_unquoted_token2] = ACTIONS(1621), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2222), + }, + [1648] = { + [sym_comment] = STATE(1648), + [sym__newline] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_err_GT_PIPE] = ACTIONS(2259), + [anon_sym_out_GT_PIPE] = ACTIONS(2259), + [anon_sym_e_GT_PIPE] = ACTIONS(2259), + [anon_sym_o_GT_PIPE] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2257), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [aux_sym__val_number_token4] = ACTIONS(2257), + [aux_sym__val_number_token5] = ACTIONS(2257), + [aux_sym__val_number_token6] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2257), + [anon_sym_0o] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2257), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2259), + [sym__str_single_quotes] = ACTIONS(2259), + [sym__str_back_ticks] = ACTIONS(2259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2259), + [anon_sym_err_GT] = ACTIONS(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2257), + [aux_sym_unquoted_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2259), + }, + [1649] = { + [sym_comment] = STATE(1649), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_DASH_DASH] = ACTIONS(1788), + [anon_sym_DASH2] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_LPAREN2] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1786), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [aux_sym__val_number_token4] = ACTIONS(1788), + [aux_sym__val_number_token5] = ACTIONS(1788), + [aux_sym__val_number_token6] = ACTIONS(1788), + [anon_sym_0b] = ACTIONS(1786), + [anon_sym_0o] = ACTIONS(1786), + [anon_sym_0x] = ACTIONS(1786), + [sym_val_date] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1788), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1788), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1786), + [aux_sym_unquoted_token2] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1788), + }, + [1650] = { + [sym_comment] = STATE(1650), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), + }, + [1651] = { + [sym_path] = STATE(1826), + [sym_comment] = STATE(1651), + [aux_sym_cell_path_repeat1] = STATE(1666), + [ts_builtin_sym_end] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4922), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(251), + }, + [1652] = { + [sym_comment] = STATE(1652), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), + }, + [1653] = { + [sym_cmd_identifier] = STATE(3978), + [sym__command_name] = STATE(6546), + [sym_scope_pattern] = STATE(6100), + [sym_wild_card] = STATE(6549), + [sym_command_list] = STATE(6550), + [sym__val_number_decimal] = STATE(3616), + [sym_val_string] = STATE(3962), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_comment] = STATE(1653), + [aux_sym_cmd_identifier_token1] = ACTIONS(4924), + [aux_sym_cmd_identifier_token2] = ACTIONS(4926), + [aux_sym_cmd_identifier_token3] = ACTIONS(4926), + [aux_sym_cmd_identifier_token4] = ACTIONS(4926), + [aux_sym_cmd_identifier_token5] = ACTIONS(4926), + [aux_sym_cmd_identifier_token6] = ACTIONS(4926), + [aux_sym_cmd_identifier_token7] = ACTIONS(4926), + [aux_sym_cmd_identifier_token8] = ACTIONS(4926), + [aux_sym_cmd_identifier_token9] = ACTIONS(4924), + [aux_sym_cmd_identifier_token10] = ACTIONS(4926), + [aux_sym_cmd_identifier_token11] = ACTIONS(4926), + [aux_sym_cmd_identifier_token12] = ACTIONS(4926), + [aux_sym_cmd_identifier_token13] = ACTIONS(4924), + [aux_sym_cmd_identifier_token14] = ACTIONS(4926), + [aux_sym_cmd_identifier_token15] = ACTIONS(4924), + [aux_sym_cmd_identifier_token16] = ACTIONS(4926), + [aux_sym_cmd_identifier_token17] = ACTIONS(4926), + [aux_sym_cmd_identifier_token18] = ACTIONS(4926), + [aux_sym_cmd_identifier_token19] = ACTIONS(4926), + [aux_sym_cmd_identifier_token20] = ACTIONS(4926), + [aux_sym_cmd_identifier_token21] = ACTIONS(4926), + [aux_sym_cmd_identifier_token22] = ACTIONS(4926), + [aux_sym_cmd_identifier_token23] = ACTIONS(4926), + [aux_sym_cmd_identifier_token24] = ACTIONS(4926), + [aux_sym_cmd_identifier_token25] = ACTIONS(4926), + [aux_sym_cmd_identifier_token26] = ACTIONS(4926), + [aux_sym_cmd_identifier_token27] = ACTIONS(4926), + [aux_sym_cmd_identifier_token28] = ACTIONS(4926), + [aux_sym_cmd_identifier_token29] = ACTIONS(4926), + [aux_sym_cmd_identifier_token30] = ACTIONS(4926), + [aux_sym_cmd_identifier_token31] = ACTIONS(4926), + [aux_sym_cmd_identifier_token32] = ACTIONS(4926), + [aux_sym_cmd_identifier_token33] = ACTIONS(4926), + [aux_sym_cmd_identifier_token34] = ACTIONS(4924), + [aux_sym_cmd_identifier_token35] = ACTIONS(4926), + [aux_sym_cmd_identifier_token36] = ACTIONS(4926), + [aux_sym_cmd_identifier_token37] = ACTIONS(4926), + [aux_sym_cmd_identifier_token38] = ACTIONS(4924), + [aux_sym_cmd_identifier_token39] = ACTIONS(4926), + [aux_sym_cmd_identifier_token40] = ACTIONS(4926), + [sym__newline] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4928), + [anon_sym_RBRACE] = ACTIONS(4928), + [anon_sym_STAR2] = ACTIONS(4932), + [aux_sym__val_number_decimal_token1] = ACTIONS(4934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4934), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), + }, + [1654] = { + [sym_comment] = STATE(1654), + [ts_builtin_sym_end] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_DASH2] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2228), + [anon_sym_DOT_DOT_LT] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2224), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [aux_sym__val_number_token4] = ACTIONS(2228), + [aux_sym__val_number_token5] = ACTIONS(2228), + [aux_sym__val_number_token6] = ACTIONS(2228), + [anon_sym_0b] = ACTIONS(2224), + [anon_sym_0o] = ACTIONS(2224), + [anon_sym_0x] = ACTIONS(2224), + [sym_val_date] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2224), + [anon_sym_out_GT] = ACTIONS(2224), + [anon_sym_e_GT] = ACTIONS(2224), + [anon_sym_o_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT] = ACTIONS(2224), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [aux_sym_unquoted_token1] = ACTIONS(2224), + [aux_sym_unquoted_token2] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [1655] = { + [sym_comment] = STATE(1655), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_in2] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_EQ_GT] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_QMARK2] = ACTIONS(1665), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_COLON2] = ACTIONS(1665), + [anon_sym_DOT2] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(251), + }, + [1656] = { + [sym_comment] = STATE(1656), + [sym__newline] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_err_GT_PIPE] = ACTIONS(4940), + [anon_sym_out_GT_PIPE] = ACTIONS(4940), + [anon_sym_e_GT_PIPE] = ACTIONS(4940), + [anon_sym_o_GT_PIPE] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4940), + [anon_sym_DOLLAR] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4940), + [anon_sym_DASH2] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4940), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_LPAREN2] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4940), + [anon_sym_DOT_DOT_LT] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [aux_sym__val_number_decimal_token1] = ACTIONS(4942), + [aux_sym__val_number_decimal_token2] = ACTIONS(4940), + [aux_sym__val_number_decimal_token3] = ACTIONS(4940), + [aux_sym__val_number_decimal_token4] = ACTIONS(4940), + [aux_sym__val_number_token1] = ACTIONS(4940), + [aux_sym__val_number_token2] = ACTIONS(4940), + [aux_sym__val_number_token3] = ACTIONS(4940), + [aux_sym__val_number_token4] = ACTIONS(4940), + [aux_sym__val_number_token5] = ACTIONS(4940), + [aux_sym__val_number_token6] = ACTIONS(4940), + [anon_sym_0b] = ACTIONS(4942), + [anon_sym_0o] = ACTIONS(4942), + [anon_sym_0x] = ACTIONS(4942), + [sym_val_date] = ACTIONS(4940), + [anon_sym_DQUOTE] = ACTIONS(4940), + [sym__str_single_quotes] = ACTIONS(4940), + [sym__str_back_ticks] = ACTIONS(4940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4940), + [anon_sym_err_GT] = ACTIONS(4942), + [anon_sym_out_GT] = ACTIONS(4942), + [anon_sym_e_GT] = ACTIONS(4942), + [anon_sym_o_GT] = ACTIONS(4942), + [anon_sym_err_PLUSout_GT] = ACTIONS(4942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4942), + [anon_sym_o_PLUSe_GT] = ACTIONS(4942), + [anon_sym_e_PLUSo_GT] = ACTIONS(4942), + [anon_sym_err_GT_GT] = ACTIONS(4940), + [anon_sym_out_GT_GT] = ACTIONS(4940), + [anon_sym_e_GT_GT] = ACTIONS(4940), + [anon_sym_o_GT_GT] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4940), + [aux_sym_unquoted_token1] = ACTIONS(4942), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4940), + }, + [1657] = { + [sym_comment] = STATE(1657), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4944), + [aux_sym__immediate_decimal_token2] = ACTIONS(4946), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1658] = { + [sym_comment] = STATE(1658), + [ts_builtin_sym_end] = ACTIONS(968), + [sym__newline] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_err_GT_PIPE] = ACTIONS(968), + [anon_sym_out_GT_PIPE] = ACTIONS(968), + [anon_sym_e_GT_PIPE] = ACTIONS(968), + [anon_sym_o_GT_PIPE] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_QMARK2] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_null] = ACTIONS(968), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(966), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_0b] = ACTIONS(966), + [anon_sym_0o] = ACTIONS(966), + [anon_sym_0x] = ACTIONS(966), + [sym_val_date] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), + [anon_sym_DOT2] = ACTIONS(966), + [anon_sym_err_GT] = ACTIONS(966), + [anon_sym_out_GT] = ACTIONS(966), + [anon_sym_e_GT] = ACTIONS(966), + [anon_sym_o_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT] = ACTIONS(966), + [anon_sym_err_GT_GT] = ACTIONS(968), + [anon_sym_out_GT_GT] = ACTIONS(968), + [anon_sym_e_GT_GT] = ACTIONS(968), + [anon_sym_o_GT_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [aux_sym_unquoted_token1] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(968), + }, + [1659] = { + [sym_comment] = STATE(1659), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1660] = { + [sym_comment] = STATE(1660), + [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(2334), + [anon_sym_DASH2] = ACTIONS(2336), + [anon_sym_in2] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_EQ_GT] = ACTIONS(2336), + [anon_sym_STAR2] = ACTIONS(2334), + [anon_sym_QMARK2] = ACTIONS(2336), + [anon_sym_and2] = ACTIONS(2336), + [anon_sym_xor2] = ACTIONS(2336), + [anon_sym_or2] = ACTIONS(2336), + [anon_sym_not_DASHin2] = ACTIONS(2336), + [anon_sym_starts_DASHwith2] = ACTIONS(2336), + [anon_sym_ends_DASHwith2] = ACTIONS(2336), + [anon_sym_EQ_EQ2] = ACTIONS(2336), + [anon_sym_BANG_EQ2] = ACTIONS(2336), + [anon_sym_LT2] = ACTIONS(2334), + [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_STAR_STAR2] = ACTIONS(2336), + [anon_sym_PLUS_PLUS2] = ACTIONS(2336), + [anon_sym_SLASH2] = ACTIONS(2334), + [anon_sym_mod2] = ACTIONS(2336), + [anon_sym_SLASH_SLASH2] = ACTIONS(2336), + [anon_sym_PLUS2] = ACTIONS(2334), + [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_COLON2] = ACTIONS(2336), + [anon_sym_DOT2] = ACTIONS(2336), + [anon_sym_err_GT] = ACTIONS(2334), + [anon_sym_out_GT] = ACTIONS(2334), + [anon_sym_e_GT] = ACTIONS(2334), + [anon_sym_o_GT] = ACTIONS(2334), + [anon_sym_err_PLUSout_GT] = ACTIONS(2334), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2334), + [anon_sym_o_PLUSe_GT] = ACTIONS(2334), + [anon_sym_e_PLUSo_GT] = ACTIONS(2334), + [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), + [anon_sym_POUND] = ACTIONS(251), + }, + [1661] = { + [sym_cell_path] = STATE(2115), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1661), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_err_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_GT_PIPE] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_GT2] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1951), + [anon_sym_in2] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_EQ_GT] = ACTIONS(1951), + [anon_sym_STAR2] = ACTIONS(1949), + [anon_sym_and2] = ACTIONS(1951), + [anon_sym_xor2] = ACTIONS(1951), + [anon_sym_or2] = ACTIONS(1951), + [anon_sym_not_DASHin2] = ACTIONS(1951), + [anon_sym_starts_DASHwith2] = ACTIONS(1951), + [anon_sym_ends_DASHwith2] = ACTIONS(1951), + [anon_sym_EQ_EQ2] = ACTIONS(1951), + [anon_sym_BANG_EQ2] = ACTIONS(1951), + [anon_sym_LT2] = ACTIONS(1949), + [anon_sym_LT_EQ2] = ACTIONS(1951), + [anon_sym_GT_EQ2] = ACTIONS(1951), + [anon_sym_EQ_TILDE2] = ACTIONS(1951), + [anon_sym_BANG_TILDE2] = ACTIONS(1951), + [anon_sym_STAR_STAR2] = ACTIONS(1951), + [anon_sym_PLUS_PLUS2] = ACTIONS(1951), + [anon_sym_SLASH2] = ACTIONS(1949), + [anon_sym_mod2] = ACTIONS(1951), + [anon_sym_SLASH_SLASH2] = ACTIONS(1951), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_bit_DASHshl2] = ACTIONS(1951), + [anon_sym_bit_DASHshr2] = ACTIONS(1951), + [anon_sym_bit_DASHand2] = ACTIONS(1951), + [anon_sym_bit_DASHxor2] = ACTIONS(1951), + [anon_sym_bit_DASHor2] = ACTIONS(1951), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1951), + [anon_sym_out_GT_GT] = ACTIONS(1951), + [anon_sym_e_GT_GT] = ACTIONS(1951), + [anon_sym_o_GT_GT] = ACTIONS(1951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(251), + }, + [1662] = { + [sym_comment] = STATE(1662), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [anon_sym_LPAREN2] = ACTIONS(2243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), + [anon_sym_DOT_DOT_LT] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2241), + [aux_sym__val_number_decimal_token3] = ACTIONS(2241), + [aux_sym__val_number_decimal_token4] = ACTIONS(2241), + [aux_sym__val_number_token1] = ACTIONS(2241), + [aux_sym__val_number_token2] = ACTIONS(2241), + [aux_sym__val_number_token3] = ACTIONS(2241), + [aux_sym__val_number_token4] = ACTIONS(2241), + [aux_sym__val_number_token5] = ACTIONS(2241), + [aux_sym__val_number_token6] = ACTIONS(2241), + [anon_sym_0b] = ACTIONS(2241), + [anon_sym_0o] = ACTIONS(2241), + [anon_sym_0x] = ACTIONS(2241), + [sym_val_date] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym__str_single_quotes] = ACTIONS(2245), + [sym__str_back_ticks] = ACTIONS(2245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), + [anon_sym_err_GT] = ACTIONS(2241), + [anon_sym_out_GT] = ACTIONS(2241), + [anon_sym_e_GT] = ACTIONS(2241), + [anon_sym_o_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT] = ACTIONS(2241), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2241), + [aux_sym_unquoted_token4] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2245), + }, + [1663] = { + [sym_comment] = STATE(1663), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2237), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [aux_sym_unquoted_token4] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [1664] = { + [sym_comment] = STATE(1664), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1665] = { + [sym_cell_path] = STATE(2153), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1665), + [aux_sym_cell_path_repeat1] = STATE(1402), [sym__newline] = ACTIONS(2035), [anon_sym_SEMI] = ACTIONS(2035), [anon_sym_PIPE] = ACTIONS(2035), @@ -236594,7 +231921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2033), [anon_sym_DASH2] = ACTIONS(2035), [anon_sym_in2] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), [anon_sym_LBRACE] = ACTIONS(2035), [anon_sym_RBRACE] = ACTIONS(2035), [anon_sym_EQ_GT] = ACTIONS(2035), @@ -236623,7 +231949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2035), [anon_sym_bit_DASHxor2] = ACTIONS(2035), [anon_sym_bit_DASHor2] = ACTIONS(2035), - [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_DOT2] = ACTIONS(4811), [anon_sym_err_GT] = ACTIONS(2033), [anon_sym_out_GT] = ACTIONS(2033), [anon_sym_e_GT] = ACTIONS(2033), @@ -236642,1776 +231968,2487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), [anon_sym_POUND] = ACTIONS(251), }, - [1647] = { - [sym_comment] = STATE(1647), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1014), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_in2] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1014), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1014), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1014), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1014), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_DOT_DOT2] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [1666] = { + [sym_path] = STATE(1826), + [sym_comment] = STATE(1666), + [aux_sym_cell_path_repeat1] = STATE(1666), + [ts_builtin_sym_end] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(943), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(943), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4954), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), [anon_sym_POUND] = ACTIONS(251), }, - [1648] = { - [sym_cell_path] = STATE(1694), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1648), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), + [1667] = { + [sym__expr_parenthesized_immediate] = STATE(7231), + [sym_comment] = STATE(1667), + [sym__newline] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_PIPE] = ACTIONS(4957), + [anon_sym_err_GT_PIPE] = ACTIONS(4957), + [anon_sym_out_GT_PIPE] = ACTIONS(4957), + [anon_sym_e_GT_PIPE] = ACTIONS(4957), + [anon_sym_o_GT_PIPE] = ACTIONS(4957), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4957), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4957), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4957), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4959), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4957), + [anon_sym_DASH2] = ACTIONS(4959), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_DOT_DOT] = ACTIONS(4959), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4957), + [anon_sym_DOT_DOT_LT] = ACTIONS(4957), + [anon_sym_null] = ACTIONS(4957), + [anon_sym_true] = ACTIONS(4957), + [anon_sym_false] = ACTIONS(4957), + [aux_sym__val_number_decimal_token1] = ACTIONS(4959), + [aux_sym__val_number_decimal_token2] = ACTIONS(4957), + [aux_sym__val_number_decimal_token3] = ACTIONS(4957), + [aux_sym__val_number_decimal_token4] = ACTIONS(4957), + [aux_sym__val_number_token1] = ACTIONS(4957), + [aux_sym__val_number_token2] = ACTIONS(4957), + [aux_sym__val_number_token3] = ACTIONS(4957), + [aux_sym__val_number_token4] = ACTIONS(4957), + [aux_sym__val_number_token5] = ACTIONS(4957), + [aux_sym__val_number_token6] = ACTIONS(4957), + [anon_sym_0b] = ACTIONS(4959), + [anon_sym_0o] = ACTIONS(4959), + [anon_sym_0x] = ACTIONS(4959), + [sym_val_date] = ACTIONS(4957), + [anon_sym_DQUOTE] = ACTIONS(4957), + [sym__str_single_quotes] = ACTIONS(4957), + [sym__str_back_ticks] = ACTIONS(4957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4957), + [anon_sym_err_GT] = ACTIONS(4959), + [anon_sym_out_GT] = ACTIONS(4959), + [anon_sym_e_GT] = ACTIONS(4959), + [anon_sym_o_GT] = ACTIONS(4959), + [anon_sym_err_PLUSout_GT] = ACTIONS(4959), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4959), + [anon_sym_o_PLUSe_GT] = ACTIONS(4959), + [anon_sym_e_PLUSo_GT] = ACTIONS(4959), + [anon_sym_err_GT_GT] = ACTIONS(4957), + [anon_sym_out_GT_GT] = ACTIONS(4957), + [anon_sym_e_GT_GT] = ACTIONS(4957), + [anon_sym_o_GT_GT] = ACTIONS(4957), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4957), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4957), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4957), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4957), + [aux_sym_unquoted_token1] = ACTIONS(4959), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4957), }, - [1649] = { - [sym_cell_path] = STATE(2104), - [sym_path] = STATE(1971), - [sym_comment] = STATE(1649), - [aux_sym_cell_path_repeat1] = STATE(1750), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [aux_sym_record_entry_token1] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), + [1668] = { + [sym__expr_parenthesized_immediate] = STATE(7231), + [sym_comment] = STATE(1668), + [sym__newline] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_PIPE] = ACTIONS(4961), + [anon_sym_err_GT_PIPE] = ACTIONS(4961), + [anon_sym_out_GT_PIPE] = ACTIONS(4961), + [anon_sym_e_GT_PIPE] = ACTIONS(4961), + [anon_sym_o_GT_PIPE] = ACTIONS(4961), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4961), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4961), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4961), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4963), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_DASH_DASH] = ACTIONS(4961), + [anon_sym_DASH2] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4961), + [anon_sym_DOT_DOT] = ACTIONS(4963), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4961), + [anon_sym_DOT_DOT_LT] = ACTIONS(4961), + [anon_sym_null] = ACTIONS(4961), + [anon_sym_true] = ACTIONS(4961), + [anon_sym_false] = ACTIONS(4961), + [aux_sym__val_number_decimal_token1] = ACTIONS(4963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4961), + [aux_sym__val_number_decimal_token3] = ACTIONS(4961), + [aux_sym__val_number_decimal_token4] = ACTIONS(4961), + [aux_sym__val_number_token1] = ACTIONS(4961), + [aux_sym__val_number_token2] = ACTIONS(4961), + [aux_sym__val_number_token3] = ACTIONS(4961), + [aux_sym__val_number_token4] = ACTIONS(4961), + [aux_sym__val_number_token5] = ACTIONS(4961), + [aux_sym__val_number_token6] = ACTIONS(4961), + [anon_sym_0b] = ACTIONS(4963), + [anon_sym_0o] = ACTIONS(4963), + [anon_sym_0x] = ACTIONS(4963), + [sym_val_date] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(4961), + [sym__str_single_quotes] = ACTIONS(4961), + [sym__str_back_ticks] = ACTIONS(4961), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4961), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4961), + [anon_sym_err_GT] = ACTIONS(4963), + [anon_sym_out_GT] = ACTIONS(4963), + [anon_sym_e_GT] = ACTIONS(4963), + [anon_sym_o_GT] = ACTIONS(4963), + [anon_sym_err_PLUSout_GT] = ACTIONS(4963), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4963), + [anon_sym_o_PLUSe_GT] = ACTIONS(4963), + [anon_sym_e_PLUSo_GT] = ACTIONS(4963), + [anon_sym_err_GT_GT] = ACTIONS(4961), + [anon_sym_out_GT_GT] = ACTIONS(4961), + [anon_sym_e_GT_GT] = ACTIONS(4961), + [anon_sym_o_GT_GT] = ACTIONS(4961), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4961), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4961), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4961), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4961), + [aux_sym_unquoted_token1] = ACTIONS(4963), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4961), }, - [1650] = { - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(1054), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_DASH2] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1052), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [aux_sym__val_number_token4] = ACTIONS(1054), - [aux_sym__val_number_token5] = ACTIONS(1054), - [aux_sym__val_number_token6] = ACTIONS(1054), - [anon_sym_0b] = ACTIONS(1052), - [anon_sym_0o] = ACTIONS(1052), - [anon_sym_0x] = ACTIONS(1052), - [sym_val_date] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [aux_sym_unquoted_token1] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1054), + [1669] = { + [sym_comment] = STATE(1669), + [sym__newline] = ACTIONS(4965), + [anon_sym_SEMI] = ACTIONS(4965), + [anon_sym_PIPE] = ACTIONS(4965), + [anon_sym_err_GT_PIPE] = ACTIONS(4965), + [anon_sym_out_GT_PIPE] = ACTIONS(4965), + [anon_sym_e_GT_PIPE] = ACTIONS(4965), + [anon_sym_o_GT_PIPE] = ACTIONS(4965), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4965), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4965), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4965), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4965), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_LPAREN] = ACTIONS(4965), + [anon_sym_RPAREN] = ACTIONS(4965), + [anon_sym_DOLLAR] = ACTIONS(4967), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_DASH2] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4965), + [anon_sym_DOT_DOT] = ACTIONS(4967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4965), + [anon_sym_DOT_DOT_LT] = ACTIONS(4965), + [anon_sym_null] = ACTIONS(4965), + [anon_sym_true] = ACTIONS(4965), + [anon_sym_false] = ACTIONS(4965), + [aux_sym__val_number_decimal_token1] = ACTIONS(4967), + [aux_sym__val_number_decimal_token2] = ACTIONS(4965), + [aux_sym__val_number_decimal_token3] = ACTIONS(4965), + [aux_sym__val_number_decimal_token4] = ACTIONS(4965), + [aux_sym__val_number_token1] = ACTIONS(4965), + [aux_sym__val_number_token2] = ACTIONS(4965), + [aux_sym__val_number_token3] = ACTIONS(4965), + [aux_sym__val_number_token4] = ACTIONS(4965), + [aux_sym__val_number_token5] = ACTIONS(4965), + [aux_sym__val_number_token6] = ACTIONS(4965), + [anon_sym_0b] = ACTIONS(4967), + [anon_sym_0o] = ACTIONS(4967), + [anon_sym_0x] = ACTIONS(4967), + [sym_val_date] = ACTIONS(4965), + [anon_sym_DQUOTE] = ACTIONS(4965), + [sym__str_single_quotes] = ACTIONS(4965), + [sym__str_back_ticks] = ACTIONS(4965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4965), + [anon_sym_err_GT] = ACTIONS(4967), + [anon_sym_out_GT] = ACTIONS(4967), + [anon_sym_e_GT] = ACTIONS(4967), + [anon_sym_o_GT] = ACTIONS(4967), + [anon_sym_err_PLUSout_GT] = ACTIONS(4967), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4967), + [anon_sym_o_PLUSe_GT] = ACTIONS(4967), + [anon_sym_e_PLUSo_GT] = ACTIONS(4967), + [anon_sym_err_GT_GT] = ACTIONS(4965), + [anon_sym_out_GT_GT] = ACTIONS(4965), + [anon_sym_e_GT_GT] = ACTIONS(4965), + [anon_sym_o_GT_GT] = ACTIONS(4965), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4965), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4965), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4965), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4965), + [anon_sym_EQ2] = ACTIONS(4969), + [aux_sym_unquoted_token1] = ACTIONS(4967), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4965), }, - [1651] = { - [sym__expr_parenthesized_immediate] = STATE(8466), - [sym_comment] = STATE(1651), - [sym__newline] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_err_GT_PIPE] = ACTIONS(5063), - [anon_sym_out_GT_PIPE] = ACTIONS(5063), - [anon_sym_e_GT_PIPE] = ACTIONS(5063), - [anon_sym_o_GT_PIPE] = ACTIONS(5063), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5063), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5063), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5063), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5063), - [anon_sym_DASH2] = ACTIONS(5065), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5063), - [anon_sym_DOT_DOT_LT] = ACTIONS(5063), - [anon_sym_null] = ACTIONS(5063), - [anon_sym_true] = ACTIONS(5063), - [anon_sym_false] = ACTIONS(5063), - [aux_sym__val_number_decimal_token1] = ACTIONS(5065), - [aux_sym__val_number_decimal_token2] = ACTIONS(5063), - [aux_sym__val_number_decimal_token3] = ACTIONS(5063), - [aux_sym__val_number_decimal_token4] = ACTIONS(5063), - [aux_sym__val_number_token1] = ACTIONS(5063), - [aux_sym__val_number_token2] = ACTIONS(5063), - [aux_sym__val_number_token3] = ACTIONS(5063), - [aux_sym__val_number_token4] = ACTIONS(5063), - [aux_sym__val_number_token5] = ACTIONS(5063), - [aux_sym__val_number_token6] = ACTIONS(5063), - [anon_sym_0b] = ACTIONS(5065), - [anon_sym_0o] = ACTIONS(5065), - [anon_sym_0x] = ACTIONS(5065), - [sym_val_date] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [sym__str_single_quotes] = ACTIONS(5063), - [sym__str_back_ticks] = ACTIONS(5063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5063), - [anon_sym_err_GT] = ACTIONS(5065), - [anon_sym_out_GT] = ACTIONS(5065), - [anon_sym_e_GT] = ACTIONS(5065), - [anon_sym_o_GT] = ACTIONS(5065), - [anon_sym_err_PLUSout_GT] = ACTIONS(5065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5065), - [anon_sym_o_PLUSe_GT] = ACTIONS(5065), - [anon_sym_e_PLUSo_GT] = ACTIONS(5065), - [anon_sym_err_GT_GT] = ACTIONS(5063), - [anon_sym_out_GT_GT] = ACTIONS(5063), - [anon_sym_e_GT_GT] = ACTIONS(5063), - [anon_sym_o_GT_GT] = ACTIONS(5063), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5063), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5063), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5063), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5063), - [aux_sym_unquoted_token1] = ACTIONS(5065), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5063), + [1670] = { + [sym_comment] = STATE(1670), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1729), + [anon_sym_in2] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1729), + [anon_sym_xor2] = ACTIONS(1729), + [anon_sym_or2] = ACTIONS(1729), + [anon_sym_not_DASHin2] = ACTIONS(1729), + [anon_sym_starts_DASHwith2] = ACTIONS(1729), + [anon_sym_ends_DASHwith2] = ACTIONS(1729), + [anon_sym_EQ_EQ2] = ACTIONS(1729), + [anon_sym_BANG_EQ2] = ACTIONS(1729), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1729), + [anon_sym_GT_EQ2] = ACTIONS(1729), + [anon_sym_EQ_TILDE2] = ACTIONS(1729), + [anon_sym_BANG_TILDE2] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_STAR_STAR2] = ACTIONS(1729), + [anon_sym_PLUS_PLUS2] = ACTIONS(1729), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1729), + [anon_sym_SLASH_SLASH2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1729), + [anon_sym_bit_DASHshr2] = ACTIONS(1729), + [anon_sym_bit_DASHand2] = ACTIONS(1729), + [anon_sym_bit_DASHxor2] = ACTIONS(1729), + [anon_sym_bit_DASHor2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), }, - [1652] = { - [sym_cell_path] = STATE(2060), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1652), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_GT2] = ACTIONS(1871), - [anon_sym_DASH2] = ACTIONS(1873), - [anon_sym_in2] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_EQ_GT] = ACTIONS(1873), - [anon_sym_STAR2] = ACTIONS(1871), - [anon_sym_and2] = ACTIONS(1873), - [anon_sym_xor2] = ACTIONS(1873), - [anon_sym_or2] = ACTIONS(1873), - [anon_sym_not_DASHin2] = ACTIONS(1873), - [anon_sym_starts_DASHwith2] = ACTIONS(1873), - [anon_sym_ends_DASHwith2] = ACTIONS(1873), - [anon_sym_EQ_EQ2] = ACTIONS(1873), - [anon_sym_BANG_EQ2] = ACTIONS(1873), - [anon_sym_LT2] = ACTIONS(1871), - [anon_sym_LT_EQ2] = ACTIONS(1873), - [anon_sym_GT_EQ2] = ACTIONS(1873), - [anon_sym_EQ_TILDE2] = ACTIONS(1873), - [anon_sym_BANG_TILDE2] = ACTIONS(1873), - [anon_sym_STAR_STAR2] = ACTIONS(1873), - [anon_sym_PLUS_PLUS2] = ACTIONS(1873), - [anon_sym_SLASH2] = ACTIONS(1871), - [anon_sym_mod2] = ACTIONS(1873), - [anon_sym_SLASH_SLASH2] = ACTIONS(1873), - [anon_sym_PLUS2] = ACTIONS(1871), - [anon_sym_bit_DASHshl2] = ACTIONS(1873), - [anon_sym_bit_DASHshr2] = ACTIONS(1873), - [anon_sym_bit_DASHand2] = ACTIONS(1873), - [anon_sym_bit_DASHxor2] = ACTIONS(1873), - [anon_sym_bit_DASHor2] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1871), - [anon_sym_out_GT] = ACTIONS(1871), - [anon_sym_e_GT] = ACTIONS(1871), - [anon_sym_o_GT] = ACTIONS(1871), - [anon_sym_err_PLUSout_GT] = ACTIONS(1871), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), - [anon_sym_o_PLUSe_GT] = ACTIONS(1871), - [anon_sym_e_PLUSo_GT] = ACTIONS(1871), - [anon_sym_err_GT_GT] = ACTIONS(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [1671] = { + [sym_cmd_identifier] = STATE(3978), + [sym__command_name] = STATE(6546), + [sym_scope_pattern] = STATE(6548), + [sym_wild_card] = STATE(6549), + [sym_command_list] = STATE(6550), + [sym__val_number_decimal] = STATE(3616), + [sym_val_string] = STATE(3962), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_comment] = STATE(1671), + [aux_sym_cmd_identifier_token1] = ACTIONS(4924), + [aux_sym_cmd_identifier_token2] = ACTIONS(4926), + [aux_sym_cmd_identifier_token3] = ACTIONS(4926), + [aux_sym_cmd_identifier_token4] = ACTIONS(4926), + [aux_sym_cmd_identifier_token5] = ACTIONS(4926), + [aux_sym_cmd_identifier_token6] = ACTIONS(4926), + [aux_sym_cmd_identifier_token7] = ACTIONS(4926), + [aux_sym_cmd_identifier_token8] = ACTIONS(4926), + [aux_sym_cmd_identifier_token9] = ACTIONS(4924), + [aux_sym_cmd_identifier_token10] = ACTIONS(4926), + [aux_sym_cmd_identifier_token11] = ACTIONS(4926), + [aux_sym_cmd_identifier_token12] = ACTIONS(4926), + [aux_sym_cmd_identifier_token13] = ACTIONS(4924), + [aux_sym_cmd_identifier_token14] = ACTIONS(4926), + [aux_sym_cmd_identifier_token15] = ACTIONS(4924), + [aux_sym_cmd_identifier_token16] = ACTIONS(4926), + [aux_sym_cmd_identifier_token17] = ACTIONS(4926), + [aux_sym_cmd_identifier_token18] = ACTIONS(4926), + [aux_sym_cmd_identifier_token19] = ACTIONS(4926), + [aux_sym_cmd_identifier_token20] = ACTIONS(4926), + [aux_sym_cmd_identifier_token21] = ACTIONS(4926), + [aux_sym_cmd_identifier_token22] = ACTIONS(4926), + [aux_sym_cmd_identifier_token23] = ACTIONS(4926), + [aux_sym_cmd_identifier_token24] = ACTIONS(4926), + [aux_sym_cmd_identifier_token25] = ACTIONS(4926), + [aux_sym_cmd_identifier_token26] = ACTIONS(4926), + [aux_sym_cmd_identifier_token27] = ACTIONS(4926), + [aux_sym_cmd_identifier_token28] = ACTIONS(4926), + [aux_sym_cmd_identifier_token29] = ACTIONS(4926), + [aux_sym_cmd_identifier_token30] = ACTIONS(4926), + [aux_sym_cmd_identifier_token31] = ACTIONS(4926), + [aux_sym_cmd_identifier_token32] = ACTIONS(4926), + [aux_sym_cmd_identifier_token33] = ACTIONS(4926), + [aux_sym_cmd_identifier_token34] = ACTIONS(4924), + [aux_sym_cmd_identifier_token35] = ACTIONS(4926), + [aux_sym_cmd_identifier_token36] = ACTIONS(4926), + [aux_sym_cmd_identifier_token37] = ACTIONS(4926), + [aux_sym_cmd_identifier_token38] = ACTIONS(4924), + [aux_sym_cmd_identifier_token39] = ACTIONS(4926), + [aux_sym_cmd_identifier_token40] = ACTIONS(4926), + [sym__newline] = ACTIONS(4971), + [anon_sym_SEMI] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4971), + [anon_sym_STAR2] = ACTIONS(4932), + [aux_sym__val_number_decimal_token1] = ACTIONS(4934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4934), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, - [1653] = { - [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DASH2] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2090), - [anon_sym_DOT_DOT2] = ACTIONS(5067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2090), - [anon_sym_DOT_DOT_LT] = ACTIONS(2090), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5069), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5069), - [anon_sym_null] = ACTIONS(2096), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2090), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [aux_sym__val_number_token4] = ACTIONS(2096), - [aux_sym__val_number_token5] = ACTIONS(2096), - [aux_sym__val_number_token6] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2090), - [anon_sym_0o] = ACTIONS(2090), - [anon_sym_0x] = ACTIONS(2090), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym__str_single_quotes] = ACTIONS(2096), - [sym__str_back_ticks] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), - [aux_sym_unquoted_token1] = ACTIONS(2090), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2096), + [1672] = { + [sym_comment] = STATE(1672), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym__newline] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_err_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_GT_PIPE] = ACTIONS(2253), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2253), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2253), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2253), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_DOLLAR] = ACTIONS(2249), + [anon_sym_DASH_DASH] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2249), + [anon_sym_DOT_DOT_LT] = ACTIONS(2249), + [anon_sym_null] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [aux_sym__val_number_decimal_token1] = ACTIONS(2249), + [aux_sym__val_number_decimal_token2] = ACTIONS(2249), + [aux_sym__val_number_decimal_token3] = ACTIONS(2249), + [aux_sym__val_number_decimal_token4] = ACTIONS(2249), + [aux_sym__val_number_token1] = ACTIONS(2249), + [aux_sym__val_number_token2] = ACTIONS(2249), + [aux_sym__val_number_token3] = ACTIONS(2249), + [aux_sym__val_number_token4] = ACTIONS(2249), + [aux_sym__val_number_token5] = ACTIONS(2249), + [aux_sym__val_number_token6] = ACTIONS(2249), + [anon_sym_0b] = ACTIONS(2249), + [anon_sym_0o] = ACTIONS(2249), + [anon_sym_0x] = ACTIONS(2249), + [sym_val_date] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(2253), + [sym__str_single_quotes] = ACTIONS(2253), + [sym__str_back_ticks] = ACTIONS(2253), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2253), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2253), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2249), + [aux_sym_unquoted_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2253), }, - [1654] = { - [sym_comment] = STATE(1654), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), - [anon_sym_DOT_DOT_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [1673] = { + [sym_comment] = STATE(1673), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym__newline] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_err_GT_PIPE] = ACTIONS(2259), + [anon_sym_out_GT_PIPE] = ACTIONS(2259), + [anon_sym_e_GT_PIPE] = ACTIONS(2259), + [anon_sym_o_GT_PIPE] = ACTIONS(2259), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2259), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2259), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2259), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2257), + [anon_sym_DASH_DASH] = ACTIONS(2257), + [anon_sym_DASH2] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_LPAREN2] = ACTIONS(2251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2257), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [aux_sym__val_number_token4] = ACTIONS(2257), + [aux_sym__val_number_token5] = ACTIONS(2257), + [aux_sym__val_number_token6] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2257), + [anon_sym_0o] = ACTIONS(2257), + [anon_sym_0x] = ACTIONS(2257), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2259), + [sym__str_single_quotes] = ACTIONS(2259), + [sym__str_back_ticks] = ACTIONS(2259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2259), + [anon_sym_err_GT] = ACTIONS(2257), + [anon_sym_out_GT] = ACTIONS(2257), + [anon_sym_e_GT] = ACTIONS(2257), + [anon_sym_o_GT] = ACTIONS(2257), + [anon_sym_err_PLUSout_GT] = ACTIONS(2257), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2257), + [anon_sym_o_PLUSe_GT] = ACTIONS(2257), + [anon_sym_e_PLUSo_GT] = ACTIONS(2257), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2257), + [aux_sym_unquoted_token4] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2259), }, - [1655] = { - [sym_comment] = STATE(1655), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), + [1674] = { + [sym_cell_path] = STATE(2125), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1674), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_err_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_GT_PIPE] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_GT2] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1959), + [anon_sym_in2] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1959), + [anon_sym_EQ_GT] = ACTIONS(1959), + [anon_sym_STAR2] = ACTIONS(1957), + [anon_sym_and2] = ACTIONS(1959), + [anon_sym_xor2] = ACTIONS(1959), + [anon_sym_or2] = ACTIONS(1959), + [anon_sym_not_DASHin2] = ACTIONS(1959), + [anon_sym_starts_DASHwith2] = ACTIONS(1959), + [anon_sym_ends_DASHwith2] = ACTIONS(1959), + [anon_sym_EQ_EQ2] = ACTIONS(1959), + [anon_sym_BANG_EQ2] = ACTIONS(1959), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LT_EQ2] = ACTIONS(1959), + [anon_sym_GT_EQ2] = ACTIONS(1959), + [anon_sym_EQ_TILDE2] = ACTIONS(1959), + [anon_sym_BANG_TILDE2] = ACTIONS(1959), + [anon_sym_STAR_STAR2] = ACTIONS(1959), + [anon_sym_PLUS_PLUS2] = ACTIONS(1959), + [anon_sym_SLASH2] = ACTIONS(1957), + [anon_sym_mod2] = ACTIONS(1959), + [anon_sym_SLASH_SLASH2] = ACTIONS(1959), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_bit_DASHshl2] = ACTIONS(1959), + [anon_sym_bit_DASHshr2] = ACTIONS(1959), + [anon_sym_bit_DASHand2] = ACTIONS(1959), + [anon_sym_bit_DASHxor2] = ACTIONS(1959), + [anon_sym_bit_DASHor2] = ACTIONS(1959), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1959), + [anon_sym_out_GT_GT] = ACTIONS(1959), + [anon_sym_e_GT_GT] = ACTIONS(1959), + [anon_sym_o_GT_GT] = ACTIONS(1959), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(251), }, - [1656] = { - [sym_comment] = STATE(1656), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), + [1675] = { + [sym_comment] = STATE(1675), + [sym__newline] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_err_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_GT_PIPE] = ACTIONS(2245), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [anon_sym_DASH2] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2241), + [anon_sym_DOT_DOT_LT] = ACTIONS(2241), + [anon_sym_null] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [aux_sym__val_number_decimal_token1] = ACTIONS(2241), + [aux_sym__val_number_decimal_token2] = ACTIONS(2241), + [aux_sym__val_number_decimal_token3] = ACTIONS(2241), + [aux_sym__val_number_decimal_token4] = ACTIONS(2241), + [aux_sym__val_number_token1] = ACTIONS(2241), + [aux_sym__val_number_token2] = ACTIONS(2241), + [aux_sym__val_number_token3] = ACTIONS(2241), + [aux_sym__val_number_token4] = ACTIONS(2241), + [aux_sym__val_number_token5] = ACTIONS(2241), + [aux_sym__val_number_token6] = ACTIONS(2241), + [anon_sym_0b] = ACTIONS(2241), + [anon_sym_0o] = ACTIONS(2241), + [anon_sym_0x] = ACTIONS(2241), + [sym_val_date] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2245), + [sym__str_single_quotes] = ACTIONS(2245), + [sym__str_back_ticks] = ACTIONS(2245), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2245), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2245), + [anon_sym_err_GT] = ACTIONS(2241), + [anon_sym_out_GT] = ACTIONS(2241), + [anon_sym_e_GT] = ACTIONS(2241), + [anon_sym_o_GT] = ACTIONS(2241), + [anon_sym_err_PLUSout_GT] = ACTIONS(2241), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2241), + [anon_sym_o_PLUSe_GT] = ACTIONS(2241), + [anon_sym_e_PLUSo_GT] = ACTIONS(2241), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2241), + [aux_sym_unquoted_token4] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2245), }, - [1657] = { - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(5071), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [1676] = { + [sym_cell_path] = STATE(2134), + [sym_path] = STATE(1826), + [sym_comment] = STATE(1676), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym__newline] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1763), + [anon_sym_err_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_GT_PIPE] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1763), + [anon_sym_GT2] = ACTIONS(1761), + [anon_sym_DASH2] = ACTIONS(1763), + [anon_sym_in2] = ACTIONS(1763), + [anon_sym_STAR2] = ACTIONS(1761), + [anon_sym_and2] = ACTIONS(1763), + [anon_sym_xor2] = ACTIONS(1763), + [anon_sym_or2] = ACTIONS(1763), + [anon_sym_not_DASHin2] = ACTIONS(1763), + [anon_sym_starts_DASHwith2] = ACTIONS(1763), + [anon_sym_ends_DASHwith2] = ACTIONS(1763), + [anon_sym_EQ_EQ2] = ACTIONS(1763), + [anon_sym_BANG_EQ2] = ACTIONS(1763), + [anon_sym_LT2] = ACTIONS(1761), + [anon_sym_LT_EQ2] = ACTIONS(1763), + [anon_sym_GT_EQ2] = ACTIONS(1763), + [anon_sym_EQ_TILDE2] = ACTIONS(1763), + [anon_sym_BANG_TILDE2] = ACTIONS(1763), + [anon_sym_STAR_STAR2] = ACTIONS(1763), + [anon_sym_PLUS_PLUS2] = ACTIONS(1763), + [anon_sym_SLASH2] = ACTIONS(1761), + [anon_sym_mod2] = ACTIONS(1763), + [anon_sym_SLASH_SLASH2] = ACTIONS(1763), + [anon_sym_PLUS2] = ACTIONS(1761), + [anon_sym_bit_DASHshl2] = ACTIONS(1763), + [anon_sym_bit_DASHshr2] = ACTIONS(1763), + [anon_sym_bit_DASHand2] = ACTIONS(1763), + [anon_sym_bit_DASHxor2] = ACTIONS(1763), + [anon_sym_bit_DASHor2] = ACTIONS(1763), + [anon_sym_DOT_DOT2] = ACTIONS(1761), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1763), + [anon_sym_DOT2] = ACTIONS(4922), + [anon_sym_err_GT] = ACTIONS(1761), + [anon_sym_out_GT] = ACTIONS(1761), + [anon_sym_e_GT] = ACTIONS(1761), + [anon_sym_o_GT] = ACTIONS(1761), + [anon_sym_err_PLUSout_GT] = ACTIONS(1761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1761), + [anon_sym_o_PLUSe_GT] = ACTIONS(1761), + [anon_sym_e_PLUSo_GT] = ACTIONS(1761), + [anon_sym_err_GT_GT] = ACTIONS(1763), + [anon_sym_out_GT_GT] = ACTIONS(1763), + [anon_sym_e_GT_GT] = ACTIONS(1763), + [anon_sym_o_GT_GT] = ACTIONS(1763), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1763), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1763), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1763), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(251), }, - [1658] = { - [sym_comment] = STATE(1658), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1004), + [1677] = { + [sym_comment] = STATE(1677), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_DOLLAR] = ACTIONS(2261), + [anon_sym_DASH_DASH] = ACTIONS(2261), + [anon_sym_DASH2] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_LPAREN2] = ACTIONS(2263), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2261), + [anon_sym_DOT_DOT_LT] = ACTIONS(2261), + [anon_sym_null] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [aux_sym__val_number_decimal_token1] = ACTIONS(2261), + [aux_sym__val_number_decimal_token2] = ACTIONS(2261), + [aux_sym__val_number_decimal_token3] = ACTIONS(2261), + [aux_sym__val_number_decimal_token4] = ACTIONS(2261), + [aux_sym__val_number_token1] = ACTIONS(2261), + [aux_sym__val_number_token2] = ACTIONS(2261), + [aux_sym__val_number_token3] = ACTIONS(2261), + [aux_sym__val_number_token4] = ACTIONS(2261), + [aux_sym__val_number_token5] = ACTIONS(2261), + [aux_sym__val_number_token6] = ACTIONS(2261), + [anon_sym_0b] = ACTIONS(2261), + [anon_sym_0o] = ACTIONS(2261), + [anon_sym_0x] = ACTIONS(2261), + [sym_val_date] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2263), + [sym__str_single_quotes] = ACTIONS(2263), + [sym__str_back_ticks] = ACTIONS(2263), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2263), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2261), + [anon_sym_out_GT] = ACTIONS(2261), + [anon_sym_e_GT] = ACTIONS(2261), + [anon_sym_o_GT] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT] = ACTIONS(2261), + [anon_sym_err_GT_GT] = ACTIONS(2261), + [anon_sym_out_GT_GT] = ACTIONS(2261), + [anon_sym_e_GT_GT] = ACTIONS(2261), + [anon_sym_o_GT_GT] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2261), + [aux_sym_unquoted_token1] = ACTIONS(2261), + [aux_sym_unquoted_token4] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2263), + }, + [1678] = { + [sym_cell_path] = STATE(2128), + [sym_path] = STATE(1510), + [sym_comment] = STATE(1678), + [aux_sym_cell_path_repeat1] = STATE(1402), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_GT2] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1947), + [anon_sym_in2] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(1947), + [anon_sym_STAR2] = ACTIONS(1945), + [anon_sym_and2] = ACTIONS(1947), + [anon_sym_xor2] = ACTIONS(1947), + [anon_sym_or2] = ACTIONS(1947), + [anon_sym_not_DASHin2] = ACTIONS(1947), + [anon_sym_starts_DASHwith2] = ACTIONS(1947), + [anon_sym_ends_DASHwith2] = ACTIONS(1947), + [anon_sym_EQ_EQ2] = ACTIONS(1947), + [anon_sym_BANG_EQ2] = ACTIONS(1947), + [anon_sym_LT2] = ACTIONS(1945), + [anon_sym_LT_EQ2] = ACTIONS(1947), + [anon_sym_GT_EQ2] = ACTIONS(1947), + [anon_sym_EQ_TILDE2] = ACTIONS(1947), + [anon_sym_BANG_TILDE2] = ACTIONS(1947), + [anon_sym_STAR_STAR2] = ACTIONS(1947), + [anon_sym_PLUS_PLUS2] = ACTIONS(1947), + [anon_sym_SLASH2] = ACTIONS(1945), + [anon_sym_mod2] = ACTIONS(1947), + [anon_sym_SLASH_SLASH2] = ACTIONS(1947), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_bit_DASHshl2] = ACTIONS(1947), + [anon_sym_bit_DASHshr2] = ACTIONS(1947), + [anon_sym_bit_DASHand2] = ACTIONS(1947), + [anon_sym_bit_DASHxor2] = ACTIONS(1947), + [anon_sym_bit_DASHor2] = ACTIONS(1947), + [anon_sym_DOT2] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), }, - [1659] = { - [sym_comment] = STATE(1659), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), + [1679] = { + [sym_comment] = STATE(1679), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(4973), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4975), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token2] = ACTIONS(1735), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), }, - [1660] = { - [sym_cell_path] = STATE(2062), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1660), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_GT2] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1877), - [anon_sym_in2] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_EQ_GT] = ACTIONS(1877), - [anon_sym_STAR2] = ACTIONS(1875), - [anon_sym_and2] = ACTIONS(1877), - [anon_sym_xor2] = ACTIONS(1877), - [anon_sym_or2] = ACTIONS(1877), - [anon_sym_not_DASHin2] = ACTIONS(1877), - [anon_sym_starts_DASHwith2] = ACTIONS(1877), - [anon_sym_ends_DASHwith2] = ACTIONS(1877), - [anon_sym_EQ_EQ2] = ACTIONS(1877), - [anon_sym_BANG_EQ2] = ACTIONS(1877), - [anon_sym_LT2] = ACTIONS(1875), - [anon_sym_LT_EQ2] = ACTIONS(1877), - [anon_sym_GT_EQ2] = ACTIONS(1877), - [anon_sym_EQ_TILDE2] = ACTIONS(1877), - [anon_sym_BANG_TILDE2] = ACTIONS(1877), - [anon_sym_STAR_STAR2] = ACTIONS(1877), - [anon_sym_PLUS_PLUS2] = ACTIONS(1877), - [anon_sym_SLASH2] = ACTIONS(1875), - [anon_sym_mod2] = ACTIONS(1877), - [anon_sym_SLASH_SLASH2] = ACTIONS(1877), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_bit_DASHshl2] = ACTIONS(1877), - [anon_sym_bit_DASHshr2] = ACTIONS(1877), - [anon_sym_bit_DASHand2] = ACTIONS(1877), - [anon_sym_bit_DASHxor2] = ACTIONS(1877), - [anon_sym_bit_DASHor2] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(4980), - [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(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [1680] = { + [sym_comment] = STATE(1680), + [sym__newline] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2319), + [anon_sym_err_GT_PIPE] = ACTIONS(2319), + [anon_sym_out_GT_PIPE] = ACTIONS(2319), + [anon_sym_e_GT_PIPE] = ACTIONS(2319), + [anon_sym_o_GT_PIPE] = ACTIONS(2319), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2319), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2319), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2319), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2319), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DASH_DASH] = ACTIONS(2319), + [anon_sym_DASH2] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2319), + [anon_sym_RBRACE] = ACTIONS(2319), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2319), + [anon_sym_DOT_DOT_LT] = ACTIONS(2319), + [anon_sym_null] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2319), + [aux_sym__val_number_decimal_token3] = ACTIONS(2319), + [aux_sym__val_number_decimal_token4] = ACTIONS(2319), + [aux_sym__val_number_token1] = ACTIONS(2319), + [aux_sym__val_number_token2] = ACTIONS(2319), + [aux_sym__val_number_token3] = ACTIONS(2319), + [aux_sym__val_number_token4] = ACTIONS(2319), + [aux_sym__val_number_token5] = ACTIONS(2319), + [aux_sym__val_number_token6] = ACTIONS(2319), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0x] = ACTIONS(2315), + [anon_sym_LBRACK2] = ACTIONS(4977), + [sym_val_date] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2319), + [sym__str_single_quotes] = ACTIONS(2319), + [sym__str_back_ticks] = ACTIONS(2319), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2319), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2319), + [anon_sym_err_GT] = ACTIONS(2315), + [anon_sym_out_GT] = ACTIONS(2315), + [anon_sym_e_GT] = ACTIONS(2315), + [anon_sym_o_GT] = ACTIONS(2315), + [anon_sym_err_PLUSout_GT] = ACTIONS(2315), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), + [anon_sym_o_PLUSe_GT] = ACTIONS(2315), + [anon_sym_e_PLUSo_GT] = ACTIONS(2315), + [anon_sym_err_GT_GT] = ACTIONS(2319), + [anon_sym_out_GT_GT] = ACTIONS(2319), + [anon_sym_e_GT_GT] = ACTIONS(2319), + [anon_sym_o_GT_GT] = ACTIONS(2319), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2319), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2319), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2319), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2319), + [aux_sym_unquoted_token1] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2319), + }, + [1681] = { + [sym_comment] = STATE(1681), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1682] = { + [sym__expr_parenthesized_immediate] = STATE(7642), + [sym_comment] = STATE(1682), + [ts_builtin_sym_end] = ACTIONS(4870), + [sym__newline] = ACTIONS(4870), + [anon_sym_SEMI] = ACTIONS(4870), + [anon_sym_PIPE] = ACTIONS(4870), + [anon_sym_err_GT_PIPE] = ACTIONS(4870), + [anon_sym_out_GT_PIPE] = ACTIONS(4870), + [anon_sym_e_GT_PIPE] = ACTIONS(4870), + [anon_sym_o_GT_PIPE] = ACTIONS(4870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4872), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_DASH2] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4870), + [anon_sym_DOT_DOT] = ACTIONS(4872), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4870), + [anon_sym_DOT_DOT_LT] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4870), + [anon_sym_true] = ACTIONS(4870), + [anon_sym_false] = ACTIONS(4870), + [aux_sym__val_number_decimal_token1] = ACTIONS(4872), + [aux_sym__val_number_decimal_token2] = ACTIONS(4870), + [aux_sym__val_number_decimal_token3] = ACTIONS(4870), + [aux_sym__val_number_decimal_token4] = ACTIONS(4870), + [aux_sym__val_number_token1] = ACTIONS(4870), + [aux_sym__val_number_token2] = ACTIONS(4870), + [aux_sym__val_number_token3] = ACTIONS(4870), + [aux_sym__val_number_token4] = ACTIONS(4870), + [aux_sym__val_number_token5] = ACTIONS(4870), + [aux_sym__val_number_token6] = ACTIONS(4870), + [anon_sym_0b] = ACTIONS(4872), + [anon_sym_0o] = ACTIONS(4872), + [anon_sym_0x] = ACTIONS(4872), + [sym_val_date] = ACTIONS(4870), + [anon_sym_DQUOTE] = ACTIONS(4870), + [sym__str_single_quotes] = ACTIONS(4870), + [sym__str_back_ticks] = ACTIONS(4870), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4870), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4870), + [anon_sym_err_GT] = ACTIONS(4872), + [anon_sym_out_GT] = ACTIONS(4872), + [anon_sym_e_GT] = ACTIONS(4872), + [anon_sym_o_GT] = ACTIONS(4872), + [anon_sym_err_PLUSout_GT] = ACTIONS(4872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4872), + [anon_sym_o_PLUSe_GT] = ACTIONS(4872), + [anon_sym_e_PLUSo_GT] = ACTIONS(4872), + [anon_sym_err_GT_GT] = ACTIONS(4870), + [anon_sym_out_GT_GT] = ACTIONS(4870), + [anon_sym_e_GT_GT] = ACTIONS(4870), + [anon_sym_o_GT_GT] = ACTIONS(4870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4870), + [aux_sym_unquoted_token1] = ACTIONS(4872), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4870), + }, + [1683] = { + [sym_comment] = STATE(1683), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2170), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_in2] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_EQ_GT] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2170), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2170), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2170), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2170), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2170), + [anon_sym_out_GT] = ACTIONS(2170), + [anon_sym_e_GT] = ACTIONS(2170), + [anon_sym_o_GT] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT] = ACTIONS(2170), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(251), }, - [1661] = { - [sym_comment] = STATE(1661), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT] = ACTIONS(1773), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), - [aux_sym_unquoted_token2] = ACTIONS(1771), + [1684] = { + [sym_comment] = STATE(1684), + [ts_builtin_sym_end] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(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(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), + }, + [1685] = { + [sym_comment] = STATE(1685), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_DOLLAR] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), + [anon_sym_DOT_DOT_LT] = ACTIONS(1665), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [aux_sym__val_number_decimal_token1] = ACTIONS(1653), + [aux_sym__val_number_decimal_token2] = ACTIONS(1665), + [aux_sym__val_number_decimal_token3] = ACTIONS(1665), + [aux_sym__val_number_decimal_token4] = ACTIONS(1665), + [aux_sym__val_number_token1] = ACTIONS(1665), + [aux_sym__val_number_token2] = ACTIONS(1665), + [aux_sym__val_number_token3] = ACTIONS(1665), + [aux_sym__val_number_token4] = ACTIONS(1665), + [aux_sym__val_number_token5] = ACTIONS(1665), + [aux_sym__val_number_token6] = ACTIONS(1665), + [anon_sym_0b] = ACTIONS(1653), + [anon_sym_0o] = ACTIONS(1653), + [anon_sym_0x] = ACTIONS(1653), + [sym_val_date] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [sym__str_single_quotes] = ACTIONS(1665), + [sym__str_back_ticks] = ACTIONS(1665), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [aux_sym_unquoted_token1] = ACTIONS(1653), + [aux_sym_unquoted_token2] = ACTIONS(4123), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1665), + }, + [1686] = { + [sym_cell_path] = STATE(2121), + [sym_path] = STATE(1826), + [sym_comment] = STATE(1686), + [aux_sym_cell_path_repeat1] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(937), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(937), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4922), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), }, - [1662] = { - [sym_comment] = STATE(1662), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), + [1687] = { + [sym__expr_parenthesized_immediate] = STATE(7642), + [sym_comment] = STATE(1687), + [ts_builtin_sym_end] = ACTIONS(4862), + [sym__newline] = ACTIONS(4862), + [anon_sym_SEMI] = ACTIONS(4862), + [anon_sym_PIPE] = ACTIONS(4862), + [anon_sym_err_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_GT_PIPE] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4862), + [anon_sym_LBRACK] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(4864), + [anon_sym_DASH_DASH] = ACTIONS(4862), + [anon_sym_DASH2] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4862), + [anon_sym_DOT_DOT] = ACTIONS(4864), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4862), + [anon_sym_DOT_DOT_LT] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4862), + [anon_sym_true] = ACTIONS(4862), + [anon_sym_false] = ACTIONS(4862), + [aux_sym__val_number_decimal_token1] = ACTIONS(4864), + [aux_sym__val_number_decimal_token2] = ACTIONS(4862), + [aux_sym__val_number_decimal_token3] = ACTIONS(4862), + [aux_sym__val_number_decimal_token4] = ACTIONS(4862), + [aux_sym__val_number_token1] = ACTIONS(4862), + [aux_sym__val_number_token2] = ACTIONS(4862), + [aux_sym__val_number_token3] = ACTIONS(4862), + [aux_sym__val_number_token4] = ACTIONS(4862), + [aux_sym__val_number_token5] = ACTIONS(4862), + [aux_sym__val_number_token6] = ACTIONS(4862), + [anon_sym_0b] = ACTIONS(4864), + [anon_sym_0o] = ACTIONS(4864), + [anon_sym_0x] = ACTIONS(4864), + [sym_val_date] = ACTIONS(4862), + [anon_sym_DQUOTE] = ACTIONS(4862), + [sym__str_single_quotes] = ACTIONS(4862), + [sym__str_back_ticks] = ACTIONS(4862), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4862), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4862), + [anon_sym_err_GT] = ACTIONS(4864), + [anon_sym_out_GT] = ACTIONS(4864), + [anon_sym_e_GT] = ACTIONS(4864), + [anon_sym_o_GT] = ACTIONS(4864), + [anon_sym_err_PLUSout_GT] = ACTIONS(4864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4864), + [anon_sym_o_PLUSe_GT] = ACTIONS(4864), + [anon_sym_e_PLUSo_GT] = ACTIONS(4864), + [anon_sym_err_GT_GT] = ACTIONS(4862), + [anon_sym_out_GT_GT] = ACTIONS(4862), + [anon_sym_e_GT_GT] = ACTIONS(4862), + [anon_sym_o_GT_GT] = ACTIONS(4862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4862), + [aux_sym_unquoted_token1] = ACTIONS(4864), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4862), }, - [1663] = { - [sym_cell_path] = STATE(2126), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1663), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_err_GT_PIPE] = ACTIONS(2055), - [anon_sym_out_GT_PIPE] = ACTIONS(2055), - [anon_sym_e_GT_PIPE] = ACTIONS(2055), - [anon_sym_o_GT_PIPE] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2055), - [anon_sym_RPAREN] = ACTIONS(2055), - [anon_sym_GT2] = ACTIONS(2053), - [anon_sym_DASH2] = ACTIONS(2055), - [anon_sym_in2] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_EQ_GT] = ACTIONS(2055), - [anon_sym_STAR2] = ACTIONS(2053), - [anon_sym_and2] = ACTIONS(2055), - [anon_sym_xor2] = ACTIONS(2055), - [anon_sym_or2] = ACTIONS(2055), - [anon_sym_not_DASHin2] = ACTIONS(2055), - [anon_sym_starts_DASHwith2] = ACTIONS(2055), - [anon_sym_ends_DASHwith2] = ACTIONS(2055), - [anon_sym_EQ_EQ2] = ACTIONS(2055), - [anon_sym_BANG_EQ2] = ACTIONS(2055), - [anon_sym_LT2] = ACTIONS(2053), - [anon_sym_LT_EQ2] = ACTIONS(2055), - [anon_sym_GT_EQ2] = ACTIONS(2055), - [anon_sym_EQ_TILDE2] = ACTIONS(2055), - [anon_sym_BANG_TILDE2] = ACTIONS(2055), - [anon_sym_STAR_STAR2] = ACTIONS(2055), - [anon_sym_PLUS_PLUS2] = ACTIONS(2055), - [anon_sym_SLASH2] = ACTIONS(2053), - [anon_sym_mod2] = ACTIONS(2055), - [anon_sym_SLASH_SLASH2] = ACTIONS(2055), - [anon_sym_PLUS2] = ACTIONS(2053), - [anon_sym_bit_DASHshl2] = ACTIONS(2055), - [anon_sym_bit_DASHshr2] = ACTIONS(2055), - [anon_sym_bit_DASHand2] = ACTIONS(2055), - [anon_sym_bit_DASHxor2] = ACTIONS(2055), - [anon_sym_bit_DASHor2] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(2053), - [anon_sym_out_GT] = ACTIONS(2053), - [anon_sym_e_GT] = ACTIONS(2053), - [anon_sym_o_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT] = ACTIONS(2053), - [anon_sym_err_GT_GT] = ACTIONS(2055), - [anon_sym_out_GT_GT] = ACTIONS(2055), - [anon_sym_e_GT_GT] = ACTIONS(2055), - [anon_sym_o_GT_GT] = ACTIONS(2055), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2055), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2055), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2055), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2055), + [1688] = { + [sym_comment] = STATE(1688), + [ts_builtin_sym_end] = ACTIONS(2216), + [sym__newline] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_err_GT_PIPE] = ACTIONS(2216), + [anon_sym_out_GT_PIPE] = ACTIONS(2216), + [anon_sym_e_GT_PIPE] = ACTIONS(2216), + [anon_sym_o_GT_PIPE] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(2214), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2214), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_DOT_DOT] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_0b] = ACTIONS(2214), + [anon_sym_0o] = ACTIONS(2214), + [anon_sym_0x] = ACTIONS(2214), + [sym_val_date] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym__str_single_quotes] = ACTIONS(2216), + [sym__str_back_ticks] = ACTIONS(2216), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2216), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2216), + [anon_sym_err_GT] = ACTIONS(2214), + [anon_sym_out_GT] = ACTIONS(2214), + [anon_sym_e_GT] = ACTIONS(2214), + [anon_sym_o_GT] = ACTIONS(2214), + [anon_sym_err_PLUSout_GT] = ACTIONS(2214), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2214), + [anon_sym_o_PLUSe_GT] = ACTIONS(2214), + [anon_sym_e_PLUSo_GT] = ACTIONS(2214), + [anon_sym_err_GT_GT] = ACTIONS(2216), + [anon_sym_out_GT_GT] = ACTIONS(2216), + [anon_sym_e_GT_GT] = ACTIONS(2216), + [anon_sym_o_GT_GT] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2216), + [aux_sym_unquoted_token1] = ACTIONS(2214), + [aux_sym_unquoted_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2216), + }, + [1689] = { + [sym__expr_parenthesized_immediate] = STATE(7642), + [sym_comment] = STATE(1689), + [ts_builtin_sym_end] = ACTIONS(4874), + [sym__newline] = ACTIONS(4874), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_PIPE] = ACTIONS(4874), + [anon_sym_err_GT_PIPE] = ACTIONS(4874), + [anon_sym_out_GT_PIPE] = ACTIONS(4874), + [anon_sym_e_GT_PIPE] = ACTIONS(4874), + [anon_sym_o_GT_PIPE] = ACTIONS(4874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_DASH2] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4874), + [anon_sym_DOT_DOT_LT] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4874), + [anon_sym_true] = ACTIONS(4874), + [anon_sym_false] = ACTIONS(4874), + [aux_sym__val_number_decimal_token1] = ACTIONS(4876), + [aux_sym__val_number_decimal_token2] = ACTIONS(4874), + [aux_sym__val_number_decimal_token3] = ACTIONS(4874), + [aux_sym__val_number_decimal_token4] = ACTIONS(4874), + [aux_sym__val_number_token1] = ACTIONS(4874), + [aux_sym__val_number_token2] = ACTIONS(4874), + [aux_sym__val_number_token3] = ACTIONS(4874), + [aux_sym__val_number_token4] = ACTIONS(4874), + [aux_sym__val_number_token5] = ACTIONS(4874), + [aux_sym__val_number_token6] = ACTIONS(4874), + [anon_sym_0b] = ACTIONS(4876), + [anon_sym_0o] = ACTIONS(4876), + [anon_sym_0x] = ACTIONS(4876), + [sym_val_date] = ACTIONS(4874), + [anon_sym_DQUOTE] = ACTIONS(4874), + [sym__str_single_quotes] = ACTIONS(4874), + [sym__str_back_ticks] = ACTIONS(4874), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4874), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4874), + [anon_sym_err_GT] = ACTIONS(4876), + [anon_sym_out_GT] = ACTIONS(4876), + [anon_sym_e_GT] = ACTIONS(4876), + [anon_sym_o_GT] = ACTIONS(4876), + [anon_sym_err_PLUSout_GT] = ACTIONS(4876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4876), + [anon_sym_o_PLUSe_GT] = ACTIONS(4876), + [anon_sym_e_PLUSo_GT] = ACTIONS(4876), + [anon_sym_err_GT_GT] = ACTIONS(4874), + [anon_sym_out_GT_GT] = ACTIONS(4874), + [anon_sym_e_GT_GT] = ACTIONS(4874), + [anon_sym_o_GT_GT] = ACTIONS(4874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4874), + [aux_sym_unquoted_token1] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4874), + }, + [1690] = { + [sym_comment] = STATE(1690), + [ts_builtin_sym_end] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), + }, + [1691] = { + [sym_comment] = STATE(1691), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1729), + [anon_sym_in2] = ACTIONS(1729), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1729), + [anon_sym_xor2] = ACTIONS(1729), + [anon_sym_or2] = ACTIONS(1729), + [anon_sym_not_DASHin2] = ACTIONS(1729), + [anon_sym_starts_DASHwith2] = ACTIONS(1729), + [anon_sym_ends_DASHwith2] = ACTIONS(1729), + [anon_sym_EQ_EQ2] = ACTIONS(1729), + [anon_sym_BANG_EQ2] = ACTIONS(1729), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1729), + [anon_sym_GT_EQ2] = ACTIONS(1729), + [anon_sym_EQ_TILDE2] = ACTIONS(1729), + [anon_sym_BANG_TILDE2] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_STAR_STAR2] = ACTIONS(1729), + [anon_sym_PLUS_PLUS2] = ACTIONS(1729), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1729), + [anon_sym_SLASH_SLASH2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1729), + [anon_sym_bit_DASHshr2] = ACTIONS(1729), + [anon_sym_bit_DASHand2] = ACTIONS(1729), + [anon_sym_bit_DASHxor2] = ACTIONS(1729), + [anon_sym_bit_DASHor2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [aux_sym__immediate_decimal_token1] = ACTIONS(4979), + [aux_sym__immediate_decimal_token2] = ACTIONS(4981), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token2] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(251), }, - [1664] = { - [sym_comment] = STATE(1664), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [1692] = { + [sym_comment] = STATE(1692), + [ts_builtin_sym_end] = ACTIONS(974), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_DOT_DOT_LT] = ACTIONS(974), + [anon_sym_null] = ACTIONS(974), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), }, - [1665] = { - [sym_comment] = STATE(1665), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1818), - [anon_sym_0o] = ACTIONS(1818), - [anon_sym_0x] = ACTIONS(1818), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1818), - [aux_sym_unquoted_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), + [1693] = { + [sym_comment] = STATE(1693), + [sym__newline] = ACTIONS(4983), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_err_GT_PIPE] = ACTIONS(4983), + [anon_sym_out_GT_PIPE] = ACTIONS(4983), + [anon_sym_e_GT_PIPE] = ACTIONS(4983), + [anon_sym_o_GT_PIPE] = ACTIONS(4983), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4983), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4983), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4983), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_DOLLAR] = ACTIONS(4985), + [anon_sym_DASH_DASH] = ACTIONS(4983), + [anon_sym_DASH2] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_DOT_DOT] = ACTIONS(4985), + [anon_sym_LPAREN2] = ACTIONS(4983), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [anon_sym_null] = ACTIONS(4983), + [anon_sym_true] = ACTIONS(4983), + [anon_sym_false] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(4985), + [aux_sym__val_number_decimal_token2] = ACTIONS(4983), + [aux_sym__val_number_decimal_token3] = ACTIONS(4983), + [aux_sym__val_number_decimal_token4] = ACTIONS(4983), + [aux_sym__val_number_token1] = ACTIONS(4983), + [aux_sym__val_number_token2] = ACTIONS(4983), + [aux_sym__val_number_token3] = ACTIONS(4983), + [aux_sym__val_number_token4] = ACTIONS(4983), + [aux_sym__val_number_token5] = ACTIONS(4983), + [aux_sym__val_number_token6] = ACTIONS(4983), + [anon_sym_0b] = ACTIONS(4985), + [anon_sym_0o] = ACTIONS(4985), + [anon_sym_0x] = ACTIONS(4985), + [sym_val_date] = ACTIONS(4983), + [anon_sym_DQUOTE] = ACTIONS(4983), + [sym__str_single_quotes] = ACTIONS(4983), + [sym__str_back_ticks] = ACTIONS(4983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4983), + [anon_sym_err_GT] = ACTIONS(4985), + [anon_sym_out_GT] = ACTIONS(4985), + [anon_sym_e_GT] = ACTIONS(4985), + [anon_sym_o_GT] = ACTIONS(4985), + [anon_sym_err_PLUSout_GT] = ACTIONS(4985), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4985), + [anon_sym_o_PLUSe_GT] = ACTIONS(4985), + [anon_sym_e_PLUSo_GT] = ACTIONS(4985), + [anon_sym_err_GT_GT] = ACTIONS(4983), + [anon_sym_out_GT_GT] = ACTIONS(4983), + [anon_sym_e_GT_GT] = ACTIONS(4983), + [anon_sym_o_GT_GT] = ACTIONS(4983), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4983), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4983), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4983), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4983), + [aux_sym_unquoted_token1] = ACTIONS(4985), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4983), }, - [1666] = { - [sym_comment] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_DASH2] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_DOT_DOT] = ACTIONS(2082), - [anon_sym_DOT_DOT2] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym__val_number_decimal_token1] = ACTIONS(2082), - [aux_sym__val_number_decimal_token2] = ACTIONS(2084), - [aux_sym__val_number_decimal_token3] = ACTIONS(2084), - [aux_sym__val_number_decimal_token4] = ACTIONS(2084), - [aux_sym__val_number_token1] = ACTIONS(2084), - [aux_sym__val_number_token2] = ACTIONS(2084), - [aux_sym__val_number_token3] = ACTIONS(2084), - [aux_sym__val_number_token4] = ACTIONS(2084), - [aux_sym__val_number_token5] = ACTIONS(2084), - [aux_sym__val_number_token6] = ACTIONS(2084), - [anon_sym_0b] = ACTIONS(2082), - [anon_sym_0o] = ACTIONS(2082), - [anon_sym_0x] = ACTIONS(2082), - [sym_val_date] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym__str_single_quotes] = ACTIONS(2084), - [sym__str_back_ticks] = ACTIONS(2084), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2084), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2082), - [anon_sym_out_GT] = ACTIONS(2082), - [anon_sym_e_GT] = ACTIONS(2082), - [anon_sym_o_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT] = ACTIONS(2082), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [aux_sym_unquoted_token1] = ACTIONS(2082), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2084), + [1694] = { + [sym_comment] = STATE(1694), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_GT2] = ACTIONS(1735), + [anon_sym_DASH2] = ACTIONS(1737), + [anon_sym_in2] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_STAR2] = ACTIONS(1735), + [anon_sym_and2] = ACTIONS(1737), + [anon_sym_xor2] = ACTIONS(1737), + [anon_sym_or2] = ACTIONS(1737), + [anon_sym_not_DASHin2] = ACTIONS(1737), + [anon_sym_starts_DASHwith2] = ACTIONS(1737), + [anon_sym_ends_DASHwith2] = ACTIONS(1737), + [anon_sym_EQ_EQ2] = ACTIONS(1737), + [anon_sym_BANG_EQ2] = ACTIONS(1737), + [anon_sym_LT2] = ACTIONS(1735), + [anon_sym_LT_EQ2] = ACTIONS(1737), + [anon_sym_GT_EQ2] = ACTIONS(1737), + [anon_sym_EQ_TILDE2] = ACTIONS(1737), + [anon_sym_BANG_TILDE2] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1737), + [anon_sym_STAR_STAR2] = ACTIONS(1737), + [anon_sym_PLUS_PLUS2] = ACTIONS(1737), + [anon_sym_SLASH2] = ACTIONS(1735), + [anon_sym_mod2] = ACTIONS(1737), + [anon_sym_SLASH_SLASH2] = ACTIONS(1737), + [anon_sym_PLUS2] = ACTIONS(1735), + [anon_sym_bit_DASHshl2] = ACTIONS(1737), + [anon_sym_bit_DASHshr2] = ACTIONS(1737), + [anon_sym_bit_DASHand2] = ACTIONS(1737), + [anon_sym_bit_DASHxor2] = ACTIONS(1737), + [anon_sym_bit_DASHor2] = ACTIONS(1737), + [anon_sym_DOT_DOT2] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token2] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), }, - [1667] = { - [sym_cell_path] = STATE(2096), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1667), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_err_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_GT_PIPE] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_GT2] = ACTIONS(1879), - [anon_sym_DASH2] = ACTIONS(1881), - [anon_sym_in2] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_EQ_GT] = ACTIONS(1881), - [anon_sym_STAR2] = ACTIONS(1879), - [anon_sym_and2] = ACTIONS(1881), - [anon_sym_xor2] = ACTIONS(1881), - [anon_sym_or2] = ACTIONS(1881), - [anon_sym_not_DASHin2] = ACTIONS(1881), - [anon_sym_starts_DASHwith2] = ACTIONS(1881), - [anon_sym_ends_DASHwith2] = ACTIONS(1881), - [anon_sym_EQ_EQ2] = ACTIONS(1881), - [anon_sym_BANG_EQ2] = ACTIONS(1881), - [anon_sym_LT2] = ACTIONS(1879), - [anon_sym_LT_EQ2] = ACTIONS(1881), - [anon_sym_GT_EQ2] = ACTIONS(1881), - [anon_sym_EQ_TILDE2] = ACTIONS(1881), - [anon_sym_BANG_TILDE2] = ACTIONS(1881), - [anon_sym_STAR_STAR2] = ACTIONS(1881), - [anon_sym_PLUS_PLUS2] = ACTIONS(1881), - [anon_sym_SLASH2] = ACTIONS(1879), - [anon_sym_mod2] = ACTIONS(1881), - [anon_sym_SLASH_SLASH2] = ACTIONS(1881), - [anon_sym_PLUS2] = ACTIONS(1879), - [anon_sym_bit_DASHshl2] = ACTIONS(1881), - [anon_sym_bit_DASHshr2] = ACTIONS(1881), - [anon_sym_bit_DASHand2] = ACTIONS(1881), - [anon_sym_bit_DASHxor2] = ACTIONS(1881), - [anon_sym_bit_DASHor2] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1879), - [anon_sym_out_GT] = ACTIONS(1879), - [anon_sym_e_GT] = ACTIONS(1879), - [anon_sym_o_GT] = ACTIONS(1879), - [anon_sym_err_PLUSout_GT] = ACTIONS(1879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), - [anon_sym_o_PLUSe_GT] = ACTIONS(1879), - [anon_sym_e_PLUSo_GT] = ACTIONS(1879), - [anon_sym_err_GT_GT] = ACTIONS(1881), - [anon_sym_out_GT_GT] = ACTIONS(1881), - [anon_sym_e_GT_GT] = ACTIONS(1881), - [anon_sym_o_GT_GT] = ACTIONS(1881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [1695] = { + [sym_comment] = STATE(1695), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1737), + [anon_sym_err_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_GT_PIPE] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_DASH2] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [aux_sym__immediate_decimal_token2] = ACTIONS(4846), + [anon_sym_null] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(1737), + [anon_sym_false] = ACTIONS(1737), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1737), + [aux_sym__val_number_decimal_token4] = ACTIONS(1737), + [aux_sym__val_number_token1] = ACTIONS(1737), + [aux_sym__val_number_token2] = ACTIONS(1737), + [aux_sym__val_number_token3] = ACTIONS(1737), + [aux_sym__val_number_token4] = ACTIONS(1737), + [aux_sym__val_number_token5] = ACTIONS(1737), + [aux_sym__val_number_token6] = ACTIONS(1737), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [sym__str_single_quotes] = ACTIONS(1737), + [sym__str_back_ticks] = ACTIONS(1737), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), + [anon_sym_err_GT] = ACTIONS(1735), + [anon_sym_out_GT] = ACTIONS(1735), + [anon_sym_e_GT] = ACTIONS(1735), + [anon_sym_o_GT] = ACTIONS(1735), + [anon_sym_err_PLUSout_GT] = ACTIONS(1735), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1735), + [anon_sym_o_PLUSe_GT] = ACTIONS(1735), + [anon_sym_e_PLUSo_GT] = ACTIONS(1735), + [anon_sym_err_GT_GT] = ACTIONS(1737), + [anon_sym_out_GT_GT] = ACTIONS(1737), + [anon_sym_e_GT_GT] = ACTIONS(1737), + [anon_sym_o_GT_GT] = ACTIONS(1737), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1737), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1737), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1737), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1737), + [aux_sym_unquoted_token1] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [1696] = { + [sym__expr_parenthesized_immediate] = STATE(7334), + [sym_comment] = STATE(1696), + [ts_builtin_sym_end] = ACTIONS(4828), + [sym__newline] = ACTIONS(4828), + [anon_sym_SEMI] = ACTIONS(4828), + [anon_sym_PIPE] = ACTIONS(4828), + [anon_sym_err_GT_PIPE] = ACTIONS(4828), + [anon_sym_out_GT_PIPE] = ACTIONS(4828), + [anon_sym_e_GT_PIPE] = ACTIONS(4828), + [anon_sym_o_GT_PIPE] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4828), + [anon_sym_LBRACK] = ACTIONS(4828), + [anon_sym_LPAREN] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4830), + [anon_sym_DASH_DASH] = ACTIONS(4828), + [anon_sym_DASH2] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4828), + [anon_sym_DOT_DOT] = ACTIONS(4830), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4828), + [anon_sym_DOT_DOT_LT] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4828), + [anon_sym_true] = ACTIONS(4828), + [anon_sym_false] = ACTIONS(4828), + [aux_sym__val_number_decimal_token1] = ACTIONS(4830), + [aux_sym__val_number_decimal_token2] = ACTIONS(4828), + [aux_sym__val_number_decimal_token3] = ACTIONS(4828), + [aux_sym__val_number_decimal_token4] = ACTIONS(4828), + [aux_sym__val_number_token1] = ACTIONS(4828), + [aux_sym__val_number_token2] = ACTIONS(4828), + [aux_sym__val_number_token3] = ACTIONS(4828), + [aux_sym__val_number_token4] = ACTIONS(4828), + [aux_sym__val_number_token5] = ACTIONS(4828), + [aux_sym__val_number_token6] = ACTIONS(4828), + [anon_sym_0b] = ACTIONS(4830), + [anon_sym_0o] = ACTIONS(4830), + [anon_sym_0x] = ACTIONS(4830), + [sym_val_date] = ACTIONS(4828), + [anon_sym_DQUOTE] = ACTIONS(4828), + [sym__str_single_quotes] = ACTIONS(4828), + [sym__str_back_ticks] = ACTIONS(4828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4828), + [anon_sym_err_GT] = ACTIONS(4830), + [anon_sym_out_GT] = ACTIONS(4830), + [anon_sym_e_GT] = ACTIONS(4830), + [anon_sym_o_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT] = ACTIONS(4830), + [anon_sym_err_GT_GT] = ACTIONS(4828), + [anon_sym_out_GT_GT] = ACTIONS(4828), + [anon_sym_e_GT_GT] = ACTIONS(4828), + [anon_sym_o_GT_GT] = ACTIONS(4828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4828), + [aux_sym_unquoted_token1] = ACTIONS(4830), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4828), + }, + [1697] = { + [sym_comment] = STATE(1697), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2176), + [anon_sym_in2] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_EQ_GT] = ACTIONS(2176), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2176), + [anon_sym_xor2] = ACTIONS(2176), + [anon_sym_or2] = ACTIONS(2176), + [anon_sym_not_DASHin2] = ACTIONS(2176), + [anon_sym_starts_DASHwith2] = ACTIONS(2176), + [anon_sym_ends_DASHwith2] = ACTIONS(2176), + [anon_sym_EQ_EQ2] = ACTIONS(2176), + [anon_sym_BANG_EQ2] = ACTIONS(2176), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2176), + [anon_sym_GT_EQ2] = ACTIONS(2176), + [anon_sym_EQ_TILDE2] = ACTIONS(2176), + [anon_sym_BANG_TILDE2] = ACTIONS(2176), + [anon_sym_STAR_STAR2] = ACTIONS(2176), + [anon_sym_PLUS_PLUS2] = ACTIONS(2176), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2176), + [anon_sym_SLASH_SLASH2] = ACTIONS(2176), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2176), + [anon_sym_bit_DASHshr2] = ACTIONS(2176), + [anon_sym_bit_DASHand2] = ACTIONS(2176), + [anon_sym_bit_DASHxor2] = ACTIONS(2176), + [anon_sym_bit_DASHor2] = ACTIONS(2176), + [anon_sym_DOT_DOT2] = ACTIONS(2174), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), [anon_sym_POUND] = ACTIONS(251), }, - [1668] = { - [sym_comment] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(4952), - [sym__newline] = ACTIONS(4952), - [anon_sym_SEMI] = ACTIONS(4952), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_err_GT_PIPE] = ACTIONS(4952), - [anon_sym_out_GT_PIPE] = ACTIONS(4952), - [anon_sym_e_GT_PIPE] = ACTIONS(4952), - [anon_sym_o_GT_PIPE] = ACTIONS(4952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), - [anon_sym_LBRACK] = ACTIONS(4952), - [anon_sym_LPAREN] = ACTIONS(4952), - [anon_sym_DOLLAR] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4952), - [anon_sym_DASH2] = ACTIONS(4954), - [anon_sym_LBRACE] = ACTIONS(4952), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_DOT_DOT2] = ACTIONS(5041), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4954), - [anon_sym_DOT_DOT_LT] = ACTIONS(4954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5043), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5043), - [anon_sym_null] = ACTIONS(4952), - [anon_sym_true] = ACTIONS(4952), - [anon_sym_false] = ACTIONS(4952), - [aux_sym__val_number_decimal_token1] = ACTIONS(4954), - [aux_sym__val_number_decimal_token2] = ACTIONS(4952), - [aux_sym__val_number_decimal_token3] = ACTIONS(4952), - [aux_sym__val_number_decimal_token4] = ACTIONS(4952), - [aux_sym__val_number_token1] = ACTIONS(4952), - [aux_sym__val_number_token2] = ACTIONS(4952), - [aux_sym__val_number_token3] = ACTIONS(4952), - [aux_sym__val_number_token4] = ACTIONS(4952), - [aux_sym__val_number_token5] = ACTIONS(4952), - [aux_sym__val_number_token6] = ACTIONS(4952), - [anon_sym_0b] = ACTIONS(4954), - [anon_sym_0o] = ACTIONS(4954), - [anon_sym_0x] = ACTIONS(4954), - [sym_val_date] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4952), - [sym__str_single_quotes] = ACTIONS(4952), - [sym__str_back_ticks] = ACTIONS(4952), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4952), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4952), - [anon_sym_err_GT] = ACTIONS(4954), - [anon_sym_out_GT] = ACTIONS(4954), - [anon_sym_e_GT] = ACTIONS(4954), - [anon_sym_o_GT] = ACTIONS(4954), - [anon_sym_err_PLUSout_GT] = ACTIONS(4954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4954), - [anon_sym_o_PLUSe_GT] = ACTIONS(4954), - [anon_sym_e_PLUSo_GT] = ACTIONS(4954), - [anon_sym_err_GT_GT] = ACTIONS(4952), - [anon_sym_out_GT_GT] = ACTIONS(4952), - [anon_sym_e_GT_GT] = ACTIONS(4952), - [anon_sym_o_GT_GT] = ACTIONS(4952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), - [aux_sym_unquoted_token1] = ACTIONS(4954), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4952), + [1698] = { + [sym_comment] = STATE(1698), + [sym__newline] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_err_GT_PIPE] = ACTIONS(4987), + [anon_sym_out_GT_PIPE] = ACTIONS(4987), + [anon_sym_e_GT_PIPE] = ACTIONS(4987), + [anon_sym_o_GT_PIPE] = ACTIONS(4987), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4987), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4987), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4987), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_DOLLAR] = ACTIONS(4989), + [anon_sym_DASH_DASH] = ACTIONS(4987), + [anon_sym_DASH2] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_DOT_DOT] = ACTIONS(4989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4987), + [anon_sym_DOT_DOT_LT] = ACTIONS(4987), + [anon_sym_null] = ACTIONS(4987), + [anon_sym_true] = ACTIONS(4987), + [anon_sym_false] = ACTIONS(4987), + [aux_sym__val_number_decimal_token1] = ACTIONS(4989), + [aux_sym__val_number_decimal_token2] = ACTIONS(4987), + [aux_sym__val_number_decimal_token3] = ACTIONS(4987), + [aux_sym__val_number_decimal_token4] = ACTIONS(4987), + [aux_sym__val_number_token1] = ACTIONS(4987), + [aux_sym__val_number_token2] = ACTIONS(4987), + [aux_sym__val_number_token3] = ACTIONS(4987), + [aux_sym__val_number_token4] = ACTIONS(4987), + [aux_sym__val_number_token5] = ACTIONS(4987), + [aux_sym__val_number_token6] = ACTIONS(4987), + [anon_sym_0b] = ACTIONS(4989), + [anon_sym_0o] = ACTIONS(4989), + [anon_sym_0x] = ACTIONS(4989), + [sym_val_date] = ACTIONS(4987), + [anon_sym_DQUOTE] = ACTIONS(4987), + [sym__str_single_quotes] = ACTIONS(4987), + [sym__str_back_ticks] = ACTIONS(4987), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4987), + [anon_sym_err_GT] = ACTIONS(4989), + [anon_sym_out_GT] = ACTIONS(4989), + [anon_sym_e_GT] = ACTIONS(4989), + [anon_sym_o_GT] = ACTIONS(4989), + [anon_sym_err_PLUSout_GT] = ACTIONS(4989), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4989), + [anon_sym_o_PLUSe_GT] = ACTIONS(4989), + [anon_sym_e_PLUSo_GT] = ACTIONS(4989), + [anon_sym_err_GT_GT] = ACTIONS(4987), + [anon_sym_out_GT_GT] = ACTIONS(4987), + [anon_sym_e_GT_GT] = ACTIONS(4987), + [anon_sym_o_GT_GT] = ACTIONS(4987), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4987), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4987), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4987), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4987), + [anon_sym_EQ2] = ACTIONS(4991), + [aux_sym_unquoted_token1] = ACTIONS(4989), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4987), }, - [1669] = { - [sym_path] = STATE(1643), - [sym_comment] = STATE(1669), - [aux_sym_cell_path_repeat1] = STATE(1669), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(977), - [anon_sym_in2] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(977), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(977), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(5073), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), + [1699] = { + [sym_comment] = STATE(1699), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1711), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1711), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1709), + [sym_duration_unit] = ACTIONS(1711), + [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(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(251), }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(5076), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2098), - [anon_sym_DOT_DOT_LT] = ACTIONS(2098), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5078), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5078), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2104), - [aux_sym__val_number_token5] = ACTIONS(2104), - [aux_sym__val_number_token6] = ACTIONS(2104), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(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), - [aux_sym_unquoted_token1] = ACTIONS(2098), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), + [1700] = { + [sym_comment] = STATE(1700), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym__newline] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_err_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_GT_PIPE] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_LPAREN2] = ACTIONS(1796), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), + [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [aux_sym__val_number_decimal_token1] = ACTIONS(1794), + [aux_sym__val_number_decimal_token2] = ACTIONS(1802), + [aux_sym__val_number_decimal_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token4] = ACTIONS(1802), + [aux_sym__val_number_token1] = ACTIONS(1802), + [aux_sym__val_number_token2] = ACTIONS(1802), + [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_token4] = ACTIONS(1802), + [aux_sym__val_number_token5] = ACTIONS(1802), + [aux_sym__val_number_token6] = ACTIONS(1802), + [anon_sym_0b] = ACTIONS(1794), + [anon_sym_0o] = ACTIONS(1794), + [anon_sym_0x] = ACTIONS(1794), + [sym_val_date] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym__str_single_quotes] = ACTIONS(1802), + [sym__str_back_ticks] = ACTIONS(1802), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [anon_sym_err_GT] = ACTIONS(1794), + [anon_sym_out_GT] = ACTIONS(1794), + [anon_sym_e_GT] = ACTIONS(1794), + [anon_sym_o_GT] = ACTIONS(1794), + [anon_sym_err_PLUSout_GT] = ACTIONS(1794), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1794), + [anon_sym_o_PLUSe_GT] = ACTIONS(1794), + [anon_sym_e_PLUSo_GT] = ACTIONS(1794), + [anon_sym_err_GT_GT] = ACTIONS(1802), + [anon_sym_out_GT_GT] = ACTIONS(1802), + [anon_sym_e_GT_GT] = ACTIONS(1802), + [anon_sym_o_GT_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), + [aux_sym_unquoted_token1] = ACTIONS(1794), + [aux_sym_unquoted_token2] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1802), }, - [1671] = { - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(2137), - [sym__newline] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2137), - [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(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2131), - [anon_sym_DASH_DASH] = ACTIONS(2137), - [anon_sym_DASH2] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_DOT_DOT2] = ACTIONS(5080), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2131), - [anon_sym_DOT_DOT_LT] = ACTIONS(2131), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5082), - [anon_sym_null] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [aux_sym__val_number_decimal_token1] = ACTIONS(2131), - [aux_sym__val_number_decimal_token2] = ACTIONS(2137), - [aux_sym__val_number_decimal_token3] = ACTIONS(2137), - [aux_sym__val_number_decimal_token4] = ACTIONS(2137), - [aux_sym__val_number_token1] = ACTIONS(2137), - [aux_sym__val_number_token2] = ACTIONS(2137), - [aux_sym__val_number_token3] = ACTIONS(2137), - [aux_sym__val_number_token4] = ACTIONS(2137), - [aux_sym__val_number_token5] = ACTIONS(2137), - [aux_sym__val_number_token6] = ACTIONS(2137), - [anon_sym_0b] = ACTIONS(2131), - [anon_sym_0o] = ACTIONS(2131), - [anon_sym_0x] = ACTIONS(2131), - [sym_val_date] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2137), - [sym__str_single_quotes] = ACTIONS(2137), - [sym__str_back_ticks] = ACTIONS(2137), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2137), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2137), - [anon_sym_err_GT] = ACTIONS(2131), - [anon_sym_out_GT] = ACTIONS(2131), - [anon_sym_e_GT] = ACTIONS(2131), - [anon_sym_o_GT] = ACTIONS(2131), - [anon_sym_err_PLUSout_GT] = ACTIONS(2131), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2131), - [anon_sym_o_PLUSe_GT] = ACTIONS(2131), - [anon_sym_e_PLUSo_GT] = ACTIONS(2131), - [anon_sym_err_GT_GT] = ACTIONS(2137), - [anon_sym_out_GT_GT] = ACTIONS(2137), - [anon_sym_e_GT_GT] = ACTIONS(2137), - [anon_sym_o_GT_GT] = ACTIONS(2137), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2137), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2137), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2137), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2137), - [aux_sym_unquoted_token1] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2137), + [1701] = { + [sym__expr_parenthesized_immediate] = STATE(7642), + [sym_comment] = STATE(1701), + [ts_builtin_sym_end] = ACTIONS(4866), + [sym__newline] = ACTIONS(4866), + [anon_sym_SEMI] = ACTIONS(4866), + [anon_sym_PIPE] = ACTIONS(4866), + [anon_sym_err_GT_PIPE] = ACTIONS(4866), + [anon_sym_out_GT_PIPE] = ACTIONS(4866), + [anon_sym_e_GT_PIPE] = ACTIONS(4866), + [anon_sym_o_GT_PIPE] = ACTIONS(4866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4868), + [anon_sym_DOLLAR] = ACTIONS(4868), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_DASH2] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_DOT_DOT] = ACTIONS(4868), + [anon_sym_LPAREN2] = ACTIONS(4113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4866), + [anon_sym_DOT_DOT_LT] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4866), + [anon_sym_true] = ACTIONS(4866), + [anon_sym_false] = ACTIONS(4866), + [aux_sym__val_number_decimal_token1] = ACTIONS(4868), + [aux_sym__val_number_decimal_token2] = ACTIONS(4866), + [aux_sym__val_number_decimal_token3] = ACTIONS(4866), + [aux_sym__val_number_decimal_token4] = ACTIONS(4866), + [aux_sym__val_number_token1] = ACTIONS(4866), + [aux_sym__val_number_token2] = ACTIONS(4866), + [aux_sym__val_number_token3] = ACTIONS(4866), + [aux_sym__val_number_token4] = ACTIONS(4866), + [aux_sym__val_number_token5] = ACTIONS(4866), + [aux_sym__val_number_token6] = ACTIONS(4866), + [anon_sym_0b] = ACTIONS(4868), + [anon_sym_0o] = ACTIONS(4868), + [anon_sym_0x] = ACTIONS(4868), + [sym_val_date] = ACTIONS(4866), + [anon_sym_DQUOTE] = ACTIONS(4866), + [sym__str_single_quotes] = ACTIONS(4866), + [sym__str_back_ticks] = ACTIONS(4866), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4866), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4866), + [anon_sym_err_GT] = ACTIONS(4868), + [anon_sym_out_GT] = ACTIONS(4868), + [anon_sym_e_GT] = ACTIONS(4868), + [anon_sym_o_GT] = ACTIONS(4868), + [anon_sym_err_PLUSout_GT] = ACTIONS(4868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4868), + [anon_sym_o_PLUSe_GT] = ACTIONS(4868), + [anon_sym_e_PLUSo_GT] = ACTIONS(4868), + [anon_sym_err_GT_GT] = ACTIONS(4866), + [anon_sym_out_GT_GT] = ACTIONS(4866), + [anon_sym_e_GT_GT] = ACTIONS(4866), + [anon_sym_o_GT_GT] = ACTIONS(4866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4866), + [aux_sym_unquoted_token1] = ACTIONS(4868), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4866), }, - [1672] = { - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_DOT_DOT] = ACTIONS(2086), - [anon_sym_DOT_DOT2] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2086), - [anon_sym_DOT_DOT_LT] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [aux_sym__val_number_decimal_token1] = ACTIONS(2086), - [aux_sym__val_number_decimal_token2] = ACTIONS(2088), - [aux_sym__val_number_decimal_token3] = ACTIONS(2088), - [aux_sym__val_number_decimal_token4] = ACTIONS(2088), - [aux_sym__val_number_token1] = ACTIONS(2088), - [aux_sym__val_number_token2] = ACTIONS(2088), - [aux_sym__val_number_token3] = ACTIONS(2088), - [aux_sym__val_number_token4] = ACTIONS(2088), - [aux_sym__val_number_token5] = ACTIONS(2088), - [aux_sym__val_number_token6] = ACTIONS(2088), - [anon_sym_0b] = ACTIONS(2086), - [anon_sym_0o] = ACTIONS(2086), - [anon_sym_0x] = ACTIONS(2086), - [sym_val_date] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym__str_single_quotes] = ACTIONS(2088), - [sym__str_back_ticks] = ACTIONS(2088), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2088), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [aux_sym_unquoted_token1] = ACTIONS(2086), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2088), + [1702] = { + [sym_comment] = STATE(1702), + [ts_builtin_sym_end] = ACTIONS(964), + [sym__newline] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_err_GT_PIPE] = ACTIONS(964), + [anon_sym_out_GT_PIPE] = ACTIONS(964), + [anon_sym_e_GT_PIPE] = ACTIONS(964), + [anon_sym_o_GT_PIPE] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_null] = ACTIONS(964), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(962), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_0b] = ACTIONS(962), + [anon_sym_0o] = ACTIONS(962), + [anon_sym_0x] = ACTIONS(962), + [sym_val_date] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(962), + [anon_sym_err_GT] = ACTIONS(962), + [anon_sym_out_GT] = ACTIONS(962), + [anon_sym_e_GT] = ACTIONS(962), + [anon_sym_o_GT] = ACTIONS(962), + [anon_sym_err_PLUSout_GT] = ACTIONS(962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(962), + [anon_sym_o_PLUSe_GT] = ACTIONS(962), + [anon_sym_e_PLUSo_GT] = ACTIONS(962), + [anon_sym_err_GT_GT] = ACTIONS(964), + [anon_sym_out_GT_GT] = ACTIONS(964), + [anon_sym_e_GT_GT] = ACTIONS(964), + [anon_sym_o_GT_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [aux_sym_unquoted_token1] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(964), }, - [1673] = { - [sym_comment] = STATE(1673), + [1703] = { + [sym_comment] = STATE(1703), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -238457,7 +234494,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(1020), [anon_sym_bit_DASHor2] = ACTIONS(1020), [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), [anon_sym_err_GT] = ACTIONS(1018), @@ -238478,5702 +234514,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(251), }, - [1674] = { - [sym_comment] = STATE(1674), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [1675] = { - [sym_comment] = STATE(1675), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(5084), - [aux_sym__immediate_decimal_token2] = ACTIONS(5086), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), - }, - [1676] = { - [sym_comment] = STATE(1676), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [aux_sym__val_number_token4] = ACTIONS(1024), - [aux_sym__val_number_token5] = ACTIONS(1024), - [aux_sym__val_number_token6] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1024), - }, - [1677] = { - [sym__expr_parenthesized_immediate] = STATE(8149), - [sym_comment] = STATE(1677), - [sym__newline] = ACTIONS(5088), - [anon_sym_SEMI] = ACTIONS(5088), - [anon_sym_PIPE] = ACTIONS(5088), - [anon_sym_err_GT_PIPE] = ACTIONS(5088), - [anon_sym_out_GT_PIPE] = ACTIONS(5088), - [anon_sym_e_GT_PIPE] = ACTIONS(5088), - [anon_sym_o_GT_PIPE] = ACTIONS(5088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5088), - [anon_sym_LBRACK] = ACTIONS(5088), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_RPAREN] = ACTIONS(5088), - [anon_sym_DOLLAR] = ACTIONS(5090), - [anon_sym_DASH_DASH] = ACTIONS(5088), - [anon_sym_DASH2] = ACTIONS(5090), - [anon_sym_LBRACE] = ACTIONS(5088), - [anon_sym_DOT_DOT] = ACTIONS(5090), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5088), - [anon_sym_DOT_DOT_LT] = ACTIONS(5088), - [anon_sym_null] = ACTIONS(5088), - [anon_sym_true] = ACTIONS(5088), - [anon_sym_false] = ACTIONS(5088), - [aux_sym__val_number_decimal_token1] = ACTIONS(5090), - [aux_sym__val_number_decimal_token2] = ACTIONS(5088), - [aux_sym__val_number_decimal_token3] = ACTIONS(5088), - [aux_sym__val_number_decimal_token4] = ACTIONS(5088), - [aux_sym__val_number_token1] = ACTIONS(5088), - [aux_sym__val_number_token2] = ACTIONS(5088), - [aux_sym__val_number_token3] = ACTIONS(5088), - [aux_sym__val_number_token4] = ACTIONS(5088), - [aux_sym__val_number_token5] = ACTIONS(5088), - [aux_sym__val_number_token6] = ACTIONS(5088), - [anon_sym_0b] = ACTIONS(5090), - [anon_sym_0o] = ACTIONS(5090), - [anon_sym_0x] = ACTIONS(5090), - [sym_val_date] = ACTIONS(5088), - [anon_sym_DQUOTE] = ACTIONS(5088), - [sym__str_single_quotes] = ACTIONS(5088), - [sym__str_back_ticks] = ACTIONS(5088), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5088), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5088), - [anon_sym_err_GT] = ACTIONS(5090), - [anon_sym_out_GT] = ACTIONS(5090), - [anon_sym_e_GT] = ACTIONS(5090), - [anon_sym_o_GT] = ACTIONS(5090), - [anon_sym_err_PLUSout_GT] = ACTIONS(5090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5090), - [anon_sym_o_PLUSe_GT] = ACTIONS(5090), - [anon_sym_e_PLUSo_GT] = ACTIONS(5090), - [anon_sym_err_GT_GT] = ACTIONS(5088), - [anon_sym_out_GT_GT] = ACTIONS(5088), - [anon_sym_e_GT_GT] = ACTIONS(5088), - [anon_sym_o_GT_GT] = ACTIONS(5088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5088), - [aux_sym_unquoted_token1] = ACTIONS(5090), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5088), - }, - [1678] = { - [sym_comment] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(1002), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_DASH2] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT] = ACTIONS(1002), - [anon_sym_null] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [aux_sym__val_number_decimal_token1] = ACTIONS(1000), - [aux_sym__val_number_decimal_token2] = ACTIONS(1002), - [aux_sym__val_number_decimal_token3] = ACTIONS(1002), - [aux_sym__val_number_decimal_token4] = ACTIONS(1002), - [aux_sym__val_number_token1] = ACTIONS(1002), - [aux_sym__val_number_token2] = ACTIONS(1002), - [aux_sym__val_number_token3] = ACTIONS(1002), - [aux_sym__val_number_token4] = ACTIONS(1002), - [aux_sym__val_number_token5] = ACTIONS(1002), - [aux_sym__val_number_token6] = ACTIONS(1002), - [anon_sym_0b] = ACTIONS(1000), - [anon_sym_0o] = ACTIONS(1000), - [anon_sym_0x] = ACTIONS(1000), - [sym_val_date] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym__str_single_quotes] = ACTIONS(1002), - [sym__str_back_ticks] = ACTIONS(1002), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1002), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [aux_sym_unquoted_token1] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1002), - }, - [1679] = { - [sym_comment] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1006), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT] = ACTIONS(1006), - [anon_sym_null] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1006), - [aux_sym__val_number_decimal_token3] = ACTIONS(1006), - [aux_sym__val_number_decimal_token4] = ACTIONS(1006), - [aux_sym__val_number_token1] = ACTIONS(1006), - [aux_sym__val_number_token2] = ACTIONS(1006), - [aux_sym__val_number_token3] = ACTIONS(1006), - [aux_sym__val_number_token4] = ACTIONS(1006), - [aux_sym__val_number_token5] = ACTIONS(1006), - [aux_sym__val_number_token6] = ACTIONS(1006), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [sym__str_single_quotes] = ACTIONS(1006), - [sym__str_back_ticks] = ACTIONS(1006), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1006), - }, - [1680] = { - [sym_comment] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(998), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(996), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_0b] = ACTIONS(996), - [anon_sym_0o] = ACTIONS(996), - [anon_sym_0x] = ACTIONS(996), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [1681] = { - [sym_comment] = STATE(1681), - [ts_builtin_sym_end] = ACTIONS(1773), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1773), - [anon_sym_in2] = ACTIONS(1773), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1773), - [anon_sym_xor2] = ACTIONS(1773), - [anon_sym_or2] = ACTIONS(1773), - [anon_sym_not_DASHin2] = ACTIONS(1773), - [anon_sym_starts_DASHwith2] = ACTIONS(1773), - [anon_sym_ends_DASHwith2] = ACTIONS(1773), - [anon_sym_EQ_EQ2] = ACTIONS(1773), - [anon_sym_BANG_EQ2] = ACTIONS(1773), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1773), - [anon_sym_GT_EQ2] = ACTIONS(1773), - [anon_sym_EQ_TILDE2] = ACTIONS(1773), - [anon_sym_BANG_TILDE2] = ACTIONS(1773), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_STAR_STAR2] = ACTIONS(1773), - [anon_sym_PLUS_PLUS2] = ACTIONS(1773), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1773), - [anon_sym_SLASH_SLASH2] = ACTIONS(1773), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1773), - [anon_sym_bit_DASHshr2] = ACTIONS(1773), - [anon_sym_bit_DASHand2] = ACTIONS(1773), - [anon_sym_bit_DASHxor2] = ACTIONS(1773), - [anon_sym_bit_DASHor2] = ACTIONS(1773), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(5092), - [aux_sym__immediate_decimal_token2] = ACTIONS(5094), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - }, - [1682] = { - [sym_comment] = STATE(1682), - [ts_builtin_sym_end] = ACTIONS(988), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_null] = ACTIONS(988), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [aux_sym__val_number_decimal_token2] = ACTIONS(988), - [aux_sym__val_number_decimal_token3] = ACTIONS(988), - [aux_sym__val_number_decimal_token4] = ACTIONS(988), - [aux_sym__val_number_token1] = ACTIONS(988), - [aux_sym__val_number_token2] = ACTIONS(988), - [aux_sym__val_number_token3] = ACTIONS(988), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_0b] = ACTIONS(986), - [anon_sym_0o] = ACTIONS(986), - [anon_sym_0x] = ACTIONS(986), - [sym_val_date] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym__str_single_quotes] = ACTIONS(988), - [sym__str_back_ticks] = ACTIONS(988), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(988), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [aux_sym_unquoted_token1] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(988), - }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(2270), - [sym__newline] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_err_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_GT_PIPE] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_DOLLAR] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2270), - [anon_sym_DOT_DOT_LT] = ACTIONS(2270), - [anon_sym_null] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2270), - [anon_sym_false] = ACTIONS(2270), - [aux_sym__val_number_decimal_token1] = ACTIONS(2266), - [aux_sym__val_number_decimal_token2] = ACTIONS(2270), - [aux_sym__val_number_decimal_token3] = ACTIONS(2270), - [aux_sym__val_number_decimal_token4] = ACTIONS(2270), - [aux_sym__val_number_token1] = ACTIONS(2270), - [aux_sym__val_number_token2] = ACTIONS(2270), - [aux_sym__val_number_token3] = ACTIONS(2270), - [aux_sym__val_number_token4] = ACTIONS(2270), - [aux_sym__val_number_token5] = ACTIONS(2270), - [aux_sym__val_number_token6] = ACTIONS(2270), - [anon_sym_0b] = ACTIONS(2266), - [anon_sym_0o] = ACTIONS(2266), - [anon_sym_0x] = ACTIONS(2266), - [sym_val_date] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2270), - [sym__str_single_quotes] = ACTIONS(2270), - [sym__str_back_ticks] = ACTIONS(2270), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2270), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), - [anon_sym_err_GT] = ACTIONS(2266), - [anon_sym_out_GT] = ACTIONS(2266), - [anon_sym_e_GT] = ACTIONS(2266), - [anon_sym_o_GT] = ACTIONS(2266), - [anon_sym_err_PLUSout_GT] = ACTIONS(2266), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2266), - [anon_sym_o_PLUSe_GT] = ACTIONS(2266), - [anon_sym_e_PLUSo_GT] = ACTIONS(2266), - [anon_sym_err_GT_GT] = ACTIONS(2270), - [anon_sym_out_GT_GT] = ACTIONS(2270), - [anon_sym_e_GT_GT] = ACTIONS(2270), - [anon_sym_o_GT_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2270), - [aux_sym_unquoted_token1] = ACTIONS(2266), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2270), - }, - [1684] = { - [sym_comment] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(1773), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT] = ACTIONS(1773), - [aux_sym__immediate_decimal_token1] = ACTIONS(5096), - [aux_sym__immediate_decimal_token2] = ACTIONS(5098), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), - }, - [1685] = { - [sym_comment] = STATE(1685), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT] = ACTIONS(1020), - [anon_sym_null] = ACTIONS(1020), - [anon_sym_true] = ACTIONS(1020), - [anon_sym_false] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1020), - [aux_sym__val_number_token5] = ACTIONS(1020), - [aux_sym__val_number_token6] = ACTIONS(1020), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [aux_sym_unquoted_token1] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), - }, - [1686] = { - [sym_comment] = STATE(1686), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1016), - [anon_sym_DOT_DOT_LT] = ACTIONS(1016), - [anon_sym_null] = ACTIONS(1016), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [aux_sym__val_number_decimal_token1] = ACTIONS(1014), - [aux_sym__val_number_decimal_token2] = ACTIONS(1016), - [aux_sym__val_number_decimal_token3] = ACTIONS(1016), - [aux_sym__val_number_decimal_token4] = ACTIONS(1016), - [aux_sym__val_number_token1] = ACTIONS(1016), - [aux_sym__val_number_token2] = ACTIONS(1016), - [aux_sym__val_number_token3] = ACTIONS(1016), - [aux_sym__val_number_token4] = ACTIONS(1016), - [aux_sym__val_number_token5] = ACTIONS(1016), - [aux_sym__val_number_token6] = ACTIONS(1016), - [anon_sym_0b] = ACTIONS(1014), - [anon_sym_0o] = ACTIONS(1014), - [anon_sym_0x] = ACTIONS(1014), - [sym_val_date] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1016), - [sym__str_single_quotes] = ACTIONS(1016), - [sym__str_back_ticks] = ACTIONS(1016), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1014), - [anon_sym_out_GT] = ACTIONS(1014), - [anon_sym_e_GT] = ACTIONS(1014), - [anon_sym_o_GT] = ACTIONS(1014), - [anon_sym_err_PLUSout_GT] = ACTIONS(1014), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1014), - [anon_sym_o_PLUSe_GT] = ACTIONS(1014), - [anon_sym_e_PLUSo_GT] = ACTIONS(1014), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [aux_sym_unquoted_token1] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1016), - }, - [1687] = { - [sym_comment] = STATE(1687), - [ts_builtin_sym_end] = ACTIONS(2230), - [sym__newline] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_err_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_GT_PIPE] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_DOLLAR] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2226), - [anon_sym_LPAREN2] = ACTIONS(2228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), - [anon_sym_DOT_DOT_LT] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [aux_sym__val_number_decimal_token1] = ACTIONS(2226), - [aux_sym__val_number_decimal_token2] = ACTIONS(2230), - [aux_sym__val_number_decimal_token3] = ACTIONS(2230), - [aux_sym__val_number_decimal_token4] = ACTIONS(2230), - [aux_sym__val_number_token1] = ACTIONS(2230), - [aux_sym__val_number_token2] = ACTIONS(2230), - [aux_sym__val_number_token3] = ACTIONS(2230), - [aux_sym__val_number_token4] = ACTIONS(2230), - [aux_sym__val_number_token5] = ACTIONS(2230), - [aux_sym__val_number_token6] = ACTIONS(2230), - [anon_sym_0b] = ACTIONS(2226), - [anon_sym_0o] = ACTIONS(2226), - [anon_sym_0x] = ACTIONS(2226), - [sym_val_date] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [sym__str_single_quotes] = ACTIONS(2230), - [sym__str_back_ticks] = ACTIONS(2230), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), - [anon_sym_err_GT] = ACTIONS(2226), - [anon_sym_out_GT] = ACTIONS(2226), - [anon_sym_e_GT] = ACTIONS(2226), - [anon_sym_o_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT] = ACTIONS(2226), - [anon_sym_err_GT_GT] = ACTIONS(2230), - [anon_sym_out_GT_GT] = ACTIONS(2230), - [anon_sym_e_GT_GT] = ACTIONS(2230), - [anon_sym_o_GT_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), - [aux_sym_unquoted_token1] = ACTIONS(2226), - [aux_sym_unquoted_token2] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2230), - }, - [1688] = { - [sym_comment] = STATE(1688), - [ts_builtin_sym_end] = ACTIONS(5010), - [sym_long_flag_identifier] = ACTIONS(5100), - [sym__newline] = ACTIONS(5010), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5010), - [anon_sym_err_GT_PIPE] = ACTIONS(5010), - [anon_sym_out_GT_PIPE] = ACTIONS(5010), - [anon_sym_e_GT_PIPE] = ACTIONS(5010), - [anon_sym_o_GT_PIPE] = ACTIONS(5010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5010), - [anon_sym_DOLLAR] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_DASH2] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), - [anon_sym_DOT_DOT_LT] = ACTIONS(5010), - [anon_sym_null] = ACTIONS(5012), - [anon_sym_true] = ACTIONS(5012), - [anon_sym_false] = ACTIONS(5012), - [aux_sym__val_number_decimal_token1] = ACTIONS(5012), - [aux_sym__val_number_decimal_token2] = ACTIONS(5010), - [aux_sym__val_number_decimal_token3] = ACTIONS(5010), - [aux_sym__val_number_decimal_token4] = ACTIONS(5010), - [aux_sym__val_number_token1] = ACTIONS(5012), - [aux_sym__val_number_token2] = ACTIONS(5012), - [aux_sym__val_number_token3] = ACTIONS(5012), - [aux_sym__val_number_token4] = ACTIONS(5012), - [aux_sym__val_number_token5] = ACTIONS(5010), - [aux_sym__val_number_token6] = ACTIONS(5012), - [anon_sym_0b] = ACTIONS(5012), - [anon_sym_0o] = ACTIONS(5012), - [anon_sym_0x] = ACTIONS(5012), - [sym_val_date] = ACTIONS(5012), - [anon_sym_DQUOTE] = ACTIONS(5010), - [sym__str_single_quotes] = ACTIONS(5010), - [sym__str_back_ticks] = ACTIONS(5010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5010), - [anon_sym_err_GT] = ACTIONS(5012), - [anon_sym_out_GT] = ACTIONS(5012), - [anon_sym_e_GT] = ACTIONS(5012), - [anon_sym_o_GT] = ACTIONS(5012), - [anon_sym_err_PLUSout_GT] = ACTIONS(5012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5012), - [anon_sym_o_PLUSe_GT] = ACTIONS(5012), - [anon_sym_e_PLUSo_GT] = ACTIONS(5012), - [anon_sym_err_GT_GT] = ACTIONS(5010), - [anon_sym_out_GT_GT] = ACTIONS(5010), - [anon_sym_e_GT_GT] = ACTIONS(5010), - [anon_sym_o_GT_GT] = ACTIONS(5010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5010), - [anon_sym_EQ2] = ACTIONS(5102), - [aux_sym_unquoted_token1] = ACTIONS(5012), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5010), - }, - [1689] = { - [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(5027), - [sym__newline] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_err_GT_PIPE] = ACTIONS(5027), - [anon_sym_out_GT_PIPE] = ACTIONS(5027), - [anon_sym_e_GT_PIPE] = ACTIONS(5027), - [anon_sym_o_GT_PIPE] = ACTIONS(5027), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5027), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5027), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5027), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_DASH_DASH] = ACTIONS(5029), - [anon_sym_DASH2] = ACTIONS(5029), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_DOT_DOT] = ACTIONS(5029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5027), - [anon_sym_DOT_DOT_LT] = ACTIONS(5027), - [anon_sym_null] = ACTIONS(5029), - [anon_sym_true] = ACTIONS(5029), - [anon_sym_false] = ACTIONS(5029), - [aux_sym__val_number_decimal_token1] = ACTIONS(5029), - [aux_sym__val_number_decimal_token2] = ACTIONS(5029), - [aux_sym__val_number_decimal_token3] = ACTIONS(5027), - [aux_sym__val_number_decimal_token4] = ACTIONS(5027), - [aux_sym__val_number_token1] = ACTIONS(5029), - [aux_sym__val_number_token2] = ACTIONS(5029), - [aux_sym__val_number_token3] = ACTIONS(5029), - [aux_sym__val_number_token4] = ACTIONS(5029), - [aux_sym__val_number_token5] = ACTIONS(5029), - [aux_sym__val_number_token6] = ACTIONS(5029), - [anon_sym_0b] = ACTIONS(5029), - [anon_sym_0o] = ACTIONS(5029), - [anon_sym_0x] = ACTIONS(5029), - [sym_val_date] = ACTIONS(5029), - [anon_sym_DQUOTE] = ACTIONS(5027), - [sym__str_single_quotes] = ACTIONS(5027), - [sym__str_back_ticks] = ACTIONS(5027), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5027), - [anon_sym_err_GT] = ACTIONS(5029), - [anon_sym_out_GT] = ACTIONS(5029), - [anon_sym_e_GT] = ACTIONS(5029), - [anon_sym_o_GT] = ACTIONS(5029), - [anon_sym_err_PLUSout_GT] = ACTIONS(5029), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5029), - [anon_sym_o_PLUSe_GT] = ACTIONS(5029), - [anon_sym_e_PLUSo_GT] = ACTIONS(5029), - [anon_sym_err_GT_GT] = ACTIONS(5027), - [anon_sym_out_GT_GT] = ACTIONS(5027), - [anon_sym_e_GT_GT] = ACTIONS(5027), - [anon_sym_o_GT_GT] = ACTIONS(5027), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5027), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5027), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5027), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5027), - [anon_sym_EQ2] = ACTIONS(5104), - [sym_short_flag_identifier] = ACTIONS(5106), - [aux_sym_unquoted_token1] = ACTIONS(5029), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5027), - }, - [1690] = { - [sym_comment] = STATE(1690), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1779), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1779), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1779), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - }, - [1691] = { - [sym__expr_parenthesized_immediate] = STATE(8128), - [sym_comment] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(5023), - [sym__newline] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_err_GT_PIPE] = ACTIONS(5023), - [anon_sym_out_GT_PIPE] = ACTIONS(5023), - [anon_sym_e_GT_PIPE] = ACTIONS(5023), - [anon_sym_o_GT_PIPE] = ACTIONS(5023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_DASH_DASH] = ACTIONS(5023), - [anon_sym_DASH2] = ACTIONS(5025), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_DOT_DOT] = ACTIONS(5025), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5023), - [anon_sym_DOT_DOT_LT] = ACTIONS(5023), - [anon_sym_null] = ACTIONS(5023), - [anon_sym_true] = ACTIONS(5023), - [anon_sym_false] = ACTIONS(5023), - [aux_sym__val_number_decimal_token1] = ACTIONS(5025), - [aux_sym__val_number_decimal_token2] = ACTIONS(5023), - [aux_sym__val_number_decimal_token3] = ACTIONS(5023), - [aux_sym__val_number_decimal_token4] = ACTIONS(5023), - [aux_sym__val_number_token1] = ACTIONS(5023), - [aux_sym__val_number_token2] = ACTIONS(5023), - [aux_sym__val_number_token3] = ACTIONS(5023), - [aux_sym__val_number_token4] = ACTIONS(5023), - [aux_sym__val_number_token5] = ACTIONS(5023), - [aux_sym__val_number_token6] = ACTIONS(5023), - [anon_sym_0b] = ACTIONS(5025), - [anon_sym_0o] = ACTIONS(5025), - [anon_sym_0x] = ACTIONS(5025), - [sym_val_date] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [sym__str_single_quotes] = ACTIONS(5023), - [sym__str_back_ticks] = ACTIONS(5023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5023), - [anon_sym_err_GT] = ACTIONS(5025), - [anon_sym_out_GT] = ACTIONS(5025), - [anon_sym_e_GT] = ACTIONS(5025), - [anon_sym_o_GT] = ACTIONS(5025), - [anon_sym_err_PLUSout_GT] = ACTIONS(5025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5025), - [anon_sym_o_PLUSe_GT] = ACTIONS(5025), - [anon_sym_e_PLUSo_GT] = ACTIONS(5025), - [anon_sym_err_GT_GT] = ACTIONS(5023), - [anon_sym_out_GT_GT] = ACTIONS(5023), - [anon_sym_e_GT_GT] = ACTIONS(5023), - [anon_sym_o_GT_GT] = ACTIONS(5023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5023), - [aux_sym_unquoted_token1] = ACTIONS(5025), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5023), - }, - [1692] = { - [sym_comment] = STATE(1692), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1687), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1687), - [aux_sym_unquoted_token2] = ACTIONS(4728), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), - }, - [1693] = { - [sym_comment] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(5108), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(5110), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [1694] = { - [sym_comment] = STATE(1694), - [sym__newline] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_err_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_GT_PIPE] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_GT2] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1054), - [anon_sym_in2] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_EQ_GT] = ACTIONS(1054), - [anon_sym_STAR2] = ACTIONS(1052), - [anon_sym_and2] = ACTIONS(1054), - [anon_sym_xor2] = ACTIONS(1054), - [anon_sym_or2] = ACTIONS(1054), - [anon_sym_not_DASHin2] = ACTIONS(1054), - [anon_sym_starts_DASHwith2] = ACTIONS(1054), - [anon_sym_ends_DASHwith2] = ACTIONS(1054), - [anon_sym_EQ_EQ2] = ACTIONS(1054), - [anon_sym_BANG_EQ2] = ACTIONS(1054), - [anon_sym_LT2] = ACTIONS(1052), - [anon_sym_LT_EQ2] = ACTIONS(1054), - [anon_sym_GT_EQ2] = ACTIONS(1054), - [anon_sym_EQ_TILDE2] = ACTIONS(1054), - [anon_sym_BANG_TILDE2] = ACTIONS(1054), - [anon_sym_STAR_STAR2] = ACTIONS(1054), - [anon_sym_PLUS_PLUS2] = ACTIONS(1054), - [anon_sym_SLASH2] = ACTIONS(1052), - [anon_sym_mod2] = ACTIONS(1054), - [anon_sym_SLASH_SLASH2] = ACTIONS(1054), - [anon_sym_PLUS2] = ACTIONS(1052), - [anon_sym_bit_DASHshl2] = ACTIONS(1054), - [anon_sym_bit_DASHshr2] = ACTIONS(1054), - [anon_sym_bit_DASHand2] = ACTIONS(1054), - [anon_sym_bit_DASHxor2] = ACTIONS(1054), - [anon_sym_bit_DASHor2] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1054), - [anon_sym_err_GT] = ACTIONS(1052), - [anon_sym_out_GT] = ACTIONS(1052), - [anon_sym_e_GT] = ACTIONS(1052), - [anon_sym_o_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT] = ACTIONS(1052), - [anon_sym_err_GT_GT] = ACTIONS(1054), - [anon_sym_out_GT_GT] = ACTIONS(1054), - [anon_sym_e_GT_GT] = ACTIONS(1054), - [anon_sym_o_GT_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(251), - }, - [1695] = { - [sym_comment] = STATE(1695), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_RPAREN] = ACTIONS(1773), - [anon_sym_GT2] = ACTIONS(1771), - [anon_sym_DASH2] = ACTIONS(1773), - [anon_sym_in2] = ACTIONS(1773), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1773), - [anon_sym_STAR2] = ACTIONS(1771), - [anon_sym_and2] = ACTIONS(1773), - [anon_sym_xor2] = ACTIONS(1773), - [anon_sym_or2] = ACTIONS(1773), - [anon_sym_not_DASHin2] = ACTIONS(1773), - [anon_sym_starts_DASHwith2] = ACTIONS(1773), - [anon_sym_ends_DASHwith2] = ACTIONS(1773), - [anon_sym_EQ_EQ2] = ACTIONS(1773), - [anon_sym_BANG_EQ2] = ACTIONS(1773), - [anon_sym_LT2] = ACTIONS(1771), - [anon_sym_LT_EQ2] = ACTIONS(1773), - [anon_sym_GT_EQ2] = ACTIONS(1773), - [anon_sym_EQ_TILDE2] = ACTIONS(1773), - [anon_sym_BANG_TILDE2] = ACTIONS(1773), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_STAR_STAR2] = ACTIONS(1773), - [anon_sym_PLUS_PLUS2] = ACTIONS(1773), - [anon_sym_SLASH2] = ACTIONS(1771), - [anon_sym_mod2] = ACTIONS(1773), - [anon_sym_SLASH_SLASH2] = ACTIONS(1773), - [anon_sym_PLUS2] = ACTIONS(1771), - [anon_sym_bit_DASHshl2] = ACTIONS(1773), - [anon_sym_bit_DASHshr2] = ACTIONS(1773), - [anon_sym_bit_DASHand2] = ACTIONS(1773), - [anon_sym_bit_DASHxor2] = ACTIONS(1773), - [anon_sym_bit_DASHor2] = ACTIONS(1773), - [anon_sym_DOT_DOT2] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - }, - [1696] = { - [sym_cell_path] = STATE(2189), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1696), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1953), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1953), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1953), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(251), - }, - [1697] = { - [sym_comment] = STATE(1697), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1034), - [anon_sym_out_GT_GT] = ACTIONS(1034), - [anon_sym_e_GT_GT] = ACTIONS(1034), - [anon_sym_o_GT_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1034), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [aux_sym_unquoted_token4] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), - }, - [1698] = { - [sym_comment] = STATE(1698), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_LPAREN2] = ACTIONS(2256), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_LT] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_0b] = ACTIONS(2254), - [anon_sym_0o] = ACTIONS(2254), - [anon_sym_0x] = ACTIONS(2254), - [sym_val_date] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2258), - [sym__str_single_quotes] = ACTIONS(2258), - [sym__str_back_ticks] = ACTIONS(2258), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [aux_sym_unquoted_token1] = ACTIONS(2254), - [aux_sym_unquoted_token4] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2258), - }, - [1699] = { - [sym_comment] = STATE(1699), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_GT2] = ACTIONS(1799), - [anon_sym_DASH2] = ACTIONS(1801), - [anon_sym_in2] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_STAR2] = ACTIONS(1799), - [anon_sym_and2] = ACTIONS(1801), - [anon_sym_xor2] = ACTIONS(1801), - [anon_sym_or2] = ACTIONS(1801), - [anon_sym_not_DASHin2] = ACTIONS(1801), - [anon_sym_starts_DASHwith2] = ACTIONS(1801), - [anon_sym_ends_DASHwith2] = ACTIONS(1801), - [anon_sym_EQ_EQ2] = ACTIONS(1801), - [anon_sym_BANG_EQ2] = ACTIONS(1801), - [anon_sym_LT2] = ACTIONS(1799), - [anon_sym_LT_EQ2] = ACTIONS(1801), - [anon_sym_GT_EQ2] = ACTIONS(1801), - [anon_sym_EQ_TILDE2] = ACTIONS(1801), - [anon_sym_BANG_TILDE2] = ACTIONS(1801), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_STAR_STAR2] = ACTIONS(1801), - [anon_sym_PLUS_PLUS2] = ACTIONS(1801), - [anon_sym_SLASH2] = ACTIONS(1799), - [anon_sym_mod2] = ACTIONS(1801), - [anon_sym_SLASH_SLASH2] = ACTIONS(1801), - [anon_sym_PLUS2] = ACTIONS(1799), - [anon_sym_bit_DASHshl2] = ACTIONS(1801), - [anon_sym_bit_DASHshr2] = ACTIONS(1801), - [anon_sym_bit_DASHand2] = ACTIONS(1801), - [anon_sym_bit_DASHxor2] = ACTIONS(1801), - [anon_sym_bit_DASHor2] = ACTIONS(1801), - [anon_sym_DOT_DOT2] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - }, - [1700] = { - [sym_comment] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DASH2] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_LPAREN2] = ACTIONS(2220), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [aux_sym__val_number_token4] = ACTIONS(1034), - [aux_sym__val_number_token5] = ACTIONS(1034), - [aux_sym__val_number_token6] = ACTIONS(1034), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1034), - [anon_sym_out_GT_GT] = ACTIONS(1034), - [anon_sym_e_GT_GT] = ACTIONS(1034), - [anon_sym_o_GT_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1034), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [aux_sym_unquoted_token4] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1036), - }, - [1701] = { - [sym_comment] = STATE(1701), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_GT2] = ACTIONS(1818), - [anon_sym_DASH2] = ACTIONS(1820), - [anon_sym_in2] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_STAR2] = ACTIONS(1818), - [anon_sym_and2] = ACTIONS(1820), - [anon_sym_xor2] = ACTIONS(1820), - [anon_sym_or2] = ACTIONS(1820), - [anon_sym_not_DASHin2] = ACTIONS(1820), - [anon_sym_starts_DASHwith2] = ACTIONS(1820), - [anon_sym_ends_DASHwith2] = ACTIONS(1820), - [anon_sym_EQ_EQ2] = ACTIONS(1820), - [anon_sym_BANG_EQ2] = ACTIONS(1820), - [anon_sym_LT2] = ACTIONS(1818), - [anon_sym_LT_EQ2] = ACTIONS(1820), - [anon_sym_GT_EQ2] = ACTIONS(1820), - [anon_sym_EQ_TILDE2] = ACTIONS(1820), - [anon_sym_BANG_TILDE2] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_STAR_STAR2] = ACTIONS(1820), - [anon_sym_PLUS_PLUS2] = ACTIONS(1820), - [anon_sym_SLASH2] = ACTIONS(1818), - [anon_sym_mod2] = ACTIONS(1820), - [anon_sym_SLASH_SLASH2] = ACTIONS(1820), - [anon_sym_PLUS2] = ACTIONS(1818), - [anon_sym_bit_DASHshl2] = ACTIONS(1820), - [anon_sym_bit_DASHshr2] = ACTIONS(1820), - [anon_sym_bit_DASHand2] = ACTIONS(1820), - [anon_sym_bit_DASHxor2] = ACTIONS(1820), - [anon_sym_bit_DASHor2] = ACTIONS(1820), - [anon_sym_DOT_DOT2] = ACTIONS(1818), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - }, - [1702] = { - [sym_comment] = STATE(1702), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2254), - [anon_sym_DOT_DOT_LT] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [aux_sym__val_number_decimal_token1] = ACTIONS(2254), - [aux_sym__val_number_decimal_token2] = ACTIONS(2254), - [aux_sym__val_number_decimal_token3] = ACTIONS(2254), - [aux_sym__val_number_decimal_token4] = ACTIONS(2254), - [aux_sym__val_number_token1] = ACTIONS(2254), - [aux_sym__val_number_token2] = ACTIONS(2254), - [aux_sym__val_number_token3] = ACTIONS(2254), - [aux_sym__val_number_token4] = ACTIONS(2254), - [aux_sym__val_number_token5] = ACTIONS(2254), - [aux_sym__val_number_token6] = ACTIONS(2254), - [anon_sym_0b] = ACTIONS(2254), - [anon_sym_0o] = ACTIONS(2254), - [anon_sym_0x] = ACTIONS(2254), - [sym_val_date] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2258), - [sym__str_single_quotes] = ACTIONS(2258), - [sym__str_back_ticks] = ACTIONS(2258), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2254), - [anon_sym_out_GT] = ACTIONS(2254), - [anon_sym_e_GT] = ACTIONS(2254), - [anon_sym_o_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT] = ACTIONS(2254), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [aux_sym_unquoted_token1] = ACTIONS(2254), - [aux_sym_unquoted_token4] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2258), - }, - [1703] = { - [sym_comment] = STATE(1703), - [sym__newline] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_err_GT_PIPE] = ACTIONS(2274), - [anon_sym_out_GT_PIPE] = ACTIONS(2274), - [anon_sym_e_GT_PIPE] = ACTIONS(2274), - [anon_sym_o_GT_PIPE] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_RPAREN] = ACTIONS(2274), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2272), - [anon_sym_DOT_DOT_LT] = ACTIONS(2272), - [anon_sym_null] = ACTIONS(2272), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_0b] = ACTIONS(2272), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym__str_single_quotes] = ACTIONS(2274), - [sym__str_back_ticks] = ACTIONS(2274), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [aux_sym_unquoted_token1] = ACTIONS(2272), - [aux_sym_unquoted_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2274), - }, - [1704] = { - [sym_comment] = STATE(1704), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [aux_sym_unquoted_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2238), - }, - [1705] = { - [sym_comment] = STATE(1705), - [sym__newline] = ACTIONS(5112), - [anon_sym_SEMI] = ACTIONS(5112), - [anon_sym_PIPE] = ACTIONS(5112), - [anon_sym_err_GT_PIPE] = ACTIONS(5112), - [anon_sym_out_GT_PIPE] = ACTIONS(5112), - [anon_sym_e_GT_PIPE] = ACTIONS(5112), - [anon_sym_o_GT_PIPE] = ACTIONS(5112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5112), - [anon_sym_LBRACK] = ACTIONS(5112), - [anon_sym_LPAREN] = ACTIONS(5112), - [anon_sym_RPAREN] = ACTIONS(5112), - [anon_sym_DOLLAR] = ACTIONS(5114), - [anon_sym_DASH_DASH] = ACTIONS(5112), - [anon_sym_DASH2] = ACTIONS(5114), - [anon_sym_LBRACE] = ACTIONS(5112), - [anon_sym_RBRACE] = ACTIONS(5112), - [anon_sym_DOT_DOT] = ACTIONS(5114), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5112), - [anon_sym_DOT_DOT_LT] = ACTIONS(5112), - [anon_sym_null] = ACTIONS(5112), - [anon_sym_true] = ACTIONS(5112), - [anon_sym_false] = ACTIONS(5112), - [aux_sym__val_number_decimal_token1] = ACTIONS(5114), - [aux_sym__val_number_decimal_token2] = ACTIONS(5112), - [aux_sym__val_number_decimal_token3] = ACTIONS(5112), - [aux_sym__val_number_decimal_token4] = ACTIONS(5112), - [aux_sym__val_number_token1] = ACTIONS(5112), - [aux_sym__val_number_token2] = ACTIONS(5112), - [aux_sym__val_number_token3] = ACTIONS(5112), - [aux_sym__val_number_token4] = ACTIONS(5112), - [aux_sym__val_number_token5] = ACTIONS(5112), - [aux_sym__val_number_token6] = ACTIONS(5112), - [anon_sym_0b] = ACTIONS(5114), - [anon_sym_0o] = ACTIONS(5114), - [anon_sym_0x] = ACTIONS(5114), - [sym_val_date] = ACTIONS(5112), - [anon_sym_DQUOTE] = ACTIONS(5112), - [sym__str_single_quotes] = ACTIONS(5112), - [sym__str_back_ticks] = ACTIONS(5112), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5112), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5112), - [anon_sym_err_GT] = ACTIONS(5114), - [anon_sym_out_GT] = ACTIONS(5114), - [anon_sym_e_GT] = ACTIONS(5114), - [anon_sym_o_GT] = ACTIONS(5114), - [anon_sym_err_PLUSout_GT] = ACTIONS(5114), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5114), - [anon_sym_o_PLUSe_GT] = ACTIONS(5114), - [anon_sym_e_PLUSo_GT] = ACTIONS(5114), - [anon_sym_err_GT_GT] = ACTIONS(5112), - [anon_sym_out_GT_GT] = ACTIONS(5112), - [anon_sym_e_GT_GT] = ACTIONS(5112), - [anon_sym_o_GT_GT] = ACTIONS(5112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5112), - [anon_sym_EQ2] = ACTIONS(5116), - [aux_sym_unquoted_token1] = ACTIONS(5114), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5112), - }, - [1706] = { - [sym_comment] = STATE(1706), - [sym__newline] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_err_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_GT_PIPE] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2244), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2242), - [anon_sym_DOT_DOT_LT] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2242), - [aux_sym__val_number_decimal_token3] = ACTIONS(2242), - [aux_sym__val_number_decimal_token4] = ACTIONS(2242), - [aux_sym__val_number_token1] = ACTIONS(2242), - [aux_sym__val_number_token2] = ACTIONS(2242), - [aux_sym__val_number_token3] = ACTIONS(2242), - [aux_sym__val_number_token4] = ACTIONS(2242), - [aux_sym__val_number_token5] = ACTIONS(2242), - [aux_sym__val_number_token6] = ACTIONS(2242), - [anon_sym_0b] = ACTIONS(2242), - [anon_sym_0o] = ACTIONS(2242), - [anon_sym_0x] = ACTIONS(2242), - [sym_val_date] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym__str_single_quotes] = ACTIONS(2244), - [sym__str_back_ticks] = ACTIONS(2244), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), - [anon_sym_err_GT] = ACTIONS(2242), - [anon_sym_out_GT] = ACTIONS(2242), - [anon_sym_e_GT] = ACTIONS(2242), - [anon_sym_o_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT] = ACTIONS(2242), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), - [aux_sym_unquoted_token1] = ACTIONS(2242), - [aux_sym_unquoted_token4] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2244), - }, - [1707] = { - [sym__expr_parenthesized_immediate] = STATE(8466), - [sym_comment] = STATE(1707), - [ts_builtin_sym_end] = ACTIONS(4992), - [sym__newline] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4992), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_err_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_GT_PIPE] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_DOLLAR] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4992), - [anon_sym_DASH2] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), - [anon_sym_DOT_DOT_LT] = ACTIONS(4992), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [aux_sym__val_number_decimal_token1] = ACTIONS(4994), - [aux_sym__val_number_decimal_token2] = ACTIONS(4992), - [aux_sym__val_number_decimal_token3] = ACTIONS(4992), - [aux_sym__val_number_decimal_token4] = ACTIONS(4992), - [aux_sym__val_number_token1] = ACTIONS(4992), - [aux_sym__val_number_token2] = ACTIONS(4992), - [aux_sym__val_number_token3] = ACTIONS(4992), - [aux_sym__val_number_token4] = ACTIONS(4992), - [aux_sym__val_number_token5] = ACTIONS(4992), - [aux_sym__val_number_token6] = ACTIONS(4992), - [anon_sym_0b] = ACTIONS(4994), - [anon_sym_0o] = ACTIONS(4994), - [anon_sym_0x] = ACTIONS(4994), - [sym_val_date] = ACTIONS(4992), - [anon_sym_DQUOTE] = ACTIONS(4992), - [sym__str_single_quotes] = ACTIONS(4992), - [sym__str_back_ticks] = ACTIONS(4992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), - [anon_sym_err_GT] = ACTIONS(4994), - [anon_sym_out_GT] = ACTIONS(4994), - [anon_sym_e_GT] = ACTIONS(4994), - [anon_sym_o_GT] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT] = ACTIONS(4994), - [anon_sym_err_GT_GT] = ACTIONS(4992), - [anon_sym_out_GT_GT] = ACTIONS(4992), - [anon_sym_e_GT_GT] = ACTIONS(4992), - [anon_sym_o_GT_GT] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), - [aux_sym_unquoted_token1] = ACTIONS(4994), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4992), - }, - [1708] = { - [sym__expr_parenthesized_immediate] = STATE(8466), - [sym_comment] = STATE(1708), - [ts_builtin_sym_end] = ACTIONS(5004), - [sym__newline] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5004), - [anon_sym_PIPE] = ACTIONS(5004), - [anon_sym_err_GT_PIPE] = ACTIONS(5004), - [anon_sym_out_GT_PIPE] = ACTIONS(5004), - [anon_sym_e_GT_PIPE] = ACTIONS(5004), - [anon_sym_o_GT_PIPE] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5004), - [anon_sym_LBRACK] = ACTIONS(5004), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_DOLLAR] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5004), - [anon_sym_DASH2] = ACTIONS(5006), - [anon_sym_LBRACE] = ACTIONS(5004), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5004), - [anon_sym_DOT_DOT_LT] = ACTIONS(5004), - [anon_sym_null] = ACTIONS(5004), - [anon_sym_true] = ACTIONS(5004), - [anon_sym_false] = ACTIONS(5004), - [aux_sym__val_number_decimal_token1] = ACTIONS(5006), - [aux_sym__val_number_decimal_token2] = ACTIONS(5004), - [aux_sym__val_number_decimal_token3] = ACTIONS(5004), - [aux_sym__val_number_decimal_token4] = ACTIONS(5004), - [aux_sym__val_number_token1] = ACTIONS(5004), - [aux_sym__val_number_token2] = ACTIONS(5004), - [aux_sym__val_number_token3] = ACTIONS(5004), - [aux_sym__val_number_token4] = ACTIONS(5004), - [aux_sym__val_number_token5] = ACTIONS(5004), - [aux_sym__val_number_token6] = ACTIONS(5004), - [anon_sym_0b] = ACTIONS(5006), - [anon_sym_0o] = ACTIONS(5006), - [anon_sym_0x] = ACTIONS(5006), - [sym_val_date] = ACTIONS(5004), - [anon_sym_DQUOTE] = ACTIONS(5004), - [sym__str_single_quotes] = ACTIONS(5004), - [sym__str_back_ticks] = ACTIONS(5004), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5004), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5004), - [anon_sym_err_GT] = ACTIONS(5006), - [anon_sym_out_GT] = ACTIONS(5006), - [anon_sym_e_GT] = ACTIONS(5006), - [anon_sym_o_GT] = ACTIONS(5006), - [anon_sym_err_PLUSout_GT] = ACTIONS(5006), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5006), - [anon_sym_o_PLUSe_GT] = ACTIONS(5006), - [anon_sym_e_PLUSo_GT] = ACTIONS(5006), - [anon_sym_err_GT_GT] = ACTIONS(5004), - [anon_sym_out_GT_GT] = ACTIONS(5004), - [anon_sym_e_GT_GT] = ACTIONS(5004), - [anon_sym_o_GT_GT] = ACTIONS(5004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5004), - [aux_sym_unquoted_token1] = ACTIONS(5006), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5004), - }, - [1709] = { - [sym_comment] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(2274), - [sym__newline] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_err_GT_PIPE] = ACTIONS(2274), - [anon_sym_out_GT_PIPE] = ACTIONS(2274), - [anon_sym_e_GT_PIPE] = ACTIONS(2274), - [anon_sym_o_GT_PIPE] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2272), - [anon_sym_DASH_DASH] = ACTIONS(2272), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2272), - [anon_sym_DOT_DOT_LT] = ACTIONS(2272), - [anon_sym_null] = ACTIONS(2272), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [aux_sym__val_number_decimal_token1] = ACTIONS(2272), - [aux_sym__val_number_decimal_token2] = ACTIONS(2272), - [aux_sym__val_number_decimal_token3] = ACTIONS(2272), - [aux_sym__val_number_decimal_token4] = ACTIONS(2272), - [aux_sym__val_number_token1] = ACTIONS(2272), - [aux_sym__val_number_token2] = ACTIONS(2272), - [aux_sym__val_number_token3] = ACTIONS(2272), - [aux_sym__val_number_token4] = ACTIONS(2272), - [aux_sym__val_number_token5] = ACTIONS(2272), - [aux_sym__val_number_token6] = ACTIONS(2272), - [anon_sym_0b] = ACTIONS(2272), - [anon_sym_0o] = ACTIONS(2272), - [anon_sym_0x] = ACTIONS(2272), - [sym_val_date] = ACTIONS(2272), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym__str_single_quotes] = ACTIONS(2274), - [sym__str_back_ticks] = ACTIONS(2274), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2274), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), - [anon_sym_err_GT] = ACTIONS(2272), - [anon_sym_out_GT] = ACTIONS(2272), - [anon_sym_e_GT] = ACTIONS(2272), - [anon_sym_o_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT] = ACTIONS(2272), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [aux_sym_unquoted_token1] = ACTIONS(2272), - [aux_sym_unquoted_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2274), - }, - [1710] = { - [sym_comment] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1671), - [anon_sym_in2] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [anon_sym_DOT_DOT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1671), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1671), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [aux_sym_unquoted_token2] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(251), - }, - [1711] = { - [sym_comment] = STATE(1711), - [ts_builtin_sym_end] = ACTIONS(2238), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_DOLLAR] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2234), - [anon_sym_LPAREN2] = ACTIONS(2236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), - [anon_sym_DOT_DOT_LT] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2234), - [aux_sym__val_number_decimal_token3] = ACTIONS(2234), - [aux_sym__val_number_decimal_token4] = ACTIONS(2234), - [aux_sym__val_number_token1] = ACTIONS(2234), - [aux_sym__val_number_token2] = ACTIONS(2234), - [aux_sym__val_number_token3] = ACTIONS(2234), - [aux_sym__val_number_token4] = ACTIONS(2234), - [aux_sym__val_number_token5] = ACTIONS(2234), - [aux_sym__val_number_token6] = ACTIONS(2234), - [anon_sym_0b] = ACTIONS(2234), - [anon_sym_0o] = ACTIONS(2234), - [anon_sym_0x] = ACTIONS(2234), - [sym_val_date] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2238), - [sym__str_single_quotes] = ACTIONS(2238), - [sym__str_back_ticks] = ACTIONS(2238), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2238), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2234), - [anon_sym_out_GT] = ACTIONS(2234), - [anon_sym_e_GT] = ACTIONS(2234), - [anon_sym_o_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT] = ACTIONS(2234), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [aux_sym_unquoted_token1] = ACTIONS(2234), - [aux_sym_unquoted_token4] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2238), - }, - [1712] = { - [sym_cell_path] = STATE(2266), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1712), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_GT2] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1959), - [anon_sym_STAR2] = ACTIONS(1957), - [anon_sym_and2] = ACTIONS(1959), - [anon_sym_xor2] = ACTIONS(1959), - [anon_sym_or2] = ACTIONS(1959), - [anon_sym_not_DASHin2] = ACTIONS(1959), - [anon_sym_starts_DASHwith2] = ACTIONS(1959), - [anon_sym_ends_DASHwith2] = ACTIONS(1959), - [anon_sym_EQ_EQ2] = ACTIONS(1959), - [anon_sym_BANG_EQ2] = ACTIONS(1959), - [anon_sym_LT2] = ACTIONS(1957), - [anon_sym_LT_EQ2] = ACTIONS(1959), - [anon_sym_GT_EQ2] = ACTIONS(1959), - [anon_sym_EQ_TILDE2] = ACTIONS(1959), - [anon_sym_BANG_TILDE2] = ACTIONS(1959), - [anon_sym_STAR_STAR2] = ACTIONS(1959), - [anon_sym_PLUS_PLUS2] = ACTIONS(1959), - [anon_sym_SLASH2] = ACTIONS(1957), - [anon_sym_mod2] = ACTIONS(1959), - [anon_sym_SLASH_SLASH2] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_bit_DASHshl2] = ACTIONS(1959), - [anon_sym_bit_DASHshr2] = ACTIONS(1959), - [anon_sym_bit_DASHand2] = ACTIONS(1959), - [anon_sym_bit_DASHxor2] = ACTIONS(1959), - [anon_sym_bit_DASHor2] = ACTIONS(1959), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), - }, - [1713] = { - [sym_comment] = STATE(1713), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [1714] = { - [sym_comment] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(1663), - [sym__newline] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_err_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_GT_PIPE] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), - [anon_sym_GT2] = ACTIONS(1661), - [anon_sym_DASH2] = ACTIONS(1663), - [anon_sym_in2] = ACTIONS(1663), - [anon_sym_STAR2] = ACTIONS(1661), - [anon_sym_and2] = ACTIONS(1663), - [anon_sym_xor2] = ACTIONS(1663), - [anon_sym_or2] = ACTIONS(1663), - [anon_sym_not_DASHin2] = ACTIONS(1663), - [anon_sym_starts_DASHwith2] = ACTIONS(1663), - [anon_sym_ends_DASHwith2] = ACTIONS(1663), - [anon_sym_EQ_EQ2] = ACTIONS(1663), - [anon_sym_BANG_EQ2] = ACTIONS(1663), - [anon_sym_LT2] = ACTIONS(1661), - [anon_sym_LT_EQ2] = ACTIONS(1663), - [anon_sym_GT_EQ2] = ACTIONS(1663), - [anon_sym_EQ_TILDE2] = ACTIONS(1663), - [anon_sym_BANG_TILDE2] = ACTIONS(1663), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_STAR_STAR2] = ACTIONS(1663), - [anon_sym_PLUS_PLUS2] = ACTIONS(1663), - [anon_sym_SLASH2] = ACTIONS(1661), - [anon_sym_mod2] = ACTIONS(1663), - [anon_sym_SLASH_SLASH2] = ACTIONS(1663), - [anon_sym_PLUS2] = ACTIONS(1661), - [anon_sym_bit_DASHshl2] = ACTIONS(1663), - [anon_sym_bit_DASHshr2] = ACTIONS(1663), - [anon_sym_bit_DASHand2] = ACTIONS(1663), - [anon_sym_bit_DASHxor2] = ACTIONS(1663), - [anon_sym_bit_DASHor2] = ACTIONS(1663), - [anon_sym_DOT_DOT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1663), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1663), - [sym_filesize_unit] = ACTIONS(1661), - [sym_duration_unit] = ACTIONS(1663), - [anon_sym_err_GT] = ACTIONS(1661), - [anon_sym_out_GT] = ACTIONS(1661), - [anon_sym_e_GT] = ACTIONS(1661), - [anon_sym_o_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT] = ACTIONS(1661), - [anon_sym_err_GT_GT] = ACTIONS(1663), - [anon_sym_out_GT_GT] = ACTIONS(1663), - [anon_sym_e_GT_GT] = ACTIONS(1663), - [anon_sym_o_GT_GT] = ACTIONS(1663), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1663), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1663), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1663), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1663), - [aux_sym_unquoted_token2] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(251), - }, - [1715] = { - [sym_cell_path] = STATE(2174), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1715), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_GT2] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1947), - [anon_sym_in2] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_STAR2] = ACTIONS(1945), - [anon_sym_and2] = ACTIONS(1947), - [anon_sym_xor2] = ACTIONS(1947), - [anon_sym_or2] = ACTIONS(1947), - [anon_sym_not_DASHin2] = ACTIONS(1947), - [anon_sym_starts_DASHwith2] = ACTIONS(1947), - [anon_sym_ends_DASHwith2] = ACTIONS(1947), - [anon_sym_EQ_EQ2] = ACTIONS(1947), - [anon_sym_BANG_EQ2] = ACTIONS(1947), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LT_EQ2] = ACTIONS(1947), - [anon_sym_GT_EQ2] = ACTIONS(1947), - [anon_sym_EQ_TILDE2] = ACTIONS(1947), - [anon_sym_BANG_TILDE2] = ACTIONS(1947), - [anon_sym_STAR_STAR2] = ACTIONS(1947), - [anon_sym_PLUS_PLUS2] = ACTIONS(1947), - [anon_sym_SLASH2] = ACTIONS(1945), - [anon_sym_mod2] = ACTIONS(1947), - [anon_sym_SLASH_SLASH2] = ACTIONS(1947), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_bit_DASHshl2] = ACTIONS(1947), - [anon_sym_bit_DASHshr2] = ACTIONS(1947), - [anon_sym_bit_DASHand2] = ACTIONS(1947), - [anon_sym_bit_DASHxor2] = ACTIONS(1947), - [anon_sym_bit_DASHor2] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(251), - }, - [1716] = { - [sym_comment] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(1773), - [sym__newline] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_err_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_GT_PIPE] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_DASH2] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_LPAREN2] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), - [anon_sym_DOT_DOT_LT] = ACTIONS(1773), - [anon_sym_null] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [aux_sym__val_number_decimal_token1] = ACTIONS(1771), - [aux_sym__val_number_decimal_token2] = ACTIONS(1773), - [aux_sym__val_number_decimal_token3] = ACTIONS(1773), - [aux_sym__val_number_decimal_token4] = ACTIONS(1773), - [aux_sym__val_number_token1] = ACTIONS(1773), - [aux_sym__val_number_token2] = ACTIONS(1773), - [aux_sym__val_number_token3] = ACTIONS(1773), - [aux_sym__val_number_token4] = ACTIONS(1773), - [aux_sym__val_number_token5] = ACTIONS(1773), - [aux_sym__val_number_token6] = ACTIONS(1773), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1773), - [anon_sym_DQUOTE] = ACTIONS(1773), - [sym__str_single_quotes] = ACTIONS(1773), - [sym__str_back_ticks] = ACTIONS(1773), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), - [anon_sym_err_GT] = ACTIONS(1771), - [anon_sym_out_GT] = ACTIONS(1771), - [anon_sym_e_GT] = ACTIONS(1771), - [anon_sym_o_GT] = ACTIONS(1771), - [anon_sym_err_PLUSout_GT] = ACTIONS(1771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1771), - [anon_sym_o_PLUSe_GT] = ACTIONS(1771), - [anon_sym_e_PLUSo_GT] = ACTIONS(1771), - [anon_sym_err_GT_GT] = ACTIONS(1773), - [anon_sym_out_GT_GT] = ACTIONS(1773), - [anon_sym_e_GT_GT] = ACTIONS(1773), - [anon_sym_o_GT_GT] = ACTIONS(1773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1773), - [aux_sym_unquoted_token1] = ACTIONS(1771), - [aux_sym_unquoted_token2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1773), - }, - [1717] = { - [sym_comment] = STATE(1717), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [sym_filesize_unit] = ACTIONS(1711), - [sym_duration_unit] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token2] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - }, - [1718] = { - [sym__expr_parenthesized_immediate] = STATE(8149), - [sym_comment] = STATE(1718), - [sym__newline] = ACTIONS(5118), - [anon_sym_SEMI] = ACTIONS(5118), - [anon_sym_PIPE] = ACTIONS(5118), - [anon_sym_err_GT_PIPE] = ACTIONS(5118), - [anon_sym_out_GT_PIPE] = ACTIONS(5118), - [anon_sym_e_GT_PIPE] = ACTIONS(5118), - [anon_sym_o_GT_PIPE] = ACTIONS(5118), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5118), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5118), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5118), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5118), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5120), - [anon_sym_RPAREN] = ACTIONS(5118), - [anon_sym_DOLLAR] = ACTIONS(5120), - [anon_sym_DASH_DASH] = ACTIONS(5118), - [anon_sym_DASH2] = ACTIONS(5120), - [anon_sym_LBRACE] = ACTIONS(5118), - [anon_sym_DOT_DOT] = ACTIONS(5120), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5118), - [anon_sym_DOT_DOT_LT] = ACTIONS(5118), - [anon_sym_null] = ACTIONS(5118), - [anon_sym_true] = ACTIONS(5118), - [anon_sym_false] = ACTIONS(5118), - [aux_sym__val_number_decimal_token1] = ACTIONS(5120), - [aux_sym__val_number_decimal_token2] = ACTIONS(5118), - [aux_sym__val_number_decimal_token3] = ACTIONS(5118), - [aux_sym__val_number_decimal_token4] = ACTIONS(5118), - [aux_sym__val_number_token1] = ACTIONS(5118), - [aux_sym__val_number_token2] = ACTIONS(5118), - [aux_sym__val_number_token3] = ACTIONS(5118), - [aux_sym__val_number_token4] = ACTIONS(5118), - [aux_sym__val_number_token5] = ACTIONS(5118), - [aux_sym__val_number_token6] = ACTIONS(5118), - [anon_sym_0b] = ACTIONS(5120), - [anon_sym_0o] = ACTIONS(5120), - [anon_sym_0x] = ACTIONS(5120), - [sym_val_date] = ACTIONS(5118), - [anon_sym_DQUOTE] = ACTIONS(5118), - [sym__str_single_quotes] = ACTIONS(5118), - [sym__str_back_ticks] = ACTIONS(5118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5118), - [anon_sym_err_GT] = ACTIONS(5120), - [anon_sym_out_GT] = ACTIONS(5120), - [anon_sym_e_GT] = ACTIONS(5120), - [anon_sym_o_GT] = ACTIONS(5120), - [anon_sym_err_PLUSout_GT] = ACTIONS(5120), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5120), - [anon_sym_o_PLUSe_GT] = ACTIONS(5120), - [anon_sym_e_PLUSo_GT] = ACTIONS(5120), - [anon_sym_err_GT_GT] = ACTIONS(5118), - [anon_sym_out_GT_GT] = ACTIONS(5118), - [anon_sym_e_GT_GT] = ACTIONS(5118), - [anon_sym_o_GT_GT] = ACTIONS(5118), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5118), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5118), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5118), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5118), - [aux_sym_unquoted_token1] = ACTIONS(5120), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5118), - }, - [1719] = { - [sym_comment] = STATE(1719), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_RPAREN] = ACTIONS(1781), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [anon_sym_DASH2] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [aux_sym__val_number_decimal_token1] = ACTIONS(1779), - [aux_sym__val_number_decimal_token2] = ACTIONS(1781), - [aux_sym__val_number_decimal_token3] = ACTIONS(1781), - [aux_sym__val_number_decimal_token4] = ACTIONS(1781), - [aux_sym__val_number_token1] = ACTIONS(1781), - [aux_sym__val_number_token2] = ACTIONS(1781), - [aux_sym__val_number_token3] = ACTIONS(1781), - [aux_sym__val_number_token4] = ACTIONS(1781), - [aux_sym__val_number_token5] = ACTIONS(1781), - [aux_sym__val_number_token6] = ACTIONS(1781), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [sym__str_single_quotes] = ACTIONS(1781), - [sym__str_back_ticks] = ACTIONS(1781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token1] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1781), - }, - [1720] = { - [sym_comment] = STATE(1720), - [ts_builtin_sym_end] = ACTIONS(1848), - [sym__newline] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_err_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_GT_PIPE] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_DASH2] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1848), - [anon_sym_DOT_DOT_LT] = ACTIONS(1848), - [anon_sym_null] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [aux_sym__val_number_token4] = ACTIONS(1848), - [aux_sym__val_number_token5] = ACTIONS(1848), - [aux_sym__val_number_token6] = ACTIONS(1848), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1840), - [anon_sym_0x] = ACTIONS(1840), - [sym_val_date] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1848), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1840), - [anon_sym_out_GT] = ACTIONS(1840), - [anon_sym_e_GT] = ACTIONS(1840), - [anon_sym_o_GT] = ACTIONS(1840), - [anon_sym_err_PLUSout_GT] = ACTIONS(1840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), - [anon_sym_o_PLUSe_GT] = ACTIONS(1840), - [anon_sym_e_PLUSo_GT] = ACTIONS(1840), - [anon_sym_err_GT_GT] = ACTIONS(1848), - [anon_sym_out_GT_GT] = ACTIONS(1848), - [anon_sym_e_GT_GT] = ACTIONS(1848), - [anon_sym_o_GT_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1848), - [aux_sym_unquoted_token1] = ACTIONS(1840), - [aux_sym_unquoted_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1848), - }, - [1721] = { - [sym_comment] = STATE(1721), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [aux_sym__immediate_decimal_token2] = ACTIONS(5122), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), - }, - [1722] = { - [sym_comment] = STATE(1722), - [ts_builtin_sym_end] = ACTIONS(1769), - [sym__newline] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_err_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_GT_PIPE] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1769), - [anon_sym_GT2] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1769), - [anon_sym_in2] = ACTIONS(1769), - [anon_sym_STAR2] = ACTIONS(1767), - [anon_sym_and2] = ACTIONS(1769), - [anon_sym_xor2] = ACTIONS(1769), - [anon_sym_or2] = ACTIONS(1769), - [anon_sym_not_DASHin2] = ACTIONS(1769), - [anon_sym_starts_DASHwith2] = ACTIONS(1769), - [anon_sym_ends_DASHwith2] = ACTIONS(1769), - [anon_sym_EQ_EQ2] = ACTIONS(1769), - [anon_sym_BANG_EQ2] = ACTIONS(1769), - [anon_sym_LT2] = ACTIONS(1767), - [anon_sym_LT_EQ2] = ACTIONS(1769), - [anon_sym_GT_EQ2] = ACTIONS(1769), - [anon_sym_EQ_TILDE2] = ACTIONS(1769), - [anon_sym_BANG_TILDE2] = ACTIONS(1769), - [anon_sym_LPAREN2] = ACTIONS(1769), - [anon_sym_STAR_STAR2] = ACTIONS(1769), - [anon_sym_PLUS_PLUS2] = ACTIONS(1769), - [anon_sym_SLASH2] = ACTIONS(1767), - [anon_sym_mod2] = ACTIONS(1769), - [anon_sym_SLASH_SLASH2] = ACTIONS(1769), - [anon_sym_PLUS2] = ACTIONS(1767), - [anon_sym_bit_DASHshl2] = ACTIONS(1769), - [anon_sym_bit_DASHshr2] = ACTIONS(1769), - [anon_sym_bit_DASHand2] = ACTIONS(1769), - [anon_sym_bit_DASHxor2] = ACTIONS(1769), - [anon_sym_bit_DASHor2] = ACTIONS(1769), - [anon_sym_DOT_DOT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1769), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1769), - [sym_filesize_unit] = ACTIONS(1767), - [sym_duration_unit] = ACTIONS(1769), - [anon_sym_err_GT] = ACTIONS(1767), - [anon_sym_out_GT] = ACTIONS(1767), - [anon_sym_e_GT] = ACTIONS(1767), - [anon_sym_o_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT] = ACTIONS(1767), - [anon_sym_err_GT_GT] = ACTIONS(1769), - [anon_sym_out_GT_GT] = ACTIONS(1769), - [anon_sym_e_GT_GT] = ACTIONS(1769), - [anon_sym_o_GT_GT] = ACTIONS(1769), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1769), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1769), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1769), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1769), - [aux_sym_unquoted_token2] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - }, - [1723] = { - [sym_comment] = STATE(1723), - [ts_builtin_sym_end] = ACTIONS(1820), - [sym__newline] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_err_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_GT_PIPE] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_DASH2] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1820), - [anon_sym_DOT_DOT_LT] = ACTIONS(1820), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym__val_number_decimal_token1] = ACTIONS(1818), - [aux_sym__val_number_decimal_token2] = ACTIONS(1820), - [aux_sym__val_number_decimal_token3] = ACTIONS(1820), - [aux_sym__val_number_decimal_token4] = ACTIONS(1820), - [aux_sym__val_number_token1] = ACTIONS(1820), - [aux_sym__val_number_token2] = ACTIONS(1820), - [aux_sym__val_number_token3] = ACTIONS(1820), - [aux_sym__val_number_token4] = ACTIONS(1820), - [aux_sym__val_number_token5] = ACTIONS(1820), - [aux_sym__val_number_token6] = ACTIONS(1820), - [anon_sym_0b] = ACTIONS(1818), - [anon_sym_0o] = ACTIONS(1818), - [anon_sym_0x] = ACTIONS(1818), - [sym_val_date] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym__str_single_quotes] = ACTIONS(1820), - [sym__str_back_ticks] = ACTIONS(1820), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1820), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1820), - [anon_sym_err_GT] = ACTIONS(1818), - [anon_sym_out_GT] = ACTIONS(1818), - [anon_sym_e_GT] = ACTIONS(1818), - [anon_sym_o_GT] = ACTIONS(1818), - [anon_sym_err_PLUSout_GT] = ACTIONS(1818), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), - [anon_sym_o_PLUSe_GT] = ACTIONS(1818), - [anon_sym_e_PLUSo_GT] = ACTIONS(1818), - [anon_sym_err_GT_GT] = ACTIONS(1820), - [anon_sym_out_GT_GT] = ACTIONS(1820), - [anon_sym_e_GT_GT] = ACTIONS(1820), - [anon_sym_o_GT_GT] = ACTIONS(1820), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1820), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1820), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1820), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1820), - [aux_sym_unquoted_token1] = ACTIONS(1818), - [aux_sym_unquoted_token2] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1820), - }, - [1724] = { - [sym_comment] = STATE(1724), - [sym__newline] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_err_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_GT_PIPE] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_GT2] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1002), - [anon_sym_in2] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR2] = ACTIONS(1000), - [anon_sym_QMARK2] = ACTIONS(1002), - [anon_sym_and2] = ACTIONS(1002), - [anon_sym_xor2] = ACTIONS(1002), - [anon_sym_or2] = ACTIONS(1002), - [anon_sym_not_DASHin2] = ACTIONS(1002), - [anon_sym_starts_DASHwith2] = ACTIONS(1002), - [anon_sym_ends_DASHwith2] = ACTIONS(1002), - [anon_sym_EQ_EQ2] = ACTIONS(1002), - [anon_sym_BANG_EQ2] = ACTIONS(1002), - [anon_sym_LT2] = ACTIONS(1000), - [anon_sym_LT_EQ2] = ACTIONS(1002), - [anon_sym_GT_EQ2] = ACTIONS(1002), - [anon_sym_EQ_TILDE2] = ACTIONS(1002), - [anon_sym_BANG_TILDE2] = ACTIONS(1002), - [anon_sym_STAR_STAR2] = ACTIONS(1002), - [anon_sym_PLUS_PLUS2] = ACTIONS(1002), - [anon_sym_SLASH2] = ACTIONS(1000), - [anon_sym_mod2] = ACTIONS(1002), - [anon_sym_SLASH_SLASH2] = ACTIONS(1002), - [anon_sym_PLUS2] = ACTIONS(1000), - [anon_sym_bit_DASHshl2] = ACTIONS(1002), - [anon_sym_bit_DASHshr2] = ACTIONS(1002), - [anon_sym_bit_DASHand2] = ACTIONS(1002), - [anon_sym_bit_DASHxor2] = ACTIONS(1002), - [anon_sym_bit_DASHor2] = ACTIONS(1002), - [anon_sym_DOT_DOT2] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1002), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1002), - [anon_sym_err_GT] = ACTIONS(1000), - [anon_sym_out_GT] = ACTIONS(1000), - [anon_sym_e_GT] = ACTIONS(1000), - [anon_sym_o_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT] = ACTIONS(1000), - [anon_sym_err_GT_GT] = ACTIONS(1002), - [anon_sym_out_GT_GT] = ACTIONS(1002), - [anon_sym_e_GT_GT] = ACTIONS(1002), - [anon_sym_o_GT_GT] = ACTIONS(1002), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(251), - }, - [1725] = { - [sym_comment] = STATE(1725), - [sym__newline] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_err_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_GT_PIPE] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1006), - [anon_sym_in2] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_QMARK2] = ACTIONS(1006), - [anon_sym_and2] = ACTIONS(1006), - [anon_sym_xor2] = ACTIONS(1006), - [anon_sym_or2] = ACTIONS(1006), - [anon_sym_not_DASHin2] = ACTIONS(1006), - [anon_sym_starts_DASHwith2] = ACTIONS(1006), - [anon_sym_ends_DASHwith2] = ACTIONS(1006), - [anon_sym_EQ_EQ2] = ACTIONS(1006), - [anon_sym_BANG_EQ2] = ACTIONS(1006), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1006), - [anon_sym_GT_EQ2] = ACTIONS(1006), - [anon_sym_EQ_TILDE2] = ACTIONS(1006), - [anon_sym_BANG_TILDE2] = ACTIONS(1006), - [anon_sym_STAR_STAR2] = ACTIONS(1006), - [anon_sym_PLUS_PLUS2] = ACTIONS(1006), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1006), - [anon_sym_SLASH_SLASH2] = ACTIONS(1006), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1006), - [anon_sym_bit_DASHshr2] = ACTIONS(1006), - [anon_sym_bit_DASHand2] = ACTIONS(1006), - [anon_sym_bit_DASHxor2] = ACTIONS(1006), - [anon_sym_bit_DASHor2] = ACTIONS(1006), - [anon_sym_DOT_DOT2] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1006), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1006), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1006), - [anon_sym_out_GT_GT] = ACTIONS(1006), - [anon_sym_e_GT_GT] = ACTIONS(1006), - [anon_sym_o_GT_GT] = ACTIONS(1006), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1006), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1006), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1006), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(251), - }, - [1726] = { - [sym_comment] = STATE(1726), - [sym__newline] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_err_GT_PIPE] = ACTIONS(998), - [anon_sym_out_GT_PIPE] = ACTIONS(998), - [anon_sym_e_GT_PIPE] = ACTIONS(998), - [anon_sym_o_GT_PIPE] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_QMARK2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(998), - [anon_sym_xor2] = ACTIONS(998), - [anon_sym_or2] = ACTIONS(998), - [anon_sym_not_DASHin2] = ACTIONS(998), - [anon_sym_starts_DASHwith2] = ACTIONS(998), - [anon_sym_ends_DASHwith2] = ACTIONS(998), - [anon_sym_EQ_EQ2] = ACTIONS(998), - [anon_sym_BANG_EQ2] = ACTIONS(998), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(998), - [anon_sym_GT_EQ2] = ACTIONS(998), - [anon_sym_EQ_TILDE2] = ACTIONS(998), - [anon_sym_BANG_TILDE2] = ACTIONS(998), - [anon_sym_STAR_STAR2] = ACTIONS(998), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(998), - [anon_sym_SLASH_SLASH2] = ACTIONS(998), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(998), - [anon_sym_bit_DASHshr2] = ACTIONS(998), - [anon_sym_bit_DASHand2] = ACTIONS(998), - [anon_sym_bit_DASHxor2] = ACTIONS(998), - [anon_sym_bit_DASHor2] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(998), - [anon_sym_DOT_DOT_LT2] = ACTIONS(998), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(251), - }, - [1727] = { - [sym_comment] = STATE(1727), - [sym__newline] = ACTIONS(5124), - [anon_sym_SEMI] = ACTIONS(5124), - [anon_sym_PIPE] = ACTIONS(5124), - [anon_sym_err_GT_PIPE] = ACTIONS(5124), - [anon_sym_out_GT_PIPE] = ACTIONS(5124), - [anon_sym_e_GT_PIPE] = ACTIONS(5124), - [anon_sym_o_GT_PIPE] = ACTIONS(5124), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5124), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5124), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5124), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5124), - [anon_sym_LBRACK] = ACTIONS(5124), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_RPAREN] = ACTIONS(5124), - [anon_sym_DOLLAR] = ACTIONS(5126), - [anon_sym_DASH_DASH] = ACTIONS(5124), - [anon_sym_DASH2] = ACTIONS(5126), - [anon_sym_LBRACE] = ACTIONS(5124), - [anon_sym_RBRACE] = ACTIONS(5124), - [anon_sym_DOT_DOT] = ACTIONS(5126), - [anon_sym_LPAREN2] = ACTIONS(5124), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5124), - [anon_sym_DOT_DOT_LT] = ACTIONS(5124), - [anon_sym_null] = ACTIONS(5124), - [anon_sym_true] = ACTIONS(5124), - [anon_sym_false] = ACTIONS(5124), - [aux_sym__val_number_decimal_token1] = ACTIONS(5126), - [aux_sym__val_number_decimal_token2] = ACTIONS(5124), - [aux_sym__val_number_decimal_token3] = ACTIONS(5124), - [aux_sym__val_number_decimal_token4] = ACTIONS(5124), - [aux_sym__val_number_token1] = ACTIONS(5124), - [aux_sym__val_number_token2] = ACTIONS(5124), - [aux_sym__val_number_token3] = ACTIONS(5124), - [aux_sym__val_number_token4] = ACTIONS(5124), - [aux_sym__val_number_token5] = ACTIONS(5124), - [aux_sym__val_number_token6] = ACTIONS(5124), - [anon_sym_0b] = ACTIONS(5126), - [anon_sym_0o] = ACTIONS(5126), - [anon_sym_0x] = ACTIONS(5126), - [sym_val_date] = ACTIONS(5124), - [anon_sym_DQUOTE] = ACTIONS(5124), - [sym__str_single_quotes] = ACTIONS(5124), - [sym__str_back_ticks] = ACTIONS(5124), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5124), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5124), - [anon_sym_err_GT] = ACTIONS(5126), - [anon_sym_out_GT] = ACTIONS(5126), - [anon_sym_e_GT] = ACTIONS(5126), - [anon_sym_o_GT] = ACTIONS(5126), - [anon_sym_err_PLUSout_GT] = ACTIONS(5126), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5126), - [anon_sym_o_PLUSe_GT] = ACTIONS(5126), - [anon_sym_e_PLUSo_GT] = ACTIONS(5126), - [anon_sym_err_GT_GT] = ACTIONS(5124), - [anon_sym_out_GT_GT] = ACTIONS(5124), - [anon_sym_e_GT_GT] = ACTIONS(5124), - [anon_sym_o_GT_GT] = ACTIONS(5124), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5124), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5124), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5124), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5124), - [aux_sym_unquoted_token1] = ACTIONS(5126), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5124), - }, - [1728] = { - [sym_cell_path] = STATE(2171), - [sym_path] = STATE(2088), - [sym_comment] = STATE(1728), - [aux_sym_cell_path_repeat1] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(971), - [sym__newline] = ACTIONS(971), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_err_GT_PIPE] = ACTIONS(971), - [anon_sym_out_GT_PIPE] = ACTIONS(971), - [anon_sym_e_GT_PIPE] = ACTIONS(971), - [anon_sym_o_GT_PIPE] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(971), - [anon_sym_GT2] = ACTIONS(969), - [anon_sym_DASH2] = ACTIONS(971), - [anon_sym_in2] = ACTIONS(971), - [anon_sym_STAR2] = ACTIONS(969), - [anon_sym_and2] = ACTIONS(971), - [anon_sym_xor2] = ACTIONS(971), - [anon_sym_or2] = ACTIONS(971), - [anon_sym_not_DASHin2] = ACTIONS(971), - [anon_sym_starts_DASHwith2] = ACTIONS(971), - [anon_sym_ends_DASHwith2] = ACTIONS(971), - [anon_sym_EQ_EQ2] = ACTIONS(971), - [anon_sym_BANG_EQ2] = ACTIONS(971), - [anon_sym_LT2] = ACTIONS(969), - [anon_sym_LT_EQ2] = ACTIONS(971), - [anon_sym_GT_EQ2] = ACTIONS(971), - [anon_sym_EQ_TILDE2] = ACTIONS(971), - [anon_sym_BANG_TILDE2] = ACTIONS(971), - [anon_sym_STAR_STAR2] = ACTIONS(971), - [anon_sym_PLUS_PLUS2] = ACTIONS(971), - [anon_sym_SLASH2] = ACTIONS(969), - [anon_sym_mod2] = ACTIONS(971), - [anon_sym_SLASH_SLASH2] = ACTIONS(971), - [anon_sym_PLUS2] = ACTIONS(969), - [anon_sym_bit_DASHshl2] = ACTIONS(971), - [anon_sym_bit_DASHshr2] = ACTIONS(971), - [anon_sym_bit_DASHand2] = ACTIONS(971), - [anon_sym_bit_DASHxor2] = ACTIONS(971), - [anon_sym_bit_DASHor2] = ACTIONS(971), - [anon_sym_DOT_DOT2] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(971), - [anon_sym_err_GT] = ACTIONS(969), - [anon_sym_out_GT] = ACTIONS(969), - [anon_sym_e_GT] = ACTIONS(969), - [anon_sym_o_GT] = ACTIONS(969), - [anon_sym_err_PLUSout_GT] = ACTIONS(969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(969), - [anon_sym_o_PLUSe_GT] = ACTIONS(969), - [anon_sym_e_PLUSo_GT] = ACTIONS(969), - [anon_sym_err_GT_GT] = ACTIONS(971), - [anon_sym_out_GT_GT] = ACTIONS(971), - [anon_sym_e_GT_GT] = ACTIONS(971), - [anon_sym_o_GT_GT] = ACTIONS(971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(251), - }, - [1729] = { - [sym_comment] = STATE(1729), - [sym__newline] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_err_GT_PIPE] = ACTIONS(988), - [anon_sym_out_GT_PIPE] = ACTIONS(988), - [anon_sym_e_GT_PIPE] = ACTIONS(988), - [anon_sym_o_GT_PIPE] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_GT2] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_STAR2] = ACTIONS(986), - [anon_sym_QMARK2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(988), - [anon_sym_xor2] = ACTIONS(988), - [anon_sym_or2] = ACTIONS(988), - [anon_sym_not_DASHin2] = ACTIONS(988), - [anon_sym_starts_DASHwith2] = ACTIONS(988), - [anon_sym_ends_DASHwith2] = ACTIONS(988), - [anon_sym_EQ_EQ2] = ACTIONS(988), - [anon_sym_BANG_EQ2] = ACTIONS(988), - [anon_sym_LT2] = ACTIONS(986), - [anon_sym_LT_EQ2] = ACTIONS(988), - [anon_sym_GT_EQ2] = ACTIONS(988), - [anon_sym_EQ_TILDE2] = ACTIONS(988), - [anon_sym_BANG_TILDE2] = ACTIONS(988), - [anon_sym_STAR_STAR2] = ACTIONS(988), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(986), - [anon_sym_mod2] = ACTIONS(988), - [anon_sym_SLASH_SLASH2] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_bit_DASHshl2] = ACTIONS(988), - [anon_sym_bit_DASHshr2] = ACTIONS(988), - [anon_sym_bit_DASHand2] = ACTIONS(988), - [anon_sym_bit_DASHxor2] = ACTIONS(988), - [anon_sym_bit_DASHor2] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(988), - [anon_sym_DOT_DOT_LT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(986), - [anon_sym_out_GT] = ACTIONS(986), - [anon_sym_e_GT] = ACTIONS(986), - [anon_sym_o_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT] = ACTIONS(986), - [anon_sym_err_GT_GT] = ACTIONS(988), - [anon_sym_out_GT_GT] = ACTIONS(988), - [anon_sym_e_GT_GT] = ACTIONS(988), - [anon_sym_o_GT_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - }, - [1730] = { - [sym__expr_parenthesized_immediate] = STATE(8466), - [sym_comment] = STATE(1730), - [ts_builtin_sym_end] = ACTIONS(5063), - [sym__newline] = ACTIONS(5063), - [anon_sym_SEMI] = ACTIONS(5063), - [anon_sym_PIPE] = ACTIONS(5063), - [anon_sym_err_GT_PIPE] = ACTIONS(5063), - [anon_sym_out_GT_PIPE] = ACTIONS(5063), - [anon_sym_e_GT_PIPE] = ACTIONS(5063), - [anon_sym_o_GT_PIPE] = ACTIONS(5063), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5063), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5063), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5063), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_LPAREN] = ACTIONS(5065), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5063), - [anon_sym_DASH2] = ACTIONS(5065), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5063), - [anon_sym_DOT_DOT_LT] = ACTIONS(5063), - [anon_sym_null] = ACTIONS(5063), - [anon_sym_true] = ACTIONS(5063), - [anon_sym_false] = ACTIONS(5063), - [aux_sym__val_number_decimal_token1] = ACTIONS(5065), - [aux_sym__val_number_decimal_token2] = ACTIONS(5063), - [aux_sym__val_number_decimal_token3] = ACTIONS(5063), - [aux_sym__val_number_decimal_token4] = ACTIONS(5063), - [aux_sym__val_number_token1] = ACTIONS(5063), - [aux_sym__val_number_token2] = ACTIONS(5063), - [aux_sym__val_number_token3] = ACTIONS(5063), - [aux_sym__val_number_token4] = ACTIONS(5063), - [aux_sym__val_number_token5] = ACTIONS(5063), - [aux_sym__val_number_token6] = ACTIONS(5063), - [anon_sym_0b] = ACTIONS(5065), - [anon_sym_0o] = ACTIONS(5065), - [anon_sym_0x] = ACTIONS(5065), - [sym_val_date] = ACTIONS(5063), - [anon_sym_DQUOTE] = ACTIONS(5063), - [sym__str_single_quotes] = ACTIONS(5063), - [sym__str_back_ticks] = ACTIONS(5063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5063), - [anon_sym_err_GT] = ACTIONS(5065), - [anon_sym_out_GT] = ACTIONS(5065), - [anon_sym_e_GT] = ACTIONS(5065), - [anon_sym_o_GT] = ACTIONS(5065), - [anon_sym_err_PLUSout_GT] = ACTIONS(5065), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5065), - [anon_sym_o_PLUSe_GT] = ACTIONS(5065), - [anon_sym_e_PLUSo_GT] = ACTIONS(5065), - [anon_sym_err_GT_GT] = ACTIONS(5063), - [anon_sym_out_GT_GT] = ACTIONS(5063), - [anon_sym_e_GT_GT] = ACTIONS(5063), - [anon_sym_o_GT_GT] = ACTIONS(5063), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5063), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5063), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5063), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5063), - [aux_sym_unquoted_token1] = ACTIONS(5065), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5063), - }, - [1731] = { - [sym_comment] = STATE(1731), - [sym__newline] = ACTIONS(5130), - [anon_sym_SEMI] = ACTIONS(5130), - [anon_sym_PIPE] = ACTIONS(5130), - [anon_sym_err_GT_PIPE] = ACTIONS(5130), - [anon_sym_out_GT_PIPE] = ACTIONS(5130), - [anon_sym_e_GT_PIPE] = ACTIONS(5130), - [anon_sym_o_GT_PIPE] = ACTIONS(5130), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5130), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5130), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5130), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5130), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_RPAREN] = ACTIONS(5130), - [anon_sym_DOLLAR] = ACTIONS(5132), - [anon_sym_DASH_DASH] = ACTIONS(5130), - [anon_sym_DASH2] = ACTIONS(5132), - [anon_sym_LBRACE] = ACTIONS(5130), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_DOT_DOT] = ACTIONS(5132), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5130), - [anon_sym_DOT_DOT_LT] = ACTIONS(5130), - [anon_sym_null] = ACTIONS(5130), - [anon_sym_true] = ACTIONS(5130), - [anon_sym_false] = ACTIONS(5130), - [aux_sym__val_number_decimal_token1] = ACTIONS(5132), - [aux_sym__val_number_decimal_token2] = ACTIONS(5130), - [aux_sym__val_number_decimal_token3] = ACTIONS(5130), - [aux_sym__val_number_decimal_token4] = ACTIONS(5130), - [aux_sym__val_number_token1] = ACTIONS(5130), - [aux_sym__val_number_token2] = ACTIONS(5130), - [aux_sym__val_number_token3] = ACTIONS(5130), - [aux_sym__val_number_token4] = ACTIONS(5130), - [aux_sym__val_number_token5] = ACTIONS(5130), - [aux_sym__val_number_token6] = ACTIONS(5130), - [anon_sym_0b] = ACTIONS(5132), - [anon_sym_0o] = ACTIONS(5132), - [anon_sym_0x] = ACTIONS(5132), - [sym_val_date] = ACTIONS(5130), - [anon_sym_DQUOTE] = ACTIONS(5130), - [sym__str_single_quotes] = ACTIONS(5130), - [sym__str_back_ticks] = ACTIONS(5130), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5130), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5130), - [anon_sym_err_GT] = ACTIONS(5132), - [anon_sym_out_GT] = ACTIONS(5132), - [anon_sym_e_GT] = ACTIONS(5132), - [anon_sym_o_GT] = ACTIONS(5132), - [anon_sym_err_PLUSout_GT] = ACTIONS(5132), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5132), - [anon_sym_o_PLUSe_GT] = ACTIONS(5132), - [anon_sym_e_PLUSo_GT] = ACTIONS(5132), - [anon_sym_err_GT_GT] = ACTIONS(5130), - [anon_sym_out_GT_GT] = ACTIONS(5130), - [anon_sym_e_GT_GT] = ACTIONS(5130), - [anon_sym_o_GT_GT] = ACTIONS(5130), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5130), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5130), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5130), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5130), - [anon_sym_EQ2] = ACTIONS(5134), - [aux_sym_unquoted_token1] = ACTIONS(5132), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5130), - }, - [1732] = { - [sym_comment] = STATE(1732), - [sym__newline] = ACTIONS(5136), - [anon_sym_SEMI] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5136), - [anon_sym_err_GT_PIPE] = ACTIONS(5136), - [anon_sym_out_GT_PIPE] = ACTIONS(5136), - [anon_sym_e_GT_PIPE] = ACTIONS(5136), - [anon_sym_o_GT_PIPE] = ACTIONS(5136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5136), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5136), - [anon_sym_DOLLAR] = ACTIONS(5138), - [anon_sym_DASH_DASH] = ACTIONS(5136), - [anon_sym_DASH2] = ACTIONS(5138), - [anon_sym_LBRACE] = ACTIONS(5136), - [anon_sym_RBRACE] = ACTIONS(5136), - [anon_sym_DOT_DOT] = ACTIONS(5138), - [anon_sym_LPAREN2] = ACTIONS(5136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5136), - [anon_sym_DOT_DOT_LT] = ACTIONS(5136), - [anon_sym_null] = ACTIONS(5136), - [anon_sym_true] = ACTIONS(5136), - [anon_sym_false] = ACTIONS(5136), - [aux_sym__val_number_decimal_token1] = ACTIONS(5138), - [aux_sym__val_number_decimal_token2] = ACTIONS(5136), - [aux_sym__val_number_decimal_token3] = ACTIONS(5136), - [aux_sym__val_number_decimal_token4] = ACTIONS(5136), - [aux_sym__val_number_token1] = ACTIONS(5136), - [aux_sym__val_number_token2] = ACTIONS(5136), - [aux_sym__val_number_token3] = ACTIONS(5136), - [aux_sym__val_number_token4] = ACTIONS(5136), - [aux_sym__val_number_token5] = ACTIONS(5136), - [aux_sym__val_number_token6] = ACTIONS(5136), - [anon_sym_0b] = ACTIONS(5138), - [anon_sym_0o] = ACTIONS(5138), - [anon_sym_0x] = ACTIONS(5138), - [sym_val_date] = ACTIONS(5136), - [anon_sym_DQUOTE] = ACTIONS(5136), - [sym__str_single_quotes] = ACTIONS(5136), - [sym__str_back_ticks] = ACTIONS(5136), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5136), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5136), - [anon_sym_err_GT] = ACTIONS(5138), - [anon_sym_out_GT] = ACTIONS(5138), - [anon_sym_e_GT] = ACTIONS(5138), - [anon_sym_o_GT] = ACTIONS(5138), - [anon_sym_err_PLUSout_GT] = ACTIONS(5138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5138), - [anon_sym_o_PLUSe_GT] = ACTIONS(5138), - [anon_sym_e_PLUSo_GT] = ACTIONS(5138), - [anon_sym_err_GT_GT] = ACTIONS(5136), - [anon_sym_out_GT_GT] = ACTIONS(5136), - [anon_sym_e_GT_GT] = ACTIONS(5136), - [anon_sym_o_GT_GT] = ACTIONS(5136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5136), - [aux_sym_unquoted_token1] = ACTIONS(5138), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(5136), - }, - [1733] = { - [sym_path] = STATE(1898), - [sym_comment] = STATE(1733), - [aux_sym_cell_path_repeat1] = STATE(1741), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_EQ_GT] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - }, - [1734] = { - [sym_comment] = STATE(1734), - [sym__newline] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_err_GT_PIPE] = ACTIONS(2308), - [anon_sym_out_GT_PIPE] = ACTIONS(2308), - [anon_sym_e_GT_PIPE] = ACTIONS(2308), - [anon_sym_o_GT_PIPE] = ACTIONS(2308), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2308), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2308), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2308), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_RPAREN] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(2304), - [anon_sym_DASH_DASH] = ACTIONS(2308), - [anon_sym_DASH2] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_DOT_DOT] = ACTIONS(2304), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2308), - [anon_sym_DOT_DOT_LT] = ACTIONS(2308), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [aux_sym__val_number_decimal_token1] = ACTIONS(2304), - [aux_sym__val_number_decimal_token2] = ACTIONS(2308), - [aux_sym__val_number_decimal_token3] = ACTIONS(2308), - [aux_sym__val_number_decimal_token4] = ACTIONS(2308), - [aux_sym__val_number_token1] = ACTIONS(2308), - [aux_sym__val_number_token2] = ACTIONS(2308), - [aux_sym__val_number_token3] = ACTIONS(2308), - [aux_sym__val_number_token4] = ACTIONS(2308), - [aux_sym__val_number_token5] = ACTIONS(2308), - [aux_sym__val_number_token6] = ACTIONS(2308), - [anon_sym_0b] = ACTIONS(2304), - [anon_sym_0o] = ACTIONS(2304), - [anon_sym_0x] = ACTIONS(2304), - [anon_sym_LBRACK2] = ACTIONS(5140), - [sym_val_date] = ACTIONS(2308), - [anon_sym_DQUOTE] = ACTIONS(2308), - [sym__str_single_quotes] = ACTIONS(2308), - [sym__str_back_ticks] = ACTIONS(2308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2308), - [anon_sym_err_GT] = ACTIONS(2304), - [anon_sym_out_GT] = ACTIONS(2304), - [anon_sym_e_GT] = ACTIONS(2304), - [anon_sym_o_GT] = ACTIONS(2304), - [anon_sym_err_PLUSout_GT] = ACTIONS(2304), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2304), - [anon_sym_o_PLUSe_GT] = ACTIONS(2304), - [anon_sym_e_PLUSo_GT] = ACTIONS(2304), - [anon_sym_err_GT_GT] = ACTIONS(2308), - [anon_sym_out_GT_GT] = ACTIONS(2308), - [anon_sym_e_GT_GT] = ACTIONS(2308), - [anon_sym_o_GT_GT] = ACTIONS(2308), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2308), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2308), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2308), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2308), - [aux_sym_unquoted_token1] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2308), - }, - [1735] = { - [sym__expr_parenthesized_immediate] = STATE(8466), - [sym_comment] = STATE(1735), - [ts_builtin_sym_end] = ACTIONS(4986), - [sym__newline] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4986), - [anon_sym_err_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_GT_PIPE] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_DOLLAR] = ACTIONS(4988), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_DASH2] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4988), - [anon_sym_LPAREN2] = ACTIONS(4149), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4986), - [anon_sym_DOT_DOT_LT] = ACTIONS(4986), - [anon_sym_null] = ACTIONS(4986), - [anon_sym_true] = ACTIONS(4986), - [anon_sym_false] = ACTIONS(4986), - [aux_sym__val_number_decimal_token1] = ACTIONS(4988), - [aux_sym__val_number_decimal_token2] = ACTIONS(4986), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4986), - [aux_sym__val_number_token1] = ACTIONS(4986), - [aux_sym__val_number_token2] = ACTIONS(4986), - [aux_sym__val_number_token3] = ACTIONS(4986), - [aux_sym__val_number_token4] = ACTIONS(4986), - [aux_sym__val_number_token5] = ACTIONS(4986), - [aux_sym__val_number_token6] = ACTIONS(4986), - [anon_sym_0b] = ACTIONS(4988), - [anon_sym_0o] = ACTIONS(4988), - [anon_sym_0x] = ACTIONS(4988), - [sym_val_date] = ACTIONS(4986), - [anon_sym_DQUOTE] = ACTIONS(4986), - [sym__str_single_quotes] = ACTIONS(4986), - [sym__str_back_ticks] = ACTIONS(4986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4986), - [anon_sym_err_GT] = ACTIONS(4988), - [anon_sym_out_GT] = ACTIONS(4988), - [anon_sym_e_GT] = ACTIONS(4988), - [anon_sym_o_GT] = ACTIONS(4988), - [anon_sym_err_PLUSout_GT] = ACTIONS(4988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4988), - [anon_sym_o_PLUSe_GT] = ACTIONS(4988), - [anon_sym_e_PLUSo_GT] = ACTIONS(4988), - [anon_sym_err_GT_GT] = ACTIONS(4986), - [anon_sym_out_GT_GT] = ACTIONS(4986), - [anon_sym_e_GT_GT] = ACTIONS(4986), - [anon_sym_o_GT_GT] = ACTIONS(4986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4986), - [aux_sym_unquoted_token1] = ACTIONS(4988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4986), - }, - [1736] = { - [sym_cell_path] = STATE(1738), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1736), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_EQ_GT] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1757), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1757), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1757), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(251), - }, - [1737] = { - [sym_cell_path] = STATE(2202), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1737), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_GT2] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1951), - [anon_sym_in2] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_STAR2] = ACTIONS(1949), - [anon_sym_and2] = ACTIONS(1951), - [anon_sym_xor2] = ACTIONS(1951), - [anon_sym_or2] = ACTIONS(1951), - [anon_sym_not_DASHin2] = ACTIONS(1951), - [anon_sym_starts_DASHwith2] = ACTIONS(1951), - [anon_sym_ends_DASHwith2] = ACTIONS(1951), - [anon_sym_EQ_EQ2] = ACTIONS(1951), - [anon_sym_BANG_EQ2] = ACTIONS(1951), - [anon_sym_LT2] = ACTIONS(1949), - [anon_sym_LT_EQ2] = ACTIONS(1951), - [anon_sym_GT_EQ2] = ACTIONS(1951), - [anon_sym_EQ_TILDE2] = ACTIONS(1951), - [anon_sym_BANG_TILDE2] = ACTIONS(1951), - [anon_sym_STAR_STAR2] = ACTIONS(1951), - [anon_sym_PLUS_PLUS2] = ACTIONS(1951), - [anon_sym_SLASH2] = ACTIONS(1949), - [anon_sym_mod2] = ACTIONS(1951), - [anon_sym_SLASH_SLASH2] = ACTIONS(1951), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_bit_DASHshl2] = ACTIONS(1951), - [anon_sym_bit_DASHshr2] = ACTIONS(1951), - [anon_sym_bit_DASHand2] = ACTIONS(1951), - [anon_sym_bit_DASHxor2] = ACTIONS(1951), - [anon_sym_bit_DASHor2] = ACTIONS(1951), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [anon_sym_POUND] = ACTIONS(251), - }, - [1738] = { - [sym_comment] = STATE(1738), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_EQ_GT] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - }, - [1739] = { - [sym_cell_path] = STATE(1742), - [sym_path] = STATE(1898), - [sym_comment] = STATE(1739), - [aux_sym_cell_path_repeat1] = STATE(1733), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_EQ_GT] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - }, - [1740] = { - [sym_comment] = STATE(1740), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2082), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_in2] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2082), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2082), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2082), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2082), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_DOT_DOT2] = ACTIONS(2082), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2082), - [anon_sym_out_GT] = ACTIONS(2082), - [anon_sym_e_GT] = ACTIONS(2082), - [anon_sym_o_GT] = ACTIONS(2082), - [anon_sym_err_PLUSout_GT] = ACTIONS(2082), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2082), - [anon_sym_o_PLUSe_GT] = ACTIONS(2082), - [anon_sym_e_PLUSo_GT] = ACTIONS(2082), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(251), - }, - [1741] = { - [sym_path] = STATE(1898), - [sym_comment] = STATE(1741), - [aux_sym_cell_path_repeat1] = STATE(1741), - [sym__newline] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(977), - [anon_sym_in2] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_EQ_GT] = ACTIONS(977), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(977), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(977), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(5142), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), - }, - [1742] = { - [sym_comment] = STATE(1742), - [sym__newline] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_err_GT_PIPE] = ACTIONS(2125), - [anon_sym_out_GT_PIPE] = ACTIONS(2125), - [anon_sym_e_GT_PIPE] = ACTIONS(2125), - [anon_sym_o_GT_PIPE] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2125), - [anon_sym_RPAREN] = ACTIONS(2125), - [anon_sym_GT2] = ACTIONS(2123), - [anon_sym_DASH2] = ACTIONS(2125), - [anon_sym_in2] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_EQ_GT] = ACTIONS(2125), - [anon_sym_STAR2] = ACTIONS(2123), - [anon_sym_and2] = ACTIONS(2125), - [anon_sym_xor2] = ACTIONS(2125), - [anon_sym_or2] = ACTIONS(2125), - [anon_sym_not_DASHin2] = ACTIONS(2125), - [anon_sym_starts_DASHwith2] = ACTIONS(2125), - [anon_sym_ends_DASHwith2] = ACTIONS(2125), - [anon_sym_EQ_EQ2] = ACTIONS(2125), - [anon_sym_BANG_EQ2] = ACTIONS(2125), - [anon_sym_LT2] = ACTIONS(2123), - [anon_sym_LT_EQ2] = ACTIONS(2125), - [anon_sym_GT_EQ2] = ACTIONS(2125), - [anon_sym_EQ_TILDE2] = ACTIONS(2125), - [anon_sym_BANG_TILDE2] = ACTIONS(2125), - [anon_sym_STAR_STAR2] = ACTIONS(2125), - [anon_sym_PLUS_PLUS2] = ACTIONS(2125), - [anon_sym_SLASH2] = ACTIONS(2123), - [anon_sym_mod2] = ACTIONS(2125), - [anon_sym_SLASH_SLASH2] = ACTIONS(2125), - [anon_sym_PLUS2] = ACTIONS(2123), - [anon_sym_bit_DASHshl2] = ACTIONS(2125), - [anon_sym_bit_DASHshr2] = ACTIONS(2125), - [anon_sym_bit_DASHand2] = ACTIONS(2125), - [anon_sym_bit_DASHxor2] = ACTIONS(2125), - [anon_sym_bit_DASHor2] = ACTIONS(2125), - [anon_sym_DOT_DOT2] = ACTIONS(2123), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2125), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2125), - [anon_sym_err_GT] = ACTIONS(2123), - [anon_sym_out_GT] = ACTIONS(2123), - [anon_sym_e_GT] = ACTIONS(2123), - [anon_sym_o_GT] = ACTIONS(2123), - [anon_sym_err_PLUSout_GT] = ACTIONS(2123), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2123), - [anon_sym_o_PLUSe_GT] = ACTIONS(2123), - [anon_sym_e_PLUSo_GT] = ACTIONS(2123), - [anon_sym_err_GT_GT] = ACTIONS(2125), - [anon_sym_out_GT_GT] = ACTIONS(2125), - [anon_sym_e_GT_GT] = ACTIONS(2125), - [anon_sym_o_GT_GT] = ACTIONS(2125), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2125), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2125), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2125), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(251), - }, - [1743] = { - [sym_cell_path] = STATE(2214), - [sym_path] = STATE(2088), - [sym_comment] = STATE(1743), - [aux_sym_cell_path_repeat1] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(1761), - [sym__newline] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_err_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_GT_PIPE] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1761), - [anon_sym_GT2] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1761), - [anon_sym_in2] = ACTIONS(1761), - [anon_sym_STAR2] = ACTIONS(1757), - [anon_sym_and2] = ACTIONS(1761), - [anon_sym_xor2] = ACTIONS(1761), - [anon_sym_or2] = ACTIONS(1761), - [anon_sym_not_DASHin2] = ACTIONS(1761), - [anon_sym_starts_DASHwith2] = ACTIONS(1761), - [anon_sym_ends_DASHwith2] = ACTIONS(1761), - [anon_sym_EQ_EQ2] = ACTIONS(1761), - [anon_sym_BANG_EQ2] = ACTIONS(1761), - [anon_sym_LT2] = ACTIONS(1757), - [anon_sym_LT_EQ2] = ACTIONS(1761), - [anon_sym_GT_EQ2] = ACTIONS(1761), - [anon_sym_EQ_TILDE2] = ACTIONS(1761), - [anon_sym_BANG_TILDE2] = ACTIONS(1761), - [anon_sym_STAR_STAR2] = ACTIONS(1761), - [anon_sym_PLUS_PLUS2] = ACTIONS(1761), - [anon_sym_SLASH2] = ACTIONS(1757), - [anon_sym_mod2] = ACTIONS(1761), - [anon_sym_SLASH_SLASH2] = ACTIONS(1761), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_bit_DASHshl2] = ACTIONS(1761), - [anon_sym_bit_DASHshr2] = ACTIONS(1761), - [anon_sym_bit_DASHand2] = ACTIONS(1761), - [anon_sym_bit_DASHxor2] = ACTIONS(1761), - [anon_sym_bit_DASHor2] = ACTIONS(1761), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1761), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1761), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1761), - [anon_sym_out_GT_GT] = ACTIONS(1761), - [anon_sym_e_GT_GT] = ACTIONS(1761), - [anon_sym_o_GT_GT] = ACTIONS(1761), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1761), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1761), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1761), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(251), - }, - [1744] = { - [sym_comment] = STATE(1744), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_in2] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_DOT_DOT2] = ACTIONS(2086), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2088), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(251), - }, - [1745] = { - [sym_comment] = STATE(1745), - [sym__newline] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_err_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_GT_PIPE] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [anon_sym_DOLLAR] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_DASH2] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1699), - [anon_sym_DOT_DOT_LT] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [aux_sym__val_number_decimal_token1] = ACTIONS(1687), - [aux_sym__val_number_decimal_token2] = ACTIONS(1699), - [aux_sym__val_number_decimal_token3] = ACTIONS(1699), - [aux_sym__val_number_decimal_token4] = ACTIONS(1699), - [aux_sym__val_number_token1] = ACTIONS(1699), - [aux_sym__val_number_token2] = ACTIONS(1699), - [aux_sym__val_number_token3] = ACTIONS(1699), - [aux_sym__val_number_token4] = ACTIONS(1699), - [aux_sym__val_number_token5] = ACTIONS(1699), - [aux_sym__val_number_token6] = ACTIONS(1699), - [anon_sym_0b] = ACTIONS(1687), - [anon_sym_0o] = ACTIONS(1687), - [anon_sym_0x] = ACTIONS(1687), - [sym_val_date] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym__str_single_quotes] = ACTIONS(1699), - [sym__str_back_ticks] = ACTIONS(1699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1699), - [anon_sym_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(1699), - [anon_sym_out_GT_GT] = ACTIONS(1699), - [anon_sym_e_GT_GT] = ACTIONS(1699), - [anon_sym_o_GT_GT] = ACTIONS(1699), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1699), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1699), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1699), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1699), - [aux_sym_unquoted_token1] = ACTIONS(1687), - [aux_sym_unquoted_token2] = ACTIONS(4159), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1699), - }, - [1746] = { - [sym_comment] = STATE(1746), - [ts_builtin_sym_end] = ACTIONS(1010), - [sym__newline] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_err_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_GT_PIPE] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1010), - [anon_sym_DASH2] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_QMARK2] = ACTIONS(5145), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_DOT_DOT_LT] = ACTIONS(1010), - [anon_sym_null] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [aux_sym__val_number_decimal_token1] = ACTIONS(1008), - [aux_sym__val_number_decimal_token2] = ACTIONS(1010), - [aux_sym__val_number_decimal_token3] = ACTIONS(1010), - [aux_sym__val_number_decimal_token4] = ACTIONS(1010), - [aux_sym__val_number_token1] = ACTIONS(1010), - [aux_sym__val_number_token2] = ACTIONS(1010), - [aux_sym__val_number_token3] = ACTIONS(1010), - [aux_sym__val_number_token4] = ACTIONS(1010), - [aux_sym__val_number_token5] = ACTIONS(1010), - [aux_sym__val_number_token6] = ACTIONS(1010), - [anon_sym_0b] = ACTIONS(1008), - [anon_sym_0o] = ACTIONS(1008), - [anon_sym_0x] = ACTIONS(1008), - [sym_val_date] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1010), - [sym__str_single_quotes] = ACTIONS(1010), - [sym__str_back_ticks] = ACTIONS(1010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1010), - [anon_sym_err_GT] = ACTIONS(1008), - [anon_sym_out_GT] = ACTIONS(1008), - [anon_sym_e_GT] = ACTIONS(1008), - [anon_sym_o_GT] = ACTIONS(1008), - [anon_sym_err_PLUSout_GT] = ACTIONS(1008), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1008), - [anon_sym_o_PLUSe_GT] = ACTIONS(1008), - [anon_sym_e_PLUSo_GT] = ACTIONS(1008), - [anon_sym_err_GT_GT] = ACTIONS(1010), - [anon_sym_out_GT_GT] = ACTIONS(1010), - [anon_sym_e_GT_GT] = ACTIONS(1010), - [anon_sym_o_GT_GT] = ACTIONS(1010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), - [aux_sym_unquoted_token1] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1010), - }, - [1747] = { - [sym_comment] = STATE(1747), - [ts_builtin_sym_end] = ACTIONS(992), - [sym__newline] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_err_GT_PIPE] = ACTIONS(992), - [anon_sym_out_GT_PIPE] = ACTIONS(992), - [anon_sym_e_GT_PIPE] = ACTIONS(992), - [anon_sym_o_GT_PIPE] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_QMARK2] = ACTIONS(5147), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_DOT_DOT_LT] = ACTIONS(992), - [anon_sym_null] = ACTIONS(992), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(990), - [aux_sym__val_number_decimal_token2] = ACTIONS(992), - [aux_sym__val_number_decimal_token3] = ACTIONS(992), - [aux_sym__val_number_decimal_token4] = ACTIONS(992), - [aux_sym__val_number_token1] = ACTIONS(992), - [aux_sym__val_number_token2] = ACTIONS(992), - [aux_sym__val_number_token3] = ACTIONS(992), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_0b] = ACTIONS(990), - [anon_sym_0o] = ACTIONS(990), - [anon_sym_0x] = ACTIONS(990), - [sym_val_date] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym__str_single_quotes] = ACTIONS(992), - [sym__str_back_ticks] = ACTIONS(992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(990), - [anon_sym_out_GT] = ACTIONS(990), - [anon_sym_e_GT] = ACTIONS(990), - [anon_sym_o_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT] = ACTIONS(990), - [anon_sym_err_GT_GT] = ACTIONS(992), - [anon_sym_out_GT_GT] = ACTIONS(992), - [anon_sym_e_GT_GT] = ACTIONS(992), - [anon_sym_o_GT_GT] = ACTIONS(992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(992), - [aux_sym_unquoted_token1] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(992), - }, - [1748] = { - [sym_cmd_identifier] = STATE(4413), - [sym__command_name] = STATE(7081), - [sym_scope_pattern] = STATE(7124), - [sym_wild_card] = STATE(7145), - [sym_command_list] = STATE(7149), - [sym__val_number_decimal] = STATE(4002), - [sym_val_string] = STATE(4433), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_comment] = STATE(1748), - [aux_sym_cmd_identifier_token1] = ACTIONS(5149), - [aux_sym_cmd_identifier_token2] = ACTIONS(5151), - [aux_sym_cmd_identifier_token3] = ACTIONS(5151), - [aux_sym_cmd_identifier_token4] = ACTIONS(5151), - [aux_sym_cmd_identifier_token5] = ACTIONS(5151), - [aux_sym_cmd_identifier_token6] = ACTIONS(5151), - [aux_sym_cmd_identifier_token7] = ACTIONS(5151), - [aux_sym_cmd_identifier_token8] = ACTIONS(5151), - [aux_sym_cmd_identifier_token9] = ACTIONS(5149), - [aux_sym_cmd_identifier_token10] = ACTIONS(5151), - [aux_sym_cmd_identifier_token11] = ACTIONS(5151), - [aux_sym_cmd_identifier_token12] = ACTIONS(5151), - [aux_sym_cmd_identifier_token13] = ACTIONS(5149), - [aux_sym_cmd_identifier_token14] = ACTIONS(5151), - [aux_sym_cmd_identifier_token15] = ACTIONS(5149), - [aux_sym_cmd_identifier_token16] = ACTIONS(5151), - [aux_sym_cmd_identifier_token17] = ACTIONS(5151), - [aux_sym_cmd_identifier_token18] = ACTIONS(5151), - [aux_sym_cmd_identifier_token19] = ACTIONS(5151), - [aux_sym_cmd_identifier_token20] = ACTIONS(5151), - [aux_sym_cmd_identifier_token21] = ACTIONS(5151), - [aux_sym_cmd_identifier_token22] = ACTIONS(5151), - [aux_sym_cmd_identifier_token23] = ACTIONS(5151), - [aux_sym_cmd_identifier_token24] = ACTIONS(5151), - [aux_sym_cmd_identifier_token25] = ACTIONS(5151), - [aux_sym_cmd_identifier_token26] = ACTIONS(5151), - [aux_sym_cmd_identifier_token27] = ACTIONS(5151), - [aux_sym_cmd_identifier_token28] = ACTIONS(5151), - [aux_sym_cmd_identifier_token29] = ACTIONS(5151), - [aux_sym_cmd_identifier_token30] = ACTIONS(5151), - [aux_sym_cmd_identifier_token31] = ACTIONS(5151), - [aux_sym_cmd_identifier_token32] = ACTIONS(5151), - [aux_sym_cmd_identifier_token33] = ACTIONS(5151), - [aux_sym_cmd_identifier_token34] = ACTIONS(5149), - [aux_sym_cmd_identifier_token35] = ACTIONS(5151), - [aux_sym_cmd_identifier_token36] = ACTIONS(5151), - [aux_sym_cmd_identifier_token37] = ACTIONS(5151), - [aux_sym_cmd_identifier_token38] = ACTIONS(5149), - [aux_sym_cmd_identifier_token39] = ACTIONS(5151), - [aux_sym_cmd_identifier_token40] = ACTIONS(5151), - [sym__newline] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_RBRACE] = ACTIONS(5153), - [anon_sym_STAR2] = ACTIONS(5157), - [aux_sym__val_number_decimal_token1] = ACTIONS(5159), - [aux_sym__val_number_decimal_token2] = ACTIONS(5159), - [aux_sym__val_number_decimal_token3] = ACTIONS(5161), - [aux_sym__val_number_decimal_token4] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), - }, - [1749] = { - [sym_comment] = STATE(1749), - [ts_builtin_sym_end] = ACTIONS(1781), - [sym__newline] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_err_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_GT_PIPE] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1781), - [anon_sym_GT2] = ACTIONS(1779), - [anon_sym_DASH2] = ACTIONS(1781), - [anon_sym_in2] = ACTIONS(1781), - [anon_sym_STAR2] = ACTIONS(1779), - [anon_sym_and2] = ACTIONS(1781), - [anon_sym_xor2] = ACTIONS(1781), - [anon_sym_or2] = ACTIONS(1781), - [anon_sym_not_DASHin2] = ACTIONS(1781), - [anon_sym_starts_DASHwith2] = ACTIONS(1781), - [anon_sym_ends_DASHwith2] = ACTIONS(1781), - [anon_sym_EQ_EQ2] = ACTIONS(1781), - [anon_sym_BANG_EQ2] = ACTIONS(1781), - [anon_sym_LT2] = ACTIONS(1779), - [anon_sym_LT_EQ2] = ACTIONS(1781), - [anon_sym_GT_EQ2] = ACTIONS(1781), - [anon_sym_EQ_TILDE2] = ACTIONS(1781), - [anon_sym_BANG_TILDE2] = ACTIONS(1781), - [anon_sym_LPAREN2] = ACTIONS(1781), - [anon_sym_STAR_STAR2] = ACTIONS(1781), - [anon_sym_PLUS_PLUS2] = ACTIONS(1781), - [anon_sym_SLASH2] = ACTIONS(1779), - [anon_sym_mod2] = ACTIONS(1781), - [anon_sym_SLASH_SLASH2] = ACTIONS(1781), - [anon_sym_PLUS2] = ACTIONS(1779), - [anon_sym_bit_DASHshl2] = ACTIONS(1781), - [anon_sym_bit_DASHshr2] = ACTIONS(1781), - [anon_sym_bit_DASHand2] = ACTIONS(1781), - [anon_sym_bit_DASHxor2] = ACTIONS(1781), - [anon_sym_bit_DASHor2] = ACTIONS(1781), - [anon_sym_DOT_DOT2] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1781), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1781), - [aux_sym__immediate_decimal_token2] = ACTIONS(5167), - [anon_sym_err_GT] = ACTIONS(1779), - [anon_sym_out_GT] = ACTIONS(1779), - [anon_sym_e_GT] = ACTIONS(1779), - [anon_sym_o_GT] = ACTIONS(1779), - [anon_sym_err_PLUSout_GT] = ACTIONS(1779), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1779), - [anon_sym_o_PLUSe_GT] = ACTIONS(1779), - [anon_sym_e_PLUSo_GT] = ACTIONS(1779), - [anon_sym_err_GT_GT] = ACTIONS(1781), - [anon_sym_out_GT_GT] = ACTIONS(1781), - [anon_sym_e_GT_GT] = ACTIONS(1781), - [anon_sym_o_GT_GT] = ACTIONS(1781), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1781), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1781), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1781), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1781), - [aux_sym_unquoted_token2] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(251), - }, - [1750] = { - [sym_path] = STATE(1971), - [sym_comment] = STATE(1750), - [aux_sym_cell_path_repeat1] = STATE(1752), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(4990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [aux_sym_record_entry_token1] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - }, - [1751] = { - [sym_cmd_identifier] = STATE(4413), - [sym__command_name] = STATE(7081), - [sym_scope_pattern] = STATE(6861), - [sym_wild_card] = STATE(7145), - [sym_command_list] = STATE(7149), - [sym__val_number_decimal] = STATE(4002), - [sym_val_string] = STATE(4433), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_comment] = STATE(1751), - [aux_sym_cmd_identifier_token1] = ACTIONS(5149), - [aux_sym_cmd_identifier_token2] = ACTIONS(5151), - [aux_sym_cmd_identifier_token3] = ACTIONS(5151), - [aux_sym_cmd_identifier_token4] = ACTIONS(5151), - [aux_sym_cmd_identifier_token5] = ACTIONS(5151), - [aux_sym_cmd_identifier_token6] = ACTIONS(5151), - [aux_sym_cmd_identifier_token7] = ACTIONS(5151), - [aux_sym_cmd_identifier_token8] = ACTIONS(5151), - [aux_sym_cmd_identifier_token9] = ACTIONS(5149), - [aux_sym_cmd_identifier_token10] = ACTIONS(5151), - [aux_sym_cmd_identifier_token11] = ACTIONS(5151), - [aux_sym_cmd_identifier_token12] = ACTIONS(5151), - [aux_sym_cmd_identifier_token13] = ACTIONS(5149), - [aux_sym_cmd_identifier_token14] = ACTIONS(5151), - [aux_sym_cmd_identifier_token15] = ACTIONS(5149), - [aux_sym_cmd_identifier_token16] = ACTIONS(5151), - [aux_sym_cmd_identifier_token17] = ACTIONS(5151), - [aux_sym_cmd_identifier_token18] = ACTIONS(5151), - [aux_sym_cmd_identifier_token19] = ACTIONS(5151), - [aux_sym_cmd_identifier_token20] = ACTIONS(5151), - [aux_sym_cmd_identifier_token21] = ACTIONS(5151), - [aux_sym_cmd_identifier_token22] = ACTIONS(5151), - [aux_sym_cmd_identifier_token23] = ACTIONS(5151), - [aux_sym_cmd_identifier_token24] = ACTIONS(5151), - [aux_sym_cmd_identifier_token25] = ACTIONS(5151), - [aux_sym_cmd_identifier_token26] = ACTIONS(5151), - [aux_sym_cmd_identifier_token27] = ACTIONS(5151), - [aux_sym_cmd_identifier_token28] = ACTIONS(5151), - [aux_sym_cmd_identifier_token29] = ACTIONS(5151), - [aux_sym_cmd_identifier_token30] = ACTIONS(5151), - [aux_sym_cmd_identifier_token31] = ACTIONS(5151), - [aux_sym_cmd_identifier_token32] = ACTIONS(5151), - [aux_sym_cmd_identifier_token33] = ACTIONS(5151), - [aux_sym_cmd_identifier_token34] = ACTIONS(5149), - [aux_sym_cmd_identifier_token35] = ACTIONS(5151), - [aux_sym_cmd_identifier_token36] = ACTIONS(5151), - [aux_sym_cmd_identifier_token37] = ACTIONS(5151), - [aux_sym_cmd_identifier_token38] = ACTIONS(5149), - [aux_sym_cmd_identifier_token39] = ACTIONS(5151), - [aux_sym_cmd_identifier_token40] = ACTIONS(5151), - [sym__newline] = ACTIONS(5169), - [anon_sym_SEMI] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [anon_sym_STAR2] = ACTIONS(5157), - [aux_sym__val_number_decimal_token1] = ACTIONS(5159), - [aux_sym__val_number_decimal_token2] = ACTIONS(5159), - [aux_sym__val_number_decimal_token3] = ACTIONS(5161), - [aux_sym__val_number_decimal_token4] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), - }, - [1752] = { - [sym_path] = STATE(1971), - [sym_comment] = STATE(1752), - [aux_sym_cell_path_repeat1] = STATE(1752), - [sym__newline] = ACTIONS(975), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_err_GT_PIPE] = ACTIONS(977), - [anon_sym_out_GT_PIPE] = ACTIONS(977), - [anon_sym_e_GT_PIPE] = ACTIONS(977), - [anon_sym_o_GT_PIPE] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(977), - [anon_sym_GT2] = ACTIONS(975), - [anon_sym_DASH2] = ACTIONS(977), - [anon_sym_in2] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_STAR2] = ACTIONS(975), - [anon_sym_and2] = ACTIONS(977), - [anon_sym_xor2] = ACTIONS(977), - [anon_sym_or2] = ACTIONS(977), - [anon_sym_not_DASHin2] = ACTIONS(977), - [anon_sym_starts_DASHwith2] = ACTIONS(977), - [anon_sym_ends_DASHwith2] = ACTIONS(977), - [anon_sym_EQ_EQ2] = ACTIONS(977), - [anon_sym_BANG_EQ2] = ACTIONS(977), - [anon_sym_LT2] = ACTIONS(975), - [anon_sym_LT_EQ2] = ACTIONS(977), - [anon_sym_GT_EQ2] = ACTIONS(977), - [anon_sym_EQ_TILDE2] = ACTIONS(977), - [anon_sym_BANG_TILDE2] = ACTIONS(977), - [anon_sym_STAR_STAR2] = ACTIONS(977), - [anon_sym_PLUS_PLUS2] = ACTIONS(977), - [anon_sym_SLASH2] = ACTIONS(975), - [anon_sym_mod2] = ACTIONS(977), - [anon_sym_SLASH_SLASH2] = ACTIONS(977), - [anon_sym_PLUS2] = ACTIONS(975), - [anon_sym_bit_DASHshl2] = ACTIONS(977), - [anon_sym_bit_DASHshr2] = ACTIONS(977), - [anon_sym_bit_DASHand2] = ACTIONS(977), - [anon_sym_bit_DASHxor2] = ACTIONS(977), - [anon_sym_bit_DASHor2] = ACTIONS(977), - [anon_sym_DOT_DOT2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(5171), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(977), - [anon_sym_DOT_DOT_LT2] = ACTIONS(977), - [aux_sym_record_entry_token1] = ACTIONS(977), - [anon_sym_err_GT] = ACTIONS(975), - [anon_sym_out_GT] = ACTIONS(975), - [anon_sym_e_GT] = ACTIONS(975), - [anon_sym_o_GT] = ACTIONS(975), - [anon_sym_err_PLUSout_GT] = ACTIONS(975), - [anon_sym_out_PLUSerr_GT] = ACTIONS(975), - [anon_sym_o_PLUSe_GT] = ACTIONS(975), - [anon_sym_e_PLUSo_GT] = ACTIONS(975), - [anon_sym_err_GT_GT] = ACTIONS(977), - [anon_sym_out_GT_GT] = ACTIONS(977), - [anon_sym_e_GT_GT] = ACTIONS(977), - [anon_sym_o_GT_GT] = ACTIONS(977), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(977), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(977), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(977), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(977), - [anon_sym_POUND] = ACTIONS(251), - }, - [1753] = { - [sym_cmd_identifier] = STATE(4413), - [sym__command_name] = STATE(7081), - [sym_scope_pattern] = STATE(6699), - [sym_wild_card] = STATE(7145), - [sym_command_list] = STATE(7149), - [sym__val_number_decimal] = STATE(4002), - [sym_val_string] = STATE(4433), - [sym__raw_str] = STATE(4608), - [sym__str_double_quotes] = STATE(4608), - [sym_comment] = STATE(1753), - [aux_sym_cmd_identifier_token1] = ACTIONS(5149), - [aux_sym_cmd_identifier_token2] = ACTIONS(5151), - [aux_sym_cmd_identifier_token3] = ACTIONS(5151), - [aux_sym_cmd_identifier_token4] = ACTIONS(5151), - [aux_sym_cmd_identifier_token5] = ACTIONS(5151), - [aux_sym_cmd_identifier_token6] = ACTIONS(5151), - [aux_sym_cmd_identifier_token7] = ACTIONS(5151), - [aux_sym_cmd_identifier_token8] = ACTIONS(5151), - [aux_sym_cmd_identifier_token9] = ACTIONS(5149), - [aux_sym_cmd_identifier_token10] = ACTIONS(5151), - [aux_sym_cmd_identifier_token11] = ACTIONS(5151), - [aux_sym_cmd_identifier_token12] = ACTIONS(5151), - [aux_sym_cmd_identifier_token13] = ACTIONS(5149), - [aux_sym_cmd_identifier_token14] = ACTIONS(5151), - [aux_sym_cmd_identifier_token15] = ACTIONS(5149), - [aux_sym_cmd_identifier_token16] = ACTIONS(5151), - [aux_sym_cmd_identifier_token17] = ACTIONS(5151), - [aux_sym_cmd_identifier_token18] = ACTIONS(5151), - [aux_sym_cmd_identifier_token19] = ACTIONS(5151), - [aux_sym_cmd_identifier_token20] = ACTIONS(5151), - [aux_sym_cmd_identifier_token21] = ACTIONS(5151), - [aux_sym_cmd_identifier_token22] = ACTIONS(5151), - [aux_sym_cmd_identifier_token23] = ACTIONS(5151), - [aux_sym_cmd_identifier_token24] = ACTIONS(5151), - [aux_sym_cmd_identifier_token25] = ACTIONS(5151), - [aux_sym_cmd_identifier_token26] = ACTIONS(5151), - [aux_sym_cmd_identifier_token27] = ACTIONS(5151), - [aux_sym_cmd_identifier_token28] = ACTIONS(5151), - [aux_sym_cmd_identifier_token29] = ACTIONS(5151), - [aux_sym_cmd_identifier_token30] = ACTIONS(5151), - [aux_sym_cmd_identifier_token31] = ACTIONS(5151), - [aux_sym_cmd_identifier_token32] = ACTIONS(5151), - [aux_sym_cmd_identifier_token33] = ACTIONS(5151), - [aux_sym_cmd_identifier_token34] = ACTIONS(5149), - [aux_sym_cmd_identifier_token35] = ACTIONS(5151), - [aux_sym_cmd_identifier_token36] = ACTIONS(5151), - [aux_sym_cmd_identifier_token37] = ACTIONS(5151), - [aux_sym_cmd_identifier_token38] = ACTIONS(5149), - [aux_sym_cmd_identifier_token39] = ACTIONS(5151), - [aux_sym_cmd_identifier_token40] = ACTIONS(5151), - [sym__newline] = ACTIONS(5174), - [anon_sym_SEMI] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_RPAREN] = ACTIONS(5174), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_STAR2] = ACTIONS(5157), - [aux_sym__val_number_decimal_token1] = ACTIONS(5159), - [aux_sym__val_number_decimal_token2] = ACTIONS(5159), - [aux_sym__val_number_decimal_token3] = ACTIONS(5161), - [aux_sym__val_number_decimal_token4] = ACTIONS(5163), - [anon_sym_DQUOTE] = ACTIONS(3913), - [sym__str_single_quotes] = ACTIONS(3915), - [sym__str_back_ticks] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3917), - }, - [1754] = { - [sym_comment] = STATE(1754), - [ts_builtin_sym_end] = ACTIONS(2244), - [sym__newline] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_err_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_GT_PIPE] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_DOLLAR] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_LPAREN2] = ACTIONS(2244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2242), - [anon_sym_DOT_DOT_LT] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [aux_sym__val_number_decimal_token1] = ACTIONS(2242), - [aux_sym__val_number_decimal_token2] = ACTIONS(2242), - [aux_sym__val_number_decimal_token3] = ACTIONS(2242), - [aux_sym__val_number_decimal_token4] = ACTIONS(2242), - [aux_sym__val_number_token1] = ACTIONS(2242), - [aux_sym__val_number_token2] = ACTIONS(2242), - [aux_sym__val_number_token3] = ACTIONS(2242), - [aux_sym__val_number_token4] = ACTIONS(2242), - [aux_sym__val_number_token5] = ACTIONS(2242), - [aux_sym__val_number_token6] = ACTIONS(2242), - [anon_sym_0b] = ACTIONS(2242), - [anon_sym_0o] = ACTIONS(2242), - [anon_sym_0x] = ACTIONS(2242), - [sym_val_date] = ACTIONS(2242), - [anon_sym_DQUOTE] = ACTIONS(2244), - [sym__str_single_quotes] = ACTIONS(2244), - [sym__str_back_ticks] = ACTIONS(2244), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), - [anon_sym_err_GT] = ACTIONS(2242), - [anon_sym_out_GT] = ACTIONS(2242), - [anon_sym_e_GT] = ACTIONS(2242), - [anon_sym_o_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT] = ACTIONS(2242), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), - [aux_sym_unquoted_token1] = ACTIONS(2242), - [aux_sym_unquoted_token4] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2244), - }, - [1755] = { - [sym_comment] = STATE(1755), - [ts_builtin_sym_end] = ACTIONS(1838), - [sym__newline] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_err_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_GT_PIPE] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_DASH2] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), - [anon_sym_DOT_DOT_LT] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1830), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [aux_sym__val_number_token4] = ACTIONS(1838), - [aux_sym__val_number_token5] = ACTIONS(1838), - [aux_sym__val_number_token6] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1830), - [anon_sym_0o] = ACTIONS(1830), - [anon_sym_0x] = ACTIONS(1830), - [sym_val_date] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(1830), - [anon_sym_out_GT] = ACTIONS(1830), - [anon_sym_e_GT] = ACTIONS(1830), - [anon_sym_o_GT] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT] = ACTIONS(1830), - [anon_sym_err_GT_GT] = ACTIONS(1838), - [anon_sym_out_GT_GT] = ACTIONS(1838), - [anon_sym_e_GT_GT] = ACTIONS(1838), - [anon_sym_o_GT_GT] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1830), - [aux_sym_unquoted_token2] = ACTIONS(1581), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1838), - }, - [1756] = { - [sym_cell_path] = STATE(2268), - [sym_path] = STATE(2088), - [sym_comment] = STATE(1756), - [aux_sym_cell_path_repeat1] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(1765), - [sym__newline] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_err_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_GT_PIPE] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1765), - [anon_sym_GT2] = ACTIONS(1763), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_STAR2] = ACTIONS(1763), - [anon_sym_and2] = ACTIONS(1765), - [anon_sym_xor2] = ACTIONS(1765), - [anon_sym_or2] = ACTIONS(1765), - [anon_sym_not_DASHin2] = ACTIONS(1765), - [anon_sym_starts_DASHwith2] = ACTIONS(1765), - [anon_sym_ends_DASHwith2] = ACTIONS(1765), - [anon_sym_EQ_EQ2] = ACTIONS(1765), - [anon_sym_BANG_EQ2] = ACTIONS(1765), - [anon_sym_LT2] = ACTIONS(1763), - [anon_sym_LT_EQ2] = ACTIONS(1765), - [anon_sym_GT_EQ2] = ACTIONS(1765), - [anon_sym_EQ_TILDE2] = ACTIONS(1765), - [anon_sym_BANG_TILDE2] = ACTIONS(1765), - [anon_sym_STAR_STAR2] = ACTIONS(1765), - [anon_sym_PLUS_PLUS2] = ACTIONS(1765), - [anon_sym_SLASH2] = ACTIONS(1763), - [anon_sym_mod2] = ACTIONS(1765), - [anon_sym_SLASH_SLASH2] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1763), - [anon_sym_bit_DASHshl2] = ACTIONS(1765), - [anon_sym_bit_DASHshr2] = ACTIONS(1765), - [anon_sym_bit_DASHand2] = ACTIONS(1765), - [anon_sym_bit_DASHxor2] = ACTIONS(1765), - [anon_sym_bit_DASHor2] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1763), - [anon_sym_DOT] = ACTIONS(5128), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1765), - [anon_sym_err_GT] = ACTIONS(1763), - [anon_sym_out_GT] = ACTIONS(1763), - [anon_sym_e_GT] = ACTIONS(1763), - [anon_sym_o_GT] = ACTIONS(1763), - [anon_sym_err_PLUSout_GT] = ACTIONS(1763), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1763), - [anon_sym_o_PLUSe_GT] = ACTIONS(1763), - [anon_sym_e_PLUSo_GT] = ACTIONS(1763), - [anon_sym_err_GT_GT] = ACTIONS(1765), - [anon_sym_out_GT_GT] = ACTIONS(1765), - [anon_sym_e_GT_GT] = ACTIONS(1765), - [anon_sym_o_GT_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - }, - [1757] = { - [sym_comment] = STATE(1757), - [ts_builtin_sym_end] = ACTIONS(2294), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_DOLLAR] = ACTIONS(2292), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2292), - [anon_sym_LPAREN2] = ACTIONS(1842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2294), - [anon_sym_DOT_DOT_LT] = ACTIONS(2294), - [anon_sym_null] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2294), - [anon_sym_false] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2292), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_0b] = ACTIONS(2292), - [anon_sym_0o] = ACTIONS(2292), - [anon_sym_0x] = ACTIONS(2292), - [sym_val_date] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2292), - [anon_sym_out_GT] = ACTIONS(2292), - [anon_sym_e_GT] = ACTIONS(2292), - [anon_sym_o_GT] = ACTIONS(2292), - [anon_sym_err_PLUSout_GT] = ACTIONS(2292), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2292), - [anon_sym_o_PLUSe_GT] = ACTIONS(2292), - [anon_sym_e_PLUSo_GT] = ACTIONS(2292), - [anon_sym_err_GT_GT] = ACTIONS(2294), - [anon_sym_out_GT_GT] = ACTIONS(2294), - [anon_sym_e_GT_GT] = ACTIONS(2294), - [anon_sym_o_GT_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), - [aux_sym_unquoted_token1] = ACTIONS(2292), - [aux_sym_unquoted_token2] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2294), - }, - [1758] = { - [sym_comment] = STATE(1758), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym__newline] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [anon_sym_DASH2] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_null] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym__val_number_decimal_token1] = ACTIONS(1799), - [aux_sym__val_number_decimal_token2] = ACTIONS(1801), - [aux_sym__val_number_decimal_token3] = ACTIONS(1801), - [aux_sym__val_number_decimal_token4] = ACTIONS(1801), - [aux_sym__val_number_token1] = ACTIONS(1801), - [aux_sym__val_number_token2] = ACTIONS(1801), - [aux_sym__val_number_token3] = ACTIONS(1801), - [aux_sym__val_number_token4] = ACTIONS(1801), - [aux_sym__val_number_token5] = ACTIONS(1801), - [aux_sym__val_number_token6] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1799), - [anon_sym_0o] = ACTIONS(1799), - [anon_sym_0x] = ACTIONS(1799), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_err_GT] = ACTIONS(1799), - [anon_sym_out_GT] = ACTIONS(1799), - [anon_sym_e_GT] = ACTIONS(1799), - [anon_sym_o_GT] = ACTIONS(1799), - [anon_sym_err_PLUSout_GT] = ACTIONS(1799), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1799), - [anon_sym_o_PLUSe_GT] = ACTIONS(1799), - [anon_sym_e_PLUSo_GT] = ACTIONS(1799), - [anon_sym_err_GT_GT] = ACTIONS(1801), - [anon_sym_out_GT_GT] = ACTIONS(1801), - [anon_sym_e_GT_GT] = ACTIONS(1801), - [anon_sym_o_GT_GT] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), - [aux_sym_unquoted_token1] = ACTIONS(1799), - [aux_sym_unquoted_token2] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1801), + [1704] = { + [sym_cmd_identifier] = STATE(3978), + [sym__command_name] = STATE(6546), + [sym_scope_pattern] = STATE(6381), + [sym_wild_card] = STATE(6549), + [sym_command_list] = STATE(6550), + [sym__val_number_decimal] = STATE(3616), + [sym_val_string] = STATE(3962), + [sym__raw_str] = STATE(3917), + [sym__str_double_quotes] = STATE(3917), + [sym_comment] = STATE(1704), + [aux_sym_cmd_identifier_token1] = ACTIONS(4924), + [aux_sym_cmd_identifier_token2] = ACTIONS(4926), + [aux_sym_cmd_identifier_token3] = ACTIONS(4926), + [aux_sym_cmd_identifier_token4] = ACTIONS(4926), + [aux_sym_cmd_identifier_token5] = ACTIONS(4926), + [aux_sym_cmd_identifier_token6] = ACTIONS(4926), + [aux_sym_cmd_identifier_token7] = ACTIONS(4926), + [aux_sym_cmd_identifier_token8] = ACTIONS(4926), + [aux_sym_cmd_identifier_token9] = ACTIONS(4924), + [aux_sym_cmd_identifier_token10] = ACTIONS(4926), + [aux_sym_cmd_identifier_token11] = ACTIONS(4926), + [aux_sym_cmd_identifier_token12] = ACTIONS(4926), + [aux_sym_cmd_identifier_token13] = ACTIONS(4924), + [aux_sym_cmd_identifier_token14] = ACTIONS(4926), + [aux_sym_cmd_identifier_token15] = ACTIONS(4924), + [aux_sym_cmd_identifier_token16] = ACTIONS(4926), + [aux_sym_cmd_identifier_token17] = ACTIONS(4926), + [aux_sym_cmd_identifier_token18] = ACTIONS(4926), + [aux_sym_cmd_identifier_token19] = ACTIONS(4926), + [aux_sym_cmd_identifier_token20] = ACTIONS(4926), + [aux_sym_cmd_identifier_token21] = ACTIONS(4926), + [aux_sym_cmd_identifier_token22] = ACTIONS(4926), + [aux_sym_cmd_identifier_token23] = ACTIONS(4926), + [aux_sym_cmd_identifier_token24] = ACTIONS(4926), + [aux_sym_cmd_identifier_token25] = ACTIONS(4926), + [aux_sym_cmd_identifier_token26] = ACTIONS(4926), + [aux_sym_cmd_identifier_token27] = ACTIONS(4926), + [aux_sym_cmd_identifier_token28] = ACTIONS(4926), + [aux_sym_cmd_identifier_token29] = ACTIONS(4926), + [aux_sym_cmd_identifier_token30] = ACTIONS(4926), + [aux_sym_cmd_identifier_token31] = ACTIONS(4926), + [aux_sym_cmd_identifier_token32] = ACTIONS(4926), + [aux_sym_cmd_identifier_token33] = ACTIONS(4926), + [aux_sym_cmd_identifier_token34] = ACTIONS(4924), + [aux_sym_cmd_identifier_token35] = ACTIONS(4926), + [aux_sym_cmd_identifier_token36] = ACTIONS(4926), + [aux_sym_cmd_identifier_token37] = ACTIONS(4926), + [aux_sym_cmd_identifier_token38] = ACTIONS(4924), + [aux_sym_cmd_identifier_token39] = ACTIONS(4926), + [aux_sym_cmd_identifier_token40] = ACTIONS(4926), + [sym__newline] = ACTIONS(4993), + [anon_sym_SEMI] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [anon_sym_STAR2] = ACTIONS(4932), + [aux_sym__val_number_decimal_token1] = ACTIONS(4934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4934), + [aux_sym__val_number_decimal_token3] = ACTIONS(4936), + [aux_sym__val_number_decimal_token4] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym__str_single_quotes] = ACTIONS(1297), + [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1299), }, }; @@ -244181,9 +234587,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1759), 1, + STATE(1705), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(2150), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244200,7 +234606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 46, + ACTIONS(2156), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244250,9 +234656,9 @@ static const uint16_t ts_small_parse_table[] = { [73] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1760), 1, + STATE(1706), 1, sym_comment, - ACTIONS(2458), 16, + ACTIONS(4997), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244269,7 +234675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2460), 46, + ACTIONS(4995), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244319,9 +234725,9 @@ static const uint16_t ts_small_parse_table[] = { [146] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1707), 1, sym_comment, - ACTIONS(2466), 16, + ACTIONS(5001), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244338,7 +234744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2468), 46, + ACTIONS(4999), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244385,90 +234791,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, - [219] = 8, + [219] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(5176), 1, - anon_sym_DOT_DOT2, - STATE(1762), 1, + STATE(1708), 1, sym_comment, - ACTIONS(5178), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 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(1848), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2441), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, - [300] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1763), 1, - sym_comment, - ACTIONS(986), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244477,7 +234812,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(988), 49, + aux_sym_unquoted_token1, + ACTIONS(2443), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244489,36 +234826,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244527,12 +234860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [373] = 4, + [292] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1764), 1, + STATE(1709), 1, sym_comment, - ACTIONS(5182), 16, + ACTIONS(1977), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244549,7 +234882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5180), 46, + ACTIONS(1979), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244596,12 +234929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [446] = 4, + [365] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1765), 1, + STATE(1710), 1, sym_comment, - ACTIONS(5186), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244618,7 +234951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5184), 46, + ACTIONS(2455), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244665,12 +234998,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [519] = 4, + [438] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1711), 1, + sym_comment, + ACTIONS(962), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(964), 47, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [511] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1712), 1, sym_comment, - ACTIONS(5190), 16, + ACTIONS(2421), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244687,7 +235089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5188), 46, + ACTIONS(2423), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244734,12 +235136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [592] = 4, + [584] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1713), 1, sym_comment, - ACTIONS(5194), 16, + ACTIONS(1653), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244756,7 +235158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5192), 46, + ACTIONS(1665), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244803,268 +235205,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [665] = 40, + [657] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1768), 1, + ACTIONS(5007), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_STAR2, + STATE(1714), 1, sym_comment, - STATE(2166), 1, - sym_short_flag, - STATE(2167), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, + STATE(3586), 1, sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6286), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, + STATE(6232), 1, + sym_cmd_identifier, + STATE(6234), 1, + sym_val_string, + STATE(7135), 1, + sym__command_name, + STATE(7143), 1, + sym_scope_pattern, + STATE(7145), 1, + sym_wild_card, + STATE(7154), 1, + sym_command_list, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1812), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [810] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1769), 1, - sym_comment, - STATE(2168), 1, - sym_short_flag, - STATE(2169), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6290), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [955] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5214), 1, - anon_sym_LBRACK, - ACTIONS(5216), 1, - anon_sym_STAR2, - STATE(1770), 1, - sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7437), 1, - sym__command_name, - STATE(7492), 1, - sym_wild_card, - STATE(7545), 1, - sym_command_list, - STATE(7645), 1, - sym_scope_pattern, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5153), 3, + ACTIONS(4971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(5210), 6, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -245099,12 +235291,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [1062] = 4, + [764] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1771), 1, + ACTIONS(5011), 1, + anon_sym_LBRACK2, + STATE(1715), 1, sym_comment, - ACTIONS(2482), 16, + ACTIONS(2315), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245121,8 +235316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2484), 46, + ACTIONS(2319), 44, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245134,12 +235330,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_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245168,12 +235361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1135] = 4, + [839] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1716), 1, sym_comment, - ACTIONS(2072), 16, + ACTIONS(1004), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245190,7 +235383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2078), 46, + ACTIONS(1000), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245237,14 +235430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1208] = 5, + [912] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - anon_sym_EQ2, - STATE(1773), 1, + STATE(1717), 1, sym_comment, - ACTIONS(5114), 16, + ACTIONS(2457), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245261,9 +235452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5112), 45, + ACTIONS(2459), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245277,8 +235467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245307,16 +235499,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, - [1283] = 5, - ACTIONS(3), 1, + [985] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(1774), 1, + STATE(1718), 1, sym_comment, - ACTIONS(1036), 21, + ACTIONS(2334), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2336), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245330,23 +235536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1034), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -245356,18 +235554,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245376,13 +235568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1358] = 4, + [1058] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1719), 1, sym_comment, - ACTIONS(2395), 16, + ACTIONS(2374), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245399,7 +235590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2397), 46, + ACTIONS(2376), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245446,12 +235637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1431] = 4, + [1131] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1720), 1, sym_comment, - ACTIONS(1779), 16, + ACTIONS(2449), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245468,7 +235659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1781), 46, + ACTIONS(2451), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245515,12 +235706,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1504] = 4, + [1204] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1777), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(5013), 1, + anon_sym_DOT_DOT2, + STATE(1721), 1, + sym_comment, + ACTIONS(5015), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 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(1827), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1285] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1722), 1, sym_comment, - ACTIONS(2090), 16, + ACTIONS(958), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245537,7 +235801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2096), 46, + ACTIONS(960), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245584,12 +235848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1577] = 4, + [1358] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1723), 1, sym_comment, - ACTIONS(2098), 16, + ACTIONS(2378), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245606,7 +235870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2104), 46, + ACTIONS(2380), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245653,12 +235917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1650] = 4, + [1431] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1724), 1, sym_comment, - ACTIONS(2131), 16, + ACTIONS(1989), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245675,7 +235939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2137), 46, + ACTIONS(1991), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245722,12 +235986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1723] = 4, + [1504] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1725), 1, sym_comment, - ACTIONS(5222), 16, + ACTIONS(988), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245735,6 +235999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245744,8 +236009,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5220), 46, + ACTIONS(990), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245759,10 +236025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245791,12 +236055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1796] = 4, + [1577] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1726), 1, sym_comment, - ACTIONS(1771), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245813,7 +236077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1773), 46, + ACTIONS(5017), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245860,19 +236124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1869] = 4, + [1650] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1782), 1, + ACTIONS(5023), 1, + aux_sym__immediate_decimal_token2, + STATE(1727), 1, sym_comment, - ACTIONS(5226), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1771), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245881,9 +236146,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5224), 46, + aux_sym_unquoted_token2, + ACTIONS(1773), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1725] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(1728), 1, + sym_comment, + ACTIONS(2253), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245897,15 +236217,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2249), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -245915,12 +236243,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245929,14 +236263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1942] = 5, + aux_sym_unquoted_token1, + [1800] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5110), 1, - aux_sym__immediate_decimal_token2, - STATE(1783), 1, + STATE(1729), 1, sym_comment, - ACTIONS(1779), 16, + ACTIONS(2342), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245953,9 +236286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1781), 45, + ACTIONS(2344), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245969,8 +236301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -245999,12 +236333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2017] = 4, + [1873] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1784), 1, + STATE(1730), 1, sym_comment, - ACTIONS(1799), 16, + ACTIONS(1997), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246021,7 +236355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1801), 46, + ACTIONS(1999), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246068,30 +236402,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, - [2090] = 4, - ACTIONS(251), 1, + [1946] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1785), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(1731), 1, sym_comment, - ACTIONS(2407), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2409), 46, + ACTIONS(2259), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246105,15 +236425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2257), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -246123,12 +236451,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246137,12 +236471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2163] = 4, + aux_sym_unquoted_token1, + [2021] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1732), 1, sym_comment, - ACTIONS(1818), 16, + ACTIONS(2001), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246159,7 +236494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1820), 46, + ACTIONS(2003), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246206,12 +236541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2236] = 4, + [2094] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4657), 1, + aux_sym_unquoted_token2, + STATE(1733), 1, sym_comment, - ACTIONS(2411), 16, + ACTIONS(1653), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246228,8 +236565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2413), 46, + ACTIONS(1665), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246243,10 +236581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -246275,12 +236611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2309] = 4, + [2169] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1734), 1, sym_comment, - ACTIONS(2415), 16, + ACTIONS(5027), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246297,7 +236633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2417), 46, + ACTIONS(5025), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246344,12 +236680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2382] = 4, + [2242] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1735), 1, sym_comment, - ACTIONS(5230), 16, + ACTIONS(5031), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246366,7 +236702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5228), 46, + ACTIONS(5029), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246413,12 +236749,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2455] = 4, + [2315] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1790), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(5033), 1, + anon_sym_DOT_DOT2, + STATE(1736), 1, + sym_comment, + ACTIONS(5035), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 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(1802), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2396] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1737), 1, sym_comment, - ACTIONS(5234), 16, + ACTIONS(4985), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246435,8 +236845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5232), 46, + ACTIONS(4983), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246449,11 +236860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -246482,12 +236891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2528] = 4, + [2469] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1738), 1, sym_comment, - ACTIONS(2419), 16, + ACTIONS(5039), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246504,7 +236913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2421), 46, + ACTIONS(5037), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246551,12 +236960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2601] = 4, + [2542] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1739), 1, sym_comment, - ACTIONS(2423), 16, + ACTIONS(5043), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246573,7 +236982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2425), 46, + ACTIONS(5041), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246620,12 +237029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2674] = 4, + [2615] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1740), 1, sym_comment, - ACTIONS(2427), 16, + ACTIONS(2366), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246642,7 +237051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2429), 46, + ACTIONS(2368), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246689,12 +237098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2747] = 4, + [2688] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1794), 1, + STATE(1741), 1, sym_comment, - ACTIONS(2431), 16, + ACTIONS(2362), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246711,7 +237120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2433), 46, + ACTIONS(2364), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246758,12 +237167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2820] = 4, + [2761] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1795), 1, + STATE(1742), 1, sym_comment, - ACTIONS(2435), 16, + ACTIONS(2382), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246780,7 +237189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2437), 46, + ACTIONS(2384), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246827,12 +237236,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2893] = 4, + [2834] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1796), 1, + ACTIONS(4975), 1, + aux_sym__immediate_decimal_token2, + STATE(1743), 1, + sym_comment, + ACTIONS(1735), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token2, + ACTIONS(1737), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2909] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5007), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_STAR2, + STATE(1744), 1, + sym_comment, + STATE(3586), 1, + sym__val_number_decimal, + STATE(6232), 1, + sym_cmd_identifier, + STATE(6234), 1, + sym_val_string, + STATE(6664), 1, + sym_scope_pattern, + STATE(7135), 1, + sym__command_name, + STATE(7145), 1, + sym_wild_card, + STATE(7154), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4993), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5003), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5005), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [3016] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1745), 1, sym_comment, - ACTIONS(2443), 16, + ACTIONS(2013), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246849,7 +237414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2445), 46, + ACTIONS(2015), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246896,12 +237461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2966] = 4, + [3089] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1797), 1, + STATE(1746), 1, sym_comment, - ACTIONS(2447), 16, + ACTIONS(2386), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246918,7 +237483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2449), 46, + ACTIONS(2388), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246965,15 +237530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3039] = 5, + [3162] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5236), 1, - anon_sym_LBRACK2, - STATE(1798), 1, + STATE(1747), 1, sym_comment, - ACTIONS(2304), 17, - anon_sym_LBRACK, + ACTIONS(2390), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246990,9 +237552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2308), 44, + ACTIONS(2392), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247004,9 +237565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247035,14 +237599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3114] = 5, + [3235] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5238), 1, - aux_sym__immediate_decimal_token2, - STATE(1799), 1, + STATE(1748), 1, sym_comment, - ACTIONS(1799), 16, + ACTIONS(2017), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247059,9 +237621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1801), 45, + ACTIONS(2019), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247075,8 +237636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247105,82 +237668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3189] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5240), 1, - sym__newline, - STATE(1800), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 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(1310), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, - [3264] = 4, + [3308] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1801), 1, + STATE(1749), 1, sym_comment, - ACTIONS(5245), 16, + ACTIONS(976), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247197,7 +237690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5243), 46, + ACTIONS(978), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247244,14 +237737,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, - [3337] = 5, + [3381] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(1897), 1, + sym_raw_string_begin, + ACTIONS(4233), 1, + anon_sym_DQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5045), 1, + anon_sym_LPAREN, + STATE(1750), 1, + sym_comment, + STATE(3604), 1, + sym__val_number_decimal, + STATE(4426), 1, + sym__inter_single_quotes, + STATE(4441), 1, + sym__inter_double_quotes, + ACTIONS(4235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3915), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4474), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [3484] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2247), 1, aux_sym_unquoted_token4, - STATE(1802), 1, + STATE(1751), 1, sym_comment, - ACTIONS(2258), 21, + ACTIONS(2245), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247273,7 +237850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2254), 40, + ACTIONS(2241), 40, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -247314,12 +237891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [3412] = 4, + [3559] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1803), 1, + STATE(1752), 1, sym_comment, - ACTIONS(1034), 16, + ACTIONS(2025), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247336,7 +237913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1036), 46, + ACTIONS(2027), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247383,12 +237960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3485] = 4, + [3632] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1753), 1, sym_comment, - ACTIONS(2399), 16, + ACTIONS(2370), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247405,7 +237982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2401), 46, + ACTIONS(2372), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247452,17 +238029,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, - [3558] = 4, + [3705] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1754), 1, sym_comment, - ACTIONS(1687), 13, + ACTIONS(972), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247471,7 +238050,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(1699), 49, + ACTIONS(974), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247483,13 +238063,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_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, @@ -247512,7 +238088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247521,59 +238098,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, - [3631] = 5, - ACTIONS(3), 1, + [3778] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(1806), 1, + STATE(1755), 1, sym_comment, - ACTIONS(2274), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2272), 40, + ACTIONS(2394), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247582,25 +238119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [3706] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(1807), 1, - sym_comment, - ACTIONS(2238), 21, + ACTIONS(2396), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247614,23 +238135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2234), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -247640,18 +238153,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247660,13 +238167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [3781] = 4, + [3851] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1756), 1, sym_comment, - ACTIONS(1949), 16, + ACTIONS(2398), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247683,7 +238189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1951), 46, + ACTIONS(2400), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247730,12 +238236,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, - [3854] = 4, + [3924] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(1809), 1, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5007), 1, + anon_sym_LBRACK, + ACTIONS(5009), 1, + anon_sym_STAR2, + STATE(1757), 1, + sym_comment, + STATE(3586), 1, + sym__val_number_decimal, + STATE(6232), 1, + sym_cmd_identifier, + STATE(6234), 1, + sym_val_string, + STATE(6961), 1, + sym_scope_pattern, + STATE(7135), 1, + sym__command_name, + STATE(7145), 1, + sym_wild_card, + STATE(7154), 1, + sym_command_list, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4928), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5003), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5005), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [4031] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1758), 1, sym_comment, - ACTIONS(2454), 16, + ACTIONS(2029), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247752,7 +238344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2456), 46, + ACTIONS(2031), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247799,12 +238391,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3927] = 4, + [4104] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1810), 1, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(2113), 1, + sym_raw_string_begin, + ACTIONS(4197), 1, + anon_sym_DQUOTE, + ACTIONS(4201), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4203), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5047), 1, + anon_sym_LPAREN, + STATE(1759), 1, sym_comment, - ACTIONS(2470), 16, + STATE(3589), 1, + sym__val_number_decimal, + STATE(4590), 1, + sym__inter_single_quotes, + STATE(4591), 1, + sym__inter_double_quotes, + ACTIONS(4199), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3998), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4484), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(19), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(21), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [4207] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1760), 1, + sym_comment, + ACTIONS(4942), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247821,8 +238498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2472), 46, + ACTIONS(4940), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247835,11 +238513,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -247868,12 +238544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4000] = 4, + [4280] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1811), 1, + STATE(1761), 1, sym_comment, - ACTIONS(2462), 16, + ACTIONS(2402), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247890,7 +238566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2464), 46, + ACTIONS(2404), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247937,12 +238613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4073] = 4, + [4353] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1762), 1, sym_comment, - ACTIONS(2486), 16, + ACTIONS(2406), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247959,7 +238635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2488), 46, + ACTIONS(2408), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248006,12 +238682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4146] = 4, + [4426] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1813), 1, + STATE(1763), 1, sym_comment, - ACTIONS(2492), 16, + ACTIONS(2437), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248028,7 +238704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2494), 46, + ACTIONS(2439), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248075,30 +238751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4219] = 4, - ACTIONS(251), 1, + [4499] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1764), 1, sym_comment, - ACTIONS(1941), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1943), 46, + ACTIONS(2263), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248112,15 +238772,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2261), 41, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -248130,12 +238798,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248144,12 +238818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4292] = 4, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [4572] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1815), 1, + STATE(1765), 1, sym_comment, - ACTIONS(2504), 16, + ACTIONS(2174), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248166,7 +238842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2506), 46, + ACTIONS(2176), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248213,12 +238889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4365] = 4, + [4645] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(5049), 1, + anon_sym_EQ2, + STATE(1766), 1, sym_comment, - ACTIONS(2508), 16, + ACTIONS(4967), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248235,8 +238913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2510), 46, + ACTIONS(4965), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248250,10 +238929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -248282,12 +238959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4438] = 4, + [4720] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1817), 1, + STATE(1767), 1, sym_comment, - ACTIONS(1883), 16, + ACTIONS(1735), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248304,7 +238981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1885), 46, + ACTIONS(1737), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248351,19 +239028,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, - [4511] = 5, + [4793] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5247), 1, - anon_sym_QMARK2, - STATE(1818), 1, + STATE(1768), 1, sym_comment, - ACTIONS(1008), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4753), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248372,7 +239049,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(1010), 48, + aux_sym_unquoted_token1, + ACTIONS(4751), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248384,35 +239063,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248421,19 +239097,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4586] = 5, + [4866] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(5051), 1, anon_sym_QMARK2, - STATE(1819), 1, + STATE(1769), 1, sym_comment, - ACTIONS(990), 13, + ACTIONS(952), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248442,7 +239120,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(992), 48, + ACTIONS(954), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248454,13 +239133,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_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248482,7 +239157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248491,12 +239167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4661] = 4, + [4941] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1770), 1, sym_comment, - ACTIONS(1891), 16, + ACTIONS(4830), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248513,7 +239189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 46, + ACTIONS(4828), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248560,31 +239236,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, - [4734] = 5, + [5014] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_unquoted_token2, - STATE(1821), 1, - sym_comment, - ACTIONS(1687), 16, + ACTIONS(1847), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1897), 1, + sym_raw_string_begin, + ACTIONS(4233), 1, + anon_sym_DQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5045), 1, + anon_sym_LPAREN, + STATE(1771), 1, + sym_comment, + STATE(3604), 1, + sym__val_number_decimal, + STATE(4426), 1, + sym__inter_single_quotes, + STATE(4441), 1, + sym__inter_double_quotes, + ACTIONS(4235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1699), 45, + aux_sym__val_number_decimal_token2, + STATE(3915), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4322), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [5117] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(1772), 1, + sym_comment, + ACTIONS(1000), 21, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248600,13 +239343,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1004), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -248616,12 +239369,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248630,12 +239389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4809] = 4, + aux_sym_unquoted_token1, + [5192] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1773), 1, sym_comment, - ACTIONS(1895), 16, + ACTIONS(2433), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248652,7 +239412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1897), 46, + ACTIONS(2435), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248699,19 +239459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4882] = 4, + [5265] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1823), 1, + ACTIONS(5053), 1, + anon_sym_QMARK2, + STATE(1774), 1, sym_comment, - ACTIONS(2359), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(966), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248720,9 +239482,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2361), 46, - sym_raw_string_begin, + ACTIONS(968), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248734,32 +239495,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248768,12 +239529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4955] = 4, + [5340] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1824), 1, + STATE(1775), 1, sym_comment, - ACTIONS(1917), 16, + ACTIONS(2170), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248790,7 +239551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1919), 46, + ACTIONS(2172), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248837,12 +239598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5028] = 4, + [5413] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1776), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(962), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248859,7 +239620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 46, + ACTIONS(964), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248906,12 +239667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5101] = 4, + [5486] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1777), 1, sym_comment, - ACTIONS(1925), 16, + ACTIONS(1727), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248928,7 +239689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1927), 46, + ACTIONS(1729), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248975,19 +239736,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, - [5174] = 4, + [5559] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1778), 1, sym_comment, - ACTIONS(1933), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(976), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248996,9 +239757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1935), 46, - sym_raw_string_begin, + ACTIONS(978), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249010,32 +239770,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249044,12 +239805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5247] = 4, + [5632] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1828), 1, + STATE(1779), 1, sym_comment, - ACTIONS(2371), 16, + ACTIONS(1957), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249066,7 +239827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2373), 46, + ACTIONS(1959), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249113,12 +239874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5320] = 4, + [5705] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1780), 1, sym_comment, - ACTIONS(2375), 16, + ACTIONS(2461), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249135,7 +239896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2377), 46, + ACTIONS(2463), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249182,12 +239943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5393] = 4, + [5778] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1830), 1, + STATE(1781), 1, sym_comment, - ACTIONS(1937), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249204,7 +239965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1939), 46, + ACTIONS(1020), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249251,21 +240012,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, - [5466] = 8, + [5851] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(5251), 1, - anon_sym_DOT_DOT2, - STATE(1831), 1, + ACTIONS(5055), 1, + sym__newline, + STATE(1782), 2, sym_comment, - ACTIONS(5253), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 13, + aux_sym_shebang_repeat1, + ACTIONS(1262), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249279,8 +240034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 44, - sym__newline, + ACTIONS(1264), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249291,10 +240045,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, + anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249324,12 +240082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5547] = 4, + [5926] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1832), 1, + ACTIONS(5058), 1, + anon_sym_EQ2, + STATE(1783), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(4989), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249346,8 +240106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 46, + ACTIONS(4987), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249361,10 +240122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249393,12 +240152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5620] = 4, + [6001] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1784), 1, sym_comment, - ACTIONS(1687), 16, + ACTIONS(984), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249406,6 +240165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249415,8 +240175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1699), 46, + ACTIONS(986), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249430,10 +240191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249462,12 +240221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5693] = 4, + [6074] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1785), 1, sym_comment, - ACTIONS(2387), 16, + ACTIONS(5062), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249484,7 +240243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2389), 46, + ACTIONS(5060), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249531,12 +240290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5766] = 4, + [6147] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1835), 1, + STATE(1786), 1, sym_comment, - ACTIONS(1957), 16, + ACTIONS(5066), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249553,7 +240312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1959), 46, + ACTIONS(5064), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249600,12 +240359,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, - [5839] = 4, + [6220] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1836), 1, + ACTIONS(5068), 1, + aux_sym__immediate_decimal_token2, + STATE(1787), 1, + sym_comment, + ACTIONS(1771), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1773), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6295] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1788), 1, sym_comment, - ACTIONS(2520), 16, + ACTIONS(1945), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249622,7 +240451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2522), 46, + ACTIONS(1947), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249669,12 +240498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5912] = 4, + [6368] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1837), 1, + STATE(1789), 1, sym_comment, - ACTIONS(2391), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249691,7 +240520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2393), 46, + ACTIONS(2487), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249738,12 +240567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5985] = 4, + [6441] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1838), 1, + STATE(1790), 1, sym_comment, - ACTIONS(2391), 16, + ACTIONS(2413), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249760,7 +240589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2393), 46, + ACTIONS(2415), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249807,12 +240636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6058] = 4, + [6514] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1839), 1, + STATE(1791), 1, sym_comment, - ACTIONS(5126), 16, + ACTIONS(1771), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249829,7 +240658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5124), 46, + ACTIONS(1773), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249876,12 +240705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6131] = 4, + [6587] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1792), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(980), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249889,6 +240718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249898,8 +240728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 46, + ACTIONS(982), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249913,10 +240744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -249945,12 +240774,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6204] = 4, + [6660] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1793), 1, sym_comment, - ACTIONS(2439), 16, + ACTIONS(1786), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249967,7 +240796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2441), 46, + ACTIONS(1788), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250014,12 +240843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6277] = 4, + [6733] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1794), 1, sym_comment, - ACTIONS(5138), 16, + ACTIONS(2115), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250036,7 +240865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5136), 46, + ACTIONS(2121), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250083,16 +240912,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, - [6350] = 4, + [6806] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1022), 17, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -250106,9 +240934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1024), 45, + ACTIONS(2340), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250122,8 +240949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -250152,182 +240981,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6423] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [6879] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5214), 1, - anon_sym_LBRACK, - ACTIONS(5216), 1, - anon_sym_STAR2, - STATE(1844), 1, + STATE(1796), 1, sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7437), 1, - sym__command_name, - STATE(7492), 1, - sym_wild_card, - STATE(7516), 1, - sym_scope_pattern, - STATE(7545), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(2338), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5174), 3, - ts_builtin_sym_end, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2340), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, - ACTIONS(5210), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [6530] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2027), 1, - sym_raw_string_begin, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(4441), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(4445), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4447), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5161), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6952] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1797), 1, + sym_comment, + ACTIONS(4985), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4983), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5255), 1, - anon_sym_LPAREN, - STATE(1845), 1, - sym_comment, - STATE(4046), 1, - sym__val_number_decimal, - STATE(4967), 1, - sym__inter_single_quotes, - STATE(4983), 1, - sym__inter_double_quotes, - ACTIONS(4443), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4655), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4946), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(367), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(369), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [6633] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7025] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1846), 1, + STATE(1798), 1, sym_comment, - ACTIONS(2474), 16, + ACTIONS(5072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250344,7 +241141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2476), 46, + ACTIONS(5070), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250391,12 +241188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6706] = 4, + [7098] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1847), 1, + STATE(1799), 1, sym_comment, - ACTIONS(2478), 16, + ACTIONS(2445), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250413,7 +241210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2480), 46, + ACTIONS(2447), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250460,98 +241257,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, - [6779] = 19, + [7171] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2027), 1, - sym_raw_string_begin, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(4441), 1, - anon_sym_DQUOTE, - ACTIONS(4445), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4447), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5255), 1, - anon_sym_LPAREN, - STATE(1848), 1, + STATE(1800), 1, sym_comment, - STATE(4046), 1, - sym__val_number_decimal, - STATE(4967), 1, - sym__inter_single_quotes, - STATE(4983), 1, - sym__inter_double_quotes, - ACTIONS(4443), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(2346), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4655), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4851), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(367), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(369), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [6882] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1849), 1, - sym_comment, - ACTIONS(2244), 21, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2348), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250565,23 +241294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2242), 41, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -250591,10 +241312,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7244] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1801), 1, + sym_comment, + ACTIONS(2350), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250603,6 +241347,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2352), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250611,14 +241395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [6955] = 4, + [7317] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1850), 1, + STATE(1802), 1, sym_comment, - ACTIONS(5259), 16, + ACTIONS(4942), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250635,7 +241417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5257), 46, + ACTIONS(4940), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250682,16 +241464,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, - [7028] = 4, + [7390] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1851), 1, + STATE(1803), 1, sym_comment, - ACTIONS(1018), 17, + ACTIONS(5076), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -250705,9 +241486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1020), 45, + ACTIONS(5074), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250721,8 +241501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -250751,16 +241533,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, - [7101] = 4, + [7463] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1804), 1, sym_comment, - ACTIONS(1014), 17, + ACTIONS(5080), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -250774,9 +241555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1016), 45, + ACTIONS(5078), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250790,8 +241570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -250820,20 +241602,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, - [7174] = 5, + [7536] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5167), 1, - aux_sym__immediate_decimal_token2, - STATE(1853), 1, + STATE(1805), 1, sym_comment, - ACTIONS(1779), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(2417), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250842,9 +241623,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 46, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(2419), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250856,32 +241637,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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250890,12 +241671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7249] = 4, + [7609] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1806), 1, sym_comment, - ACTIONS(5263), 16, + ACTIONS(2425), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250912,7 +241693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5261), 46, + ACTIONS(2427), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250959,14 +241740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7322] = 5, + [7682] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4690), 1, - aux_sym_unquoted_token2, - STATE(1855), 1, + ACTIONS(4952), 1, + aux_sym__immediate_decimal_token2, + STATE(1807), 1, sym_comment, - ACTIONS(1687), 16, + ACTIONS(1735), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250983,7 +241764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1699), 45, + ACTIONS(1737), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251029,96 +241810,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7397] = 19, + [7757] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2195), 1, - sym_raw_string_begin, - ACTIONS(4379), 1, + STATE(1808), 1, + sym_comment, + ACTIONS(2467), 16, anon_sym_DOLLAR, - ACTIONS(4403), 1, - anon_sym_DQUOTE, - ACTIONS(4407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5161), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2469), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5265), 1, - anon_sym_LPAREN, - STATE(1856), 1, - sym_comment, - STATE(4044), 1, - sym__val_number_decimal, - STATE(5066), 1, - sym__inter_single_quotes, - STATE(5068), 1, - sym__inter_double_quotes, - ACTIONS(4405), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4801), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4916), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(19), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(21), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [7500] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [7830] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1809), 1, sym_comment, - ACTIONS(2082), 16, + ACTIONS(2471), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251135,7 +241901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2084), 46, + ACTIONS(2473), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251182,22 +241948,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, - [7573] = 5, + [7903] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5267), 1, - anon_sym_QMARK2, - STATE(1858), 1, + STATE(1810), 1, sym_comment, - ACTIONS(1008), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2358), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251206,7 +241969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1010), 45, + aux_sym_unquoted_token1, + ACTIONS(2360), 46, + sym_raw_string_begin, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251217,33 +241983,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_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251252,22 +242017,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7648] = 5, + [7976] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5269), 1, - anon_sym_QMARK2, - STATE(1859), 1, + ACTIONS(4441), 1, + aux_sym_unquoted_token2, + STATE(1811), 1, sym_comment, - ACTIONS(990), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(1653), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251276,7 +242040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 45, + aux_sym_unquoted_token1, + ACTIONS(1665), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251287,33 +242055,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251322,17 +242087,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, - [7723] = 4, + [8051] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1812), 1, sym_comment, - ACTIONS(2387), 13, + ACTIONS(958), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251341,7 +242108,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(2389), 49, + ACTIONS(960), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251353,13 +242121,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_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, @@ -251382,7 +242146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251391,12 +242156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7796] = 4, + [8124] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1813), 1, sym_comment, - ACTIONS(2086), 16, + ACTIONS(2505), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251413,7 +242178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2088), 46, + ACTIONS(2507), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251460,12 +242225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7869] = 4, + [8197] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1814), 1, sym_comment, - ACTIONS(1000), 16, + ACTIONS(2354), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251482,7 +242247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1002), 46, + ACTIONS(2356), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251529,12 +242294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7942] = 4, + [8270] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1863), 1, + STATE(1815), 1, sym_comment, - ACTIONS(1004), 16, + ACTIONS(2142), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251551,7 +242316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1006), 46, + ACTIONS(2148), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251598,12 +242363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8015] = 4, + [8343] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1864), 1, + STATE(1816), 1, sym_comment, - ACTIONS(996), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251620,7 +242385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(998), 46, + ACTIONS(2431), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251667,84 +242432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8088] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_DOT, - STATE(1865), 1, - sym_comment, - STATE(1879), 1, - aux_sym_cell_path_repeat1, - STATE(2088), 1, - sym_path, - ACTIONS(982), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(984), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8167] = 4, + [8416] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1817), 1, sym_comment, - ACTIONS(1052), 16, + ACTIONS(2158), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251761,7 +242454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1054), 46, + ACTIONS(2164), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251808,12 +242501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8240] = 4, + [8489] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1818), 1, sym_comment, - ACTIONS(986), 16, + ACTIONS(972), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251830,7 +242523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(988), 46, + ACTIONS(974), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251877,17 +242570,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, - [8313] = 4, + [8562] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1868), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(1819), 1, sym_comment, - ACTIONS(1000), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5088), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251896,7 +242595,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1002), 49, + ACTIONS(5082), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5086), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [8642] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1820), 1, + sym_comment, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4864), 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(4862), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251911,11 +242680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251937,7 +242704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251946,19 +242712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8386] = 4, + [8718] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1869), 1, + ACTIONS(5090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5092), 1, + aux_sym__immediate_decimal_token2, + STATE(1821), 1, sym_comment, - ACTIONS(4954), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1727), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251967,9 +242735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4952), 46, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1729), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251981,32 +242748,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252015,12 +242782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8459] = 4, + [8794] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1822), 1, sym_comment, - ACTIONS(5025), 16, + ACTIONS(5072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252037,8 +242804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5023), 46, + ACTIONS(5070), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252052,10 +242820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -252084,20 +242850,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, - [8532] = 4, + [8866] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1823), 1, sym_comment, - ACTIONS(5126), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4942), 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, @@ -252106,10 +242869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5124), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4940), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252121,30 +242881,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -252153,309 +242918,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8605] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, + [8938] = 39, + ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(3367), 1, + ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, + ACTIONS(183), 1, anon_sym_LBRACE, - ACTIONS(3377), 1, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, + ACTIONS(231), 1, anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1872), 1, - sym_comment, - STATE(2237), 1, - sym_short_flag, - STATE(2238), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6093), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8750] = 40, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, + ACTIONS(3190), 1, + sym__newline, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1873), 1, - sym_comment, - STATE(2240), 1, - sym_short_flag, - STATE(2241), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, + STATE(1824), 1, + sym_comment, + STATE(1859), 1, + aux_sym_shebang_repeat1, + STATE(1868), 1, sym_val_variable, - STATE(3836), 1, + STATE(2008), 1, sym_expr_parenthesized, - STATE(4168), 1, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6151), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8895] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1874), 1, - sym_comment, - STATE(2242), 1, - sym_short_flag, - STATE(2243), 1, - sym_long_flag, - STATE(3693), 1, + STATE(2138), 1, sym__inter_single_quotes, - STATE(3723), 1, + STATE(2139), 1, sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, + STATE(3168), 1, sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6153), 1, - sym__expression, - ACTIONS(3399), 2, + STATE(3694), 1, + sym__expr_binary_expression_parenthesized, + STATE(6587), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2316), 4, sym_expr_unary, - sym_expr_binary, + sym_expr_binary_parenthesized, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -252468,335 +243021,87 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9040] = 40, + [9080] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, + STATE(1825), 1, + sym_comment, + ACTIONS(1004), 16, anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, anon_sym_DASH2, - ACTIONS(5200), 1, anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1875), 1, - sym_comment, - STATE(2244), 1, - sym_short_flag, - STATE(2245), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6154), 1, - sym__expression, - ACTIONS(3399), 2, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9185] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1000), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3367), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1876), 1, - sym_comment, - STATE(2246), 1, - sym_short_flag, - STATE(2247), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6208), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9330] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1877), 1, - sym_comment, - STATE(2248), 1, - sym_short_flag, - STATE(2249), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6209), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9475] = 5, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9152] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5271), 1, - aux_sym__immediate_decimal_token2, - STATE(1878), 1, + STATE(1826), 1, sym_comment, - ACTIONS(1799), 15, + ACTIONS(988), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252805,8 +243110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1801), 46, + ACTIONS(990), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252821,6 +243125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252833,7 +243138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -252853,23 +243157,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, - [9550] = 6, + [9224] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5273), 1, - anon_sym_DOT, - STATE(2088), 1, - sym_path, - STATE(1879), 2, + STATE(1827), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(2142), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252878,7 +243178,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(977), 45, + aux_sym_unquoted_token1, + ACTIONS(2148), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252891,31 +243193,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9296] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1828), 1, + sym_comment, + ACTIONS(2334), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2336), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252924,12 +243293,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, - [9627] = 4, + [9368] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1880), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1829), 1, sym_comment, - ACTIONS(1004), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4868), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252943,7 +243316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1006), 49, + ACTIONS(4866), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252958,11 +243331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252984,7 +243355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252993,12 +243363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9700] = 4, + [9444] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1830), 1, sym_comment, - ACTIONS(5279), 16, + ACTIONS(2150), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253015,8 +243385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5276), 46, + ACTIONS(2156), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253030,10 +243401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -253062,122 +243431,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, - [9773] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1882), 1, - sym_comment, - STATE(2269), 1, - sym_short_flag, - STATE(2270), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6239), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9918] = 4, + [9516] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1831), 1, sym_comment, - ACTIONS(996), 13, + ACTIONS(1735), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253186,7 +243451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(998), 49, + aux_sym_unquoted_token2, + ACTIONS(1737), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253198,14 +243465,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253218,6 +243479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -253227,7 +243489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253236,14 +243499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9991] = 5, + [9588] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5282), 1, - anon_sym_EQ2, - STATE(1884), 1, + STATE(1832), 1, sym_comment, - ACTIONS(5132), 16, + ACTIONS(972), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253260,7 +243521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5130), 45, + ACTIONS(974), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253306,13 +243567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10066] = 4, + [9660] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1833), 1, sym_comment, - ACTIONS(5138), 17, - anon_sym_LPAREN, + ACTIONS(5076), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253329,7 +243589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5136), 45, + ACTIONS(5074), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253344,9 +243604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -253375,416 +243635,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, - [10139] = 40, + [9732] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, + STATE(1834), 1, + sym_comment, + ACTIONS(5080), 16, anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1886), 1, - sym_comment, - STATE(2194), 1, - sym_short_flag, - STATE(2196), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6358), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [10284] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1887), 1, - sym_comment, - STATE(2197), 1, - sym_short_flag, - STATE(2198), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6097), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [10429] = 40, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5196), 1, - anon_sym_DASH_DASH, - ACTIONS(5198), 1, - anon_sym_DASH2, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(1888), 1, - sym_comment, - STATE(2199), 1, - sym_short_flag, - STATE(2200), 1, - sym_long_flag, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6133), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [10574] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5214), 1, - anon_sym_LBRACK, - ACTIONS(5216), 1, - anon_sym_STAR2, - STATE(1889), 1, - sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7437), 1, - sym__command_name, - STATE(7473), 1, - sym_scope_pattern, - STATE(7492), 1, - sym_wild_card, - STATE(7545), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5169), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5210), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [10681] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1890), 1, - sym_comment, - ACTIONS(2379), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -253798,8 +243657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 46, + ACTIONS(5078), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253813,10 +243673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -253845,82 +243703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10754] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(1891), 1, - sym_comment, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 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(5284), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [10830] = 4, + [9804] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1835), 1, sym_comment, - ACTIONS(1799), 16, + ACTIONS(4826), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253937,9 +243725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1801), 45, + ACTIONS(2683), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253953,6 +243740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -253983,12 +243771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10902] = 4, + [9876] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1893), 1, + STATE(1836), 1, sym_comment, - ACTIONS(5186), 16, + ACTIONS(4985), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254005,7 +243793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5184), 45, + ACTIONS(4983), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254051,12 +243839,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, - [10974] = 4, + [9948] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1894), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(1837), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 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(5086), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10024] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1838), 1, sym_comment, - ACTIONS(5090), 16, + ACTIONS(2445), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254073,8 +243931,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5088), 45, + ACTIONS(2447), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254088,7 +243947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -254119,12 +243977,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, - [11046] = 4, + [10096] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1895), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1839), 1, sym_comment, - ACTIONS(1304), 13, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254138,7 +244000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1302), 48, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254150,14 +244012,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_COLON, - anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_else, anon_sym_LBRACE, - anon_sym_catch, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254187,19 +244047,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, - [11118] = 4, + [10172] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(5098), 1, + anon_sym_LBRACK2, + STATE(1840), 1, sym_comment, - ACTIONS(2399), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2315), 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, @@ -254208,10 +244068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2401), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2319), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254223,30 +244080,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -254255,19 +244116,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, - [11190] = 4, + [10246] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1841), 1, sym_comment, - ACTIONS(2072), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(984), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254276,9 +244137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2078), 45, - sym_raw_string_begin, + ACTIONS(986), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254291,30 +244150,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254323,12 +244184,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, - [11262] = 4, + [10318] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1842), 1, sym_comment, - ACTIONS(1022), 13, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254342,7 +244207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 48, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254357,7 +244222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -254382,7 +244246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254391,12 +244254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11334] = 4, + [10394] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1843), 1, sym_comment, - ACTIONS(1818), 16, + ACTIONS(1727), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254413,7 +244276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1820), 45, + ACTIONS(1729), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254459,21 +244322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11406] = 8, + [10466] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(5288), 1, - anon_sym_DOT_DOT2, - STATE(1900), 1, + STATE(1844), 1, sym_comment, - ACTIONS(5290), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 13, + ACTIONS(1277), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254487,8 +244341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 43, - ts_builtin_sym_end, + ACTIONS(1275), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254500,8 +244353,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, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254531,19 +244390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11486] = 4, + [10538] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1901), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1845), 1, sym_comment, - ACTIONS(1000), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 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, @@ -254552,10 +244413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1002), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254567,30 +244425,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254599,12 +244460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11558] = 4, + [10614] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1846), 1, sym_comment, - ACTIONS(5126), 16, + ACTIONS(1786), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254621,7 +244482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5124), 45, + ACTIONS(1788), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254667,12 +244528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11630] = 4, + [10686] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1847), 1, sym_comment, - ACTIONS(2082), 16, + ACTIONS(2437), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254689,7 +244550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2084), 45, + ACTIONS(2439), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254735,12 +244596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11702] = 4, + [10758] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1848), 1, sym_comment, - ACTIONS(1004), 16, + ACTIONS(1957), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254757,7 +244618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1006), 45, + ACTIONS(1959), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254803,12 +244664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11774] = 4, + [10830] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1849), 1, sym_comment, - ACTIONS(996), 16, + ACTIONS(2170), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254825,7 +244686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(998), 45, + ACTIONS(2172), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254871,12 +244732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11846] = 4, + [10902] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1850), 1, sym_comment, - ACTIONS(5138), 16, + ACTIONS(2382), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254893,7 +244754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5136), 45, + ACTIONS(2384), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254939,19 +244800,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11918] = 4, + [10974] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1907), 1, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(5102), 1, + aux_sym__immediate_decimal_token2, + STATE(1851), 1, sym_comment, - ACTIONS(1949), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1735), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254960,10 +244823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1951), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1737), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254975,30 +244836,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255007,12 +244870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11990] = 4, + [11050] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1852), 1, sym_comment, - ACTIONS(2454), 16, + ACTIONS(4753), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255029,7 +244892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2456), 45, + ACTIONS(4751), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255075,18 +244938,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12062] = 4, + [11122] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1909), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1853), 1, sym_comment, - ACTIONS(1771), 15, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255095,9 +244961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1773), 46, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255109,8 +244973,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255123,7 +244991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -255133,8 +245000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255143,12 +245008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12134] = 4, + [11198] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1854), 1, sym_comment, - ACTIONS(986), 16, + ACTIONS(1735), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255165,7 +245030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(988), 45, + ACTIONS(1737), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255211,19 +245076,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, - [12206] = 4, + [11270] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1855), 1, sym_comment, - ACTIONS(2470), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1727), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255232,9 +245096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2472), 45, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1729), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255247,30 +245110,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255279,12 +245144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12278] = 4, + [11342] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1912), 1, + STATE(1856), 1, sym_comment, - ACTIONS(2395), 16, + ACTIONS(2013), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255301,7 +245166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2397), 45, + ACTIONS(2015), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255347,16 +245212,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, - [12350] = 6, + [11414] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(1913), 1, + STATE(1857), 1, sym_comment, - STATE(8466), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(4994), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255370,7 +245235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4992), 46, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255417,17 +245282,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, - [12426] = 6, + [11490] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5292), 1, + ACTIONS(5104), 1, anon_sym_DOT_DOT2, - STATE(1914), 1, + STATE(1858), 1, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5106), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 13, + ACTIONS(2115), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255441,7 +245306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2096), 45, + ACTIONS(2121), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255487,17 +245352,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12502] = 6, + [11566] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(1915), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3190), 1, + sym__newline, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1859), 1, sym_comment, - ACTIONS(5298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 13, + STATE(1868), 1, + sym_val_variable, + STATE(2008), 1, + sym_expr_parenthesized, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2870), 1, + aux_sym_shebang_repeat1, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3694), 1, + sym__expr_binary_expression_parenthesized, + STATE(6512), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2316), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11708] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1860), 1, + sym_comment, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255511,7 +245478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2104), 45, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255528,6 +245495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255557,16 +245525,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, - [12578] = 6, + [11784] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(1916), 1, + STATE(1861), 1, sym_comment, - STATE(8466), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5006), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255580,7 +245548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5004), 46, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255627,12 +245595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12654] = 4, + [11860] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1917), 1, + STATE(1862), 1, sym_comment, - ACTIONS(2090), 16, + ACTIONS(4942), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255649,7 +245617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2096), 45, + ACTIONS(4940), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255695,19 +245663,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12726] = 4, + [11932] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1918), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1863), 1, sym_comment, - ACTIONS(2098), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 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, @@ -255716,10 +245686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2104), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255731,98 +245698,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [12798] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1919), 1, - sym_comment, - ACTIONS(2131), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2137), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255831,12 +245733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12870] = 4, + [12008] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1920), 1, + STATE(1864), 1, sym_comment, - ACTIONS(5222), 16, + ACTIONS(2342), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255853,7 +245755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5220), 45, + ACTIONS(2344), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255899,12 +245801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12942] = 4, + [12080] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1921), 1, + STATE(1865), 1, sym_comment, - ACTIONS(5226), 16, + ACTIONS(5062), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255921,7 +245823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5224), 45, + ACTIONS(5060), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255967,19 +245869,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, - [13014] = 4, + [12152] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1866), 1, sym_comment, - ACTIONS(2391), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4985), 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, @@ -255988,10 +245888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2393), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4983), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256003,30 +245900,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256035,12 +245937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13086] = 4, + [12224] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1923), 1, + STATE(1867), 1, sym_comment, - ACTIONS(2391), 16, + ACTIONS(2386), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256057,7 +245959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2393), 45, + ACTIONS(2388), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256103,14 +246005,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, - [13158] = 5, + [12296] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_LBRACK2, - STATE(1924), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(1868), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256124,7 +246029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2308), 47, + ACTIONS(1000), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256139,10 +246044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256172,12 +246075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13232] = 4, + [12372] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1869), 1, sym_comment, - ACTIONS(4998), 16, + ACTIONS(2449), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256194,8 +246097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4996), 45, + ACTIONS(2451), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256209,7 +246113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -256240,18 +246143,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13304] = 4, + [12444] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1926), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1870), 1, sym_comment, - ACTIONS(1818), 15, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256260,9 +246166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1820), 46, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256274,8 +246178,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256288,7 +246196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -256298,8 +246205,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256308,115 +246213,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, - [13376] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [12520] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1056), 1, - anon_sym_DOLLAR, - ACTIONS(3217), 1, - sym__newline, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - STATE(1860), 1, - sym__val_number, - STATE(1927), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1871), 1, sym_comment, - STATE(2027), 1, - sym_val_variable, - STATE(2041), 1, - sym_expr_parenthesized, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2960), 1, - aux_sym_shebang_repeat1, - STATE(3307), 1, - sym__val_number_decimal, - STATE(4158), 1, - sym__expr_binary_expression_parenthesized, - STATE(7288), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2441), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [13518] = 4, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 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(5094), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12596] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1872), 1, sym_comment, - ACTIONS(2086), 16, + ACTIONS(2390), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256433,7 +246305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2088), 45, + ACTIONS(2392), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256479,21 +246351,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, - [13590] = 8, + [12668] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(5302), 1, - anon_sym_DOT_DOT2, - STATE(1929), 1, + STATE(1873), 1, sym_comment, - ACTIONS(5304), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 13, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256507,8 +246374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 43, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256520,8 +246386,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256551,12 +246421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13670] = 4, + [12744] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1874), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(2174), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256573,7 +246443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 45, + ACTIONS(2176), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256619,12 +246489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13742] = 4, + [12816] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(1875), 1, sym_comment, - ACTIONS(2439), 16, + ACTIONS(2366), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256641,7 +246511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2441), 45, + ACTIONS(2368), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256687,12 +246557,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, - [13814] = 4, + [12888] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1932), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1876), 1, + sym_comment, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 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(5094), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12964] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1877), 1, sym_comment, - ACTIONS(5190), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256709,7 +246649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5188), 45, + ACTIONS(2340), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256755,19 +246695,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13886] = 4, + [13036] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1933), 1, + ACTIONS(5108), 1, + anon_sym_DOT_DOT2, + STATE(1878), 1, sym_comment, - ACTIONS(2458), 16, - anon_sym_DOLLAR, + ACTIONS(5110), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 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(2148), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13112] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5112), 1, + anon_sym_DOT_DOT2, + STATE(1879), 1, + sym_comment, + ACTIONS(5114), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2150), 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, @@ -256776,10 +246789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2460), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2156), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256791,30 +246801,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256823,12 +246835,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, - [13958] = 4, + [13188] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(5116), 1, + anon_sym_DOT_DOT2, + STATE(1880), 1, + sym_comment, + ACTIONS(5118), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 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(2164), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13264] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1881), 1, sym_comment, - ACTIONS(2462), 16, + ACTIONS(5027), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256845,7 +246927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2464), 45, + ACTIONS(5025), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256891,12 +246973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14030] = 4, + [13336] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1882), 1, sym_comment, - ACTIONS(2466), 16, + ACTIONS(5031), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256913,7 +246995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2468), 45, + ACTIONS(5029), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256959,19 +247041,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14102] = 4, + [13408] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1936), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1883), 1, sym_comment, - ACTIONS(2407), 16, - anon_sym_DOLLAR, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 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(5094), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13484] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5120), 1, + anon_sym_DOT_DOT2, + STATE(1884), 1, + sym_comment, + ACTIONS(5122), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 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, @@ -256980,10 +247135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2409), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1802), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256995,30 +247147,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257027,12 +247181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14174] = 4, + [13560] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2411), 16, + ACTIONS(1771), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257049,7 +247203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2413), 45, + ACTIONS(1773), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257095,12 +247249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14246] = 4, + [13632] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1886), 1, sym_comment, - ACTIONS(2415), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257117,7 +247271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2417), 45, + ACTIONS(2340), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257163,12 +247317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14318] = 4, + [13704] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1939), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2486), 16, + ACTIONS(2406), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257185,7 +247339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2488), 45, + ACTIONS(2408), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257231,12 +247385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14390] = 4, + [13776] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1888), 1, sym_comment, - ACTIONS(5230), 16, + ACTIONS(1997), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257253,7 +247407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5228), 45, + ACTIONS(1999), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257299,12 +247453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14462] = 4, + [13848] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1941), 1, + STATE(1889), 1, sym_comment, - ACTIONS(5234), 16, + ACTIONS(2001), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257321,7 +247475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5232), 45, + ACTIONS(2003), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257367,85 +247521,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, - [14534] = 4, + [13920] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1890), 1, sym_comment, - ACTIONS(1018), 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(1020), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2453), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14606] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1943), 1, - sym_comment, - ACTIONS(1014), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257454,7 +247542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 48, + aux_sym_unquoted_token1, + ACTIONS(2455), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257466,35 +247557,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257503,12 +247589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14678] = 4, + [13992] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2492), 16, + ACTIONS(1989), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257525,7 +247611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2494), 45, + ACTIONS(1991), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257571,16 +247657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14750] = 6, + [14064] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(1945), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(5124), 1, + anon_sym_DOT_DOT2, + STATE(1892), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5065), 13, + ACTIONS(5126), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257594,7 +247685,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(5063), 46, + ACTIONS(1802), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257606,12 +247698,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257641,12 +247729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14826] = 4, + [14144] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2482), 16, + ACTIONS(4963), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257663,9 +247751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2484), 45, + ACTIONS(4961), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257679,6 +247766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -257709,12 +247797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14898] = 4, + [14216] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1894), 1, sym_comment, - ACTIONS(2419), 16, + ACTIONS(2115), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257731,7 +247819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2421), 45, + ACTIONS(2121), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257777,12 +247865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14970] = 4, + [14288] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1948), 1, + STATE(1895), 1, sym_comment, - ACTIONS(2423), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257799,7 +247887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2425), 45, + ACTIONS(2431), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257845,12 +247933,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, - [15042] = 4, + [14360] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1949), 1, + ACTIONS(5128), 1, + anon_sym_DOT_DOT2, + STATE(1896), 1, + sym_comment, + ACTIONS(5130), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 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(1827), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14436] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1897), 1, sym_comment, - ACTIONS(2427), 16, + ACTIONS(1945), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257867,7 +248025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2429), 45, + ACTIONS(1947), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257913,12 +248071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15114] = 4, + [14508] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1898), 1, sym_comment, - ACTIONS(5045), 16, + ACTIONS(2413), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257935,8 +248093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2815), 45, + ACTIONS(2415), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257950,7 +248109,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -257981,21 +248139,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, - [15186] = 6, + [14580] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(1951), 1, + STATE(1899), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5066), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258004,7 +248160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4986), 46, + aux_sym_unquoted_token1, + ACTIONS(5064), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258016,33 +248175,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14652] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1900), 1, + sym_comment, + ACTIONS(2017), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2019), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258051,12 +248275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15262] = 4, + [14724] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1952), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2431), 16, + ACTIONS(2346), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258073,7 +248297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2433), 45, + ACTIONS(2348), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258119,12 +248343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15334] = 4, + [14796] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1953), 1, + STATE(1902), 1, sym_comment, - ACTIONS(5194), 16, + ACTIONS(2471), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258141,7 +248365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5192), 45, + ACTIONS(2473), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258187,12 +248411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15406] = 4, + [14868] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1954), 1, + STATE(1903), 1, sym_comment, - ACTIONS(2435), 16, + ACTIONS(1977), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258209,7 +248433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2437), 45, + ACTIONS(1979), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258255,12 +248479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15478] = 4, + [14940] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1955), 1, + STATE(1904), 1, sym_comment, - ACTIONS(2443), 16, + ACTIONS(5020), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258277,7 +248501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2445), 45, + ACTIONS(5017), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258323,12 +248547,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15550] = 4, + [15012] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1956), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3190), 1, + sym__newline, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1868), 1, + sym_val_variable, + STATE(1905), 1, sym_comment, - ACTIONS(2447), 16, + STATE(2008), 1, + sym_expr_parenthesized, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2870), 1, + aux_sym_shebang_repeat1, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3694), 1, + sym__expr_binary_expression_parenthesized, + STATE(6603), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2316), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [15154] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1906), 1, + sym_comment, + ACTIONS(2374), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258345,7 +248672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2449), 45, + ACTIONS(2376), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258391,12 +248718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15622] = 4, + [15226] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1957), 1, + STATE(1907), 1, sym_comment, - ACTIONS(5120), 16, + ACTIONS(2025), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258413,8 +248740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5118), 45, + ACTIONS(2027), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258428,7 +248756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -258459,12 +248786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15694] = 4, + [15298] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1958), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2474), 16, + ACTIONS(2421), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258481,7 +248808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2476), 45, + ACTIONS(2423), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258527,12 +248854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15766] = 4, + [15370] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1959), 1, + STATE(1909), 1, sym_comment, - ACTIONS(1941), 16, + ACTIONS(5039), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258549,7 +248876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1943), 45, + ACTIONS(5037), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258595,115 +248922,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15838] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, + [15442] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1910), 1, + sym_comment, + ACTIONS(5043), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(235), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5041), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, sym_val_date, - ACTIONS(241), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15514] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, + STATE(1911), 1, + sym_comment, + ACTIONS(2457), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2459), 45, sym_raw_string_begin, - ACTIONS(1056), 1, - anon_sym_DOLLAR, - ACTIONS(3217), 1, + ts_builtin_sym_end, sym__newline, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - STATE(1860), 1, - sym__val_number, - STATE(1960), 1, - sym_comment, - STATE(2027), 1, - sym_val_variable, - STATE(2028), 1, - aux_sym_shebang_repeat1, - STATE(2041), 1, - sym_expr_parenthesized, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3307), 1, - sym__val_number_decimal, - STATE(4158), 1, - sym__expr_binary_expression_parenthesized, - STATE(7281), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2441), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(431), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [15980] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15586] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1961), 1, + STATE(1912), 1, sym_comment, - ACTIONS(2504), 16, + ACTIONS(2370), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258720,7 +249080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2506), 45, + ACTIONS(2372), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258766,12 +249126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16052] = 4, + [15658] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1962), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2478), 16, + ACTIONS(4830), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258788,7 +249148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2480), 45, + ACTIONS(4828), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258834,12 +249194,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, - [16124] = 4, + [15730] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1963), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(5132), 1, + anon_sym_DOT_DOT2, + STATE(1914), 1, + sym_comment, + ACTIONS(5134), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 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(1827), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15810] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1915), 1, sym_comment, - ACTIONS(1779), 16, + ACTIONS(1653), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258856,7 +249288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1781), 45, + ACTIONS(1665), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258902,12 +249334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16196] = 4, + [15882] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1964), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2508), 16, + ACTIONS(2461), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258924,7 +249356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2510), 45, + ACTIONS(2463), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258970,12 +249402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16268] = 4, + [15954] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1965), 1, + STATE(1917), 1, sym_comment, - ACTIONS(1883), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258992,7 +249424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1885), 45, + ACTIONS(2487), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259038,12 +249470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16340] = 4, + [16026] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1966), 1, + STATE(1918), 1, sym_comment, - ACTIONS(1891), 16, + ACTIONS(4959), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259060,9 +249492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 45, + ACTIONS(4957), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259076,6 +249507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -259106,120 +249538,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, - [16412] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [16098] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1056), 1, - anon_sym_DOLLAR, - ACTIONS(3217), 1, - sym__newline, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - STATE(1860), 1, - sym__val_number, - STATE(1927), 1, - aux_sym_shebang_repeat1, - STATE(1967), 1, - sym_comment, - STATE(2027), 1, - sym_val_variable, - STATE(2041), 1, - sym_expr_parenthesized, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3307), 1, - sym__val_number_decimal, - STATE(4158), 1, - sym__expr_binary_expression_parenthesized, - STATE(7286), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2441), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16554] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1968), 1, + STATE(1919), 1, sym_comment, - ACTIONS(5126), 13, + ACTIONS(980), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259228,7 +249559,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(5124), 48, + ACTIONS(982), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259240,13 +249572,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_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259259,7 +249587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -259269,6 +249596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259277,18 +249606,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16626] = 4, + [16170] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1969), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1920), 1, sym_comment, - ACTIONS(1779), 15, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4872), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259297,9 +249629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 46, - ts_builtin_sym_end, + ACTIONS(4870), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259311,8 +249641,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259325,7 +249659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -259335,8 +249668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259345,12 +249676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16698] = 4, + [16246] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1970), 1, + STATE(1921), 1, sym_comment, - ACTIONS(1895), 16, + ACTIONS(2158), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259367,7 +249698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1897), 45, + ACTIONS(2164), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259413,20 +249744,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, - [16770] = 4, + [16318] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(1922), 1, sym_comment, - ACTIONS(1022), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2394), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259435,7 +249765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 45, + aux_sym_unquoted_token1, + ACTIONS(2396), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259446,33 +249780,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259481,12 +249812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16842] = 4, + [16390] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1972), 1, + STATE(1923), 1, sym_comment, - ACTIONS(4954), 16, + ACTIONS(2398), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259503,7 +249834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4952), 45, + ACTIONS(2400), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259549,22 +249880,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, - [16914] = 6, + [16462] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5306), 1, - anon_sym_DOT_DOT2, - STATE(1973), 1, + STATE(1924), 1, sym_comment, - ACTIONS(5308), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2425), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259573,7 +249901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 45, + aux_sym_unquoted_token1, + ACTIONS(2427), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259585,32 +249916,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259619,12 +249948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16990] = 4, + [16534] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1974), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2359), 16, + ACTIONS(2354), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259641,7 +249970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2361), 45, + ACTIONS(2356), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259687,12 +250016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17062] = 4, + [16606] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1975), 1, + STATE(1926), 1, sym_comment, - ACTIONS(1917), 16, + ACTIONS(2433), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259709,7 +250038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1919), 45, + ACTIONS(2435), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259755,12 +250084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17134] = 4, + [16678] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1976), 1, + STATE(1927), 1, sym_comment, - ACTIONS(5263), 16, + ACTIONS(2029), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259777,7 +250106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5261), 45, + ACTIONS(2031), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259823,80 +250152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17206] = 4, + [16750] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1977), 1, - sym_comment, - ACTIONS(1000), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1002), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [17278] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1978), 1, + STATE(1928), 1, sym_comment, - ACTIONS(2363), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259913,7 +250174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2365), 45, + ACTIONS(1020), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259959,12 +250220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17350] = 4, + [16822] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1979), 1, + STATE(1929), 1, sym_comment, - ACTIONS(2367), 16, + ACTIONS(958), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259981,7 +250242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2369), 45, + ACTIONS(960), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260027,20 +250288,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, - [17422] = 4, + [16894] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(1930), 1, sym_comment, - ACTIONS(1018), 16, - sym__newline, + ACTIONS(1786), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260049,7 +250308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1020), 45, + aux_sym_unquoted_token2, + ACTIONS(1788), 46, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260062,7 +250324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260075,6 +250336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -260086,7 +250348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260095,20 +250356,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, - [17494] = 4, + [16966] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1981), 1, + STATE(1931), 1, sym_comment, - ACTIONS(1014), 16, - sym__newline, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + ACTIONS(2350), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260117,7 +250377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, + aux_sym_unquoted_token1, + ACTIONS(2352), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260128,33 +250392,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17038] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1932), 1, + sym_comment, + ACTIONS(2402), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, - aux_sym_record_entry_token1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2404), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260163,12 +250492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17566] = 4, + [17110] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1982), 1, + STATE(1933), 1, sym_comment, - ACTIONS(1925), 16, + ACTIONS(976), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260185,7 +250514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1927), 45, + ACTIONS(978), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260231,12 +250560,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, - [17638] = 4, + [17182] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1983), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1934), 1, + sym_comment, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4876), 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(4874), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17258] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1935), 1, sym_comment, - ACTIONS(1933), 16, + ACTIONS(2505), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260253,7 +250652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1935), 45, + ACTIONS(2507), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260299,12 +250698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17710] = 4, + [17330] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1984), 1, + STATE(1936), 1, sym_comment, - ACTIONS(2371), 16, + ACTIONS(2467), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260321,7 +250720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2373), 45, + ACTIONS(2469), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260367,19 +250766,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, - [17782] = 4, + [17402] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1985), 1, + STATE(1937), 1, sym_comment, - ACTIONS(1004), 15, + ACTIONS(1771), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260388,7 +250786,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(1006), 46, + aux_sym_unquoted_token2, + ACTIONS(1773), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260403,7 +250802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260416,6 +250814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -260435,12 +250834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17854] = 4, + [17474] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1986), 1, + STATE(1938), 1, sym_comment, - ACTIONS(2375), 16, + ACTIONS(2378), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260457,7 +250856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2377), 45, + ACTIONS(2380), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260503,12 +250902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17926] = 4, + [17546] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1987), 1, + STATE(1939), 1, sym_comment, - ACTIONS(1937), 16, + ACTIONS(2358), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260525,7 +250924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1939), 45, + ACTIONS(2360), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260571,87 +250970,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, - [17998] = 4, + [17618] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1988), 1, + STATE(1940), 1, sym_comment, - ACTIONS(996), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(998), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2441), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18070] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1989), 1, - sym_comment, - ACTIONS(986), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260660,7 +250991,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(988), 46, + aux_sym_unquoted_token1, + ACTIONS(2443), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260673,32 +251006,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260707,12 +251038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18142] = 4, + [17690] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1990), 1, + STATE(1941), 1, sym_comment, - ACTIONS(2379), 16, + ACTIONS(4997), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260729,7 +251060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2381), 45, + ACTIONS(4995), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260775,12 +251106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18214] = 4, + [17762] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1991), 1, + STATE(1942), 1, sym_comment, - ACTIONS(5245), 16, + ACTIONS(2362), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260797,7 +251128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5243), 45, + ACTIONS(2364), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260843,80 +251174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18286] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1992), 1, - sym_comment, - ACTIONS(5138), 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(5136), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18358] = 4, + [17834] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1993), 1, + STATE(1943), 1, sym_comment, - ACTIONS(2383), 16, + ACTIONS(5001), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260933,7 +251196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2385), 45, + ACTIONS(4999), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260979,12 +251242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18430] = 4, + [17906] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1994), 1, + STATE(1944), 1, sym_comment, - ACTIONS(2520), 16, + ACTIONS(962), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -261001,7 +251264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2522), 45, + ACTIONS(964), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -261047,82 +251310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18502] = 6, + [17978] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5310), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5312), 1, - aux_sym__immediate_decimal_token2, - STATE(1995), 1, - sym_comment, - ACTIONS(1771), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1773), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [18578] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1996), 1, + STATE(1945), 1, sym_comment, - ACTIONS(1687), 16, + ACTIONS(4842), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -261139,9 +251332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1699), 45, + ACTIONS(4840), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261155,6 +251347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -261185,12 +251378,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18650] = 4, + [18050] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1997), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3190), 1, + sym__newline, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1868), 1, + sym_val_variable, + STATE(1946), 1, sym_comment, - ACTIONS(2387), 16, + STATE(1947), 1, + aux_sym_shebang_repeat1, + STATE(2008), 1, + sym_expr_parenthesized, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3694), 1, + sym__expr_binary_expression_parenthesized, + STATE(6592), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2316), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18192] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3190), 1, + sym__newline, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1868), 1, + sym_val_variable, + STATE(1947), 1, + sym_comment, + STATE(2008), 1, + sym_expr_parenthesized, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2870), 1, + aux_sym_shebang_repeat1, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3694), 1, + sym__expr_binary_expression_parenthesized, + STATE(6594), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2316), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18334] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3190), 1, + sym__newline, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1868), 1, + sym_val_variable, + STATE(1905), 1, + aux_sym_shebang_repeat1, + STATE(1948), 1, + sym_comment, + STATE(2008), 1, + sym_expr_parenthesized, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3694), 1, + sym__expr_binary_expression_parenthesized, + STATE(6601), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2316), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [18476] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1949), 1, + sym_comment, + ACTIONS(2417), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -261207,7 +251709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2389), 45, + ACTIONS(2419), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -261253,16 +251755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18722] = 6, + [18548] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - anon_sym_DOT, - ACTIONS(5316), 1, - aux_sym__immediate_decimal_token2, - STATE(1998), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1950), 1, sym_comment, - ACTIONS(1779), 14, + STATE(2550), 1, + sym_cell_path, + ACTIONS(1973), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261276,8 +251782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 45, + ACTIONS(1975), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261289,10 +251795,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261305,7 +251809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -261323,16 +251826,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, - [18798] = 6, + [18627] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(1999), 1, + STATE(1951), 1, sym_comment, - STATE(8202), 1, + STATE(2235), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261346,7 +251851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261362,8 +251867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261393,16 +251896,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, - [18874] = 6, + [18704] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2000), 1, + STATE(1952), 1, sym_comment, - STATE(8202), 1, + STATE(2236), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261416,7 +251921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261432,8 +251937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261463,84 +251966,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, - [18950] = 4, + [18781] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2001), 1, - sym_comment, - ACTIONS(1052), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1054), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [19022] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2002), 1, + STATE(1953), 1, sym_comment, - STATE(8202), 1, + STATE(2308), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261554,7 +251991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261570,8 +252007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261601,16 +252036,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, - [19098] = 6, + [18858] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2003), 1, + STATE(1954), 1, sym_comment, - STATE(8202), 1, + STATE(2239), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261624,7 +252061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261640,8 +252077,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261671,16 +252106,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, - [19174] = 6, + [18935] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2004), 1, + STATE(1955), 1, sym_comment, - STATE(8202), 1, + STATE(2241), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261694,7 +252131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261710,8 +252147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261741,18 +252176,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, - [19250] = 4, + [19012] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2005), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1956), 1, sym_comment, - ACTIONS(1799), 15, + STATE(2242), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261761,9 +252201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1801), 46, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261775,8 +252213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261789,7 +252229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -261799,8 +252238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261809,17 +252246,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, - [19322] = 6, + [19089] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5318), 1, - anon_sym_DOT_DOT2, - STATE(2006), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1957), 1, sym_comment, - ACTIONS(5320), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 13, + STATE(2243), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261833,7 +252271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2137), 45, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261849,7 +252287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261879,84 +252316,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, - [19398] = 4, + [19166] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2007), 1, - sym_comment, - ACTIONS(5025), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5023), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [19470] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2008), 1, + STATE(1958), 1, sym_comment, - STATE(8202), 1, + STATE(2245), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261970,7 +252341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261986,8 +252357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262017,16 +252386,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, - [19546] = 6, + [19243] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2009), 1, + STATE(1959), 1, sym_comment, - STATE(8202), 1, + STATE(2248), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262040,7 +252411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262056,8 +252427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262087,16 +252456,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, - [19622] = 6, + [19320] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2010), 1, + STATE(1960), 1, sym_comment, - STATE(8202), 1, + STATE(2249), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262110,7 +252481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262126,8 +252497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262157,16 +252526,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, - [19698] = 6, + [19397] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2011), 1, + STATE(1961), 1, sym_comment, - STATE(8202), 1, + STATE(2253), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262180,7 +252551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262196,8 +252567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262227,16 +252596,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, - [19774] = 6, + [19474] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2012), 1, + STATE(1962), 1, sym_comment, - STATE(8202), 1, + STATE(2258), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262250,7 +252621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262266,8 +252637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262297,16 +252666,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, - [19850] = 6, + [19551] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2013), 1, + STATE(1963), 1, sym_comment, - STATE(8202), 1, + STATE(2261), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262320,7 +252691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262336,8 +252707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262367,16 +252736,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, - [19926] = 6, + [19628] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2014), 1, + STATE(1964), 1, sym_comment, - STATE(8202), 1, + STATE(2269), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262390,7 +252761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262406,8 +252777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262437,17 +252806,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, - [20002] = 6, + [19705] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5322), 1, - anon_sym_DOT_DOT2, - STATE(2015), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1965), 1, sym_comment, - ACTIONS(5324), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 13, + STATE(2290), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262461,7 +252831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 45, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262477,7 +252847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262507,21 +252876,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, - [20078] = 5, + [19782] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5326), 1, - anon_sym_QMARK2, - STATE(2016), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1966), 1, sym_comment, - ACTIONS(1008), 15, + STATE(2300), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262530,8 +252901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1010), 45, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262543,8 +252913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262566,8 +252938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262576,21 +252946,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, - [20152] = 5, + [19859] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_QMARK2, - STATE(2017), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1967), 1, sym_comment, - ACTIONS(990), 15, + STATE(2191), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262599,8 +252971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 45, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262612,8 +252983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262635,8 +253008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262645,19 +253016,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, - [20226] = 4, + [19936] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2018), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1968), 1, sym_comment, - ACTIONS(1771), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2223), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 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, @@ -262666,10 +253041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1773), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262681,30 +253053,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -262713,17 +253086,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, - [20298] = 6, + [20013] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_DOT_DOT2, - STATE(2019), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1969), 1, sym_comment, - ACTIONS(5332), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 13, + STATE(2250), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262737,7 +253111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2078), 45, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262753,7 +253127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262783,19 +253156,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, - [20374] = 4, + [20090] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2020), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1970), 1, sym_comment, - ACTIONS(5259), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2296), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 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, @@ -262804,10 +253181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5257), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262819,98 +253193,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [20446] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_comment, - ACTIONS(5182), 16, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5180), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -262919,19 +253226,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, - [20518] = 4, + [20167] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2022), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1971), 1, sym_comment, - ACTIONS(1034), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2306), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 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, @@ -262940,10 +253251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1036), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262955,98 +253263,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [20590] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2023), 1, - sym_comment, - ACTIONS(1957), 16, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1959), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -263055,19 +253296,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, - [20662] = 4, + [20244] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2024), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1972), 1, sym_comment, - ACTIONS(5279), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2158), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 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, @@ -263076,10 +253321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5276), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263091,30 +253333,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -263123,223 +253366,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, - [20734] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1056), 1, - anon_sym_DOLLAR, - ACTIONS(3217), 1, - sym__newline, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - STATE(1860), 1, - sym__val_number, - STATE(2025), 1, - sym_comment, - STATE(2026), 1, - aux_sym_shebang_repeat1, - STATE(2027), 1, - sym_val_variable, - STATE(2041), 1, - sym_expr_parenthesized, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3307), 1, - sym__val_number_decimal, - STATE(4158), 1, - sym__expr_binary_expression_parenthesized, - STATE(7272), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2441), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [20876] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1056), 1, - anon_sym_DOLLAR, - ACTIONS(3217), 1, - sym__newline, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - STATE(1860), 1, - sym__val_number, - STATE(2026), 1, - sym_comment, - STATE(2027), 1, - sym_val_variable, - STATE(2041), 1, - sym_expr_parenthesized, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2960), 1, - aux_sym_shebang_repeat1, - STATE(3307), 1, - sym__val_number_decimal, - STATE(4158), 1, - sym__expr_binary_expression_parenthesized, - STATE(7276), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2441), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [21018] = 6, + [20321] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT_DOT2, - STATE(2027), 1, + ACTIONS(4763), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5146), 1, + anon_sym_DOT, + STATE(1973), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 13, + ACTIONS(1735), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263353,7 +253389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 45, + ACTIONS(1737), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263399,121 +253435,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21094] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(383), 1, - anon_sym_LPAREN, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(1056), 1, - anon_sym_DOLLAR, - ACTIONS(3217), 1, - sym__newline, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - STATE(1860), 1, - sym__val_number, - STATE(2027), 1, - sym_val_variable, - STATE(2028), 1, - sym_comment, - STATE(2041), 1, - sym_expr_parenthesized, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2960), 1, - aux_sym_shebang_repeat1, - STATE(3307), 1, - sym__val_number_decimal, - STATE(4158), 1, - sym__expr_binary_expression_parenthesized, - STATE(7181), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2441), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [21236] = 7, + [20396] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2029), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1974), 1, sym_comment, - STATE(2300), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + STATE(2537), 1, + sym_cell_path, + ACTIONS(1977), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263527,7 +253462,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(5334), 44, + ACTIONS(1979), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263539,10 +253475,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263572,18 +253506,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21313] = 7, + [20475] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2030), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1975), 1, sym_comment, - STATE(2421), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + STATE(2538), 1, + sym_cell_path, + ACTIONS(1981), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263597,7 +253533,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(5334), 44, + ACTIONS(1983), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263609,10 +253546,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263642,18 +253577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21390] = 7, + [20554] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2031), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1976), 1, sym_comment, - STATE(2337), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + STATE(2546), 1, + sym_cell_path, + ACTIONS(1985), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263667,7 +253604,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(5338), 44, + ACTIONS(1987), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263679,10 +253617,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263712,20 +253648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21467] = 8, + [20633] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2032), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2635), 1, + STATE(1977), 1, + sym_comment, + STATE(2547), 1, sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(1829), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263739,7 +253675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 43, + ACTIONS(1831), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263783,12 +253719,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21546] = 4, + [20712] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2033), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1978), 1, sym_comment, - ACTIONS(2407), 13, + STATE(2501), 1, + sym_cell_path, + ACTIONS(1945), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263802,7 +253746,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(2409), 47, + ACTIONS(1947), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263814,13 +253759,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263850,17 +253790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21617] = 6, + [20791] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5344), 1, - anon_sym_DOT, - STATE(2293), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, sym_path, - STATE(2034), 2, + STATE(1979), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 13, + STATE(2462), 1, + sym_cell_path, + ACTIONS(1949), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263874,7 +253817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(977), 44, + ACTIONS(1951), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263889,7 +253832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263919,12 +253861,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, - [21692] = 4, + [20870] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2035), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1980), 1, sym_comment, - ACTIONS(2492), 13, + STATE(2169), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263938,7 +253886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2494), 47, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263953,10 +253901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263986,121 +253931,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, - [21763] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [20947] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2036), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1981), 1, sym_comment, - STATE(2164), 1, - sym__inter_single_quotes, STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8183), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [21902] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2037), 1, - sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2214), 1, - sym_cell_path, - STATE(2293), 1, - sym_path, - ACTIONS(1757), 13, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264114,8 +253956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1761), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264127,8 +253968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264158,18 +254001,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, - [21981] = 7, + [21024] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2038), 1, + STATE(1982), 1, sym_comment, - STATE(2427), 1, + STATE(2171), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264183,7 +254026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264228,119 +254071,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, - [22058] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2039), 1, - sym_comment, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8204), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [22197] = 7, + [21101] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2040), 1, + STATE(1983), 1, sym_comment, - STATE(2388), 1, + STATE(2172), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264354,7 +254096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264399,25 +254141,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22274] = 9, + [21178] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT_DOT2, - ACTIONS(5349), 1, - sym__newline, - STATE(2041), 1, + ACTIONS(5152), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token2, + STATE(1984), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5354), 5, + ACTIONS(1727), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5358), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264426,7 +254164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5352), 20, + aux_sym_unquoted_token2, + ACTIONS(1729), 44, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264437,17 +254178,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_LBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5356), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -264462,6 +254192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -264471,20 +254202,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22355] = 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, + [21253] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2042), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1985), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2637), 1, - sym_cell_path, - ACTIONS(2033), 13, + STATE(2174), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264498,8 +254235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2035), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264511,8 +254247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264542,18 +254280,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, - [22434] = 7, + [21330] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2043), 1, + STATE(1986), 1, sym_comment, - STATE(2338), 1, + STATE(2175), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264567,7 +254305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264612,20 +254350,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, - [22511] = 8, + [21407] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2044), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1987), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2171), 1, - sym_cell_path, - STATE(2293), 1, - sym_path, - ACTIONS(969), 13, + STATE(2176), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264639,8 +254375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(971), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264652,8 +254387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264683,18 +254420,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, - [22590] = 7, + [21484] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2045), 1, + STATE(1988), 1, sym_comment, - STATE(2408), 1, + STATE(2180), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264708,7 +254445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264753,18 +254490,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, - [22667] = 7, + [21561] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2046), 1, + STATE(1989), 1, sym_comment, - STATE(2324), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264778,7 +254515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264823,18 +254560,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, - [22744] = 7, + [21638] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2047), 1, + STATE(1990), 1, sym_comment, - STATE(2402), 1, + STATE(2195), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264848,7 +254585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264893,12 +254630,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, - [22821] = 4, + [21715] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2048), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(1991), 1, sym_comment, - ACTIONS(2508), 13, + STATE(2198), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264912,7 +254655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2510), 47, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264927,10 +254670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264960,18 +254700,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, - [22892] = 7, + [21792] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2049), 1, + STATE(1992), 1, sym_comment, - STATE(2308), 1, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264985,7 +254725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265030,18 +254770,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, - [22969] = 7, + [21869] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2050), 1, + STATE(1993), 1, sym_comment, - STATE(2339), 1, + STATE(2201), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265055,7 +254795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265100,12 +254840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23046] = 4, + [21946] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1994), 1, sym_comment, - ACTIONS(2359), 13, + STATE(2474), 1, + sym_cell_path, + ACTIONS(1989), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265119,7 +254867,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(2361), 47, + ACTIONS(1991), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265131,13 +254880,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265167,20 +254911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23117] = 8, + [22025] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2052), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2673), 1, + STATE(1995), 1, + sym_comment, + STATE(2475), 1, sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(1993), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265194,7 +254938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 43, + ACTIONS(1995), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -265238,18 +254982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23196] = 7, + [22104] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2053), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1996), 1, sym_comment, - STATE(2341), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + STATE(2477), 1, + sym_cell_path, + ACTIONS(1997), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265263,7 +255009,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(5338), 44, + ACTIONS(1999), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265275,10 +255022,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265308,17 +255053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23273] = 6, + [22183] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT_DOT2, - STATE(2054), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1997), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5354), 13, + STATE(2478), 1, + sym_cell_path, + ACTIONS(2001), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265332,7 +255080,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(5356), 44, + ACTIONS(2003), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265344,10 +255093,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265377,18 +255124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23348] = 7, + [22262] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2055), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1998), 1, sym_comment, - STATE(2378), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + STATE(2479), 1, + sym_cell_path, + ACTIONS(2005), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265402,7 +255151,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(5360), 44, + ACTIONS(2007), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265414,10 +255164,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265447,18 +255195,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23425] = 7, + [22341] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2056), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(1999), 1, sym_comment, - STATE(2316), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + STATE(2482), 1, + sym_cell_path, + ACTIONS(2009), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265472,7 +255222,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(5364), 44, + ACTIONS(2011), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265484,10 +255235,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265517,18 +255266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23502] = 7, + [22420] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2057), 1, + ACTIONS(5102), 1, + aux_sym__immediate_decimal_token2, + STATE(2000), 1, sym_comment, - STATE(2321), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(1735), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265542,7 +255287,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(5364), 44, + aux_sym_unquoted_token2, + ACTIONS(1737), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265557,7 +255303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265570,6 +255316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -265587,12 +255334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23579] = 4, + [22493] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2058), 1, + ACTIONS(5156), 1, + aux_sym__immediate_decimal_token2, + STATE(2001), 1, sym_comment, - ACTIONS(2371), 13, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265606,7 +255355,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(2373), 47, + aux_sym_unquoted_token2, + ACTIONS(1773), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265621,10 +255371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265637,6 +255384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -265654,20 +255402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23650] = 8, + [22566] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2059), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2618), 1, + STATE(2002), 1, + sym_comment, + STATE(2509), 1, sym_cell_path, - ACTIONS(1941), 13, + ACTIONS(2013), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265681,7 +255429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 43, + ACTIONS(2015), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -265725,12 +255473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23729] = 4, + [22645] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2060), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(2003), 1, sym_comment, - ACTIONS(1883), 13, + STATE(2510), 1, + sym_cell_path, + ACTIONS(2017), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265744,7 +255500,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(1885), 47, + ACTIONS(2019), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265756,13 +255513,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265792,20 +255544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23800] = 8, + [22724] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2061), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2619), 1, + STATE(2004), 1, + sym_comment, + STATE(2511), 1, sym_cell_path, - ACTIONS(1871), 13, + ACTIONS(2021), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265819,7 +255571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 43, + ACTIONS(2023), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -265863,12 +255615,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23879] = 4, + [22803] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2062), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(2005), 1, sym_comment, - ACTIONS(1891), 13, + STATE(2516), 1, + sym_cell_path, + ACTIONS(2025), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265882,7 +255642,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(1893), 47, + ACTIONS(2027), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265894,13 +255655,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265930,18 +255686,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, - [23950] = 7, + [22882] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2063), 1, + ACTIONS(5158), 1, + anon_sym_DOT, + ACTIONS(5160), 1, + aux_sym__immediate_decimal_token2, + STATE(2006), 1, sym_comment, - STATE(2342), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(1735), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265955,7 +255709,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(5364), 44, + aux_sym_unquoted_token2, + ACTIONS(1737), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265967,10 +255723,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265983,6 +255737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -266000,20 +255755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24027] = 8, + [22957] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2064), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2664), 1, + STATE(2007), 1, + sym_comment, + STATE(2517), 1, sym_cell_path, - ACTIONS(1875), 13, + ACTIONS(2029), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266027,7 +255782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1877), 43, + ACTIONS(2031), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266071,17 +255826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24106] = 4, + [23036] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2065), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + ACTIONS(5162), 1, + sym__newline, + STATE(2008), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5167), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5171), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266090,8 +255853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 47, - sym__newline, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266103,33 +255865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, @@ -266138,47 +255874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24177] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2066), 1, - sym_comment, - STATE(2350), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 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(5364), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5169), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266200,20 +255898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24254] = 4, + [23117] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2067), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2009), 1, sym_comment, - ACTIONS(2375), 13, + STATE(2230), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266227,7 +255923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2377), 47, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266242,10 +255938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266275,18 +255968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24325] = 7, + [23194] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2068), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(2010), 1, sym_comment, - STATE(2392), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + STATE(2520), 1, + sym_cell_path, + ACTIONS(1965), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266300,7 +255995,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(5360), 44, + ACTIONS(1967), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266312,10 +256008,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266345,20 +256039,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, - [24402] = 8, + [23273] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2069), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(2011), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2674), 1, - sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5167), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266372,8 +256063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 43, - ts_builtin_sym_end, + ACTIONS(5169), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266385,8 +256075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266416,18 +256108,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, - [24481] = 7, + [23348] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2070), 1, + STATE(2012), 1, sym_comment, - STATE(2361), 1, + STATE(2299), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266441,7 +256133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266486,12 +256178,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, - [24558] = 4, + [23425] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2071), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2013), 1, sym_comment, - ACTIONS(2363), 13, + STATE(2302), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266505,7 +256203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 47, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266520,10 +256218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266553,18 +256248,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, - [24629] = 7, + [23502] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2072), 1, + STATE(2014), 1, sym_comment, - STATE(2419), 1, + STATE(2228), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266578,7 +256273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266623,18 +256318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24706] = 7, + [23579] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2073), 1, + STATE(2015), 1, sym_comment, - STATE(2412), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(2342), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266648,7 +256337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(2344), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266663,7 +256352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266693,18 +256385,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, - [24783] = 7, + [23650] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2074), 1, + STATE(2016), 1, sym_comment, - STATE(2428), 1, + STATE(2282), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266718,7 +256410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266763,20 +256455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24860] = 8, + [23727] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2075), 1, + STATE(2017), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2678), 1, - sym_cell_path, - ACTIONS(1953), 13, + ACTIONS(2115), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266790,8 +256474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1955), 43, - ts_builtin_sym_end, + ACTIONS(2121), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266803,8 +256486,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266834,18 +256522,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, - [24939] = 7, + [23798] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2076), 1, + STATE(2018), 1, sym_comment, - STATE(2393), 1, + STATE(2209), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266859,7 +256547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266904,18 +256592,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, - [25016] = 7, + [23875] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2077), 1, + STATE(2019), 1, sym_comment, - STATE(2332), 1, + STATE(2203), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266929,7 +256617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266974,18 +256662,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, - [25093] = 7, + [23952] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2078), 1, + STATE(2020), 1, sym_comment, - STATE(2298), 1, + STATE(2196), 1, aux_sym_shebang_repeat1, - STATE(8202), 1, + STATE(7268), 1, sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266999,7 +256687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267044,14 +256732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25170] = 5, + [24029] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5316), 1, - aux_sym__immediate_decimal_token2, - STATE(2079), 1, + STATE(2021), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(2354), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267065,8 +256751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 45, + ACTIONS(2356), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267081,7 +256766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267094,7 +256782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -267112,12 +256799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25243] = 4, + [24100] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(2022), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(2505), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267131,7 +256818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2421), 47, + ACTIONS(2507), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267179,12 +256866,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, - [25314] = 4, + [24171] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2081), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2023), 1, sym_comment, - ACTIONS(1937), 13, + STATE(2291), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267198,7 +256891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 47, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267213,10 +256906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267246,18 +256936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25385] = 7, + [24248] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2082), 1, + STATE(2024), 1, sym_comment, - STATE(2394), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(2142), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267271,7 +256955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(2148), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267286,7 +256970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267316,18 +257003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25462] = 7, + [24319] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2083), 1, + STATE(2025), 1, sym_comment, - STATE(2345), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(2150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267341,7 +257022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(2156), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267356,7 +257037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267386,12 +257070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25539] = 4, + [24390] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2084), 1, + STATE(2026), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(2158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267405,7 +257089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 47, + ACTIONS(2164), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267453,12 +257137,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, - [25610] = 4, + [24461] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2085), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2027), 1, sym_comment, - ACTIONS(2470), 13, + STATE(2165), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267472,7 +257162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2472), 47, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267487,10 +257177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267520,12 +257207,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, - [25681] = 4, + [24538] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2086), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2028), 1, sym_comment, - ACTIONS(2367), 13, + STATE(2161), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267539,7 +257232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 47, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267554,10 +257247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267587,16 +257277,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, - [25752] = 6, + [24615] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5368), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5370), 1, - aux_sym__immediate_decimal_token2, - STATE(2087), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2029), 1, sym_comment, - ACTIONS(1771), 14, + STATE(2188), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267610,9 +257302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1773), 44, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267624,8 +257314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267638,7 +257330,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [24692] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, anon_sym_LPAREN2, + STATE(2030), 1, + sym_comment, + STATE(2211), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 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(5173), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -267656,19 +257417,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, - [25827] = 4, + [24769] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2088), 1, + STATE(2031), 1, sym_comment, - ACTIONS(1022), 15, + ACTIONS(2429), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267677,8 +257436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 45, - ts_builtin_sym_end, + ACTIONS(2431), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267690,8 +257448,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267713,8 +257476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267723,18 +257484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25898] = 7, + [24840] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2089), 1, + STATE(2032), 1, sym_comment, - STATE(2391), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(2433), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267748,7 +257503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(2435), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267763,7 +257518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267793,12 +257551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25975] = 4, + [24911] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2090), 1, + STATE(2033), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2437), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267812,7 +257570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2096), 47, + ACTIONS(2439), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267860,12 +257618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26046] = 4, + [24982] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2091), 1, + STATE(2034), 1, sym_comment, - ACTIONS(2423), 13, + ACTIONS(2366), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267879,7 +257637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2425), 47, + ACTIONS(2368), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267927,12 +257685,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, - [26117] = 4, + [25053] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2092), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2035), 1, sym_comment, - ACTIONS(2415), 13, + STATE(2254), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267946,7 +257710,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2417), 47, + ACTIONS(5173), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25130] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2036), 1, + sym_comment, + ACTIONS(2370), 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(2372), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267994,12 +257822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26188] = 4, + [25201] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2093), 1, + STATE(2037), 1, sym_comment, - ACTIONS(2098), 13, + ACTIONS(2445), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268013,7 +257841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2104), 47, + ACTIONS(2447), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268061,18 +257889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26259] = 7, + [25272] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2094), 1, + STATE(2038), 1, sym_comment, - STATE(2359), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(2449), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268086,7 +257908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(2451), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268101,7 +257923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268131,20 +257956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26336] = 8, + [25343] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2095), 1, + STATE(2039), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2268), 1, - sym_cell_path, - STATE(2293), 1, - sym_path, - ACTIONS(1763), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268158,8 +257975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1765), 43, - ts_builtin_sym_end, + ACTIONS(2455), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268171,8 +257987,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268202,12 +258023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26415] = 4, + [25414] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2096), 1, + STATE(2040), 1, sym_comment, - ACTIONS(1895), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268221,7 +258042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 47, + ACTIONS(2459), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268269,12 +258090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26486] = 4, + [25485] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2097), 1, + STATE(2041), 1, sym_comment, - ACTIONS(2435), 13, + ACTIONS(2461), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268288,7 +258109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2437), 47, + ACTIONS(2463), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268336,19 +258157,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, - [26557] = 4, + [25556] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(2042), 1, sym_comment, - ACTIONS(1014), 15, + ACTIONS(2467), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268357,8 +258176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, - ts_builtin_sym_end, + ACTIONS(2469), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268370,8 +258188,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268393,8 +258216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268403,18 +258224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26628] = 7, + [25627] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2099), 1, + STATE(2043), 1, sym_comment, - STATE(2380), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(2471), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268428,7 +258243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(2473), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268443,7 +258258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268473,18 +258291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26705] = 7, + [25698] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2100), 1, + STATE(2044), 1, sym_comment, - STATE(2395), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(1977), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268498,7 +258310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(1979), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268513,7 +258325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268543,18 +258358,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26782] = 7, + [25769] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2101), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(2045), 1, sym_comment, - STATE(2379), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + STATE(2449), 1, + sym_cell_path, + ACTIONS(1957), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268568,7 +258385,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(5360), 44, + ACTIONS(1959), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268580,10 +258398,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268613,12 +258429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26859] = 4, + [25848] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2102), 1, + STATE(2046), 1, sym_comment, - ACTIONS(2395), 13, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268632,7 +258448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2397), 47, + ACTIONS(2376), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268680,14 +258496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26930] = 5, + [25919] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5372), 1, - aux_sym__immediate_decimal_token2, - STATE(2103), 1, + STATE(2047), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(2378), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268701,8 +258515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1801), 45, + ACTIONS(2380), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268717,7 +258530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268730,7 +258546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -268748,19 +258563,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, - [27003] = 4, + [25990] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2048), 1, sym_comment, - ACTIONS(2123), 15, - sym__newline, + ACTIONS(1989), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268769,7 +258582,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(2125), 45, + ACTIONS(1991), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268780,9 +258594,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268804,9 +258622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268815,18 +258630,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27074] = 7, + [26061] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2105), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3402), 1, + anon_sym_COLON2, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2049), 1, sym_comment, - STATE(2295), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7271), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26200] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2050), 1, + sym_comment, + ACTIONS(1997), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268840,7 +258750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(1999), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268855,7 +258765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268885,20 +258798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27151] = 8, + [26271] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2106), 1, + STATE(2051), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2589), 1, - sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(2001), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268912,8 +258817,7 @@ 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), 43, - ts_builtin_sym_end, + ACTIONS(2003), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268925,8 +258829,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268956,20 +258865,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27230] = 8, + [26342] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2107), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3402), 1, + anon_sym_COLON2, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2052), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2590), 1, - sym_cell_path, - ACTIONS(1887), 13, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7369), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26481] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2053), 1, + sym_comment, + ACTIONS(2382), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268983,8 +258985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1889), 43, - ts_builtin_sym_end, + ACTIONS(2384), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268996,8 +258997,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269027,18 +259033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27309] = 7, + [26552] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2108), 1, + STATE(2054), 1, sym_comment, - STATE(2416), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(2013), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269052,7 +259052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(2015), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269067,7 +259067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269097,222 +259100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27386] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [26623] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2109), 1, - sym_comment, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8183), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [27525] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2110), 1, - sym_comment, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8204), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [27664] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2111), 1, + STATE(2055), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2592), 1, - sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(2386), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269326,8 +259119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 43, - ts_builtin_sym_end, + ACTIONS(2388), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269339,8 +259131,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269370,26 +259167,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, - [27743] = 9, + [26694] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT_DOT2, - ACTIONS(1050), 1, - aux_sym_record_entry_token1, - STATE(2112), 1, + STATE(2056), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, + ACTIONS(2390), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5374), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269398,7 +259186,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(5376), 19, + ACTIONS(2392), 47, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269409,18 +259198,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_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5380), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269442,12 +259226,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27824] = 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, + [26765] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2113), 1, + STATE(2057), 1, sym_comment, - ACTIONS(2379), 13, + ACTIONS(2017), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269461,7 +259253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2381), 47, + ACTIONS(2019), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269509,20 +259301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27895] = 8, + [26836] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2114), 1, + STATE(2058), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2614), 1, - sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(2025), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269536,8 +259320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 43, - ts_builtin_sym_end, + ACTIONS(2027), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269549,8 +259332,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269580,20 +259368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27974] = 8, + [26907] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2115), 1, + STATE(2059), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2593), 1, - sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(2394), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269607,8 +259387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 43, - ts_builtin_sym_end, + ACTIONS(2396), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269620,8 +259399,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_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269651,18 +259435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28053] = 7, + [26978] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2116), 1, + STATE(2060), 1, sym_comment, - STATE(2398), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(2398), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269676,7 +259454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(2400), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269691,7 +259469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269721,12 +259502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28130] = 4, + [27049] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(2061), 1, sym_comment, - ACTIONS(2399), 13, + ACTIONS(2029), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269740,7 +259521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2401), 47, + ACTIONS(2031), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269788,18 +259569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28201] = 7, + [27120] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2118), 1, + STATE(2062), 1, sym_comment, - STATE(2413), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(2402), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269813,7 +259588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(2404), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269828,7 +259603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269858,18 +259636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28278] = 7, + [27191] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2119), 1, + STATE(2063), 1, sym_comment, - STATE(2304), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5366), 13, + ACTIONS(2406), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269883,7 +259655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(2408), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269898,7 +259670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269928,20 +259703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28355] = 8, + [27262] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2120), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2595), 1, + STATE(2064), 1, + sym_comment, + STATE(2531), 1, sym_cell_path, - ACTIONS(1903), 13, + ACTIONS(2033), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269955,7 +259730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1905), 43, + ACTIONS(2035), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269999,23 +259774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28434] = 7, + [27341] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2121), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + ACTIONS(4712), 1, + anon_sym_COLON2, + STATE(2065), 1, sym_comment, - STATE(2417), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5088), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270024,7 +259801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5082), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270036,10 +259813,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5086), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270061,28 +259846,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28511] = 8, + [27422] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2122), 1, - sym_comment, - STATE(2148), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, aux_sym_cell_path_repeat1, - STATE(2293), 1, + STATE(1826), 1, sym_path, - STATE(2591), 1, + STATE(2066), 1, + sym_comment, + STATE(2503), 1, sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(1969), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270096,7 +259873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1927), 43, + ACTIONS(1971), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -270140,17 +259917,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28590] = 4, + [27501] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2123), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3404), 1, + anon_sym_COLON2, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2067), 1, sym_comment, - ACTIONS(2131), 13, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7271), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [27640] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3404), 1, + anon_sym_COLON2, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2068), 1, + sym_comment, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7369), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [27779] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + ACTIONS(1016), 1, + anon_sym_COLON2, + STATE(2069), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5088), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270159,7 +260146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2137), 47, + ACTIONS(5082), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270171,13 +260158,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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5086), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270199,28 +260191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28661] = 8, + [27860] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2124), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2070), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2670), 1, - sym_cell_path, - ACTIONS(1909), 13, + STATE(2225), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270234,8 +260216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1911), 43, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270247,8 +260228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270278,12 +260261,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, - [28740] = 4, + [27937] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2125), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2071), 1, sym_comment, - ACTIONS(2411), 13, + STATE(2226), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270297,7 +260286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2413), 47, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270312,10 +260301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270345,12 +260331,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, - [28811] = 4, + [28014] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2126), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2072), 1, sym_comment, - ACTIONS(2504), 13, + STATE(2305), 1, + aux_sym_shebang_repeat1, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270364,7 +260356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2506), 47, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270379,10 +260371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270412,18 +260401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28882] = 7, + [28091] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2127), 1, + STATE(2073), 1, sym_comment, - STATE(2386), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270437,7 +260420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270453,6 +260436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270482,19 +260467,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, - [28959] = 4, + [28161] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2128), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2074), 1, sym_comment, - ACTIONS(1018), 15, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7259), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [28297] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2075), 1, + sym_comment, + ACTIONS(1735), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270503,8 +260585,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(1020), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1737), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270516,8 +260598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270530,6 +260614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270539,8 +260624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270549,20 +260632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29030] = 8, + [28367] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2129), 1, + STATE(2076), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2638), 1, - sym_cell_path, - ACTIONS(2053), 13, + ACTIONS(1727), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270576,8 +260651,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(2055), 43, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1729), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270589,8 +260664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270603,6 +260680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270620,18 +260698,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29109] = 7, + [28437] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2130), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2077), 1, sym_comment, - STATE(2369), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7337), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [28573] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2078), 1, + sym_comment, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270645,7 +260816,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(5338), 44, + aux_sym_unquoted_token2, + ACTIONS(1773), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270660,7 +260832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270673,6 +260845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270690,16 +260863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29186] = 6, + [28643] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4895), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5382), 1, - anon_sym_DOT, - STATE(2131), 1, + STATE(2079), 1, sym_comment, - ACTIONS(1779), 13, + ACTIONS(1786), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270713,7 +260882,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(1781), 45, + aux_sym_unquoted_token2, + ACTIONS(1788), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270728,7 +260898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -270742,6 +260911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270759,18 +260929,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, - [29261] = 7, + [28713] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, anon_sym_LPAREN2, - STATE(2132), 1, + STATE(2080), 1, sym_comment, - STATE(2389), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(1819), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270784,7 +260952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(1827), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270799,7 +260967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270829,12 +260997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29338] = 4, + [28787] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(2081), 1, sym_comment, - ACTIONS(2447), 13, + ACTIONS(2241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270848,7 +261016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2449), 47, + ACTIONS(2245), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270863,7 +261031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -270896,25 +261063,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, - [29409] = 8, + [28857] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2134), 1, + STATE(2082), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2608), 1, - sym_cell_path, - ACTIONS(1929), 13, + ACTIONS(5084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5088), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270923,8 +261083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1931), 43, - ts_builtin_sym_end, + ACTIONS(5082), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270936,6 +261095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5086), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -270959,28 +261131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29488] = 8, + [28931] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2135), 1, + STATE(2083), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2663), 1, - sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(5179), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270994,8 +261150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 43, - ts_builtin_sym_end, + ACTIONS(5177), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271007,8 +261162,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271038,18 +261197,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, - [29567] = 7, + [29001] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2136), 1, + ACTIONS(4747), 1, + anon_sym_DOT_DOT2, + STATE(2084), 1, sym_comment, - STATE(2390), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(4749), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271063,7 +261221,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(5360), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271075,10 +261234,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271108,18 +261265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29644] = 7, + [29075] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2137), 1, + STATE(2085), 1, sym_comment, - STATE(2365), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5183), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271133,7 +261284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5181), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271149,6 +261300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271178,12 +261331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29721] = 4, + [29145] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2138), 1, + STATE(2086), 1, sym_comment, - ACTIONS(2427), 13, + ACTIONS(1819), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271197,7 +261350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2429), 47, + ACTIONS(1827), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271212,7 +261365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -271245,12 +261397,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, - [29792] = 4, + [29215] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2139), 1, + ACTIONS(5185), 1, + anon_sym_DOT_DOT2, + STATE(2087), 1, sym_comment, - ACTIONS(2486), 13, + ACTIONS(5187), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271264,7 +261421,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(2488), 47, + ACTIONS(2148), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271276,13 +261434,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271312,12 +261465,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, - [29863] = 4, + [29289] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2140), 1, + ACTIONS(5189), 1, + anon_sym_DOT_DOT2, + STATE(2088), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(5191), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271331,7 +261489,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(2433), 47, + ACTIONS(2156), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271343,13 +261502,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_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271379,12 +261533,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, - [29934] = 4, + [29363] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2141), 1, + ACTIONS(5193), 1, + anon_sym_DOT_DOT2, + STATE(2089), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(5195), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271398,7 +261557,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 47, + ACTIONS(2164), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29437] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + anon_sym_DOT_DOT2, + STATE(2090), 1, + sym_comment, + ACTIONS(5199), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 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(1802), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29511] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2091), 1, + sym_comment, + ACTIONS(5084), 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(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271413,7 +261703,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -271446,16 +261735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30005] = 6, + [29581] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5384), 1, - anon_sym_DOT, - ACTIONS(5386), 1, - aux_sym__immediate_decimal_token2, - STATE(2142), 1, + STATE(2092), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271469,9 +261754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 44, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271483,8 +261766,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271497,7 +261784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -271515,18 +261801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30080] = 7, + [29651] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2143), 1, + STATE(2093), 1, sym_comment, - STATE(2370), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271540,7 +261820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271556,6 +261836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271585,12 +261867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30157] = 4, + [29721] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(2094), 1, sym_comment, - ACTIONS(2072), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271604,7 +261886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2078), 47, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271619,7 +261901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -271652,20 +261933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30228] = 8, + [29791] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2145), 1, + STATE(2095), 1, sym_comment, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2588), 1, - sym_cell_path, - ACTIONS(1937), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271679,8 +261952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 43, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271692,8 +261964,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271723,18 +261999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30307] = 7, + [29861] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2146), 1, + STATE(2096), 1, sym_comment, - STATE(2399), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271748,7 +262018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271764,6 +262034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271793,18 +262065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30384] = 7, + [29931] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2147), 1, + STATE(2097), 1, sym_comment, - STATE(2285), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5336), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271818,7 +262084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271834,6 +262100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271863,18 +262131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30461] = 7, + [30001] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2034), 1, - aux_sym_cell_path_repeat1, - STATE(2148), 1, + STATE(2098), 1, sym_comment, - STATE(2293), 1, - sym_path, - ACTIONS(982), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271888,8 +262150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(984), 44, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271901,9 +262162,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_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271933,18 +262197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30538] = 7, + [30071] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2149), 1, + STATE(2099), 1, sym_comment, - STATE(2368), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(5203), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271958,7 +262216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5201), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271974,6 +262232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272003,12 +262263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30615] = 4, + [30141] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2100), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272022,7 +262282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 47, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272037,7 +262297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -272070,18 +262329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30686] = 7, + [30211] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2151), 1, + STATE(2101), 1, sym_comment, - STATE(2373), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272095,7 +262348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272111,6 +262364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272140,18 +262395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30763] = 7, + [30281] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2152), 1, + STATE(2102), 1, sym_comment, - STATE(2375), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272165,7 +262414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272181,6 +262430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272210,18 +262461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30840] = 7, + [30351] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2153), 1, + STATE(2103), 1, sym_comment, - STATE(2376), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272235,7 +262480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272251,6 +262496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272280,20 +262527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30917] = 8, + [30421] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2154), 1, + STATE(2104), 1, sym_comment, - STATE(2293), 1, - sym_path, - STATE(2624), 1, - sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272307,8 +262546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 43, - ts_builtin_sym_end, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272320,8 +262558,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272351,18 +262593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30996] = 7, + [30491] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2155), 1, + STATE(2105), 1, sym_comment, - STATE(2377), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5362), 13, + ACTIONS(2214), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272376,7 +262612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(2216), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272392,6 +262628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272421,19 +262659,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, - [31073] = 4, + [30561] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2106), 1, sym_comment, - ACTIONS(1763), 15, - sym__newline, + ACTIONS(1794), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272442,7 +262678,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(1765), 45, + ACTIONS(1802), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272453,9 +262690,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272477,9 +262717,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30631] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4747), 1, + anon_sym_DOT_DOT2, + STATE(2107), 1, + sym_comment, + ACTIONS(4749), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym_record_entry_token1, + ACTIONS(5084), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5088), 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(5082), 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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272488,18 +262771,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, - [31144] = 7, + ACTIONS(5086), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30709] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2157), 1, + STATE(2108), 1, sym_comment, - STATE(2381), 1, - aux_sym_shebang_repeat1, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5340), 13, + ACTIONS(5207), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272513,7 +262814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5205), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272529,6 +262830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272558,12 +262861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31221] = 4, + [30779] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2109), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(2218), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272577,7 +262880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2445), 47, + ACTIONS(2222), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272592,7 +262895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -272625,23 +262927,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, - [31292] = 8, + [30849] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT_DOT2, - STATE(2159), 1, + STATE(2110), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, + ACTIONS(2224), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5374), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272650,7 +262946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5376), 21, + ACTIONS(2228), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272663,18 +262959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5380), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272696,26 +262985,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31371] = 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30919] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DOT_DOT2, - ACTIONS(4855), 1, - aux_sym_record_entry_token1, - STATE(2160), 1, + STATE(2111), 1, sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5374), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272724,7 +263012,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(5376), 19, + ACTIONS(1000), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272735,18 +263024,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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5380), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272768,17 +263051,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31452] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30989] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1046), 1, + ACTIONS(4747), 1, anon_sym_DOT_DOT2, - STATE(2161), 1, + STATE(2112), 1, sym_comment, - ACTIONS(1048), 2, + ACTIONS(4749), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 13, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272792,7 +263083,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(5380), 44, + ACTIONS(1000), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272804,10 +263096,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272837,25 +263127,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31527] = 8, - ACTIONS(251), 1, + [31063] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2162), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(2113), 1, sym_comment, - STATE(2293), 1, - sym_path, - STATE(2587), 1, - sym_cell_path, - ACTIONS(2049), 13, + ACTIONS(2245), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2241), 44, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272864,8 +263187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2051), 43, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [31137] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(2114), 1, + sym_comment, + ACTIONS(1000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272877,8 +263216,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, + ACTIONS(1004), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272887,19 +263231,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272908,12 +263263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31606] = 4, + [31211] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2115), 1, sym_comment, - ACTIONS(1925), 13, + ACTIONS(1957), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272927,7 +263282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1927), 47, + ACTIONS(1959), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272942,7 +263297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -272975,75 +263329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31677] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2164), 1, - sym_comment, - ACTIONS(2391), 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(2393), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31747] = 37, + [31281] = 37, ACTIONS(155), 1, anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, ACTIONS(183), 1, anon_sym_LBRACE, ACTIONS(205), 1, @@ -273052,478 +263342,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, ACTIONS(235), 1, sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(3495), 1, + ACTIONS(3390), 1, anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2165), 1, - sym_comment, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8169), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [31883] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, + ACTIONS(5209), 1, anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2166), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6166), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32019] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, + ACTIONS(5213), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, + ACTIONS(5215), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2167), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6307), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32155] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2168), 1, + STATE(2116), 1, sym_comment, - STATE(3693), 1, + STATE(2138), 1, sym__inter_single_quotes, - STATE(3723), 1, + STATE(2139), 1, sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, + STATE(3503), 1, sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, + STATE(3551), 1, sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, + STATE(3552), 1, + sym_val_variable, + STATE(3763), 1, sym__expr_binary_expression, - STATE(6308), 1, + STATE(7450), 1, sym__expression, - ACTIONS(3399), 2, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [32291] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2169), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6310), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, + ACTIONS(5211), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2082), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -273536,12 +263428,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32427] = 4, + [31417] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2170), 1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token2, + STATE(2117), 1, sym_comment, - ACTIONS(2391), 13, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273555,7 +263449,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(2393), 46, + aux_sym_unquoted_token2, + ACTIONS(1773), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273567,12 +263463,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273585,6 +263477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -273602,18 +263495,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, - [32497] = 4, + [31489] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2118), 1, sym_comment, - ACTIONS(1052), 14, + ACTIONS(2413), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273622,8 +263514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1054), 45, - ts_builtin_sym_end, + ACTIONS(2415), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273635,8 +263526,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273658,8 +263553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273668,26 +263561,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, - [32567] = 4, - ACTIONS(251), 1, + [31559] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(2119), 1, sym_comment, - ACTIONS(2403), 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(2405), 46, + ACTIONS(2253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273700,11 +263583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2249), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273713,19 +263597,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273734,26 +263629,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, - [32637] = 4, - ACTIONS(251), 1, + [31633] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(2120), 1, sym_comment, - ACTIONS(2439), 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(2441), 46, + ACTIONS(2259), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273766,11 +263651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2257), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273779,19 +263665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273800,17 +263697,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, - [32707] = 4, + [31707] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2121), 1, sym_comment, - ACTIONS(1949), 13, + ACTIONS(1018), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273819,7 +263717,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(1951), 46, + ACTIONS(1020), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273831,12 +263730,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273858,6 +263753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273866,16 +263763,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, - [32777] = 6, + [31777] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - STATE(2175), 1, + STATE(2122), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(2214), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273889,7 +263786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2294), 44, + ACTIONS(2216), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273934,18 +263831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32851] = 4, + [31851] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2176), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(2123), 1, sym_comment, - ACTIONS(2082), 14, + ACTIONS(1794), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273954,8 +263854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2084), 45, - ts_builtin_sym_end, + ACTIONS(1802), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273967,8 +263866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273990,8 +263891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274000,16 +263899,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32921] = 6, + [31925] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(2177), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2124), 1, + sym_comment, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7355), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [32061] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2125), 1, sym_comment, - ACTIONS(1840), 13, + ACTIONS(2485), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274023,7 +264017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 44, + ACTIONS(2487), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274038,7 +264032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274068,12 +264064,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32995] = 4, - ACTIONS(3), 1, + [32131] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2126), 1, sym_comment, - ACTIONS(2244), 14, + ACTIONS(2170), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2172), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274085,14 +264097,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_LPAREN2, - ACTIONS(2242), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274101,30 +264107,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274133,18 +264130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [33065] = 6, + [32201] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5388), 1, - anon_sym_DOT_DOT2, - STATE(2179), 1, + STATE(2127), 1, sym_comment, - ACTIONS(5390), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 13, + ACTIONS(2417), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274158,8 +264149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2096), 43, - ts_builtin_sym_end, + ACTIONS(2419), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274171,8 +264161,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274202,12 +264196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33139] = 4, + [32271] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2128), 1, sym_comment, - ACTIONS(2454), 13, + ACTIONS(2421), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274221,7 +264215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 46, + ACTIONS(2423), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274268,16 +264262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33209] = 6, + [32341] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(2181), 1, + STATE(2129), 1, sym_comment, - ACTIONS(2266), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274291,7 +264281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2270), 44, + ACTIONS(2427), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274306,7 +264296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274336,32 +264328,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33283] = 6, - ACTIONS(251), 1, + [32411] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5392), 1, - anon_sym_DOT_DOT2, - STATE(2182), 1, + STATE(2130), 1, sym_comment, - ACTIONS(5394), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 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(2104), 43, - ts_builtin_sym_end, + ACTIONS(2263), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274373,8 +264345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2261), 45, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274383,19 +264361,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274404,16 +264393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33357] = 6, + aux_sym_unquoted_token4, + [32481] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(2183), 1, + STATE(2131), 1, sym_comment, - ACTIONS(2226), 13, + ACTIONS(2441), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274427,7 +264413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 44, + ACTIONS(2443), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274442,7 +264428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274472,22 +264460,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, - [33431] = 6, + [32551] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4970), 1, - anon_sym_DOT_DOT2, - STATE(2184), 1, + STATE(2132), 1, sym_comment, - ACTIONS(4972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 13, + ACTIONS(2055), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274496,7 +264480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 43, + ACTIONS(2057), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -274532,6 +264516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274540,17 +264526,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, - [33505] = 6, + [32621] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2185), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(2133), 1, sym_comment, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 13, + ACTIONS(2218), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274564,8 +264549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2137), 43, - ts_builtin_sym_end, + ACTIONS(2222), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274577,8 +264561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274608,17 +264594,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, - [33579] = 4, + [32695] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(2134), 1, sym_comment, - ACTIONS(2474), 13, + ACTIONS(1717), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274627,7 +264614,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(2476), 46, + ACTIONS(1719), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274639,12 +264627,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274666,6 +264650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274674,12 +264660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33649] = 4, + [32765] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2187), 1, + ACTIONS(5160), 1, + aux_sym__immediate_decimal_token2, + STATE(2135), 1, sym_comment, - ACTIONS(2478), 13, + ACTIONS(1735), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274693,7 +264681,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(2480), 46, + aux_sym_unquoted_token2, + ACTIONS(1737), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274705,12 +264695,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274723,6 +264709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -274740,17 +264727,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, - [33719] = 6, + [32837] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5400), 1, - anon_sym_DOT_DOT2, - STATE(2188), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(2136), 1, sym_comment, - ACTIONS(5402), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 13, + ACTIONS(2224), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274764,8 +264750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 43, - ts_builtin_sym_end, + ACTIONS(2228), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274777,8 +264762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274808,12 +264795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33793] = 4, + [32911] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2137), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(2261), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274827,7 +264814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 46, + ACTIONS(2263), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274874,12 +264861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33863] = 4, + [32981] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2138), 1, sym_comment, - ACTIONS(1000), 13, + ACTIONS(2338), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274893,8 +264880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1002), 46, - ts_builtin_sym_end, + ACTIONS(2340), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274906,10 +264892,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_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274931,7 +264919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274940,17 +264927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33933] = 6, + [33051] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4970), 1, - anon_sym_DOT_DOT2, - STATE(2191), 1, + STATE(2139), 1, sym_comment, - ACTIONS(4972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 13, + ACTIONS(2338), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274964,8 +264946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5380), 43, - ts_builtin_sym_end, + ACTIONS(2340), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274977,8 +264958,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275008,12 +264993,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34007] = 4, + [33121] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2140), 1, + sym_comment, + ACTIONS(2174), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2176), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33191] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2141), 1, sym_comment, - ACTIONS(2458), 13, + ACTIONS(2346), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275027,7 +265078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2460), 46, + ACTIONS(2348), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275074,12 +265125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34077] = 4, + [33261] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2142), 1, sym_comment, - ACTIONS(986), 13, + ACTIONS(2350), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275093,8 +265144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(988), 46, - ts_builtin_sym_end, + ACTIONS(2352), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275106,10 +265156,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_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275131,7 +265183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275140,113 +265191,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34147] = 37, + [33331] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(2143), 1, + sym_comment, + ACTIONS(2358), 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(2360), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2194), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33401] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2144), 1, sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6215), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [34283] = 5, + ACTIONS(2362), 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(2364), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33471] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5386), 1, - aux_sym__immediate_decimal_token2, - STATE(2195), 1, + ACTIONS(5219), 1, + anon_sym_DOT_DOT2, + STATE(2145), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2115), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275260,8 +265347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 44, + ACTIONS(2121), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -275288,7 +265374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -275306,93 +265391,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34355] = 37, + [33545] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, + ACTIONS(5223), 1, + anon_sym_DOT_DOT2, + STATE(2146), 1, + sym_comment, + ACTIONS(5225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 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(1827), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33619] = 37, + ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(3367), 1, + ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, + ACTIONS(183), 1, anon_sym_LBRACE, - ACTIONS(3377), 1, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, + ACTIONS(231), 1, anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2196), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, + STATE(1819), 1, sym_expr_parenthesized, - STATE(4168), 1, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2147), 1, + sym_comment, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, sym__expr_binary_expression, - STATE(6216), 1, + STATE(7271), 1, sym__expression, - ACTIONS(3399), 2, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2082), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -275405,93 +265558,93 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34491] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, + [33755] = 37, + ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(3367), 1, + ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, + ACTIONS(183), 1, anon_sym_LBRACE, - ACTIONS(3377), 1, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, + ACTIONS(231), 1, anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2197), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, + STATE(1819), 1, sym_expr_parenthesized, - STATE(4168), 1, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2148), 1, + sym_comment, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, sym__expr_binary_expression, - STATE(6221), 1, + STATE(7369), 1, sym__expression, - ACTIONS(3399), 2, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2082), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -275504,93 +265657,93 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34627] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, + [33891] = 37, + ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(3367), 1, + ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, + ACTIONS(183), 1, anon_sym_LBRACE, - ACTIONS(3377), 1, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, + ACTIONS(231), 1, anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2198), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, + STATE(1819), 1, sym_expr_parenthesized, - STATE(4168), 1, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2149), 1, + sym_comment, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, sym__expr_binary_expression, - STATE(6222), 1, + STATE(7351), 1, sym__expression, - ACTIONS(3399), 2, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2082), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -275603,93 +265756,93 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34763] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, + [34027] = 37, + ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(3367), 1, + ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, + ACTIONS(183), 1, anon_sym_LBRACE, - ACTIONS(3377), 1, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, + ACTIONS(231), 1, anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2199), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, + STATE(1819), 1, sym_expr_parenthesized, - STATE(4168), 1, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2150), 1, + sym_comment, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, sym__expr_binary_expression, - STATE(6275), 1, + STATE(7312), 1, sym__expression, - ACTIONS(3399), 2, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2082), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -275702,93 +265855,192 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34899] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, + [34163] = 37, + ACTIONS(155), 1, anon_sym_LBRACK, - ACTIONS(3367), 1, + ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, + ACTIONS(183), 1, anon_sym_LBRACE, - ACTIONS(3377), 1, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, aux_sym_expr_unary_token1, - ACTIONS(3385), 1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, + anon_sym_null, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, + STATE(1660), 1, + sym__val_number, + STATE(1819), 1, + sym_expr_parenthesized, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2151), 1, + sym_comment, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, + sym__expr_binary_expression, + STATE(7363), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2082), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2111), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34299] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(3390), 1, anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2200), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + STATE(1660), 1, sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, + STATE(1819), 1, sym_expr_parenthesized, - STATE(4168), 1, + STATE(1868), 1, + sym_val_variable, + STATE(2083), 1, sym__expr_unary_minus, - STATE(4211), 1, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2152), 1, + sym_comment, + STATE(3168), 1, + sym__val_number_decimal, + STATE(3752), 1, sym__expr_binary_expression, - STATE(6280), 1, + STATE(7216), 1, sym__expression, - ACTIONS(3399), 2, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3405), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, + ACTIONS(3392), 2, anon_sym_true, anon_sym_false, - STATE(3753), 2, + STATE(1427), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, + STATE(2082), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3393), 6, + ACTIONS(227), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(3698), 12, + STATE(2111), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -275801,14 +266053,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35035] = 5, + [34435] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5404), 1, - aux_sym__immediate_decimal_token2, - STATE(2201), 1, + STATE(2153), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(1945), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275822,9 +266072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1801), 44, - ts_builtin_sym_end, + ACTIONS(1947), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275836,8 +266084,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275850,7 +266102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -275868,12 +266119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35107] = 4, + [34505] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2154), 1, sym_comment, - ACTIONS(2462), 13, + STATE(2163), 1, + aux_sym_shebang_repeat1, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275887,7 +266140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2464), 46, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275903,8 +266156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275934,12 +266185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35177] = 4, + [34576] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2155), 1, sym_comment, - ACTIONS(2466), 13, + STATE(2223), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275953,7 +266206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2468), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275969,8 +266222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276000,117 +266251,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, - [35247] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3469), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3471), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3473), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3475), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5406), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2204), 1, - sym_comment, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3797), 1, - sym__val_number_decimal, - STATE(3936), 1, - sym_expr_parenthesized, - STATE(3937), 1, - sym_val_variable, - STATE(4213), 1, - sym__expr_binary_expression, - STATE(8264), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5408), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [35383] = 4, + [34647] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2156), 1, sym_comment, - ACTIONS(2086), 14, + STATE(2239), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276119,8 +266272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 45, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276132,8 +266284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276155,8 +266309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276165,58 +266317,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, - [35453] = 6, - ACTIONS(3), 1, + [34718] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(2206), 1, + STATE(2157), 1, sym_comment, - ACTIONS(2258), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2254), 44, + STATE(2200), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276225,24 +266338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35527] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(2207), 1, - sym_comment, - ACTIONS(1036), 13, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276255,12 +266351,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1034), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276269,30 +266362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276301,12 +266383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35601] = 4, + [34789] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2158), 1, sym_comment, - ACTIONS(996), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276320,8 +266404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(998), 46, - ts_builtin_sym_end, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276333,10 +266416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276358,7 +266441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276367,12 +266449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35671] = 4, + [34860] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2159), 1, sym_comment, - ACTIONS(2254), 13, + STATE(2258), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276386,7 +266470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276402,8 +266486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276433,14 +266515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35741] = 5, + [34931] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5410), 1, - anon_sym_QMARK2, - STATE(2210), 1, + STATE(2160), 1, sym_comment, - ACTIONS(1008), 13, + STATE(2201), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276454,8 +266536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1010), 45, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276467,6 +266548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -276491,7 +266573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276500,14 +266581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35813] = 5, + [35002] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_QMARK2, - STATE(2211), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2161), 1, sym_comment, - ACTIONS(990), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276521,8 +266602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(992), 45, - ts_builtin_sym_end, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276534,6 +266614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -276558,7 +266639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276567,18 +266647,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, - [35885] = 6, + [35073] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(2162), 1, sym_comment, - ACTIONS(5378), 5, + STATE(2176), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5374), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276587,7 +266668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5376), 23, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276600,20 +266681,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5380), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276635,12 +266705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35959] = 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, + [35144] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2163), 1, sym_comment, - ACTIONS(5416), 13, + ACTIONS(5241), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276654,7 +266734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5414), 46, + ACTIONS(5239), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276670,8 +266750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276701,18 +266779,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, - [36029] = 4, + [35215] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2214), 1, + STATE(2164), 1, sym_comment, - ACTIONS(1763), 14, + STATE(2261), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276721,8 +266800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1765), 45, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276734,8 +266812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276757,8 +266837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276767,12 +266845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36099] = 4, + [35286] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2165), 1, sym_comment, - ACTIONS(2266), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276786,7 +266866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2270), 46, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276802,8 +266882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276833,34 +266911,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36169] = 6, - ACTIONS(3), 1, + [35357] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(2216), 1, + ACTIONS(5243), 1, + anon_sym_DOT2, + STATE(2166), 1, sym_comment, - ACTIONS(2274), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2272), 44, - anon_sym_GT2, + STATE(2445), 1, + aux_sym_cell_path_repeat1, + STATE(2591), 1, + sym_path, + STATE(2601), 1, + sym_cell_path, + ACTIONS(1717), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1719), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [35434] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2167), 1, + sym_comment, + STATE(2269), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 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(5142), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276869,30 +267025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276901,16 +267046,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36243] = 6, - ACTIONS(3), 1, + [35505] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(2217), 1, + STATE(2168), 1, sym_comment, - ACTIONS(2238), 13, + STATE(2240), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 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(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276923,12 +267080,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2234), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276937,22 +267091,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35576] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2169), 1, + sym_comment, + ACTIONS(5251), 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, @@ -276961,6 +267133,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5249), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276969,17 +267178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36317] = 6, + [35647] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5418), 1, - anon_sym_DOT_DOT2, - STATE(2218), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2170), 1, sym_comment, - ACTIONS(5420), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276993,8 +267199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2078), 43, - ts_builtin_sym_end, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277006,8 +267211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277037,17 +267244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36391] = 6, + [35718] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5422), 1, - anon_sym_DOT_DOT2, - STATE(2219), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2171), 1, sym_comment, - ACTIONS(5424), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277061,8 +267265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 43, - ts_builtin_sym_end, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277074,8 +267277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277105,16 +267310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36465] = 6, + [35789] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(2220), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2172), 1, sym_comment, - ACTIONS(1830), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277128,7 +267331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 44, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277143,7 +267346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277173,12 +267376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36539] = 4, + [35860] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2221), 1, + STATE(2173), 1, sym_comment, - ACTIONS(1830), 13, + STATE(2250), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277192,7 +267397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277208,8 +267413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277239,12 +267442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36609] = 4, + [35931] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2222), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2174), 1, sym_comment, - ACTIONS(2226), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277258,7 +267463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 46, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277274,8 +267479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277305,12 +267508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36679] = 4, + [36002] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2223), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2175), 1, sym_comment, - ACTIONS(2242), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277324,7 +267529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2244), 46, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277340,8 +267545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277371,12 +267574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36749] = 4, + [36073] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2224), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2176), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277390,8 +267595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 45, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277406,7 +267610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277419,7 +267623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -277437,12 +267640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36819] = 4, + [36144] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2225), 1, + STATE(2177), 1, sym_comment, - ACTIONS(1034), 13, + STATE(2236), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277456,7 +267661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277472,8 +267677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277503,12 +267706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36889] = 4, + [36215] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2226), 1, + STATE(2178), 1, sym_comment, - ACTIONS(1771), 14, + STATE(2296), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277522,8 +267727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1773), 45, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277538,7 +267742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277551,7 +267755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -277569,12 +267772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36959] = 4, + [36286] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2227), 1, + STATE(2179), 1, sym_comment, - ACTIONS(1799), 14, + STATE(2299), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277588,8 +267793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1801), 45, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277604,7 +267808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277617,7 +267821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -277635,12 +267838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37029] = 4, + [36357] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2228), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2180), 1, sym_comment, - ACTIONS(5378), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277654,7 +267859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5380), 46, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277670,8 +267875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277701,12 +267904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37099] = 4, + [36428] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2229), 1, + STATE(2181), 1, sym_comment, - ACTIONS(5286), 13, + STATE(2242), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277720,7 +267925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277736,8 +267941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -277767,210 +267970,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37169] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [36499] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2230), 1, + STATE(2182), 1, sym_comment, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8183), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [37305] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, + STATE(2302), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 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(5173), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36570] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2231), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2183), 1, sym_comment, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8204), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [37441] = 4, + ACTIONS(5255), 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(5253), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36641] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2232), 1, + STATE(2184), 1, sym_comment, - ACTIONS(2482), 13, + ACTIONS(4985), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277984,7 +268121,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(2484), 46, + ACTIONS(4983), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277996,12 +268134,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_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278014,6 +268149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -278031,12 +268167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37511] = 4, + [36710] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2185), 1, sym_comment, - ACTIONS(5286), 13, + STATE(2306), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278050,7 +268188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278066,8 +268204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278097,12 +268233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37581] = 4, + [36781] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2234), 1, + STATE(2186), 1, sym_comment, - ACTIONS(5286), 13, + STATE(2305), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278116,7 +268254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278132,8 +268270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278163,12 +268299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37651] = 4, + [36852] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2235), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2187), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278182,8 +268320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1006), 46, - ts_builtin_sym_end, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278195,10 +268332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278220,7 +268357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278229,12 +268365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37721] = 4, + [36923] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2236), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2188), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278248,7 +268386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278264,8 +268402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278295,210 +268431,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37791] = 37, + [36994] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(2158), 1, + aux_sym_shebang_repeat1, + STATE(2189), 1, + sym_comment, + ACTIONS(5144), 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(5142), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2237), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6142), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [37927] = 37, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37065] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(2190), 1, + sym_comment, + STATE(2282), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 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(5173), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2238), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6143), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38063] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37136] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2191), 1, sym_comment, - ACTIONS(1818), 14, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278512,8 +268584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1820), 45, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278528,7 +268599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278541,7 +268612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -278559,1002 +268629,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38133] = 37, + [37207] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(2192), 1, + sym_comment, + STATE(2290), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 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(5142), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2240), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6195), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38269] = 37, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37278] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(2193), 1, + sym_comment, + STATE(2209), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 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(5173), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2241), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6196), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38405] = 37, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37349] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(2194), 1, + sym_comment, + ACTIONS(4942), 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(4940), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2242), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6197), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38541] = 37, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37418] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2195), 1, + sym_comment, + ACTIONS(5251), 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(5249), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - ACTIONS(3373), 1, + anon_sym_in2, anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2243), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6199), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38677] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2244), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6200), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38813] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2245), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6206), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38949] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2246), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6249), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39085] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2247), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6250), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39221] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2248), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6254), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39357] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2249), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6256), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39493] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [37489] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2250), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2196), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279568,7 +268913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279584,8 +268929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279615,111 +268958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39563] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2251), 1, - sym_comment, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8083), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [39699] = 4, + [37560] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2252), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5286), 13, + STATE(2203), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279733,7 +268979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279749,8 +268995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279780,12 +269024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39769] = 4, + [37631] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2198), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279799,7 +269045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279815,8 +269061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279846,12 +269090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39839] = 4, + [37702] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2196), 1, + aux_sym_shebang_repeat1, + STATE(2199), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -279865,7 +269111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279881,8 +269127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -279912,111 +269156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39909] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2255), 1, - sym_comment, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(7978), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [40045] = 4, + [37773] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2200), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280030,7 +269177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 46, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280046,8 +269193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280077,12 +269222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40115] = 4, + [37844] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2257), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2201), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280096,7 +269243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5249), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280112,8 +269259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280143,111 +269288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40185] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2258), 1, - sym_comment, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8125), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [40321] = 4, + [37915] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2259), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(1786), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280261,7 +269307,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(5284), 46, + aux_sym_unquoted_token2, + ACTIONS(1788), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280273,12 +269321,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280291,6 +269335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -280308,12 +269353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40391] = 4, + [37984] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2203), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280327,7 +269374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280343,8 +269390,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280374,12 +269419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40461] = 4, + [38055] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2261), 1, + STATE(2180), 1, + aux_sym_shebang_repeat1, + STATE(2204), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280393,7 +269440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280409,8 +269456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280440,12 +269485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40531] = 4, + [38126] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2205), 1, sym_comment, - ACTIONS(5286), 13, + STATE(2291), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280459,7 +269506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 46, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280475,8 +269522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280506,12 +269551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40601] = 4, + [38197] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2263), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2206), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280525,7 +269572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2294), 46, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280541,8 +269588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280572,12 +269617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40671] = 4, + [38268] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2264), 1, + STATE(2207), 1, sym_comment, - ACTIONS(1840), 13, + STATE(2243), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280591,7 +269638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280607,8 +269654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280638,12 +269683,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40741] = 4, + [38339] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2265), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2208), 1, + sym_comment, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6486), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [38438] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2209), 1, sym_comment, - ACTIONS(5432), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280657,7 +269784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5430), 46, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280673,8 +269800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280704,12 +269829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40811] = 4, + [38509] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2266), 1, + STATE(2210), 1, sym_comment, - ACTIONS(2520), 13, + STATE(2230), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280723,7 +269850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2522), 46, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280739,8 +269866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280770,23 +269895,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, - [40881] = 8, + [38580] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4970), 1, - anon_sym_DOT_DOT2, - STATE(2267), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2211), 1, sym_comment, - ACTIONS(4972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5374), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280795,8 +269916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5376), 20, - ts_builtin_sym_end, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280808,17 +269928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5380), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280840,18 +269953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [40959] = 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, + [38651] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2268), 1, + STATE(2165), 1, + aux_sym_shebang_repeat1, + STATE(2212), 1, sym_comment, - ACTIONS(2123), 14, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280860,8 +269982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2125), 45, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280873,8 +269994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280896,8 +270019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280906,309 +270027,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41029] = 37, + [38722] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, + ACTIONS(3118), 1, anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(3124), 1, sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2269), 1, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5267), 1, + sym__newline, + ACTIONS(5269), 1, + anon_sym_RBRACK, + STATE(2213), 1, sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, + STATE(2431), 1, + aux_sym_shebang_repeat1, + STATE(2570), 1, + aux_sym_command_list_repeat1, + STATE(3608), 1, sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6318), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, + STATE(6637), 1, + sym__command_name, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [41165] = 37, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(3371), 1, - anon_sym_DASH2, - ACTIONS(3373), 1, - anon_sym_LBRACE, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(3385), 1, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, - ACTIONS(3387), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3389), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3391), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3397), 1, - anon_sym_0b, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3409), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(5200), 1, - anon_sym_DOT_DOT, - ACTIONS(5204), 1, - anon_sym_null, - ACTIONS(5208), 1, - sym_val_date, - STATE(2270), 1, - sym_comment, - STATE(3693), 1, - sym__inter_single_quotes, - STATE(3723), 1, - sym__inter_double_quotes, - STATE(3724), 1, - sym__val_number, - STATE(3743), 1, - sym__val_number_decimal, - STATE(3820), 1, - sym_val_variable, - STATE(3836), 1, - sym_expr_parenthesized, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(4211), 1, - sym__expr_binary_expression, - STATE(6323), 1, - sym__expression, - ACTIONS(3399), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5202), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(3753), 2, + STATE(5080), 2, sym__raw_str, sym__str_double_quotes, - STATE(4167), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3393), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(3698), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [41301] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(3249), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3251), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3253), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3255), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3457), 1, - anon_sym_LPAREN, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(3495), 1, - anon_sym_null, - ACTIONS(5347), 1, - anon_sym_DOT_DOT, - STATE(1860), 1, - sym__val_number, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(2271), 1, - sym_comment, - STATE(3758), 1, - sym__val_number_decimal, - STATE(3916), 1, - sym_expr_parenthesized, - STATE(3942), 1, - sym_val_variable, - STATE(4222), 1, - sym__expr_binary_expression, - STATE(8028), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2212), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(431), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2225), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [41437] = 4, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [38821] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2272), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5436), 13, + STATE(2300), 1, + aux_sym_shebang_repeat1, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281222,7 +270128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5434), 46, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281238,8 +270144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281269,14 +270173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41507] = 5, + [38892] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2273), 1, + STATE(2215), 1, sym_comment, - STATE(2402), 1, + STATE(2241), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281290,7 +270194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281335,12 +270239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41578] = 4, + [38963] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2274), 1, + STATE(2161), 1, + aux_sym_shebang_repeat1, + STATE(2216), 1, sym_comment, - ACTIONS(1771), 14, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281354,9 +270260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1773), 44, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281368,8 +270272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281382,7 +270288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -281400,16 +270305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41647] = 6, + [39034] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(2275), 1, + STATE(2217), 1, sym_comment, - ACTIONS(2266), 13, + STATE(2235), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281423,8 +270326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2270), 43, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281436,8 +270338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281467,12 +270371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41720] = 4, + [39105] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2276), 1, + STATE(2188), 1, + aux_sym_shebang_repeat1, + STATE(2218), 1, sym_comment, - ACTIONS(1018), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281486,8 +270392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1020), 45, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281499,6 +270404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -281523,7 +270429,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281532,16 +270437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41789] = 6, + [39176] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2277), 1, + STATE(2191), 1, + aux_sym_shebang_repeat1, + STATE(2219), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281555,8 +270458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281568,8 +270470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281599,14 +270503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41862] = 5, + [39247] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2278), 1, - sym_comment, - STATE(2416), 1, + STATE(2206), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + STATE(2220), 1, + sym_comment, + ACTIONS(5273), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281620,7 +270524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5271), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281665,12 +270569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41933] = 4, + [39318] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2279), 1, + STATE(2211), 1, + aux_sym_shebang_repeat1, + STATE(2221), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281684,9 +270590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1801), 44, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281698,8 +270602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281712,7 +270618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -281730,16 +270635,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42002] = 6, - ACTIONS(251), 1, + [39389] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2556), 1, + anon_sym_DOLLAR, + ACTIONS(5275), 1, anon_sym_LPAREN2, - STATE(2280), 1, + ACTIONS(5277), 1, + anon_sym_DOT, + ACTIONS(5281), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5283), 1, + aux_sym__immediate_decimal_token5, + STATE(2222), 1, sym_comment, - ACTIONS(1830), 13, + STATE(2670), 1, + sym__immediate_decimal, + ACTIONS(1583), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5279), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2808), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [39476] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2223), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281753,8 +270730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 43, - ts_builtin_sym_end, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281766,8 +270742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281797,14 +270775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42075] = 5, + [39547] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2281), 1, + STATE(2224), 1, sym_comment, - STATE(2393), 1, + STATE(2245), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281818,7 +270796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281863,12 +270841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42146] = 4, + [39618] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2282), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2225), 1, sym_comment, - ACTIONS(1818), 14, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281882,9 +270862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1820), 44, - ts_builtin_sym_end, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281896,8 +270874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -281910,7 +270890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -281928,12 +270907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42215] = 4, + [39689] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2283), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2226), 1, sym_comment, - ACTIONS(1014), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -281947,8 +270928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1016), 45, - ts_builtin_sym_end, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281960,6 +270940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -281984,7 +270965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281993,14 +270973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42284] = 5, + [39760] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2284), 1, - sym_comment, - STATE(2369), 1, + STATE(2183), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2227), 1, + sym_comment, + ACTIONS(5291), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282014,7 +270994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5289), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282059,14 +271039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42355] = 5, + [39831] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2285), 1, + STATE(2228), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282080,7 +271060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282125,14 +271105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42426] = 5, + [39902] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2286), 1, + STATE(2229), 1, sym_comment, - STATE(2421), 1, + STATE(2254), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282146,7 +271126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282191,16 +271171,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42497] = 6, + [39973] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2228), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2230), 1, + sym_comment, + ACTIONS(5287), 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(5285), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [40044] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5267), 1, + sym__newline, + ACTIONS(5293), 1, + anon_sym_RBRACK, + STATE(2231), 1, + sym_comment, + STATE(2324), 1, + aux_sym_shebang_repeat1, + STATE(2584), 1, + aux_sym_command_list_repeat1, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + STATE(6832), 1, + sym__command_name, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [40143] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(2287), 1, + STATE(2232), 1, sym_comment, - ACTIONS(2226), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4864), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282214,7 +271340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 43, + ACTIONS(4862), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -282258,14 +271384,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, - [42570] = 5, + [40216] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2288), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2233), 1, sym_comment, - STATE(2394), 1, - aux_sym_shebang_repeat1, - ACTIONS(5362), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4868), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282279,7 +271407,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(5360), 44, + ACTIONS(4866), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282291,10 +271420,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282324,27 +271451,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, - [42641] = 8, + [40289] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_DOT, - STATE(2289), 1, + ACTIONS(5243), 1, + anon_sym_DOT2, + STATE(2234), 1, sym_comment, - STATE(2479), 1, + STATE(2445), 1, aux_sym_cell_path_repeat1, - STATE(2681), 1, + STATE(2591), 1, sym_path, - STATE(2747), 1, + STATE(2620), 1, sym_cell_path, - ACTIONS(1757), 6, + ACTIONS(1761), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1761), 48, + ACTIONS(1763), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -282393,80 +271520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [42718] = 5, + [40366] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2290), 1, - sym_comment, - STATE(2386), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 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(5360), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [42789] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2291), 1, + STATE(2235), 1, sym_comment, - STATE(2391), 1, - aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282480,7 +271541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282525,92 +271586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42860] = 19, + [40437] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5448), 1, - sym__newline, - ACTIONS(5450), 1, - anon_sym_RBRACK, - STATE(2292), 1, - sym_comment, - STATE(2435), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2687), 1, - aux_sym_command_list_repeat1, - STATE(4047), 1, - sym__val_number_decimal, - STATE(7690), 1, - sym__command_name, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5444), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [42959] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2293), 1, + STATE(2236), 1, sym_comment, - ACTIONS(1022), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282624,8 +271607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 45, - ts_builtin_sym_end, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282637,6 +271619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -282661,7 +271644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282670,80 +271652,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43028] = 5, + [40508] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2294), 1, + ACTIONS(5243), 1, + anon_sym_DOT2, + STATE(2237), 1, sym_comment, - STATE(2427), 1, - aux_sym_shebang_repeat1, - ACTIONS(5336), 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(5334), 44, + STATE(2445), 1, + aux_sym_cell_path_repeat1, + STATE(2591), 1, + sym_path, + STATE(2607), 1, + sym_cell_path, + ACTIONS(935), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(937), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43099] = 5, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [40585] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, + STATE(2238), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(1771), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282757,7 +271740,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(5452), 44, + aux_sym_unquoted_token2, + ACTIONS(1773), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282769,10 +271754,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282785,6 +271768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -282802,16 +271786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43170] = 6, + [40654] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2296), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2239), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5065), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282825,8 +271807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5063), 43, - ts_builtin_sym_end, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282838,8 +271819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282869,16 +271852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43243] = 6, + [40725] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2297), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2240), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 13, + ACTIONS(5297), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282892,8 +271873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4986), 43, - ts_builtin_sym_end, + ACTIONS(5295), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282905,8 +271885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282936,14 +271918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43316] = 5, + [40796] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2298), 1, + STATE(2241), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282957,7 +271939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283002,14 +271984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43387] = 5, + [40867] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2242), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283023,7 +272005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5456), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283068,14 +272050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43458] = 5, + [40938] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2300), 1, + STATE(2243), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283089,7 +272071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283134,14 +272116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43529] = 5, + [41009] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2301), 1, - sym_comment, - STATE(2395), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2244), 1, + sym_comment, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283155,7 +272137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283200,16 +272182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43600] = 6, + [41080] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2302), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2245), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283223,8 +272203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283236,8 +272215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283267,14 +272248,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, - [43673] = 5, + [41151] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2303), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2246), 1, sym_comment, - STATE(2387), 1, - aux_sym_shebang_repeat1, - ACTIONS(5462), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4872), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283288,7 +272271,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(5460), 44, + ACTIONS(4870), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283300,10 +272284,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283333,14 +272315,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, - [43744] = 5, + [41224] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2304), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2247), 1, sym_comment, - ACTIONS(5454), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4876), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283354,7 +272338,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(5452), 44, + ACTIONS(4874), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283366,10 +272351,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283399,14 +272382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43815] = 5, + [41297] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2305), 1, - sym_comment, - STATE(2324), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + STATE(2248), 1, + sym_comment, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283420,7 +272403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283465,14 +272448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43886] = 5, + [41368] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2306), 1, - sym_comment, - STATE(2370), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2249), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283486,7 +272469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283531,12 +272514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43957] = 4, + [41439] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2307), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2250), 1, sym_comment, - ACTIONS(5126), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283550,8 +272535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5124), 45, - ts_builtin_sym_end, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283563,6 +272547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -283578,7 +272563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -283596,14 +272580,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44026] = 5, + [41510] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2169), 1, aux_sym_shebang_repeat1, - STATE(2308), 1, + STATE(2251), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283617,7 +272601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283662,85 +272646,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, - [44097] = 8, + [41581] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_DOT, - STATE(2309), 1, - sym_comment, - STATE(2479), 1, - aux_sym_cell_path_repeat1, - STATE(2681), 1, - sym_path, - STATE(2750), 1, - sym_cell_path, - ACTIONS(1763), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1765), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [44174] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5167), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5464), 1, - anon_sym_DOT, - STATE(2310), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2252), 1, sym_comment, - ACTIONS(1779), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283754,7 +272669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1781), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -283798,16 +272713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44247] = 6, + [41654] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2311), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2253), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283821,8 +272734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283834,8 +272746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -283865,14 +272779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44320] = 5, + [41725] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2312), 1, - sym_comment, - STATE(2399), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2254), 1, + sym_comment, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283886,7 +272800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283931,14 +272845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44391] = 5, + [41796] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2170), 1, aux_sym_shebang_repeat1, - STATE(2313), 1, + STATE(2255), 1, sym_comment, - ACTIONS(5468), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283952,7 +272866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283997,12 +272911,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, - [44462] = 4, - ACTIONS(3), 1, + [41867] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2314), 1, + STATE(2256), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(1735), 14, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token2, + ACTIONS(1737), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284015,12 +272944,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_LPAREN2, - ACTIONS(2242), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284029,22 +272954,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41936] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2257), 1, + sym_comment, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 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, @@ -284053,6 +272999,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5094), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284061,15 +273043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [44531] = 5, + [42009] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2315), 1, - sym_comment, - STATE(2316), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(2258), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284083,7 +273064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284128,14 +273109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44602] = 5, + [42080] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2316), 1, + STATE(2259), 1, sym_comment, - ACTIONS(5454), 13, + STATE(2308), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284149,7 +273130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284194,14 +273175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44673] = 5, + [42151] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2317), 1, - sym_comment, - STATE(2321), 1, + STATE(2171), 1, aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(2260), 1, + sym_comment, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284215,7 +273196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284260,14 +273241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44744] = 5, + [42222] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2318), 1, - sym_comment, - STATE(2365), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2261), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284281,7 +273262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284326,14 +273307,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, - [44815] = 5, + [42293] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2319), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2262), 1, sym_comment, - STATE(2332), 1, - aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284347,7 +273330,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(5338), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284359,10 +273343,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284392,14 +273374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44886] = 5, + [42366] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2320), 1, - sym_comment, - STATE(2342), 1, + STATE(2172), 1, aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(2263), 1, + sym_comment, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284413,7 +273395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284458,14 +273440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44957] = 5, + [42437] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2248), 1, aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284479,7 +273461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284524,16 +273506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45028] = 6, + [42508] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2322), 1, + STATE(2265), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(1727), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284547,7 +273525,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(5284), 43, + aux_sym_unquoted_token2, + ACTIONS(1729), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284574,6 +273553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -284591,14 +273571,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, - [45101] = 5, + [42577] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2323), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2266), 1, sym_comment, - STATE(2350), 1, - aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284612,7 +273594,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(5364), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284624,10 +273607,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284657,14 +273638,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, - [45172] = 5, + [42650] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2324), 1, + ACTIONS(4975), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5299), 1, + anon_sym_DOT, + STATE(2267), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(1735), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284678,7 +273661,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(5438), 44, + ACTIONS(1737), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284690,10 +273674,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284723,14 +273705,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, - [45243] = 5, + [42723] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2325), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2268), 1, sym_comment, - STATE(2361), 1, - aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284744,7 +273728,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(5364), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284756,10 +273741,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -284789,14 +273772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45314] = 5, + [42796] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2326), 1, - sym_comment, - STATE(2419), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(2269), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284810,7 +273793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284855,14 +273838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45385] = 5, + [42867] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2327), 1, - sym_comment, - STATE(2428), 1, + STATE(2253), 1, aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(2270), 1, + sym_comment, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284876,7 +273859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284921,14 +273904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45456] = 5, + [42938] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2328), 1, - sym_comment, - STATE(2337), 1, + STATE(2195), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2271), 1, + sym_comment, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284942,7 +273925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284987,14 +273970,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, - [45527] = 5, + [43009] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2329), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2272), 1, sym_comment, - STATE(2408), 1, - aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285008,7 +273993,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(5334), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285020,10 +274006,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285053,83 +274037,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, - [45598] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_DOT, - STATE(2330), 1, - sym_comment, - STATE(2479), 1, - aux_sym_cell_path_repeat1, - STATE(2681), 1, - sym_path, - STATE(2793), 1, - sym_cell_path, - ACTIONS(969), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(971), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [45675] = 5, + [43082] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2308), 1, - aux_sym_shebang_repeat1, - STATE(2331), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(2273), 1, sym_comment, - ACTIONS(5336), 13, + ACTIONS(1819), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285143,7 +274060,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(5334), 44, + ACTIONS(1827), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285155,10 +274073,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285188,14 +274104,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, - [45746] = 5, + [43155] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2332), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2274), 1, sym_comment, - ACTIONS(5472), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285209,7 +274127,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(5470), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285221,10 +274140,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285254,14 +274171,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, - [45817] = 5, + [43228] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2298), 1, - aux_sym_shebang_repeat1, - STATE(2333), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2275), 1, sym_comment, - ACTIONS(5366), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285275,7 +274194,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(5364), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285287,10 +274207,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285320,14 +274238,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, - [45888] = 5, + [43301] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2313), 1, - aux_sym_shebang_repeat1, - STATE(2334), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(2276), 1, sym_comment, - ACTIONS(5476), 13, + ACTIONS(2214), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285341,7 +274261,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(5474), 44, + ACTIONS(2216), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285353,10 +274274,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285386,14 +274305,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, - [45959] = 5, + [43374] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2299), 1, - aux_sym_shebang_repeat1, - STATE(2335), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(2277), 1, sym_comment, - ACTIONS(5480), 13, + ACTIONS(1794), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285407,7 +274328,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(5478), 44, + ACTIONS(1802), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285419,10 +274341,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285452,14 +274372,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46030] = 5, + [43447] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2278), 1, + sym_comment, + ACTIONS(2263), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + ACTIONS(2261), 45, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + [43516] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2336), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(2279), 1, sym_comment, - STATE(2345), 1, - aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + ACTIONS(2218), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285473,7 +274460,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(5364), 44, + ACTIONS(2222), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285485,10 +274473,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285518,14 +274504,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, - [46101] = 5, + [43589] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2337), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(2280), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(2224), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285539,7 +274527,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(5470), 44, + ACTIONS(2228), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285551,10 +274540,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285584,14 +274571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46172] = 5, + [43662] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2174), 1, aux_sym_shebang_repeat1, - STATE(2338), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285605,7 +274592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285650,14 +274637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46243] = 5, + [43733] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2339), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285671,7 +274658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285716,16 +274703,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, - [46314] = 6, + [43804] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2340), 1, + STATE(2283), 1, sym_comment, - STATE(8152), 1, + STATE(7261), 1, sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285739,7 +274726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285783,14 +274770,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, - [46387] = 5, + [43877] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2341), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2284), 1, sym_comment, - ACTIONS(5472), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285804,7 +274793,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(5470), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285816,10 +274806,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285849,28 +274837,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, - [46458] = 5, - ACTIONS(251), 1, + [43950] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2342), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(2285), 1, sym_comment, - ACTIONS(5454), 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(5452), 44, + ACTIONS(2245), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285882,10 +274859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2241), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285894,40 +274872,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [46529] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2343), 1, - sym_comment, - STATE(2359), 1, - aux_sym_shebang_repeat1, - ACTIONS(5366), 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, @@ -285936,43 +274896,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285981,28 +274904,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, - [46600] = 5, - ACTIONS(251), 1, + [44023] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2344), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(2286), 1, sym_comment, - STATE(2412), 1, - aux_sym_shebang_repeat1, - ACTIONS(5336), 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(5334), 44, + ACTIONS(1000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286014,10 +274926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1004), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286026,40 +274939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [46671] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2345), 1, - sym_comment, - ACTIONS(5454), 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, @@ -286068,43 +274963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286113,16 +274971,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, - [46742] = 6, + [44096] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2346), 1, + STATE(2287), 1, sym_comment, - STATE(8466), 1, + STATE(7261), 1, sym__expr_parenthesized_immediate, - ACTIONS(4994), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286136,7 +274994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4992), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286180,16 +275038,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, - [46815] = 6, + [44169] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(2347), 1, + STATE(2288), 1, sym_comment, - STATE(8466), 1, + STATE(7261), 1, sym__expr_parenthesized_immediate, - ACTIONS(5006), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286203,7 +275061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5004), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286247,14 +275105,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46888] = 5, + [44242] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2348), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2289), 1, sym_comment, - STATE(2380), 1, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6486), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [44341] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5366), 13, + STATE(2290), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286268,7 +275206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286313,14 +275251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46959] = 5, + [44412] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2338), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2349), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5340), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286334,7 +275272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286379,14 +275317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47030] = 5, + [44483] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2175), 1, aux_sym_shebang_repeat1, - STATE(2350), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286400,7 +275338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286445,14 +275383,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, - [47101] = 5, + [44554] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2300), 1, - aux_sym_shebang_repeat1, - STATE(2351), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(2293), 1, sym_comment, - ACTIONS(5336), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286466,7 +275406,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(5334), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286478,10 +275419,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286511,28 +275450,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, - [47172] = 5, - ACTIONS(251), 1, + [44627] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2295), 1, - aux_sym_shebang_repeat1, - STATE(2352), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(2294), 1, sym_comment, - ACTIONS(5366), 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(5364), 44, + ACTIONS(2253), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286544,10 +275472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2249), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286556,19 +275485,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286577,28 +275517,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, - [47243] = 5, - ACTIONS(251), 1, + [44700] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2353), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(2295), 1, sym_comment, - STATE(2372), 1, - aux_sym_shebang_repeat1, - ACTIONS(5484), 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(5482), 44, + ACTIONS(2259), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286610,10 +275539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2257), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286622,19 +275552,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286643,14 +275584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47314] = 5, + [44773] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(2354), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2296), 1, sym_comment, - ACTIONS(1687), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286664,7 +275605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1699), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286679,7 +275620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286709,14 +275650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47385] = 5, + [44844] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2339), 1, - aux_sym_shebang_repeat1, - STATE(2355), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(2297), 1, sym_comment, - ACTIONS(5340), 13, + ACTIONS(1653), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286730,7 +275671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(1665), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286745,7 +275686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286775,14 +275716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47456] = 5, + [44915] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2356), 1, - sym_comment, - STATE(2381), 1, + STATE(2198), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2298), 1, + sym_comment, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286796,7 +275737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286841,14 +275782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47527] = 5, + [44986] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2357), 1, - sym_comment, - STATE(2379), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 13, + STATE(2299), 1, + sym_comment, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286862,7 +275803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286907,16 +275848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47598] = 6, + [45057] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2358), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2300), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286930,8 +275869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286943,8 +275881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -286974,14 +275914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47671] = 5, + [45128] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(2225), 1, aux_sym_shebang_repeat1, - STATE(2359), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286995,7 +275935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287040,94 +275980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47742] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2360), 1, - sym_comment, - STATE(2558), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7051), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [47841] = 5, + [45199] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2361), 1, + STATE(2302), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287141,7 +276001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287186,17 +276046,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47912] = 6, - ACTIONS(3), 1, + [45270] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(2362), 1, + STATE(2249), 1, + aux_sym_shebang_repeat1, + STATE(2303), 1, sym_comment, - ACTIONS(2258), 12, - ts_builtin_sym_end, + ACTIONS(5144), 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(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287208,11 +276079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2254), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287221,30 +276091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287253,16 +276112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47985] = 6, + [45341] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2363), 1, + STATE(2226), 1, + aux_sym_shebang_repeat1, + STATE(2304), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287276,8 +276133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287289,8 +276145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287320,14 +276178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48058] = 5, + [45412] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2364), 1, - sym_comment, - STATE(2389), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 13, + STATE(2305), 1, + sym_comment, + ACTIONS(5237), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287341,7 +276199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5235), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287386,14 +276244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48129] = 5, + [45483] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2365), 1, + STATE(2306), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287407,7 +276265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287452,16 +276310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48200] = 6, + [45554] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2366), 1, + STATE(2228), 1, + aux_sym_shebang_repeat1, + STATE(2307), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287475,8 +276331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287488,8 +276343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287519,14 +276376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48273] = 5, + [45625] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2367), 1, - sym_comment, - STATE(2388), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5340), 13, + STATE(2308), 1, + sym_comment, + ACTIONS(5287), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287540,7 +276397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, + ACTIONS(5285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287585,19 +276442,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48344] = 5, + [45696] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2368), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + STATE(2309), 1, sym_comment, - ACTIONS(5490), 13, + STATE(2348), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287606,8 +276484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5245), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287619,27 +276496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -287651,14 +276516,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, - [48415] = 5, + [45784] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2369), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2310), 1, sym_comment, - ACTIONS(5472), 13, + STATE(2381), 1, + aux_sym_shebang_repeat1, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5291), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287672,8 +276542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, - sym__newline, + ACTIONS(5289), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287687,7 +276556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -287700,8 +276568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -287717,19 +276583,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48486] = 5, + [45858] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2311), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287738,7 +276637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, + ACTIONS(5257), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287751,30 +276650,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287783,57 +276661,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48557] = 6, - ACTIONS(3), 1, + [45954] = 19, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(2371), 1, - sym_comment, - ACTIONS(1036), 12, - ts_builtin_sym_end, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 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(1034), 44, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + STATE(2312), 1, + sym_comment, + STATE(2383), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5308), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287842,6 +276717,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5289), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287850,19 +276740,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48630] = 5, + [46052] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2372), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5494), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287871,7 +276796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5492), 44, + ACTIONS(5257), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -287884,30 +276809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287916,19 +276819,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48701] = 5, + [46150] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2373), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, + anon_sym_and2, + STATE(2314), 1, sym_comment, - ACTIONS(5490), 13, + STATE(2385), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287937,8 +276877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5289), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -287950,30 +276889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287982,19 +276899,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48772] = 5, + [46250] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2304), 1, - aux_sym_shebang_repeat1, - STATE(2374), 1, + ACTIONS(5363), 1, + anon_sym_DOT2, + STATE(2315), 1, + sym_comment, + STATE(2528), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2744), 1, + sym_cell_path, + ACTIONS(1717), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1719), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [46326] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5162), 1, + sym__newline, + STATE(2316), 1, sym_comment, - ACTIONS(5366), 13, + ACTIONS(5167), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5171), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288003,8 +276989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5364), 44, - sym__newline, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288016,9 +277001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5169), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -288040,27 +277034,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [48843] = 5, + [46400] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5365), 1, + anon_sym_DOT2, + STATE(2591), 1, + sym_path, + STATE(2317), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(943), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [46472] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5368), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2375), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288069,7 +277158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, + ACTIONS(5257), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288082,30 +277171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288114,19 +277180,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48914] = 5, + [46572] = 21, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2376), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, + anon_sym_and2, + ACTIONS(5370), 1, + anon_sym_xor2, + STATE(2319), 1, sym_comment, - ACTIONS(5490), 13, + STATE(2387), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288135,8 +277240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5289), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288148,30 +277252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288180,19 +277261,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48985] = 5, + [46674] = 21, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, + anon_sym_and2, + ACTIONS(5370), 1, + anon_sym_xor2, + STATE(2318), 1, aux_sym_shebang_repeat1, - STATE(2377), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288201,8 +277321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5271), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288214,30 +277333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288246,19 +277342,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49056] = 5, + [46776] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2378), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + STATE(2321), 1, sym_comment, - ACTIONS(5490), 13, + STATE(2360), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288267,8 +277398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5245), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288280,30 +277410,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288312,19 +277421,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, - [49127] = 5, + [46874] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2379), 1, + STATE(2322), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288333,7 +277466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, + ACTIONS(5239), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288346,27 +277479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288378,19 +277495,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, - [49198] = 5, + [46962] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2323), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288399,7 +277540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5257), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288412,27 +277553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288444,19 +277569,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49269] = 5, + [47050] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5267), 1, + sym__newline, + STATE(2324), 1, + sym_comment, + STATE(2579), 1, + aux_sym_command_list_repeat1, + STATE(2885), 1, aux_sym_shebang_repeat1, - STATE(2381), 1, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6738), 1, + sym__command_name, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [47146] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 1, + sym__newline, + STATE(2325), 1, sym_comment, - ACTIONS(5472), 13, + STATE(2388), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288465,8 +277694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, - sym__newline, + ACTIONS(5289), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288478,27 +277706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288510,21 +277722,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, - [49340] = 6, + [47236] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(2382), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5372), 1, + sym__newline, + STATE(2323), 1, + aux_sym_shebang_repeat1, + STATE(2326), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288533,9 +277769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2294), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5271), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288546,26 +277780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288577,19 +277797,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49413] = 5, + [47326] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2383), 1, - sym_comment, - STATE(2398), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + STATE(2327), 1, + sym_comment, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288598,7 +277853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + ACTIONS(5239), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288611,30 +277866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288643,20 +277876,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, - [49484] = 6, + [47424] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(2384), 1, + ACTIONS(5372), 1, + sym__newline, + STATE(2328), 1, sym_comment, - ACTIONS(1840), 13, - anon_sym_GT2, + STATE(2400), 1, + aux_sym_shebang_repeat1, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -288666,9 +277906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5271), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288679,6 +277917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -288693,10 +277932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -288710,20 +277945,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49557] = 5, - ACTIONS(251), 1, + [47502] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2385), 1, + ACTIONS(5375), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5377), 1, + aux_sym__immediate_decimal_token2, + STATE(2329), 1, sym_comment, - STATE(2413), 1, - aux_sym_shebang_repeat1, - ACTIONS(5336), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, + ACTIONS(1625), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1623), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [47574] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + anon_sym_DOT, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token2, + STATE(2330), 1, + sym_comment, + ACTIONS(1601), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1599), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, anon_sym_o_GT, @@ -288731,8 +278067,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [47646] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + STATE(2331), 1, + sym_comment, + STATE(2370), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 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(5245), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288744,27 +278136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288776,14 +278152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49628] = 5, + [47736] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2332), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5167), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288797,7 +278171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, + ACTIONS(5169), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288842,19 +278216,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49699] = 5, + [47804] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2387), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5383), 1, + sym__newline, + STATE(2333), 1, sym_comment, - ACTIONS(5498), 13, - anon_sym_GT2, + STATE(2433), 1, + aux_sym_shebang_repeat1, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5229), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288863,8 +278252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 44, - sym__newline, + ACTIONS(5227), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -288876,9 +278264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -288891,12 +278277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -288908,19 +278288,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49770] = 5, + [47888] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2388), 1, + STATE(2334), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288929,7 +278338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, + ACTIONS(5239), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -288942,28 +278351,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -288974,19 +278364,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49841] = 5, + [47980] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2389), 1, + STATE(2335), 1, sym_comment, - ACTIONS(5490), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288995,7 +278395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, + ACTIONS(5257), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289008,9 +278408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289023,10 +278421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289040,18 +278434,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, - [49912] = 5, + [48060] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2390), 1, + ACTIONS(5383), 1, + sym__newline, + STATE(2336), 1, sym_comment, - ACTIONS(5490), 13, - anon_sym_GT2, + STATE(2436), 1, + aux_sym_shebang_repeat1, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5229), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -289061,8 +278464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5227), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289076,7 +278478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289089,10 +278490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289106,19 +278503,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49983] = 5, + [48138] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2391), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 1, + sym__newline, + STATE(2337), 1, sym_comment, - ACTIONS(5472), 13, - anon_sym_GT2, + STATE(2393), 1, + aux_sym_shebang_repeat1, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5291), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289127,8 +278536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, - sym__newline, + ACTIONS(5289), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289140,9 +278548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289155,10 +278561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289172,19 +278574,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50054] = 5, + [48220] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2392), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5490), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5297), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289193,7 +278608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, + ACTIONS(5295), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289206,9 +278621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289221,12 +278634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289238,19 +278645,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50125] = 5, + [48302] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2393), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5383), 1, + sym__newline, + STATE(2339), 1, sym_comment, - ACTIONS(5490), 13, + STATE(2442), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289259,8 +278687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, - sym__newline, + ACTIONS(5227), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289272,27 +278699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289304,19 +278719,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50196] = 5, + [48390] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2394), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5490), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289325,7 +278767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5488), 44, + ACTIONS(5257), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289338,27 +278780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289370,19 +278794,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50267] = 5, + [48480] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2395), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5472), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5241), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289391,7 +278825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, + ACTIONS(5239), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289404,9 +278838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289419,10 +278851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289436,93 +278864,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50338] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2573), 1, - anon_sym_DOLLAR, - ACTIONS(5500), 1, - anon_sym_LPAREN2, - ACTIONS(5502), 1, - anon_sym_DOT, - ACTIONS(5506), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5508), 1, - aux_sym__immediate_decimal_token5, - STATE(2396), 1, - sym_comment, - STATE(2798), 1, - sym__immediate_decimal, - ACTIONS(1579), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5504), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2925), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [50425] = 5, + [48560] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2397), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 1, + sym__newline, + STATE(2342), 1, sym_comment, - STATE(2417), 1, + STATE(2394), 1, aux_sym_shebang_repeat1, - ACTIONS(5336), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289531,8 +278914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, - sym__newline, + ACTIONS(5289), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289544,27 +278926,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289576,18 +278940,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50496] = 5, + [48652] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2398), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5440), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5297), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -289597,7 +278968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5295), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289612,7 +278983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289625,10 +278995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289642,19 +279008,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50567] = 5, + [48728] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5372), 1, + sym__newline, + STATE(2335), 1, aux_sym_shebang_repeat1, - STATE(2399), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5472), 13, - anon_sym_GT2, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289663,8 +279041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5470), 44, - sym__newline, + ACTIONS(5271), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289676,9 +279053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289691,10 +279066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289708,52 +279079,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50638] = 19, + [48810] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2400), 1, + ACTIONS(5363), 1, + anon_sym_DOT2, + STATE(2345), 1, sym_comment, - STATE(2558), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7051), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + STATE(2528), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2703), 1, + sym_cell_path, + ACTIONS(935), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(937), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289788,14 +279136,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [50737] = 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [48886] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2285), 1, - aux_sym_shebang_repeat1, - STATE(2401), 1, + ACTIONS(5383), 1, + sym__newline, + STATE(2346), 1, sym_comment, - ACTIONS(5336), 13, + STATE(2444), 1, + aux_sym_shebang_repeat1, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289809,8 +279173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5334), 44, - sym__newline, + ACTIONS(5227), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -289824,7 +279187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -289837,8 +279199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -289854,19 +279214,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50808] = 5, + [48960] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2402), 1, + STATE(2347), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289875,7 +279264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5257), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289888,28 +279277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -289920,21 +279290,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50879] = 6, + [49052] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2403), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2348), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289943,8 +279330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, + ACTIONS(5295), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -289956,7 +279342,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_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -289964,18 +279350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289987,52 +279363,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50952] = 19, + [49138] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3147), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5448), 1, - sym__newline, - ACTIONS(5510), 1, - anon_sym_RBRACK, - STATE(2404), 1, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2349), 1, sym_comment, - STATE(2530), 1, - aux_sym_shebang_repeat1, - STATE(2696), 1, - aux_sym_command_list_repeat1, - STATE(4047), 1, + STATE(2834), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, sym__val_number_decimal, - STATE(7495), 1, - sym__command_name, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, + STATE(3962), 1, sym_val_string, - ACTIONS(3143), 2, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6139), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5662), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5444), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290067,19 +279441,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [51051] = 5, + [49234] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2390), 1, - aux_sym_shebang_repeat1, - STATE(2405), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + STATE(2350), 1, sym_comment, - ACTIONS(5362), 13, + STATE(2395), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290088,8 +279493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, - sym__newline, + ACTIONS(5289), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290101,28 +279505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -290133,21 +279518,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51122] = 6, + [49328] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2406), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5383), 1, + sym__newline, + STATE(2351), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + STATE(2375), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290156,9 +279574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5227), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290169,29 +279585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290200,19 +279597,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51195] = 5, + [49426] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2368), 1, - aux_sym_shebang_repeat1, - STATE(2407), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + STATE(2352), 1, sym_comment, - ACTIONS(5362), 13, + STATE(2390), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290221,8 +279649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, - sym__newline, + ACTIONS(5245), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290234,28 +279661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -290266,19 +279674,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51266] = 5, + [49520] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2408), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5372), 1, + sym__newline, + STATE(2353), 1, sym_comment, - ACTIONS(5440), 13, + STATE(2421), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290287,8 +279716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, - sym__newline, + ACTIONS(5271), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290300,27 +279728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -290332,19 +279748,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51337] = 5, + [49608] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(2341), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, + anon_sym_and2, + ACTIONS(5383), 1, + sym__newline, + STATE(2327), 1, aux_sym_shebang_repeat1, - STATE(2409), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5340), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290353,8 +279806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5338), 44, - sym__newline, + ACTIONS(5227), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290366,30 +279818,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290398,19 +279828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51408] = 5, + [49708] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2373), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2410), 1, + STATE(2355), 1, sym_comment, - ACTIONS(5362), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290419,7 +279880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5257), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290432,29 +279893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -290464,12 +279905,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, - [51479] = 4, + [49802] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2411), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2356), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5297), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290483,9 +279929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1781), 44, - ts_builtin_sym_end, + ACTIONS(5295), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290497,6 +279941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -290511,9 +279956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -290529,19 +279971,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51548] = 5, + [49874] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2412), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + STATE(2357), 1, sym_comment, - ACTIONS(5440), 13, + STATE(2397), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290550,8 +280025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, - sym__newline, + ACTIONS(5289), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290563,29 +280037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -290595,19 +280049,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51619] = 5, + [49970] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5372), 1, + sym__newline, + STATE(2340), 1, aux_sym_shebang_repeat1, - STATE(2413), 1, + STATE(2358), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290616,8 +280099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, - sym__newline, + ACTIONS(5271), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290629,27 +280111,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -290661,19 +280125,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51690] = 5, + [50062] = 21, ACTIONS(251), 1, anon_sym_POUND, - STATE(2392), 1, - aux_sym_shebang_repeat1, - STATE(2414), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, + anon_sym_and2, + ACTIONS(5370), 1, + anon_sym_xor2, + STATE(2359), 1, sym_comment, - ACTIONS(5362), 13, + STATE(2363), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290682,8 +280185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, - sym__newline, + ACTIONS(5227), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290695,30 +280197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290727,19 +280206,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51761] = 5, + [50164] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2375), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2415), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5362), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290748,7 +280260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, + ACTIONS(5295), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290761,30 +280273,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290793,14 +280284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51832] = 5, + [50260] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2416), 1, + ACTIONS(5386), 1, + anon_sym_LBRACK2, + STATE(2361), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(2315), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290814,7 +280305,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(5438), 44, + ACTIONS(2319), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290826,10 +280318,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -290859,19 +280349,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51903] = 5, + [50330] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3884), 1, + anon_sym_DOLLAR, + ACTIONS(5388), 1, + anon_sym_LPAREN2, + ACTIONS(5390), 1, + anon_sym_DOT, + ACTIONS(5392), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5394), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5396), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5398), 1, + aux_sym__immediate_decimal_token5, + STATE(2362), 1, + sym_comment, + STATE(2833), 1, + sym__immediate_decimal, + STATE(2922), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1583), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [50418] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5368), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2417), 1, + STATE(2363), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290880,7 +280481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5239), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290893,30 +280494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290925,21 +280503,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, - [51974] = 6, + [50518] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2418), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5383), 1, + sym__newline, + STATE(2322), 1, + aux_sym_shebang_repeat1, + STATE(2364), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290948,9 +280550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5227), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -290961,26 +280561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -290992,19 +280578,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52047] = 5, + [50608] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2419), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5454), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291013,7 +280634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5295), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291026,30 +280647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291058,19 +280657,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52118] = 5, + [50706] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2376), 1, - aux_sym_shebang_repeat1, - STATE(2420), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + STATE(2366), 1, sym_comment, - ACTIONS(5362), 13, - anon_sym_GT2, + STATE(2382), 1, + aux_sym_shebang_repeat1, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5247), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291079,8 +280690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, - sym__newline, + ACTIONS(5245), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291092,9 +280702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -291107,10 +280715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -291124,19 +280728,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52189] = 5, + [50788] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5368), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2421), 1, + STATE(2367), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291145,7 +280786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, + ACTIONS(5295), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291158,30 +280799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291190,21 +280808,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52260] = 6, + [50888] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2422), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5372), 1, + sym__newline, + STATE(2347), 1, + aux_sym_shebang_repeat1, + STATE(2368), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291213,9 +280860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5271), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291226,27 +280871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -291257,16 +280885,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, - [52333] = 6, + [50982] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(2423), 1, + ACTIONS(5372), 1, + sym__newline, + STATE(2369), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 13, + STATE(2440), 1, + aux_sym_shebang_repeat1, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5273), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291280,9 +280911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5271), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291293,6 +280922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -291307,8 +280937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -291324,57 +280952,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, - [52406] = 6, - ACTIONS(3), 1, + [51056] = 14, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(2424), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2370), 1, sym_comment, - ACTIONS(2274), 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(2272), 44, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291383,25 +280997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52479] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(2425), 1, - sym_comment, - ACTIONS(2238), 12, - ts_builtin_sym_end, + ACTIONS(5295), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291413,43 +281009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2234), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291458,19 +281026,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52552] = 5, + [51144] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2377), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5383), 1, + sym__newline, + STATE(2341), 1, aux_sym_shebang_repeat1, - STATE(2426), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5362), 13, - anon_sym_GT2, + ACTIONS(5308), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5229), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291479,8 +281059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, - sym__newline, + ACTIONS(5227), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291492,9 +281071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -291507,10 +281084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -291524,19 +281097,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52623] = 5, + [51226] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2427), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5383), 1, + sym__newline, + STATE(2372), 1, sym_comment, - ACTIONS(5440), 13, + STATE(2398), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291545,8 +281147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5438), 44, - sym__newline, + ACTIONS(5227), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291558,27 +281159,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -291590,19 +281173,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52694] = 5, + [51318] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5454), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5255), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291611,7 +281207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5452), 44, + ACTIONS(5253), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291624,9 +281220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -291639,12 +281233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -291656,19 +281244,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52765] = 5, + [51400] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2378), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5383), 1, + sym__newline, + STATE(2334), 1, aux_sym_shebang_repeat1, - STATE(2429), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5362), 13, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291677,8 +281296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5360), 44, - sym__newline, + ACTIONS(5227), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291690,28 +281308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -291722,17 +281321,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52836] = 4, + [51494] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2430), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2375), 1, sym_comment, - ACTIONS(5138), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291741,8 +281375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5136), 45, - ts_builtin_sym_end, + ACTIONS(5239), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291754,31 +281387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291787,17 +281399,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52905] = 4, + [51590] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2431), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2376), 1, sym_comment, - ACTIONS(2387), 14, - sym__newline, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5255), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -291807,7 +281427,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(2389), 43, + ACTIONS(5253), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291818,9 +281439,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_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -291833,16 +281454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291851,31 +281467,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52973] = 11, + [51666] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - STATE(2432), 1, - sym_comment, - STATE(2536), 1, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5372), 1, + sym__newline, + STATE(2355), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2377), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5484), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291884,7 +281521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5482), 37, + ACTIONS(5271), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -291896,21 +281533,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + anon_sym_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, + [51762] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5383), 1, + sym__newline, + STATE(2378), 1, + sym_comment, + STATE(2380), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 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(5227), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_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, + [51858] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2379), 1, + sym_comment, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 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(5253), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -291922,48 +281696,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53055] = 16, + [51944] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5545), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2433), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5333), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5468), 8, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291972,7 +281748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 25, + ACTIONS(5239), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -291988,7 +281764,6 @@ 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -291998,31 +281773,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53147] = 11, + [52038] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - STATE(2434), 1, - sym_comment, - STATE(2538), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, + STATE(2381), 1, + sym_comment, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5480), 10, + ACTIONS(5255), 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, @@ -292031,7 +281797,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(5478), 37, + ACTIONS(5253), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292043,6 +281810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -292056,6 +281824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -292069,123 +281839,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53229] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5448), 1, - sym__newline, - STATE(2435), 1, - sym_comment, - STATE(2705), 1, - aux_sym_command_list_repeat1, - STATE(3037), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, - sym__val_number_decimal, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, - sym_val_string, - STATE(7921), 1, - sym__command_name, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5444), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [53325] = 15, + [52110] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - STATE(2436), 1, - sym_comment, - STATE(2463), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2382), 1, + sym_comment, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(5297), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292194,7 +281870,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(5460), 27, + ACTIONS(5295), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292206,11 +281883,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -292222,50 +281909,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53415] = 17, + [52190] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5563), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHand2, - STATE(2437), 1, - sym_comment, - STATE(2539), 1, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2383), 1, + sym_comment, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5484), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292274,7 +281963,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(5482), 24, + ACTIONS(5253), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292289,8 +281979,6 @@ 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292299,54 +281987,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53509] = 19, + [52286] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(5563), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHand2, - ACTIONS(5565), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHor2, - STATE(2438), 1, - sym_comment, - STATE(2562), 1, + ACTIONS(5372), 1, + sym__newline, + STATE(2311), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2384), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, + ACTIONS(5351), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5480), 8, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292355,7 +282043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5478), 22, + ACTIONS(5271), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292378,50 +282066,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53607] = 17, + [52384] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(5563), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHand2, - STATE(2439), 1, - sym_comment, - STATE(2512), 1, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2385), 1, + sym_comment, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5462), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292430,7 +282122,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(5460), 24, + ACTIONS(5253), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292442,11 +282135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292455,46 +282145,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53701] = 15, + [52482] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2440), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5333), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5468), 8, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292503,7 +282193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 26, + ACTIONS(5295), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292530,20 +282220,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53791] = 7, + [52572] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5349), 1, - sym__newline, - STATE(2441), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5368), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2387), 1, sym_comment, - ACTIONS(5354), 5, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5358), 8, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292552,7 +282278,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(5352), 20, + ACTIONS(5253), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292564,7 +282291,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_LBRACE, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292573,56 +282300,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, - ACTIONS(5356), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [53865] = 11, + [52672] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2442), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5531), 2, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5498), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292631,7 +282345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 36, + ACTIONS(5253), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292644,17 +282358,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -292668,177 +282374,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53947] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2443), 1, - sym_comment, - STATE(2978), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6995), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [54043] = 8, + [52760] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5569), 1, - anon_sym_DOT, - STATE(2444), 1, - sym_comment, - STATE(2652), 1, - aux_sym_cell_path_repeat1, - STATE(2740), 1, - sym_path, - STATE(2847), 1, - sym_cell_path, - ACTIONS(1757), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1761), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54119] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - STATE(2445), 1, - sym_comment, - STATE(2485), 1, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, + anon_sym_and2, + ACTIONS(5370), 1, + anon_sym_xor2, + STATE(2367), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2389), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5462), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292847,7 +282434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5460), 37, + ACTIONS(5245), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292859,24 +282446,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_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292885,26 +282455,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54201] = 8, + [52862] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2446), 1, + STATE(2390), 1, sym_comment, - ACTIONS(5531), 2, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5498), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292913,7 +282505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 39, + ACTIONS(5295), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -292926,23 +282518,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -292953,20 +282531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54277] = 5, + [52954] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4855), 1, - aux_sym_record_entry_token1, - STATE(2447), 1, - sym_comment, - ACTIONS(1034), 14, + ACTIONS(5301), 1, sym__newline, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + STATE(2391), 1, + sym_comment, + STATE(2392), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5312), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292975,7 +282585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 42, + ACTIONS(5245), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -292986,29 +282596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -293018,50 +282609,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54347] = 17, + [53050] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5545), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHand2, - ACTIONS(5571), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2448), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5333), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5468), 8, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293070,7 +282661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 24, + ACTIONS(5295), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293095,42 +282686,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54441] = 14, + [53144] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3927), 1, - anon_sym_DOLLAR, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5575), 1, - anon_sym_DOT, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5581), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5583), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2393), 1, sym_comment, - STATE(2989), 1, - sym__immediate_decimal, - STATE(3042), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5329), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5255), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293139,28 +282717,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1579), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5253), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293169,38 +282756,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54529] = 13, + [53224] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2450), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5533), 4, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5498), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293209,7 +282804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 32, + ACTIONS(5253), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293222,15 +282817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293242,22 +282831,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54615] = 6, + [53314] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2451), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5498), 13, + ACTIONS(5323), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5327), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293266,7 +282881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 41, + ACTIONS(5253), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293279,25 +282894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -293308,17 +282907,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54687] = 4, + [53406] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2452), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2396), 1, sym_comment, - ACTIONS(5354), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5259), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293327,7 +282941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5356), 44, + ACTIONS(5257), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293340,9 +282954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -293355,12 +282967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293372,52 +282978,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54755] = 18, + [53488] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5545), 1, + ACTIONS(5343), 1, anon_sym_bit_DASHand2, - ACTIONS(5571), 1, + ACTIONS(5345), 1, anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2453), 1, + STATE(2397), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5323), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5333), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5498), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293426,7 +283030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 23, + ACTIONS(5253), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293442,6 +283046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293450,52 +283055,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54851] = 18, + [53582] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, + ACTIONS(5325), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - STATE(2454), 1, - sym_comment, - STATE(2540), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2398), 1, + sym_comment, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5333), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, + ACTIONS(5327), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5484), 8, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293504,7 +283103,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(5482), 23, + ACTIONS(5239), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293519,6 +283119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -293528,122 +283130,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54947] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_DOT, - ACTIONS(5589), 1, - aux_sym__immediate_decimal_token2, - STATE(2455), 1, - sym_comment, - ACTIONS(1669), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [55019] = 20, + [53672] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5547), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - STATE(2456), 1, - sym_comment, - STATE(2566), 1, + STATE(2373), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2399), 1, + sym_comment, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5480), 8, + ACTIONS(5291), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293652,7 +283166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5478), 21, + ACTIONS(5289), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293664,8 +283178,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293674,18 +283202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55119] = 5, + [53756] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5593), 1, - anon_sym_LBRACK2, - STATE(2457), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2400), 1, sym_comment, - ACTIONS(2304), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -293695,8 +283230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2308), 43, - ts_builtin_sym_end, + ACTIONS(5257), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -293708,6 +283242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -293722,10 +283257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -293739,54 +283270,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55189] = 19, + [53832] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - STATE(1800), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2401), 1, + sym_comment, + STATE(2834), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6089), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [53928] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + STATE(2376), 1, aux_sym_shebang_repeat1, - STATE(2458), 1, + STATE(2402), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5498), 8, + ACTIONS(5291), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293795,8 +283378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 22, - sym__newline, + ACTIONS(5289), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293808,8 +283390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293818,32 +283417,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55287] = 12, + [54006] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - ACTIONS(5597), 1, - sym__newline, - STATE(2459), 1, + STATE(2403), 1, sym_comment, - STATE(2462), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5559), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5476), 10, + ACTIONS(5203), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -293854,7 +283449,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(5474), 35, + ACTIONS(5201), 37, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293867,6 +283463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -293890,34 +283487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55371] = 12, + [54086] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - STATE(2460), 1, + STATE(2404), 1, sym_comment, - STATE(2544), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5480), 10, + ACTIONS(5203), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293926,7 +283513,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(5478), 35, + ACTIONS(5201), 40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -293938,7 +283526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -293951,6 +283541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -293962,56 +283554,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, - [55455] = 20, + [54160] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - ACTIONS(5600), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2461), 1, + STATE(2405), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5498), 8, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294020,7 +283592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 21, + ACTIONS(5201), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294033,7 +283605,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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294042,32 +283626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55555] = 11, + [54244] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2462), 1, + STATE(2406), 1, sym_comment, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5468), 10, + ACTIONS(5203), 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, @@ -294076,7 +283648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 36, + ACTIONS(5201), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294089,7 +283661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -294102,6 +283676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -294113,43 +283691,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55637] = 14, + [54314] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2463), 1, + ACTIONS(5420), 1, + anon_sym_bit_DASHand2, + ACTIONS(5422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + STATE(2407), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5498), 8, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294158,7 +283743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 28, + ACTIONS(5201), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294171,14 +283756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294187,28 +283768,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55725] = 9, + [54408] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - STATE(2464), 1, + ACTIONS(5400), 1, + anon_sym_DASH2, + ACTIONS(5408), 1, + anon_sym_PLUS2, + ACTIONS(5420), 1, + anon_sym_bit_DASHand2, + ACTIONS(5422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(2408), 1, sym_comment, - STATE(2467), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5476), 11, + ACTIONS(5410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5412), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294217,7 +283822,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(5474), 38, + ACTIONS(5201), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294229,25 +283835,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294256,34 +283846,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55803] = 12, + [54504] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - STATE(2465), 1, + ACTIONS(5420), 1, + anon_sym_bit_DASHand2, + ACTIONS(5422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(2409), 1, sym_comment, - STATE(2482), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5559), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5484), 10, + ACTIONS(5412), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294292,7 +283902,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(5482), 35, + ACTIONS(5201), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294304,22 +283915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294328,40 +283925,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, - [55887] = 14, + [54602] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - ACTIONS(5597), 1, - sym__newline, - STATE(2466), 1, + STATE(2410), 1, sym_comment, - STATE(2491), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5557), 4, + ACTIONS(5412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5476), 8, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294370,7 +283968,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(5474), 31, + ACTIONS(5201), 29, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294382,13 +283981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -294402,26 +283998,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, - [55975] = 8, + [54688] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2467), 1, + ACTIONS(5400), 1, + anon_sym_DASH2, + ACTIONS(5408), 1, + anon_sym_PLUS2, + STATE(2411), 1, sym_comment, - ACTIONS(5531), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5468), 11, + ACTIONS(5203), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294430,7 +284027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 39, + ACTIONS(5201), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294443,8 +284040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -294470,48 +284067,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56051] = 16, + [54766] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - STATE(2468), 1, + STATE(2412), 1, sym_comment, - STATE(2537), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, + ACTIONS(5412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5418), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5484), 8, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294520,7 +284113,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(5482), 25, + ACTIONS(5201), 27, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294532,6 +284126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -294546,24 +284141,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56143] = 7, + [54854] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - STATE(2469), 1, + ACTIONS(5400), 1, + anon_sym_DASH2, + ACTIONS(5408), 1, + anon_sym_PLUS2, + ACTIONS(5420), 1, + anon_sym_bit_DASHand2, + STATE(2413), 1, sym_comment, - STATE(2514), 1, - aux_sym_shebang_repeat1, - ACTIONS(5519), 2, + ACTIONS(5402), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5476), 13, + ACTIONS(5406), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5412), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294572,7 +284189,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(5474), 40, + ACTIONS(5201), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294584,25 +284202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -294613,43 +284216,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56217] = 14, + [54944] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5400), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5408), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2470), 1, + ACTIONS(5420), 1, + anon_sym_bit_DASHand2, + ACTIONS(5422), 1, + anon_sym_bit_DASHxor2, + STATE(2414), 1, sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5402), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5404), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5406), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5410), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5414), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5468), 8, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294658,7 +284266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5466), 28, + ACTIONS(5201), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -294671,13 +284279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -294687,54 +284292,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56305] = 19, + [55036] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2401), 1, + aux_sym_decl_def_repeat1, + STATE(2415), 1, + sym_comment, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6157), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55132] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5430), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5432), 1, + aux_sym__immediate_decimal_token2, + STATE(2416), 1, + sym_comment, + ACTIONS(1623), 11, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [55204] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5563), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHand2, - ACTIONS(5565), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHor2, - ACTIONS(5597), 1, + ACTIONS(5361), 1, + anon_sym_and2, + ACTIONS(5372), 1, sym__newline, - STATE(2471), 1, - sym_comment, - STATE(2522), 1, + STATE(2313), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2417), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, + ACTIONS(5351), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5476), 8, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5273), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294743,7 +284494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5474), 22, + ACTIONS(5271), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294755,7 +284506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -294766,27 +284516,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56403] = 9, + [55304] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5440), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5442), 1, + aux_sym__immediate_decimal_token5, + STATE(2418), 1, + sym_comment, + STATE(2938), 1, + sym__immediate_decimal, + ACTIONS(1583), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5438), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3045), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [55388] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - STATE(2472), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + STATE(2419), 1, sym_comment, - STATE(2486), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5484), 11, + ACTIONS(1653), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -294796,7 +284609,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(5482), 38, + ACTIONS(1665), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294807,7 +284622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -294822,6 +284636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -294835,29 +284653,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56481] = 8, + [55458] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5440), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5442), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 1, + sym_comment, + STATE(2879), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5438), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3058), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [55542] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5569), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2421), 1, + sym_comment, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5257), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55628] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5444), 1, anon_sym_DOT, - STATE(2473), 1, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token2, + STATE(2422), 1, sym_comment, - STATE(2652), 1, - aux_sym_cell_path_repeat1, - STATE(2740), 1, - sym_path, - STATE(2796), 1, - sym_cell_path, - ACTIONS(969), 6, + ACTIONS(1599), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(971), 47, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294892,10 +284854,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_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, @@ -294903,13 +284864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [56557] = 4, + [55700] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2474), 1, + ACTIONS(4712), 1, + anon_sym_COLON2, + STATE(2423), 1, sym_comment, - ACTIONS(1687), 14, - sym__newline, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -294923,7 +284885,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(1699), 43, + ACTIONS(1000), 43, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -294958,7 +284921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294967,56 +284929,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56625] = 20, + [55770] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2349), 1, + aux_sym_decl_def_repeat1, + STATE(2424), 1, + sym_comment, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6585), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55866] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5563), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHand2, - ACTIONS(5565), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, + ACTIONS(5357), 1, anon_sym_bit_DASHor2, - ACTIONS(5591), 1, + ACTIONS(5361), 1, anon_sym_and2, - ACTIONS(5597), 1, - sym__newline, - STATE(2475), 1, - sym_comment, - STATE(2564), 1, + STATE(2365), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2425), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, + ACTIONS(5351), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5476), 8, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295025,7 +285065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5474), 21, + ACTIONS(5245), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295047,48 +285087,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56725] = 16, + [55966] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - STATE(2476), 1, - sym_comment, - STATE(2532), 1, + STATE(2386), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2426), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, + ACTIONS(5351), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5480), 8, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295097,7 +285137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5478), 25, + ACTIONS(5245), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295123,28 +285163,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56817] = 9, + [56058] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5306), 1, + anon_sym_DASH2, + ACTIONS(5316), 1, + anon_sym_PLUS2, + ACTIONS(5372), 1, sym__newline, - STATE(2477), 1, - sym_comment, - STATE(2548), 1, + STATE(2396), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2427), 1, + sym_comment, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5480), 11, + ACTIONS(5318), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5273), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295153,7 +285199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5478), 38, + ACTIONS(5271), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295165,7 +285211,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_in2, anon_sym_and2, anon_sym_xor2, @@ -295179,8 +285224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295192,58 +285235,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56895] = 21, + [56142] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(5515), 1, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5523), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - ACTIONS(5602), 1, - anon_sym_xor2, - STATE(2478), 1, - sym_comment, - STATE(2535), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(2379), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2428), 1, + sym_comment, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5310), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5476), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295252,7 +285277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5474), 20, + ACTIONS(5289), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295264,7 +285289,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_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295273,26 +285309,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56997] = 7, + [56230] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_DOT, - STATE(2479), 1, + ACTIONS(1016), 1, + anon_sym_COLON2, + STATE(2429), 1, sym_comment, - STATE(2543), 1, - aux_sym_cell_path_repeat1, - STATE(2681), 1, - sym_path, - ACTIONS(982), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(984), 48, + ACTIONS(1004), 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(1000), 43, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56300] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5363), 1, + anon_sym_DOT2, + STATE(2430), 1, + sym_comment, + STATE(2528), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + STATE(2721), 1, + sym_cell_path, + ACTIONS(1761), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1763), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295330,8 +285434,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, @@ -295340,45 +285442,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [57071] = 15, + [56376] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5597), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5267), 1, sym__newline, - STATE(2470), 1, + STATE(2431), 1, + sym_comment, + STATE(2571), 1, + aux_sym_command_list_repeat1, + STATE(2885), 1, aux_sym_shebang_repeat1, - STATE(2480), 1, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6757), 1, + sym__command_name, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [56472] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2556), 1, + anon_sym_DOLLAR, + ACTIONS(5275), 1, + anon_sym_LPAREN2, + ACTIONS(5448), 1, + anon_sym_DOT, + ACTIONS(5452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5454), 1, + aux_sym__immediate_decimal_token5, + STATE(2432), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5476), 8, + STATE(2872), 1, + sym__immediate_decimal, + ACTIONS(1597), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5450), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295387,26 +285583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5474), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_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, @@ -295415,19 +285591,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57161] = 5, + aux_sym__unquoted_in_list_token1, + [56556] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - STATE(2481), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2433), 1, sym_comment, - ACTIONS(1687), 13, - anon_sym_GT2, + ACTIONS(5329), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5335), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5241), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295436,8 +285626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1699), 43, - ts_builtin_sym_end, + ACTIONS(5239), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295449,7 +285638,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_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -295463,12 +285652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295480,30 +285663,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57231] = 11, + [56638] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(5306), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5316), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(2338), 1, aux_sym_shebang_repeat1, - STATE(2482), 1, + STATE(2434), 1, sym_comment, - ACTIONS(5531), 2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5494), 10, + ACTIONS(5247), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -295514,8 +285699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5492), 36, - sym__newline, + ACTIONS(5245), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295551,45 +285735,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57313] = 15, + [56722] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - STATE(2483), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2435), 1, sym_comment, - STATE(2531), 1, + STATE(2438), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6486), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [56818] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2436), 1, + sym_comment, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(5241), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5484), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295598,7 +285841,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(5482), 27, + ACTIONS(5239), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295610,11 +285854,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295626,58 +285881,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57403] = 21, + [56894] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - ACTIONS(5602), 1, - anon_sym_xor2, - STATE(2484), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2437), 1, sym_comment, - STATE(2507), 1, + STATE(2439), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6502), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [56990] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2438), 1, + sym_comment, + STATE(2834), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6503), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57086] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5261), 1, + anon_sym_DASH_DASH, + STATE(2439), 1, + sym_comment, + STATE(2834), 1, + aux_sym_decl_def_repeat1, + STATE(3024), 1, + sym_long_flag, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6507), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [57182] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, + STATE(2440), 1, + sym_comment, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(5259), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5480), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295686,7 +286139,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(5478), 20, + ACTIONS(5257), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295698,7 +286152,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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295707,29 +286181,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57505] = 10, + [57254] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(5301), 1, + sym__newline, + STATE(2343), 1, aux_sym_shebang_repeat1, - STATE(2485), 1, + STATE(2441), 1, sym_comment, - ACTIONS(5531), 2, + ACTIONS(5308), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5498), 10, + ACTIONS(5247), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295738,8 +286211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5496), 38, - sym__newline, + ACTIONS(5245), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295751,6 +286223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -295777,26 +286250,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57585] = 8, + [57332] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5325), 1, + anon_sym_DASH2, + ACTIONS(5339), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(2486), 1, + STATE(2442), 1, sym_comment, - ACTIONS(5531), 2, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5537), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5494), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5341), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5331), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295805,7 +286290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5492), 39, + ACTIONS(5239), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295818,7 +286303,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_in2, anon_sym_and2, anon_sym_xor2, @@ -295826,14 +286310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295845,30 +286323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57661] = 10, + [57418] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - STATE(2487), 1, + ACTIONS(5301), 1, + sym__newline, + STATE(2356), 1, + aux_sym_shebang_repeat1, + STATE(2443), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5428), 10, + ACTIONS(5247), 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, @@ -295877,8 +286349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 37, - sym__newline, + ACTIONS(5245), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -295890,8 +286361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -295904,6 +286375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -295915,23 +286390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57741] = 7, + [57492] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2488), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(2444), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 11, + ACTIONS(5241), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -295941,7 +286414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 40, + ACTIONS(5239), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -295956,7 +286429,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -295969,6 +286441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -295982,40 +286456,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, - [57815] = 14, + [57564] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - STATE(2489), 1, + ACTIONS(5243), 1, + anon_sym_DOT2, + STATE(2317), 1, + aux_sym_cell_path_repeat1, + STATE(2445), 1, sym_comment, - STATE(2552), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, + STATE(2591), 1, + sym_path, + ACTIONS(948), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(950), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [57638] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2446), 1, + sym_comment, + ACTIONS(2437), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5480), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296024,7 +286542,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(5478), 31, + ACTIONS(2439), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296035,7 +286555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296043,8 +286563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296056,36 +286586,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, - [57903] = 12, + [57705] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - STATE(2490), 1, + STATE(2447), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, + ACTIONS(5084), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5088), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296094,7 +286606,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(5426), 33, + ACTIONS(5082), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296106,60 +286619,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(5086), 23, + anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, - [57987] = 13, + [57776] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2491), 1, + STATE(2448), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5096), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5468), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296168,7 +286670,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(5466), 32, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296180,7 +286683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296188,8 +286691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296201,15 +286714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58073] = 5, + [57843] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2492), 1, + STATE(2449), 1, sym_comment, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5428), 13, + ACTIONS(2485), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -296223,7 +286733,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(5426), 42, + ACTIONS(2487), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296235,10 +286746,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -296251,6 +286760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -296266,38 +286777,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, - [58143] = 13, + [57910] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2493), 1, + STATE(2450), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5179), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296306,7 +286796,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(5492), 32, + ACTIONS(5177), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296318,7 +286809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296326,8 +286817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296339,50 +286840,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58229] = 17, + [57977] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(5612), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - ACTIONS(5624), 1, - anon_sym_bit_DASHand2, - ACTIONS(5626), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5628), 1, - anon_sym_bit_DASHor2, - STATE(2494), 1, + STATE(2451), 1, sym_comment, - ACTIONS(5606), 2, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5608), 2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, + ACTIONS(5460), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296391,7 +286886,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(5426), 24, + ACTIONS(5201), 26, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296403,11 +286899,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296416,17 +286913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58323] = 6, + [58064] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2495), 1, + STATE(2452), 1, sym_comment, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 13, + ACTIONS(1653), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -296440,7 +286932,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(5492), 41, + ACTIONS(1665), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296452,7 +286945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -296467,6 +286959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -296482,52 +286976,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58395] = 18, - ACTIONS(251), 1, + [58131] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - ACTIONS(5624), 1, - anon_sym_bit_DASHand2, - ACTIONS(5626), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5628), 1, - anon_sym_bit_DASHor2, - ACTIONS(5630), 1, - anon_sym_and2, - STATE(2496), 1, + ACTIONS(5381), 1, + aux_sym__immediate_decimal_token2, + STATE(2453), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + ACTIONS(1601), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1599), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296536,22 +287030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296560,52 +287038,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, - [58491] = 18, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [58200] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2497), 1, + STATE(2454), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2453), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296614,7 +287059,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(5492), 23, + ACTIONS(2455), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296626,10 +287072,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -296638,54 +287103,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58587] = 19, - ACTIONS(251), 1, + [58267] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - ACTIONS(5624), 1, - anon_sym_bit_DASHand2, - ACTIONS(5626), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5628), 1, - anon_sym_bit_DASHor2, - ACTIONS(5630), 1, - anon_sym_and2, - ACTIONS(5632), 1, - anon_sym_xor2, - STATE(2498), 1, + ACTIONS(5476), 1, + aux_sym__immediate_decimal_token2, + STATE(2455), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + ACTIONS(1711), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1709), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296694,21 +287157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296717,41 +287165,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, - [58685] = 13, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [58336] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - STATE(2499), 1, + STATE(2456), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, + ACTIONS(5096), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296760,7 +287186,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(5426), 29, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296772,13 +287199,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -296790,54 +287230,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58771] = 19, + [58403] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - ACTIONS(5545), 1, + ACTIONS(5478), 1, anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2500), 1, + STATE(2457), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5456), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5466), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, + ACTIONS(5460), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5494), 8, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296846,7 +287278,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(5492), 22, + ACTIONS(5201), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296858,9 +287291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296869,31 +287304,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, - [58869] = 11, + [58492] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5597), 1, - sym__newline, - STATE(2501), 1, + STATE(2458), 1, sym_comment, - STATE(2549), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5476), 10, + ACTIONS(2334), 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, @@ -296902,7 +287323,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(5474), 37, + ACTIONS(2336), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -296913,7 +287336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -296927,6 +287350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -296940,27 +287367,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58951] = 9, + [58559] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - STATE(2502), 1, + STATE(2459), 1, sym_comment, - ACTIONS(5606), 2, + ACTIONS(962), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(964), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 10, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [58626] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2460), 1, + sym_comment, + ACTIONS(5096), 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, @@ -296969,7 +287449,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(5426), 39, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -296981,9 +287462,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -296996,6 +287476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -297009,44 +287493,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59029] = 14, + [58693] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - STATE(2503), 1, + ACTIONS(1621), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5486), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token5, + STATE(2461), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + STATE(3071), 1, + sym__immediate_decimal, + STATE(3175), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297055,26 +287535,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1619), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297083,46 +287565,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, - [59117] = 15, + [58778] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - ACTIONS(5624), 1, - anon_sym_bit_DASHand2, - STATE(2504), 1, + STATE(2462), 1, sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, + ACTIONS(1957), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297131,7 +287584,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(5426), 26, + ACTIONS(1959), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297143,11 +287597,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -297158,48 +287628,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59207] = 16, + [58845] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5604), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(5612), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - ACTIONS(5624), 1, + ACTIONS(5478), 1, anon_sym_bit_DASHand2, - ACTIONS(5626), 1, + ACTIONS(5492), 1, anon_sym_bit_DASHxor2, - STATE(2505), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5606), 2, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5608), 2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, + ACTIONS(5460), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5428), 8, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297208,7 +287678,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(5426), 25, + ACTIONS(5201), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297220,8 +287691,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, @@ -297234,48 +287703,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, - [59299] = 16, + [58936] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5597), 1, - sym__newline, - STATE(2440), 1, - aux_sym_shebang_repeat1, - STATE(2506), 1, + STATE(2464), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(5183), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5476), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297284,7 +287722,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(5474), 25, + ACTIONS(5181), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -297295,10 +287735,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -297310,56 +287766,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, - [59391] = 20, + [59003] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - ACTIONS(5600), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2507), 1, + STATE(2465), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2457), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297368,7 +287785,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(5456), 21, + ACTIONS(2459), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297380,8 +287798,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -297390,29 +287829,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, - [59491] = 8, + [59070] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5569), 1, - anon_sym_DOT, - STATE(2508), 1, + ACTIONS(5494), 1, + anon_sym_QMARK2, + STATE(2466), 1, sym_comment, - STATE(2652), 1, - aux_sym_cell_path_repeat1, - STATE(2740), 1, - sym_path, - STATE(2854), 1, - sym_cell_path, - ACTIONS(1763), 6, + ACTIONS(952), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1765), 47, + anon_sym_DOT2, + ACTIONS(954), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297450,6 +287883,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, @@ -297458,50 +287893,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59567] = 17, + [59139] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2509), 1, + ACTIONS(5496), 1, + anon_sym_QMARK2, + STATE(2467), 1, + sym_comment, + ACTIONS(966), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(968), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [59208] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2468), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5096), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297510,7 +287976,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(5456), 24, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297522,10 +287989,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -297535,46 +288020,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, - [59661] = 15, + [59275] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2510), 1, + STATE(2469), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2505), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5498), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297583,7 +288039,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(5496), 26, + ACTIONS(2507), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297595,10 +288052,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -297610,43 +288083,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, - [59751] = 14, + [59342] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2511), 1, + STATE(2470), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5207), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297655,7 +288102,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(5456), 28, + ACTIONS(5205), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297667,12 +288115,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -297684,48 +288146,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, - [59839] = 16, + [59409] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2512), 1, + STATE(2471), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2354), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5498), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297734,7 +288165,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(5496), 25, + ACTIONS(2356), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297746,10 +288178,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -297760,50 +288209,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, - [59931] = 17, + [59476] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5597), 1, - sym__newline, - STATE(2433), 1, - aux_sym_shebang_repeat1, - STATE(2513), 1, + STATE(2472), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2461), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5476), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297812,7 +288228,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(5474), 24, + ACTIONS(2463), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -297823,10 +288241,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -297837,17 +288272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60025] = 6, + [59543] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2514), 1, + STATE(2473), 1, sym_comment, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5468), 13, + ACTIONS(2115), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -297861,7 +288291,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(5466), 41, + ACTIONS(2121), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -297873,7 +288304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -297888,6 +288318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -297903,19 +288335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60097] = 7, + [59610] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - STATE(2495), 1, - aux_sym_shebang_repeat1, - STATE(2515), 1, + STATE(2474), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 13, + ACTIONS(2382), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -297929,7 +288354,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(5482), 40, + ACTIONS(2384), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -297940,7 +288367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -297955,6 +288381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -297970,50 +288398,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, - [60171] = 17, + [59677] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - STATE(2516), 1, + STATE(2475), 1, sym_comment, - STATE(2561), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2013), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5480), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298022,7 +288417,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(5478), 24, + ACTIONS(2015), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298033,10 +288430,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -298047,50 +288461,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, - [60265] = 17, + [59744] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2517), 1, + STATE(2476), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(1819), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5498), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298099,7 +288480,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(5496), 24, + ACTIONS(1827), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -298111,10 +288493,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298124,58 +288524,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, - [60359] = 21, + [59811] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, + STATE(2477), 1, + sym_comment, + ACTIONS(2386), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - ACTIONS(5602), 1, - anon_sym_xor2, - STATE(2461), 1, - aux_sym_shebang_repeat1, - STATE(2518), 1, - sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5462), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298184,7 +288543,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(5460), 20, + ACTIONS(2388), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298195,8 +288556,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298205,52 +288587,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, - [60461] = 18, + [59878] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - STATE(2517), 1, - aux_sym_shebang_repeat1, - STATE(2519), 1, + STATE(2478), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2390), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5462), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298259,7 +288606,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(5460), 23, + ACTIONS(2392), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298270,10 +288619,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298283,128 +288650,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, - [60557] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5634), 1, - anon_sym_DOLLAR, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(5640), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5642), 1, - aux_sym__immediate_decimal_token5, - STATE(2520), 1, - sym_comment, - STATE(3040), 1, - sym__immediate_decimal, - ACTIONS(1579), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3202), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [60641] = 20, + [59945] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - STATE(2500), 1, - aux_sym_shebang_repeat1, - STATE(2521), 1, + STATE(2479), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2017), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5484), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298413,7 +288669,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(5482), 21, + ACTIONS(2019), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298424,9 +288682,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298435,52 +288713,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, - [60741] = 18, + [60012] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2522), 1, + STATE(2480), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2338), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5468), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298489,7 +288732,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(5466), 23, + ACTIONS(2340), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -298501,10 +288745,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298513,52 +288776,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, - [60837] = 18, + [60079] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5597), 1, - sym__newline, - STATE(2448), 1, - aux_sym_shebang_repeat1, - STATE(2523), 1, + STATE(2481), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2350), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5476), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298567,7 +288795,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(5474), 23, + ACTIONS(2352), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298578,10 +288808,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298591,19 +288839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60933] = 7, + [60146] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - STATE(2524), 1, + STATE(2482), 1, sym_comment, - STATE(2556), 1, - aux_sym_shebang_repeat1, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5480), 13, + ACTIONS(2025), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -298617,7 +288858,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(5478), 40, + ACTIONS(2027), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298628,7 +288871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -298643,6 +288885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -298658,54 +288902,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, - [61007] = 19, + [60213] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - STATE(2497), 1, - aux_sym_shebang_repeat1, - STATE(2525), 1, + STATE(2483), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2142), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5484), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298714,7 +288921,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(5482), 22, + ACTIONS(2148), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298725,10 +288934,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298737,15 +288965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61105] = 5, + [60280] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1050), 1, - aux_sym_record_entry_token1, - STATE(2526), 1, + STATE(2484), 1, sym_comment, - ACTIONS(1034), 14, - sym__newline, + ACTIONS(2150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -298759,7 +288984,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(1036), 42, + ACTIONS(2156), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298772,7 +288999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -298802,52 +289028,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, - [61175] = 18, + [60347] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - STATE(2509), 1, - aux_sym_shebang_repeat1, - STATE(2527), 1, + STATE(2485), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2214), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5480), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298856,7 +289047,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(5478), 23, + ACTIONS(2216), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298867,10 +289060,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -298880,45 +289091,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, - [61271] = 15, + [60414] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5547), 1, - sym__newline, - STATE(2511), 1, - aux_sym_shebang_repeat1, - STATE(2528), 1, + STATE(2486), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2338), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5480), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298927,7 +289110,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(5478), 27, + ACTIONS(2340), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -298938,12 +289123,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -298955,56 +289154,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, - [61361] = 20, + [60481] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - ACTIONS(5600), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2529), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2467), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299013,7 +289173,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(5492), 21, + ACTIONS(2469), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299025,8 +289186,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -299035,121 +289217,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, - [61461] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5448), 1, - sym__newline, - STATE(2530), 1, - sym_comment, - STATE(2720), 1, - aux_sym_command_list_repeat1, - STATE(3037), 1, - aux_sym_shebang_repeat1, - STATE(4047), 1, - sym__val_number_decimal, - STATE(7648), 1, - sym__command_name, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5444), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [61557] = 14, + [60548] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2531), 1, + STATE(2488), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5096), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299158,7 +289236,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(5492), 28, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299170,12 +289249,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -299187,46 +289280,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, - [61645] = 15, + [60615] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2532), 1, + STATE(2489), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2158), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299235,7 +289299,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(5456), 26, + ACTIONS(2164), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299247,10 +289312,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -299262,126 +289343,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, - [61735] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2533), 1, - sym_comment, - STATE(2568), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7168), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [61831] = 16, + [60682] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - STATE(2510), 1, - aux_sym_shebang_repeat1, - STATE(2534), 1, + STATE(2490), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(1794), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5462), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299390,7 +289362,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(5460), 25, + ACTIONS(1802), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -299401,10 +289375,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -299416,56 +289406,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61923] = 20, + [60749] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(5541), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - ACTIONS(5545), 1, + ACTIONS(5478), 1, anon_sym_bit_DASHand2, - ACTIONS(5571), 1, + ACTIONS(5492), 1, anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, + ACTIONS(5498), 1, anon_sym_and2, - ACTIONS(5600), 1, + ACTIONS(5500), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2535), 1, + ACTIONS(5502), 1, + anon_sym_bit_DASHor2, + STATE(2491), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(5456), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5531), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5535), 2, + ACTIONS(5466), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, + ACTIONS(5460), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, + ACTIONS(5464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5468), 8, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299474,7 +289462,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(5466), 21, + ACTIONS(5201), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299486,7 +289475,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_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -299496,29 +289484,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, - [62023] = 10, + [60846] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2536), 1, + STATE(2492), 1, sym_comment, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5494), 10, + ACTIONS(2413), 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, @@ -299527,7 +289503,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(5492), 38, + ACTIONS(2415), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299539,7 +289516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -299553,6 +289530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -299566,46 +289547,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, - [62103] = 15, + [60913] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2537), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2471), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299614,7 +289566,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(5492), 26, + ACTIONS(2473), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299626,10 +289579,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -299641,29 +289610,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, - [62193] = 10, + [60980] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2538), 1, + STATE(2494), 1, sym_comment, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5458), 10, + ACTIONS(2224), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299672,7 +289629,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(5456), 38, + ACTIONS(2228), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299684,7 +289642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -299698,6 +289656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -299711,48 +289673,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, - [62273] = 16, + [61047] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2539), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2358), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299761,7 +289692,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(5492), 25, + ACTIONS(2360), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299773,10 +289705,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -299787,50 +289736,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, - [62365] = 17, + [61114] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2540), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2362), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5494), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299839,7 +289755,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(5492), 24, + ACTIONS(2364), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299851,10 +289768,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -299864,16 +289799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62459] = 6, + [61181] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5644), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5646), 1, + ACTIONS(5446), 1, aux_sym__immediate_decimal_token2, - STATE(2541), 1, + STATE(2497), 1, sym_comment, - ACTIONS(1661), 11, + ACTIONS(1599), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -299881,11 +289814,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1663), 44, + ACTIONS(1601), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299924,64 +289856,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [62531] = 21, + [61250] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + STATE(2498), 1, + sym_comment, + ACTIONS(5096), 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(5094), 43, + ts_builtin_sym_end, sym__newline, - ACTIONS(5515), 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_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(5565), 1, anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - ACTIONS(5602), 1, - anon_sym_xor2, - STATE(2529), 1, - aux_sym_shebang_repeat1, - STATE(2542), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [61317] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2499), 1, sym_comment, - ACTIONS(5517), 2, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5519), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, + ACTIONS(5460), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, + ACTIONS(5464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5484), 8, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -299990,7 +289969,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(5482), 20, + ACTIONS(5201), 28, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -300001,8 +289982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300011,98 +289998,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62633] = 6, + [61402] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_DOT, - STATE(2681), 1, - sym_path, - STATE(2543), 2, + STATE(2500), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(977), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2417), 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(2419), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [62705] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5527), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2544), 1, - sym_comment, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5537), 2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5458), 10, + 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, + [61469] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2501), 1, + sym_comment, + ACTIONS(2421), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300111,7 +290080,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(5456), 36, + ACTIONS(2423), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -300123,7 +290093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -300137,6 +290107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -300148,34 +290124,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62787] = 12, + [61536] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - STATE(2442), 1, - aux_sym_shebang_repeat1, - STATE(2545), 1, + STATE(2502), 1, sym_comment, - ACTIONS(5517), 2, + ACTIONS(2425), 13, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5519), 2, + 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(2427), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5462), 10, + 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, + [61603] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2503), 1, + sym_comment, + ACTIONS(1977), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300184,7 +290206,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(5460), 35, + ACTIONS(1979), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -300195,7 +290219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -300209,6 +290233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -300220,54 +290250,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, - [62871] = 6, - ACTIONS(3), 1, + [61670] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5651), 1, - anon_sym_DOT, - ACTIONS(5653), 1, - aux_sym__immediate_decimal_token2, - STATE(2546), 1, + STATE(2504), 1, sym_comment, - ACTIONS(1671), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1669), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2445), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300276,6 +290269,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2447), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300284,52 +290313,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [62943] = 18, + [61737] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2443), 1, - aux_sym_decl_def_repeat1, - STATE(2547), 1, + ACTIONS(5504), 1, + aux_sym__immediate_decimal_token2, + STATE(2505), 1, sym_comment, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6673), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(1709), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300364,25 +290367,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [63039] = 8, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [61806] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2548), 1, + STATE(2506), 1, sym_comment, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5458), 11, + ACTIONS(2429), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -300392,7 +290396,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(5456), 39, + ACTIONS(2431), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -300404,7 +290409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -300419,6 +290423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -300432,29 +290440,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, - [63115] = 10, + [61873] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2549), 1, + STATE(2507), 1, sym_comment, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5468), 10, + ACTIONS(2433), 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, @@ -300463,7 +290459,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(5466), 38, + ACTIONS(2435), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -300475,7 +290472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -300489,6 +290486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -300502,27 +290503,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, - [63195] = 9, + [61940] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - STATE(2446), 1, - aux_sym_shebang_repeat1, - STATE(2550), 1, + STATE(2508), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5462), 11, + ACTIONS(5096), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -300532,7 +290522,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(5460), 38, + ACTIONS(5094), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -300543,7 +290535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -300558,6 +290549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -300571,104 +290566,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, - [63273] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5657), 1, - aux_sym__immediate_decimal_token2, - STATE(2551), 1, - sym_comment, - ACTIONS(1663), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1661), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [63345] = 13, + [62007] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2552), 1, + STATE(2509), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2394), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300677,7 +290585,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(5456), 32, + ACTIONS(2396), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -300689,7 +290598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -300697,8 +290606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -300710,40 +290629,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, - [63431] = 14, + [62074] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - STATE(2450), 1, - aux_sym_shebang_repeat1, - STATE(2553), 1, + STATE(2510), 1, sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, + ACTIONS(2398), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5462), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300752,7 +290648,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(5460), 31, + ACTIONS(2400), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -300763,7 +290661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -300771,8 +290669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -300784,167 +290692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63519] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_DOLLAR, - ACTIONS(5500), 1, - anon_sym_LPAREN2, - ACTIONS(5659), 1, - anon_sym_DOT, - ACTIONS(5663), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5665), 1, - aux_sym__immediate_decimal_token5, - STATE(2554), 1, - sym_comment, - STATE(2987), 1, - sym__immediate_decimal, - ACTIONS(1643), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5661), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2985), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [63603] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2555), 1, - sym_comment, - STATE(2558), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7051), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [63699] = 6, + [62141] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2556), 1, + STATE(2511), 1, sym_comment, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5458), 13, + ACTIONS(2029), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -300958,7 +290711,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(5456), 41, + ACTIONS(2031), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -300970,7 +290724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -300985,6 +290738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -301000,253 +290755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63771] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2557), 1, - sym_comment, - STATE(2559), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7076), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [63867] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2558), 1, - sym_comment, - STATE(2978), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7077), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [63963] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2559), 1, - sym_comment, - STATE(2978), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7086), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [64059] = 7, + [62208] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - STATE(2451), 1, - aux_sym_shebang_repeat1, - STATE(2560), 1, + STATE(2512), 1, sym_comment, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5462), 13, + ACTIONS(5203), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -301260,7 +290774,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(5460), 40, + ACTIONS(5201), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -301271,7 +290787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -301286,6 +290801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -301301,48 +290818,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, - [64133] = 16, + [62275] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2561), 1, + STATE(2513), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2366), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301351,7 +290837,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(5456), 25, + ACTIONS(2368), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -301363,319 +290850,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_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, - [64225] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2562), 1, - sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5458), 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(5456), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [64321] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - STATE(2453), 1, - aux_sym_shebang_repeat1, - STATE(2563), 1, - sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5462), 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(5460), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64419] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, anon_sym_bit_DASHand2, - ACTIONS(5571), 1, anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2564), 1, - sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5468), 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(5466), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, - [64517] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5634), 1, - anon_sym_DOLLAR, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(5640), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5642), 1, - aux_sym__immediate_decimal_token5, - STATE(2565), 1, - sym_comment, - STATE(3011), 1, - sym__immediate_decimal, - ACTIONS(1657), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5638), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3164), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301684,55 +290881,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, - aux_sym__unquoted_in_list_token1, - [64601] = 19, + [62342] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(2566), 1, + STATE(2514), 1, sym_comment, - ACTIONS(5525), 2, + ACTIONS(2241), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5458), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301741,7 +290900,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(5456), 22, + ACTIONS(2245), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -301753,238 +290913,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_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, - [64699] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5515), 1, anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - STATE(2458), 1, - aux_sym_shebang_repeat1, - STATE(2567), 1, - sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5462), 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(5460), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64799] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DASH_DASH, - STATE(2568), 1, - sym_comment, - STATE(2978), 1, - aux_sym_decl_def_repeat1, - STATE(3122), 1, - sym_long_flag, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6791), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [64895] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - STATE(2493), 1, - aux_sym_shebang_repeat1, - STATE(2569), 1, - sym_comment, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5484), 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(5482), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -301996,12 +290944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64983] = 4, + [62409] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2570), 1, + STATE(2515), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(2261), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302015,7 +290963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2294), 43, + ACTIONS(2263), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302059,12 +291007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65050] = 4, + [62476] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2571), 1, + STATE(2516), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(2402), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302078,7 +291026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, + ACTIONS(2404), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302122,12 +291070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65117] = 4, + [62543] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2572), 1, + STATE(2517), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(2406), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302141,7 +291089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2441), 43, + ACTIONS(2408), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302185,12 +291133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65184] = 4, + [62610] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2573), 1, + STATE(2518), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(2449), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302204,7 +291152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, + ACTIONS(2451), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302248,67 +291196,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65251] = 11, - ACTIONS(3), 1, + [62677] = 13, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5634), 1, + ACTIONS(3884), 1, anon_sym_DOLLAR, - ACTIONS(5636), 1, + ACTIONS(5388), 1, anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(5506), 1, + anon_sym_DOT, + ACTIONS(5508), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5512), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5671), 1, + ACTIONS(5514), 1, aux_sym__immediate_decimal_token5, - STATE(2574), 1, + STATE(2519), 1, sym_comment, - STATE(3158), 1, + STATE(2917), 1, sym__immediate_decimal, - ACTIONS(1685), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3157), 2, + STATE(2916), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 45, + ACTIONS(1587), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1597), 28, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302317,13 +291268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65332] = 4, + [62762] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2575), 1, + STATE(2520), 1, sym_comment, - ACTIONS(2415), 13, + ACTIONS(2370), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302337,7 +291287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2417), 43, + ACTIONS(2372), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302381,50 +291331,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, - [65399] = 17, + [62829] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - ACTIONS(5693), 1, - anon_sym_bit_DASHand2, - ACTIONS(5695), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5697), 1, - anon_sym_bit_DASHor2, - STATE(2576), 1, + STATE(2521), 1, sym_comment, - ACTIONS(5673), 2, + ACTIONS(2342), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5683), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302433,7 +291350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 23, + ACTIONS(2344), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302446,9 +291363,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302457,12 +291394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65492] = 4, + [62896] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2577), 1, + STATE(2522), 1, sym_comment, - ACTIONS(5428), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302476,7 +291413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302520,101 +291457,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65559] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5634), 1, - anon_sym_DOLLAR, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5671), 1, - aux_sym__immediate_decimal_token5, - STATE(2578), 1, - sym_comment, - STATE(3160), 1, - sym__immediate_decimal, - ACTIONS(1741), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65640] = 13, + [62963] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1585), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5699), 1, + ACTIONS(5480), 1, anon_sym_DOLLAR, - ACTIONS(5701), 1, + ACTIONS(5482), 1, anon_sym_LPAREN2, - ACTIONS(5703), 1, + ACTIONS(5484), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5705), 1, + ACTIONS(5486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5707), 1, + ACTIONS(5488), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5709), 1, + ACTIONS(5490), 1, aux_sym__immediate_decimal_token5, - STATE(2579), 1, + STATE(2523), 1, sym_comment, - STATE(3230), 1, + STATE(3062), 1, sym__immediate_decimal, - STATE(3267), 2, + STATE(3192), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 18, + ACTIONS(1569), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -302633,7 +291500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1657), 28, + ACTIONS(1583), 28, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -302662,12 +291529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65725] = 4, + [63048] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2580), 1, + STATE(2524), 1, sym_comment, - ACTIONS(2474), 13, + ACTIONS(5084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302681,7 +291548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2476), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302725,54 +291592,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65792] = 19, + [63115] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5675), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(5689), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - ACTIONS(5693), 1, - anon_sym_bit_DASHand2, - ACTIONS(5695), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5697), 1, - anon_sym_bit_DASHor2, - ACTIONS(5711), 1, - anon_sym_and2, - ACTIONS(5713), 1, - anon_sym_xor2, - STATE(2581), 1, + STATE(2525), 1, sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5683), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, + ACTIONS(5203), 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(5201), 36, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5428), 8, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63194] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2526), 1, + sym_comment, + ACTIONS(1004), 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, @@ -302781,7 +291680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 21, + ACTIONS(1000), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302794,7 +291693,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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302803,12 +291724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65889] = 4, + [63261] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2582), 1, + STATE(2527), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(2346), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302822,7 +291743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2472), 43, + ACTIONS(2348), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302866,26 +291787,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, - [65956] = 5, + [63328] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5589), 1, - aux_sym__immediate_decimal_token2, - STATE(2583), 1, + ACTIONS(5363), 1, + anon_sym_DOT2, + STATE(2528), 1, sym_comment, - ACTIONS(1669), 10, + STATE(2541), 1, + aux_sym_cell_path_repeat1, + STATE(2649), 1, + sym_path, + ACTIONS(948), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 45, + ACTIONS(950), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302920,9 +291842,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - 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, @@ -302930,12 +291853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66025] = 4, + [63401] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2584), 1, + STATE(2529), 1, sym_comment, - ACTIONS(5378), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -302949,7 +291872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5380), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -302993,16 +291916,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, - [66092] = 4, + [63468] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2585), 1, + STATE(2530), 1, sym_comment, - ACTIONS(2266), 13, - anon_sym_GT2, + ACTIONS(5462), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5203), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -303012,7 +291942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2270), 43, + ACTIONS(5201), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303039,10 +291969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -303056,30 +291982,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, - [66159] = 10, + [63541] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - STATE(2586), 1, + STATE(2531), 1, sym_comment, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5428), 10, + ACTIONS(1945), 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, @@ -303088,7 +292001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 36, + ACTIONS(1947), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303101,6 +292014,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_in2, anon_sym_and2, anon_sym_xor2, @@ -303114,6 +292028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -303125,12 +292045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66238] = 4, + [63608] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2587), 1, + STATE(2532), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303144,7 +292064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1943), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303188,17 +292108,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66305] = 4, - ACTIONS(251), 1, + [63675] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2588), 1, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token5, + STATE(2533), 1, sym_comment, - ACTIONS(2383), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3037), 1, + sym__immediate_decimal, + ACTIONS(1687), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5516), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3078), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303207,42 +292169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2385), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303251,17 +292177,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66372] = 4, + aux_sym__unquoted_in_list_token1, + [63756] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2589), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2534), 1, sym_comment, - ACTIONS(2359), 13, + ACTIONS(5456), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303270,7 +292216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2361), 43, + ACTIONS(5201), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303283,7 +292229,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_in2, anon_sym_and2, anon_sym_xor2, @@ -303291,18 +292236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -303314,17 +292249,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66439] = 4, + [63839] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(5524), 1, + anon_sym_DOT_DOT2, + ACTIONS(5528), 1, + sym_filesize_unit, + ACTIONS(5530), 1, + sym_duration_unit, + ACTIONS(5532), 1, + aux_sym__unquoted_in_list_token2, + STATE(2535), 1, + sym_comment, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1665), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5526), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [63920] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2590), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2536), 1, sym_comment, - ACTIONS(1917), 13, - anon_sym_GT2, + ACTIONS(5462), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5203), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303333,7 +292348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1919), 43, + ACTIONS(5201), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303346,7 +292361,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_in2, anon_sym_and2, anon_sym_xor2, @@ -303360,10 +292374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -303377,12 +292387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66506] = 4, + [63997] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2591), 1, + STATE(2537), 1, sym_comment, - ACTIONS(2375), 13, + ACTIONS(2378), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303396,7 +292406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2377), 43, + ACTIONS(2380), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303440,12 +292450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66573] = 4, + [64064] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2592), 1, + STATE(2538), 1, sym_comment, - ACTIONS(2363), 13, + ACTIONS(1989), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303459,7 +292469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2365), 43, + ACTIONS(1991), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303503,12 +292513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66640] = 4, + [64131] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2593), 1, + STATE(2539), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303522,7 +292532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2369), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303566,12 +292576,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, - [66707] = 4, + [64198] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2594), 1, + STATE(2540), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5203), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303585,7 +292598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2421), 43, + ACTIONS(5201), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303612,8 +292625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -303629,61 +292640,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66774] = 4, + [64267] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2595), 1, + ACTIONS(5534), 1, + anon_sym_DOT2, + STATE(2649), 1, + sym_path, + STATE(2541), 2, sym_comment, - ACTIONS(1925), 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(1927), 43, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(941), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(943), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64338] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token5, + STATE(2542), 1, + sym_comment, + STATE(3039), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5516), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3038), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303692,35 +292774,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, - [66841] = 11, + aux_sym__unquoted_in_list_token1, + [64419] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(5717), 1, - anon_sym_DOT_DOT2, - ACTIONS(5721), 1, - sym_filesize_unit, - ACTIONS(5723), 1, - sym_duration_unit, - ACTIONS(5725), 1, - aux_sym__unquoted_in_list_token2, - STATE(2596), 1, + ACTIONS(5518), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5520), 1, + aux_sym__immediate_decimal_token5, + STATE(2543), 1, sym_comment, - STATE(8167), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1699), 2, + STATE(3113), 1, + sym__immediate_decimal, + ACTIONS(1597), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5719), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 46, + ACTIONS(5516), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3047), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -303762,12 +292845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [66922] = 4, + [64500] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2597), 1, + STATE(2544), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303781,7 +292864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303825,17 +292908,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66989] = 4, + [64567] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(2598), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5478), 1, + anon_sym_bit_DASHand2, + ACTIONS(5492), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5502), 1, + anon_sym_bit_DASHor2, + STATE(2545), 1, sym_comment, - ACTIONS(2423), 13, + ACTIONS(5456), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303844,7 +292960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2425), 43, + ACTIONS(5201), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303857,29 +292973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303888,12 +292984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67056] = 4, + [64660] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2599), 1, + STATE(2546), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(1997), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303907,7 +293003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2413), 43, + ACTIONS(1999), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -303951,12 +293047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67123] = 4, + [64727] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2600), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1687), 13, + ACTIONS(2001), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -303970,7 +293066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1699), 43, + ACTIONS(2003), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -304014,31 +293110,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67190] = 11, + [64794] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5634), 1, + ACTIONS(5434), 1, anon_sym_DOLLAR, - ACTIONS(5636), 1, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(5518), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5671), 1, + ACTIONS(5520), 1, aux_sym__immediate_decimal_token5, - STATE(2601), 1, + STATE(2548), 1, sym_comment, - STATE(3163), 1, + STATE(3057), 1, sym__immediate_decimal, - ACTIONS(1745), 2, + ACTIONS(1695), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5667), 2, + ACTIONS(5516), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3161), 2, + STATE(3043), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1743), 45, + ACTIONS(1693), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304084,237 +293180,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [67271] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5727), 1, - anon_sym_DOT, - STATE(2740), 1, - sym_path, - STATE(2602), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(977), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67342] = 4, + [64875] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2603), 1, - sym_comment, - ACTIONS(5286), 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(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5458), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67409] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2604), 1, - sym_comment, - ACTIONS(2427), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(5472), 1, 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(2429), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5478), 1, anon_sym_bit_DASHand2, + ACTIONS(5492), 1, anon_sym_bit_DASHxor2, + ACTIONS(5498), 1, + anon_sym_and2, + ACTIONS(5502), 1, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67476] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - ACTIONS(5693), 1, - anon_sym_bit_DASHand2, - STATE(2605), 1, + STATE(2549), 1, sym_comment, - ACTIONS(5673), 2, + ACTIONS(5456), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5679), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5683), 2, + ACTIONS(5466), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, + ACTIONS(5474), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, + ACTIONS(5460), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, + ACTIONS(5464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5428), 8, + ACTIONS(5203), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304323,7 +293234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 25, + ACTIONS(5201), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -304336,11 +293247,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_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304349,75 +293257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67565] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2606), 1, - sym_comment, - ACTIONS(1000), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1002), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67632] = 4, + [64970] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2607), 1, + STATE(2550), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -304431,7 +293276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, + ACTIONS(2376), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -304475,12 +293320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67699] = 4, + [65037] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2551), 1, sym_comment, - ACTIONS(1937), 13, + ACTIONS(2441), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -304494,7 +293339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 43, + ACTIONS(2443), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -304538,12 +293383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67766] = 4, + [65104] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2552), 1, sym_comment, - ACTIONS(2486), 13, + ACTIONS(5096), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -304557,7 +293402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2488), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -304601,151 +293446,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67833] = 4, + [65171] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2610), 1, + STATE(2553), 1, sym_comment, - ACTIONS(2403), 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(2405), 43, - ts_builtin_sym_end, + ACTIONS(958), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(960), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67900] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65238] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2554), 1, sym_comment, - ACTIONS(2131), 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(2137), 43, - ts_builtin_sym_end, + ACTIONS(976), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(978), 49, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67967] = 5, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65305] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5730), 1, - aux_sym__immediate_decimal_token2, - STATE(2612), 1, + STATE(2555), 1, sym_comment, - ACTIONS(1711), 10, + ACTIONS(972), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1713), 45, + anon_sym_DOT2, + ACTIONS(974), 49, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304781,9 +293621,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304791,12 +293635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68036] = 4, + [65372] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2556), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(2218), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -304810,7 +293654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2433), 43, + ACTIONS(2222), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -304854,84 +293698,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68103] = 4, + [65439] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2614), 1, + ACTIONS(5537), 1, + anon_sym_QMARK2, + STATE(2557), 1, sym_comment, - ACTIONS(2462), 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(2464), 43, + ACTIONS(966), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(968), 47, + sym_raw_string_begin, ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68170] = 4, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65507] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1004), 7, + ACTIONS(972), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1006), 49, + anon_sym_DOT2, + ACTIONS(974), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304969,8 +293814,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, anon_sym_QMARK2, aux_sym__val_number_decimal_token1, @@ -304980,17 +293823,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68237] = 4, + [65573] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2616), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2559), 1, sym_comment, - ACTIONS(5286), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6155), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65663] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2560), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(5641), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65753] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_DOT2, + STATE(2561), 1, + sym_comment, + STATE(2614), 1, + aux_sym_cell_path_repeat1, + STATE(2786), 1, + sym_path, + STATE(2847), 1, + sym_cell_path, + ACTIONS(1719), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1717), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304999,42 +294028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305043,17 +294036,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, - [68304] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [65827] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2617), 1, + STATE(2562), 1, sym_comment, - ACTIONS(2478), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1711), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1709), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305062,42 +294089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2480), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305106,143 +294097,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68371] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [65893] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2618), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5545), 1, + anon_sym_DQUOTE, + ACTIONS(5549), 1, + sym_raw_string_begin, + STATE(1704), 1, + sym__command_name, + STATE(2563), 1, sym_comment, - ACTIONS(2508), 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(2510), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68438] = 4, + STATE(2639), 1, + sym_cmd_identifier, + STATE(2640), 1, + sym_val_string, + STATE(3597), 1, + sym__val_number_decimal, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5547), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5541), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5543), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65983] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2619), 1, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(5551), 1, + sym_filesize_unit, + ACTIONS(5553), 1, + sym_duration_unit, + ACTIONS(5555), 1, + aux_sym_unquoted_token2, + STATE(2564), 1, sym_comment, - ACTIONS(1883), 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(1885), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68505] = 4, - ACTIONS(251), 1, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1665), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66059] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2565), 1, sym_comment, - ACTIONS(5286), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1725), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1723), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305251,42 +294292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305295,17 +294300,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68572] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [66125] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2621), 1, + ACTIONS(5557), 1, + anon_sym_DOT, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token2, + STATE(2566), 1, sym_comment, - ACTIONS(2391), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1737), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1735), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305314,42 +294356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2393), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305358,21 +294364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68639] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [66195] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2567), 1, sym_comment, - ACTIONS(996), 7, + ACTIONS(962), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(998), 49, + anon_sym_DOT2, + ACTIONS(964), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305410,8 +294419,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, anon_sym_QMARK2, aux_sym__val_number_decimal_token1, @@ -305421,146 +294428,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68706] = 7, + [66261] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2623), 1, + STATE(2568), 1, sym_comment, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5426), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68779] = 4, + ACTIONS(1599), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66327] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5545), 1, + anon_sym_DQUOTE, + ACTIONS(5549), 1, + sym_raw_string_begin, + STATE(1704), 1, + sym__command_name, + STATE(2569), 1, sym_comment, - ACTIONS(2520), 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(2522), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68846] = 4, + STATE(2639), 1, + sym_cmd_identifier, + STATE(2640), 1, + sym_val_string, + STATE(3597), 1, + sym__val_number_decimal, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5547), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5541), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5543), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66417] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2625), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2570), 1, sym_comment, - ACTIONS(5286), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2581), 1, + aux_sym_command_list_repeat1, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6758), 1, + sym__command_name, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66507] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2571), 1, + sym_comment, + STATE(2581), 1, + aux_sym_command_list_repeat1, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + STATE(6899), 1, + sym__command_name, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66597] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(2572), 1, + sym_comment, + STATE(3172), 1, + sym__immediate_decimal, + STATE(3171), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1693), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305569,42 +294752,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1695), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305613,22 +294782,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68913] = 5, + [66679] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5732), 1, - anon_sym_QMARK2, - STATE(2626), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2573), 1, sym_comment, - ACTIONS(1008), 7, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(5641), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1010), 48, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [66769] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2574), 1, + sym_comment, + ACTIONS(984), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(986), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305677,23 +294918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68982] = 5, + [66835] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5734), 1, + ACTIONS(5569), 1, anon_sym_QMARK2, - STATE(2627), 1, + STATE(2575), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(952), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 48, + anon_sym_DOT2, + ACTIONS(954), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305731,8 +294973,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, @@ -305741,27 +294981,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69051] = 9, + [66903] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - STATE(2628), 1, - sym_comment, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(2576), 1, + sym_comment, + STATE(3165), 1, + sym__immediate_decimal, + STATE(3161), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305770,37 +295021,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1691), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305809,17 +295051,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69128] = 4, + [66985] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2629), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2577), 1, sym_comment, - ACTIONS(2458), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7421), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67075] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2578), 1, + sym_comment, + ACTIONS(1623), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67141] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2579), 1, + sym_comment, + STATE(2581), 1, + aux_sym_command_list_repeat1, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + STATE(6912), 1, + sym__command_name, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67231] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5571), 1, + anon_sym_DOT, + ACTIONS(5573), 1, + aux_sym__immediate_decimal_token2, + STATE(2580), 1, + sym_comment, + ACTIONS(1599), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305828,42 +295287,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2460), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1601), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305872,17 +295325,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69195] = 4, + [67301] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2630), 1, + ACTIONS(5584), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5587), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5590), 1, + anon_sym_DQUOTE, + ACTIONS(5596), 1, + sym_raw_string_begin, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + STATE(7226), 1, + sym__command_name, + ACTIONS(5581), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5593), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2581), 2, sym_comment, - ACTIONS(2391), 13, - anon_sym_GT2, + aux_sym_command_list_repeat1, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5575), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5578), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67389] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2582), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7421), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67479] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2583), 1, + sym_comment, + ACTIONS(980), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(982), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67545] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2581), 1, + aux_sym_command_list_repeat1, + STATE(2584), 1, + sym_comment, + STATE(3608), 1, + sym__val_number_decimal, + STATE(6741), 1, + sym__command_name, + STATE(6807), 1, + sym_cmd_identifier, + STATE(6810), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5263), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5265), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67635] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2585), 1, + sym_comment, + ACTIONS(958), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(960), 48, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67701] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2586), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6155), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67791] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(2587), 1, + sym_comment, + STATE(3160), 1, + sym__immediate_decimal, + STATE(3159), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305891,42 +295784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2393), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1687), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305935,17 +295814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69262] = 4, + [67873] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2631), 1, + ACTIONS(5599), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5601), 1, + aux_sym__immediate_decimal_token2, + STATE(2588), 1, sym_comment, - ACTIONS(2454), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1623), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305954,42 +295840,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1625), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305998,17 +295878,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69329] = 4, + [67943] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2632), 1, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5561), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5563), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(2589), 1, sym_comment, - ACTIONS(2466), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3146), 1, + sym__immediate_decimal, + STATE(3145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306017,42 +295918,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2468), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1597), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306061,17 +295948,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69396] = 4, - ACTIONS(251), 1, + [68025] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2633), 1, + STATE(2590), 1, sym_comment, - ACTIONS(2254), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1625), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1623), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306080,294 +296000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69463] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2634), 1, - sym_comment, - ACTIONS(2242), 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(2244), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69530] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2635), 1, - sym_comment, - ACTIONS(1949), 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(1951), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69597] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2636), 1, - sym_comment, - ACTIONS(1830), 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(1838), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69664] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2637), 1, - sym_comment, - ACTIONS(2492), 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(2494), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306376,162 +296008,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69731] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [68091] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2638), 1, + STATE(2591), 1, sym_comment, - ACTIONS(2504), 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(2506), 43, - ts_builtin_sym_end, + ACTIONS(988), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(990), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69798] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2639), 1, - sym_comment, - ACTIONS(2435), 13, - anon_sym_GT2, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2437), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69865] = 12, - ACTIONS(251), 1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68157] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - STATE(2640), 1, + ACTIONS(5539), 1, + anon_sym_DOT2, + STATE(2592), 1, sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 8, + STATE(2614), 1, + aux_sym_cell_path_repeat1, + STATE(2786), 1, + sym_path, + STATE(2877), 1, + sym_cell_path, + ACTIONS(1763), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1761), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306540,31 +296129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5426), 32, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306573,82 +296137,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69948] = 6, + aux_sym__unquoted_in_list_token1, + [68231] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2641), 1, + STATE(2593), 1, sym_comment, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5374), 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(5376), 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_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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(5380), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [70019] = 4, - ACTIONS(251), 1, + ACTIONS(1709), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68297] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2642), 1, + ACTIONS(5539), 1, + anon_sym_DOT2, + STATE(2594), 1, sym_comment, - ACTIONS(5286), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2614), 1, + aux_sym_cell_path_repeat1, + STATE(2786), 1, + sym_path, + STATE(2812), 1, + sym_cell_path, + ACTIONS(937), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(935), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306657,42 +296257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306701,86 +296265,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70086] = 13, + aux_sym__unquoted_in_list_token1, + [68371] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - STATE(2643), 1, + STATE(2595), 1, sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 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(5426), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70171] = 5, + ACTIONS(1723), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1725), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5653), 1, - aux_sym__immediate_decimal_token2, - STATE(2644), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1671), 7, + ACTIONS(1601), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -306788,7 +296341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1669), 48, + ACTIONS(1599), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306837,21 +296390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [70240] = 4, + [68503] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2645), 1, + STATE(2597), 1, sym_comment, - ACTIONS(986), 7, + ACTIONS(976), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(988), 49, + anon_sym_DOT2, + ACTIONS(978), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -306889,8 +296443,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, anon_sym_QMARK2, aux_sym__val_number_decimal_token1, @@ -306900,152 +296452,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70307] = 13, - ACTIONS(251), 1, + [68569] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5703), 1, + ACTIONS(5603), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5705), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5707), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5709), 1, - aux_sym__immediate_decimal_token5, - STATE(2646), 1, + ACTIONS(5605), 1, + aux_sym__immediate_decimal_token2, + STATE(2598), 1, sym_comment, - STATE(3215), 1, - sym__immediate_decimal, - STATE(3305), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1579), 28, + ACTIONS(1729), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1727), 48, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70392] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2647), 1, - sym_comment, - ACTIONS(2443), 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(2445), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70459] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2648), 1, - sym_comment, - ACTIONS(1840), 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, @@ -307054,42 +296506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307098,143 +296514,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70526] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [68639] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(2649), 1, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2599), 1, sym_comment, - ACTIONS(5416), 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(5414), 43, - ts_builtin_sym_end, - sym__newline, + STATE(3586), 1, + sym__val_number_decimal, + STATE(5917), 1, + sym__command_name, + STATE(6232), 1, + sym_cmd_identifier, + STATE(6234), 1, + sym_val_string, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5003), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5005), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [68726] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2600), 1, + sym_comment, + ACTIONS(2346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2348), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70593] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68791] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2650), 1, + STATE(2601), 1, sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, + ACTIONS(2055), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2057), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - 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(2096), 43, - ts_builtin_sym_end, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68856] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2602), 1, + sym_comment, + ACTIONS(2350), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2352), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70660] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68921] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2651), 1, + STATE(2603), 1, sym_comment, - ACTIONS(5286), 13, - anon_sym_GT2, + ACTIONS(962), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(964), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68986] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2604), 1, + sym_comment, + ACTIONS(5607), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5609), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69051] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2605), 1, + sym_comment, + ACTIONS(5611), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5613), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69116] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2606), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(5758), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [69203] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2607), 1, + sym_comment, + ACTIONS(1018), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1020), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69268] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5615), 1, + anon_sym_DOT2, + STATE(2608), 1, + sym_comment, + STATE(2683), 1, + aux_sym_cell_path_repeat1, + STATE(2843), 1, + sym_path, + STATE(2883), 1, + sym_cell_path, + ACTIONS(935), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307243,42 +297117,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(937), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307287,27 +297152,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70727] = 7, + [69341] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5569), 1, - anon_sym_DOT, - STATE(2602), 1, - aux_sym_cell_path_repeat1, - STATE(2652), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2609), 1, sym_comment, - STATE(2740), 1, - sym_path, - ACTIONS(982), 6, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6183), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(984), 47, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [69428] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2610), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6168), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [69515] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2611), 1, + sym_comment, + ACTIONS(2338), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2340), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69580] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2612), 1, + sym_comment, + ACTIONS(2338), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2340), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69645] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2613), 1, + sym_comment, + ACTIONS(5617), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5619), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -307345,6 +297469,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, @@ -307353,37 +297479,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70800] = 11, + [69710] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5634), 1, - anon_sym_DOLLAR, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5671), 1, - aux_sym__immediate_decimal_token5, - STATE(2653), 1, + ACTIONS(5539), 1, + anon_sym_DOT2, + STATE(2614), 1, sym_comment, - STATE(3195), 1, - sym__immediate_decimal, - ACTIONS(1643), 2, + STATE(2615), 1, + aux_sym_cell_path_repeat1, + STATE(2786), 1, + sym_path, + ACTIONS(950), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3185), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 45, + ACTIONS(948), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -307423,17 +297543,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [70881] = 4, - ACTIONS(251), 1, + [69781] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2654), 1, + ACTIONS(5621), 1, + anon_sym_DOT2, + STATE(2786), 1, + sym_path, + STATE(2615), 2, sym_comment, - ACTIONS(2407), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + aux_sym_cell_path_repeat1, + ACTIONS(943), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(941), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307442,42 +297597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307486,17 +297605,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70948] = 4, + aux_sym__unquoted_in_list_token1, + [69850] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2655), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2616), 1, sym_comment, - ACTIONS(2447), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7377), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [69937] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5573), 1, + aux_sym__immediate_decimal_token2, + STATE(2617), 1, + sym_comment, + ACTIONS(1599), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307505,42 +297702,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2449), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1601), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307549,17 +297740,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71015] = 4, + [70004] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2656), 1, + ACTIONS(5624), 1, + aux_sym__immediate_decimal_token2, + STATE(2618), 1, sym_comment, - ACTIONS(5286), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1709), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307568,42 +297764,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1711), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307612,17 +297802,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71082] = 4, + [70071] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2657), 1, + ACTIONS(5615), 1, + anon_sym_DOT2, + STATE(2619), 1, sym_comment, - ACTIONS(2226), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2683), 1, + aux_sym_cell_path_repeat1, + STATE(2843), 1, + sym_path, + STATE(2928), 1, + sym_cell_path, + ACTIONS(1761), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307631,42 +297832,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1763), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307675,85 +297867,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71149] = 4, + [70144] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2658), 1, + STATE(2620), 1, sym_comment, - ACTIONS(2387), 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(2389), 43, - ts_builtin_sym_end, + ACTIONS(1717), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1719), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71216] = 5, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70209] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2621), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6230), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [70296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5736), 1, + ACTIONS(5559), 1, aux_sym__immediate_decimal_token2, - STATE(2659), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1713), 7, + ACTIONS(1737), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1711), 48, + ACTIONS(1735), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307802,17 +298062,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [71285] = 4, - ACTIONS(251), 1, + [70363] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2660), 1, + ACTIONS(5626), 1, + aux_sym__immediate_decimal_token2, + STATE(2623), 1, sym_comment, - ACTIONS(5432), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1773), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1771), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307821,42 +298114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5430), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307865,207 +298122,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71352] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [70430] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2661), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2624), 1, sym_comment, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5428), 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(5426), 41, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71421] = 4, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6418), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [70517] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2662), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2625), 1, sym_comment, - ACTIONS(5286), 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(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71488] = 4, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6428), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [70604] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2663), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2626), 1, sym_comment, - ACTIONS(2379), 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(2381), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71555] = 4, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6524), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [70691] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2664), 1, + ACTIONS(5615), 1, + anon_sym_DOT2, + STATE(2627), 1, sym_comment, - ACTIONS(1891), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2683), 1, + aux_sym_cell_path_repeat1, + STATE(2843), 1, + sym_path, + STATE(2933), 1, + sym_cell_path, + ACTIONS(1717), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308074,42 +298370,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1719), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308118,1074 +298405,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71622] = 4, + [70764] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2665), 1, - sym_comment, - ACTIONS(5286), 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(5284), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71689] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2666), 1, - sym_comment, - ACTIONS(1034), 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(1036), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71756] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2667), 1, - sym_comment, - ACTIONS(5436), 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(5434), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71823] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - ACTIONS(5693), 1, - anon_sym_bit_DASHand2, - ACTIONS(5695), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5697), 1, - anon_sym_bit_DASHor2, - ACTIONS(5711), 1, - anon_sym_and2, - STATE(2668), 1, - sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5683), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 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(5426), 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, - [71918] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2669), 1, - sym_comment, - ACTIONS(2072), 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(2078), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71985] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2670), 1, - sym_comment, - ACTIONS(1933), 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(1935), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72052] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - STATE(2671), 1, - sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5683), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 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(5426), 26, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72139] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2672), 1, - sym_comment, - ACTIONS(2098), 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(2104), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72206] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2673), 1, - sym_comment, - ACTIONS(2371), 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(2373), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72273] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2674), 1, - sym_comment, - ACTIONS(1895), 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(1897), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72340] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - ACTIONS(5693), 1, - anon_sym_bit_DASHand2, - ACTIONS(5695), 1, - anon_sym_bit_DASHxor2, - STATE(2675), 1, - sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5683), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5428), 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(5426), 24, - 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72431] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3927), 1, - anon_sym_DOLLAR, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5738), 1, - anon_sym_DOT, - ACTIONS(5740), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5742), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5744), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5746), 1, - aux_sym__immediate_decimal_token5, - STATE(2676), 1, - sym_comment, - STATE(3059), 1, - sym__immediate_decimal, - STATE(3058), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1643), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2628), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(5641), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72516] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2677), 1, - sym_comment, - ACTIONS(2482), 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(2484), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72583] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2678), 1, - sym_comment, - ACTIONS(1957), 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(1959), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72650] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2679), 1, - sym_comment, - ACTIONS(2399), 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(2401), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72717] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2680), 1, - sym_comment, - ACTIONS(2395), 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(2397), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72784] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2681), 1, - sym_comment, - ACTIONS(1022), 7, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 48, - sym_raw_string_begin, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309220,97 +298477,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70851] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5545), 1, anon_sym_DQUOTE, + ACTIONS(5549), 1, + sym_raw_string_begin, + STATE(1704), 1, + sym__command_name, + STATE(2629), 1, + sym_comment, + STATE(2639), 1, + sym_cmd_identifier, + STATE(2640), 1, + sym_val_string, + STATE(3597), 1, + sym__val_number_decimal, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5547), 2, sym__str_single_quotes, sym__str_back_ticks, - [72850] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5748), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, - aux_sym__immediate_decimal_token2, - STATE(2682), 1, - sym_comment, - ACTIONS(1773), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1771), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [72920] = 4, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5541), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5543), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [70938] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2683), 1, + STATE(2630), 1, sym_comment, - ACTIONS(1018), 7, + ACTIONS(5628), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1020), 48, + ACTIONS(5630), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309359,22 +298610,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72986] = 4, + [71003] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2684), 1, + ACTIONS(3574), 1, + anon_sym_DQUOTE, + ACTIONS(3588), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2631), 1, sym_comment, - ACTIONS(1004), 7, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(4575), 1, + sym__command_name, + ACTIONS(3576), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(4083), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1006), 48, + ACTIONS(4926), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [71090] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2632), 1, + sym_comment, + ACTIONS(958), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(960), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309412,8 +298733,9 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309421,112 +298743,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73052] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_DOT, - STATE(2685), 1, - sym_comment, - STATE(2766), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2977), 1, - sym_cell_path, - ACTIONS(1761), 4, + [71155] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1757), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + STATE(2633), 1, + sym_comment, + STATE(3586), 1, + sym__val_number_decimal, + STATE(6232), 1, + sym_cmd_identifier, + STATE(6234), 1, + sym_val_string, + STATE(6940), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [73126] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5003), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5005), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [71242] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2686), 1, + STATE(2634), 1, sym_comment, - STATE(4002), 1, + STATE(3586), 1, sym__val_number_decimal, - STATE(4413), 1, + STATE(6232), 1, sym_cmd_identifier, - STATE(4433), 1, + STATE(6234), 1, sym_val_string, - STATE(8470), 1, + STATE(6941), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(1812), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309561,46 +298887,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73216] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, + [71329] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(3147), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2687), 1, + STATE(2635), 1, sym_comment, - STATE(2715), 1, - aux_sym_command_list_repeat1, - STATE(4047), 1, + STATE(3586), 1, sym__val_number_decimal, - STATE(7319), 1, + STATE(6051), 1, sym__command_name, - STATE(7698), 1, + STATE(6232), 1, sym_cmd_identifier, - STATE(7699), 1, + STATE(6234), 1, sym_val_string, - ACTIONS(3143), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5662), 2, + STATE(1812), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5444), 6, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309635,46 +298959,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73306] = 16, + [71416] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2688), 1, + STATE(2636), 1, sym_comment, - STATE(4002), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, + STATE(3962), 1, sym_val_string, - STATE(6669), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6513), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309709,46 +299031,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73396] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, + [71503] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2689), 1, + STATE(2637), 1, sym_comment, - STATE(4002), 1, + STATE(3586), 1, sym__val_number_decimal, - STATE(4413), 1, + STATE(6232), 1, sym_cmd_identifier, - STATE(4433), 1, + STATE(6234), 1, sym_val_string, - STATE(6108), 1, + STATE(6963), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(1812), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309783,88 +299103,153 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73486] = 6, + [71590] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5754), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5756), 1, - aux_sym__immediate_decimal_token2, - STATE(2690), 1, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5636), 1, + anon_sym_DQUOTE, + ACTIONS(5640), 1, + sym_raw_string_begin, + STATE(1744), 1, + sym__command_name, + STATE(2638), 1, sym_comment, - ACTIONS(1661), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(2693), 1, + sym_cmd_identifier, + STATE(2694), 1, + sym_val_string, + STATE(3555), 1, + sym__val_number_decimal, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1663), 35, + aux_sym__val_number_decimal_token2, + ACTIONS(5638), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2691), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5632), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5634), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [71677] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2639), 1, + sym_comment, + ACTIONS(5642), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5644), 48, sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73556] = 5, + [71742] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5758), 1, - anon_sym_QMARK2, - STATE(2691), 1, + STATE(2640), 1, sym_comment, - ACTIONS(1008), 7, + ACTIONS(5646), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1010), 47, + ACTIONS(5648), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309902,6 +299287,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, @@ -309910,22 +299297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73624] = 4, + [71807] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2692), 1, + STATE(2641), 1, sym_comment, - ACTIONS(996), 7, + ACTIONS(4985), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(998), 48, + ACTIONS(4983), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309963,8 +299348,9 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -309972,46 +299358,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73690] = 16, + [71872] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, + ACTIONS(3118), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(3124), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2693), 1, + STATE(2642), 1, sym_comment, - STATE(4002), 1, + STATE(3608), 1, sym__val_number_decimal, - STATE(4413), 1, + STATE(6807), 1, sym_cmd_identifier, - STATE(4433), 1, + STATE(6810), 1, sym_val_string, - STATE(6108), 1, + STATE(7239), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(5080), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(5263), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(5265), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310046,93 +299430,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73780] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5760), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5764), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5766), 1, - aux_sym__immediate_decimal_token5, - STATE(2694), 1, - sym_comment, - STATE(3292), 1, - sym__immediate_decimal, - STATE(3254), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1685), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73862] = 4, + [71959] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2695), 1, + STATE(2643), 1, sym_comment, - ACTIONS(1669), 10, + ACTIONS(4942), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 45, + ACTIONS(4940), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -310168,9 +299478,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, @@ -310178,46 +299491,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73928] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, + [72024] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(3147), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2696), 1, + STATE(2644), 1, sym_comment, - STATE(2715), 1, - aux_sym_command_list_repeat1, - STATE(4047), 1, + STATE(3586), 1, sym__val_number_decimal, - STATE(7649), 1, - sym__command_name, - STATE(7698), 1, + STATE(6232), 1, sym_cmd_identifier, - STATE(7699), 1, + STATE(6234), 1, sym_val_string, - ACTIONS(3143), 2, + STATE(6730), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5662), 2, + STATE(1812), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5444), 6, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310252,24 +299563,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74018] = 5, + [72111] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_QMARK2, - STATE(2697), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2645), 1, sym_comment, - ACTIONS(990), 7, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(4575), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310304,57 +299635,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74086] = 16, + [72198] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2698), 1, + STATE(2646), 1, sym_comment, - STATE(4002), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, + STATE(3962), 1, sym_val_string, - STATE(6669), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7667), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310389,93 +299707,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74176] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2699), 1, - sym_comment, - ACTIONS(1713), 7, + [72285] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1711), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + STATE(2647), 1, + sym_comment, + STATE(3586), 1, + sym__val_number_decimal, + STATE(6232), 1, + sym_cmd_identifier, + STATE(6234), 1, + sym_val_string, + STATE(6695), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74242] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(5770), 1, - sym_filesize_unit, - ACTIONS(5772), 1, - sym_duration_unit, - ACTIONS(5774), 1, - aux_sym_unquoted_token2, - STATE(2700), 1, - sym_comment, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 6, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1699), 43, - sym_raw_string_begin, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310510,162 +299779,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74318] = 8, - ACTIONS(3), 1, + [72372] = 15, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_DOT, - STATE(2701), 1, - sym_comment, - STATE(2766), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2942), 1, - sym_cell_path, - ACTIONS(971), 4, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(969), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + STATE(2648), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6591), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74392] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5776), 1, - anon_sym_DOT, - ACTIONS(5778), 1, - aux_sym__immediate_decimal_token2, - STATE(2702), 1, - sym_comment, - ACTIONS(1669), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1671), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74462] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2703), 1, - sym_comment, - ACTIONS(1711), 10, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1713), 45, - sym_raw_string_begin, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310700,34 +299851,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74528] = 4, + [72459] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2704), 1, + STATE(2649), 1, sym_comment, - ACTIONS(1767), 10, + ACTIONS(988), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1769), 45, + anon_sym_DOT2, + ACTIONS(990), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310762,9 +299901,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - 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, @@ -310772,46 +299912,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74594] = 16, + [72524] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3147), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2705), 1, + STATE(2650), 1, sym_comment, - STATE(2715), 1, - aux_sym_command_list_repeat1, - STATE(4047), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, + STATE(3962), 1, sym_val_string, - STATE(7771), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7421), 1, sym__command_name, - ACTIONS(3143), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5662), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5444), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310846,91 +299984,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74684] = 12, + [72611] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5760), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5764), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5766), 1, - aux_sym__immediate_decimal_token5, - STATE(2706), 1, - sym_comment, - STATE(3303), 1, - sym__immediate_decimal, - STATE(3302), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1643), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(2651), 1, + sym_comment, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6155), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74766] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2707), 1, - sym_comment, - ACTIONS(1014), 7, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1016), 48, - sym_raw_string_begin, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310965,449 +300056,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74832] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5780), 1, - anon_sym_DOT, - ACTIONS(5782), 1, - aux_sym__immediate_decimal_token2, - STATE(2708), 1, - sym_comment, - ACTIONS(1781), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1779), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74902] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2709), 1, - sym_comment, - ACTIONS(1671), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1669), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [74968] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2710), 1, - sym_comment, - ACTIONS(1000), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1002), 48, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75034] = 12, + [72698] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5760), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5764), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5766), 1, - aux_sym__immediate_decimal_token5, - STATE(2711), 1, - sym_comment, - STATE(3259), 1, - sym__immediate_decimal, - STATE(3258), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1741), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + ACTIONS(1295), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75116] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2712), 1, - sym_comment, - ACTIONS(1769), 7, + ACTIONS(1299), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1767), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [75182] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5760), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5762), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5764), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5766), 1, - aux_sym__immediate_decimal_token5, - STATE(2713), 1, + STATE(2652), 1, sym_comment, - STATE(3301), 1, - sym__immediate_decimal, - STATE(3280), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1745), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7581), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75264] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, - anon_sym_DQUOTE, - ACTIONS(5792), 1, - sym_raw_string_begin, - STATE(1751), 1, - sym__command_name, - STATE(2714), 1, - sym_comment, - STATE(2727), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym_val_string, - STATE(4045), 1, - sym__val_number_decimal, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2754), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5784), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5786), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311442,45 +300128,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [75354] = 15, + [72785] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5803), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5806), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5809), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(5815), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - STATE(4047), 1, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2653), 1, + sym_comment, + STATE(3616), 1, sym__val_number_decimal, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, + STATE(3962), 1, sym_val_string, - STATE(8075), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(6170), 1, sym__command_name, - ACTIONS(5800), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5812), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2715), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5662), 2, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5794), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5797), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311515,112 +300200,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [75442] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_DOT, - STATE(2716), 1, - sym_comment, - STATE(2766), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2982), 1, - sym_cell_path, - ACTIONS(1765), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1763), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [75516] = 16, + [72872] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(5792), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - STATE(1751), 1, - sym__command_name, - STATE(2717), 1, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2654), 1, sym_comment, - STATE(2727), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym_val_string, - STATE(4045), 1, + STATE(3616), 1, sym__val_number_decimal, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5790), 2, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7537), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2754), 2, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5784), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5786), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311655,23 +300272,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [75606] = 4, + [72959] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2718), 1, + STATE(2655), 1, sym_comment, - ACTIONS(1661), 10, + ACTIONS(2358), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1663), 45, + ACTIONS(2360), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311707,9 +300320,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, @@ -311717,120 +300333,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75672] = 16, + [73024] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3913), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2719), 1, + STATE(2656), 1, sym_comment, - STATE(4002), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, + STATE(3962), 1, sym_val_string, - STATE(8470), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [75762] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2715), 1, - aux_sym_command_list_repeat1, - STATE(2720), 1, - sym_comment, - STATE(4047), 1, - sym__val_number_decimal, - STATE(7698), 1, + STATE(3978), 1, sym_cmd_identifier, - STATE(7699), 1, - sym_val_string, - STATE(7735), 1, + STATE(7613), 1, sym__command_name, - ACTIONS(3143), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5662), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5444), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311865,84 +300405,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [75852] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2721), 1, - sym_comment, - ACTIONS(1663), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1661), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [75918] = 4, + [73111] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2657), 1, sym_comment, - ACTIONS(986), 7, + ACTIONS(2362), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(988), 48, + ACTIONS(2364), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311980,8 +300456,9 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311989,44 +300466,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75984] = 15, + [73176] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2723), 1, + STATE(2658), 1, sym_comment, - STATE(4002), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, + STATE(3962), 1, sym_val_string, - STATE(8646), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7651), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312061,44 +300538,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76071] = 15, + [73263] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2724), 1, + STATE(2659), 1, sym_comment, - STATE(4002), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, + STATE(3962), 1, sym_val_string, - STATE(8560), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7638), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312133,44 +300610,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76158] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [73350] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2725), 1, + STATE(2660), 1, sym_comment, - STATE(4060), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, + STATE(3962), 1, sym_val_string, - STATE(7977), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7717), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2190), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5210), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312205,44 +300682,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76245] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, + [73437] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2726), 1, + STATE(2661), 1, sym_comment, - STATE(4002), 1, + STATE(3586), 1, sym__val_number_decimal, - STATE(4413), 1, + STATE(6232), 1, sym_cmd_identifier, - STATE(4433), 1, + STATE(6234), 1, sym_val_string, - STATE(5139), 1, + STATE(6700), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(1812), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(5003), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(5005), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312277,19 +300754,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76332] = 4, + [73524] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2727), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5818), 6, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5820), 48, + ACTIONS(978), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312338,19 +300815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76397] = 4, + [73589] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2728), 1, + STATE(2663), 1, sym_comment, - ACTIONS(5822), 6, + ACTIONS(5650), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5824), 48, + ACTIONS(5652), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312399,19 +300876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76462] = 4, + [73654] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2729), 1, + STATE(2664), 1, sym_comment, - ACTIONS(5126), 6, + ACTIONS(972), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5124), 48, + ACTIONS(974), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312460,20 +300937,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76527] = 4, + [73719] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2730), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4938), 1, + aux_sym__val_number_decimal_token4, + STATE(2665), 1, sym_comment, - ACTIONS(5138), 6, + STATE(3616), 1, + sym__val_number_decimal, + STATE(3962), 1, + sym_val_string, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7765), 1, + sym__command_name, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4934), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5136), 48, - sym_raw_string_begin, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312508,57 +301009,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76592] = 15, + [73806] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2731), 1, + STATE(2666), 1, sym_comment, - STATE(4002), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, + STATE(3962), 1, sym_val_string, - STATE(8271), 1, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7387), 1, sym__command_name, - ACTIONS(3915), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312593,44 +301081,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76679] = 15, + [73893] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2732), 1, + STATE(2667), 1, sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8564), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(984), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + anon_sym_DOT2, + ACTIONS(986), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312665,44 +301131,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76766] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2733), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6770), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [73958] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2668), 1, + sym_comment, + ACTIONS(980), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + anon_sym_DOT2, + ACTIONS(982), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312737,44 +301192,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76853] = 15, - ACTIONS(109), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + sym__str_single_quotes, + sym__str_back_ticks, + [74023] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(4936), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(4938), 1, aux_sym__val_number_decimal_token4, - STATE(2734), 1, + STATE(2669), 1, sym_comment, - STATE(4060), 1, + STATE(3616), 1, sym__val_number_decimal, - STATE(6506), 1, - sym__command_name, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, + STATE(3962), 1, sym_val_string, - ACTIONS(111), 2, + STATE(3978), 1, + sym_cmd_identifier, + STATE(7371), 1, + sym__command_name, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + ACTIONS(4934), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(2190), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5210), 6, + ACTIONS(4924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(4926), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312809,44 +301275,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [76940] = 15, - ACTIONS(251), 1, + [74110] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5654), 1, + anon_sym_DOT_DOT2, + STATE(2670), 1, + sym_comment, + ACTIONS(1802), 2, sym_raw_string_begin, - ACTIONS(5161), 1, + sym__entry_separator, + ACTIONS(5656), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2735), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8257), 1, - sym__command_name, - ACTIONS(3915), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [74182] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5660), 1, + aux_sym__immediate_decimal_token2, + STATE(2671), 1, + sym_comment, + ACTIONS(1727), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74250] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2672), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2986), 1, + sym_cell_path, + ACTIONS(1981), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(1983), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -312881,19 +301457,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [77027] = 4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74322] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2736), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2673), 1, sym_comment, - ACTIONS(2391), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2979), 1, + sym_cell_path, + ACTIONS(1945), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2393), 48, + ACTIONS(1947), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312929,12 +301521,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -312942,19 +301529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77092] = 4, + [74394] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2737), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2674), 1, sym_comment, - ACTIONS(2391), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2987), 1, + sym_cell_path, + ACTIONS(1985), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2393), 48, + ACTIONS(1987), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312990,12 +301585,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313003,19 +301593,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77157] = 4, + [74466] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2738), 1, + ACTIONS(5664), 1, + anon_sym_DOT, + ACTIONS(5666), 1, + aux_sym__immediate_decimal_token2, + STATE(2675), 1, sym_comment, - ACTIONS(2403), 6, - aux_sym_cmd_identifier_token1, + ACTIONS(1735), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74534] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2676), 1, + sym_comment, + ACTIONS(1729), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1727), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74598] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(5668), 1, + anon_sym_DOT_DOT2, + STATE(2677), 1, + sym_comment, + ACTIONS(1827), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5670), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [74670] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2678), 1, + sym_comment, + ACTIONS(1773), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1771), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74734] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2679), 1, + sym_comment, + ACTIONS(1788), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1786), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74798] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2680), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2989), 1, + sym_cell_path, + ACTIONS(1829), 6, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2405), 48, + ACTIONS(1831), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313051,12 +301955,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313064,19 +301963,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77222] = 4, + [74870] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2739), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2681), 1, sym_comment, - ACTIONS(2439), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2993), 1, + sym_cell_path, + ACTIONS(1989), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2441), 48, + ACTIONS(1991), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313112,12 +302019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313125,22 +302027,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77287] = 4, + [74942] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2740), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2682), 1, sym_comment, - ACTIONS(1022), 7, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2994), 1, + sym_cell_path, + ACTIONS(1993), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 47, + ACTIONS(1995), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313175,30 +302083,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75014] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5615), 1, + anon_sym_DOT2, + STATE(2683), 1, + sym_comment, + STATE(2684), 1, + aux_sym_cell_path_repeat1, + STATE(2843), 1, + sym_path, + ACTIONS(948), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(950), 33, + sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75084] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5672), 1, + anon_sym_DOT2, + STATE(2843), 1, + sym_path, + STATE(2684), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(943), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77352] = 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, + [75152] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2741), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2685), 1, sym_comment, - ACTIONS(2474), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2997), 1, + sym_cell_path, + ACTIONS(1997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2476), 48, + ACTIONS(1999), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313234,32 +302272,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75224] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5677), 1, + anon_sym_RBRACK, + ACTIONS(5680), 1, + anon_sym_DOT2, + ACTIONS(5682), 1, + sym_raw_string_begin, + STATE(2686), 1, + sym_comment, + STATE(5762), 1, + aux_sym_cell_path_repeat1, + STATE(6534), 1, + sym_path, + STATE(7043), 1, + sym_cell_path, + ACTIONS(1949), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5675), 45, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [75300] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5684), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5686), 1, + aux_sym__immediate_decimal_token2, + STATE(2687), 1, + sym_comment, + ACTIONS(1729), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1727), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77417] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [75368] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2742), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2688), 1, sym_comment, - ACTIONS(2478), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2998), 1, + sym_cell_path, + ACTIONS(2001), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2480), 48, + ACTIONS(2003), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313295,12 +302464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313308,22 +302472,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77482] = 4, + [75440] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2743), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2689), 1, sym_comment, - ACTIONS(1018), 7, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3003), 1, + sym_cell_path, + ACTIONS(2005), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1020), 47, + ACTIONS(2007), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313358,10 +302528,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313369,22 +302536,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77547] = 4, + [75512] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2744), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2690), 1, sym_comment, - ACTIONS(1014), 7, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3004), 1, + sym_cell_path, + ACTIONS(2009), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1016), 47, + ACTIONS(2011), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313419,10 +302592,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -313430,20 +302600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77612] = 4, + [75584] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2745), 1, + STATE(2691), 1, sym_comment, - ACTIONS(5826), 6, + ACTIONS(958), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5828), 48, + ACTIONS(960), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313481,8 +302652,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, @@ -313491,19 +302660,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77677] = 4, + [75648] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2746), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2692), 1, sym_comment, - ACTIONS(5830), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3030), 1, + sym_cell_path, + ACTIONS(2013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5832), 48, + ACTIONS(2015), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313539,12 +302716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313552,20 +302724,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77742] = 4, + [75720] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2747), 1, + STATE(2693), 1, sym_comment, - ACTIONS(1763), 6, + ACTIONS(5642), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1765), 48, + ACTIONS(5644), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313603,8 +302776,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, @@ -313613,20 +302784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77807] = 4, + [75784] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2748), 1, + STATE(2694), 1, sym_comment, - ACTIONS(5834), 6, + ACTIONS(5646), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5836), 48, + ACTIONS(5648), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313664,8 +302836,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, @@ -313674,19 +302844,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77872] = 4, + [75848] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2749), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2695), 1, sym_comment, - ACTIONS(5838), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2945), 1, + sym_cell_path, + ACTIONS(2017), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5840), 48, + ACTIONS(2019), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313722,12 +302900,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313735,19 +302908,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77937] = 4, + [75920] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2750), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2696), 1, sym_comment, - ACTIONS(2123), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2946), 1, + sym_cell_path, + ACTIONS(2021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2125), 48, + ACTIONS(2023), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313783,12 +302964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313796,19 +302972,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78002] = 4, + [75992] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2751), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2697), 1, sym_comment, - ACTIONS(5842), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2948), 1, + sym_cell_path, + ACTIONS(2025), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5844), 48, + ACTIONS(2027), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -313844,12 +303028,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, @@ -313857,44 +303036,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78067] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [76064] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2752), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2698), 1, sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7780), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5210), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3033), 1, + sym_cell_path, + ACTIONS(2029), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(2031), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -313929,44 +303092,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [78154] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5161), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2753), 1, - sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7373), 1, - sym__command_name, - ACTIONS(111), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5210), 6, + [76136] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2699), 1, + sym_comment, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(978), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314001,19 +303149,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [78241] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76200] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2754), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2700), 1, sym_comment, - ACTIONS(1000), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2977), 1, + sym_cell_path, + ACTIONS(1949), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1002), 48, + ACTIONS(1951), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314049,33 +303216,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76272] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5688), 1, + anon_sym_DOT, + ACTIONS(5690), 1, + aux_sym__immediate_decimal_token2, + STATE(2701), 1, + sym_comment, + ACTIONS(1737), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1735), 47, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78306] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [76340] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2755), 1, + STATE(2702), 1, sym_comment, - ACTIONS(1004), 6, + ACTIONS(972), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1006), 48, + ACTIONS(974), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314113,8 +303338,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, @@ -314123,20 +303346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78371] = 4, + [76404] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2703), 1, sym_comment, - ACTIONS(996), 6, + ACTIONS(1018), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(998), 48, + ACTIONS(1020), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314174,8 +303398,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, @@ -314184,20 +303406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78436] = 4, + [76468] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2704), 1, sym_comment, - ACTIONS(986), 6, + ACTIONS(5617), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(988), 48, + ACTIONS(5619), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314235,8 +303458,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, @@ -314245,44 +303466,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78501] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [76532] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2758), 1, + STATE(2705), 1, sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7588), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5210), 6, + ACTIONS(5650), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(5652), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314317,87 +303515,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [78588] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5846), 1, - anon_sym_DOT, - STATE(2759), 1, - sym_comment, - STATE(2807), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(3013), 1, - sym_cell_path, - ACTIONS(1757), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1761), 33, - sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78661] = 8, + [76596] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5846), 1, - anon_sym_DOT, - STATE(2760), 1, + ACTIONS(5692), 1, + anon_sym_DOT_DOT2, + ACTIONS(5696), 1, + sym_filesize_unit, + ACTIONS(5698), 1, + sym_duration_unit, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token2, + STATE(2706), 1, sym_comment, - STATE(2807), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(3016), 1, - sym_cell_path, - ACTIONS(1763), 17, + ACTIONS(5694), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -314413,7 +303559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1765), 33, + ACTIONS(1665), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314421,8 +303567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314447,44 +303591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [78734] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [76670] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2761), 1, + STATE(2707), 1, sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7657), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5210), 6, + ACTIONS(962), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(964), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314519,109 +303640,217 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [78821] = 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76734] = 33, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5846), 1, - anon_sym_DOT, - STATE(2762), 1, - sym_comment, - STATE(2807), 1, - aux_sym_cell_path_repeat1, - STATE(2946), 1, - sym_path, - STATE(3057), 1, - sym_cell_path, - ACTIONS(969), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(971), 33, - sym_raw_string_begin, + ACTIONS(2590), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2592), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3082), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3086), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3088), 1, anon_sym_DOLLAR, + ACTIONS(3100), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3102), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3104), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3106), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3112), 1, + anon_sym_0b, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(5702), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5704), 1, + anon_sym_DOT_DOT, + ACTIONS(5708), 1, anon_sym_null, + ACTIONS(5712), 1, + sym_val_date, + STATE(2708), 1, + sym_comment, + STATE(5523), 1, + sym__val_number_decimal, + STATE(5793), 1, + sym_val_variable, + STATE(5975), 1, + sym_expr_parenthesized, + STATE(6630), 1, + sym__inter_single_quotes, + STATE(6638), 1, + sym__inter_double_quotes, + STATE(7188), 1, + sym__val_number, + STATE(7275), 1, + sym_block, + ACTIONS(3114), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5706), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5710), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7299), 2, + sym_val_range, + sym__value, + ACTIONS(3108), 6, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [78894] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + STATE(7055), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [76856] = 33, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(2590), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2592), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3082), 1, + anon_sym_LBRACK, + ACTIONS(3086), 1, + anon_sym_LPAREN, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(3100), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3102), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3104), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(3106), 1, aux_sym__val_number_decimal_token4, - STATE(2763), 1, + ACTIONS(3112), 1, + anon_sym_0b, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(5702), 1, + anon_sym_LBRACE, + ACTIONS(5704), 1, + anon_sym_DOT_DOT, + ACTIONS(5708), 1, + anon_sym_null, + ACTIONS(5712), 1, + sym_val_date, + STATE(2709), 1, sym_comment, - STATE(4060), 1, + STATE(5523), 1, sym__val_number_decimal, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - STATE(7669), 1, - sym__command_name, - ACTIONS(111), 2, + STATE(5793), 1, + sym_val_variable, + STATE(5982), 1, + sym_expr_parenthesized, + STATE(6630), 1, + sym__inter_single_quotes, + STATE(6638), 1, + sym__inter_double_quotes, + STATE(7188), 1, + sym__val_number, + STATE(7348), 1, + sym_block, + ACTIONS(3114), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, + ACTIONS(5706), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5710), 2, + anon_sym_true, + anon_sym_false, + STATE(5080), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5210), 6, + STATE(7205), 2, + sym_val_range, + sym__value, + ACTIONS(3108), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7055), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [76978] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2710), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2995), 1, + sym_cell_path, + ACTIONS(1957), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(1959), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314656,240 +303885,262 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [78981] = 5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77050] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5778), 1, - aux_sym__immediate_decimal_token2, - STATE(2764), 1, + STATE(2711), 1, sym_comment, - ACTIONS(1669), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1671), 35, + ACTIONS(2346), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2348), 47, sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79048] = 5, + [77114] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5848), 1, - aux_sym__immediate_decimal_token2, - STATE(2765), 1, + STATE(2712), 1, sym_comment, - ACTIONS(1711), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 35, + ACTIONS(4942), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4940), 47, sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [79115] = 7, - ACTIONS(3), 1, + [77178] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5752), 1, - anon_sym_DOT, - STATE(2766), 1, + STATE(2713), 1, sym_comment, - STATE(2767), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - ACTIONS(984), 4, + ACTIONS(2350), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2352), 47, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(982), 47, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [79186] = 6, - ACTIONS(3), 1, + [77242] = 30, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5850), 1, - anon_sym_DOT, - STATE(2907), 1, - sym_path, - STATE(2767), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 4, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5545), 1, + anon_sym_DQUOTE, + ACTIONS(5549), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(975), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5714), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5716), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5718), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5726), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5728), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5730), 1, + aux_sym_unquoted_token1, + STATE(2611), 1, + sym__inter_single_quotes, + STATE(2612), 1, + sym__inter_double_quotes, + STATE(2714), 1, + sym_comment, + STATE(5789), 1, + sym__val_number_decimal, + STATE(7507), 1, + sym_val_bool, + STATE(7649), 1, + sym__val_range, + STATE(7657), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5547), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5720), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5722), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(1671), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2672), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314898,6 +304149,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(2674), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314906,45 +304159,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [79255] = 15, + [77358] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, + STATE(2715), 1, + sym_comment, + ACTIONS(5628), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5630), 47, sym_raw_string_begin, - ACTIONS(5161), 1, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2768), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6357), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [77422] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2716), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3026), 1, + sym_cell_path, + ACTIONS(1969), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(1971), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314979,20 +304275,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [79342] = 5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [77494] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5782), 1, - aux_sym__immediate_decimal_token2, - STATE(2769), 1, + ACTIONS(5734), 1, + anon_sym_RBRACK, + ACTIONS(5736), 1, + sym__entry_separator, + ACTIONS(5738), 1, + sym_raw_string_begin, + STATE(2717), 1, + sym_comment, + STATE(2735), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5732), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77564] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5740), 1, + anon_sym_QMARK2, + STATE(2718), 1, sym_comment, - ACTIONS(1781), 5, + ACTIONS(954), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1779), 48, + ACTIONS(952), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315023,6 +304389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315040,21 +304407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [79409] = 5, + [77630] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5853), 1, - aux_sym__immediate_decimal_token2, - STATE(2770), 1, + ACTIONS(5742), 1, + anon_sym_QMARK2, + STATE(2719), 1, sym_comment, - ACTIONS(1801), 5, + ACTIONS(968), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1799), 48, + ACTIONS(966), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315085,6 +304450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315102,45 +304468,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [79476] = 15, + [77696] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2771), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2720), 1, sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6872), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3019), 1, + sym_cell_path, + ACTIONS(935), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(937), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315175,44 +304524,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [79563] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2772), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6873), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [77768] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2721), 1, + sym_comment, + ACTIONS(1717), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(1719), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315247,116 +304581,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [79650] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2773), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8663), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [79737] = 15, + [77832] = 31, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(1299), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(3212), 1, + aux_sym_unquoted_token1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(3932), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, - STATE(2774), 1, + ACTIONS(4127), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2722), 1, sym_comment, - STATE(4002), 1, + STATE(5596), 1, sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(7236), 1, - sym__command_name, - ACTIONS(3915), 2, + STATE(6426), 1, + sym_unquoted, + STATE(7459), 1, + sym__val_range, + STATE(7461), 1, + sym__unquoted_anonymous_prefix, + STATE(7507), 1, + sym_val_bool, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5149), 6, + ACTIONS(5744), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6421), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77950] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2723), 1, + sym_comment, + ACTIONS(2358), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(2360), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315391,44 +304728,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [79824] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2775), 1, - sym_comment, - STATE(4060), 1, - sym__val_number_decimal, - STATE(6474), 1, - sym__command_name, - STATE(6922), 1, - sym_cmd_identifier, - STATE(6942), 1, - sym_val_string, - ACTIONS(111), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5210), 6, + [78014] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2724), 1, + sym_comment, + ACTIONS(2362), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5212), 34, + ACTIONS(2364), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315463,44 +304788,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [79911] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2776), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6108), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [78078] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2725), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2954), 1, + sym_cell_path, + ACTIONS(2033), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(2035), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315535,44 +304855,219 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [79998] = 15, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78150] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, + STATE(2726), 1, + sym_comment, + ACTIONS(1599), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1601), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(5792), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78214] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5736), 1, + sym__entry_separator, + ACTIONS(5738), 1, sym_raw_string_begin, - STATE(1751), 1, - sym__command_name, + ACTIONS(5746), 1, + anon_sym_RBRACK, STATE(2727), 1, - sym_cmd_identifier, - STATE(2728), 1, - sym_val_string, - STATE(2777), 1, sym_comment, - STATE(4045), 1, - sym__val_number_decimal, - ACTIONS(5159), 2, + STATE(2735), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5732), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2754), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5784), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [78284] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2728), 1, + sym_comment, + ACTIONS(1623), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1625), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78348] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2729), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2964), 1, + sym_cell_path, + ACTIONS(1965), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5786), 34, + ACTIONS(1967), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315607,44 +305102,329 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80085] = 15, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78420] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2730), 1, + sym_comment, + ACTIONS(1709), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1711), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78484] = 30, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5161), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5859), 1, + ACTIONS(5545), 1, anon_sym_DQUOTE, - ACTIONS(5863), 1, + ACTIONS(5549), 1, sym_raw_string_begin, - STATE(1889), 1, - sym__command_name, - STATE(2778), 1, + ACTIONS(5714), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_DOLLAR, + ACTIONS(5718), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5726), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5728), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5730), 1, + aux_sym_unquoted_token1, + STATE(2611), 1, + sym__inter_single_quotes, + STATE(2612), 1, + sym__inter_double_quotes, + STATE(2731), 1, sym_comment, - STATE(2795), 1, - sym_val_string, - STATE(2873), 1, - sym_cmd_identifier, - STATE(3996), 1, + STATE(5789), 1, sym__val_number_decimal, - ACTIONS(5159), 2, + STATE(7507), 1, + sym_val_bool, + STATE(7649), 1, + sym__val_range, + STATE(7657), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5547), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5720), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5722), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1671), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78600] = 31, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3212), 1, + aux_sym_unquoted_token1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(3932), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, - ACTIONS(5861), 2, + ACTIONS(3948), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4127), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(2732), 1, + sym_comment, + STATE(5596), 1, + sym__val_number_decimal, + STATE(6426), 1, + sym_unquoted, + STATE(7459), 1, + sym__val_range, + STATE(7461), 1, + sym__unquoted_anonymous_prefix, + STATE(7507), 1, + sym_val_bool, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2871), 2, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5855), 6, + ACTIONS(5744), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6421), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78718] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2733), 1, + sym_comment, + ACTIONS(1723), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1725), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78782] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2734), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(3027), 1, + sym_cell_path, + ACTIONS(1973), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5857), 34, + ACTIONS(1975), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315679,44 +305459,276 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80172] = 15, - ACTIONS(251), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78854] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(2332), 1, + sym_raw_string_begin, + ACTIONS(5748), 1, + sym__entry_separator, + STATE(2735), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2327), 50, + 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_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3679), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [78920] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5736), 1, + sym__entry_separator, + ACTIONS(5738), 1, sym_raw_string_begin, - ACTIONS(5161), 1, + ACTIONS(5751), 1, + anon_sym_RBRACK, + STATE(2735), 1, + aux_sym__multiple_types_repeat1, + STATE(2736), 1, + sym_comment, + ACTIONS(5732), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2779), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [78990] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5736), 1, + sym__entry_separator, + ACTIONS(5738), 1, + sym_raw_string_begin, + ACTIONS(5753), 1, + anon_sym_RBRACK, + STATE(2735), 1, + aux_sym__multiple_types_repeat1, + STATE(2737), 1, sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(5139), 1, - sym__command_name, - ACTIONS(3667), 2, + ACTIONS(5732), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79060] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2738), 1, + sym_comment, + ACTIONS(960), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(958), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4958), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79124] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2739), 1, + sym_comment, + ACTIONS(5607), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(5609), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315751,44 +305763,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80259] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2780), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6865), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + [79188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2740), 1, + sym_comment, + ACTIONS(978), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(976), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79252] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2741), 1, + sym_comment, + ACTIONS(5611), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(5613), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315823,44 +305883,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80346] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2781), 1, - sym_comment, - STATE(4047), 1, - sym__val_number_decimal, - STATE(7698), 1, - sym_cmd_identifier, - STATE(7699), 1, - sym_val_string, - STATE(8200), 1, - sym__command_name, - ACTIONS(3143), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + [79316] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2742), 1, + sym_comment, + ACTIONS(974), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(972), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5444), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79380] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2743), 1, + sym_comment, + ACTIONS(4985), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5446), 34, + ACTIONS(4983), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315895,44 +306003,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80433] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2782), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6682), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [79444] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2744), 1, + sym_comment, + ACTIONS(2055), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(2057), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -315967,44 +306063,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80520] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(3917), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [79508] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2745), 1, + sym_comment, + ACTIONS(964), 4, sym_raw_string_begin, - ACTIONS(5161), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(962), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2783), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6693), 1, - sym__command_name, - ACTIONS(3915), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79572] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5755), 1, + sym__newline, + STATE(2746), 1, + sym_comment, + ACTIONS(5758), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1277), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1275), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [79640] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2747), 1, + sym_comment, + ACTIONS(2338), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(2340), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316039,44 +306245,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80607] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2784), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6886), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [79704] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2748), 1, + sym_comment, + ACTIONS(2338), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(2340), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316111,44 +306305,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80694] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, aux_sym__val_number_decimal_token4, - STATE(2785), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8470), 1, - sym__command_name, - ACTIONS(3915), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, + [79768] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2749), 1, + sym_comment, + STATE(2766), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + STATE(2985), 1, + sym_cell_path, + ACTIONS(1977), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, + ACTIONS(1979), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316183,769 +306372,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [80781] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2786), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6669), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [80868] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2787), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8345), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [80955] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2788), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(6801), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [81042] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2789), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8382), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [81129] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2790), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8637), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [81216] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2791), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8276), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [81303] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(5161), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5163), 1, - aux_sym__val_number_decimal_token4, - STATE(2792), 1, - sym_comment, - STATE(4002), 1, - sym__val_number_decimal, - STATE(4413), 1, - sym_cmd_identifier, - STATE(4433), 1, - sym_val_string, - STATE(8309), 1, - sym__command_name, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5159), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5149), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5151), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [81390] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2793), 1, - sym_comment, - ACTIONS(1052), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1054), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81455] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2794), 1, - sym_comment, - ACTIONS(2403), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2405), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81519] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2795), 1, - sym_comment, - ACTIONS(5822), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5824), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81583] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2796), 1, - sym_comment, - ACTIONS(1052), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1054), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81647] = 8, + [79840] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(5865), 1, - anon_sym_DOT_DOT2, - STATE(2797), 1, + STATE(2750), 1, sym_comment, - ACTIONS(1838), 2, + ACTIONS(1737), 5, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5867), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 46, + sym__entry_separator, + ACTIONS(1735), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316953,6 +306399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -316992,24 +306439,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81719] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(5869), 1, - anon_sym_DOT_DOT2, - STATE(2798), 1, + [79904] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2751), 1, sym_comment, - ACTIONS(1848), 2, + ACTIONS(958), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(960), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5871), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 46, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [79967] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2752), 1, + sym_comment, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3074), 1, + sym_cell_path, + ACTIONS(1831), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1829), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -317056,218 +306562,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81791] = 8, + [80038] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2799), 1, + ACTIONS(5762), 1, + anon_sym_QMARK2, + STATE(2753), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3115), 1, - sym_cell_path, - ACTIONS(1945), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(952), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81863] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2800), 1, - sym_comment, - ACTIONS(5830), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5832), 47, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(954), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81927] = 8, - ACTIONS(251), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80103] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2801), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2754), 1, sym_comment, - STATE(2897), 1, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(2960), 1, sym_path, - STATE(3114), 1, + STATE(3075), 1, sym_cell_path, - ACTIONS(969), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(971), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [81999] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(1991), 2, sym_raw_string_begin, - ACTIONS(5875), 1, sym__entry_separator, - STATE(2802), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2350), 50, + ACTIONS(1989), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317285,9 +306668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317305,32 +306685,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82065] = 7, + [80174] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5880), 1, - anon_sym_RBRACK, - ACTIONS(5882), 1, - sym__entry_separator, - ACTIONS(5884), 1, - sym_raw_string_begin, - STATE(2802), 1, - aux_sym__multiple_types_repeat1, - STATE(2803), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2755), 1, sym_comment, - ACTIONS(5878), 49, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3108), 1, + sym_cell_path, + ACTIONS(937), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(935), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317348,9 +306731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317368,32 +306748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82135] = 7, + [80245] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, - sym__entry_separator, - ACTIONS(5884), 1, - sym_raw_string_begin, - ACTIONS(5886), 1, - anon_sym_RBRACK, - STATE(2802), 1, - aux_sym__multiple_types_repeat1, - STATE(2804), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2756), 1, sym_comment, - ACTIONS(5878), 49, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3082), 1, + sym_cell_path, + ACTIONS(1995), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1993), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317411,9 +306794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317431,32 +306811,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82205] = 7, + [80316] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, - sym__entry_separator, - ACTIONS(5884), 1, - sym_raw_string_begin, - ACTIONS(5888), 1, - anon_sym_RBRACK, - STATE(2802), 1, - aux_sym__multiple_types_repeat1, - STATE(2805), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2757), 1, sym_comment, - ACTIONS(5878), 49, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3087), 1, + sym_cell_path, + ACTIONS(1999), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1997), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317474,9 +306857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317494,90 +306874,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82275] = 8, - ACTIONS(251), 1, + [80387] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2806), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2758), 1, sym_comment, - STATE(2897), 1, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(2960), 1, sym_path, - STATE(3123), 1, + STATE(3089), 1, sym_cell_path, - ACTIONS(1949), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1951), 43, + ACTIONS(2003), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2001), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82347] = 7, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80458] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5846), 1, - anon_sym_DOT, - STATE(2807), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2759), 1, sym_comment, - STATE(2808), 1, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(2946), 1, + STATE(2960), 1, sym_path, - ACTIONS(982), 17, + STATE(3095), 1, + sym_cell_path, + ACTIONS(2007), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2005), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317586,20 +306991,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(984), 33, + [80529] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2760), 1, + sym_comment, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3101), 1, + sym_cell_path, + ACTIONS(2011), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2009), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317609,10 +307039,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317621,25 +307062,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82417] = 6, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [80600] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_DOT, - STATE(2946), 1, - sym_path, - STATE(2808), 2, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2761), 1, sym_comment, + STATE(2850), 1, aux_sym_cell_path_repeat1, - ACTIONS(975), 17, + STATE(2960), 1, + sym_path, + STATE(3102), 1, + sym_cell_path, + ACTIONS(2015), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2013), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317648,20 +307117,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(977), 33, + [80671] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2762), 1, + sym_comment, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3103), 1, + sym_cell_path, + ACTIONS(2019), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2017), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317671,10 +307165,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317683,80 +307188,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, - [82485] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [80742] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2809), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2763), 1, sym_comment, - ACTIONS(5826), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5828), 47, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3104), 1, + sym_cell_path, + ACTIONS(2023), 2, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(2021), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82549] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80813] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2810), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2764), 1, sym_comment, - ACTIONS(1669), 18, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3106), 1, + sym_cell_path, + ACTIONS(2027), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2025), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -317765,21 +307306,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1671), 35, + [80884] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2765), 1, + sym_comment, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3111), 1, + sym_cell_path, + ACTIONS(2031), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2029), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317789,12 +307354,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317803,21 +307377,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, - [82613] = 4, + aux_sym__unquoted_in_list_token1, + [80955] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2811), 1, + ACTIONS(5662), 1, + anon_sym_DOT2, + STATE(2766), 1, sym_comment, - ACTIONS(986), 6, + STATE(2768), 1, + aux_sym_cell_path_repeat1, + STATE(2941), 1, + sym_path, + ACTIONS(948), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(988), 47, + ACTIONS(950), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317852,10 +307432,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317863,43 +307440,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82677] = 4, - ACTIONS(251), 1, + [81024] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2812), 1, + ACTIONS(5764), 1, + anon_sym_DOT, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token2, + STATE(2767), 1, sym_comment, - ACTIONS(1661), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1663), 35, + ACTIONS(1737), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1735), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317909,12 +307476,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317923,27 +307499,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82741] = 8, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [81091] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2813), 1, + ACTIONS(5768), 1, + anon_sym_DOT2, + STATE(2941), 1, + sym_path, + STATE(2768), 2, sym_comment, - STATE(2897), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3136), 1, - sym_cell_path, - ACTIONS(2033), 6, + ACTIONS(941), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2035), 43, + ACTIONS(943), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317987,12 +307562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82813] = 4, + [81158] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2814), 1, + ACTIONS(5771), 1, + anon_sym_DOT, + ACTIONS(5773), 1, + aux_sym__immediate_decimal_token2, + STATE(2769), 1, sym_comment, - ACTIONS(1711), 18, + ACTIONS(1735), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -318010,8 +307589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 35, + ACTIONS(1737), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318033,8 +307611,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318047,12 +307623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82877] = 4, + [81225] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2815), 1, + ACTIONS(5775), 1, + aux_sym__immediate_decimal_token2, + STATE(2770), 1, sym_comment, - ACTIONS(1767), 18, + ACTIONS(1771), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -318071,7 +307649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1769), 35, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318093,8 +307671,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -318107,93 +307683,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, - [82941] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2816), 1, - sym_comment, - ACTIONS(5834), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5836), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83005] = 5, + [81290] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - anon_sym_QMARK2, - STATE(2817), 1, - sym_comment, - ACTIONS(1010), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5736), 1, sym__entry_separator, - ACTIONS(1008), 48, + ACTIONS(5738), 1, + sym_raw_string_begin, + STATE(2735), 1, + aux_sym__multiple_types_repeat1, + STATE(2771), 1, + sym_comment, + ACTIONS(5732), 49, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -318211,6 +307724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318228,34 +307744,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83071] = 5, - ACTIONS(3), 1, + [81357] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5895), 1, + ACTIONS(5777), 1, anon_sym_QMARK2, - STATE(2818), 1, + STATE(2772), 1, sym_comment, - ACTIONS(992), 4, + ACTIONS(966), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(968), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(990), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318265,21 +307792,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318288,110 +307804,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83137] = 4, + [81422] = 29, ACTIONS(251), 1, anon_sym_POUND, - STATE(2819), 1, - sym_comment, - ACTIONS(5838), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5840), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3944), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5636), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83201] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2820), 1, - sym_comment, - ACTIONS(1002), 4, + ACTIONS(5640), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1000), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5779), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5781), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5783), 1, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5791), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5793), 1, + aux_sym_unquoted_token1, + STATE(2747), 1, + sym__inter_single_quotes, + STATE(2748), 1, + sym__inter_double_quotes, + STATE(2773), 1, + sym_comment, + STATE(5606), 1, + sym__val_number_decimal, + STATE(7479), 1, + sym__val_range, + STATE(7507), 1, + sym_val_bool, + STATE(7509), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(5638), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5785), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2691), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5787), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(1757), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2672), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318400,6 +307878,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(2674), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318408,18 +307888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83265] = 4, + [81535] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2821), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2774), 1, sym_comment, - ACTIONS(1006), 4, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3069), 1, + sym_cell_path, + ACTIONS(1983), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1004), 49, + ACTIONS(1981), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318427,9 +307912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -318469,17 +307951,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83329] = 4, + [81606] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2822), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2775), 1, sym_comment, - ACTIONS(998), 4, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3073), 1, + sym_cell_path, + ACTIONS(1987), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(996), 49, + ACTIONS(1985), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318487,9 +307975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -318529,16 +308014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83393] = 6, + [81677] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5897), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5899), 1, - aux_sym__immediate_decimal_token2, - STATE(2823), 1, + STATE(2776), 1, sym_comment, - ACTIONS(1771), 18, + ACTIONS(976), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -318547,6 +308028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318556,8 +308038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 33, + ACTIONS(978), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318565,6 +308046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -318591,33 +308073,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83461] = 4, - ACTIONS(3), 1, + [81740] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2824), 1, + STATE(2777), 1, sym_comment, - ACTIONS(988), 4, + ACTIONS(972), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(974), 34, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(986), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318627,21 +308120,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318650,201 +308132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83525] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2825), 1, - sym_comment, - ACTIONS(2391), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2393), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83589] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2826), 1, - sym_comment, - ACTIONS(2391), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2393), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83653] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2827), 1, - sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3062), 1, - sym_cell_path, - ACTIONS(2049), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2051), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83725] = 6, + [81803] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5901), 1, - anon_sym_DOT, - ACTIONS(5903), 1, + ACTIONS(5795), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5797), 1, aux_sym__immediate_decimal_token2, - STATE(2828), 1, + STATE(2778), 1, sym_comment, - ACTIONS(1779), 18, + ACTIONS(1727), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -318862,8 +308159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 33, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -318897,31 +308193,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83793] = 4, - ACTIONS(3), 1, + [81870] = 13, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2829), 1, - sym_comment, - ACTIONS(1781), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1779), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(5799), 1, + anon_sym_DOT, + ACTIONS(5803), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5805), 1, + aux_sym__immediate_decimal_token5, + STATE(2779), 1, + sym_comment, + STATE(3197), 1, + sym__immediate_decimal, + ACTIONS(5801), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1880), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1583), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [81951] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2780), 1, + sym_comment, + ACTIONS(2479), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2477), 50, + 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_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -318939,6 +308300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318956,83 +308320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83857] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2830), 1, - sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3063), 1, - sym_cell_path, - ACTIONS(2053), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2055), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83929] = 4, + [82014] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(5807), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5809), 1, + aux_sym__immediate_decimal_token2, + STATE(2781), 1, sym_comment, - ACTIONS(1773), 5, + ACTIONS(1729), 3, sym_raw_string_begin, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1771), 48, + ACTIONS(1727), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319040,7 +308341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -319081,30 +308381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [83993] = 9, + [82081] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5905), 1, - anon_sym_DOT_DOT2, - ACTIONS(5909), 1, - sym_filesize_unit, - ACTIONS(5911), 1, - sym_duration_unit, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token2, - STATE(2832), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5907), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 16, + ACTIONS(962), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319114,7 +308405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1699), 31, + ACTIONS(964), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -319122,6 +308413,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -319146,26 +308440,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84067] = 4, + [82144] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2833), 1, - sym_comment, - ACTIONS(1801), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 1, sym__entry_separator, - ACTIONS(1799), 48, - anon_sym_LBRACK, + ACTIONS(5760), 1, + anon_sym_DOT2, + ACTIONS(5813), 1, anon_sym_RBRACK, + ACTIONS(5816), 1, + sym_raw_string_begin, + STATE(2783), 1, + sym_comment, + STATE(2850), 1, + aux_sym_cell_path_repeat1, + STATE(2960), 1, + sym_path, + STATE(3077), 1, + sym_cell_path, + ACTIONS(5811), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -319205,19 +308505,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84131] = 4, + [82219] = 29, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5545), 1, + anon_sym_DQUOTE, + ACTIONS(5549), 1, + sym_raw_string_begin, + ACTIONS(5714), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_DOLLAR, + ACTIONS(5718), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5726), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5728), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5730), 1, + aux_sym_unquoted_token1, + STATE(2611), 1, + sym__inter_single_quotes, + STATE(2612), 1, + sym__inter_double_quotes, + STATE(2784), 1, + sym_comment, + STATE(5789), 1, + sym__val_number_decimal, + STATE(7507), 1, + sym_val_bool, + STATE(7649), 1, + sym__val_range, + STATE(7657), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5547), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5720), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5722), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1671), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82332] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5818), 1, + sym__newline, + STATE(2785), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1262), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1264), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2834), 1, + STATE(2786), 1, sym_comment, - ACTIONS(1820), 5, + ACTIONS(990), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1818), 48, + ACTIONS(988), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319248,6 +308690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319265,264 +308708,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [84195] = 8, + [82460] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2835), 1, + ACTIONS(1951), 1, + sym__table_head_separator, + ACTIONS(5821), 1, + anon_sym_DOT2, + STATE(2787), 1, sym_comment, - STATE(2897), 1, + STATE(5574), 1, + sym_cell_path, + STATE(6113), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(7311), 1, sym_path, - STATE(3119), 1, - sym_cell_path, - ACTIONS(1941), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1943), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(5675), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5682), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84267] = 8, - ACTIONS(251), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82533] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2836), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2788), 1, sym_comment, - STATE(2897), 1, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(2960), 1, sym_path, - STATE(3120), 1, + STATE(3056), 1, sym_cell_path, - ACTIONS(1871), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1873), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84339] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2837), 1, - sym_comment, - ACTIONS(996), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(998), 47, + ACTIONS(1967), 2, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1965), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84403] = 31, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82604] = 30, ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3239), 1, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(3212), 1, aux_sym_unquoted_token1, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, + ACTIONS(3932), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(4315), 1, + ACTIONS(4127), 1, anon_sym_DOT_DOT, - ACTIONS(4509), 1, - anon_sym_DOLLAR, - ACTIONS(5915), 1, - anon_sym_LPAREN, - ACTIONS(5919), 1, + ACTIONS(5724), 1, sym_val_date, - STATE(2164), 1, + STATE(2138), 1, sym__inter_single_quotes, - STATE(2170), 1, + STATE(2139), 1, sym__inter_double_quotes, - STATE(2838), 1, + STATE(2789), 1, sym_comment, - STATE(6122), 1, + STATE(5596), 1, sym__val_number_decimal, - STATE(6921), 1, + STATE(6426), 1, sym_unquoted, - STATE(8344), 1, + STATE(7459), 1, sym__val_range, - STATE(8413), 1, + STATE(7461), 1, sym__unquoted_anonymous_prefix, - STATE(8530), 1, + STATE(7507), 1, sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3915), 2, + ACTIONS(1297), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4317), 2, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4129), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4608), 2, + STATE(3917), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5917), 3, + ACTIONS(5744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6889), 4, + STATE(6421), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2695), 8, + ACTIONS(2672), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319531,7 +308910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, + ACTIONS(2674), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -319541,333 +308920,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84521] = 4, - ACTIONS(251), 1, + [82719] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2839), 1, + ACTIONS(5690), 1, + aux_sym__immediate_decimal_token2, + STATE(2790), 1, sym_comment, - ACTIONS(2439), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2441), 47, + ACTIONS(1737), 4, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1735), 47, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84585] = 8, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82784] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2840), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2791), 1, sym_comment, - STATE(2897), 1, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(2960), 1, sym_path, - STATE(3129), 1, + STATE(3055), 1, sym_cell_path, - ACTIONS(1875), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1877), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84657] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2841), 1, - sym_comment, - ACTIONS(1004), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1006), 47, + ACTIONS(1971), 2, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1969), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84721] = 8, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82855] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2842), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2792), 1, sym_comment, - STATE(2897), 1, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(2960), 1, sym_path, - STATE(3132), 1, + STATE(3063), 1, sym_cell_path, - ACTIONS(1879), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1881), 43, + ACTIONS(1975), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1973), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84793] = 8, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82926] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2843), 1, + STATE(2793), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3137), 1, - sym_cell_path, - ACTIONS(1883), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1885), 43, + ACTIONS(986), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(984), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84865] = 6, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, - anon_sym_DOT, - ACTIONS(5923), 1, - aux_sym__immediate_decimal_token2, - STATE(2844), 1, + STATE(2794), 1, sym_comment, - ACTIONS(1781), 4, + ACTIONS(982), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1779), 47, + ACTIONS(980), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -319898,6 +309206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319915,515 +309224,633 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84933] = 8, + [83052] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2845), 1, - sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3138), 1, - sym_cell_path, - ACTIONS(1887), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1889), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(3944), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5545), 1, anon_sym_DQUOTE, + ACTIONS(5549), 1, + sym_raw_string_begin, + ACTIONS(5714), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_DOLLAR, + ACTIONS(5718), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5726), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5728), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5730), 1, + aux_sym_unquoted_token1, + STATE(2611), 1, + sym__inter_single_quotes, + STATE(2612), 1, + sym__inter_double_quotes, + STATE(2795), 1, + sym_comment, + STATE(5789), 1, + sym__val_number_decimal, + STATE(7507), 1, + sym_val_bool, + STATE(7649), 1, + sym__val_range, + STATE(7657), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5547), 2, sym__str_single_quotes, sym__str_back_ticks, - [85005] = 8, + ACTIONS(5720), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2632), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5722), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1653), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83165] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2846), 1, + ACTIONS(5666), 1, + aux_sym__immediate_decimal_token2, + STATE(2796), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3144), 1, - sym_cell_path, - ACTIONS(1891), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1893), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1735), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85077] = 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, + [83230] = 29, ACTIONS(251), 1, anon_sym_POUND, - STATE(2847), 1, - sym_comment, - ACTIONS(1763), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1765), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3944), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5636), 1, anon_sym_DQUOTE, + ACTIONS(5640), 1, + sym_raw_string_begin, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5779), 1, + anon_sym_LPAREN, + ACTIONS(5781), 1, + anon_sym_DOLLAR, + ACTIONS(5783), 1, + anon_sym_DOT_DOT, + ACTIONS(5789), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5791), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5793), 1, + aux_sym_unquoted_token1, + STATE(2747), 1, + sym__inter_single_quotes, + STATE(2748), 1, + sym__inter_double_quotes, + STATE(2797), 1, + sym_comment, + STATE(5606), 1, + sym__val_number_decimal, + STATE(7479), 1, + sym__val_range, + STATE(7507), 1, + sym_val_bool, + STATE(7509), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5638), 2, sym__str_single_quotes, sym__str_back_ticks, - [85141] = 8, + ACTIONS(5785), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2691), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5787), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1714), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83343] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2848), 1, + ACTIONS(5823), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5825), 1, + aux_sym__immediate_decimal_token2, + STATE(2798), 1, sym_comment, - STATE(2897), 1, + ACTIONS(1623), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1625), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [83410] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2799), 1, + sym_comment, + STATE(2850), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(2960), 1, sym_path, - STATE(3145), 1, + STATE(3068), 1, sym_cell_path, - ACTIONS(1895), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1897), 43, + ACTIONS(1979), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1977), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85213] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [83481] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2849), 1, + ACTIONS(5827), 1, + aux_sym__immediate_decimal_token2, + STATE(2800), 1, sym_comment, - ACTIONS(2474), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2476), 47, + ACTIONS(1773), 4, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1771), 47, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85277] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [83546] = 30, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(2850), 1, - sym_comment, - ACTIONS(2478), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2480), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3358), 1, + aux_sym_unquoted_token1, + ACTIONS(3464), 1, + anon_sym_DOLLAR, + ACTIONS(3944), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(5831), 1, + anon_sym_DOT_DOT, + STATE(2480), 1, + sym__inter_single_quotes, + STATE(2486), 1, + sym__inter_double_quotes, + STATE(2801), 1, + sym_comment, + STATE(5578), 1, + sym__val_number_decimal, + STATE(6635), 1, + sym_unquoted, + STATE(7507), 1, + sym_val_bool, + STATE(7514), 1, + sym__val_range, + STATE(7542), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [85341] = 4, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5833), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5835), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7069), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83661] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2802), 1, sym_comment, - ACTIONS(5126), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5124), 47, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3126), 1, + sym_cell_path, + ACTIONS(5839), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5837), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85405] = 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, + [83731] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2852), 1, + STATE(2803), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3146), 1, - sym_cell_path, - ACTIONS(1903), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1905), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1735), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85477] = 6, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83793] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5925), 1, - sym__newline, - STATE(2853), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5928), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1304), 15, - anon_sym_DOLLAR, + ACTIONS(1727), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -320437,18 +309864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1302), 35, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320462,9 +309891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320473,349 +309899,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85545] = 4, + [83855] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2854), 1, + STATE(2805), 1, sym_comment, - ACTIONS(2123), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2125), 47, + ACTIONS(1771), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85609] = 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, + [83917] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2855), 1, + STATE(2806), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3064), 1, - sym_cell_path, - ACTIONS(1909), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1911), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1786), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85681] = 8, - ACTIONS(251), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83979] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2856), 1, + ACTIONS(5843), 1, + anon_sym_DOT_DOT2, + STATE(2807), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3065), 1, - sym_cell_path, - ACTIONS(1917), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1919), 43, + ACTIONS(2121), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(5845), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2115), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85753] = 8, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [84045] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2857), 1, + ACTIONS(5847), 1, + anon_sym_DOT_DOT2, + STATE(2808), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3066), 1, - sym_cell_path, - ACTIONS(1925), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1927), 43, + ACTIONS(2164), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(5849), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85825] = 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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [84111] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2858), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2809), 1, sym_comment, - STATE(2897), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(3119), 1, sym_path, - STATE(3071), 1, + STATE(3186), 1, sym_cell_path, - ACTIONS(1929), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1931), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(5811), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5816), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85897] = 10, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84181] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5932), 1, + ACTIONS(5766), 1, + aux_sym__immediate_decimal_token2, + STATE(2810), 1, + sym_comment, + ACTIONS(1737), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1735), 47, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(5935), 1, - anon_sym_DOT, - ACTIONS(5937), 1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [84245] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5851), 1, + aux_sym__immediate_decimal_token2, + STATE(2811), 1, + sym_comment, + ACTIONS(1773), 3, sym_raw_string_begin, - STATE(2859), 1, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1771), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [84309] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2812), 1, sym_comment, - STATE(6283), 1, - aux_sym_cell_path_repeat1, - STATE(7065), 1, - sym_path, - STATE(7842), 1, - sym_cell_path, - ACTIONS(1953), 2, + ACTIONS(1020), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5930), 45, + ACTIONS(1018), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -320855,275 +310373,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85973] = 8, + [84371] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2860), 1, + ACTIONS(5773), 1, + aux_sym__immediate_decimal_token2, + STATE(2813), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3072), 1, - sym_cell_path, - ACTIONS(1933), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1935), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1735), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86045] = 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, + [84435] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2861), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2814), 1, sym_comment, - STATE(2897), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(3119), 1, sym_path, - STATE(3073), 1, + STATE(3139), 1, sym_cell_path, - ACTIONS(1937), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1939), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1965), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1967), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86117] = 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, + [84505] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(5853), 1, + aux_sym__immediate_decimal_token2, + STATE(2815), 1, sym_comment, - ACTIONS(5842), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5844), 47, + ACTIONS(1771), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1773), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86181] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84569] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, + STATE(2816), 1, sym_comment, - ACTIONS(5138), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5136), 47, + ACTIONS(1737), 4, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1735), 47, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86245] = 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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [84631] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2864), 1, + ACTIONS(5855), 1, + anon_sym_QMARK2, + STATE(2817), 1, sym_comment, - STATE(2897), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - STATE(3087), 1, - sym_cell_path, - ACTIONS(1953), 6, + ACTIONS(952), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1955), 43, + anon_sym_DOT2, + ACTIONS(954), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321167,74 +310670,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86317] = 30, - ACTIONS(251), 1, + [84695] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, - anon_sym_DQUOTE, - ACTIONS(5792), 1, + STATE(2818), 1, + sym_comment, + ACTIONS(1729), 4, sym_raw_string_begin, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(5939), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1727), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5941), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5943), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5949), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5951), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5953), 1, - aux_sym_unquoted_token1, - STATE(2736), 1, - sym__inter_single_quotes, - STATE(2737), 1, - sym__inter_double_quotes, - STATE(2865), 1, - sym_comment, - STATE(6339), 1, - sym__val_number_decimal, - STATE(8285), 1, - sym__val_range, - STATE(8287), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5945), 2, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2754), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5947), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1748), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2695), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321243,8 +310719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321253,75 +310727,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86433] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [84757] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_unquoted_token1, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, + STATE(2819), 1, + sym_comment, + ACTIONS(1773), 4, sym_raw_string_begin, - ACTIONS(4315), 1, - anon_sym_DOT_DOT, - ACTIONS(4509), 1, - anon_sym_DOLLAR, - ACTIONS(5915), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1771), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5919), 1, - sym_val_date, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2866), 1, - sym_comment, - STATE(6122), 1, - sym__val_number_decimal, - STATE(6921), 1, - sym_unquoted, - STATE(8344), 1, - sym__val_range, - STATE(8413), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4317), 2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5917), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6889), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2695), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321330,8 +310777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321340,32 +310785,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86551] = 7, + aux_sym__unquoted_in_list_token1, + [84819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, - sym__entry_separator, - ACTIONS(5884), 1, - sym_raw_string_begin, - ACTIONS(5955), 1, - anon_sym_RBRACK, - STATE(2802), 1, - aux_sym__multiple_types_repeat1, - STATE(2867), 1, + STATE(2820), 1, sym_comment, - ACTIONS(5878), 49, + ACTIONS(1788), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1786), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -321383,9 +310827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321403,376 +310844,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86621] = 33, + [84881] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2607), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2609), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(3123), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2821), 1, + sym_comment, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3150), 1, + sym_cell_path, + ACTIONS(1969), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3125), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3127), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3129), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3135), 1, anon_sym_0b, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1971), 33, sym_raw_string_begin, - ACTIONS(3159), 1, anon_sym_LBRACK, - ACTIONS(5957), 1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(5959), 1, - anon_sym_DOT_DOT, - ACTIONS(5963), 1, - anon_sym_null, - ACTIONS(5967), 1, - sym_val_date, - STATE(2868), 1, - sym_comment, - STATE(6083), 1, - sym__val_number_decimal, - STATE(6333), 1, - sym_val_variable, - STATE(6576), 1, - sym_expr_parenthesized, - STATE(7386), 1, - sym__val_number, - STATE(7966), 1, - sym__inter_single_quotes, - STATE(7967), 1, - sym__inter_double_quotes, - STATE(8074), 1, - sym_block, - ACTIONS(3137), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5961), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5965), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(8079), 2, - sym_val_range, - sym__value, - ACTIONS(3131), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(7688), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [86743] = 8, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84951] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2869), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2822), 1, sym_comment, - STATE(2897), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3006), 1, + STATE(3119), 1, sym_path, - STATE(3094), 1, + STATE(3158), 1, sym_cell_path, - ACTIONS(1957), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1959), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [86815] = 33, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2607), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2609), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(3123), 1, + ACTIONS(1973), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3125), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3127), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3129), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3135), 1, anon_sym_0b, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1975), 33, sym_raw_string_begin, - ACTIONS(3159), 1, anon_sym_LBRACK, - ACTIONS(5957), 1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(5959), 1, - anon_sym_DOT_DOT, - ACTIONS(5963), 1, - anon_sym_null, - ACTIONS(5967), 1, - sym_val_date, - STATE(2870), 1, - sym_comment, - STATE(6083), 1, - sym__val_number_decimal, - STATE(6333), 1, - sym_val_variable, - STATE(6577), 1, - sym_expr_parenthesized, - STATE(7386), 1, - sym__val_number, - STATE(7966), 1, - sym__inter_single_quotes, - STATE(7967), 1, - sym__inter_double_quotes, - STATE(8080), 1, - sym_block, - ACTIONS(3137), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5961), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5965), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(8086), 2, - sym_val_range, - sym__value, - ACTIONS(3131), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(7688), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [86937] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2871), 1, - sym_comment, - ACTIONS(1000), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1002), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - 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_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87001] = 30, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [85021] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, - anon_sym_DQUOTE, - ACTIONS(5792), 1, - sym_raw_string_begin, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(5939), 1, - anon_sym_LPAREN, - ACTIONS(5941), 1, + STATE(2823), 1, + sym_comment, + ACTIONS(1277), 15, anon_sym_DOLLAR, - ACTIONS(5943), 1, anon_sym_DOT_DOT, - ACTIONS(5949), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5951), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5953), 1, - aux_sym_unquoted_token1, - STATE(2736), 1, - sym__inter_single_quotes, - STATE(2737), 1, - sym__inter_double_quotes, - STATE(2872), 1, - sym_comment, - STATE(6339), 1, - sym__val_number_decimal, - STATE(8285), 1, - sym__val_range, - STATE(8287), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5945), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2754), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5947), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1748), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2695), 8, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321781,8 +310988,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(1275), 36, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321791,21 +311026,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, - [87117] = 4, + [85083] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2873), 1, + ACTIONS(5857), 1, + sym_long_flag_identifier, + ACTIONS(5859), 1, + anon_sym_EQ2, + STATE(2824), 1, sym_comment, - ACTIONS(5818), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5820), 47, + ACTIONS(4850), 9, sym_raw_string_begin, - ts_builtin_sym_end, + aux_sym_cmd_identifier_token39, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4852), 40, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -321813,10 +311054,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -321835,51 +311079,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87181] = 6, - ACTIONS(3), 1, + [85149] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5969), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5971), 1, - aux_sym__immediate_decimal_token2, - STATE(2874), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2825), 1, sym_comment, - ACTIONS(1773), 4, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3142), 1, + sym_cell_path, + ACTIONS(935), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(937), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1771), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -321889,21 +311136,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321912,21 +311148,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87249] = 6, + [85219] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5973), 1, - anon_sym_DOT, - ACTIONS(5975), 1, - aux_sym__immediate_decimal_token2, - STATE(2875), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2826), 1, sym_comment, - ACTIONS(1779), 17, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3164), 1, + sym_cell_path, + ACTIONS(1977), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -321940,7 +311176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1781), 33, + ACTIONS(1979), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321948,8 +311184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -321974,90 +311210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87316] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4702), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(5977), 1, - anon_sym_DOT, - ACTIONS(5981), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5983), 1, - aux_sym__immediate_decimal_token5, - STATE(2876), 1, - sym_comment, - STATE(3316), 1, - sym__immediate_decimal, - ACTIONS(5979), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1579), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [87397] = 9, + [85289] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1955), 1, - sym__table_head_separator, - ACTIONS(5985), 1, - anon_sym_DOT, - STATE(2877), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2827), 1, sym_comment, - STATE(3706), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3825), 1, + STATE(3119), 1, sym_path, - STATE(6105), 1, + STATE(3166), 1, sym_cell_path, - ACTIONS(5930), 14, + ACTIONS(1981), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -322072,7 +311238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5937), 33, + ACTIONS(1983), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -322106,52 +311272,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87470] = 8, - ACTIONS(3), 1, + [85359] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2878), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5861), 1, + anon_sym_DOT_DOT2, + STATE(2828), 1, sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3177), 1, - sym_cell_path, - ACTIONS(2035), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2033), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322160,45 +311300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87541] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2879), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3187), 1, - sym_cell_path, - ACTIONS(2051), 2, + ACTIONS(1827), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2049), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322208,21 +311321,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322231,53 +311333,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87612] = 8, - ACTIONS(3), 1, + [85427] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2880), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2829), 1, sym_comment, - STATE(2961), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, + STATE(3119), 1, sym_path, - STATE(3190), 1, + STATE(3169), 1, sym_cell_path, - ACTIONS(2055), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2053), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1985), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322286,45 +311360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87683] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2881), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3191), 1, - sym_cell_path, - ACTIONS(1943), 2, + ACTIONS(1987), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1941), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322334,21 +311383,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322357,53 +311395,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87754] = 8, - ACTIONS(3), 1, + [85497] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2882), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2830), 1, sym_comment, - STATE(2961), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, + STATE(3119), 1, sym_path, - STATE(3192), 1, + STATE(3178), 1, sym_cell_path, - ACTIONS(1873), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1871), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1829), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322412,45 +311422,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87825] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2883), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3193), 1, - sym_cell_path, - ACTIONS(1877), 2, + ACTIONS(1831), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1875), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322460,21 +311445,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322483,53 +311457,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87896] = 8, - ACTIONS(3), 1, + [85567] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2884), 1, + ACTIONS(5865), 1, + anon_sym_QMARK2, + STATE(2831), 1, sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3198), 1, - sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(966), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(968), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85631] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2332), 1, sym_raw_string_begin, + ACTIONS(5867), 1, sym__entry_separator, - ACTIONS(1879), 46, - anon_sym_LBRACK, + STATE(2832), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2327), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [85695] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5870), 1, + anon_sym_DOT_DOT2, + STATE(2833), 1, + sym_comment, + ACTIONS(5872), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322538,45 +311603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87967] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2885), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3199), 1, - sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(1802), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1883), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322586,21 +311624,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322609,37 +311636,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88038] = 8, + [85763] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5878), 1, + anon_sym_DASH_DASH, + STATE(3024), 1, + sym_long_flag, + STATE(2834), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(5874), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5876), 42, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85829] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2886), 1, + ACTIONS(5883), 1, + anon_sym_RBRACK, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(5887), 1, + sym_raw_string_begin, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2835), 1, sym_comment, - STATE(2961), 1, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85897] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2836), 1, + sym_comment, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, + STATE(3119), 1, sym_path, - STATE(3204), 1, + STATE(3190), 1, sym_cell_path, - ACTIONS(1889), 2, + ACTIONS(1989), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1991), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1887), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322649,21 +311807,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322672,37 +311819,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88109] = 8, + [85967] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2887), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3206), 1, - sym_cell_path, - ACTIONS(1893), 2, - sym_raw_string_begin, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(1891), 46, - anon_sym_LBRACK, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5889), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2837), 1, + sym_comment, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86035] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5891), 1, + anon_sym_RBRACK, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2838), 1, + sym_comment, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86103] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2839), 1, + sym_comment, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3176), 1, + sym_cell_path, + ACTIONS(1993), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1995), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322712,21 +311991,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322735,24 +312003,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88180] = 8, + [86173] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2888), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5893), 1, + anon_sym_RBRACK, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2840), 1, sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3207), 1, - sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86241] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(5897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5899), 1, + aux_sym__immediate_decimal_token5, + STATE(2841), 1, + sym_comment, + STATE(3237), 1, + sym__immediate_decimal, + ACTIONS(5895), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1583), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [86319] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5901), 1, + anon_sym_DOT_DOT2, + STATE(2842), 1, + sym_comment, + ACTIONS(2148), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1895), 46, + ACTIONS(5903), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322799,36 +312190,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88251] = 8, - ACTIONS(3), 1, + [86385] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2889), 1, + STATE(2843), 1, sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3208), 1, - sym_cell_path, - ACTIONS(1905), 2, + ACTIONS(988), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(990), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1903), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322838,21 +312236,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322861,37 +312248,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88322] = 8, - ACTIONS(3), 1, + [86447] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2890), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2844), 1, sym_comment, - STATE(2961), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, + STATE(3119), 1, sym_path, - STATE(3209), 1, + STATE(3121), 1, sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1997), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1999), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1909), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322901,21 +312298,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322924,26 +312310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88393] = 8, + [86517] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2891), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3212), 1, - sym_cell_path, - ACTIONS(1919), 2, - sym_raw_string_begin, + ACTIONS(5907), 1, + anon_sym_RBRACK, + ACTIONS(5909), 1, + anon_sym_DOT_DOT2, + ACTIONS(5913), 1, sym__entry_separator, - ACTIONS(1917), 46, + ACTIONS(5915), 1, + sym_raw_string_begin, + STATE(2845), 1, + sym_comment, + ACTIONS(5911), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5905), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -322988,23 +312372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88464] = 8, + [86587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2892), 1, + STATE(2846), 1, sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3223), 1, - sym_cell_path, - ACTIONS(1927), 2, + ACTIONS(2172), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1925), 46, + ACTIONS(2170), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323012,6 +312390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -323051,23 +312430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88535] = 8, + [86649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2893), 1, + STATE(2847), 1, sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3225), 1, - sym_cell_path, - ACTIONS(1931), 2, + ACTIONS(2057), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1929), 46, + ACTIONS(2055), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323075,6 +312448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -323114,25 +312488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88606] = 8, + [86711] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2894), 1, - sym_comment, - STATE(2961), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3226), 1, - sym_cell_path, - ACTIONS(1935), 2, - sym_raw_string_begin, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(1933), 46, - anon_sym_LBRACK, + ACTIONS(5909), 1, + anon_sym_DOT_DOT2, + ACTIONS(5919), 1, anon_sym_RBRACK, + ACTIONS(5922), 1, + sym_raw_string_begin, + STATE(2848), 1, + sym_comment, + ACTIONS(5911), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5917), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -323177,23 +312550,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88677] = 8, + [86781] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(5897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5899), 1, + aux_sym__immediate_decimal_token5, + STATE(2849), 1, + sym_comment, + STATE(3242), 1, + sym__immediate_decimal, + ACTIONS(5895), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2043), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1619), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [86859] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2895), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2850), 1, sym_comment, - STATE(2961), 1, + STATE(2851), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, + STATE(2960), 1, sym_path, - STATE(3227), 1, - sym_cell_path, - ACTIONS(1939), 2, + ACTIONS(950), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1937), 46, + ACTIONS(948), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323240,27 +312677,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88748] = 10, + [86927] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - ACTIONS(5987), 1, - anon_sym_DOT, - ACTIONS(5991), 1, - anon_sym_RBRACK, - ACTIONS(5994), 1, + ACTIONS(5924), 1, + anon_sym_DOT2, + STATE(2960), 1, + sym_path, + ACTIONS(943), 2, sym_raw_string_begin, - STATE(2896), 1, + sym__entry_separator, + STATE(2851), 2, sym_comment, - STATE(2961), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - STATE(3200), 1, - sym_cell_path, - ACTIONS(5989), 45, + ACTIONS(941), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -323305,25 +312737,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88823] = 7, + [86993] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - STATE(2897), 1, + STATE(2852), 1, sym_comment, - STATE(2898), 1, - aux_sym_cell_path_repeat1, - STATE(3006), 1, - sym_path, - ACTIONS(982), 6, + ACTIONS(958), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(984), 43, + anon_sym_DOT2, + ACTIONS(960), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323360,6 +312787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -323367,24 +312795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88892] = 6, + [87055] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(3006), 1, - sym_path, - STATE(2898), 2, + STATE(2853), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 6, + ACTIONS(976), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(977), 43, + anon_sym_DOT2, + ACTIONS(978), 44, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323421,6 +312845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -323428,78 +312853,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88959] = 4, + [87117] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2899), 1, - sym_comment, - ACTIONS(2502), 2, - sym_raw_string_begin, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(2500), 50, - anon_sym_LBRACK, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5927), 1, 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_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2854), 1, + sym_comment, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [89022] = 5, + [87185] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2855), 1, + sym_comment, + ACTIONS(972), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(974), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87247] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5999), 1, + STATE(2856), 1, + sym_comment, + ACTIONS(962), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(964), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, anon_sym_QMARK2, - STATE(2900), 1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87309] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2857), 1, sym_comment, - ACTIONS(990), 18, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3123), 1, + sym_cell_path, + ACTIONS(2001), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323513,7 +313058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(992), 33, + ACTIONS(2003), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323521,8 +313066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -323547,17 +313092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89087] = 4, + [87379] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2901), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2858), 1, sym_comment, - ACTIONS(1000), 18, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3127), 1, + sym_cell_path, + ACTIONS(2005), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323571,7 +313120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1002), 34, + ACTIONS(2007), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323579,9 +313128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -323606,101 +313154,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89150] = 29, + [87449] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5859), 1, - anon_sym_DQUOTE, - ACTIONS(5863), 1, - sym_raw_string_begin, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6001), 1, - anon_sym_LPAREN, - ACTIONS(6003), 1, - anon_sym_DOLLAR, - ACTIONS(6005), 1, - anon_sym_DOT_DOT, - ACTIONS(6011), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6013), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6015), 1, - aux_sym_unquoted_token1, - STATE(2825), 1, - sym__inter_single_quotes, - STATE(2826), 1, - sym__inter_double_quotes, - STATE(2902), 1, - sym_comment, - STATE(6119), 1, - sym__val_number_decimal, - STATE(8319), 1, - sym__unquoted_anonymous_prefix, - STATE(8324), 1, - sym__val_range, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5861), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6007), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2871), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(6009), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1770), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2695), 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(2697), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89263] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2903), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2859), 1, sym_comment, - ACTIONS(1004), 18, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3128), 1, + sym_cell_path, + ACTIONS(2009), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323714,7 +313182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1006), 34, + ACTIONS(2011), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323722,9 +313190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -323749,17 +313216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89326] = 4, + [87519] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2904), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2860), 1, sym_comment, - ACTIONS(996), 18, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3129), 1, + sym_cell_path, + ACTIONS(2013), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323773,7 +313244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(998), 34, + ACTIONS(2015), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323781,9 +313252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -323808,17 +313278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89389] = 4, + [87589] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2905), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2861), 1, sym_comment, - ACTIONS(986), 18, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3130), 1, + sym_cell_path, + ACTIONS(2017), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -323832,7 +313306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(988), 34, + ACTIONS(2019), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323840,9 +313314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -323867,36 +313340,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89452] = 8, - ACTIONS(3), 1, + [87659] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2906), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2862), 1, sym_comment, - STATE(2961), 1, + STATE(2887), 1, aux_sym_cell_path_repeat1, - STATE(3084), 1, + STATE(3119), 1, sym_path, - STATE(3233), 1, + STATE(3131), 1, sym_cell_path, - ACTIONS(971), 2, + ACTIONS(2021), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2023), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(969), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323906,21 +313390,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323929,18 +313402,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, - aux_sym__unquoted_in_list_token1, - [89523] = 4, + [87729] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2907), 1, + STATE(2863), 1, sym_comment, - ACTIONS(1024), 4, + ACTIONS(2176), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1022), 48, + ACTIONS(2174), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323949,7 +313421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -323989,48 +313460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89586] = 4, - ACTIONS(3), 1, + [87791] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2908), 1, + STATE(2864), 1, sym_comment, - ACTIONS(1020), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1018), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(984), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324039,41 +313483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89649] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2909), 1, - sym_comment, - ACTIONS(1016), 4, + ACTIONS(986), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1014), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324083,21 +313506,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324106,15 +313518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [89712] = 5, + [87853] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5903), 1, - aux_sym__immediate_decimal_token2, - STATE(2910), 1, + STATE(2865), 1, sym_comment, - ACTIONS(1779), 18, + ACTIONS(980), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -324123,6 +313532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324132,8 +313542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 33, + ACTIONS(982), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324167,18 +313576,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89777] = 5, + [87915] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6017), 1, - aux_sym__immediate_decimal_token2, - STATE(2911), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2866), 1, sym_comment, - ACTIONS(1799), 18, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3133), 1, + sym_cell_path, + ACTIONS(2025), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -324192,8 +313604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 33, + ACTIONS(2027), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324201,8 +313612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -324227,81 +313638,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89842] = 6, + [87985] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6019), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6021), 1, - aux_sym__immediate_decimal_token2, - STATE(2912), 1, - sym_comment, - ACTIONS(1773), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(1771), 47, - anon_sym_LBRACK, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5929), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2867), 1, + sym_comment, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [89909] = 6, + [88053] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6023), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6025), 1, + ACTIONS(5931), 1, aux_sym__immediate_decimal_token2, - STATE(2913), 1, + STATE(2868), 1, sym_comment, - ACTIONS(1771), 17, - anon_sym_DOT_DOT, + ACTIONS(1709), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1711), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [88117] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(5933), 1, + anon_sym_DOT, + ACTIONS(5937), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5939), 1, + aux_sym__immediate_decimal_token5, + STATE(2869), 1, + sym_comment, + STATE(3210), 1, + sym__immediate_decimal, + ACTIONS(5935), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2089), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1583), 34, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [88197] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5941), 1, + sym__newline, + STATE(2870), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1262), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -324314,17 +313849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1773), 33, + aux_sym_unquoted_token1, + ACTIONS(1264), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -324341,6 +313874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324349,33 +313884,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89976] = 5, - ACTIONS(3), 1, + [88261] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5923), 1, - aux_sym__immediate_decimal_token2, - STATE(2914), 1, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2871), 1, sym_comment, - ACTIONS(1781), 4, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3119), 1, + sym_path, + STATE(3135), 1, + sym_cell_path, + ACTIONS(2029), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2031), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1779), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324385,21 +313934,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324408,20 +313946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90041] = 5, + [88331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6027), 1, - aux_sym__immediate_decimal_token2, - STATE(2915), 1, + ACTIONS(5944), 1, + anon_sym_DOT_DOT2, + STATE(2872), 1, sym_comment, - ACTIONS(1801), 4, + ACTIONS(2156), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5946), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1799), 47, + ACTIONS(2150), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324429,7 +313967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -324469,162 +314006,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90106] = 30, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, + [88397] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3435), 1, - aux_sym_unquoted_token1, - ACTIONS(3901), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5948), 1, + anon_sym_RBRACK, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2873), 1, + sym_comment, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6031), 1, - anon_sym_DOLLAR, - ACTIONS(6033), 1, - anon_sym_DOT_DOT, - STATE(2621), 1, - sym__inter_single_quotes, - STATE(2630), 1, - sym__inter_double_quotes, - STATE(2916), 1, - sym_comment, - STATE(6344), 1, - sym__val_number_decimal, - STATE(7700), 1, - sym_unquoted, - STATE(8443), 1, - sym__val_range, - STATE(8468), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(111), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6035), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(6037), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7323), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2695), 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(2697), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [90221] = 6, + [88465] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6039), 1, - anon_sym_DOT, - ACTIONS(6041), 1, - aux_sym__immediate_decimal_token2, - STATE(2917), 1, - sym_comment, - ACTIONS(1781), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(1779), 47, - anon_sym_LBRACK, + ACTIONS(5887), 1, + sym_raw_string_begin, + ACTIONS(5950), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2874), 1, + sym_comment, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [90288] = 5, + [88533] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6043), 1, + ACTIONS(5952), 1, + aux_sym__immediate_decimal_token2, + STATE(2875), 1, + sym_comment, + ACTIONS(1599), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1601), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [88597] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5954), 1, sym__newline, - STATE(2918), 2, + STATE(2876), 2, sym_comment, aux_sym_shebang_repeat1, - ACTIONS(1308), 15, + ACTIONS(1262), 16, anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324638,19 +314211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1310), 35, + aux_sym_unquoted_token1, + ACTIONS(1264), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324666,7 +314238,6 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324675,72 +314246,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90353] = 29, - ACTIONS(251), 1, + [88661] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5859), 1, - anon_sym_DQUOTE, - ACTIONS(5863), 1, + STATE(2877), 1, + sym_comment, + ACTIONS(1719), 4, sym_raw_string_begin, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6001), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1717), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(6003), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6005), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(6011), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(6013), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(6015), 1, - aux_sym_unquoted_token1, - STATE(2825), 1, - sym__inter_single_quotes, - STATE(2826), 1, - sym__inter_double_quotes, - STATE(2919), 1, - sym_comment, - STATE(6119), 1, - sym__val_number_decimal, - STATE(8319), 1, - sym__unquoted_anonymous_prefix, - STATE(8324), 1, - sym__val_range, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5861), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6007), 2, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2871), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(6009), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1844), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2695), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324749,8 +314295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324759,30 +314303,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90466] = 6, + aux_sym__unquoted_in_list_token1, + [88723] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(5884), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5919), 1, + anon_sym_RBRACK, + ACTIONS(5922), 1, sym_raw_string_begin, - STATE(2802), 1, - aux_sym__multiple_types_repeat1, - STATE(2920), 1, + STATE(2878), 1, sym_comment, - ACTIONS(5878), 49, + ACTIONS(5917), 45, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -324800,9 +314348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324820,72 +314365,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90533] = 29, - ACTIONS(251), 1, + [88792] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, - anon_sym_DQUOTE, - ACTIONS(5792), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(2879), 1, + sym_comment, + ACTIONS(2228), 2, sym_raw_string_begin, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(5939), 1, + sym__entry_separator, + ACTIONS(2224), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5941), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5943), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5949), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5951), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5953), 1, - aux_sym_unquoted_token1, - STATE(2736), 1, - sym__inter_single_quotes, - STATE(2737), 1, - sym__inter_double_quotes, - STATE(2921), 1, - sym_comment, - STATE(6339), 1, - sym__val_number_decimal, - STATE(8285), 1, - sym__val_range, - STATE(8287), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5945), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2754), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5947), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1748), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2695), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324894,8 +314415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324904,73 +314423,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90646] = 30, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [88857] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_unquoted_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, + ACTIONS(5957), 1, + anon_sym_QMARK2, + STATE(2880), 1, + sym_comment, + ACTIONS(954), 2, sym_raw_string_begin, - ACTIONS(4315), 1, - anon_sym_DOT_DOT, - ACTIONS(4509), 1, - anon_sym_DOLLAR, - ACTIONS(5915), 1, + sym__entry_separator, + ACTIONS(952), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5919), 1, - sym_val_date, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(2922), 1, - sym_comment, - STATE(6122), 1, - sym__val_number_decimal, - STATE(6921), 1, - sym_unquoted, - STATE(8344), 1, - sym__val_range, - STATE(8413), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4317), 2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5917), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6889), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2695), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324979,8 +314473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324989,72 +314481,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90761] = 29, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [88920] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3901), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(2881), 1, + sym_comment, + ACTIONS(1000), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1004), 45, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5788), 1, - anon_sym_DQUOTE, - ACTIONS(5792), 1, + [88983] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5959), 1, + anon_sym_QMARK2, + STATE(2882), 1, + sym_comment, + ACTIONS(968), 2, sym_raw_string_begin, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(5939), 1, + sym__entry_separator, + ACTIONS(966), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5941), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5943), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5949), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5951), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5953), 1, - aux_sym_unquoted_token1, - STATE(2736), 1, - sym__inter_single_quotes, - STATE(2737), 1, - sym__inter_double_quotes, - STATE(2923), 1, - sym_comment, - STATE(6339), 1, - sym__val_number_decimal, - STATE(8285), 1, - sym__val_range, - STATE(8287), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5945), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2754), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5947), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1753), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2695), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -325063,8 +314589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2697), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325073,17 +314597,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, - [90874] = 5, + aux_sym__unquoted_in_list_token1, + [89046] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6046), 1, - anon_sym_QMARK2, - STATE(2924), 1, + STATE(2883), 1, sym_comment, - ACTIONS(1008), 18, + ACTIONS(1018), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -325099,7 +314621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1010), 33, + ACTIONS(1020), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325133,20 +314655,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, - [90939] = 6, + [89107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6048), 1, - anon_sym_DOT_DOT2, - STATE(2925), 1, + STATE(2884), 1, sym_comment, - ACTIONS(2137), 2, + ACTIONS(960), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(6050), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 46, + ACTIONS(958), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325154,6 +314671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -325176,6 +314694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -325193,20 +314712,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91005] = 8, + [89168] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2926), 1, + ACTIONS(5961), 1, + sym__newline, + STATE(2885), 2, sym_comment, - STATE(3020), 1, + aux_sym_shebang_repeat1, + ACTIONS(1262), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1264), 42, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89231] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(5966), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5968), 1, + aux_sym__immediate_decimal_token5, + STATE(2886), 1, + sym_comment, + STATE(3254), 1, + sym__immediate_decimal, + ACTIONS(5964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2493), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1619), 34, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [89308] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5841), 1, + anon_sym_DOT2, + STATE(2887), 1, + sym_comment, + STATE(2926), 1, aux_sym_cell_path_repeat1, - STATE(3153), 1, + STATE(3119), 1, sym_path, - STATE(3306), 1, - sym_cell_path, - ACTIONS(2049), 14, + ACTIONS(948), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325221,7 +314861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2051), 33, + ACTIONS(950), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325255,20 +314895,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, - [91075] = 8, + [89375] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2927), 1, + ACTIONS(5970), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5972), 1, + aux_sym__immediate_decimal_token2, + STATE(2888), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3252), 1, - sym_cell_path, - ACTIONS(2053), 14, + ACTIONS(1727), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325283,7 +314919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2055), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325317,47 +314954,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91145] = 8, - ACTIONS(251), 1, + [89440] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2928), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(5907), 1, + anon_sym_RBRACK, + ACTIONS(5913), 1, + sym__entry_separator, + ACTIONS(5976), 1, + anon_sym_COMMA, + ACTIONS(5978), 1, + sym_raw_string_begin, + STATE(2889), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3255), 1, - sym_cell_path, - ACTIONS(1941), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1943), 33, - sym_raw_string_begin, + STATE(7267), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5974), 44, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325367,37 +314992,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91215] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2929), 1, - sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3256), 1, - sym_cell_path, - ACTIONS(1871), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -325406,33 +315007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325441,109 +315015,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91285] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [89511] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2930), 1, + STATE(2890), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3263), 1, - sym_cell_path, - ACTIONS(1875), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1877), 33, + ACTIONS(2263), 4, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2261), 46, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + aux_sym_unquoted_token4, + [89572] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(2891), 1, + sym_comment, + ACTIONS(2245), 4, + sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91355] = 8, - ACTIONS(251), 1, + ACTIONS(2241), 45, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [89635] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2931), 1, + STATE(2892), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3291), 1, - sym_cell_path, - ACTIONS(1879), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1881), 33, + ACTIONS(1773), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1771), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325553,10 +315163,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325565,47 +315186,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91425] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [89696] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, + ACTIONS(5980), 1, anon_sym_DOT, - STATE(2932), 1, + ACTIONS(5982), 1, + aux_sym__immediate_decimal_token2, + STATE(2893), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3246), 1, - sym_cell_path, - ACTIONS(1883), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1885), 33, + ACTIONS(1737), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1735), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325615,10 +315223,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325627,47 +315246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91495] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [89761] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2933), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym__unquoted_in_list_token4, + STATE(2894), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3247), 1, - sym_cell_path, - ACTIONS(1887), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1889), 33, + ACTIONS(2245), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2241), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325677,10 +315282,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325689,47 +315305,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91565] = 8, + aux_sym__unquoted_in_list_token1, + [89826] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2934), 1, + STATE(2895), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3249), 1, - sym_cell_path, - ACTIONS(1891), 14, - anon_sym_DOT_DOT, + ACTIONS(984), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(986), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1893), 33, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89887] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2896), 1, + sym_comment, + ACTIONS(1788), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1786), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325739,10 +315395,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325751,145 +315418,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91635] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [89948] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2935), 1, + STATE(2897), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3253), 1, - sym_cell_path, - ACTIONS(1895), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1897), 33, + ACTIONS(2479), 2, sym_raw_string_begin, - anon_sym_LBRACK, + sym__entry_separator, + ACTIONS(2477), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91705] = 8, - ACTIONS(251), 1, + [90009] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2936), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(5887), 1, + sym_raw_string_begin, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, + STATE(2898), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3272), 1, - sym_cell_path, - ACTIONS(1903), 14, - anon_sym_DOT_DOT, + ACTIONS(5881), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1905), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91775] = 8, + [90074] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2937), 1, + ACTIONS(5984), 1, + anon_sym_DOT_DOT2, + STATE(2899), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3308), 1, - sym_cell_path, - ACTIONS(1909), 14, + ACTIONS(5986), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5917), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -325903,7 +315563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1911), 33, + ACTIONS(5922), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325911,8 +315571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -325937,20 +315595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91845] = 8, + [90139] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2938), 1, + STATE(2900), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3237), 1, - sym_cell_path, - ACTIONS(1917), 14, + ACTIONS(1277), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325964,15 +315616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1919), 33, + aux_sym_unquoted_token1, + ACTIONS(1275), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -325991,6 +315642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325999,17 +315652,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, - [91915] = 4, + [90200] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2939), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym__unquoted_in_list_token4, + STATE(2901), 1, sym_comment, - ACTIONS(2084), 4, + ACTIONS(2253), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2082), 47, + ACTIONS(2249), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326017,7 +315672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -326057,17 +315711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91977] = 4, + [90265] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2940), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym__unquoted_in_list_token4, + STATE(2902), 1, sym_comment, - ACTIONS(2088), 4, + ACTIONS(2259), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2086), 47, + ACTIONS(2257), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326075,7 +315731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -326115,21 +315770,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92039] = 8, + [90330] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2941), 1, + STATE(2903), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3250), 1, - sym_cell_path, - ACTIONS(1925), 14, + ACTIONS(1735), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -326143,19 +315793,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1927), 33, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [90391] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2904), 1, + sym_comment, + ACTIONS(964), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(962), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326165,10 +315859,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326177,17 +315883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92109] = 4, + aux_sym__unquoted_in_list_token1, + [90452] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2942), 1, + ACTIONS(1621), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(2905), 1, sym_comment, - ACTIONS(1054), 4, + ACTIONS(2222), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1052), 47, + ACTIONS(2218), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326195,7 +315904,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -326235,22 +315943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92171] = 5, + [90517] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6054), 1, - anon_sym_QMARK2, - STATE(2943), 1, + STATE(2906), 1, sym_comment, - ACTIONS(1008), 7, + ACTIONS(980), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1010), 43, + anon_sym_DOT2, + ACTIONS(982), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -326294,22 +316000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92235] = 5, + [90578] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6056), 1, - anon_sym_QMARK2, - STATE(2944), 1, + ACTIONS(5988), 1, + anon_sym_LBRACK2, + STATE(2907), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(2315), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(992), 43, + ACTIONS(2319), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -326353,21 +316058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92299] = 8, + [90641] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2945), 1, + STATE(2908), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3261), 1, - sym_cell_path, - ACTIONS(1929), 14, + ACTIONS(1727), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -326381,7 +316081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1931), 33, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326389,8 +316089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -326415,21 +316115,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, - [92369] = 4, - ACTIONS(251), 1, + [90702] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2946), 1, + STATE(2909), 1, sym_comment, - ACTIONS(1022), 18, + ACTIONS(2263), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2261), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326438,20 +316162,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1024), 33, + aux_sym__unquoted_in_list_token4, + [90763] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2910), 1, + sym_comment, + ACTIONS(974), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(972), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326461,10 +316204,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326473,47 +316228,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92431] = 8, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [90824] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2947), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + STATE(2911), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3296), 1, - sym_cell_path, - ACTIONS(1933), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1935), 33, + ACTIONS(2216), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2214), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -326523,10 +316264,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -326535,21 +316287,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, - [92501] = 8, + aux_sym__unquoted_in_list_token1, + [90889] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2948), 1, + STATE(2912), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3257), 1, - sym_cell_path, - ACTIONS(1937), 14, + ACTIONS(1771), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -326563,7 +316311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1939), 33, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326571,8 +316319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -326597,15 +316345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92571] = 4, + [90950] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2949), 1, + STATE(2913), 1, sym_comment, - ACTIONS(1018), 18, + ACTIONS(1786), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -326621,7 +316368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1020), 33, + ACTIONS(1788), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326655,15 +316402,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92633] = 4, - ACTIONS(251), 1, + [91011] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2950), 1, + STATE(2914), 1, sym_comment, - ACTIONS(1014), 18, + ACTIONS(978), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(976), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [91072] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5992), 1, + aux_sym__immediate_decimal_token2, + STATE(2915), 1, + sym_comment, + ACTIONS(1623), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [91137] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5994), 1, + anon_sym_DOT_DOT2, + STATE(2916), 1, + sym_comment, + ACTIONS(5996), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 16, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -326679,7 +316545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1016), 33, + ACTIONS(2148), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326687,8 +316553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -326713,253 +316577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92695] = 4, + [91202] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2951), 1, + ACTIONS(5998), 1, + anon_sym_DOT_DOT2, + STATE(2917), 1, sym_comment, - ACTIONS(1000), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1002), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92757] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2952), 1, - sym_comment, - ACTIONS(1004), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1006), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92819] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2953), 1, - sym_comment, - ACTIONS(996), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(998), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92881] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2954), 1, - sym_comment, - ACTIONS(986), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(988), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92943] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2955), 1, - sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3277), 1, - sym_cell_path, - ACTIONS(969), 14, + ACTIONS(6000), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2150), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -326973,7 +316604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(971), 33, + ACTIONS(2156), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326981,8 +316612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -327007,100 +316636,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, - [93013] = 6, - ACTIONS(3), 1, + [91267] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6058), 1, - anon_sym_DOT_DOT2, - STATE(2956), 1, + STATE(2918), 1, sym_comment, - ACTIONS(2078), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(6060), 2, + ACTIONS(1599), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1601), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93079] = 13, + sym_duration_unit, + [91328] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4829), 1, - anon_sym_DOLLAR, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(6062), 1, + ACTIONS(6002), 1, anon_sym_DOT, - ACTIONS(6066), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6068), 1, - aux_sym__immediate_decimal_token5, - STATE(2957), 1, + ACTIONS(6004), 1, + aux_sym__immediate_decimal_token2, + STATE(2919), 1, sym_comment, - STATE(3324), 1, - sym__immediate_decimal, - ACTIONS(6064), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2185), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1599), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 34, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327112,7 +316723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -327125,6 +316739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -327134,37 +316749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [93159] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [91393] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6074), 1, - aux_sym__immediate_decimal_token5, - STATE(2958), 1, + STATE(2920), 1, sym_comment, - STATE(3354), 1, - sym__immediate_decimal, - ACTIONS(6070), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1709), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 35, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1711), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327177,8 +316779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -327200,37 +316806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [93237] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [91454] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6074), 1, - aux_sym__immediate_decimal_token5, - STATE(2959), 1, + STATE(2921), 1, sym_comment, - STATE(3356), 1, - sym__immediate_decimal, - ACTIONS(6070), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1623), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1657), 35, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1625), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -327243,8 +316836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -327266,18 +316863,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [93315] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [91515] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6076), 1, - sym__newline, - STATE(2960), 2, + ACTIONS(6006), 1, + anon_sym_DOT_DOT2, + STATE(2922), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(6008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -327290,69 +316892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1310), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93379] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5987), 1, - anon_sym_DOT, - STATE(2961), 1, - sym_comment, - STATE(2962), 1, - aux_sym_cell_path_repeat1, - STATE(3084), 1, - sym_path, - ACTIONS(984), 2, + aux_sym__unquoted_in_list_token1, + ACTIONS(2164), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(982), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327362,21 +316913,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327385,77 +316925,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93447] = 6, - ACTIONS(3), 1, + [91580] = 12, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_DOT, - STATE(3084), 1, - sym_path, - ACTIONS(977), 2, - sym_raw_string_begin, - sym__entry_separator, - STATE(2962), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(4612), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(5966), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5968), 1, + aux_sym__immediate_decimal_token5, + STATE(2923), 1, + sym_comment, + STATE(3261), 1, + sym__immediate_decimal, + ACTIONS(5964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2489), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1583), 34, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [91657] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5555), 1, + aux_sym_unquoted_token2, + STATE(2924), 1, + sym_comment, + ACTIONS(1653), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1665), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93513] = 4, + [91720] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2963), 1, + ACTIONS(6010), 1, + anon_sym_DOT, + ACTIONS(6012), 1, + aux_sym__immediate_decimal_token2, + STATE(2925), 1, sym_comment, - ACTIONS(1779), 18, + ACTIONS(1735), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -327470,7 +317073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 33, + ACTIONS(1737), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327478,61 +317081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93575] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6084), 1, - anon_sym_RBRACK, - ACTIONS(6086), 1, - anon_sym_DOT_DOT2, - ACTIONS(6090), 1, - sym__entry_separator, - ACTIONS(6092), 1, - sym_raw_string_begin, - STATE(2964), 1, - sym_comment, - ACTIONS(6088), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6082), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327542,21 +317095,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327565,21 +317107,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, - aux_sym__unquoted_in_list_token1, - [93645] = 8, + [91785] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2965), 1, + ACTIONS(6014), 1, + anon_sym_DOT2, + STATE(3119), 1, + sym_path, + STATE(2926), 2, sym_comment, - STATE(3020), 1, aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3266), 1, - sym_cell_path, - ACTIONS(2033), 14, + ACTIONS(941), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327594,7 +317132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2035), 33, + ACTIONS(943), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327628,24 +317166,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, - [93715] = 8, + [91850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(6086), 1, - anon_sym_DOT_DOT2, - ACTIONS(6096), 1, - anon_sym_RBRACK, - ACTIONS(6099), 1, - sym_raw_string_begin, - STATE(2966), 1, + STATE(2927), 1, sym_comment, - ACTIONS(6088), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6094), 45, + ACTIONS(1737), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1735), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -327690,12 +317222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [93785] = 4, + aux_sym__unquoted_in_list_token2, + [91911] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2967), 1, + STATE(2928), 1, sym_comment, - ACTIONS(1799), 18, + ACTIONS(1717), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -327713,8 +317246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 33, + ACTIONS(1719), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -327748,16 +317280,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, - [93847] = 4, + [91972] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(2929), 1, sym_comment, - ACTIONS(1818), 18, + ACTIONS(1277), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -327770,18 +317301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 33, + aux_sym_unquoted_token1, + ACTIONS(1275), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -327798,6 +317327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327806,108 +317337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93909] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6103), 1, - anon_sym_RBRACK, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - STATE(2969), 1, - sym_comment, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6101), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93977] = 5, - ACTIONS(3), 1, + [92033] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6041), 1, - aux_sym__immediate_decimal_token2, - STATE(2970), 1, + STATE(2930), 1, sym_comment, - ACTIONS(1781), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1779), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2170), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327916,41 +317359,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [94041] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6109), 1, - aux_sym__immediate_decimal_token2, - STATE(2971), 1, - sym_comment, - ACTIONS(1801), 3, + ACTIONS(2172), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1799), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327960,21 +317382,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327983,16 +317394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [94105] = 5, + [92094] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5975), 1, - aux_sym__immediate_decimal_token2, - STATE(2972), 1, + STATE(2931), 1, sym_comment, - ACTIONS(1779), 17, + ACTIONS(2174), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -328010,7 +317417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1781), 33, + ACTIONS(2176), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328044,18 +317451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94169] = 5, + [92155] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6111), 1, - sym__newline, - STATE(2973), 2, + ACTIONS(5984), 1, + anon_sym_DOT_DOT2, + STATE(2932), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(5986), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5905), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -328068,15 +317477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1310), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(5915), 31, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -328093,8 +317502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328103,14 +317510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94233] = 5, + [92220] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6114), 1, - aux_sym__immediate_decimal_token2, - STATE(2974), 1, + STATE(2933), 1, sym_comment, - ACTIONS(1799), 17, + ACTIONS(2055), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -328128,7 +317533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1801), 33, + ACTIONS(2057), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328162,19 +317567,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, - [94297] = 7, + [92281] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6116), 1, + ACTIONS(6017), 1, anon_sym_DOT_DOT2, - STATE(2975), 1, + STATE(2934), 1, sym_comment, - ACTIONS(6118), 2, + ACTIONS(6019), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 16, + ACTIONS(2115), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328191,7 +317594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1838), 31, + ACTIONS(2121), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328223,17 +317626,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, - [94365] = 4, + [92346] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2976), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(2935), 1, sym_comment, - ACTIONS(1781), 4, + ACTIONS(1827), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1779), 47, + ACTIONS(1819), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328241,7 +317646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -328281,83 +317685,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94427] = 4, + [92411] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2977), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(2936), 1, sym_comment, - ACTIONS(1765), 4, + ACTIONS(2253), 4, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1763), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94489] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6124), 1, - anon_sym_DASH_DASH, - STATE(3122), 1, - sym_long_flag, - STATE(2978), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(6120), 6, + ACTIONS(2249), 45, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token38, - ACTIONS(6122), 42, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [92474] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(2937), 1, + sym_comment, + ACTIONS(2259), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2257), 45, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -328365,10 +317764,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -328387,29 +317789,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94555] = 4, + [92537] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2979), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + STATE(2938), 1, sym_comment, - ACTIONS(1773), 4, + ACTIONS(1802), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1771), 47, + ACTIONS(1794), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328417,7 +317821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -328457,17 +317860,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94617] = 4, - ACTIONS(3), 1, + [92602] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2980), 1, + STATE(2939), 1, sym_comment, - ACTIONS(1801), 4, - sym_raw_string_begin, + ACTIONS(1723), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1725), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [92663] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2940), 1, + sym_comment, + ACTIONS(1729), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1799), 47, + ACTIONS(1727), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328475,7 +317934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -328515,17 +317973,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94679] = 4, + aux_sym__unquoted_in_list_token2, + [92724] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2941), 1, + sym_comment, + ACTIONS(988), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(990), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92785] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2981), 1, + ACTIONS(6021), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6023), 1, + aux_sym__immediate_decimal_token2, + STATE(2942), 1, sym_comment, - ACTIONS(1820), 4, + ACTIONS(1729), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1818), 47, + ACTIONS(1727), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -328533,7 +318051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -328573,31 +318090,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94741] = 4, - ACTIONS(3), 1, + [92850] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2982), 1, + ACTIONS(6025), 1, + anon_sym_EQ2, + STATE(2943), 1, sym_comment, - ACTIONS(2125), 4, + ACTIONS(4989), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4987), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92913] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2944), 1, + sym_comment, + ACTIONS(972), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(974), 34, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2123), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328607,21 +318192,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328630,22 +318204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94803] = 7, - ACTIONS(3), 1, + [92973] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - ACTIONS(6127), 1, - anon_sym_RBRACK, - STATE(2983), 1, + STATE(2945), 1, sym_comment, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6101), 47, + ACTIONS(2398), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2400), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -328653,13 +318225,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -328678,13 +318247,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -328692,27 +318260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94871] = 6, + [93033] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6129), 1, - sym_long_flag_identifier, - ACTIONS(6131), 1, - anon_sym_EQ2, - STATE(2984), 1, + STATE(2946), 1, sym_comment, - ACTIONS(5010), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5012), 40, + ACTIONS(2029), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2031), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -328720,13 +318281,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -328745,33 +318303,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - [94937] = 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93093] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6133), 1, - anon_sym_DOT_DOT2, - STATE(2985), 1, - sym_comment, - ACTIONS(2096), 2, - sym_raw_string_begin, + ACTIONS(6029), 1, + anon_sym_RBRACE, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(6135), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 46, + ACTIONS(6033), 1, + sym_raw_string_begin, + STATE(2947), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -328811,19 +318374,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95003] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [93159] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2355), 1, - sym_raw_string_begin, - ACTIONS(6137), 1, - sym__entry_separator, - STATE(2986), 2, + STATE(2948), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2350), 48, + ACTIONS(2402), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2404), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -328831,13 +318396,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -328856,96 +318418,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95067] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6140), 1, - anon_sym_DOT_DOT2, - STATE(2987), 1, - sym_comment, - ACTIONS(2104), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(6142), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95133] = 7, - ACTIONS(3), 1, + [93219] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - ACTIONS(6144), 1, - anon_sym_RBRACK, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(2988), 1, + STATE(2949), 1, sym_comment, - ACTIONS(6101), 47, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(978), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -328953,13 +318452,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -328978,13 +318474,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -328992,46 +318487,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95201] = 7, - ACTIONS(251), 1, + [93279] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6146), 1, - anon_sym_DOT_DOT2, - STATE(2989), 1, - sym_comment, - ACTIONS(6148), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1848), 31, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, + ACTIONS(6035), 1, + anon_sym_RBRACE, + STATE(2950), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -329041,10 +318522,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329053,21 +318545,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95269] = 7, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [93345] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - ACTIONS(6150), 1, - anon_sym_RBRACK, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(2990), 1, + ACTIONS(6004), 1, + aux_sym__immediate_decimal_token2, + STATE(2951), 1, + sym_comment, + ACTIONS(1599), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93407] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6037), 1, + aux_sym__immediate_decimal_token2, + STATE(2952), 1, + sym_comment, + ACTIONS(1709), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93469] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2953), 1, sym_comment, - ACTIONS(6101), 47, + ACTIONS(972), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(974), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -329075,13 +318681,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -329100,13 +318703,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -329114,21 +318716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95337] = 7, - ACTIONS(3), 1, + [93529] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - ACTIONS(6152), 1, - anon_sym_RBRACK, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(2991), 1, + STATE(2954), 1, sym_comment, - ACTIONS(6101), 47, + ACTIONS(1945), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1947), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -329136,13 +318737,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -329161,13 +318759,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -329175,21 +318772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95405] = 7, - ACTIONS(3), 1, + [93589] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - ACTIONS(6154), 1, - anon_sym_RBRACK, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(2992), 1, + STATE(2955), 1, sym_comment, - ACTIONS(6101), 47, + ACTIONS(2413), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2415), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -329197,13 +318793,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -329222,13 +318815,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -329236,25 +318828,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95473] = 8, - ACTIONS(251), 1, + [93649] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2993), 1, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, + sym_raw_string_begin, + ACTIONS(6039), 1, + anon_sym_RBRACE, + STATE(2956), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3285), 1, - sym_cell_path, - ACTIONS(5989), 14, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329263,20 +318878,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5994), 33, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [93715] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, + ACTIONS(6041), 1, + anon_sym_RBRACE, + STATE(2957), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -329286,10 +318922,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329298,20 +318945,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, - [95543] = 8, + aux_sym_unquoted_token1, + [93781] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(2994), 1, + ACTIONS(6012), 1, + aux_sym__immediate_decimal_token2, + STATE(2958), 1, sym_comment, - STATE(3020), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - STATE(3290), 1, - sym_cell_path, - ACTIONS(6158), 14, + ACTIONS(1735), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329326,7 +318968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6156), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329360,140 +319003,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95613] = 7, - ACTIONS(3), 1, + [93843] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - ACTIONS(6160), 1, - anon_sym_RBRACK, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(2995), 1, + ACTIONS(6043), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6045), 1, + aux_sym__immediate_decimal_token2, + STATE(2959), 1, sym_comment, - ACTIONS(6101), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95681] = 7, + ACTIONS(1623), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [93907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, + STATE(2960), 1, + sym_comment, + ACTIONS(990), 2, sym_raw_string_begin, - ACTIONS(6162), 1, + sym__entry_separator, + ACTIONS(988), 47, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(2996), 1, - sym_comment, - ACTIONS(6101), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95749] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2997), 1, - sym_comment, - ACTIONS(1304), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329502,20 +319108,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1302), 36, + [93967] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, - sym__newline, + ACTIONS(6047), 1, + anon_sym_RBRACE, + STATE(2961), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - 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, @@ -329525,13 +319152,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329540,43 +319175,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95811] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [94033] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2998), 1, - sym_comment, - ACTIONS(1771), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 33, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, + ACTIONS(6049), 1, + anon_sym_RBRACE, + STATE(2962), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -329586,10 +319211,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329598,24 +319234,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, - [95873] = 4, + aux_sym_unquoted_token1, + [94099] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2999), 1, - sym_comment, - ACTIONS(988), 2, - sym_raw_string_begin, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(986), 48, + ACTIONS(6033), 1, + sym_raw_string_begin, + ACTIONS(6051), 1, + anon_sym_RBRACE, + STATE(2963), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -329654,21 +319293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95934] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [94165] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(3000), 1, + STATE(2964), 1, sym_comment, - ACTIONS(1036), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1034), 45, + ACTIONS(2370), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2372), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -329676,13 +319315,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -329701,11 +319337,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -329713,138 +319347,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [95997] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6164), 1, - anon_sym_DOT, - ACTIONS(6166), 1, - aux_sym__immediate_decimal_token2, - STATE(3001), 1, - sym_comment, - ACTIONS(1779), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96062] = 4, - ACTIONS(3), 1, + [94225] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3002), 1, + STATE(2965), 1, sym_comment, - ACTIONS(1781), 3, + ACTIONS(958), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(960), 43, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1779), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [96123] = 4, + [94285] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3003), 1, - sym_comment, - ACTIONS(2244), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(2242), 47, + ACTIONS(6033), 1, + sym_raw_string_begin, + ACTIONS(6053), 1, + anon_sym_RBRACE, + STATE(2966), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329884,30 +319464,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [96184] = 9, + aux_sym_unquoted_token1, + [94351] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - ACTIONS(6084), 1, - anon_sym_RBRACK, - ACTIONS(6090), 1, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(6170), 1, - anon_sym_COMMA, - ACTIONS(6172), 1, + ACTIONS(6033), 1, sym_raw_string_begin, - STATE(3004), 1, + ACTIONS(6055), 1, + anon_sym_RBRACE, + STATE(2967), 1, sym_comment, - STATE(8043), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6168), 44, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -329947,78 +319523,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96255] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [94417] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3005), 1, + ACTIONS(6057), 1, + anon_sym_DOT, + ACTIONS(6059), 1, + aux_sym__immediate_decimal_token2, + STATE(2968), 1, sym_comment, - ACTIONS(1773), 3, - sym_raw_string_begin, + ACTIONS(1599), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1771), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [96316] = 4, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, + [94481] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3006), 1, + STATE(2969), 1, sym_comment, - ACTIONS(1022), 7, + ACTIONS(4985), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 43, + ACTIONS(4983), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -330062,73 +319638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96377] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3007), 1, - sym_comment, - ACTIONS(1801), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1799), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [96438] = 4, + [94541] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3008), 1, + ACTIONS(5982), 1, + aux_sym__immediate_decimal_token2, + STATE(2970), 1, sym_comment, - ACTIONS(1820), 3, + ACTIONS(1737), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1818), 47, + ACTIONS(1735), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330175,17 +319695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [96499] = 4, + [94603] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3009), 1, + ACTIONS(6061), 1, + aux_sym__immediate_decimal_token2, + STATE(2971), 1, sym_comment, - ACTIONS(1779), 17, + ACTIONS(1771), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -330199,7 +319717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1781), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330207,8 +319726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -330233,19 +319752,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, - [96560] = 6, + [94665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(3010), 1, + ACTIONS(6063), 1, + aux_sym__immediate_decimal_token2, + STATE(2972), 1, sym_comment, - ACTIONS(2270), 2, + ACTIONS(1773), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2266), 46, + ACTIONS(1771), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330292,19 +319809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96625] = 6, + [94727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym__unquoted_in_list_token2, - STATE(3011), 1, + STATE(2973), 1, sym_comment, - ACTIONS(2230), 2, + ACTIONS(986), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2226), 46, + ACTIONS(984), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330334,6 +319847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330351,42 +319865,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [96690] = 4, - ACTIONS(251), 1, + [94787] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3012), 1, - sym_comment, - ACTIONS(1771), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1773), 33, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, + ACTIONS(6065), 1, + anon_sym_RBRACE, + STATE(2974), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330396,10 +319900,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330408,42 +319923,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96751] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [94853] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3013), 1, - sym_comment, - ACTIONS(1763), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1765), 33, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, + ACTIONS(6067), 1, + anon_sym_RBRACE, + STATE(2975), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330453,10 +319959,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330465,42 +319982,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96812] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [94919] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3014), 1, + STATE(2976), 1, sym_comment, - ACTIONS(1799), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1801), 33, + ACTIONS(982), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(980), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330510,10 +320014,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330522,73 +320038,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96873] = 4, + aux_sym__unquoted_in_list_token1, + [94979] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(2977), 1, sym_comment, - ACTIONS(1818), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1820), 33, + ACTIONS(1957), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1959), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96934] = 4, + [95039] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3016), 1, + ACTIONS(6069), 1, + anon_sym_DOT, + ACTIONS(6071), 1, + aux_sym__immediate_decimal_token2, + STATE(2978), 1, sym_comment, - ACTIONS(2123), 17, + ACTIONS(1735), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -330602,7 +320119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2125), 33, + ACTIONS(1737), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330610,8 +320127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -330636,16 +320153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96995] = 4, - ACTIONS(3), 1, + [95103] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3017), 1, + STATE(2979), 1, sym_comment, - ACTIONS(2502), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2500), 48, + ACTIONS(2421), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2423), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -330653,13 +320174,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -330678,14 +320196,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95163] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2980), 1, + sym_comment, + ACTIONS(5027), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, + ACTIONS(5025), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -330693,19 +320265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97056] = 6, + [95223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(5532), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(3018), 1, + STATE(2981), 1, sym_comment, - ACTIONS(1838), 2, + ACTIONS(1665), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1830), 46, + ACTIONS(1653), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -330752,40 +320322,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97121] = 4, + [95285] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3019), 1, + STATE(2982), 1, sym_comment, - ACTIONS(1304), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(5031), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5029), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1302), 34, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95345] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2983), 1, + sym_comment, + ACTIONS(6075), 3, sym_raw_string_begin, - sym__newline, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6073), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -330795,12 +320410,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330809,23 +320433,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97182] = 7, + aux_sym__unquoted_in_list_token1, + [95405] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6052), 1, - anon_sym_DOT, - STATE(3020), 1, + ACTIONS(6077), 1, + anon_sym_QMARK2, + STATE(2984), 1, sym_comment, - STATE(3024), 1, - aux_sym_cell_path_repeat1, - STATE(3153), 1, - sym_path, - ACTIONS(982), 14, + ACTIONS(952), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330835,7 +320457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(984), 33, + ACTIONS(954), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330869,85 +320491,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, - [97249] = 12, + [95467] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - ACTIONS(6176), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6178), 1, - aux_sym__immediate_decimal_token5, - STATE(3021), 1, + STATE(2985), 1, sym_comment, - STATE(3380), 1, - sym__immediate_decimal, - ACTIONS(6174), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2611), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1579), 34, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [97326] = 4, + ACTIONS(2378), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2380), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95527] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(2986), 1, + sym_comment, + ACTIONS(1989), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1991), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95587] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2987), 1, + sym_comment, + ACTIONS(1997), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1999), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [95647] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6079), 1, + anon_sym_QMARK2, + STATE(2988), 1, sym_comment, - ACTIONS(2082), 17, + ACTIONS(966), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330957,7 +320682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2084), 33, + ACTIONS(968), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330965,8 +320690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -330991,258 +320716,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97387] = 8, - ACTIONS(3), 1, + [95709] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(6096), 1, - anon_sym_RBRACK, - ACTIONS(6099), 1, - sym_raw_string_begin, - STATE(3023), 1, + STATE(2989), 1, sym_comment, - ACTIONS(6094), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97456] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6180), 1, - anon_sym_DOT, - STATE(3153), 1, - sym_path, - STATE(3024), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(977), 33, + ACTIONS(2001), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2003), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97521] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6183), 1, - anon_sym_DOT, - ACTIONS(6185), 1, - aux_sym__immediate_decimal_token2, - STATE(3025), 1, - sym_comment, - ACTIONS(1669), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [97586] = 6, + [95769] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6187), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6189), 1, - aux_sym__immediate_decimal_token2, - STATE(3026), 1, - sym_comment, - ACTIONS(1661), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1663), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [97651] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(3027), 1, + STATE(2990), 1, sym_comment, - ACTIONS(2258), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2254), 45, + ACTIONS(5039), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5037), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -331250,13 +320793,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -331275,11 +320815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -331287,20 +320825,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [97714] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3028), 1, - sym_comment, - ACTIONS(2274), 4, - sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2272), 45, + [95829] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2991), 1, + sym_comment, + ACTIONS(5043), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5041), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -331308,13 +320849,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -331333,11 +320871,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -331345,143 +320881,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [97777] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - ACTIONS(6176), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6178), 1, - aux_sym__immediate_decimal_token5, - STATE(3029), 1, - sym_comment, - STATE(3382), 1, - sym__immediate_decimal, - ACTIONS(6174), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2655), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1657), 34, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [97854] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6191), 1, - anon_sym_QMARK2, - STATE(3030), 1, - sym_comment, - ACTIONS(1010), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1008), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97917] = 5, - ACTIONS(3), 1, + [95889] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3031), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2238), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2234), 45, + ACTIONS(2342), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2344), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -331489,13 +320905,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -331514,11 +320927,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -331526,134 +320937,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [97980] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3032), 1, - sym_comment, - ACTIONS(2086), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2088), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98041] = 5, - ACTIONS(3), 1, + [95949] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6193), 1, - anon_sym_QMARK2, - STATE(3033), 1, + STATE(2993), 1, sym_comment, - ACTIONS(992), 2, + ACTIONS(2382), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2384), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(990), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98104] = 6, - ACTIONS(3), 1, + [96009] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(6107), 1, - sym_raw_string_begin, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, - STATE(3034), 1, + STATE(2994), 1, sym_comment, - ACTIONS(6101), 47, + ACTIONS(2013), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2015), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -331661,13 +321017,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -331686,13 +321039,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -331700,73 +321052,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98169] = 6, - ACTIONS(3), 1, + [96069] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6195), 1, - anon_sym_DOT, - ACTIONS(6197), 1, - aux_sym__immediate_decimal_token2, - STATE(3035), 1, + STATE(2995), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(2485), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2487), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1779), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98234] = 4, + [96129] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3036), 1, + ACTIONS(6081), 1, + sym__newline, + STATE(2996), 2, sym_comment, - ACTIONS(1304), 16, + aux_sym_shebang_repeat1, + ACTIONS(1262), 15, anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331780,14 +321131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1302), 34, + aux_sym__unquoted_in_record_token1, + ACTIONS(1264), 32, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -331816,22 +321165,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, - [98295] = 5, + [96191] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6199), 1, - sym__newline, - STATE(3037), 2, + STATE(2997), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 6, + ACTIONS(2386), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1310), 42, + ACTIONS(2388), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -331867,6 +321213,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -331874,197 +321221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98358] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - STATE(3038), 1, - sym_comment, - ACTIONS(2294), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2292), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98423] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym__unquoted_in_list_token4, - STATE(3039), 1, - sym_comment, - ACTIONS(2258), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2254), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98488] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - STATE(3040), 1, - sym_comment, - ACTIONS(1848), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1840), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98553] = 4, + [96251] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3041), 1, + STATE(2998), 1, sym_comment, - ACTIONS(1018), 7, + ACTIONS(2390), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1020), 43, + ACTIONS(2392), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -332108,77 +321277,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98614] = 6, + [96311] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_DOT_DOT2, - STATE(3042), 1, - sym_comment, - ACTIONS(6204), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2137), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98679] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3043), 1, + STATE(2999), 1, sym_comment, - ACTIONS(2244), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2242), 46, + ACTIONS(2417), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2419), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -332186,13 +321298,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -332211,11 +321320,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -332223,22 +321330,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [98740] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96371] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6206), 1, - anon_sym_LBRACK2, - STATE(3044), 1, + STATE(3000), 1, sym_comment, - ACTIONS(2304), 6, + ACTIONS(2338), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2308), 43, + ACTIONS(2340), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -332282,25 +321389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98803] = 6, + [96431] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym__unquoted_in_list_token4, - STATE(3045), 1, - sym_comment, - ACTIONS(2274), 2, - sym_raw_string_begin, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(2272), 46, + ACTIONS(6033), 1, + sym_raw_string_begin, + ACTIONS(6084), 1, + anon_sym_RBRACE, + STATE(3001), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6027), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -332340,80 +321447,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98868] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [96497] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym__unquoted_in_list_token4, - STATE(3046), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(2338), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2340), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2234), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98933] = 4, + [96557] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3047), 1, + STATE(3003), 1, sym_comment, - ACTIONS(1014), 7, + ACTIONS(2017), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1016), 43, + ACTIONS(2019), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -332457,198 +321560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98994] = 6, + [96617] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6208), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6210), 1, - aux_sym__immediate_decimal_token2, - STATE(3048), 1, + STATE(3004), 1, sym_comment, - ACTIONS(1771), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99059] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6212), 1, - anon_sym_DOT_DOT2, - STATE(3049), 1, - sym_comment, - ACTIONS(6214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6082), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6092), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99124] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6212), 1, - anon_sym_DOT_DOT2, - STATE(3050), 1, - sym_comment, - ACTIONS(6214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6094), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6099), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99189] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6216), 1, - anon_sym_EQ2, - STATE(3051), 1, - sym_comment, - ACTIONS(5132), 6, + ACTIONS(2025), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5130), 43, + ACTIONS(2027), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -332692,161 +321616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99252] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3052), 1, - sym_comment, - ACTIONS(1002), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1000), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [99313] = 5, + [96677] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5774), 1, - aux_sym_unquoted_token2, - STATE(3053), 1, - sym_comment, - ACTIONS(1687), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1699), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [99376] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3054), 1, + STATE(3005), 1, sym_comment, - ACTIONS(1006), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1004), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(958), 15, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332855,39 +321636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99437] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3055), 1, - sym_comment, - ACTIONS(998), 2, + ACTIONS(960), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(996), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -332897,21 +321660,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332920,25 +321672,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, - aux_sym__unquoted_in_list_token1, - [99498] = 6, + [96737] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6218), 1, - anon_sym_DOT_DOT2, - STATE(3056), 1, + STATE(3006), 1, sym_comment, - ACTIONS(6220), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 16, + ACTIONS(976), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332948,7 +321693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2078), 31, + ACTIONS(978), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332956,6 +321701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -332980,42 +321728,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99563] = 4, - ACTIONS(251), 1, + [96797] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3057), 1, + STATE(3007), 1, sym_comment, - ACTIONS(1052), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1054), 33, + ACTIONS(6088), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6086), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -333025,36 +321760,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99624] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6222), 1, - anon_sym_DOT_DOT2, - STATE(3058), 1, - sym_comment, - ACTIONS(6224), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333063,31 +321775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2096), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333096,24 +321783,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, - [99689] = 6, + aux_sym__unquoted_in_list_token1, + [96857] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_DOT_DOT2, - STATE(3059), 1, + STATE(3008), 1, sym_comment, - ACTIONS(6228), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 16, + ACTIONS(962), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333123,7 +321805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2104), 31, + ACTIONS(964), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333131,6 +321813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -333155,19 +321840,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, - [99754] = 6, + [96917] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6230), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6232), 1, - aux_sym__immediate_decimal_token2, - STATE(3060), 1, + ACTIONS(6090), 1, + anon_sym_LBRACK2, + STATE(3009), 1, sym_comment, - ACTIONS(1773), 2, + ACTIONS(2319), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1771), 46, + ACTIONS(2315), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -333214,19 +321897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99819] = 4, + [96979] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3061), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2403), 6, + ACTIONS(2366), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2405), 43, + ACTIONS(2368), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333270,19 +321953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99879] = 4, + [97039] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3062), 1, + STATE(3011), 1, sym_comment, - ACTIONS(1941), 6, + ACTIONS(2354), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1943), 43, + ACTIONS(2356), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333326,19 +322009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99939] = 4, + [97099] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2504), 6, + ACTIONS(2441), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2506), 43, + ACTIONS(2443), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333382,19 +322065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [99999] = 4, + [97159] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3064), 1, + STATE(3013), 1, sym_comment, - ACTIONS(1933), 6, + ACTIONS(2425), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1935), 43, + ACTIONS(2427), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333438,19 +322121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100059] = 4, + [97219] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3065), 1, + STATE(3014), 1, sym_comment, - ACTIONS(2371), 6, + ACTIONS(2346), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2373), 43, + ACTIONS(2348), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333494,19 +322177,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100119] = 4, + [97279] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3066), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + ACTIONS(6092), 1, + anon_sym_DOT_DOT2, + ACTIONS(6096), 1, + sym_filesize_unit, + ACTIONS(6098), 1, + sym_duration_unit, + STATE(3015), 1, + sym_comment, + STATE(7290), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6094), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1665), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [97353] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3016), 1, sym_comment, - ACTIONS(2375), 6, + ACTIONS(2350), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2377), 43, + ACTIONS(2352), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333550,19 +322296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100179] = 4, + [97413] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3067), 1, + STATE(3017), 1, sym_comment, - ACTIONS(986), 6, + ACTIONS(1004), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(988), 43, + ACTIONS(1000), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333606,42 +322352,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100239] = 5, + [97473] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6234), 1, - anon_sym_QMARK2, - STATE(3068), 1, + STATE(3018), 1, sym_comment, - ACTIONS(1008), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(2334), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2336), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1010), 33, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97533] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3019), 1, + sym_comment, + ACTIONS(1018), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1020), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97593] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3020), 1, + sym_comment, + ACTIONS(962), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(964), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97653] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2332), 1, sym_raw_string_begin, + ACTIONS(6100), 1, + sym__entry_separator, + STATE(3021), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2327), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -333651,10 +322553,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333663,16 +322576,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, - [100301] = 5, + aux_sym_unquoted_token1, + [97715] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6236), 1, - anon_sym_QMARK2, - STATE(3069), 1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6105), 1, + aux_sym__immediate_decimal_token2, + STATE(3022), 1, sym_comment, - ACTIONS(990), 15, + ACTIONS(1727), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -333686,7 +322601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(992), 33, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -333720,76 +322635,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100363] = 5, - ACTIONS(3), 1, + [97779] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6238), 1, - anon_sym_LBRACK2, - STATE(3070), 1, + STATE(3023), 1, sym_comment, - ACTIONS(2308), 2, + ACTIONS(1653), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1665), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2304), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100425] = 4, + [97839] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3071), 1, + STATE(3024), 1, sym_comment, - ACTIONS(1937), 6, + ACTIONS(6107), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1939), 43, + ACTIONS(6109), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333833,19 +322747,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100485] = 4, + [97899] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3072), 1, + ACTIONS(5952), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6111), 1, + anon_sym_DOT, + STATE(3025), 1, + sym_comment, + ACTIONS(1599), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(1601), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [97963] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3026), 1, sym_comment, - ACTIONS(2379), 6, + ACTIONS(1977), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2381), 43, + ACTIONS(1979), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333889,19 +322861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100545] = 4, + [98023] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2383), 6, + ACTIONS(2374), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2385), 43, + ACTIONS(2376), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -333945,19 +322917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100605] = 4, + [98083] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3074), 1, + STATE(3028), 1, sym_comment, - ACTIONS(1687), 6, + ACTIONS(4942), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1699), 43, + ACTIONS(4940), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -334001,19 +322973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100665] = 4, + [98143] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3075), 1, + STATE(3029), 1, sym_comment, - ACTIONS(2387), 6, + ACTIONS(1277), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2389), 43, + ACTIONS(1275), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -334049,7 +323021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -334057,19 +323029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100725] = 4, + [98203] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3076), 1, + STATE(3030), 1, sym_comment, - ACTIONS(5126), 6, + ACTIONS(2394), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5124), 43, + ACTIONS(2396), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -334113,153 +323085,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100785] = 4, + [98263] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3077), 1, + STATE(3031), 1, sym_comment, - ACTIONS(1000), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1002), 34, + ACTIONS(2358), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2360), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [100845] = 4, + [98323] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3032), 1, sym_comment, - ACTIONS(1004), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1006), 34, + ACTIONS(2362), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2364), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [100905] = 4, + [98383] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3033), 1, sym_comment, - ACTIONS(996), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(2406), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2408), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(998), 34, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98443] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3034), 1, + sym_comment, + ACTIONS(2176), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2174), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -334269,10 +323284,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -334281,41 +323307,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100965] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [98502] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3080), 1, + ACTIONS(2255), 1, + aux_sym__unquoted_in_list_token4, + STATE(3035), 1, sym_comment, - ACTIONS(986), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(988), 34, + ACTIONS(2253), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 38, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -334325,10 +323343,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -334337,25 +323363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101025] = 7, + aux_sym__unquoted_in_list_token1, + [98563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6242), 1, - anon_sym_RBRACE, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - STATE(3081), 1, + ACTIONS(2255), 1, + aux_sym__unquoted_in_list_token4, + STATE(3036), 1, sym_comment, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6240), 45, + ACTIONS(2259), 9, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym__, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2257), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334376,9 +323403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334395,82 +323419,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101091] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [98624] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3037), 1, sym_comment, - ACTIONS(5138), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5136), 43, + ACTIONS(2451), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101151] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6248), 1, - anon_sym_RBRACE, - STATE(3083), 1, - sym_comment, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6240), 45, + ACTIONS(2449), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334510,16 +323474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101217] = 4, + aux_sym__unquoted_in_list_token1, + [98683] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3038), 1, sym_comment, - ACTIONS(1024), 2, + ACTIONS(2455), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1022), 47, + ACTIONS(2453), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -334527,7 +323491,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -334567,15 +323530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101277] = 4, + [98742] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3039), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(2459), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1018), 47, + ACTIONS(2457), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -334583,7 +323546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -334623,15 +323585,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101337] = 4, + [98801] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3040), 1, + sym_comment, + ACTIONS(1709), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3041), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(964), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1014), 47, + ACTIONS(962), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -334639,7 +323656,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -334679,79 +323695,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101397] = 4, + [98919] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3042), 1, sym_comment, - ACTIONS(1957), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1959), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101457] = 5, + ACTIONS(1723), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1725), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [98978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2355), 1, + STATE(3043), 1, + sym_comment, + ACTIONS(2463), 2, sym_raw_string_begin, - ACTIONS(6250), 1, sym__entry_separator, - STATE(3088), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2350), 46, + ACTIONS(2461), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -334791,155 +323804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101519] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3089), 1, - sym_comment, - ACTIONS(5230), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5228), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101579] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3090), 1, - sym_comment, - ACTIONS(5234), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5232), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101639] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [99037] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6166), 1, - aux_sym__immediate_decimal_token2, - STATE(3091), 1, + STATE(3044), 1, sym_comment, - ACTIONS(1779), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 33, + ACTIONS(2263), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2261), 39, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -334949,31 +323838,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [101701] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6253), 1, - aux_sym__immediate_decimal_token2, - STATE(3092), 1, - sym_comment, - ACTIONS(1799), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -334982,21 +323850,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 33, + aux_sym__unquoted_in_list_token4, + [99096] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3045), 1, + sym_comment, + ACTIONS(2164), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2158), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -335006,10 +323891,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -335018,249 +323914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101763] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3093), 1, - sym_comment, - ACTIONS(1034), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1036), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101823] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3094), 1, - sym_comment, - ACTIONS(2520), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2522), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101883] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3095), 1, - sym_comment, - ACTIONS(2458), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2460), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101943] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [99155] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3046), 1, sym_comment, - ACTIONS(2466), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2468), 43, + ACTIONS(2356), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102003] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6244), 1, sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6255), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3097), 1, - sym_comment, - ACTIONS(6240), 45, + ACTIONS(2354), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -335300,129 +323969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [102069] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3098), 1, - sym_comment, - ACTIONS(2482), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2484), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102129] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3099), 1, - sym_comment, - ACTIONS(2399), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2401), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102189] = 4, + aux_sym__unquoted_in_list_token1, + [99214] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3100), 1, + STATE(3047), 1, sym_comment, - ACTIONS(6259), 3, + ACTIONS(2148), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6257), 46, + ACTIONS(2142), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -335469,72 +324025,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102249] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3101), 1, - sym_comment, - ACTIONS(5222), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5220), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102309] = 6, + [99273] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6263), 1, - aux_sym__immediate_decimal_token2, - STATE(3102), 1, + ACTIONS(1621), 1, + aux_sym__unquoted_in_list_token2, + STATE(3048), 1, sym_comment, - ACTIONS(1771), 14, + ACTIONS(2218), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -335549,7 +324047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1773), 33, + ACTIONS(2222), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -335583,33 +324081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102373] = 11, + [99334] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(6265), 1, - anon_sym_DOT_DOT2, - ACTIONS(6269), 1, - sym_filesize_unit, - ACTIONS(6271), 1, - sym_duration_unit, - STATE(3103), 1, + ACTIONS(6059), 1, + aux_sym__immediate_decimal_token2, + STATE(3049), 1, sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6267), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, + ACTIONS(1599), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 36, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 39, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335621,10 +324110,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335637,6 +324124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -335646,25 +324134,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [102447] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99395] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6273), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3104), 1, + STATE(3050), 1, sym_comment, - ACTIONS(6240), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(1735), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [99454] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3051), 1, + sym_comment, + ACTIONS(2121), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2115), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -335704,15 +324246,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [102513] = 5, + aux_sym__unquoted_in_list_token1, + [99513] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6185), 1, - aux_sym__immediate_decimal_token2, - STATE(3105), 1, + ACTIONS(6113), 1, + anon_sym_LBRACK2, + STATE(3052), 1, + sym_comment, + ACTIONS(2315), 15, + anon_sym_LBRACK, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2319), 32, + sym_raw_string_begin, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [99574] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + ACTIONS(6115), 1, + anon_sym_DOT_DOT2, + ACTIONS(6119), 1, + sym_filesize_unit, + ACTIONS(6121), 1, + sym_duration_unit, + STATE(3053), 1, + sym_comment, + STATE(7360), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6117), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1665), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [99647] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3054), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(1599), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -335721,7 +324379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 40, + ACTIONS(1601), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335762,17 +324420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [102575] = 5, + [99706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6197), 1, - aux_sym__immediate_decimal_token2, - STATE(3106), 1, + STATE(3055), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(1979), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1779), 46, + ACTIONS(1977), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -335819,79 +324475,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102637] = 4, - ACTIONS(251), 1, + [99765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3056), 1, sym_comment, - ACTIONS(1000), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1002), 43, + ACTIONS(2372), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2370), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99824] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3057), 1, + sym_comment, + ACTIONS(2469), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2467), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99883] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3058), 1, + sym_comment, + ACTIONS(2473), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2471), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99942] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + STATE(3059), 1, + sym_comment, + ACTIONS(2214), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2216), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100003] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + aux_sym__unquoted_in_list_token4, + STATE(3060), 1, + sym_comment, + ACTIONS(5922), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102697] = 5, + ACTIONS(5917), 38, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100064] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6275), 1, + ACTIONS(6123), 1, + anon_sym_DOT, + ACTIONS(6125), 1, aux_sym__immediate_decimal_token2, - STATE(3108), 1, + STATE(3061), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(1735), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1713), 40, + ACTIONS(1737), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335931,73 +324809,178 @@ 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, - [102759] = 4, + [100127] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3109), 1, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + STATE(3062), 1, sym_comment, - ACTIONS(996), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(998), 43, + ACTIONS(1794), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1802), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3063), 1, + sym_comment, + ACTIONS(2376), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2374), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100247] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3064), 1, + sym_comment, + ACTIONS(960), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(958), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102819] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100306] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6277), 1, - anon_sym_DOT, - ACTIONS(6279), 1, - aux_sym__immediate_decimal_token2, - STATE(3110), 1, + STATE(3065), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(1623), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -336006,8 +324989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 39, - ts_builtin_sym_end, + ACTIONS(1625), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336019,8 +325001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336046,16 +325030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [102883] = 6, + [100365] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6281), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6283), 1, + ACTIONS(6127), 1, aux_sym__immediate_decimal_token2, - STATE(3111), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1661), 8, + ACTIONS(1709), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -336064,7 +325046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1663), 39, + ACTIONS(1711), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336104,72 +325086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [102947] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3112), 1, - sym_comment, - ACTIONS(5226), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5224), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103007] = 5, + [100426] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6285), 1, - sym__newline, - STATE(3113), 2, + STATE(3067), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 15, - anon_sym_DOLLAR, + ACTIONS(1727), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -336183,11 +325105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_record_token1, - ACTIONS(1310), 32, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -336207,8 +325133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -336217,184 +325141,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103069] = 4, - ACTIONS(251), 1, + [100485] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3068), 1, sym_comment, - ACTIONS(1052), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1054), 43, + ACTIONS(2380), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2378), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103129] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3069), 1, sym_comment, - ACTIONS(1949), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1951), 43, + ACTIONS(1991), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1989), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103189] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100603] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3116), 1, - sym_comment, - ACTIONS(2454), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2456), 43, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6033), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + STATE(3070), 1, + sym_comment, + ACTIONS(6027), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103249] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [100666] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6288), 1, - anon_sym_DOT, - ACTIONS(6290), 1, - aux_sym__immediate_decimal_token2, - STATE(3117), 1, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(3071), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(2224), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -336409,7 +325330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1781), 33, + ACTIONS(2228), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -336443,417 +325364,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103313] = 4, - ACTIONS(251), 1, + [100727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2470), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2472), 43, + ACTIONS(2172), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2170), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103373] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100786] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3119), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2508), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2510), 43, + ACTIONS(1999), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1997), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103433] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100845] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3120), 1, + STATE(3074), 1, sym_comment, - ACTIONS(1883), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1885), 43, + ACTIONS(2003), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2001), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103493] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100904] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3075), 1, sym_comment, - ACTIONS(1004), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1006), 43, + ACTIONS(2384), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2382), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103553] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [100963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3076), 1, sym_comment, - ACTIONS(6292), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(6294), 43, + ACTIONS(2431), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2429), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103613] = 4, - ACTIONS(251), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [101022] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, - sym_comment, - ACTIONS(2462), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2464), 43, + ACTIONS(1947), 1, + sym__entry_separator, + ACTIONS(6131), 1, + anon_sym_RBRACK, + ACTIONS(6134), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103673] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3124), 1, + STATE(3077), 1, sym_comment, - ACTIONS(2486), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2488), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6129), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103733] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [101085] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6296), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3125), 1, + STATE(3078), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(2447), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2445), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -336893,26 +325750,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [101144] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6136), 1, + sym__newline, + STATE(3079), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1262), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - [103799] = 7, + ACTIONS(1264), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6298), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3126), 1, + STATE(3080), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(1665), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1653), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -336952,26 +325861,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103865] = 7, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [101264] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, + STATE(3081), 1, + sym_comment, + ACTIONS(984), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(986), 33, sym_raw_string_begin, - ACTIONS(6300), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3127), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101323] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3082), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(2015), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2013), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337011,26 +325971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103931] = 7, + aux_sym__unquoted_in_list_token1, + [101382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6302), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3128), 1, + STATE(3083), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(1737), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1735), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337070,82 +326026,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103997] = 4, + aux_sym__unquoted_in_list_token1, + [101441] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3084), 1, sym_comment, - ACTIONS(1891), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1893), 43, + ACTIONS(980), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(982), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101500] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6071), 1, + aux_sym__immediate_decimal_token2, + STATE(3085), 1, + sym_comment, + ACTIONS(1735), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1737), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [104057] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6304), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3130), 1, + STATE(3086), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(978), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(976), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337185,26 +326192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [104123] = 7, + aux_sym__unquoted_in_list_token1, + [101620] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6306), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3131), 1, + STATE(3087), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(2388), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2386), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337244,82 +326247,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [104189] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [101679] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3088), 1, sym_comment, - ACTIONS(1895), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1897), 43, + ACTIONS(2479), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(2477), 46, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [104249] = 7, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [101738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6308), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3133), 1, + STATE(3089), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(2392), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2390), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337359,26 +326357,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [104315] = 7, + aux_sym__unquoted_in_list_token1, + [101797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, - sym_raw_string_begin, - ACTIONS(6310), 1, - anon_sym_RBRACE, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3134), 1, + STATE(3090), 1, sym_comment, - ACTIONS(6240), 45, + ACTIONS(1729), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1727), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337418,690 +326412,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [104381] = 4, + aux_sym__unquoted_in_list_token1, + [101856] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3135), 1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token2, + STATE(3091), 1, sym_comment, - ACTIONS(1304), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1302), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104441] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3136), 1, - sym_comment, - ACTIONS(2492), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2494), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104501] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3137), 1, - sym_comment, - ACTIONS(2359), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2361), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104561] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3138), 1, - sym_comment, - ACTIONS(1917), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1919), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104621] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3139), 1, - sym_comment, - ACTIONS(2391), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2393), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104681] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3140), 1, - sym_comment, - ACTIONS(2391), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2393), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104741] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3141), 1, - sym_comment, - ACTIONS(2439), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2441), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104801] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3142), 1, - sym_comment, - ACTIONS(2474), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2476), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104861] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3143), 1, - sym_comment, - ACTIONS(2478), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2480), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104921] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3144), 1, - sym_comment, - ACTIONS(2363), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2365), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104981] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3145), 1, - sym_comment, - ACTIONS(2367), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2369), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1653), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105041] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3146), 1, - sym_comment, - ACTIONS(1925), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1927), 43, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1665), 33, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [105101] = 5, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5725), 1, - aux_sym__unquoted_in_list_token2, - STATE(3147), 1, + STATE(3092), 1, sym_comment, - ACTIONS(1699), 2, + ACTIONS(974), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1687), 46, + ACTIONS(972), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338148,18 +326524,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105163] = 4, - ACTIONS(3), 1, + [101976] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3148), 1, + ACTIONS(6139), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6141), 1, + aux_sym__immediate_decimal_token2, + STATE(3093), 1, sym_comment, - ACTIONS(6314), 3, - sym_raw_string_begin, + ACTIONS(1727), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [102039] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5907), 1, + anon_sym_RBRACK, + ACTIONS(5913), 1, sym__entry_separator, - ACTIONS(6312), 46, + ACTIONS(5915), 1, + sym_raw_string_begin, + STATE(3094), 1, + sym_comment, + ACTIONS(5905), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -338204,17 +326638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105223] = 5, + [102102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6316), 1, - aux_sym__immediate_decimal_token2, - STATE(3149), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(2019), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1799), 46, + ACTIONS(2017), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338261,17 +326693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105285] = 4, + [102161] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3150), 1, - sym_comment, - ACTIONS(2429), 2, - sym_raw_string_begin, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(2427), 46, - anon_sym_LBRACK, + ACTIONS(5919), 1, anon_sym_RBRACK, + ACTIONS(5922), 1, + sym_raw_string_begin, + STATE(3096), 1, + sym_comment, + ACTIONS(5917), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -338316,15 +326750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105344] = 4, + [102224] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3097), 1, sym_comment, - ACTIONS(2389), 2, + ACTIONS(1773), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2387), 46, + ACTIONS(1771), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338371,15 +326805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105403] = 4, + [102283] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3098), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(1788), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2407), 46, + ACTIONS(1786), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338426,40 +326860,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105462] = 4, - ACTIONS(251), 1, + [102342] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3099), 1, sym_comment, - ACTIONS(1022), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1024), 33, + ACTIONS(2435), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2433), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -338469,10 +326891,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338481,13 +326914,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, - [105521] = 4, + aux_sym__unquoted_in_list_token1, + [102401] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3154), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + STATE(3100), 1, sym_comment, - ACTIONS(1304), 15, - anon_sym_DOLLAR, + ACTIONS(1819), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -338501,12 +326936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_record_token1, - ACTIONS(1302), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1827), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -338526,8 +326963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338536,23 +326971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105580] = 4, + [102462] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3101), 1, sym_comment, - ACTIONS(2244), 9, + ACTIONS(2027), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2025), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2242), 39, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -338573,6 +327006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338590,16 +327026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [105639] = 4, + [102521] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(3102), 1, sym_comment, - ACTIONS(2417), 2, + ACTIONS(2396), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2415), 46, + ACTIONS(2394), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338646,15 +327081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105698] = 4, + [102580] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3157), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2421), 2, + ACTIONS(2400), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2419), 46, + ACTIONS(2398), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338701,15 +327136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105757] = 4, + [102639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3104), 1, sym_comment, - ACTIONS(2425), 2, + ACTIONS(2031), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2423), 46, + ACTIONS(2029), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338756,25 +327191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105816] = 5, + [102698] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym__unquoted_in_list_token4, - STATE(3159), 1, + STATE(3105), 1, sym_comment, - ACTIONS(2258), 9, + ACTIONS(2336), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2334), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2254), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -338795,6 +327226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338812,15 +327246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105877] = 4, + [102757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(3106), 1, sym_comment, - ACTIONS(2433), 2, + ACTIONS(2404), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2431), 46, + ACTIONS(2402), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338867,15 +327301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105936] = 4, + [102816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3107), 1, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2439), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2435), 46, + ACTIONS(2437), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338922,15 +327356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105995] = 4, + [102875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3108), 1, sym_comment, - ACTIONS(1002), 2, + ACTIONS(1020), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1000), 46, + ACTIONS(1018), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -338977,15 +327411,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106054] = 4, + [102934] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3109), 1, + sym_comment, + ACTIONS(1771), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [102993] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3110), 1, sym_comment, - ACTIONS(2445), 2, + ACTIONS(2507), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2443), 46, + ACTIONS(2505), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -339032,15 +327521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106113] = 4, + [103052] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3164), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2449), 2, + ACTIONS(2408), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2447), 46, + ACTIONS(2406), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -339087,14 +327576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106172] = 5, + [103111] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6290), 1, - aux_sym__immediate_decimal_token2, - STATE(3165), 1, + STATE(3112), 1, sym_comment, - ACTIONS(1779), 14, + ACTIONS(1277), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -339108,14 +327596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1781), 33, + aux_sym__unquoted_in_record_token1, + ACTIONS(1275), 33, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -339135,6 +327621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339143,15 +327631,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, - [106233] = 4, + [103170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3113), 1, sym_comment, - ACTIONS(1006), 2, + ACTIONS(2156), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1004), 46, + ACTIONS(2150), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -339198,14 +327686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106292] = 5, + [103229] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - STATE(3167), 1, + ACTIONS(6143), 1, + aux_sym__immediate_decimal_token2, + STATE(3114), 1, sym_comment, - ACTIONS(1830), 14, + ACTIONS(1771), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -339220,7 +327708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1838), 33, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -339254,19 +327742,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, - [106353] = 5, - ACTIONS(251), 1, + [103290] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6318), 1, - aux_sym__immediate_decimal_token2, - STATE(3168), 1, + ACTIONS(2247), 1, + aux_sym__unquoted_in_list_token4, + STATE(3115), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(2245), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2241), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339275,20 +327789,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1801), 33, + [103351] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3116), 1, + sym_comment, + ACTIONS(2344), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2342), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339298,10 +327829,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339310,15 +327852,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, - [106414] = 4, + aux_sym__unquoted_in_list_token1, + [103410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3117), 1, sym_comment, - ACTIONS(2397), 2, + ACTIONS(2368), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2395), 46, + ACTIONS(2366), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -339365,28 +327908,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106473] = 4, - ACTIONS(3), 1, + [103469] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2413), 2, + ACTIONS(1786), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2411), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339396,21 +327951,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339419,21 +327963,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, - aux_sym__unquoted_in_list_token1, - [106532] = 5, + [103528] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_LBRACK2, - STATE(3171), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2304), 15, - anon_sym_LBRACK, + ACTIONS(988), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339443,8 +327984,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2308), 32, + ACTIONS(990), 33, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -339476,21 +328018,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106593] = 4, + [103587] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3172), 1, + STATE(3120), 1, sym_comment, - ACTIONS(1669), 8, - anon_sym_GT2, + ACTIONS(2354), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2356), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [103645] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3121), 1, + sym_comment, + ACTIONS(2386), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2388), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [103703] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6147), 1, + aux_sym__immediate_decimal_token2, + STATE(3122), 1, + sym_comment, + ACTIONS(1727), 7, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 40, + ACTIONS(1729), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339502,10 +328156,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -339530,29 +328182,39 @@ 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, - [106652] = 4, - ACTIONS(3), 1, + [103765] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3173), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2488), 2, + ACTIONS(2390), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2392), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2486), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339562,21 +328224,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339585,29 +328236,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, - aux_sym__unquoted_in_list_token1, - [106711] = 4, - ACTIONS(3), 1, + [103823] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(3124), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(6151), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6149), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1779), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339617,21 +328278,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339640,15 +328290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106770] = 4, + [103881] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3125), 1, sym_comment, - ACTIONS(1018), 15, + ACTIONS(6151), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -339662,7 +328310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1020), 33, + ACTIONS(6149), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -339696,83 +328344,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, - [106829] = 4, + [103939] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3176), 1, - sym_comment, - ACTIONS(1661), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1663), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [106888] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3177), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2494), 2, + ACTIONS(6155), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6153), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2492), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339782,21 +328386,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339805,29 +328398,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, - aux_sym__unquoted_in_list_token1, - [106947] = 4, - ACTIONS(3), 1, + [103997] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3127), 1, sym_comment, - ACTIONS(1773), 2, + ACTIONS(2017), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2019), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1771), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339837,21 +328440,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339860,29 +328452,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, - aux_sym__unquoted_in_list_token1, - [107006] = 4, - ACTIONS(3), 1, + [104055] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2502), 2, + ACTIONS(2025), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2027), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2500), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -339892,13 +328494,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104113] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3129), 1, + sym_comment, + ACTIONS(2394), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -339907,6 +328525,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2396), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -339915,70 +328560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [107065] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3180), 1, - sym_comment, - ACTIONS(1711), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1713), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [107124] = 4, + [104171] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3130), 1, sym_comment, - ACTIONS(1014), 15, + ACTIONS(2398), 14, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -339992,7 +328580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1016), 33, + ACTIONS(2400), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -340026,28 +328614,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, - [107183] = 4, - ACTIONS(3), 1, + [104229] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3131), 1, sym_comment, - ACTIONS(1801), 2, + ACTIONS(2029), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2031), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1799), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340057,13 +328656,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104287] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3132), 1, + sym_comment, + ACTIONS(2115), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340072,6 +328687,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2121), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340080,84 +328722,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, - aux_sym__unquoted_in_list_token1, - [107242] = 4, + [104345] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3183), 1, - sym_comment, - ACTIONS(1767), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1769), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [107301] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3184), 1, + STATE(3133), 1, sym_comment, - ACTIONS(1820), 2, + ACTIONS(2402), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2404), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1818), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340167,13 +328764,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104403] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6157), 1, + anon_sym_COMMA, + STATE(3134), 1, + sym_comment, + ACTIONS(5974), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340182,6 +328797,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5978), 32, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340190,29 +328831,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, - aux_sym__unquoted_in_list_token1, - [107360] = 4, - ACTIONS(3), 1, + [104463] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3185), 1, + STATE(3135), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(2406), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2408), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2090), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340222,13 +328873,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104521] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3136), 1, + sym_comment, + ACTIONS(2366), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340237,6 +328904,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2368), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340245,24 +328939,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107419] = 5, + [104579] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6279), 1, + ACTIONS(6159), 1, + anon_sym_DOT, + ACTIONS(6161), 1, aux_sym__immediate_decimal_token2, - STATE(3186), 1, + STATE(3137), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(1735), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 39, + ACTIONS(1737), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -340301,45 +328995,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [107480] = 4, - ACTIONS(3), 1, + [104641] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3187), 1, + ACTIONS(6125), 1, + aux_sym__immediate_decimal_token2, + STATE(3138), 1, sym_comment, - ACTIONS(1943), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1941), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1735), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104701] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3139), 1, + sym_comment, + ACTIONS(2370), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340348,37 +329069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107539] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3188), 1, - sym_comment, - ACTIONS(998), 2, + ACTIONS(2372), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(996), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340388,21 +329092,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340411,25 +329104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107598] = 5, + [104759] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6322), 1, + ACTIONS(6163), 1, aux_sym__immediate_decimal_token2, - STATE(3189), 1, + STATE(3140), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(1771), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1713), 39, - ts_builtin_sym_end, + ACTIONS(1773), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340441,8 +329131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -340467,29 +329159,39 @@ 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, - [107659] = 4, - ACTIONS(3), 1, + [104819] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3141), 1, sym_comment, - ACTIONS(2506), 2, + ACTIONS(2342), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2344), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2504), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340499,21 +329201,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340522,29 +329213,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, - aux_sym__unquoted_in_list_token1, - [107718] = 4, - ACTIONS(3), 1, + [104877] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2510), 2, + ACTIONS(1018), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1020), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2508), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340554,21 +329255,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340577,29 +329267,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, - aux_sym__unquoted_in_list_token1, - [107777] = 4, - ACTIONS(3), 1, + [104935] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3192), 1, + STATE(3143), 1, sym_comment, - ACTIONS(1885), 2, + ACTIONS(2505), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2507), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1883), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340609,21 +329309,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340632,29 +329321,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, - aux_sym__unquoted_in_list_token1, - [107836] = 4, - ACTIONS(3), 1, + [104993] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3193), 1, + STATE(3144), 1, sym_comment, - ACTIONS(1893), 2, + ACTIONS(2174), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2176), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1891), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340664,21 +329363,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340687,29 +329375,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, - aux_sym__unquoted_in_list_token1, - [107895] = 4, - ACTIONS(3), 1, + [105051] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3194), 1, + STATE(3145), 1, sym_comment, - ACTIONS(1699), 2, + ACTIONS(2142), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2148), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1687), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340719,21 +329417,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340742,29 +329429,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, - aux_sym__unquoted_in_list_token1, - [107954] = 4, - ACTIONS(3), 1, + [105109] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3146), 1, sym_comment, - ACTIONS(2104), 2, + ACTIONS(2150), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2156), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2098), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340774,21 +329471,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340797,17 +329483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108013] = 5, + [105167] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6324), 1, - sym__newline, - STATE(3196), 2, + STATE(3147), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 15, - anon_sym__, + ACTIONS(2429), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -340821,11 +329502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1310), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2431), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -340854,44 +329537,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, - [108074] = 4, - ACTIONS(3), 1, + [105225] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3197), 1, + STATE(3148), 1, sym_comment, - ACTIONS(2078), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2072), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2433), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -340900,37 +329556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108133] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3198), 1, - sym_comment, - ACTIONS(1897), 2, + ACTIONS(2435), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1895), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -340940,21 +329579,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -340963,45 +329591,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, - aux_sym__unquoted_in_list_token1, - [108192] = 4, - ACTIONS(3), 1, + [105283] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2361), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2359), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2437), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341010,39 +329610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108251] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(6329), 1, - anon_sym_RBRACK, - ACTIONS(6332), 1, + ACTIONS(2439), 33, sym_raw_string_begin, - STATE(3200), 1, - sym_comment, - ACTIONS(6327), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341052,21 +329633,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341075,15 +329645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108314] = 5, + [105341] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - STATE(3201), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2292), 14, + ACTIONS(1977), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -341098,7 +329665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2294), 33, + ACTIONS(1979), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -341132,44 +329699,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, - [108375] = 4, - ACTIONS(3), 1, + [105399] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3202), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2137), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2131), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5905), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341178,37 +329718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3203), 1, - sym_comment, - ACTIONS(988), 2, + ACTIONS(5915), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(986), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341218,21 +329741,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341241,45 +329753,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, - aux_sym__unquoted_in_list_token1, - [108493] = 4, - ACTIONS(3), 1, + [105457] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3152), 1, sym_comment, - ACTIONS(1919), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1917), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6167), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341288,39 +329772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108552] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6246), 1, + ACTIONS(6165), 33, sym_raw_string_begin, - STATE(3088), 1, - aux_sym__multiple_types_repeat1, - STATE(3205), 1, - sym_comment, - ACTIONS(6240), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341330,21 +329795,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341353,45 +329807,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, - aux_sym_unquoted_token1, - [108615] = 4, - ACTIONS(3), 1, + [105515] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3153), 1, sym_comment, - ACTIONS(2365), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2363), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2170), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341400,37 +329826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108674] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3207), 1, - sym_comment, - ACTIONS(2369), 2, + ACTIONS(2172), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2367), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341440,21 +329849,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341463,45 +329861,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, - aux_sym__unquoted_in_list_token1, - [108733] = 4, - ACTIONS(3), 1, + [105573] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(3154), 1, sym_comment, - ACTIONS(1927), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1925), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6171), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341510,37 +329880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108792] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(1935), 2, + ACTIONS(6169), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1933), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341550,21 +329903,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341573,13 +329915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [108851] = 4, + [105631] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3155), 1, sym_comment, - ACTIONS(1779), 15, + ACTIONS(6073), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -341594,8 +329935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 33, + ACTIONS(6075), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -341629,45 +329969,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, - [108910] = 5, - ACTIONS(3), 1, + [105689] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym__unquoted_in_list_token4, - STATE(3211), 1, + STATE(3156), 1, sym_comment, - ACTIONS(2238), 9, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2234), 38, - anon_sym_DOLLAR, + ACTIONS(5917), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -341676,37 +329988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108971] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3212), 1, - sym_comment, - ACTIONS(2373), 2, + ACTIONS(5922), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2371), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341716,21 +330011,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341739,13 +330023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [109030] = 4, + [105747] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3157), 1, sym_comment, - ACTIONS(1771), 15, + ACTIONS(1653), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -341760,63 +330043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [109089] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3214), 1, - sym_comment, - ACTIONS(2472), 2, + ACTIONS(1665), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2470), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -341826,21 +330065,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -341849,15 +330077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [109148] = 5, + [105805] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - STATE(3215), 1, + STATE(3158), 1, sym_comment, - ACTIONS(1840), 14, + ACTIONS(2374), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -341872,7 +330097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1848), 33, + ACTIONS(2376), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -341906,100 +330131,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, - [109209] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym__unquoted_in_list_token4, - STATE(3216), 1, - sym_comment, - ACTIONS(6099), 9, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(6094), 38, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [109270] = 4, - ACTIONS(3), 1, + [105863] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3159), 1, sym_comment, - ACTIONS(2084), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2082), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2445), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342008,37 +330150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109329] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3218), 1, - sym_comment, - ACTIONS(2088), 2, + ACTIONS(2447), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2086), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342048,21 +330173,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342071,13 +330185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [109388] = 4, + [105921] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3219), 1, + STATE(3160), 1, sym_comment, - ACTIONS(1799), 15, + ACTIONS(2449), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -342092,8 +330205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 33, + ACTIONS(2451), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342127,14 +330239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109447] = 5, + [105979] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym__unquoted_in_list_token2, - STATE(3220), 1, + STATE(3161), 1, sym_comment, - ACTIONS(2266), 14, + ACTIONS(2453), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -342149,7 +330259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2270), 33, + ACTIONS(2455), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342183,12 +330293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109508] = 4, + [106037] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(3162), 1, sym_comment, - ACTIONS(1818), 15, + ACTIONS(958), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -342203,8 +330313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 33, + ACTIONS(960), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342238,106 +330347,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, - [109567] = 11, + [106095] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - ACTIONS(6334), 1, - anon_sym_DOT_DOT2, - ACTIONS(6338), 1, - sym_filesize_unit, - ACTIONS(6340), 1, - sym_duration_unit, - STATE(3222), 1, - sym_comment, - STATE(8150), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6336), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [109640] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3223), 1, + STATE(3163), 1, sym_comment, - ACTIONS(2377), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2375), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6086), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342346,94 +330366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109699] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6342), 1, - anon_sym_DOT, - ACTIONS(6344), 1, - aux_sym__immediate_decimal_token2, - STATE(3224), 1, - sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109762] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3225), 1, - sym_comment, - ACTIONS(1939), 2, + ACTIONS(6088), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1937), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342443,21 +330389,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342466,45 +330401,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, - aux_sym__unquoted_in_list_token1, - [109821] = 4, - ACTIONS(3), 1, + [106153] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3226), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2381), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2379), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2378), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342513,37 +330420,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109880] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3227), 1, - sym_comment, - ACTIONS(2385), 2, + ACTIONS(2380), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2383), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342553,21 +330443,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342576,47 +330455,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, - aux_sym__unquoted_in_list_token1, - [109939] = 6, - ACTIONS(3), 1, + [106211] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6084), 1, - anon_sym_RBRACK, - ACTIONS(6090), 1, - sym__entry_separator, - ACTIONS(6092), 1, - sym_raw_string_begin, - STATE(3228), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6082), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2457), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342625,39 +330474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [110002] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(6096), 1, - anon_sym_RBRACK, - ACTIONS(6099), 1, + ACTIONS(2459), 33, sym_raw_string_begin, - STATE(3229), 1, - sym_comment, - ACTIONS(6094), 45, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342667,21 +330497,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342690,15 +330509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110065] = 5, + [106269] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2232), 1, - aux_sym__unquoted_in_list_token2, - STATE(3230), 1, + STATE(3166), 1, sym_comment, - ACTIONS(2226), 14, + ACTIONS(1989), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -342713,7 +330529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2230), 33, + ACTIONS(1991), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342747,14 +330563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110126] = 5, + [106327] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token2, - STATE(3231), 1, + STATE(3167), 1, sym_comment, - ACTIONS(1687), 14, + ACTIONS(976), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -342769,7 +330583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1699), 33, + ACTIONS(978), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342803,24 +330617,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, - [110187] = 6, + [106385] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6346), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6348), 1, - aux_sym__immediate_decimal_token2, - STATE(3232), 1, + ACTIONS(3030), 1, + anon_sym_DOT_DOT2, + ACTIONS(6173), 1, + sym_filesize_unit, + ACTIONS(6175), 1, + sym_duration_unit, + STATE(3168), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(3032), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 39, + ACTIONS(1665), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342835,6 +330652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -342848,7 +330666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -342858,30 +330675,39 @@ 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, - [110250] = 4, - ACTIONS(3), 1, + [106451] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3233), 1, + STATE(3169), 1, sym_comment, - ACTIONS(1054), 2, + ACTIONS(1997), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1999), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1052), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -342891,21 +330717,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -342914,46 +330729,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, - aux_sym__unquoted_in_list_token1, - [110309] = 5, - ACTIONS(3), 1, + [106509] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym__unquoted_in_list_token4, - STATE(3234), 1, + STATE(3170), 1, sym_comment, - ACTIONS(2274), 9, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2272), 38, - anon_sym_DOLLAR, + ACTIONS(972), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -342962,37 +330748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [110370] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3235), 1, - sym_comment, - ACTIONS(2401), 2, + ACTIONS(974), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2399), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -343002,21 +330771,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -343025,13 +330783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110429] = 4, + [106567] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3236), 1, + STATE(3171), 1, sym_comment, - ACTIONS(1771), 14, + ACTIONS(2461), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343046,7 +330803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1773), 33, + ACTIONS(2463), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343080,12 +330837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110487] = 4, + [106625] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3237), 1, + STATE(3172), 1, sym_comment, - ACTIONS(2371), 14, + ACTIONS(2467), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343100,7 +330857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2373), 33, + ACTIONS(2469), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343134,12 +330891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110545] = 4, + [106683] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3238), 1, + STATE(3173), 1, sym_comment, - ACTIONS(2082), 14, + ACTIONS(5675), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343154,7 +330911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2084), 33, + ACTIONS(5682), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343188,12 +330945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110603] = 4, + [106741] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3239), 1, + STATE(3174), 1, sym_comment, - ACTIONS(2086), 14, + ACTIONS(962), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343208,7 +330965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2088), 33, + ACTIONS(964), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343242,12 +330999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110661] = 4, + [106799] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3240), 1, + STATE(3175), 1, sym_comment, - ACTIONS(1799), 14, + ACTIONS(2471), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343262,7 +331019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1801), 33, + ACTIONS(2473), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343296,12 +331053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110719] = 4, + [106857] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3241), 1, + STATE(3176), 1, sym_comment, - ACTIONS(6257), 14, + ACTIONS(2013), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343316,7 +331073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6259), 33, + ACTIONS(2015), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343350,12 +331107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110777] = 4, + [106915] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3242), 1, + STATE(3177), 1, sym_comment, - ACTIONS(2399), 14, + ACTIONS(1277), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343369,13 +331127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2401), 33, + aux_sym_unquoted_token1, + ACTIONS(1275), 32, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -343404,12 +331161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110835] = 4, + [106973] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3243), 1, + STATE(3178), 1, sym_comment, - ACTIONS(1818), 14, + ACTIONS(2001), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343424,7 +331181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1820), 33, + ACTIONS(2003), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343458,12 +331215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110893] = 4, + [107031] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3244), 1, + STATE(3179), 1, sym_comment, - ACTIONS(2411), 14, + ACTIONS(6179), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343478,7 +331235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2413), 33, + ACTIONS(6177), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343512,12 +331269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110951] = 4, + [107089] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3180), 1, sym_comment, - ACTIONS(2415), 14, + ACTIONS(1735), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343532,7 +331289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2417), 33, + ACTIONS(1737), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343566,12 +331323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111009] = 4, + [107147] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3181), 1, sym_comment, - ACTIONS(2359), 14, + ACTIONS(1727), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343586,7 +331343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2361), 33, + ACTIONS(1729), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343620,12 +331377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111067] = 4, + [107205] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3182), 1, sym_comment, - ACTIONS(1917), 14, + ACTIONS(1771), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343640,7 +331397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1919), 33, + ACTIONS(1773), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343674,13 +331431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111125] = 4, + [107263] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3248), 1, + STATE(3183), 1, sym_comment, - ACTIONS(1304), 15, - anon_sym__, + ACTIONS(1786), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343694,61 +331450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1302), 32, - sym_raw_string_begin, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111183] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3249), 1, - sym_comment, - ACTIONS(2363), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2365), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1788), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343782,12 +331485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111241] = 4, + [107321] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3184), 1, sym_comment, - ACTIONS(2375), 14, + ACTIONS(6183), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343802,7 +331505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2377), 33, + ACTIONS(6181), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343836,121 +331539,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111299] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6350), 1, - anon_sym_COMMA, - STATE(3251), 1, - sym_comment, - ACTIONS(6168), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6172), 32, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111359] = 4, + [107379] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3185), 1, sym_comment, - ACTIONS(2504), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2506), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111417] = 4, + ACTIONS(1599), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [107437] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3253), 1, + STATE(3186), 1, sym_comment, - ACTIONS(2367), 14, + ACTIONS(6129), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -343965,7 +331613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2369), 33, + ACTIONS(6134), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -343999,66 +331647,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111475] = 4, + [107495] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3254), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2419), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2421), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111533] = 4, + ACTIONS(1623), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [107553] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2508), 14, + ACTIONS(2334), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -344073,7 +331721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2510), 33, + ACTIONS(2336), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -344107,66 +331755,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111591] = 4, + [107611] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3256), 1, + STATE(3189), 1, sym_comment, - ACTIONS(1883), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1885), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111649] = 4, + ACTIONS(1709), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [107669] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3190), 1, sym_comment, - ACTIONS(2383), 14, + ACTIONS(2382), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -344181,7 +331829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2385), 33, + ACTIONS(2384), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -344215,66 +331863,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111707] = 4, + [107727] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2427), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2429), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111765] = 4, + ACTIONS(1723), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1725), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [107785] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2431), 14, + ACTIONS(2158), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -344289,7 +331937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2433), 33, + ACTIONS(2164), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -344323,122 +331971,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111823] = 4, + [107843] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3260), 1, + STATE(3193), 1, sym_comment, - ACTIONS(1687), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1699), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111881] = 4, + ACTIONS(1735), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107900] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3194), 1, sym_comment, - ACTIONS(1937), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1939), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [111939] = 5, + ACTIONS(1727), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107957] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6352), 1, - aux_sym__immediate_decimal_token2, - STATE(3262), 1, + STATE(3195), 1, sym_comment, - ACTIONS(1799), 7, + ACTIONS(1771), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -344446,7 +332090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1801), 39, + ACTIONS(1773), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -344486,120 +332130,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111999] = 4, + [108014] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3196), 1, sym_comment, - ACTIONS(1891), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1893), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112057] = 4, + ACTIONS(1786), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108071] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3264), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(6185), 1, + anon_sym_DOT_DOT2, + STATE(3197), 1, sym_comment, - ACTIONS(2387), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2389), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112115] = 4, + ACTIONS(6187), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1802), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108136] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3198), 1, sym_comment, - ACTIONS(2486), 14, + ACTIONS(6191), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -344614,12 +332260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2488), 33, + ACTIONS(6189), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -344648,511 +332293,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112173] = 4, + [108193] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3266), 1, + ACTIONS(6193), 1, + aux_sym__immediate_decimal_token2, + STATE(3199), 1, sym_comment, - ACTIONS(2492), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2494), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112231] = 4, + ACTIONS(1771), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108252] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3267), 1, + ACTIONS(6161), 1, + aux_sym__immediate_decimal_token2, + STATE(3200), 1, sym_comment, - ACTIONS(2447), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2449), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112289] = 4, + ACTIONS(1735), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108311] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3268), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(6195), 1, + anon_sym_DOT_DOT2, + STATE(3201), 1, sym_comment, - ACTIONS(2407), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2409), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112347] = 4, + ACTIONS(6197), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1827), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108376] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3269), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(6199), 1, + anon_sym_DOT_DOT2, + STATE(3202), 1, sym_comment, - ACTIONS(6082), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6092), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112405] = 4, + ACTIONS(6201), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1827), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108440] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3270), 1, + STATE(3203), 1, sym_comment, - ACTIONS(6356), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6354), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112463] = 4, + ACTIONS(1735), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108496] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3271), 1, - sym_comment, - ACTIONS(6360), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6358), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112521] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3272), 1, + STATE(3204), 1, sym_comment, - ACTIONS(1925), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1927), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112579] = 4, + STATE(6105), 1, + sym_block, + STATE(7353), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [108572] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3273), 1, - sym_comment, - ACTIONS(6094), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6099), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112637] = 4, + STATE(3205), 1, + sym_comment, + STATE(6144), 1, + sym_block, + STATE(7265), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [108648] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3274), 1, - sym_comment, - ACTIONS(2470), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2472), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112695] = 6, + STATE(3206), 1, + sym_comment, + STATE(6146), 1, + sym_block, + STATE(7270), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [108724] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6362), 1, + ACTIONS(6215), 1, anon_sym_DOT, - ACTIONS(6364), 1, + ACTIONS(6217), 1, aux_sym__immediate_decimal_token2, - STATE(3275), 1, + STATE(3207), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 38, - ts_builtin_sym_end, + ACTIONS(1737), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345164,8 +332780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345188,24 +332806,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, - [112757] = 5, + [108784] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6219), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6221), 1, aux_sym__immediate_decimal_token2, - STATE(3276), 1, + STATE(3208), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(1727), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 39, + ACTIONS(1729), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -345243,239 +332860,145 @@ 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, - [112817] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3277), 1, - sym_comment, - ACTIONS(1052), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1054), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112875] = 4, + [108844] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3278), 1, - sym_comment, - ACTIONS(5930), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5937), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112933] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3279), 1, + STATE(3209), 1, sym_comment, - ACTIONS(1000), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1002), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112991] = 4, + STATE(6153), 1, + sym_block, + STATE(7361), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [108920] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3280), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(6223), 1, + anon_sym_DOT_DOT2, + STATE(3210), 1, sym_comment, - ACTIONS(2435), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2437), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113049] = 4, + ACTIONS(6225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1802), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [108984] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3281), 1, + ACTIONS(3064), 1, + anon_sym_DOT_DOT2, + ACTIONS(6227), 1, + sym_filesize_unit, + ACTIONS(6229), 1, + sym_duration_unit, + STATE(3211), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(3066), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 39, + ACTIONS(1665), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345502,7 +333025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -345512,17 +333034,10 @@ 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, - [113107] = 6, + [109048] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6366), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6368), 1, - aux_sym__immediate_decimal_token2, - STATE(3282), 1, + STATE(3212), 1, sym_comment, ACTIONS(1771), 7, anon_sym_GT2, @@ -345571,561 +333086,635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113169] = 4, + [109104] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(6372), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6370), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113227] = 4, + STATE(3213), 1, + sym_comment, + STATE(6952), 1, + sym_block, + STATE(7244), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109180] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3284), 1, - sym_comment, - ACTIONS(6376), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6374), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113285] = 4, + STATE(3214), 1, + sym_comment, + STATE(7182), 1, + sym_block, + STATE(7263), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109256] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3285), 1, - sym_comment, - ACTIONS(6327), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6332), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113343] = 4, + STATE(3215), 1, + sym_comment, + STATE(6702), 1, + sym_block, + STATE(7207), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109332] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3286), 1, - sym_comment, - ACTIONS(1004), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1006), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113401] = 4, + STATE(3216), 1, + sym_comment, + STATE(6736), 1, + sym_block, + STATE(7217), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109408] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3287), 1, - sym_comment, - ACTIONS(996), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(998), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113459] = 4, + STATE(3217), 1, + sym_comment, + STATE(7091), 1, + sym_block, + STATE(7241), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109484] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3288), 1, + ACTIONS(4811), 1, + anon_sym_DOT2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(2153), 1, + sym_cell_path, + STATE(3218), 1, sym_comment, - ACTIONS(6380), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6378), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113517] = 4, + ACTIONS(2033), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6233), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2035), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109550] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3289), 1, - sym_comment, - ACTIONS(6380), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6378), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113575] = 4, + STATE(3219), 1, + sym_comment, + STATE(7118), 1, + sym_block, + STATE(7258), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109626] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3290), 1, - sym_comment, - ACTIONS(6384), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6382), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113633] = 4, + STATE(3220), 1, + sym_comment, + STATE(6266), 1, + sym_block, + STATE(7342), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109702] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3291), 1, - sym_comment, - ACTIONS(1895), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1897), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113691] = 4, + STATE(3221), 1, + sym_comment, + STATE(6275), 1, + sym_block, + STATE(7346), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109778] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3292), 1, - sym_comment, - ACTIONS(2423), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2425), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113749] = 4, + STATE(3222), 1, + sym_comment, + STATE(6711), 1, + sym_block, + STATE(7324), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [109854] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3293), 1, + STATE(3223), 1, sym_comment, - ACTIONS(1661), 8, + ACTIONS(1786), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1663), 39, + ACTIONS(1788), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346164,238 +333753,264 @@ 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, - [113807] = 4, + [109910] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3224), 1, sym_comment, - ACTIONS(2072), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2078), 33, - sym_raw_string_begin, + ACTIONS(1727), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109966] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6231), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113865] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3295), 1, + STATE(3225), 1, sym_comment, - ACTIONS(986), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(988), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113923] = 4, + STATE(6713), 1, + sym_block, + STATE(7354), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [110042] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3296), 1, - sym_comment, - ACTIONS(2379), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2381), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113981] = 4, + STATE(3226), 1, + sym_comment, + STATE(6104), 1, + sym_block, + STATE(7347), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [110118] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3297), 1, - sym_comment, - ACTIONS(1779), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1781), 33, - sym_raw_string_begin, + ACTIONS(6203), 1, + anon_sym_COLON, + ACTIONS(6205), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114039] = 4, + STATE(3227), 1, + sym_comment, + STATE(6154), 1, + sym_block, + STATE(7366), 1, + sym_returns, + STATE(7372), 1, + sym__one_type, + STATE(7505), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [110194] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3298), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, + sym_path, + STATE(2531), 1, + sym_cell_path, + STATE(3228), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(2033), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1713), 39, + ACTIONS(6233), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346408,6 +334023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2035), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -346422,7 +334038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -346432,78 +334047,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, - [114097] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3299), 1, - sym_comment, - ACTIONS(2395), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2397), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114155] = 4, + [110259] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3300), 1, + ACTIONS(6236), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6238), 1, + aux_sym__immediate_decimal_token2, + STATE(3229), 1, sym_comment, - ACTIONS(1767), 8, + ACTIONS(1727), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1769), 39, + ACTIONS(1729), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346540,354 +334100,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, - [114213] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3301), 1, - sym_comment, - ACTIONS(2443), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2445), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114271] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3302), 1, - sym_comment, - ACTIONS(2090), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2096), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114329] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3303), 1, - sym_comment, - ACTIONS(2098), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2104), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114387] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3304), 1, - sym_comment, - ACTIONS(6312), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6314), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114445] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3305), 1, - sym_comment, - ACTIONS(2131), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2137), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114503] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3306), 1, - sym_comment, - ACTIONS(1941), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1943), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114561] = 8, + [110318] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3047), 1, - anon_sym_DOT_DOT2, - ACTIONS(6386), 1, - sym_filesize_unit, - ACTIONS(6388), 1, - sym_duration_unit, - STATE(3307), 1, + ACTIONS(6240), 1, + anon_sym_DOT, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token2, + STATE(3230), 1, sym_comment, - ACTIONS(3049), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 37, + aux_sym_unquoted_token2, + ACTIONS(1737), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346899,11 +334129,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -346916,6 +334143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -346925,77 +334153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114627] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3308), 1, - sym_comment, - ACTIONS(1933), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1935), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114685] = 5, + [110377] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6390), 1, + ACTIONS(6244), 1, aux_sym__immediate_decimal_token2, - STATE(3309), 1, + STATE(3231), 1, sym_comment, - ACTIONS(1799), 7, + ACTIONS(1771), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1801), 38, - ts_builtin_sym_end, + ACTIONS(1773), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347007,8 +334179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347031,25 +334205,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, - [114744] = 5, + [110434] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6364), 1, + ACTIONS(6217), 1, aux_sym__immediate_decimal_token2, - STATE(3310), 1, + STATE(3232), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 38, - ts_builtin_sym_end, + ACTIONS(1737), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347061,8 +334231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347085,22 +334257,18 @@ 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, - [114803] = 4, + [110491] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3311), 1, + STATE(3233), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(2249), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 39, + ACTIONS(2253), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347115,7 +334283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347128,7 +334298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347138,22 +334307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114860] = 4, + [110545] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3312), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(3234), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(2218), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 39, + ACTIONS(2222), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347181,7 +334350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347191,22 +334359,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, - [114917] = 4, - ACTIONS(251), 1, + [110603] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(3235), 1, sym_comment, - ACTIONS(1799), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 39, + ACTIONS(2245), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347219,9 +334381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2241), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347230,36 +334395,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114974] = 4, + [110661] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3314), 1, + STATE(3236), 1, sym_comment, - ACTIONS(1818), 7, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1820), 39, + ACTIONS(1788), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347297,29 +334461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115031] = 8, + [110715] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(6392), 1, - anon_sym_DOT_DOT2, - STATE(3315), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(3237), 1, sym_comment, - ACTIONS(6394), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 5, + ACTIONS(1794), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1838), 36, + ACTIONS(1802), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347356,27 +334513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115096] = 8, + [110773] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(6396), 1, - anon_sym_DOT_DOT2, - STATE(3316), 1, + STATE(3238), 1, sym_comment, - ACTIONS(6398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 5, + ACTIONS(1727), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1848), 36, + aux_sym_unquoted_token2, + ACTIONS(1729), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347404,6 +334553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347413,73 +334563,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115161] = 4, - ACTIONS(251), 1, + [110827] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3317), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(3239), 1, sym_comment, - ACTIONS(6402), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6400), 32, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115218] = 4, + ACTIONS(1000), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1004), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110885] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3318), 1, + ACTIONS(6246), 1, + aux_sym__immediate_decimal_token2, + STATE(3240), 1, sym_comment, - ACTIONS(1799), 7, + ACTIONS(1771), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1801), 38, + ACTIONS(1773), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347516,87 +334666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115274] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3319), 1, - sym_comment, - STATE(7602), 1, - sym_block, - STATE(8144), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [115350] = 6, + [110941] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6416), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6418), 1, - aux_sym__immediate_decimal_token2, - STATE(3320), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(3241), 1, sym_comment, - ACTIONS(1771), 6, + ACTIONS(2214), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 37, + ACTIONS(2216), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347624,7 +334709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347634,147 +334718,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115410] = 14, + [110999] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3321), 1, - sym_comment, - STATE(7665), 1, - sym_block, - STATE(8006), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [115486] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3322), 1, - sym_comment, - STATE(7733), 1, - sym_block, - STATE(8205), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [115562] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6420), 1, - anon_sym_DOT, - ACTIONS(6422), 1, - aux_sym__immediate_decimal_token2, - STATE(3323), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(3242), 1, sym_comment, - ACTIONS(1779), 6, + ACTIONS(2224), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 37, + ACTIONS(2228), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347802,7 +334761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347812,28 +334770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115622] = 8, + [111057] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(6424), 1, - anon_sym_DOT_DOT2, - STATE(3324), 1, + STATE(3243), 1, sym_comment, - ACTIONS(6426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 5, + ACTIONS(2257), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1848), 35, - ts_builtin_sym_end, + ACTIONS(2259), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347845,8 +334793,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_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347868,90 +334820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115686] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3325), 1, - sym_comment, - STATE(7650), 1, - sym_block, - STATE(8147), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [115762] = 8, - ACTIONS(251), 1, + [111111] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3091), 1, - anon_sym_DOT_DOT2, - ACTIONS(6428), 1, - sym_filesize_unit, - ACTIONS(6430), 1, - sym_duration_unit, - STATE(3326), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3244), 1, sym_comment, - ACTIONS(3093), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 35, - ts_builtin_sym_end, + ACTIONS(2253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -347963,8 +334841,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, + ACTIONS(2249), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347973,50 +334856,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115826] = 14, + [111169] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, + ACTIONS(6211), 1, anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3327), 1, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6250), 1, + anon_sym_RBRACK, + STATE(3245), 1, sym_comment, - STATE(7514), 1, - sym_block, - STATE(8014), 1, - sym_returns, - STATE(8387), 1, + STATE(3252), 1, + aux_sym_shebang_repeat1, + STATE(3417), 1, + aux_sym__multiple_types_repeat2, + STATE(6704), 1, sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, + STATE(7761), 1, sym__type_annotation, - ACTIONS(6410), 2, + ACTIONS(6209), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(6197), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6207), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -348048,28 +334930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115902] = 8, - ACTIONS(251), 1, + [111239] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(6432), 1, - anon_sym_DOT_DOT2, - STATE(3328), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6434), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 35, - ts_builtin_sym_end, + ACTIONS(2263), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348081,8 +334947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2261), 29, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348091,592 +334963,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115966] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3329), 1, - sym_comment, - STATE(7629), 1, - sym_block, - STATE(8186), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116042] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3330), 1, - sym_comment, - STATE(6752), 1, - sym_block, - STATE(8037), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116118] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3331), 1, - sym_comment, - STATE(6753), 1, - sym_block, - STATE(8044), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116194] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3332), 1, - sym_comment, - STATE(6712), 1, - sym_block, - STATE(7985), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116270] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3333), 1, - sym_comment, - STATE(6723), 1, - sym_block, - STATE(7988), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116346] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3334), 1, - sym_comment, - STATE(7207), 1, - sym_block, - STATE(7997), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116422] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3335), 1, - sym_comment, - STATE(7211), 1, - sym_block, - STATE(7999), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116498] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3336), 1, - sym_comment, - STATE(7064), 1, - sym_block, - STATE(8049), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116574] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(3337), 1, - sym_comment, - STATE(7066), 1, - sym_block, - STATE(8050), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116650] = 4, + aux_sym_unquoted_token4, + [111293] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3338), 1, + STATE(3247), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(1771), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 38, - ts_builtin_sym_end, + ACTIONS(1773), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348688,8 +335004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348712,28 +335030,74 @@ 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, - [116706] = 9, + [111347] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3248), 1, + sym_comment, + ACTIONS(2259), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2257), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [111405] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1733), 1, - aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(2174), 1, - sym_cell_path, - STATE(3339), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(3249), 1, sym_comment, - ACTIONS(1945), 5, + ACTIONS(1819), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6438), 13, + ACTIONS(1827), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348746,10 +335110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1947), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348771,20 +335134,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116772] = 4, + [111463] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3340), 1, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token2, + STATE(3250), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1773), 38, + ACTIONS(1737), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -348821,85 +335185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116828] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3341), 1, - sym_comment, - STATE(7787), 1, - sym_block, - STATE(8076), 1, - sym_returns, - STATE(8387), 1, - sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [116904] = 4, + [111519] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3342), 1, + STATE(3251), 1, sym_comment, - ACTIONS(1818), 7, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1820), 38, - ts_builtin_sym_end, + ACTIONS(1737), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -348911,8 +335209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348935,39 +335235,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116960] = 14, + [111573] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_COLON, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, + ACTIONS(6211), 1, anon_sym_list, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(3343), 1, + ACTIONS(6248), 1, + sym__newline, + STATE(3252), 1, sym_comment, - STATE(7398), 1, - sym_block, - STATE(8067), 1, - sym_returns, - STATE(8387), 1, + STATE(3403), 1, + aux_sym__multiple_types_repeat2, + STATE(3484), 1, + aux_sym_shebang_repeat1, + STATE(7138), 1, sym__one_type, - STATE(8516), 1, - sym__multiple_types, - STATE(8521), 1, + STATE(7761), 1, sym__type_annotation, - ACTIONS(6410), 2, + ACTIONS(6209), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(6197), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6207), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -348999,21 +335291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [117036] = 5, - ACTIONS(251), 1, + [111640] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6441), 1, - aux_sym__immediate_decimal_token2, - STATE(3344), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3253), 1, sym_comment, - ACTIONS(1799), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 37, + ACTIONS(2259), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349025,10 +335313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2257), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349037,37 +335326,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117093] = 6, + [111697] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6443), 1, - anon_sym_DOT, - ACTIONS(6445), 1, - aux_sym__immediate_decimal_token2, - STATE(3345), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(3254), 1, sym_comment, - ACTIONS(1779), 6, + ACTIONS(2224), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 36, + ACTIONS(2228), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349094,7 +335384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349104,21 +335393,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117152] = 5, + [111754] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6422), 1, - aux_sym__immediate_decimal_token2, - STATE(3346), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(3255), 1, sym_comment, - ACTIONS(1779), 6, + ACTIONS(2218), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 37, + ACTIONS(2222), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349130,10 +335421,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349146,7 +335435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349156,26 +335444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117209] = 9, + [111811] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(2635), 1, - sym_cell_path, - STATE(3347), 1, + STATE(3256), 1, sym_comment, - ACTIONS(1945), 5, + ACTIONS(1771), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6438), 12, + aux_sym_unquoted_token2, + ACTIONS(1773), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -349188,7 +335469,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, - ACTIONS(1947), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -349203,6 +335483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349212,24 +335493,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117274] = 6, + [111864] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6447), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6449), 1, - aux_sym__immediate_decimal_token2, - STATE(3348), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(3257), 1, sym_comment, - ACTIONS(1771), 6, + ACTIONS(1653), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 36, - ts_builtin_sym_end, + ACTIONS(1665), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349241,8 +335518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349255,7 +335534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349265,22 +335543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117333] = 6, + [111919] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - STATE(3349), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(3258), 1, sym_comment, - ACTIONS(2266), 5, + ACTIONS(2214), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2270), 36, + ACTIONS(2216), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349292,10 +335571,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349317,19 +335594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117391] = 4, - ACTIONS(251), 1, + [111976] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3350), 1, + STATE(3259), 1, sym_comment, - ACTIONS(1818), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1820), 37, + ACTIONS(2263), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349341,10 +335612,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_LPAREN2, + ACTIONS(2261), 29, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349353,36 +335626,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117445] = 6, + aux_sym_unquoted_token4, + [112029] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(3351), 1, + STATE(3260), 1, sym_comment, - ACTIONS(1830), 5, + ACTIONS(1786), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1838), 36, + aux_sym_unquoted_token2, + ACTIONS(1788), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349394,10 +335668,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349410,6 +335682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349419,22 +335692,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117503] = 6, + [112082] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - STATE(3352), 1, + STATE(3261), 1, sym_comment, - ACTIONS(2292), 5, + ACTIONS(1794), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2294), 36, + ACTIONS(1802), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349446,10 +335720,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349471,18 +335743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117561] = 4, + [112139] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3353), 1, + STATE(3262), 1, sym_comment, - ACTIONS(2272), 5, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2274), 38, + aux_sym_unquoted_token2, + ACTIONS(1737), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349494,12 +335768,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_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349512,6 +335782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349521,22 +335792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117615] = 6, + [112192] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3354), 1, + STATE(3263), 1, sym_comment, - ACTIONS(1840), 5, + ACTIONS(1727), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1848), 36, + aux_sym_unquoted_token2, + ACTIONS(1729), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349548,10 +335817,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349564,6 +335831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349573,12 +335841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117673] = 4, + [112245] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3355), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(3264), 1, sym_comment, - ACTIONS(2244), 14, + ACTIONS(1000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349590,10 +335863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2242), 29, + ACTIONS(1004), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -349622,23 +335892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [117727] = 6, - ACTIONS(251), 1, + [112302] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2243), 1, anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(3356), 1, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(3265), 1, sym_comment, - ACTIONS(2226), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2230), 36, + ACTIONS(2245), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349650,10 +335914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2241), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349662,29 +335927,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117785] = 6, - ACTIONS(3), 1, + [112359] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(3357), 1, + STATE(3266), 1, sym_comment, - ACTIONS(1036), 13, + ACTIONS(1819), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1827), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349696,13 +335971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1034), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349711,35 +335981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117843] = 4, - ACTIONS(251), 1, + [112416] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3358), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3267), 1, sym_comment, - ACTIONS(1771), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 37, + ACTIONS(2253), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349751,10 +336016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2249), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349763,34 +336029,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117897] = 4, + [112473] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3359), 1, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3268), 1, sym_comment, - ACTIONS(1799), 6, + STATE(3284), 1, + aux_sym_shebang_repeat1, + ACTIONS(5229), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 37, - sym__newline, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5227), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -349802,9 +336082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349817,29 +336095,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117951] = 4, + [112539] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3360), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3269), 1, sym_comment, - ACTIONS(2234), 5, + STATE(3309), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2238), 38, - sym__newline, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5245), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -349851,11 +336140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349868,25 +336153,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118005] = 6, - ACTIONS(3), 1, + [112607] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(3361), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3270), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(6264), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5241), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5239), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349899,12 +336189,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(2254), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349913,33 +336199,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118063] = 6, - ACTIONS(3), 1, + [112667] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3362), 1, - sym_comment, - ACTIONS(2274), 13, + ACTIONS(5301), 1, sym__newline, + STATE(3271), 1, + sym_comment, + STATE(3310), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5247), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5245), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -349951,12 +336242,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(2272), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349965,35 +336252,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118121] = 4, + [112729] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3363), 1, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3272), 1, sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, + ACTIONS(6264), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 37, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350006,42 +336305,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112797] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3273), 1, + sym_comment, + STATE(3311), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118175] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3364), 1, - sym_comment, - ACTIONS(2238), 13, - sym__newline, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5245), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350053,52 +336362,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2234), 28, - anon_sym_GT2, - anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118233] = 5, + [112867] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6451), 1, - aux_sym__immediate_decimal_token2, - STATE(3365), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3274), 1, sym_comment, - ACTIONS(1799), 6, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5241), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 36, - ts_builtin_sym_end, + ACTIONS(5239), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350110,6 +336402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -350124,9 +336417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -350134,23 +336424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118289] = 5, + [112923] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6445), 1, - aux_sym__immediate_decimal_token2, - STATE(3366), 1, + ACTIONS(5301), 1, + sym__newline, + STATE(3275), 1, sym_comment, - ACTIONS(1779), 6, + STATE(3312), 1, + aux_sym_shebang_repeat1, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5247), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5245), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350161,6 +336453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -350175,9 +336468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -350185,133 +336475,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118345] = 12, + [112981] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6453), 1, + ACTIONS(5383), 1, sym__newline, - ACTIONS(6455), 1, - anon_sym_RBRACK, - STATE(3367), 1, - sym_comment, - STATE(3370), 1, + STATE(3270), 1, aux_sym_shebang_repeat1, - STATE(3513), 1, - aux_sym__multiple_types_repeat2, - STATE(7670), 1, - sym__one_type, - STATE(8449), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [118415] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(3368), 1, + STATE(3276), 1, sym_comment, - ACTIONS(1036), 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(1034), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6254), 2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6258), 2, 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, - [118472] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(3369), 1, - sym_comment, - ACTIONS(1830), 5, + ACTIONS(5229), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1838), 35, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5227), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350322,6 +336508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -350336,137 +336523,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118529] = 11, + [113043] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6453), 1, + ACTIONS(5301), 1, sym__newline, - STATE(3370), 1, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + STATE(3277), 1, sym_comment, - STATE(3510), 1, - aux_sym__multiple_types_repeat2, - STATE(3662), 1, + STATE(3313), 1, aux_sym_shebang_repeat1, - STATE(7664), 1, - sym__one_type, - STATE(8449), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [118596] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3371), 1, - sym_comment, - ACTIONS(2274), 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(2272), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6254), 2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118653] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3372), 1, - sym_comment, - ACTIONS(1771), 6, + ACTIONS(6280), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350477,41 +336586,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + [113123] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6304), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3278), 1, + sym_comment, + ACTIONS(6264), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118706] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3373), 1, - sym_comment, - ACTIONS(2238), 12, - ts_builtin_sym_end, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350523,50 +336649,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, - ACTIONS(2234), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [113203] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, + anon_sym_and2, + STATE(3279), 1, + sym_comment, + STATE(3314), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118763] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3374), 1, - sym_comment, - ACTIONS(1799), 6, + ACTIONS(6280), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350577,44 +336712,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [113285] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6272), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + ACTIONS(6296), 1, anon_sym_and2, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6304), 1, + anon_sym_bit_DASHor2, + ACTIONS(6308), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3280), 1, + sym_comment, + ACTIONS(6264), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118816] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(3375), 1, - sym_comment, - ACTIONS(1687), 5, + ACTIONS(6270), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 36, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350627,45 +336777,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_or2, + [113367] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6252), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, anon_sym_and2, + ACTIONS(6310), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(3281), 1, + sym_comment, + STATE(3315), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118871] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3376), 1, - sym_comment, - ACTIONS(1818), 6, + ACTIONS(6280), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1820), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350676,37 +336840,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + [113451] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3282), 1, + sym_comment, + ACTIONS(6264), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [118924] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3377), 1, - sym_comment, - ACTIONS(2244), 13, - ts_builtin_sym_end, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350718,100 +336890,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_LPAREN2, - ACTIONS(2242), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [118977] = 6, + [113521] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3378), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3283), 1, sym_comment, - ACTIONS(2292), 5, - anon_sym_GT2, + STATE(3316), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2294), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [119034] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(3379), 1, - sym_comment, - ACTIONS(2258), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350822,52 +336948,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, - ACTIONS(2254), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_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, - [119091] = 6, + [113593] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3380), 1, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3284), 1, sym_comment, - ACTIONS(1840), 5, + ACTIONS(5241), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6264), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 35, - ts_builtin_sym_end, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350879,7 +336992,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_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -350893,30 +337006,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119148] = 4, + [113657] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3381), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3285), 1, sym_comment, - ACTIONS(1779), 6, + STATE(3317), 1, + aux_sym_shebang_repeat1, + ACTIONS(5247), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 36, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5245), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -350927,7 +337047,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_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -350941,33 +337061,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119201] = 6, + [113723] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(3382), 1, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3286), 1, sym_comment, - ACTIONS(2226), 5, - anon_sym_GT2, + ACTIONS(6264), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2230), 35, - ts_builtin_sym_end, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350979,47 +337117,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119258] = 6, + [113795] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(3383), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3287), 1, sym_comment, - ACTIONS(2266), 5, - anon_sym_GT2, + STATE(3318), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2270), 35, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351030,61 +337176,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119315] = 12, + [113869] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3384), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5466), 24, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351097,88 +337237,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119383] = 13, + [113943] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(6473), 1, - anon_sym_DOLLAR, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6477), 1, - anon_sym_DOT, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - STATE(3385), 1, - sym_comment, - STATE(3722), 1, - sym__immediate_decimal, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, - anon_sym_GT2, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + STATE(3289), 1, + sym_comment, + STATE(3319), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1579), 24, - anon_sym_DASH_DASH, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5245), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114019] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3290), 1, + sym_comment, + ACTIONS(6264), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [114095] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + STATE(3291), 1, + sym_comment, + STATE(3320), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5245), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [119453] = 5, + [114173] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3386), 1, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3292), 1, sym_comment, - ACTIONS(2454), 5, + STATE(3321), 1, + aux_sym_shebang_repeat1, + ACTIONS(5273), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5276), 13, - sym__newline, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5271), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351190,9 +337463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2456), 23, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -351206,179 +337476,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119507] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3387), 1, - sym_comment, - ACTIONS(6485), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [119557] = 3, + [114241] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3388), 1, - sym_comment, - ACTIONS(6487), 41, + ACTIONS(5372), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [119607] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6489), 1, - anon_sym_GT2, - ACTIONS(6491), 1, - anon_sym_AT, - STATE(3389), 1, - sym_comment, - STATE(7732), 1, - sym__all_type, - STATE(8602), 1, - sym_param_cmd, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(8129), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [119671] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - STATE(3390), 1, + STATE(3293), 1, sym_comment, - ACTIONS(1687), 5, - anon_sym_GT2, + STATE(3323), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1699), 35, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5271), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351389,6 +337512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -351403,44 +337527,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119725] = 12, + [114303] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3391), 1, + STATE(3294), 1, sym_comment, - STATE(3404), 1, + STATE(3325), 1, aux_sym_shebang_repeat1, - ACTIONS(5476), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5474), 27, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5271), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351459,38 +337584,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119793] = 9, + [114373] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - STATE(3392), 1, + STATE(3295), 1, sym_comment, - STATE(3406), 1, + STATE(3327), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5476), 3, + ACTIONS(5273), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5474), 30, + ACTIONS(5271), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351516,45 +337633,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119855] = 13, + [114431] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3384), 1, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + STATE(3296), 1, + sym_comment, + STATE(3329), 1, aux_sym_shebang_repeat1, - STATE(3393), 1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5271), 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, + [114511] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3272), 1, + aux_sym_shebang_repeat1, + STATE(3297), 1, sym_comment, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5474), 23, + ACTIONS(5227), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351578,25 +337759,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119925] = 7, + [114581] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - STATE(3394), 1, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, + anon_sym_and2, + STATE(3298), 1, sym_comment, - STATE(3410), 1, + STATE(3331), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5271), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [114663] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + STATE(3274), 1, aux_sym_shebang_repeat1, - ACTIONS(6497), 2, + STATE(3299), 1, + sym_comment, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5476), 5, + ACTIONS(5229), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5474), 32, + ACTIONS(5227), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351629,54 +337873,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119983] = 18, + [114721] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6290), 1, anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, + ACTIONS(6292), 1, anon_sym_bit_DASHor2, - STATE(3395), 1, + ACTIONS(6306), 1, + anon_sym_and2, + ACTIONS(6310), 1, + anon_sym_xor2, + STATE(3300), 1, sym_comment, - STATE(3412), 1, + STATE(3333), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 14, + ACTIONS(5271), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351688,59 +337936,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [120063] = 19, + [114805] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5383), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6290), 1, anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, + ACTIONS(6292), 1, anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - STATE(3396), 1, + STATE(3301), 1, sym_comment, - STATE(3414), 1, + STATE(3388), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 13, + ACTIONS(5227), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351752,60 +337996,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [120145] = 20, + [114885] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - ACTIONS(6521), 1, - anon_sym_xor2, - STATE(3397), 1, + STATE(3302), 1, sym_comment, - STATE(3416), 1, + STATE(3335), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 12, + ACTIONS(5271), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351817,46 +338049,64 @@ static 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, - [120229] = 14, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114957] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5383), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3398), 1, - sym_comment, - STATE(3418), 1, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, + anon_sym_and2, + STATE(3278), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3303), 1, + sym_comment, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 19, + ACTIONS(5227), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351868,40 +338118,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120301] = 11, + [115039] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3399), 1, + STATE(3304), 1, sym_comment, - STATE(3420), 1, + STATE(3337), 1, aux_sym_shebang_repeat1, - ACTIONS(5476), 2, + ACTIONS(5273), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5474), 29, + ACTIONS(5271), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351931,48 +338175,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120367] = 15, + [115105] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3400), 1, + STATE(3305), 1, sym_comment, - STATE(3422), 1, + STATE(3339), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 17, + ACTIONS(5271), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -351990,50 +338234,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120441] = 16, + [115179] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - STATE(3401), 1, + STATE(3306), 1, sym_comment, - STATE(3424), 1, + STATE(3341), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 16, + ACTIONS(5271), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352050,52 +338294,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120517] = 17, + [115255] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5597), 1, + ACTIONS(5372), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6290), 1, anon_sym_bit_DASHxor2, - STATE(3402), 1, + STATE(3307), 1, sym_comment, - STATE(3426), 1, + STATE(3343), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5474), 15, + ACTIONS(5271), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352111,88 +338355,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [120595] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(6523), 1, - anon_sym_GT2, - STATE(3403), 1, - sym_comment, - STATE(7638), 1, - sym__all_type, - STATE(8384), 1, - sym_param_cmd, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(8129), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [120659] = 11, + [115333] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, + anon_sym_and2, + ACTIONS(6310), 1, + anon_sym_xor2, + STATE(3280), 1, aux_sym_shebang_repeat1, - STATE(3404), 1, + STATE(3308), 1, sym_comment, - ACTIONS(5468), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5466), 28, - sym__newline, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352204,51 +338418,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120725] = 12, + [115417] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(3405), 1, - sym_comment, - STATE(3440), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5484), 2, + STATE(3309), 1, + sym_comment, + ACTIONS(5297), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6495), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5482), 27, + ACTIONS(5295), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352276,81 +338474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120793] = 8, + [115483] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3406), 1, + STATE(3310), 1, sym_comment, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5468), 3, + ACTIONS(5297), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5466), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120853] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5295), 31, sym__newline, - STATE(3407), 1, - sym_comment, - STATE(3441), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6497), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5484), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5482), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352381,87 +338526,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120915] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3408), 1, - sym_comment, - ACTIONS(6525), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [120965] = 13, + [115543] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(3409), 1, - sym_comment, - STATE(3442), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3311), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5482), 23, + ACTIONS(5295), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352485,75 +338582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121035] = 6, + [115611] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3410), 1, + STATE(3312), 1, sym_comment, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5468), 5, + ACTIONS(5297), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5466), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121091] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5295), 33, sym__newline, - STATE(3411), 1, - sym_comment, - STATE(3443), 1, - aux_sym_shebang_repeat1, - ACTIONS(6497), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5482), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352586,52 +338632,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121149] = 17, + [115667] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3412), 1, + STATE(3313), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5466), 15, + ACTIONS(5295), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352647,54 +338693,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [121227] = 18, + [115745] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - STATE(3413), 1, - sym_comment, - STATE(3444), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3314), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 14, + ACTIONS(5295), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352706,57 +338753,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [121307] = 18, + [115825] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - STATE(1800), 1, + ACTIONS(6308), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3414), 1, + STATE(3315), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5466), 14, + ACTIONS(5295), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352769,58 +338817,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [121387] = 19, + [115907] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - STATE(3415), 1, - sym_comment, - STATE(3445), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3316), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 13, + ACTIONS(5295), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352832,58 +338867,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [121469] = 19, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [115977] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, - anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - ACTIONS(6539), 1, - anon_sym_xor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3416), 1, + STATE(3317), 1, sym_comment, - ACTIONS(6457), 2, + ACTIONS(5297), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5466), 13, + ACTIONS(5295), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352896,59 +338911,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [121551] = 20, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116041] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - ACTIONS(6521), 1, - anon_sym_xor2, - STATE(3417), 1, - sym_comment, - STATE(3446), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3318), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 12, + ACTIONS(5295), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -352960,44 +338981,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [121635] = 13, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116113] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3418), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5466), 20, + ACTIONS(5295), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353013,50 +339044,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121705] = 14, + [116187] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(3419), 1, - sym_comment, - STATE(3447), 1, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3320), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 19, + ACTIONS(5295), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353071,35 +339105,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121777] = 10, + [116263] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3420), 1, + STATE(3321), 1, sym_comment, - ACTIONS(5468), 2, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5466), 30, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5257), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353125,37 +339158,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121841] = 11, + [116329] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3421), 1, + STATE(3322), 1, sym_comment, - STATE(3505), 1, + STATE(3345), 1, + aux_sym_shebang_repeat1, + ACTIONS(5291), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5289), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116397] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5484), 2, + STATE(3323), 1, + sym_comment, + ACTIONS(6264), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6495), 2, + anon_sym_PLUS2, + ACTIONS(5257), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116457] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + STATE(3324), 1, + sym_comment, + STATE(3346), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5482), 29, + ACTIONS(5291), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5289), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353167,6 +339303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -353185,46 +339322,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121907] = 14, + [116519] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3422), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5466), 18, + ACTIONS(5257), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353237,54 +339366,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121979] = 15, + [116587] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3423), 1, + STATE(3326), 1, sym_comment, - STATE(3449), 1, + STATE(3347), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(5289), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116657] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3327), 1, + sym_comment, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5259), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5257), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 17, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116713] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + STATE(3328), 1, + sym_comment, + STATE(3348), 1, + aux_sym_shebang_repeat1, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5291), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5289), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353296,54 +339515,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122053] = 15, + [116771] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - STATE(1800), 1, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6304), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3424), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5466), 17, + ACTIONS(5257), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353359,52 +339597,54 @@ 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, - [122127] = 16, + [116849] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - STATE(3425), 1, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + STATE(3330), 1, sym_comment, - STATE(3450), 1, + STATE(3349), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 16, + ACTIONS(5289), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353419,52 +339659,54 @@ 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, - [122203] = 16, + [116929] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - STATE(1800), 1, + ACTIONS(6304), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3426), 1, + STATE(3331), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5466), 16, + ACTIONS(5257), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353477,56 +339719,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [122279] = 17, + [117009] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5512), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6290), 1, anon_sym_bit_DASHxor2, - STATE(3427), 1, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, + anon_sym_and2, + STATE(3332), 1, sym_comment, - STATE(3451), 1, + STATE(3350), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5482), 15, + ACTIONS(5289), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353538,39 +339782,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [122357] = 12, + [117091] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(3428), 1, - sym_comment, - STATE(3452), 1, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6304), 1, + anon_sym_bit_DASHor2, + ACTIONS(6308), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(5480), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6495), 2, + STATE(3333), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5478), 27, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353582,45 +339846,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_or2, + [117173] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, anon_sym_and2, + ACTIONS(6310), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + STATE(3334), 1, + sym_comment, + STATE(3351), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122425] = 9, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5289), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or2, + [117257] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - STATE(3429), 1, - sym_comment, - STATE(3454), 1, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3335), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5480), 3, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5478), 30, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 20, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353632,59 +339960,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122487] = 13, + [117327] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3430), 1, + STATE(3336), 1, sym_comment, - STATE(3456), 1, + STATE(3352), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5478), 23, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5289), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353696,37 +340018,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122557] = 7, + [117399] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - STATE(3431), 1, - sym_comment, - STATE(3458), 1, + ACTIONS(6272), 1, + anon_sym_DASH2, + ACTIONS(6276), 1, + anon_sym_PLUS2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6497), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5480), 5, + STATE(3337), 1, + sym_comment, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6264), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5478), 32, + ACTIONS(6266), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5257), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353738,7 +340062,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_in2, anon_sym_and2, anon_sym_xor2, @@ -353752,61 +340075,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122615] = 18, + [117463] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - STATE(3432), 1, + STATE(3338), 1, sym_comment, - STATE(3460), 1, + STATE(3353), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(5291), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6511), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6509), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5478), 14, + ACTIONS(5289), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353818,59 +340117,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [122695] = 19, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117529] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - STATE(3433), 1, - sym_comment, - STATE(3462), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3339), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5478), 13, + ACTIONS(5257), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353882,60 +340187,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [122777] = 20, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117601] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - ACTIONS(6521), 1, - anon_sym_xor2, - STATE(3434), 1, + STATE(3340), 1, sym_comment, - STATE(3464), 1, + STATE(3354), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5478), 12, + ACTIONS(5289), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -353947,91 +340246,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [122861] = 14, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [117675] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(3435), 1, - sym_comment, - STATE(3466), 1, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3341), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5478), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122933] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5257), 17, sym__newline, - ACTIONS(6493), 1, - anon_sym_DASH2, - ACTIONS(6501), 1, - anon_sym_PLUS2, - STATE(3436), 1, - sym_comment, - STATE(3468), 1, - aux_sym_shebang_repeat1, - ACTIONS(5480), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6495), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6497), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5478), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -354043,66 +340306,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122999] = 15, + [117749] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3437), 1, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + STATE(3342), 1, sym_comment, - STATE(3470), 1, + STATE(3355), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5478), 17, + ACTIONS(5289), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -354117,53 +340369,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123073] = 16, + [117825] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - STATE(3438), 1, - sym_comment, - STATE(3472), 1, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3343), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6270), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5478), 16, + ACTIONS(5257), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -354178,54 +340430,53 @@ 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, - [123149] = 17, + [117901] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6290), 1, anon_sym_bit_DASHxor2, - STATE(3439), 1, + STATE(3344), 1, sym_comment, - STATE(3474), 1, + STATE(3356), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5478), 15, + ACTIONS(5289), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -354241,33 +340492,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [123227] = 11, + [117979] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3440), 1, + STATE(3345), 1, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5255), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5492), 28, + ACTIONS(5253), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354296,27 +340547,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123293] = 8, + [118045] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3441), 1, + STATE(3346), 1, sym_comment, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5494), 3, + ACTIONS(5255), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5492), 31, + ACTIONS(5253), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354348,38 +340599,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123353] = 12, + [118105] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3442), 1, + STATE(3347), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5492), 24, + ACTIONS(5253), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354404,23 +340655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123421] = 6, + [118173] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3443), 1, + STATE(3348), 1, sym_comment, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5494), 5, + ACTIONS(5255), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5492), 33, + ACTIONS(5253), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354454,52 +340705,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123477] = 17, + [118229] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3444), 1, + STATE(3349), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5492), 15, + ACTIONS(5253), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354515,54 +340766,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [123555] = 18, + [118307] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3445), 1, + STATE(3350), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5492), 14, + ACTIONS(5253), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354577,56 +340828,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [123635] = 19, + [118387] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6296), 1, + anon_sym_and2, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - ACTIONS(6539), 1, + ACTIONS(6308), 1, anon_sym_xor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3446), 1, + STATE(3351), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5492), 13, + ACTIONS(5253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354640,43 +340891,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [123717] = 13, + [118469] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3447), 1, + STATE(3352), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5492), 20, + ACTIONS(5253), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354697,100 +340948,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123787] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6406), 1, - anon_sym_LBRACK, - ACTIONS(6412), 1, - anon_sym_list, - STATE(3448), 1, - sym_comment, - STATE(8334), 1, - sym__multiple_types, - STATE(8352), 1, - sym__one_type, - STATE(8521), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [123851] = 14, + [118539] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3449), 1, + STATE(3353), 1, sym_comment, - ACTIONS(6457), 2, + ACTIONS(5255), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5492), 18, + ACTIONS(5253), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354803,54 +340984,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123923] = 15, + [118603] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3450), 1, + STATE(3354), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5492), 17, + ACTIONS(5253), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354866,52 +341057,51 @@ 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, - [123997] = 16, + [118675] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3451), 1, + STATE(3355), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5492), 16, + ACTIONS(5253), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354927,34 +341117,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124073] = 11, + [118749] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6300), 1, + anon_sym_bit_DASHand2, + ACTIONS(6302), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3452), 1, + STATE(3356), 1, sym_comment, - ACTIONS(5458), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5456), 28, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6294), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354967,99 +341175,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124139] = 12, + [118825] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - STATE(3453), 1, + STATE(3357), 1, sym_comment, - STATE(3476), 1, - aux_sym_shebang_repeat1, - ACTIONS(5462), 2, + ACTIONS(5203), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5460), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [124207] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3454), 1, - sym_comment, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5458), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5456), 31, + ACTIONS(5201), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355072,8 +341216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355086,34 +341230,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124267] = 9, + [118889] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - STATE(3455), 1, + STATE(3358), 1, sym_comment, - STATE(3477), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5462), 3, + ACTIONS(5203), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5460), 30, + ACTIONS(5201), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355127,6 +341266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355144,136 +341284,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124329] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3456), 1, - sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [124397] = 13, + [118947] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - STATE(3457), 1, + STATE(3359), 1, sym_comment, - STATE(3478), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6324), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5460), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [124467] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3458), 1, - sym_comment, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5458), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5456), 33, + ACTIONS(5201), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355286,46 +341326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124523] = 7, + [119013] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - STATE(3459), 1, + STATE(3360), 1, sym_comment, - STATE(3479), 1, - aux_sym_shebang_repeat1, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5462), 5, + ACTIONS(5203), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5460), 32, + ACTIONS(5201), 34, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355339,6 +341368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355358,52 +341388,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124581] = 17, + [119067] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3460), 1, + STATE(3361), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6324), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6330), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5456), 15, + ACTIONS(5201), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355416,57 +341444,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [124659] = 18, + [119143] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - STATE(3461), 1, + ACTIONS(6338), 1, + anon_sym_and2, + STATE(3362), 1, sym_comment, - STATE(3480), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6324), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6330), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 14, + ACTIONS(5201), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355478,57 +341506,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [124739] = 18, + [119221] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6537), 1, + ACTIONS(6338), 1, anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3462), 1, + ACTIONS(6340), 1, + anon_sym_xor2, + STATE(3363), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6324), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6330), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5456), 14, + ACTIONS(5201), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355541,58 +341569,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [124819] = 19, + [119301] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - STATE(3463), 1, + STATE(3364), 1, sym_comment, - STATE(3481), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6324), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 13, + ACTIONS(5201), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355604,58 +341618,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, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [124901] = 19, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119369] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, - anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - ACTIONS(6539), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3464), 1, + STATE(3365), 1, sym_comment, - ACTIONS(6457), 2, + ACTIONS(5203), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5456), 13, + ACTIONS(5201), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355668,59 +341661,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [124983] = 20, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119431] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - ACTIONS(6521), 1, - anon_sym_xor2, - STATE(3465), 1, + STATE(3366), 1, sym_comment, - STATE(3482), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6324), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6330), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 12, + ACTIONS(5201), 19, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355732,44 +341730,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [125067] = 13, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [119501] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3466), 1, + ACTIONS(6332), 1, + anon_sym_bit_DASHand2, + STATE(3367), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, + ACTIONS(6324), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6330), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5456), 20, + ACTIONS(5201), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355782,53 +341789,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125137] = 14, + [119573] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(6493), 1, + ACTIONS(6312), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6320), 1, anon_sym_PLUS2, - STATE(3467), 1, + ACTIONS(6332), 1, + anon_sym_bit_DASHand2, + ACTIONS(6334), 1, + anon_sym_bit_DASHxor2, + STATE(3368), 1, sym_comment, - STATE(3483), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + ACTIONS(6314), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6316), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6318), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6322), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6324), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6507), 4, + ACTIONS(6330), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6328), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 19, + ACTIONS(5201), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355840,39 +341849,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125209] = 10, + [119647] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(3282), 1, aux_sym_shebang_repeat1, - STATE(3468), 1, + STATE(3369), 1, sym_comment, - ACTIONS(5458), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5456), 30, - sym__newline, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6280), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6282), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355884,50 +341904,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125273] = 11, + [119719] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(6493), 1, - anon_sym_DASH2, - ACTIONS(6501), 1, - anon_sym_PLUS2, - STATE(3469), 1, + STATE(3370), 1, sym_comment, - STATE(3484), 1, - aux_sym_shebang_repeat1, - ACTIONS(5462), 2, + ACTIONS(2413), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6495), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6497), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5460), 29, + anon_sym_PLUS2, + ACTIONS(5017), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -355939,6 +341936,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2415), 23, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -355952,111 +341952,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125339] = 14, + [119773] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3470), 1, + STATE(3371), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5456), 18, + ACTIONS(6342), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125411] = 15, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [119823] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5383), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(3471), 1, - sym_comment, - STATE(3485), 1, + STATE(3286), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3372), 1, + sym_comment, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 17, + ACTIONS(5227), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -356074,109 +342067,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125485] = 15, + [119897] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3472), 1, - sym_comment, - ACTIONS(6457), 2, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6344), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5456), 17, + ACTIONS(6346), 1, + anon_sym_AT, + STATE(3373), 1, + sym_comment, + STATE(6647), 1, + sym__all_type, + STATE(7398), 1, + sym_param_cmd, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(7211), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [119961] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3374), 1, + sym_comment, + ACTIONS(6348), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125559] = 16, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120011] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3375), 1, + sym_comment, + ACTIONS(6350), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120061] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5383), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - STATE(3473), 1, - sym_comment, - STATE(3486), 1, + STATE(3288), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3376), 1, + sym_comment, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 16, + ACTIONS(5227), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -356193,112 +342275,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125635] = 16, + [120137] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3474), 1, + ACTIONS(6205), 1, + anon_sym_LBRACK, + ACTIONS(6211), 1, + anon_sym_list, + STATE(3377), 1, + sym_comment, + STATE(7437), 1, + sym__one_type, + STATE(7438), 1, + sym__multiple_types, + STATE(7681), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [120201] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6352), 1, + anon_sym_DOT, + ACTIONS(6356), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6358), 1, + aux_sym__immediate_decimal_token5, + STATE(3378), 1, sym_comment, - ACTIONS(6457), 2, + STATE(3495), 1, + sym__immediate_decimal, + ACTIONS(6354), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1880), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6465), 2, + anon_sym_PLUS2, + ACTIONS(1583), 24, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5456), 16, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120271] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3379), 1, + sym_comment, + ACTIONS(6360), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [125711] = 17, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120321] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5383), 1, sym__newline, - ACTIONS(6493), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6501), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6513), 1, + ACTIONS(6288), 1, anon_sym_bit_DASHand2, - ACTIONS(6515), 1, + ACTIONS(6290), 1, anon_sym_bit_DASHxor2, - STATE(3475), 1, - sym_comment, - STATE(3487), 1, + STATE(3290), 1, aux_sym_shebang_repeat1, - ACTIONS(6495), 2, + STATE(3380), 1, + sym_comment, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6497), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, + ACTIONS(6280), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6511), 2, + ACTIONS(6286), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6509), 4, + ACTIONS(6284), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5460), 15, + ACTIONS(5227), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -356314,82 +342494,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [125789] = 11, + [120399] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3476), 1, + STATE(3381), 1, sym_comment, - ACTIONS(5498), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5496), 28, + ACTIONS(6362), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [125855] = 8, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120449] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3477), 1, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(6364), 1, + anon_sym_GT2, + STATE(3382), 1, sym_comment, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 3, + STATE(6895), 1, + sym__all_type, + STATE(7451), 1, + sym_param_cmd, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(7211), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [120513] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(6366), 1, + anon_sym_GT2, + STATE(3383), 1, + sym_comment, + STATE(6751), 1, + sym__all_type, + STATE(7522), 1, + sym_param_cmd, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(7211), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [120577] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + STATE(3384), 1, + sym_comment, + ACTIONS(1653), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5496), 31, + ACTIONS(1665), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356401,7 +342675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -356416,43 +342689,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125915] = 12, + [120631] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3385), 1, + sym_comment, + ACTIONS(6368), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120681] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3478), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6457), 2, + ACTIONS(5241), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 24, + ACTIONS(5239), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356472,29 +342791,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125983] = 6, + [120747] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(3386), 1, aux_sym_shebang_repeat1, - STATE(3479), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5498), 5, + ACTIONS(5229), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5496), 33, - sym__newline, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5227), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -356506,7 +342840,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_in2, anon_sym_and2, anon_sym_xor2, @@ -356520,59 +342853,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126039] = 17, + [120815] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6272), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(3480), 1, + STATE(3388), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6264), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6270), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6278), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6298), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6294), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5496), 15, + ACTIONS(5239), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356588,54 +342917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [126117] = 18, + [120893] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, - anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3481), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6457), 2, + ACTIONS(2413), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5496), 14, + anon_sym_PLUS2, + ACTIONS(5017), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356647,166 +342941,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_xor2, - anon_sym_or2, - [126197] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(2415), 23, anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, - anon_sym_bit_DASHor2, - ACTIONS(6537), 1, + anon_sym_in2, anon_sym_and2, - ACTIONS(6539), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3482), 1, - sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5496), 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_or2, - [126279] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3483), 1, - sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5496), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126349] = 10, + [120946] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + STATE(3390), 1, + sym_comment, + STATE(3395), 1, aux_sym_shebang_repeat1, - STATE(3484), 1, + STATE(7050), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [121007] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6372), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6374), 1, + aux_sym__immediate_decimal_token5, + STATE(3391), 1, sym_comment, - ACTIONS(5498), 2, + STATE(3525), 1, + sym__immediate_decimal, + ACTIONS(6370), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5496), 30, + anon_sym_PLUS2, + ACTIONS(1583), 24, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356819,111 +343063,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126413] = 14, + [121074] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6380), 1, + anon_sym_list, + STATE(3392), 1, + sym_comment, + STATE(3484), 1, aux_sym_shebang_repeat1, - STATE(3485), 1, + STATE(4485), 1, + sym__type_annotation, + ACTIONS(6378), 2, + anon_sym_table, + anon_sym_record, + STATE(4644), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6376), 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, + [121135] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6380), 1, + anon_sym_list, + STATE(3392), 1, + aux_sym_shebang_repeat1, + STATE(3393), 1, + sym_comment, + STATE(4488), 1, + sym__type_annotation, + ACTIONS(6378), 2, + anon_sym_table, + anon_sym_record, + STATE(4644), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6376), 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, + [121196] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6372), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6374), 1, + aux_sym__immediate_decimal_token5, + STATE(3394), 1, sym_comment, - ACTIONS(6457), 2, + STATE(3531), 1, + sym__immediate_decimal, + ACTIONS(6370), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2043), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6465), 2, + anon_sym_PLUS2, + ACTIONS(1619), 24, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5496), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126485] = 15, + [121263] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + STATE(3395), 1, + sym_comment, + STATE(3484), 1, + aux_sym_shebang_repeat1, + STATE(6648), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [121324] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3486), 1, + STATE(3396), 1, sym_comment, - ACTIONS(6457), 2, + ACTIONS(5203), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5496), 17, + ACTIONS(5201), 28, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356935,56 +343320,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126559] = 16, + [121387] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + STATE(3397), 1, + sym_comment, + STATE(3409), 1, + aux_sym_shebang_repeat1, + STATE(6667), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [121448] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6469), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6531), 1, + ACTIONS(6402), 1, anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3487), 1, + STATE(3398), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6465), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, + ACTIONS(6394), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6400), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5496), 16, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356996,36 +343440,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126635] = 10, + [121519] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, - anon_sym_DASH2, - ACTIONS(6549), 1, - anon_sym_PLUS2, - STATE(3488), 1, + STATE(3399), 1, sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 29, + ACTIONS(5203), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5201), 31, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357037,9 +343476,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357052,43 +343490,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126699] = 7, + [121576] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3489), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6404), 1, + anon_sym_DOT, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token5, + STATE(3400), 1, sym_comment, - ACTIONS(6543), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6545), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 3, + STATE(3505), 1, + sym__immediate_decimal, + ACTIONS(6406), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3535), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5426), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, + ACTIONS(1583), 23, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357101,41 +343542,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126757] = 11, + [121645] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - STATE(3490), 1, + STATE(3401), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6555), 4, + ACTIONS(6398), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5426), 25, + ACTIONS(5201), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357147,9 +343593,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_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357161,21 +343605,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126823] = 5, + [121710] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3402), 1, sym_comment, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5428), 5, + ACTIONS(5203), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5426), 34, + ACTIONS(5201), 33, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357187,10 +343632,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357210,50 +343653,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126877] = 16, + [121763] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6211), 1, + anon_sym_list, + STATE(3403), 1, + sym_comment, + STATE(3404), 1, + aux_sym__multiple_types_repeat2, + STATE(6960), 1, + sym__one_type, + STATE(7761), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [121824] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6418), 1, + anon_sym_list, + STATE(7246), 1, + sym__one_type, + STATE(7761), 1, + sym__type_annotation, + ACTIONS(6415), 2, + anon_sym_table, + anon_sym_record, + STATE(3404), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6412), 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, + [121883] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6561), 1, + ACTIONS(6402), 1, anon_sym_bit_DASHand2, - ACTIONS(6563), 1, + ACTIONS(6421), 1, anon_sym_bit_DASHxor2, - ACTIONS(6565), 1, + ACTIONS(6423), 1, anon_sym_bit_DASHor2, - STATE(3492), 1, + STATE(3405), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6559), 2, + ACTIONS(6400), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5426), 16, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357265,57 +343812,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [126953] = 17, + [121958] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6561), 1, + ACTIONS(6402), 1, anon_sym_bit_DASHand2, - ACTIONS(6563), 1, + ACTIONS(6421), 1, anon_sym_bit_DASHxor2, - ACTIONS(6565), 1, - anon_sym_bit_DASHor2, - ACTIONS(6567), 1, - anon_sym_and2, - STATE(3493), 1, + STATE(3406), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6559), 2, + ACTIONS(6400), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5426), 15, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357327,107 +343869,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, - [127031] = 18, + anon_sym_bit_DASHor2, + [122031] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6561), 1, + ACTIONS(6402), 1, anon_sym_bit_DASHand2, - ACTIONS(6563), 1, + ACTIONS(6421), 1, anon_sym_bit_DASHxor2, - ACTIONS(6565), 1, + ACTIONS(6423), 1, anon_sym_bit_DASHor2, - ACTIONS(6567), 1, + ACTIONS(6425), 1, anon_sym_and2, - ACTIONS(6569), 1, - anon_sym_xor2, - STATE(3494), 1, + STATE(3407), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6559), 2, + ACTIONS(6400), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5426), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [127111] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6541), 1, - anon_sym_DASH2, - ACTIONS(6549), 1, - anon_sym_PLUS2, - STATE(3495), 1, - sym_comment, - ACTIONS(6543), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6545), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6555), 4, + ACTIONS(6398), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6557), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 21, + ACTIONS(5201), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357439,38 +343931,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_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127179] = 9, + [122108] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, - anon_sym_DASH2, - ACTIONS(6549), 1, - anon_sym_PLUS2, - STATE(3496), 1, + STATE(3408), 1, sym_comment, - ACTIONS(5428), 2, + ACTIONS(2257), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6543), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6545), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5426), 31, + anon_sym_PLUS2, + ACTIONS(2259), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357482,9 +343957,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_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357497,49 +343971,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127241] = 13, + [122159] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6211), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + STATE(3409), 1, + sym_comment, + STATE(3484), 1, + aux_sym_shebang_repeat1, + STATE(7051), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [122220] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - STATE(3497), 1, + ACTIONS(6402), 1, + anon_sym_bit_DASHand2, + ACTIONS(6421), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6423), 1, + anon_sym_bit_DASHor2, + ACTIONS(6425), 1, + anon_sym_and2, + ACTIONS(6427), 1, + anon_sym_xor2, + STATE(3410), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6559), 2, + ACTIONS(6400), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5426), 19, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357551,54 +344092,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, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127311] = 14, + [122299] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6561), 1, - anon_sym_bit_DASHand2, - STATE(3498), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6559), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5426), 18, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357610,55 +344140,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127383] = 15, + [122366] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6541), 1, + ACTIONS(6382), 1, anon_sym_DASH2, - ACTIONS(6549), 1, + ACTIONS(6390), 1, anon_sym_PLUS2, - ACTIONS(6561), 1, + STATE(3412), 1, + sym_comment, + ACTIONS(5203), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6384), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6386), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6388), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5201), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(6563), 1, anon_sym_bit_DASHxor2, - STATE(3499), 1, + anon_sym_bit_DASHor2, + [122427] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6382), 1, + anon_sym_DASH2, + ACTIONS(6390), 1, + anon_sym_PLUS2, + STATE(3413), 1, sym_comment, - ACTIONS(6543), 2, + ACTIONS(6384), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6545), 2, + ACTIONS(6386), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, + ACTIONS(6388), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, + ACTIONS(6392), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, + ACTIONS(6394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6559), 2, + ACTIONS(6400), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, + ACTIONS(6396), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5426), 17, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357670,23 +344250,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127457] = 3, + [122496] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3500), 1, - sym_comment, - ACTIONS(6571), 41, + ACTIONS(6248), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6380), 1, + anon_sym_list, + STATE(3414), 1, + sym_comment, + STATE(3484), 1, + aux_sym_shebang_repeat1, + STATE(4498), 1, + sym__type_annotation, + ACTIONS(6378), 2, + anon_sym_table, + anon_sym_record, + STATE(4644), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6376), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -357716,24 +344306,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_LBRACE, - anon_sym_RBRACE, - [127507] = 3, + [122557] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3501), 1, - sym_comment, - ACTIONS(6573), 41, + ACTIONS(6248), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6380), 1, + anon_sym_list, + STATE(3414), 1, + aux_sym_shebang_repeat1, + STATE(3415), 1, + sym_comment, + STATE(4486), 1, + sym__type_annotation, + ACTIONS(6378), 2, + anon_sym_table, + anon_sym_record, + STATE(4644), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6376), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -357763,83 +344358,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [127557] = 3, + [122618] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3502), 1, + STATE(3416), 1, sym_comment, - ACTIONS(6575), 41, + ACTIONS(2249), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2253), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [127607] = 10, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122669] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, + ACTIONS(6211), 1, anon_sym_list, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_GT2, - STATE(3503), 1, + STATE(3404), 1, + aux_sym__multiple_types_repeat2, + STATE(3417), 1, sym_comment, - STATE(7534), 1, - sym__all_type, - STATE(8407), 1, - sym_param_cmd, - ACTIONS(6410), 2, + STATE(7199), 1, + sym__one_type, + STATE(7761), 1, + sym__type_annotation, + ACTIONS(6209), 2, anon_sym_table, anon_sym_record, - STATE(8129), 3, + STATE(6197), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6207), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -357871,42 +344459,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [127671] = 13, + [122730] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(1621), 1, aux_sym_unquoted_token2, - ACTIONS(4702), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(6579), 1, - anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6431), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6585), 1, + ACTIONS(6433), 1, aux_sym__immediate_decimal_token5, - STATE(3504), 1, + STATE(3418), 1, sym_comment, - STATE(3709), 1, + STATE(3666), 1, sym__immediate_decimal, - ACTIONS(6581), 2, + ACTIONS(6429), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2006), 2, + STATE(2043), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1617), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 24, - sym__newline, + ACTIONS(1619), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357928,43 +344513,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127741] = 10, + [122796] = 22, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3505), 1, + ACTIONS(3212), 1, + aux_sym_unquoted_token1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4127), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + STATE(3419), 1, + sym_comment, + STATE(5596), 1, + sym__val_number_decimal, + STATE(5727), 1, + sym_val_variable, + STATE(5728), 1, + sym_unquoted, + STATE(7459), 1, + sym__val_range, + STATE(7461), 1, + sym__unquoted_anonymous_prefix, + STATE(7507), 1, + sym_val_bool, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5744), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122882] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6437), 1, + anon_sym_DOT, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + STATE(3420), 1, sym_comment, - ACTIONS(5494), 2, + ACTIONS(1599), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5492), 30, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 29, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -357977,94 +344612,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127805] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [122936] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6587), 1, + ACTIONS(6441), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6589), 1, + ACTIONS(6443), 1, aux_sym__immediate_decimal_token2, - STATE(3506), 1, + STATE(3421), 1, sym_comment, - ACTIONS(1661), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1623), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1663), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1625), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + sym_duration_unit, + [122990] = 22, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3212), 1, + aux_sym_unquoted_token1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(4127), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + STATE(3422), 1, + sym_comment, + STATE(5596), 1, + sym__val_number_decimal, + STATE(5727), 1, + sym_val_variable, + STATE(5728), 1, + sym_unquoted, + STATE(7459), 1, + sym__val_range, + STATE(7461), 1, + sym__unquoted_anonymous_prefix, + STATE(7507), 1, + sym_val_bool, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5744), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [127860] = 12, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123076] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(6593), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4554), 1, + anon_sym_DOT, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6595), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - STATE(3507), 1, + STATE(3423), 1, sym_comment, - STATE(3943), 1, + STATE(3522), 1, sym__immediate_decimal, - ACTIONS(6591), 2, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2133), 2, + STATE(3535), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1569), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1657), 24, - sym__newline, + ACTIONS(1583), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358086,30 +344791,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127927] = 4, + [123142] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3508), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6431), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6433), 1, + aux_sym__immediate_decimal_token5, + STATE(3424), 1, sym_comment, - ACTIONS(1000), 8, + STATE(3601), 1, + sym__immediate_decimal, + ACTIONS(6429), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1002), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1583), 23, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358131,42 +344845,39 @@ 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, - [127978] = 12, + [123208] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6597), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(6601), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6603), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - STATE(3509), 1, + STATE(3425), 1, sym_comment, - STATE(3887), 1, + STATE(3534), 1, sym__immediate_decimal, - ACTIONS(6599), 2, + ACTIONS(6406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4094), 2, + STATE(3533), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1587), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 24, - anon_sym_DASH_DASH, + ACTIONS(1597), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358188,27 +344899,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128045] = 9, + [123274] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3510), 1, + STATE(3426), 1, sym_comment, - STATE(3511), 1, - aux_sym__multiple_types_repeat2, - STATE(7474), 1, - sym__one_type, - STATE(8449), 1, - sym__type_annotation, - ACTIONS(6410), 2, + STATE(5899), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358240,26 +344947,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128106] = 8, + [123329] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6611), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(8172), 1, - sym__one_type, - STATE(8449), 1, - sym__type_annotation, - ACTIONS(6608), 2, + STATE(3427), 1, + sym_comment, + STATE(6012), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(3511), 2, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [123384] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3428), 1, sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6862), 3, + STATE(6124), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6605), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358291,30 +345043,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128165] = 4, + [123439] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3512), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3429), 1, + sym_comment, + STATE(6126), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [123494] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token5, + STATE(2110), 1, + sym__immediate_decimal, + STATE(3430), 1, sym_comment, - ACTIONS(1004), 8, + ACTIONS(6451), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2043), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1006), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1619), 23, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358336,29 +345143,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, - [128216] = 9, + [123557] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3511), 1, - aux_sym__multiple_types_repeat2, - STATE(3513), 1, + STATE(3431), 1, sym_comment, - STATE(7666), 1, - sym__one_type, - STATE(8449), 1, + STATE(7303), 1, sym__type_annotation, - ACTIONS(6410), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(7218), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358390,27 +345191,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128277] = 9, + [123612] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, - sym__newline, - ACTIONS(6618), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3514), 1, + STATE(3432), 1, sym_comment, - STATE(3662), 1, - aux_sym_shebang_repeat1, - STATE(4993), 1, - sym__type_annotation, - ACTIONS(6616), 2, + STATE(5881), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [123667] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3433), 1, + sym_comment, + STATE(5897), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(5115), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6614), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358442,27 +345287,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128338] = 9, + [123722] = 21, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3358), 1, + aux_sym_unquoted_token1, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(5831), 1, + anon_sym_DOT_DOT, ACTIONS(6453), 1, - sym__newline, - ACTIONS(6618), 1, + anon_sym_DOLLAR, + STATE(3434), 1, + sym_comment, + STATE(5578), 1, + sym__val_number_decimal, + STATE(6053), 1, + sym_val_variable, + STATE(6063), 1, + sym_unquoted, + STATE(7507), 1, + sym_val_bool, + STATE(7514), 1, + sym__val_range, + STATE(7542), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5833), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5835), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123805] = 21, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3212), 1, + aux_sym_unquoted_token1, + ACTIONS(3944), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3946), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3948), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3950), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4127), 1, + anon_sym_DOT_DOT, + ACTIONS(5724), 1, + sym_val_date, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + STATE(3435), 1, + sym_comment, + STATE(5596), 1, + sym__val_number_decimal, + STATE(5727), 1, + sym_val_variable, + STATE(5728), 1, + sym_unquoted, + STATE(7459), 1, + sym__val_range, + STATE(7461), 1, + sym__unquoted_anonymous_prefix, + STATE(7507), 1, + sym_val_bool, + ACTIONS(3942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4129), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5744), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2672), 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(2674), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123888] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, anon_sym_list, - STATE(3515), 1, + STATE(3436), 1, sym_comment, - STATE(3524), 1, - aux_sym_shebang_repeat1, - STATE(4994), 1, - sym__type_annotation, - ACTIONS(6616), 2, + STATE(5825), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(5115), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6614), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358494,27 +345459,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128399] = 9, + [123943] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, + ACTIONS(6449), 1, anon_sym_list, - ACTIONS(6453), 1, - sym__newline, - STATE(3516), 1, + STATE(3437), 1, sym_comment, - STATE(3527), 1, - aux_sym_shebang_repeat1, - STATE(7312), 1, - sym__type_annotation, - ACTIONS(6410), 2, + STATE(5853), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6445), 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, + [123998] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6455), 1, + sym__entry_separator, + STATE(3438), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2327), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358544,42 +345547,42 @@ 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, - [128460] = 12, + anon_sym_record, + anon_sym_list, + [124047] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(6593), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6595), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - STATE(3517), 1, - sym_comment, - STATE(3858), 1, + STATE(2025), 1, sym__immediate_decimal, - ACTIONS(6591), 2, + STATE(3439), 1, + sym_comment, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2123), 2, + STATE(2024), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1587), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 24, - sym__newline, + ACTIONS(1597), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358601,40 +345604,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128527] = 12, + [124110] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6473), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(6475), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(6481), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6620), 1, - anon_sym_DOT, - STATE(3518), 1, - sym_comment, - STATE(3822), 1, + STATE(2038), 1, sym__immediate_decimal, - ACTIONS(6479), 2, + STATE(3440), 1, + sym_comment, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3824), 2, + STATE(2037), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1685), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 24, - anon_sym_DASH_DASH, + ACTIONS(1687), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358656,40 +345656,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128594] = 12, + [124173] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6597), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(6601), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6603), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - STATE(3519), 1, + STATE(2040), 1, + sym__immediate_decimal, + STATE(3441), 1, sym_comment, - STATE(3892), 1, + ACTIONS(6451), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2039), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1691), 23, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124236] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token5, + STATE(2042), 1, sym__immediate_decimal, - ACTIONS(6599), 2, + STATE(3442), 1, + sym_comment, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4117), 2, + STATE(2041), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1693), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1657), 24, - anon_sym_DASH_DASH, + ACTIONS(1695), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358711,41 +345760,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128661] = 13, + [124299] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3443), 1, + sym_comment, + STATE(5914), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [124354] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_list, + STATE(3444), 1, + sym_comment, + STATE(7391), 1, + sym__type_annotation, + ACTIONS(6209), 2, + anon_sym_table, + anon_sym_record, + STATE(6197), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6207), 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, + [124409] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, aux_sym_unquoted_token2, - ACTIONS(3697), 1, + ACTIONS(6458), 1, + anon_sym_DOT_DOT2, + ACTIONS(6462), 1, + sym_filesize_unit, + ACTIONS(6464), 1, + sym_duration_unit, + STATE(3445), 1, + sym_comment, + STATE(7290), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6460), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1665), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124472] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(6579), 1, - anon_sym_DOT, - ACTIONS(6583), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6585), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - STATE(3520), 1, - sym_comment, - STATE(3709), 1, + STATE(2106), 1, sym__immediate_decimal, - ACTIONS(6581), 2, + STATE(3446), 1, + sym_comment, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2006), 2, + STATE(2026), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1569), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 23, + ACTIONS(1583), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358767,32 +345960,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128730] = 4, + [124535] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3521), 1, + ACTIONS(6466), 1, + aux_sym__immediate_decimal_token2, + STATE(3447), 1, sym_comment, - ACTIONS(2272), 5, + ACTIONS(1709), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2274), 35, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 29, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358805,6 +345993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -358814,32 +346003,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128781] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124586] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3522), 1, + ACTIONS(6468), 1, + anon_sym_DOT, + ACTIONS(6470), 1, + aux_sym__immediate_decimal_token2, + STATE(3448), 1, sym_comment, - ACTIONS(2234), 5, + ACTIONS(1599), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2238), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 28, anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358852,6 +346040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -358861,27 +346050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128832] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124639] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, - sym__newline, - ACTIONS(6618), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3514), 1, - aux_sym_shebang_repeat1, - STATE(3523), 1, + STATE(3449), 1, sym_comment, - STATE(5029), 1, - sym__type_annotation, - ACTIONS(6616), 2, + STATE(5883), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(5115), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6614), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358913,27 +346101,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128893] = 9, + [124694] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6453), 1, - sym__newline, - ACTIONS(6618), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3524), 1, + STATE(3450), 1, sym_comment, - STATE(3662), 1, - aux_sym_shebang_repeat1, - STATE(5032), 1, - sym__type_annotation, - ACTIONS(6616), 2, + STATE(5885), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(5115), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6614), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -358965,130 +346149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128954] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - STATE(3525), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129017] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3526), 1, - sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5426), 31, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129074] = 9, + [124749] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, + ACTIONS(6449), 1, anon_sym_list, - ACTIONS(6453), 1, - sym__newline, - STATE(3527), 1, + STATE(3451), 1, sym_comment, - STATE(3662), 1, - aux_sym_shebang_repeat1, - STATE(7775), 1, - sym__type_annotation, - ACTIONS(6410), 2, + STATE(6068), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -359120,378 +346197,604 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129135] = 11, + [124804] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - STATE(3528), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3452), 1, sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129200] = 5, + STATE(5952), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [124859] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3529), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3453), 1, sym_comment, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5428), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5426), 33, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129253] = 16, + STATE(5990), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [124914] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - ACTIONS(6642), 1, - anon_sym_bit_DASHand2, - ACTIONS(6644), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6646), 1, - anon_sym_bit_DASHor2, - STATE(3530), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3454), 1, sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 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, - [129328] = 17, + STATE(5991), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [124969] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - ACTIONS(6642), 1, - anon_sym_bit_DASHand2, - ACTIONS(6644), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6646), 1, - anon_sym_bit_DASHor2, - ACTIONS(6648), 1, - anon_sym_and2, - STATE(3531), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3455), 1, sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 14, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [129405] = 18, + STATE(6067), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125024] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - ACTIONS(6642), 1, - anon_sym_bit_DASHand2, - ACTIONS(6644), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6646), 1, - anon_sym_bit_DASHor2, - ACTIONS(6648), 1, - anon_sym_and2, - ACTIONS(6650), 1, - anon_sym_xor2, - STATE(3532), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3456), 1, sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 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, - [129484] = 12, + STATE(5950), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125079] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - STATE(3533), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3457), 1, sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129551] = 9, + STATE(5821), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125134] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - STATE(3534), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3458), 1, + sym_comment, + STATE(5829), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125189] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3459), 1, + sym_comment, + STATE(5898), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125244] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3460), 1, + sym_comment, + STATE(5962), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125299] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3461), 1, + sym_comment, + STATE(5966), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125354] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3462), 1, + sym_comment, + STATE(6062), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125409] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3463), 1, + sym_comment, + STATE(6064), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125464] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6474), 1, + aux_sym__immediate_decimal_token2, + STATE(3464), 1, sym_comment, - ACTIONS(5428), 2, + ACTIONS(1623), 8, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6624), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5426), 30, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 28, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359504,88 +346807,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129612] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - STATE(3535), 1, - sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129681] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [125517] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6412), 1, + ACTIONS(6449), 1, anon_sym_list, - ACTIONS(6453), 1, - sym__newline, - STATE(3536), 1, + STATE(3465), 1, sym_comment, - STATE(3544), 1, - aux_sym_shebang_repeat1, - STATE(7783), 1, - sym__type_annotation, - ACTIONS(6410), 2, + STATE(5893), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6862), 3, + STATE(6767), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -359617,30 +346868,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129742] = 4, + [125572] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3537), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3466), 1, + sym_comment, + STATE(5919), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6767), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 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, + [125627] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6439), 1, + aux_sym__immediate_decimal_token2, + STATE(3467), 1, sym_comment, - ACTIONS(986), 8, + ACTIONS(1599), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(988), 32, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 29, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359653,6 +346949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -359664,82 +346961,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [129793] = 6, + sym_duration_unit, + [125678] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6652), 1, - anon_sym_DOT, - ACTIONS(6654), 1, + ACTIONS(6476), 1, aux_sym__immediate_decimal_token2, - STATE(3538), 1, + STATE(3468), 1, sym_comment, - ACTIONS(1669), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1709), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + ACTIONS(1711), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [129848] = 5, + [125728] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3539), 1, + ACTIONS(6478), 1, + anon_sym_DOT, + ACTIONS(6480), 1, + aux_sym__immediate_decimal_token2, + STATE(3469), 1, sym_comment, - ACTIONS(2454), 5, + ACTIONS(1735), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5276), 12, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 28, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2456), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359752,6 +347041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -359761,39 +347051,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129901] = 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125780] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - ACTIONS(6656), 1, - anon_sym_DOT, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(3540), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + ACTIONS(6482), 1, + anon_sym_DOT_DOT2, + ACTIONS(6486), 1, + sym_filesize_unit, + ACTIONS(6488), 1, + sym_duration_unit, + STATE(3470), 1, sym_comment, - STATE(3791), 1, - sym__immediate_decimal, - ACTIONS(6658), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3950), 2, + STATE(7290), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(6484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 23, + ACTIONS(1665), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -359817,167 +347104,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129970] = 14, + [125842] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - ACTIONS(6642), 1, - anon_sym_bit_DASHand2, - STATE(3541), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6624), 2, + ACTIONS(1599), 8, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [130041] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - ACTIONS(6642), 1, - anon_sym_bit_DASHand2, - ACTIONS(6644), 1, - anon_sym_bit_DASHxor2, - STATE(3542), 1, - sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5426), 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, - [130114] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6473), 1, - anon_sym_DOLLAR, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6664), 1, - anon_sym_DOT, - STATE(3543), 1, - sym_comment, - STATE(3833), 1, - sym__immediate_decimal, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3832), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1643), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 29, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -359987,27 +347145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130181] = 9, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [125890] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_list, - ACTIONS(6453), 1, - sym__newline, - STATE(3544), 1, + ACTIONS(6490), 1, + anon_sym_RBRACK, + ACTIONS(6494), 1, + sym__entry_separator, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(3472), 1, sym_comment, - STATE(3662), 1, - aux_sym_shebang_repeat1, - STATE(7646), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 31, + ACTIONS(6492), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -360037,32 +347189,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, - [130242] = 4, + anon_sym_record, + anon_sym_list, + [125942] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3545), 1, + STATE(3473), 1, sym_comment, - ACTIONS(996), 8, + ACTIONS(1623), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(998), 32, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 29, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360075,6 +347225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360086,16 +347237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130293] = 6, + sym_duration_unit, + [125990] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6666), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6668), 1, - aux_sym__immediate_decimal_token2, - STATE(3546), 1, + STATE(3474), 1, sym_comment, - ACTIONS(1661), 8, + ACTIONS(1709), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -360104,7 +347252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1663), 29, + ACTIONS(1711), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -360134,39 +347282,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [130347] = 12, + [126038] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(6496), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(3475), 1, + sym_comment, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126090] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4706), 1, - anon_sym_DOT, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(3547), 1, + STATE(3476), 1, sym_comment, - STATE(3949), 1, - sym__immediate_decimal, - ACTIONS(6658), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3948), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1723), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 23, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1725), 29, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360179,6 +347359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360188,36 +347369,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130413] = 11, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126138] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(3548), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(6498), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(3477), 1, sym_comment, - STATE(4107), 1, - sym__immediate_decimal, - ACTIONS(6670), 2, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126190] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2479), 1, + sym__entry_separator, + STATE(3478), 1, + sym_comment, + ACTIONS(2477), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126238] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6500), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4104), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 6, + ACTIONS(6502), 1, + aux_sym__immediate_decimal_token2, + STATE(3479), 1, + sym_comment, + ACTIONS(1727), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1685), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360232,6 +347496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360241,38 +347506,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130477] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126290] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(3549), 1, + ACTIONS(6470), 1, + aux_sym__immediate_decimal_token2, + STATE(3480), 1, sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4113), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 6, + ACTIONS(1599), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1745), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360285,6 +347540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360294,39 +347550,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130541] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126340] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(6504), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(3481), 1, + sym_comment, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126392] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6674), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6676), 1, - aux_sym__immediate_decimal_token5, - STATE(3550), 1, + ACTIONS(6506), 1, + aux_sym__immediate_decimal_token2, + STATE(3482), 1, sym_comment, - STATE(4034), 1, - sym__immediate_decimal, - ACTIONS(6672), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1771), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1657), 23, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360339,6 +347631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360348,38 +347641,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130607] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126441] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(3551), 1, + STATE(3483), 1, sym_comment, - STATE(4109), 1, - sym__immediate_decimal, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4108), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 6, + ACTIONS(1599), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1741), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1601), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360392,6 +347673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360401,84 +347683,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130671] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6654), 1, - aux_sym__immediate_decimal_token2, - STATE(3552), 1, - sym_comment, - ACTIONS(1669), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1671), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130723] = 12, + [126488] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4762), 1, + ACTIONS(6508), 1, + sym__newline, + STATE(3484), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1264), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126535] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6511), 1, anon_sym_DOT, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(3553), 1, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token2, + STATE(3485), 1, sym_comment, - STATE(3940), 1, - sym__immediate_decimal, - ACTIONS(6658), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3950), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1735), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 23, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 27, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -360493,6 +347762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360502,38 +347772,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130789] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126586] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(3554), 1, + STATE(3486), 1, sym_comment, - STATE(4156), 1, - sym__immediate_decimal, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1623), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1625), 28, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360546,6 +347804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360555,96 +347814,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130853] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_unquoted_token1, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4315), 1, - anon_sym_DOT_DOT, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - STATE(3555), 1, - sym_comment, - STATE(6122), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_val_variable, - STATE(6277), 1, - sym_unquoted, - STATE(8344), 1, - sym__val_range, - STATE(8413), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4317), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5917), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2695), 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(2697), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [130939] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126633] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6680), 1, + ACTIONS(5952), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6111), 1, anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(1694), 1, - sym_cell_path, - STATE(3556), 1, + STATE(3487), 1, sym_comment, - STATE(3607), 1, - aux_sym_cell_path_repeat1, - ACTIONS(969), 6, + ACTIONS(1599), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(971), 29, - anon_sym_PIPE, + sym_filesize_unit, + ACTIONS(1601), 27, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -360669,143 +347861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130997] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_unquoted_token1, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4315), 1, - anon_sym_DOT_DOT, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - STATE(3557), 1, - sym_comment, - STATE(6122), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_val_variable, - STATE(6277), 1, - sym_unquoted, - STATE(8344), 1, - sym__val_range, - STATE(8413), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4317), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5917), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2695), 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(2697), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131083] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6682), 1, - aux_sym__immediate_decimal_token2, - STATE(3558), 1, - sym_comment, - ACTIONS(1711), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1713), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [131135] = 8, + [126684] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6680), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(1738), 1, - sym_cell_path, - STATE(3559), 1, + STATE(3488), 1, sym_comment, - STATE(3607), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1757), 6, + ACTIONS(1709), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1761), 29, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1711), 28, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -360819,6 +347892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360830,32 +347904,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131193] = 8, + sym_duration_unit, + [126731] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6680), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(1742), 1, - sym_cell_path, - STATE(3560), 1, + STATE(3489), 1, sym_comment, - STATE(3607), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1763), 6, + ACTIONS(1723), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(1765), 29, - anon_sym_PIPE, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1725), 28, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -360869,6 +347935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360880,29 +347947,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131251] = 6, + sym_duration_unit, + [126778] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(3490), 1, + sym_comment, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126827] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6684), 1, - anon_sym_DOT, - ACTIONS(6686), 1, + ACTIONS(6515), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6517), 1, aux_sym__immediate_decimal_token2, - STATE(3561), 1, + STATE(3491), 1, sym_comment, - ACTIONS(1669), 9, + ACTIONS(1727), 7, 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, aux_sym_unquoted_token2, - ACTIONS(1671), 28, - anon_sym_DASH_DASH, + ACTIONS(1729), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -360927,37 +348037,24 @@ 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, - [131305] = 11, + [126878] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(3562), 1, + ACTIONS(6480), 1, + aux_sym__immediate_decimal_token2, + STATE(3492), 1, sym_comment, - STATE(4127), 1, - sym__immediate_decimal, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4117), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1735), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1657), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360972,6 +348069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -360981,39 +348079,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131369] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126927] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, + STATE(3493), 1, + sym_comment, + ACTIONS(1275), 35, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [126971] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - ACTIONS(4704), 1, + ACTIONS(1821), 1, anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6674), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6676), 1, - aux_sym__immediate_decimal_token5, - STATE(3563), 1, + ACTIONS(6519), 1, + anon_sym_DOT_DOT2, + STATE(3494), 1, sym_comment, - STATE(4031), 1, - sym__immediate_decimal, - ACTIONS(6672), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(6521), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 23, + ACTIONS(1827), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361035,36 +348168,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131435] = 11, + [127025] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(3564), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(6523), 1, + anon_sym_DOT_DOT2, + STATE(3495), 1, sym_comment, - STATE(4170), 1, - sym__immediate_decimal, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4166), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(6525), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 24, - anon_sym_DASH_DASH, + ACTIONS(1802), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -361088,37 +348214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131499] = 12, + [127079] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4762), 1, - anon_sym_DOT, - STATE(2015), 1, - sym__immediate_decimal, - STATE(3565), 1, + STATE(3496), 1, sym_comment, - ACTIONS(4708), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1771), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 23, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -361133,6 +348244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -361142,39 +348254,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131565] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127125] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4706), 1, - anon_sym_DOT, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - STATE(1915), 1, - sym__immediate_decimal, - STATE(3566), 1, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token2, + STATE(3497), 1, sym_comment, - ACTIONS(4708), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1914), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1735), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 23, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361187,6 +348287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -361196,29 +348297,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131631] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127173] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6688), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6690), 1, + ACTIONS(6527), 1, aux_sym__immediate_decimal_token2, - STATE(3567), 1, + STATE(3498), 1, sym_comment, - ACTIONS(1661), 9, + ACTIONS(1771), 7, 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, aux_sym_unquoted_token2, - ACTIONS(1663), 28, - anon_sym_DASH_DASH, + ACTIONS(1773), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361243,26 +348342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131685] = 6, + [127221] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6692), 1, - anon_sym_DOT, - ACTIONS(6694), 1, - aux_sym__immediate_decimal_token2, - STATE(3568), 1, + STATE(3499), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(1735), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 29, + ACTIONS(1737), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -361291,72 +348384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131739] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3569), 1, - sym_comment, - STATE(6454), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [131794] = 5, + [127267] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6694), 1, - aux_sym__immediate_decimal_token2, - STATE(3570), 1, + STATE(3500), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(1786), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 29, + ACTIONS(1788), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -361385,24 +348426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131845] = 5, + [127313] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6702), 1, - aux_sym__immediate_decimal_token2, - STATE(3571), 1, + STATE(3501), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(1727), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1713), 29, + ACTIONS(1729), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -361431,26 +348468,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131896] = 6, + [127359] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6704), 1, - anon_sym_DOT, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token2, - STATE(3572), 1, + STATE(3502), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(1735), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1671), 28, + ACTIONS(1737), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -361478,26 +348509,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [131949] = 6, + [127404] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6708), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6710), 1, - aux_sym__immediate_decimal_token2, - STATE(3573), 1, + ACTIONS(6173), 1, + sym_filesize_unit, + ACTIONS(6175), 1, + sym_duration_unit, + ACTIONS(6529), 1, + anon_sym_DOT_DOT2, + STATE(3503), 1, sym_comment, - ACTIONS(1661), 8, + ACTIONS(6531), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1663), 28, + ACTIONS(1665), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -361513,7 +348545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -361523,402 +348554,73 @@ 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, - [132002] = 4, - ACTIONS(251), 1, + [127457] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3574), 1, + ACTIONS(6533), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6535), 1, + aux_sym__immediate_decimal_token2, + STATE(3504), 1, sym_comment, - ACTIONS(1669), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1671), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, + ACTIONS(1623), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1625), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132051] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3575), 1, - sym_comment, - STATE(6644), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132106] = 4, + [127506] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3576), 1, - sym_comment, - ACTIONS(1661), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - ACTIONS(1663), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132155] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3577), 1, - sym_comment, - STATE(6648), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132210] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3578), 1, - sym_comment, - STATE(6381), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132265] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3579), 1, - sym_comment, - ACTIONS(1711), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(6537), 1, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1713), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132314] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3580), 1, - sym_comment, - STATE(6383), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132369] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3581), 1, + STATE(3505), 1, sym_comment, - ACTIONS(1767), 11, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1769), 27, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + ACTIONS(6539), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132418] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6686), 1, - aux_sym__immediate_decimal_token2, - STATE(3582), 1, - sym_comment, - ACTIONS(1669), 9, + ACTIONS(1794), 5, 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, - aux_sym_unquoted_token2, - ACTIONS(1671), 28, - anon_sym_DASH_DASH, + ACTIONS(1802), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361931,7 +348633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -361941,40 +348642,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, - [132469] = 11, + [127559] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(6712), 1, - anon_sym_DOT_DOT2, - ACTIONS(6716), 1, - sym_filesize_unit, - ACTIONS(6718), 1, - sym_duration_unit, - ACTIONS(6720), 1, - aux_sym_unquoted_token2, - STATE(3583), 1, + STATE(3506), 1, sym_comment, - STATE(8140), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6714), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 6, + ACTIONS(1786), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 24, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361987,6 +348671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -361996,139 +348681,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132532] = 21, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127604] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3435), 1, - aux_sym_unquoted_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6033), 1, - anon_sym_DOT_DOT, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(3584), 1, + ACTIONS(6541), 1, + anon_sym_DOT, + ACTIONS(6543), 1, + aux_sym__immediate_decimal_token2, + STATE(3507), 1, sym_comment, - STATE(6344), 1, - sym__val_number_decimal, - STATE(6435), 1, - sym_val_variable, - STATE(6436), 1, - sym_unquoted, - STATE(8443), 1, - sym__val_range, - STATE(8468), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6035), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(6037), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2695), 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(2697), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132615] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(6724), 1, + ACTIONS(1599), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(6726), 1, + anon_sym_COLON2, + ACTIONS(1601), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - ACTIONS(6728), 1, + [127653] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - STATE(3585), 1, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(6545), 1, + anon_sym_DOT_DOT2, + STATE(3508), 1, sym_comment, - ACTIONS(4722), 2, + ACTIONS(6547), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 9, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1699), 23, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [132674] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6730), 1, - aux_sym__immediate_decimal_token2, - STATE(3586), 1, - sym_comment, - ACTIONS(1711), 9, + ACTIONS(1819), 5, 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, - aux_sym_unquoted_token2, - ACTIONS(1713), 28, - anon_sym_DASH_DASH, + ACTIONS(1827), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362141,7 +348762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -362151,289 +348771,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, - [132725] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3239), 1, - aux_sym_unquoted_token1, - ACTIONS(3901), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3903), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3905), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3907), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4315), 1, - anon_sym_DOT_DOT, - ACTIONS(5919), 1, - sym_val_date, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - STATE(3587), 1, - sym_comment, - STATE(6122), 1, - sym__val_number_decimal, - STATE(6276), 1, - sym_val_variable, - STATE(6277), 1, - sym_unquoted, - STATE(8344), 1, - sym__val_range, - STATE(8413), 1, - sym__unquoted_anonymous_prefix, - STATE(8530), 1, - sym_val_bool, - ACTIONS(3899), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4317), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5917), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2695), 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(2697), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132808] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3588), 1, - sym_comment, - STATE(6564), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132863] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3589), 1, - sym_comment, - STATE(6567), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132918] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3590), 1, - sym_comment, - STATE(8158), 1, - sym__type_annotation, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(8056), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [132973] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6732), 1, - sym__entry_separator, - STATE(3591), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2350), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [133022] = 11, + [127706] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2093), 1, - sym__immediate_decimal, - STATE(3592), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2090), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1727), 7, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 23, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 27, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -362448,6 +348800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -362457,85 +348810,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133085] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3593), 1, - sym_comment, - STATE(7173), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133140] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127751] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2140), 1, - sym__immediate_decimal, - STATE(3594), 1, - sym_comment, - ACTIONS(6735), 2, + ACTIONS(6549), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 6, + ACTIONS(6551), 1, + aux_sym__immediate_decimal_token2, + STATE(3510), 1, + sym_comment, + ACTIONS(1727), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1741), 23, + aux_sym_unquoted_token2, + ACTIONS(1729), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362548,6 +348845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -362557,37 +348855,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133203] = 11, + [127800] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2158), 1, - sym__immediate_decimal, - STATE(3595), 1, + ACTIONS(6553), 1, + anon_sym_DOT, + ACTIONS(6555), 1, + aux_sym__immediate_decimal_token2, + STATE(3511), 1, sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2097), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 6, + ACTIONS(1735), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1745), 23, + aux_sym_unquoted_token2, + ACTIONS(1737), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362600,6 +348888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -362609,85 +348898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133266] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3596), 1, - sym_comment, - STATE(7172), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133321] = 11, + [127849] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(6737), 1, - anon_sym_DOT_DOT2, - ACTIONS(6741), 1, - sym_filesize_unit, - ACTIONS(6743), 1, - sym_duration_unit, - STATE(3597), 1, + STATE(3512), 1, sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6739), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, + ACTIONS(1771), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 25, - sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 27, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362700,6 +348927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -362709,83 +348937,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133384] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3598), 1, - sym_comment, - STATE(6453), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133439] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127894] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2264), 1, - sym__immediate_decimal, - STATE(3599), 1, + ACTIONS(6557), 1, + anon_sym_DOT, + ACTIONS(6559), 1, + aux_sym__immediate_decimal_token2, + STATE(3513), 1, sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 6, + ACTIONS(1735), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1579), 23, + aux_sym_unquoted_token2, + ACTIONS(1737), 25, + anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -362800,6 +348971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -362809,325 +348981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133502] = 7, + [127942] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3600), 1, + ACTIONS(6555), 1, + aux_sym__immediate_decimal_token2, + STATE(3514), 1, sym_comment, - STATE(6460), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133557] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3601), 1, - sym_comment, - STATE(6462), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133612] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3602), 1, - sym_comment, - STATE(6463), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133667] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3603), 1, - sym_comment, - STATE(6465), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133722] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3604), 1, - sym_comment, - STATE(6471), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133777] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3605), 1, - sym_comment, - STATE(6472), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [133832] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2222), 1, - sym__immediate_decimal, - STATE(3606), 1, - sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1735), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1657), 23, + aux_sym_unquoted_token2, + ACTIONS(1737), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363140,6 +349012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -363149,30 +349022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133895] = 7, + [127988] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6680), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(3607), 1, + ACTIONS(6561), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token2, + STATE(3515), 1, sym_comment, - STATE(3608), 1, - aux_sym_cell_path_repeat1, - ACTIONS(982), 6, + ACTIONS(1727), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(984), 29, - anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(1729), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -363186,6 +349054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -363195,32 +349064,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [133950] = 6, + [128036] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6543), 1, + aux_sym__immediate_decimal_token2, + STATE(3516), 1, + sym_comment, + ACTIONS(1599), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1601), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [128082] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6565), 1, + aux_sym__immediate_decimal_token2, + STATE(3517), 1, + sym_comment, + ACTIONS(1709), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1711), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [128128] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6567), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6569), 1, + aux_sym__immediate_decimal_token2, + STATE(3518), 1, + sym_comment, + ACTIONS(1623), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1625), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [128176] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6745), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(3608), 2, + ACTIONS(6571), 1, + aux_sym__immediate_decimal_token2, + STATE(3519), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 6, + ACTIONS(1771), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(977), 29, - anon_sym_PIPE, + aux_sym_unquoted_token2, + ACTIONS(1773), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363233,6 +349219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -363242,567 +349229,65 @@ 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, - [134003] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3609), 1, - sym_comment, - STATE(6396), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134058] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3610), 1, - sym_comment, - STATE(6397), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134113] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3611), 1, - sym_comment, - STATE(6403), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134168] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3612), 1, - sym_comment, - STATE(6404), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134223] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3613), 1, - sym_comment, - STATE(6406), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134278] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3614), 1, - sym_comment, - STATE(6407), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134333] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3615), 1, - sym_comment, - STATE(6412), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134388] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3616), 1, - sym_comment, - STATE(6413), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134443] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_list, - STATE(3617), 1, - sym_comment, - STATE(8278), 1, - sym__type_annotation, - ACTIONS(6410), 2, - anon_sym_table, - anon_sym_record, - STATE(6862), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6408), 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, - [134498] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3618), 1, - sym_comment, - STATE(6543), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134553] = 7, - ACTIONS(251), 1, + [128222] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6700), 1, - anon_sym_list, - STATE(3619), 1, + ACTIONS(6573), 1, + anon_sym_DOT, + ACTIONS(6575), 1, + aux_sym__immediate_decimal_token2, + STATE(3520), 1, sym_comment, - STATE(6530), 1, - sym__all_type, - ACTIONS(6698), 2, - anon_sym_table, - anon_sym_record, - STATE(7962), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6696), 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, - [134608] = 11, - ACTIONS(251), 1, + ACTIONS(1599), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1601), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [128270] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(2251), 1, anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2091), 1, - sym__immediate_decimal, - STATE(3620), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3521), 1, sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 6, + ACTIONS(2253), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2249), 28, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1685), 23, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363811,85 +349296,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134671] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2502), 1, - sym__entry_separator, - STATE(3621), 1, - sym_comment, - ACTIONS(2500), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [134719] = 6, + [128317] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6748), 1, - anon_sym_DOT, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token2, - STATE(3622), 1, + ACTIONS(6577), 1, + anon_sym_DOT_DOT2, + STATE(3522), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(6579), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 28, - sym__newline, + ACTIONS(1802), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363902,7 +349344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -363912,27 +349353,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134771] = 4, - ACTIONS(251), 1, + [128364] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3623), 1, + ACTIONS(6581), 1, + aux_sym__immediate_decimal_token2, + STATE(3523), 1, sym_comment, - ACTIONS(1669), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(1709), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, sym_filesize_unit, + ACTIONS(1711), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [128409] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6559), 1, + aux_sym__immediate_decimal_token2, + STATE(3524), 1, + sym_comment, + ACTIONS(1735), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1671), 29, - sym__newline, + ACTIONS(1737), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363955,29 +349433,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, - [134819] = 6, + [128454] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6752), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6754), 1, - aux_sym__immediate_decimal_token2, - STATE(3624), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(3525), 1, sym_comment, - ACTIONS(1771), 8, + ACTIONS(1794), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 27, - anon_sym_DASH_DASH, + ACTIONS(1802), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -363992,7 +349465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364002,73 +349474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134871] = 6, + [128501] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6756), 1, - anon_sym_RBRACK, - ACTIONS(6760), 1, - sym__entry_separator, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(3625), 1, - sym_comment, - ACTIONS(6758), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [134923] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3626), 1, + STATE(3526), 1, sym_comment, - ACTIONS(1711), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1713), 29, + ACTIONS(2263), 3, sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2261), 29, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364077,46 +349496,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_unquoted_token4, + [128544] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_COLON2, + ACTIONS(3028), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6583), 1, + sym_filesize_unit, + ACTIONS(6585), 1, sym_duration_unit, - [134971] = 8, + STATE(3527), 1, + sym_comment, + ACTIONS(3026), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3024), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128595] = 27, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6762), 1, - anon_sym_DOT, - STATE(3627), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6595), 1, + anon_sym_LBRACE, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3528), 1, sym_comment, - STATE(3647), 1, - aux_sym_cell_path_repeat1, - STATE(3798), 1, - sym_path, - STATE(3813), 1, - sym_cell_path, - ACTIONS(1757), 7, + STATE(3546), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4127), 1, + sym__binary_predicate_parenthesized, + STATE(4128), 1, + sym__predicate, + STATE(4692), 1, + sym_val_closure, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [128684] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3529), 1, + sym_comment, + ACTIONS(1771), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1761), 26, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1773), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364131,6 +349647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364140,27 +349657,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, - [135027] = 4, - ACTIONS(251), 1, + [128727] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3628), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(3530), 1, sym_comment, - ACTIONS(1767), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1769), 29, + ACTIONS(2245), 2, sym__newline, + anon_sym_LBRACE, + ACTIONS(2241), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364169,50 +349682,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [135075] = 11, + [128774] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(4946), 1, + ACTIONS(2230), 1, aux_sym_unquoted_token2, - ACTIONS(6741), 1, - sym_filesize_unit, - ACTIONS(6743), 1, - sym_duration_unit, - ACTIONS(6764), 1, - anon_sym_DOT_DOT2, - STATE(3629), 1, + STATE(3531), 1, sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6739), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, + ACTIONS(2224), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 24, + ACTIONS(2228), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -364237,33 +349739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135137] = 11, + [128821] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(6766), 1, + ACTIONS(6601), 1, anon_sym_DOT_DOT2, - ACTIONS(6770), 1, - sym_filesize_unit, - ACTIONS(6772), 1, - sym_duration_unit, - STATE(3630), 1, + STATE(3532), 1, sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6768), 2, + ACTIONS(6603), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, + ACTIONS(2115), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 24, + ACTIONS(2121), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -364288,23 +349780,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135199] = 5, + [128868] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token2, - STATE(3631), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT2, + STATE(3533), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(6607), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 28, + ACTIONS(2148), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -364320,7 +349812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364330,34 +349821,26 @@ 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, - [135249] = 8, + [128915] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6762), 1, - anon_sym_DOT, - STATE(3632), 1, + ACTIONS(6609), 1, + anon_sym_DOT_DOT2, + STATE(3534), 1, sym_comment, - STATE(3647), 1, - aux_sym_cell_path_repeat1, - STATE(3798), 1, - sym_path, - STATE(3801), 1, - sym_cell_path, - ACTIONS(1763), 7, + ACTIONS(6611), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2150), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1765), 26, - anon_sym_DASH_DASH, + ACTIONS(2156), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364379,30 +349862,26 @@ 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, - [135305] = 6, + [128962] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token2, - STATE(3633), 1, + ACTIONS(6613), 1, + anon_sym_DOT_DOT2, + STATE(3535), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(6615), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 28, - sym__newline, + ACTIONS(2164), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364415,7 +349894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364425,73 +349903,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, - [135357] = 6, + [129009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(6778), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(3634), 1, - sym_comment, - ACTIONS(6758), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [135409] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3635), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(3536), 1, sym_comment, - ACTIONS(1669), 9, + ACTIONS(1000), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1004), 28, 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, - aux_sym_unquoted_token2, - ACTIONS(1671), 28, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364500,42 +349928,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [135457] = 4, + [129056] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3636), 1, + ACTIONS(6617), 1, + anon_sym_DOT_DOT2, + STATE(3537), 1, sym_comment, - ACTIONS(1661), 8, + ACTIONS(6619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1663), 29, - sym__newline, + ACTIONS(5086), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364548,7 +349976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364558,29 +349985,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, - [135505] = 6, + [129103] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6780), 1, - anon_sym_DOT, - ACTIONS(6782), 1, - aux_sym__immediate_decimal_token2, - STATE(3637), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(3538), 1, sym_comment, - ACTIONS(1779), 8, + ACTIONS(1819), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 27, - anon_sym_DASH_DASH, + ACTIONS(1827), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364595,7 +350017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364605,25 +350026,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, - [135557] = 4, + [129150] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3638), 1, + STATE(3539), 1, sym_comment, - ACTIONS(1661), 9, + ACTIONS(1727), 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, aux_sym_unquoted_token2, - ACTIONS(1663), 28, - anon_sym_DASH_DASH, + ACTIONS(1729), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364648,75 +350065,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, - [135605] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(6784), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(3639), 1, - sym_comment, - ACTIONS(6758), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [135657] = 5, + [129193] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6786), 1, - aux_sym__immediate_decimal_token2, - STATE(3640), 1, + STATE(3540), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1713), 28, + ACTIONS(1737), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -364739,26 +350104,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, - [135707] = 4, + [129236] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3641), 1, + STATE(3541), 1, sym_comment, - ACTIONS(1711), 9, + ACTIONS(1786), 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, aux_sym_unquoted_token2, - ACTIONS(1713), 28, - anon_sym_DASH_DASH, + ACTIONS(1788), 26, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364783,26 +350143,102 @@ 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, + [129279] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3542), 1, + sym_comment, + ACTIONS(1709), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1711), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [129322] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3543), 1, + sym_comment, + ACTIONS(1723), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1725), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_duration_unit, - [135755] = 4, + [129365] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3642), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(3544), 1, sym_comment, - ACTIONS(1767), 9, + ACTIONS(2218), 5, 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, - aux_sym_unquoted_token2, - ACTIONS(1769), 28, - anon_sym_DASH_DASH, + ACTIONS(2222), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364817,7 +350253,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -364827,78 +350262,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, - [135803] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(6788), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(3643), 1, - sym_comment, - ACTIONS(6758), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [135855] = 8, + [129412] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6762), 1, - anon_sym_DOT, - STATE(3644), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(3545), 1, sym_comment, - STATE(3647), 1, - aux_sym_cell_path_repeat1, - STATE(3798), 1, - sym_path, - STATE(3806), 1, - sym_cell_path, - ACTIONS(969), 7, + ACTIONS(2214), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(971), 26, - anon_sym_DASH_DASH, + ACTIONS(2216), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -364922,125 +350303,85 @@ 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, - [135911] = 8, + [129459] = 27, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3645), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3885), 1, - sym_cell_path, - ACTIONS(1941), 7, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1943), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [135966] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3646), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3923), 1, - sym_cell_path, - ACTIONS(969), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(971), 25, - sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6595), 1, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3546), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4235), 1, + sym__binary_predicate_parenthesized, + STATE(4236), 1, + sym__predicate, + STATE(4577), 1, + sym_val_closure, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136021] = 7, - ACTIONS(251), 1, + [129548] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6762), 1, - anon_sym_DOT, - STATE(3647), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3547), 1, sym_comment, - STATE(3652), 1, - aux_sym_cell_path_repeat1, - STATE(3798), 1, - sym_path, - ACTIONS(982), 7, + ACTIONS(2259), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2257), 28, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(984), 26, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365049,231 +350390,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [136074] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3648), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3862), 1, - sym_cell_path, - ACTIONS(1953), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1955), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136129] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3649), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3906), 1, - sym_cell_path, - ACTIONS(1925), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1927), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136184] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3650), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3886), 1, - sym_cell_path, - ACTIONS(1871), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1873), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136239] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3651), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3888), 1, - sym_cell_path, - ACTIONS(1875), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1877), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136294] = 6, + [129595] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, - anon_sym_DOT, - STATE(3798), 1, - sym_path, - STATE(3652), 2, + ACTIONS(6621), 1, + aux_sym__immediate_decimal_token2, + STATE(3548), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 7, + ACTIONS(1771), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(977), 26, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1773), 25, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365286,6 +350436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -365295,76 +350446,106 @@ 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, - [136345] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3653), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3881), 1, - sym_cell_path, - ACTIONS(2033), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2035), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136400] = 4, - ACTIONS(251), 1, + [129640] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3654), 1, + ACTIONS(6575), 1, + aux_sym__immediate_decimal_token2, + STATE(3549), 1, sym_comment, - ACTIONS(5138), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5136), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1599), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1601), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [129685] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3550), 1, + sym_comment, + ACTIONS(1623), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1625), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [129728] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5082), 1, + anon_sym_EQ_GT, + ACTIONS(6617), 1, + anon_sym_DOT_DOT2, + STATE(3551), 1, + sym_comment, + ACTIONS(6619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5084), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5086), 23, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365377,7 +350558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -365387,68 +350567,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136447] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3655), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3889), 1, - sym_cell_path, - ACTIONS(1879), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1881), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136502] = 4, + [129777] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3656), 1, + ACTIONS(6617), 1, + anon_sym_DOT_DOT2, + STATE(3552), 1, sym_comment, - ACTIONS(1767), 8, + ACTIONS(6619), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1769), 28, + ACTIONS(1000), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -365464,7 +350599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -365474,29 +350608,26 @@ 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, - [136549] = 5, + [129824] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6782), 1, - aux_sym__immediate_decimal_token2, - STATE(3657), 1, + ACTIONS(6623), 1, + anon_sym_DOT_DOT2, + STATE(3553), 1, sym_comment, - ACTIONS(1779), 8, + ACTIONS(6625), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 27, - anon_sym_DASH_DASH, + ACTIONS(1827), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365509,7 +350640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -365519,28 +350649,99 @@ 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, - [136598] = 5, - ACTIONS(251), 1, + [129871] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6795), 1, - aux_sym__immediate_decimal_token2, - STATE(3658), 1, + STATE(3554), 1, + sym_comment, + ACTIONS(1599), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1601), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [129914] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6631), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6633), 1, + sym_filesize_unit, + ACTIONS(6635), 1, + sym_duration_unit, + STATE(3555), 1, + sym_comment, + ACTIONS(6629), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6627), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129962] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2263), 1, + anon_sym_LPAREN2, + STATE(3556), 1, sym_comment, - ACTIONS(1799), 7, + ACTIONS(2261), 30, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 28, - sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365549,39 +350750,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [136647] = 5, + aux_sym_unquoted_token4, + [130004] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6750), 1, - aux_sym__immediate_decimal_token2, - STATE(3659), 1, + ACTIONS(5383), 1, + sym__newline, + STATE(3557), 1, sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, + STATE(3626), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5229), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 28, - sym__newline, + ACTIONS(5227), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -365597,173 +350805,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130056] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3558), 1, + sym_comment, + STATE(3644), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5227), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [136696] = 8, + [130118] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3660), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3899), 1, - sym_cell_path, - ACTIONS(1909), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1911), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136751] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3661), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3559), 1, sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3896), 1, - sym_cell_path, - ACTIONS(1903), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1905), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5297), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5295), 18, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136806] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130174] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6797), 1, - sym__newline, - STATE(3662), 2, - sym_comment, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(1310), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [136853] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3663), 1, + STATE(3560), 1, sym_comment, - ACTIONS(1661), 8, - anon_sym_GT2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5297), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1663), 28, + ACTIONS(5295), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -365776,225 +350940,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [136900] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3664), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3895), 1, - sym_cell_path, - ACTIONS(1895), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1897), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [136955] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3665), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3907), 1, - sym_cell_path, - ACTIONS(1929), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1931), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137010] = 8, + [130224] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3666), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3956), 1, - sym_cell_path, - ACTIONS(1949), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1951), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137065] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3667), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3561), 1, sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3909), 1, - sym_cell_path, - ACTIONS(1933), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1935), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5295), 14, + sym__newline, + anon_sym_in2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137120] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130282] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3668), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3562), 1, sym_comment, - ACTIONS(1669), 8, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5297), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1671), 28, + ACTIONS(5295), 23, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366007,9 +351024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -366017,75 +351031,236 @@ 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, - [137167] = 6, + [130328] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6800), 1, - anon_sym_DOT, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token2, - STATE(3669), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3563), 1, sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 27, - anon_sym_DASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5295), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [130396] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3564), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5295), 4, + sym__newline, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + [130466] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, + anon_sym_and2, + ACTIONS(6683), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3565), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5295), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [130538] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3566), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5295), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137218] = 6, + [130598] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6804), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6806), 1, - aux_sym__immediate_decimal_token2, - STATE(3670), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3567), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(5297), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 27, - anon_sym_DASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5295), 20, + sym__newline, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366098,177 +351273,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137269] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3671), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3927), 1, - sym_cell_path, - ACTIONS(1945), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1947), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137324] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3672), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3876), 1, - sym_cell_path, - ACTIONS(1957), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1959), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137379] = 8, + [130652] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3673), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3902), 1, - sym_cell_path, - ACTIONS(1917), 7, - anon_sym_DOLLAR, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1919), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137434] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token2, - STATE(3674), 1, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3568), 1, sym_comment, - ACTIONS(1799), 8, + STATE(3647), 1, + aux_sym_shebang_repeat1, + ACTIONS(5229), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 27, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5227), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -366283,495 +351318,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137483] = 8, + [130708] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3675), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3911), 1, - sym_cell_path, - ACTIONS(1937), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1939), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137538] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3676), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3569), 1, sym_comment, - ACTIONS(1711), 8, - anon_sym_GT2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1713), 28, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5295), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [137585] = 8, + [130770] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3677), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3891), 1, - sym_cell_path, - ACTIONS(1883), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1885), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137640] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3678), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3570), 1, sym_comment, - ACTIONS(5126), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5124), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137687] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6810), 1, - anon_sym_LBRACK2, - STATE(3679), 1, - sym_comment, - ACTIONS(2304), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2308), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5295), 7, + sym__newline, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137736] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3680), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3893), 1, - sym_cell_path, - ACTIONS(1887), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1889), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137791] = 8, + [130834] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3681), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3882), 1, - sym_cell_path, - ACTIONS(2049), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2051), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137846] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3682), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3571), 1, sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3884), 1, - sym_cell_path, - ACTIONS(2053), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2055), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5295), 6, + sym__newline, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137901] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [130900] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3683), 1, - sym_comment, - STATE(3694), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - STATE(3894), 1, - sym_cell_path, - ACTIONS(1891), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1893), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [137956] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(3684), 1, - sym_comment, - ACTIONS(6758), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [138005] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3685), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3572), 1, sym_comment, - ACTIONS(2403), 6, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2405), 29, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5257), 18, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366784,36 +351512,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138051] = 4, + [130956] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3686), 1, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3573), 1, sym_comment, - ACTIONS(2363), 6, + STATE(3613), 1, + aux_sym_shebang_repeat1, + ACTIONS(5291), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2365), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5289), 17, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366826,36 +351558,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138097] = 4, + [131014] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3687), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3574), 1, sym_comment, - ACTIONS(1883), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1885), 29, + ACTIONS(5257), 21, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366868,36 +351598,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138143] = 4, + [131064] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3688), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(3575), 1, sym_comment, - ACTIONS(2375), 6, - anon_sym_GT2, - anon_sym_DASH2, + STATE(3614), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5291), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2377), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(5289), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -366910,161 +351641,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138189] = 4, + [131116] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3689), 1, - sym_comment, - ACTIONS(1937), 6, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3576), 1, + sym_comment, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1939), 29, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5257), 14, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138235] = 3, + [131174] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3690), 1, - sym_comment, - ACTIONS(1302), 35, + ACTIONS(5320), 1, 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, - [138279] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3691), 1, - sym_comment, - ACTIONS(2367), 6, - anon_sym_GT2, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3577), 1, + sym_comment, + STATE(3615), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2369), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5289), 13, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138325] = 4, + [131234] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3692), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3578), 1, sym_comment, - ACTIONS(2520), 6, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5259), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2522), 29, + ACTIONS(5257), 23, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367077,8 +351772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -367086,27 +351779,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138371] = 4, + [131280] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3693), 1, + ACTIONS(5320), 1, + sym__newline, + STATE(3579), 1, sym_comment, - ACTIONS(2391), 6, + STATE(3617), 1, + aux_sym_shebang_repeat1, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5291), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2393), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(5289), 22, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367119,8 +351813,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -367128,450 +351820,634 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138417] = 7, + [131328] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6790), 1, - anon_sym_DOT, - STATE(3694), 1, - sym_comment, - STATE(3720), 1, - aux_sym_cell_path_repeat1, - STATE(3827), 1, - sym_path, - ACTIONS(982), 7, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(984), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138469] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3695), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3580), 1, sym_comment, - ACTIONS(2458), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2460), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138515] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3696), 1, - sym_comment, - ACTIONS(1891), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1893), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 5, + sym__newline, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [131396] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, anon_sym_bit_DASHor2, - [138561] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6812), 1, - anon_sym_QMARK2, - STATE(3697), 1, + STATE(3581), 1, sym_comment, - ACTIONS(1008), 8, - anon_sym_GT2, - anon_sym_DASH2, + STATE(3677), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1010), 26, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5289), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [131466] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3582), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, 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, - [138609] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3698), 1, - sym_comment, - ACTIONS(1034), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1036), 29, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5257), 4, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138655] = 7, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [131536] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6814), 1, - anon_sym_LPAREN2, - ACTIONS(6816), 1, - anon_sym_EQ2, - ACTIONS(6818), 1, - sym_short_flag_identifier, - STATE(3699), 1, - sym_comment, - ACTIONS(5027), 13, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5029), 19, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [138707] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3700), 1, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + ACTIONS(6693), 1, + anon_sym_and2, + STATE(3583), 1, sym_comment, - ACTIONS(1925), 6, - anon_sym_GT2, - anon_sym_DASH2, + STATE(3622), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1927), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5289), 3, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [131608] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3584), 1, + sym_comment, + STATE(3649), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [138753] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3701), 1, - sym_comment, - ACTIONS(2478), 6, + ACTIONS(6643), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2480), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5227), 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, - [138799] = 5, + [131672] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_QMARK2, - STATE(3702), 1, - sym_comment, - ACTIONS(990), 8, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(6663), 1, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(992), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, anon_sym_and2, + ACTIONS(6683), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3585), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5257), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [131744] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6699), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6701), 1, + sym_filesize_unit, + ACTIONS(6703), 1, + sym_duration_unit, + STATE(3586), 1, + sym_comment, + ACTIONS(6697), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6695), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [131792] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + STATE(3587), 1, + sym_comment, + STATE(3651), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5227), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138847] = 4, + [131858] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(3703), 1, - sym_comment, - ACTIONS(1941), 6, - anon_sym_GT2, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + STATE(3588), 1, + sym_comment, + STATE(3653), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1943), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5227), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + [131926] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3062), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6705), 1, + sym_filesize_unit, + ACTIONS(6707), 1, + sym_duration_unit, + STATE(3589), 1, + sym_comment, + ACTIONS(3060), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3058), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [131974] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + ACTIONS(6693), 1, + anon_sym_and2, + ACTIONS(6709), 1, + anon_sym_xor2, + STATE(3590), 1, + sym_comment, + STATE(3624), 1, + aux_sym_shebang_repeat1, + ACTIONS(5289), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [132048] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3591), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138893] = 4, + [132108] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3704), 1, - sym_comment, - ACTIONS(1779), 8, - anon_sym_GT2, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3592), 1, + sym_comment, + STATE(3629), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 27, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5227), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367580,49 +352456,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [138939] = 8, + [132168] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(6822), 1, - anon_sym_DOT_DOT2, - STATE(3705), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(3593), 1, sym_comment, - ACTIONS(6824), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 5, + ACTIONS(2214), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1838), 25, - sym__newline, + ACTIONS(2216), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367644,26 +352501,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138993] = 7, + [132214] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3594), 1, sym_comment, - STATE(3707), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, - sym_path, - ACTIONS(982), 6, + STATE(3628), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5289), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132276] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_STAR2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3595), 1, + sym_comment, + ACTIONS(5259), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(984), 26, - anon_sym_DASH_DASH, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5257), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367678,36 +352588,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [139045] = 6, + [132330] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6828), 1, - anon_sym_DOT, - STATE(3825), 1, - sym_path, - STATE(3707), 2, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3596), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 6, + STATE(3630), 1, + aux_sym_shebang_repeat1, + ACTIONS(5291), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(977), 26, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5289), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367722,84 +352633,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_record_entry_token1, - sym__table_head_separator, - [139095] = 4, - ACTIONS(251), 1, + [132386] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3708), 1, + ACTIONS(6715), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6717), 1, + sym_filesize_unit, + ACTIONS(6719), 1, + sym_duration_unit, + STATE(3597), 1, sym_comment, - ACTIONS(2466), 6, - anon_sym_GT2, + ACTIONS(6713), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6711), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132434] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3598), 1, + sym_comment, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2468), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 8, + sym__newline, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132496] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3599), 1, + sym_comment, + STATE(3632), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5289), 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, + [132560] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3600), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139141] = 8, + [132624] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - ACTIONS(6831), 1, - anon_sym_DOT_DOT2, - STATE(3709), 1, + STATE(3601), 1, sym_comment, - ACTIONS(6833), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 5, + ACTIONS(1794), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1848), 25, - sym__newline, + ACTIONS(1802), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367821,71 +352865,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139195] = 4, + [132670] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(3710), 1, - sym_comment, - ACTIONS(2379), 6, - anon_sym_GT2, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + STATE(3602), 1, + sym_comment, + STATE(3634), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2381), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5289), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132736] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3603), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [132802] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3042), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6721), 1, + sym_filesize_unit, + ACTIONS(6723), 1, + sym_duration_unit, + STATE(3604), 1, + sym_comment, + ACTIONS(3040), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3038), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132850] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + STATE(3605), 1, + sym_comment, + STATE(3635), 1, + aux_sym_shebang_repeat1, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5289), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [139241] = 8, + [132918] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(6835), 1, - anon_sym_DOT_DOT2, - STATE(3711), 1, + ACTIONS(5383), 1, + sym__newline, + STATE(3606), 1, sym_comment, - ACTIONS(6837), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 6, + STATE(3633), 1, + aux_sym_shebang_repeat1, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5229), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH_DASH, + ACTIONS(5227), 22, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -367900,8 +353091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -367909,27 +353098,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139295] = 4, + [132966] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3607), 1, + sym_comment, + ACTIONS(1723), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1725), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133008] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6729), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6731), 1, + sym_filesize_unit, + ACTIONS(6733), 1, + sym_duration_unit, + STATE(3608), 1, + sym_comment, + ACTIONS(6727), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6725), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133056] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3609), 1, + sym_comment, + ACTIONS(1623), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1625), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [133098] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3712), 1, + STATE(3610), 1, sym_comment, - ACTIONS(2462), 6, + ACTIONS(1727), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2464), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1729), 25, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367942,6 +353243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -367951,27 +353253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139341] = 4, - ACTIONS(251), 1, + [133140] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3713), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3611), 1, sym_comment, - ACTIONS(2371), 6, + ACTIONS(2249), 29, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2373), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -367980,40 +353276,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139387] = 4, - ACTIONS(251), 1, + [133184] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3714), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3612), 1, sym_comment, - ACTIONS(1895), 6, + ACTIONS(2257), 29, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1897), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368022,35 +353315,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139433] = 4, + [133228] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3715), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3613), 1, sym_comment, - ACTIONS(1818), 7, + ACTIONS(5255), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1820), 28, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5253), 18, sym__newline, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -368065,39 +353373,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [139479] = 4, + [133284] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3716), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3614), 1, sym_comment, - ACTIONS(2359), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5255), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2361), 29, + ACTIONS(5253), 21, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368110,36 +353413,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133334] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3615), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5253), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139525] = 4, + [133392] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6739), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6741), 1, + sym_filesize_unit, + ACTIONS(6743), 1, + sym_duration_unit, + STATE(3616), 1, + sym_comment, + ACTIONS(6737), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6735), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133440] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3717), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3617), 1, sym_comment, - ACTIONS(2383), 6, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5255), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2385), 29, + ACTIONS(5253), 23, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368152,8 +353538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -368161,24 +353545,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139571] = 4, + [133486] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3718), 1, + STATE(3618), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(1771), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1773), 28, - sym__newline, + ACTIONS(1773), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368201,29 +353583,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [139617] = 4, + [133528] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(3719), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + ACTIONS(6693), 1, + anon_sym_and2, + ACTIONS(6709), 1, + anon_sym_xor2, + STATE(3619), 1, sym_comment, - ACTIONS(1687), 6, + STATE(3641), 1, + aux_sym_shebang_repeat1, + ACTIONS(5227), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [133602] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3620), 1, + sym_comment, + ACTIONS(1786), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1788), 25, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368236,6 +353665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -368245,68 +353675,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139663] = 6, + [133644] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6839), 1, - anon_sym_DOT, - STATE(3827), 1, - sym_path, - STATE(3720), 2, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(3621), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(977), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139713] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3721), 1, - sym_comment, - ACTIONS(1771), 8, + ACTIONS(2218), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 27, - anon_sym_DASH_DASH, + ACTIONS(2222), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368319,7 +353706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -368329,117 +353715,88 @@ 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, - [139759] = 8, + [133690] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(6842), 1, - anon_sym_DOT_DOT2, - STATE(3722), 1, - sym_comment, - ACTIONS(6844), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 6, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(6663), 1, anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3622), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139813] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3723), 1, - sym_comment, - ACTIONS(2391), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2393), 29, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5253), 4, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139859] = 4, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [133760] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3724), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3623), 1, sym_comment, - ACTIONS(2387), 6, + ACTIONS(5241), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2389), 29, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5239), 18, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368452,36 +353809,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [133816] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, + anon_sym_and2, + ACTIONS(6683), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3624), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139905] = 4, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5253), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [133888] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3725), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3559), 1, + aux_sym_shebang_repeat1, + STATE(3625), 1, sym_comment, - ACTIONS(1933), 6, + ACTIONS(5247), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1935), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5245), 17, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368494,36 +353908,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139951] = 4, + [133946] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3726), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3626), 1, sym_comment, - ACTIONS(2504), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5241), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2506), 29, + ACTIONS(5239), 21, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368536,31 +353948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139997] = 4, + [133996] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3727), 1, + ACTIONS(5301), 1, + sym__newline, + STATE(3560), 1, + aux_sym_shebang_repeat1, + STATE(3627), 1, sym_comment, - ACTIONS(1799), 8, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5247), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 27, - anon_sym_DASH_DASH, + ACTIONS(5245), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -368575,123 +353991,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140043] = 4, + [134048] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3728), 1, - sym_comment, - ACTIONS(2482), 6, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3628), 1, + sym_comment, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2484), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 10, + sym__newline, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140089] = 4, + [134108] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3729), 1, - sym_comment, - ACTIONS(2470), 6, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3629), 1, + sym_comment, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2472), 29, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 14, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140135] = 4, + [134166] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(3730), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3630), 1, sym_comment, - ACTIONS(1917), 6, + ACTIONS(5255), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1919), 29, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5253), 20, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368704,31 +354128,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140181] = 4, + [134220] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3731), 1, - sym_comment, - ACTIONS(1818), 8, - anon_sym_GT2, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3561), 1, + aux_sym_shebang_repeat1, + STATE(3631), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1820), 27, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5245), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -368737,45 +354175,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134280] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3632), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140227] = 4, + [134342] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3732), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3633), 1, sym_comment, - ACTIONS(2399), 6, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5241), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2401), 29, + ACTIONS(5239), 23, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368788,8 +354261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -368797,67 +354268,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140273] = 4, + [134388] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(3733), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3634), 1, sym_comment, - ACTIONS(1799), 7, - anon_sym_GT2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 28, - sym__newline, - anon_sym_DASH2, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134452] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3635), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140319] = 5, + [134518] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token2, - STATE(3734), 1, + ACTIONS(5301), 1, + sym__newline, + STATE(3562), 1, + aux_sym_shebang_repeat1, + STATE(3636), 1, sym_comment, - ACTIONS(1779), 7, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5247), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 27, + ACTIONS(5245), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -368870,9 +354401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -368880,318 +354408,436 @@ 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, - [140367] = 4, + [134566] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(3735), 1, - sym_comment, - ACTIONS(2454), 6, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3637), 1, + sym_comment, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2456), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [134634] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, anon_sym_bit_DASHor2, - [140413] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3736), 1, + STATE(3563), 1, + aux_sym_shebang_repeat1, + STATE(3638), 1, sym_comment, - ACTIONS(1957), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1959), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5245), 4, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [134704] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3639), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140459] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3737), 1, - sym_comment, - ACTIONS(2486), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2488), 29, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5239), 4, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134774] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, anon_sym_bit_DASHor2, - [140505] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3738), 1, + ACTIONS(6693), 1, + anon_sym_and2, + STATE(3564), 1, + aux_sym_shebang_repeat1, + STATE(3640), 1, sym_comment, - ACTIONS(2439), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2441), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5245), 3, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [134846] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, + anon_sym_and2, + ACTIONS(6683), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3641), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140551] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3739), 1, - sym_comment, - ACTIONS(1779), 7, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 28, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5239), 3, sym__newline, - anon_sym_DASH2, - anon_sym_in2, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134918] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + ACTIONS(6693), 1, + anon_sym_and2, + ACTIONS(6709), 1, + anon_sym_xor2, + STATE(3565), 1, + aux_sym_shebang_repeat1, + STATE(3642), 1, + sym_comment, + ACTIONS(5245), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [134992] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140597] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3740), 1, + STATE(3637), 1, + aux_sym_shebang_repeat1, + STATE(3643), 1, sym_comment, - ACTIONS(2508), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2510), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5227), 4, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [135062] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3644), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140643] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3741), 1, - sym_comment, - ACTIONS(2492), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2494), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 10, + sym__newline, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140689] = 5, + [135122] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6846), 1, - aux_sym__immediate_decimal_token2, - STATE(3742), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(3645), 1, sym_comment, - ACTIONS(1799), 7, + ACTIONS(1819), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 27, + ACTIONS(1827), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -369207,7 +354853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -369217,75 +354862,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [140737] = 8, + [135168] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6848), 1, - anon_sym_DOT_DOT2, - ACTIONS(6852), 1, - sym_filesize_unit, - ACTIONS(6854), 1, - sym_duration_unit, - STATE(3743), 1, - sym_comment, - ACTIONS(6850), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 6, - anon_sym_GT2, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3566), 1, + aux_sym_shebang_repeat1, + STATE(3646), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 24, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5245), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140791] = 4, + [135230] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(3744), 1, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3647), 1, sym_comment, - ACTIONS(2474), 6, + ACTIONS(5241), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6657), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2476), 29, + ACTIONS(6659), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 20, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -369298,36 +354949,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140837] = 4, + [135284] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3745), 1, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3567), 1, + aux_sym_shebang_repeat1, + STATE(3648), 1, sym_comment, - ACTIONS(1949), 6, + ACTIONS(5247), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1951), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5245), 19, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -369340,411 +354994,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140883] = 5, + [135340] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6856), 1, - anon_sym_QMARK2, - STATE(3746), 1, - sym_comment, - ACTIONS(990), 8, - anon_sym_DOLLAR, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(992), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140930] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3747), 1, + ACTIONS(6663), 1, + anon_sym_PLUS2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3649), 1, sym_comment, - ACTIONS(1014), 8, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1016), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, 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, - [140975] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6858), 1, - anon_sym_DOT, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token2, - STATE(3748), 1, - sym_comment, - ACTIONS(1669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1671), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [141024] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6862), 1, - anon_sym_QMARK2, - STATE(3749), 1, - sym_comment, - ACTIONS(1008), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1010), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [141071] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6864), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6866), 1, - aux_sym__immediate_decimal_token2, - STATE(3750), 1, - sym_comment, - ACTIONS(1661), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1663), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [141120] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6868), 1, - anon_sym_QMARK2, - STATE(3751), 1, - sym_comment, - ACTIONS(1008), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1010), 27, - anon_sym_DASH_DASH, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, - aux_sym_record_entry_token1, - sym__table_head_separator, - [141167] = 5, + [135402] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6870), 1, - anon_sym_QMARK2, - STATE(3752), 1, - sym_comment, - ACTIONS(990), 6, - anon_sym_GT2, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3569), 1, + aux_sym_shebang_repeat1, + STATE(3650), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(992), 27, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5245), 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, + [135466] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3651), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(6667), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [141214] = 4, + [135530] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(3753), 1, - sym_comment, - ACTIONS(1000), 6, - anon_sym_GT2, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + STATE(3570), 1, + aux_sym_shebang_repeat1, + STATE(3652), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1002), 28, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5245), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135596] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + anon_sym_DASH2, + ACTIONS(6663), 1, + anon_sym_PLUS2, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3653), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [141259] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6874), 1, - aux_sym__immediate_decimal_token2, - STATE(3754), 1, - sym_comment, - ACTIONS(1771), 7, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 25, - anon_sym_DASH_DASH, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5239), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + [135662] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5301), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + STATE(3571), 1, + aux_sym_shebang_repeat1, + STATE(3654), 1, + sym_comment, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5245), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [141308] = 4, + [135730] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3755), 1, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3572), 1, + aux_sym_shebang_repeat1, + STATE(3655), 1, sym_comment, - ACTIONS(1004), 6, + ACTIONS(5273), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1006), 28, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5271), 17, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -369757,35 +355339,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [141353] = 4, + [135788] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(3756), 1, + ACTIONS(5372), 1, + sym__newline, + STATE(3574), 1, + aux_sym_shebang_repeat1, + STATE(3656), 1, sym_comment, - ACTIONS(996), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(998), 28, - anon_sym_DASH_DASH, + ACTIONS(5271), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -369798,80 +355380,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [141398] = 4, + [135840] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3757), 1, - sym_comment, - ACTIONS(986), 6, - anon_sym_GT2, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3576), 1, + aux_sym_shebang_repeat1, + STATE(3657), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(988), 28, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5271), 13, anon_sym_in2, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [141443] = 8, + [135900] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6386), 1, - sym_filesize_unit, - ACTIONS(6388), 1, - sym_duration_unit, - ACTIONS(6876), 1, - anon_sym_DOT_DOT2, - STATE(3758), 1, + ACTIONS(5372), 1, + sym__newline, + STATE(3578), 1, + aux_sym_shebang_repeat1, + STATE(3658), 1, sym_comment, - ACTIONS(3049), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5273), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1699), 24, + ACTIONS(5271), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -369887,8 +355466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -369896,197 +355473,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141496] = 6, + [135948] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6878), 1, - anon_sym_DOT, - ACTIONS(6880), 1, - aux_sym__immediate_decimal_token2, - STATE(3759), 1, - sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + STATE(3580), 1, + aux_sym_shebang_repeat1, + STATE(3659), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 25, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5271), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [136018] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, anon_sym_bit_DASHor2, - [141545] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3745), 1, - sym_cell_path, - STATE(3760), 1, + ACTIONS(6693), 1, + anon_sym_and2, + STATE(3639), 1, + aux_sym_shebang_repeat1, + STATE(3660), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1945), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1947), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5227), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [136090] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, anon_sym_bit_DASHand2, + ACTIONS(6689), 1, anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, anon_sym_bit_DASHor2, - [141598] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3712), 1, - sym_cell_path, - STATE(3761), 1, + ACTIONS(6693), 1, + anon_sym_and2, + STATE(3582), 1, + aux_sym_shebang_repeat1, + STATE(3661), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1949), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1951), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5271), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6647), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [136162] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + ACTIONS(6693), 1, + anon_sym_and2, + ACTIONS(6709), 1, + anon_sym_xor2, + STATE(3585), 1, + aux_sym_shebang_repeat1, + STATE(3662), 1, + sym_comment, + ACTIONS(5271), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141651] = 4, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [136236] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(3762), 1, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3591), 1, + aux_sym_shebang_repeat1, + STATE(3663), 1, sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 27, - anon_sym_DASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5271), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [141696] = 4, + [136298] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3763), 1, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3595), 1, + aux_sym_shebang_repeat1, + STATE(3664), 1, sym_comment, - ACTIONS(1771), 7, + ACTIONS(5273), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 27, - anon_sym_DASH2, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5271), 19, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -370099,32 +355773,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [141741] = 4, + [136354] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3665), 1, + sym_comment, + ACTIONS(1709), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1711), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [136396] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3764), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(3666), 1, sym_comment, - ACTIONS(1799), 7, + ACTIONS(2224), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 27, + ACTIONS(2228), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -370140,7 +355847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -370150,22 +355856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [141786] = 4, + [136442] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3765), 1, + STATE(3667), 1, sym_comment, - ACTIONS(1818), 7, + ACTIONS(1735), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1820), 27, + ACTIONS(1737), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -370191,77 +355894,70 @@ 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, - [141831] = 8, + [136484] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3741), 1, - sym_cell_path, - STATE(3766), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(2033), 6, - anon_sym_GT2, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3598), 1, + aux_sym_shebang_repeat1, + STATE(3668), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2035), 24, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5271), 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, - [141884] = 8, - ACTIONS(251), 1, + [136548] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3703), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3767), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(3669), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(2049), 6, + ACTIONS(2241), 29, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2051), 24, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -370270,133 +355966,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141937] = 8, + [136592] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3726), 1, - sym_cell_path, - STATE(3768), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(2053), 6, - anon_sym_GT2, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + STATE(3600), 1, + aux_sym_shebang_repeat1, + STATE(3670), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2055), 24, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(5271), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141990] = 8, - ACTIONS(251), 1, + [136658] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3740), 1, - sym_cell_path, - STATE(3769), 1, + STATE(3671), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1941), 6, - anon_sym_GT2, + ACTIONS(1599), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1601), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [136700] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5372), 1, + sym__newline, + ACTIONS(6645), 1, anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + STATE(3603), 1, + aux_sym_shebang_repeat1, + STATE(3672), 1, + sym_comment, + ACTIONS(6637), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1943), 24, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6685), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(5271), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [142043] = 8, - ACTIONS(251), 1, + [136768] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3687), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3770), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(3673), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1871), 6, + ACTIONS(1004), 29, anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1873), 24, - anon_sym_DASH_DASH, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -370405,41 +356144,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142096] = 8, + [136812] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3696), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3771), 1, + ACTIONS(5383), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + STATE(3623), 1, + aux_sym_shebang_repeat1, + STATE(3674), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1875), 6, + ACTIONS(5229), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6637), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1877), 24, - anon_sym_DASH_DASH, + ACTIONS(6639), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6653), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5227), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -370454,39 +356203,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142149] = 8, + [136870] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6745), 1, anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3714), 1, - sym_cell_path, - STATE(3772), 1, + STATE(3675), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1879), 6, + ACTIONS(1735), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1881), 24, - anon_sym_DASH_DASH, + ACTIONS(1737), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -370508,28 +356246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142202] = 8, + [136916] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3716), 1, - sym_cell_path, - STATE(3773), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(3676), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1883), 6, + ACTIONS(1653), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1885), 24, - anon_sym_DASH_DASH, + ACTIONS(1665), 25, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -370553,165 +356285,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142255] = 8, + [136960] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3730), 1, - sym_cell_path, - STATE(3774), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1887), 6, - anon_sym_GT2, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(6663), 1, anon_sym_PLUS2, - ACTIONS(1889), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6675), 1, anon_sym_bit_DASHand2, + ACTIONS(6677), 1, anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, anon_sym_bit_DASHor2, - [142308] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3691), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3775), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3677), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1895), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6657), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1897), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142361] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3700), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3776), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1903), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1905), 24, - anon_sym_DASH_DASH, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6671), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 5, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142414] = 8, + [137028] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3678), 1, + sym_comment, STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3725), 1, - sym_cell_path, - STATE(3777), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4171), 1, + sym__binary_predicate_parenthesized, + STATE(4172), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137111] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3679), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1909), 6, - anon_sym_GT2, + STATE(4675), 1, + sym_redirection, + ACTIONS(6749), 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(6751), 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(6747), 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, + [137156] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3680), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4155), 1, + sym__binary_predicate_parenthesized, + STATE(4156), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137239] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(3681), 1, + sym_comment, + ACTIONS(1653), 5, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1911), 24, - anon_sym_DASH_DASH, + ACTIONS(1665), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -370733,24011 +356529,1823 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142467] = 8, + [137282] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3713), 1, - sym_cell_path, - STATE(3778), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1917), 6, - anon_sym_GT2, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6655), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(6663), 1, anon_sym_PLUS2, - ACTIONS(1919), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(6675), 1, + anon_sym_bit_DASHand2, + ACTIONS(6677), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6679), 1, + anon_sym_bit_DASHor2, + ACTIONS(6681), 1, anon_sym_and2, + ACTIONS(6683), 1, anon_sym_xor2, + ACTIONS(6753), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3682), 1, + sym_comment, + ACTIONS(6657), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6659), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6661), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6665), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142520] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3779), 1, - sym_comment, - STATE(3813), 1, - sym_cell_path, - STATE(3825), 1, - sym_path, - ACTIONS(1757), 6, + ACTIONS(6667), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1761), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6673), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142573] = 8, + ACTIONS(6671), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [137355] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3780), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3683), 1, sym_comment, - STATE(3801), 1, - sym_cell_path, - STATE(3825), 1, - sym_path, - ACTIONS(1763), 6, - anon_sym_GT2, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4159), 1, + sym__binary_predicate_parenthesized, + STATE(4160), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137438] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1765), 24, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3684), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4216), 1, + sym__binary_predicate_parenthesized, + STATE(4218), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137521] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3685), 1, + sym_comment, + STATE(3699), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4237), 1, + sym__binary_predicate_parenthesized, + STATE(4239), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137604] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3686), 1, + sym_comment, + STATE(4746), 1, + sym_redirection, + ACTIONS(6749), 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(6751), 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(6755), 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, + [137649] = 25, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6757), 1, anon_sym_LBRACE, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3687), 1, + sym_comment, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4320), 1, + sym__binary_predicate, + STATE(4353), 1, + sym__predicate, + STATE(4858), 1, + sym_val_closure, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137732] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + ACTIONS(6288), 1, + anon_sym_bit_DASHand2, + ACTIONS(6290), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6292), 1, + anon_sym_bit_DASHor2, + ACTIONS(6306), 1, anon_sym_and2, + ACTIONS(6310), 1, anon_sym_xor2, + ACTIONS(6759), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(3688), 1, + sym_comment, + STATE(3689), 1, + aux_sym_shebang_repeat1, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6262), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142626] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3781), 1, - sym_comment, - STATE(3806), 1, - sym_cell_path, - STATE(3825), 1, - sym_path, - ACTIONS(969), 6, + ACTIONS(6280), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(971), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6286), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6282), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142679] = 8, + ACTIONS(6284), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [137805] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3688), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3782), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1925), 6, - anon_sym_GT2, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6272), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(6276), 1, anon_sym_PLUS2, - ACTIONS(1927), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(6296), 1, anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6300), 1, anon_sym_bit_DASHand2, + ACTIONS(6302), 1, anon_sym_bit_DASHxor2, + ACTIONS(6304), 1, anon_sym_bit_DASHor2, - [142732] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, + ACTIONS(6308), 1, + anon_sym_xor2, + ACTIONS(6761), 1, + anon_sym_or2, + STATE(1782), 1, + aux_sym_shebang_repeat1, STATE(3689), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3783), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1929), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6264), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1931), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6266), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6268), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142785] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3710), 1, - sym_cell_path, - STATE(3784), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1933), 6, + ACTIONS(6270), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1935), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6278), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6298), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6274), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142838] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3717), 1, - sym_cell_path, - STATE(3785), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1937), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1939), 24, - anon_sym_DASH_DASH, + ACTIONS(6294), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142891] = 6, + [137878] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6882), 1, - sym_long_flag_identifier, - ACTIONS(6884), 1, - anon_sym_EQ2, - STATE(3786), 1, - sym_comment, - ACTIONS(5010), 16, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3690), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4163), 1, + sym__binary_predicate_parenthesized, + STATE(4164), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137961] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5012), 16, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_null, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3684), 1, + aux_sym_shebang_repeat1, + STATE(3691), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4165), 1, + sym__binary_predicate_parenthesized, + STATE(4166), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [142940] = 8, + [138044] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3736), 1, - sym_cell_path, - STATE(3787), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1953), 6, - anon_sym_GT2, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(5306), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(5316), 1, anon_sym_PLUS2, - ACTIONS(1955), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(5353), 1, + anon_sym_bit_DASHand2, + ACTIONS(5355), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5357), 1, + anon_sym_bit_DASHor2, + ACTIONS(5361), 1, anon_sym_and2, + ACTIONS(5370), 1, anon_sym_xor2, + ACTIONS(6763), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + STATE(3692), 1, + sym_comment, + STATE(3693), 1, + aux_sym_shebang_repeat1, + ACTIONS(5304), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5312), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5314), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5318), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [142993] = 8, + ACTIONS(5351), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5310), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5349), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [138117] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3692), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3788), 1, - sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1957), 6, - anon_sym_GT2, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(5325), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, + ACTIONS(5339), 1, anon_sym_PLUS2, - ACTIONS(1959), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, + ACTIONS(5343), 1, + anon_sym_bit_DASHand2, + ACTIONS(5345), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5347), 1, + anon_sym_bit_DASHor2, + ACTIONS(5359), 1, anon_sym_and2, + ACTIONS(5368), 1, anon_sym_xor2, + ACTIONS(6765), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(3693), 1, + sym_comment, + ACTIONS(5323), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5329), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5333), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5335), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5337), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5341), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143046] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6886), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token2, - STATE(3789), 1, - sym_comment, - ACTIONS(1771), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 26, - sym__newline, - anon_sym_DASH2, + ACTIONS(5327), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5331), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + [138190] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6645), 1, + anon_sym_DASH2, + ACTIONS(6651), 1, + anon_sym_PLUS2, + ACTIONS(6687), 1, + anon_sym_bit_DASHand2, + ACTIONS(6689), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6691), 1, + anon_sym_bit_DASHor2, + ACTIONS(6693), 1, + anon_sym_and2, + ACTIONS(6709), 1, + anon_sym_xor2, + ACTIONS(6767), 1, + anon_sym_or2, + STATE(3682), 1, + aux_sym_shebang_repeat1, + STATE(3694), 1, + sym_comment, + ACTIONS(6637), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6639), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6641), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6643), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6653), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143095] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(6890), 1, - anon_sym_DOT_DOT2, - STATE(3790), 1, - sym_comment, - ACTIONS(6892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6685), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143148] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(6894), 1, - anon_sym_DOT_DOT2, - STATE(3791), 1, - sym_comment, - ACTIONS(6896), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH2, + ACTIONS(6647), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6649), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143201] = 4, + [138263] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3792), 1, - sym_comment, - ACTIONS(1000), 8, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1002), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3695), 1, + sym_comment, + STATE(3710), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4169), 1, + sym__binary_predicate_parenthesized, + STATE(4170), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143246] = 6, + [138346] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6898), 1, - anon_sym_DOT, - ACTIONS(6900), 1, - aux_sym__immediate_decimal_token2, - STATE(3793), 1, - sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 26, - sym__newline, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_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, - [143295] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3794), 1, - sym_comment, - ACTIONS(1004), 8, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6597), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1006), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3696), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4188), 1, + sym__binary_predicate_parenthesized, + STATE(4189), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143340] = 4, + [138429] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3795), 1, - sym_comment, - ACTIONS(996), 8, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(998), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3697), 1, + sym_comment, + STATE(3702), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4242), 1, + sym__binary_predicate_parenthesized, + STATE(4243), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143385] = 4, + [138512] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3796), 1, - sym_comment, - ACTIONS(986), 8, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(988), 26, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3698), 1, + sym_comment, + STATE(3701), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4240), 1, + sym__binary_predicate_parenthesized, + STATE(4241), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143430] = 8, + [138595] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6386), 1, - sym_filesize_unit, - ACTIONS(6388), 1, - sym_duration_unit, - ACTIONS(6902), 1, - anon_sym_DOT_DOT2, - STATE(3797), 1, - sym_comment, - ACTIONS(6904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 24, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143483] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3798), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3699), 1, sym_comment, - ACTIONS(1022), 8, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1024), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [143528] = 4, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4130), 1, + sym__binary_predicate_parenthesized, + STATE(4131), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [138678] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3799), 1, - sym_comment, - ACTIONS(1018), 8, - anon_sym_GT2, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1020), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [143573] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3686), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3800), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3700), 1, sym_comment, - STATE(3825), 1, - sym_path, - ACTIONS(1891), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1893), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143626] = 4, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4198), 1, + sym__binary_predicate_parenthesized, + STATE(4199), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [138761] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3801), 1, - sym_comment, - ACTIONS(2123), 7, - anon_sym_GT2, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(2125), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [143670] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6906), 1, - anon_sym_LBRACK2, - STATE(3802), 1, - sym_comment, - ACTIONS(2304), 8, - anon_sym_LBRACK, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(6597), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2308), 24, - sym_raw_string_begin, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3701), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4136), 1, + sym__binary_predicate_parenthesized, + STATE(4141), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143716] = 6, + [138844] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token2, - STATE(3803), 1, - sym_comment, - ACTIONS(1771), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 25, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143764] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6912), 1, - anon_sym_DOT, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token2, - STATE(3804), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3702), 1, sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143812] = 5, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4144), 1, + sym__binary_predicate_parenthesized, + STATE(4145), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [138927] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6880), 1, - aux_sym__immediate_decimal_token2, - STATE(3805), 1, - sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 25, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143858] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3806), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3696), 1, + aux_sym_shebang_repeat1, + STATE(3703), 1, sym_comment, - ACTIONS(1052), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1054), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [143902] = 4, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4146), 1, + sym__binary_predicate_parenthesized, + STATE(4147), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139010] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3807), 1, - sym_comment, - ACTIONS(1018), 8, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1020), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3680), 1, + aux_sym_shebang_repeat1, + STATE(3704), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4246), 1, + sym__binary_predicate_parenthesized, + STATE(4247), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139093] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3705), 1, + sym_comment, + STATE(3712), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4148), 1, + sym__binary_predicate_parenthesized, + STATE(4149), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [143946] = 5, + [139176] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token2, - STATE(3808), 1, - sym_comment, - ACTIONS(1799), 7, - anon_sym_GT2, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 25, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [143992] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6918), 1, - anon_sym_DOT_DOT2, - STATE(3809), 1, - sym_comment, - ACTIONS(6920), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144040] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6900), 1, - aux_sym__immediate_decimal_token2, - STATE(3810), 1, - sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144086] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3811), 1, - sym_comment, - ACTIONS(1014), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1016), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144130] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token2, - STATE(3812), 1, - sym_comment, - ACTIONS(1711), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1713), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [144176] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3813), 1, - sym_comment, - ACTIONS(1763), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(1765), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [144220] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6924), 1, - aux_sym__immediate_decimal_token2, - STATE(3814), 1, - sym_comment, - ACTIONS(1799), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 26, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144266] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3815), 1, - sym_comment, - ACTIONS(2082), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(2084), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [144310] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3816), 1, - sym_comment, - ACTIONS(2244), 10, - sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(6591), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2242), 23, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6597), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6599), 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - aux_sym_unquoted_token4, - [144354] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3817), 1, - sym_comment, - ACTIONS(1014), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1016), 27, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [144398] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3818), 1, - sym_comment, - ACTIONS(2086), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - ACTIONS(2088), 26, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [144442] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6926), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6928), 1, - aux_sym__immediate_decimal_token2, - STATE(3819), 1, - sym_comment, - ACTIONS(1661), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1663), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [144490] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6918), 1, - anon_sym_DOT_DOT2, - STATE(3820), 1, - sym_comment, - ACTIONS(6920), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1036), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144538] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6728), 1, - aux_sym_unquoted_token2, - STATE(3821), 1, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3706), 1, sym_comment, - ACTIONS(1687), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1699), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4228), 1, + sym__binary_predicate_parenthesized, + STATE(4229), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144584] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6930), 1, - anon_sym_DOT_DOT2, - STATE(3822), 1, - sym_comment, - ACTIONS(6932), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144632] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6934), 1, - anon_sym_DOT, - ACTIONS(6936), 1, - aux_sym__immediate_decimal_token2, - STATE(3823), 1, - sym_comment, - ACTIONS(1669), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1671), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [144680] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6938), 1, - anon_sym_DOT_DOT2, - STATE(3824), 1, - sym_comment, - ACTIONS(6940), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2137), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [144728] = 4, + [139259] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3825), 1, - sym_comment, - ACTIONS(1022), 6, - anon_sym_GT2, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1024), 27, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [144772] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6942), 1, - anon_sym_EQ2, - STATE(3826), 1, - sym_comment, - ACTIONS(5114), 7, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(6597), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5112), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3700), 1, + aux_sym_shebang_repeat1, + STATE(3707), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4151), 1, + sym__binary_predicate_parenthesized, + STATE(4152), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144818] = 4, + [139342] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3827), 1, - sym_comment, - ACTIONS(1022), 8, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1024), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [144862] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(3828), 1, - sym_comment, - ACTIONS(1036), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1034), 22, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6597), 1, aux_sym__val_number_decimal_token1, + ACTIONS(6599), 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [144908] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token2, - STATE(3829), 1, - sym_comment, - ACTIONS(1669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1671), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [144954] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_EQ2, - STATE(3830), 1, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3683), 1, + aux_sym_shebang_repeat1, + STATE(3708), 1, sym_comment, - ACTIONS(5132), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5130), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4255), 1, + sym__binary_predicate_parenthesized, + STATE(4260), 1, + sym__predicate, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, - aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145000] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3831), 1, - sym_comment, - ACTIONS(1018), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1020), 27, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [145044] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6946), 1, - anon_sym_DOT_DOT2, - STATE(3832), 1, - sym_comment, - ACTIONS(6948), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2096), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145092] = 6, + [139425] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6950), 1, - anon_sym_DOT_DOT2, - STATE(3833), 1, - sym_comment, - ACTIONS(6952), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2104), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145140] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(3834), 1, - sym_comment, - ACTIONS(2258), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2254), 22, - anon_sym_DOLLAR, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [145186] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6954), 1, - anon_sym_DOT_DOT2, - STATE(3835), 1, - sym_comment, - ACTIONS(6956), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145234] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6918), 1, - anon_sym_DOT_DOT2, - ACTIONS(6958), 1, - anon_sym_DASH2, - STATE(3836), 1, - sym_comment, - ACTIONS(5376), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(6920), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 22, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145286] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3837), 1, - sym_comment, - ACTIONS(2274), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2272), 22, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [145332] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3838), 1, - sym_comment, - ACTIONS(2238), 10, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2234), 22, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [145378] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6961), 1, - anon_sym_DOT_DOT2, - STATE(3839), 1, - sym_comment, - ACTIONS(6963), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2078), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145426] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3840), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5006), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5004), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145473] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3841), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5065), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5063), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145520] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3842), 1, - sym_comment, - ACTIONS(2403), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2405), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145563] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3843), 1, - sym_comment, - ACTIONS(2439), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2441), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145606] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3844), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145653] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3845), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(4986), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145700] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - aux_sym_record_entry_token1, - ACTIONS(6969), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6971), 1, - sym_filesize_unit, - ACTIONS(6973), 1, - sym_duration_unit, - STATE(3846), 1, - sym_comment, - ACTIONS(6967), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6965), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [145751] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2274), 1, - anon_sym_LBRACE, - STATE(3847), 1, - sym_comment, - ACTIONS(2272), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [145798] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3848), 1, - sym_comment, - ACTIONS(2474), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2476), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145841] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3849), 1, - sym_comment, - ACTIONS(1669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1671), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [145884] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3850), 1, - sym_comment, - ACTIONS(2478), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2480), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145927] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3851), 1, - sym_comment, - ACTIONS(2391), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2393), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [145970] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3852), 1, - sym_comment, - ACTIONS(5222), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5220), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3444), 1, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146013] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3853), 1, - sym_comment, - ACTIONS(5226), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5224), 25, - sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6591), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146056] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3854), 1, - sym_comment, - ACTIONS(2399), 7, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2401), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146099] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3855), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146146] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3856), 1, - sym_comment, - ACTIONS(2292), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2294), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6595), 1, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146193] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3857), 1, - sym_comment, - ACTIONS(2482), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(6597), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2484), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(6599), 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, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146236] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3858), 1, - sym_comment, - ACTIONS(1840), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146283] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3859), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146330] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3860), 1, - sym_comment, - ACTIONS(1661), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1663), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [146373] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token2, - STATE(3861), 1, - sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146418] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3862), 1, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3709), 1, sym_comment, - ACTIONS(1957), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1959), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146461] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6975), 1, - aux_sym__immediate_decimal_token2, - STATE(3863), 1, - sym_comment, - ACTIONS(1799), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146506] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3864), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146553] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3865), 1, - sym_comment, - ACTIONS(5182), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5180), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146596] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3866), 1, - sym_comment, - ACTIONS(5186), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5184), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146639] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3867), 1, - sym_comment, - ACTIONS(5190), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5188), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146682] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3868), 1, - sym_comment, - ACTIONS(5194), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5192), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146725] = 27, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - anon_sym_LBRACE, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3869), 1, - sym_comment, - STATE(4225), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, + STATE(4070), 1, sym_val_number, - STATE(4618), 1, - sym__binary_predicate_parenthesized, - STATE(4619), 1, + STATE(4213), 1, + sym__binary_predicate, + STATE(4215), 1, sym__predicate, - STATE(5167), 1, + STATE(4787), 1, sym_val_closure, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [146814] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token2, - STATE(3870), 1, - sym_comment, - ACTIONS(1711), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1713), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [146859] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3871), 1, - sym_comment, - ACTIONS(1711), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1713), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [146902] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3872), 1, - sym_comment, - ACTIONS(2470), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2472), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [146945] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6997), 1, - anon_sym_DOT_DOT2, - STATE(3873), 1, - sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [146992] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3874), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147039] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3875), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147086] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3876), 1, - sym_comment, - ACTIONS(2520), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2522), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147129] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3877), 1, - sym_comment, - ACTIONS(1767), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - aux_sym_record_entry_token1, - ACTIONS(1769), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [147172] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(3878), 1, - sym_comment, - ACTIONS(1830), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147219] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3879), 1, - sym_comment, - ACTIONS(2486), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2488), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147262] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3880), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147309] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3881), 1, - sym_comment, - ACTIONS(2492), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2494), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147352] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3882), 1, - sym_comment, - ACTIONS(1941), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1943), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147395] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3883), 1, - sym_comment, - ACTIONS(2292), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2294), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147442] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3884), 1, - sym_comment, - ACTIONS(2504), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2506), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147485] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3885), 1, - sym_comment, - ACTIONS(2508), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2510), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147528] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3886), 1, - sym_comment, - ACTIONS(1883), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1885), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147571] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(3887), 1, - sym_comment, - ACTIONS(1840), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147618] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3888), 1, - sym_comment, - ACTIONS(1891), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1893), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147661] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3889), 1, - sym_comment, - ACTIONS(1895), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1897), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147704] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(3890), 1, - sym_comment, - ACTIONS(2266), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2270), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147751] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3891), 1, - sym_comment, - ACTIONS(2359), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2361), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147794] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(3892), 1, - sym_comment, - ACTIONS(2226), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2230), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [147841] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3893), 1, - sym_comment, - ACTIONS(1917), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1919), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147884] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3894), 1, - sym_comment, - ACTIONS(2363), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2365), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147927] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3895), 1, - sym_comment, - ACTIONS(2367), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2369), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147970] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3896), 1, - sym_comment, - ACTIONS(1925), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1927), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148013] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(3897), 1, - sym_comment, - ACTIONS(2258), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2254), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148060] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(3898), 1, - sym_comment, - ACTIONS(1036), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(1034), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148107] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3899), 1, - sym_comment, - ACTIONS(1933), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1935), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148150] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3900), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148197] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3901), 1, - sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148240] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3902), 1, - sym_comment, - ACTIONS(2371), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2373), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148283] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3903), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148330] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3904), 1, - sym_comment, - ACTIONS(2274), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2272), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148377] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3905), 1, - sym_comment, - ACTIONS(2238), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2234), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148424] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3906), 1, - sym_comment, - ACTIONS(2375), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2377), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148467] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3907), 1, - sym_comment, - ACTIONS(1937), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1939), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148510] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3908), 1, - sym_comment, - ACTIONS(1771), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148553] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3909), 1, - sym_comment, - ACTIONS(2379), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2381), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148596] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3910), 1, - sym_comment, - ACTIONS(1799), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148639] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3911), 1, - sym_comment, - ACTIONS(2383), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2385), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148682] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3912), 1, - sym_comment, - ACTIONS(1818), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1820), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148725] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3913), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148772] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3914), 1, - sym_comment, - ACTIONS(5230), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5228), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148815] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6936), 1, - aux_sym__immediate_decimal_token2, - STATE(3915), 1, - sym_comment, - ACTIONS(1669), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1671), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [148860] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5376), 1, - anon_sym_LBRACE, - ACTIONS(6997), 1, - anon_sym_DOT_DOT2, - STATE(3916), 1, - sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148909] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3917), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [148956] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3918), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149003] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3919), 1, - sym_comment, - ACTIONS(1034), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1036), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149046] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3920), 1, - sym_comment, - ACTIONS(2244), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2242), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [149089] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3921), 1, - sym_comment, - ACTIONS(5126), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5124), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149132] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6782), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6999), 1, - anon_sym_DOT, - STATE(3922), 1, - sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1781), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149179] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3923), 1, - sym_comment, - ACTIONS(1052), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1054), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149222] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3924), 1, - sym_comment, - ACTIONS(5138), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5136), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149265] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3925), 1, - sym_comment, - ACTIONS(5234), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5232), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149308] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(3926), 1, - sym_comment, - ACTIONS(1830), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149355] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3927), 1, - sym_comment, - ACTIONS(1949), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1951), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149398] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3928), 1, - sym_comment, - ACTIONS(2454), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2456), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149441] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(3929), 1, - sym_comment, - ACTIONS(2266), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2270), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149488] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, - anon_sym_LBRACE, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(3930), 1, - sym_comment, - ACTIONS(2254), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149535] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3931), 1, - sym_comment, - ACTIONS(1687), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1699), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149578] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3932), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4994), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(4992), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149625] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3933), 1, - sym_comment, - ACTIONS(2244), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2242), 30, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [149668] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3934), 1, - sym_comment, - ACTIONS(2466), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2468), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149711] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3935), 1, - sym_comment, - ACTIONS(1779), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 25, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149754] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5376), 1, - anon_sym_EQ_GT, - ACTIONS(7001), 1, - anon_sym_DOT_DOT2, - STATE(3936), 1, - sym_comment, - ACTIONS(7003), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149803] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7001), 1, - anon_sym_DOT_DOT2, - STATE(3937), 1, - sym_comment, - ACTIONS(7003), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1036), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149850] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7005), 1, - anon_sym_DOT_DOT2, - STATE(3938), 1, - sym_comment, - ACTIONS(7007), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149897] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7001), 1, - anon_sym_DOT_DOT2, - STATE(3939), 1, - sym_comment, - ACTIONS(7003), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149944] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7009), 1, - anon_sym_DOT_DOT2, - STATE(3940), 1, - sym_comment, - ACTIONS(7011), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [149991] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(3941), 1, - sym_comment, - STATE(8145), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150038] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6997), 1, - anon_sym_DOT_DOT2, - STATE(3942), 1, - sym_comment, - ACTIONS(1048), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1036), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150085] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(3943), 1, - sym_comment, - ACTIONS(2226), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2230), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150132] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1036), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(3944), 1, - sym_comment, - ACTIONS(1034), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150179] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3945), 1, - sym_comment, - ACTIONS(1771), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 25, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150222] = 27, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - anon_sym_LBRACE, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(3869), 1, - aux_sym_shebang_repeat1, - STATE(3946), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4630), 1, - sym__binary_predicate_parenthesized, - STATE(4632), 1, - sym__predicate, - STATE(5238), 1, - sym_val_closure, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [150311] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7013), 1, - anon_sym_DOT_DOT2, - STATE(3947), 1, - sym_comment, - ACTIONS(7015), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2078), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150358] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7017), 1, - anon_sym_DOT_DOT2, - STATE(3948), 1, - sym_comment, - ACTIONS(7019), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2096), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150405] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7021), 1, - anon_sym_DOT_DOT2, - STATE(3949), 1, - sym_comment, - ACTIONS(7023), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2104), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150452] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7025), 1, - anon_sym_DOT_DOT2, - STATE(3950), 1, - sym_comment, - ACTIONS(7027), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2137), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150499] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3951), 1, - sym_comment, - ACTIONS(1799), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 25, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150542] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3952), 1, - sym_comment, - ACTIONS(1818), 7, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1820), 25, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150585] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3953), 1, - sym_comment, - ACTIONS(2387), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2389), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150628] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3954), 1, - sym_comment, - ACTIONS(2391), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2393), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150671] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3955), 1, - sym_comment, - ACTIONS(2458), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2460), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150714] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3956), 1, - sym_comment, - ACTIONS(2462), 7, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2464), 25, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150757] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, - anon_sym_LBRACE, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3957), 1, - sym_comment, - ACTIONS(2234), 29, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [150804] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3958), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5466), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [150874] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3959), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [150942] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - STATE(3960), 1, - sym_comment, - STATE(3982), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5460), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151012] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3961), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5456), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151082] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - STATE(3962), 1, - sym_comment, - STATE(3983), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5460), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151154] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - ACTIONS(7085), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3963), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5456), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151226] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - ACTIONS(7087), 1, - anon_sym_xor2, - STATE(3964), 1, - sym_comment, - STATE(3984), 1, - aux_sym_shebang_repeat1, - ACTIONS(5460), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [151300] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3965), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151360] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3966), 1, - sym_comment, - STATE(3985), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5460), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151422] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3967), 1, - sym_comment, - ACTIONS(5458), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5456), 20, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151476] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3968), 1, - sym_comment, - STATE(3986), 1, - aux_sym_shebang_repeat1, - ACTIONS(5462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5460), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151532] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3969), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 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, - [151594] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3970), 1, - sym_comment, - STATE(3987), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5460), 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, - [151658] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3971), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151722] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - STATE(3972), 1, - sym_comment, - STATE(3988), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5460), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151788] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3973), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [151854] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - STATE(3974), 1, - sym_comment, - STATE(3989), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5460), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [151922] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(3975), 1, - sym_comment, - ACTIONS(2234), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [151966] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3976), 1, - sym_comment, - ACTIONS(1771), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1773), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152008] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7089), 1, - anon_sym_DOT, - STATE(3977), 1, - sym_comment, - ACTIONS(1779), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1781), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152054] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3978), 1, - sym_comment, - ACTIONS(5498), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5496), 18, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152110] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3979), 1, - sym_comment, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5496), 21, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152160] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3980), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 14, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152218] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3981), 1, - sym_comment, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5498), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5496), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152264] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3982), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152332] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3983), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5496), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [152402] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - ACTIONS(7085), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3984), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5496), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [152474] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3985), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152534] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3986), 1, - sym_comment, - ACTIONS(5498), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5496), 20, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152588] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3987), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 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, - [152650] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3988), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152714] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(3989), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5496), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [152780] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3990), 1, - sym_comment, - ACTIONS(1799), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1801), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152822] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3991), 1, - sym_comment, - STATE(4010), 1, - aux_sym_shebang_repeat1, - ACTIONS(5476), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5474), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152880] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - STATE(3992), 1, - sym_comment, - STATE(4012), 1, - aux_sym_shebang_repeat1, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5476), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5474), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152932] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3993), 1, - sym_comment, - STATE(4014), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5474), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [152992] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - STATE(3994), 1, - sym_comment, - STATE(4016), 1, - aux_sym_shebang_repeat1, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5476), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5474), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153040] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3995), 1, - sym_comment, - ACTIONS(1818), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1820), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153082] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7095), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7097), 1, - sym_filesize_unit, - ACTIONS(7099), 1, - sym_duration_unit, - STATE(3996), 1, - sym_comment, - ACTIONS(7093), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7091), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [153130] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - STATE(3997), 1, - sym_comment, - STATE(4018), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5474), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [153200] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3998), 1, - sym_comment, - ACTIONS(1711), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1713), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [153242] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - STATE(3958), 1, - aux_sym_shebang_repeat1, - STATE(3999), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5474), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [153314] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - ACTIONS(7087), 1, - anon_sym_xor2, - STATE(4000), 1, - sym_comment, - STATE(4023), 1, - aux_sym_shebang_repeat1, - ACTIONS(5474), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [153388] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4001), 1, - sym_comment, - STATE(4025), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5474), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153450] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7105), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7107), 1, - sym_filesize_unit, - ACTIONS(7109), 1, - sym_duration_unit, - STATE(4002), 1, - sym_comment, - ACTIONS(7103), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7101), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [153498] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4003), 1, - sym_comment, - ACTIONS(1779), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1781), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153540] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4004), 1, - sym_comment, - STATE(4030), 1, - aux_sym_shebang_repeat1, - ACTIONS(5476), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5474), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153596] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4005), 1, - sym_comment, - STATE(4035), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5474), 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, - [153660] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - STATE(4006), 1, - sym_comment, - STATE(4038), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5474), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153726] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - STATE(4007), 1, - sym_comment, - STATE(4040), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5474), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [153794] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4008), 1, - sym_comment, - ACTIONS(1661), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1663), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [153836] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(4009), 1, - sym_comment, - ACTIONS(1687), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153880] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4010), 1, - sym_comment, - ACTIONS(5468), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5466), 18, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153936] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4011), 1, - sym_comment, - STATE(4063), 1, - aux_sym_shebang_repeat1, - ACTIONS(5484), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5482), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [153994] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4012), 1, - sym_comment, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5468), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5466), 21, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154044] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - STATE(4013), 1, - sym_comment, - STATE(4064), 1, - aux_sym_shebang_repeat1, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5484), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5482), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154096] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4014), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5466), 14, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154154] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4015), 1, - sym_comment, - STATE(4065), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5482), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154214] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4016), 1, - sym_comment, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5468), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5466), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154260] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - STATE(4017), 1, - sym_comment, - STATE(4066), 1, - aux_sym_shebang_repeat1, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5484), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5482), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154308] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4018), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5466), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154376] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - STATE(4019), 1, - sym_comment, - STATE(4067), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5482), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [154446] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(4020), 1, - sym_comment, - ACTIONS(2242), 30, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [154488] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4021), 1, - sym_comment, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5458), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5456), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154534] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - STATE(3981), 1, - aux_sym_shebang_repeat1, - STATE(4022), 1, - sym_comment, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5462), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5460), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154582] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - ACTIONS(7085), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4023), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5466), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [154654] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - ACTIONS(7087), 1, - anon_sym_xor2, - STATE(4024), 1, - sym_comment, - STATE(4069), 1, - aux_sym_shebang_repeat1, - ACTIONS(5482), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [154728] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4025), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5466), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154788] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4026), 1, - sym_comment, - ACTIONS(1669), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1671), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [154830] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(4027), 1, - sym_comment, - ACTIONS(1830), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154876] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4028), 1, - sym_comment, - STATE(4070), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5482), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154938] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(4029), 1, - sym_comment, - ACTIONS(2292), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2294), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [154984] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4030), 1, - sym_comment, - ACTIONS(5468), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5466), 20, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155038] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(4031), 1, - sym_comment, - ACTIONS(1840), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155084] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4032), 1, - sym_comment, - STATE(4071), 1, - aux_sym_shebang_repeat1, - ACTIONS(5484), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5482), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155140] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(4033), 1, - sym_comment, - ACTIONS(2266), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2270), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155186] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(4034), 1, - sym_comment, - ACTIONS(2226), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2230), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155232] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4035), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5466), 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, - [155294] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4036), 1, - sym_comment, - STATE(4072), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5482), 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, - [155358] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4037), 1, - sym_comment, - ACTIONS(1767), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1769), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [155400] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4038), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5466), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155464] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - STATE(4039), 1, - sym_comment, - STATE(4073), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5482), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155530] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4040), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5466), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [155596] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - STATE(4041), 1, - sym_comment, - STATE(4074), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5482), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [155664] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4042), 1, - sym_comment, - STATE(4075), 1, - aux_sym_shebang_repeat1, - ACTIONS(5480), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5478), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155722] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - STATE(4043), 1, - sym_comment, - STATE(4077), 1, - aux_sym_shebang_repeat1, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5480), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5478), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [155774] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3089), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7111), 1, - sym_filesize_unit, - ACTIONS(7113), 1, - sym_duration_unit, - STATE(4044), 1, - sym_comment, - ACTIONS(3087), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [155822] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7119), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7121), 1, - sym_filesize_unit, - ACTIONS(7123), 1, - sym_duration_unit, - STATE(4045), 1, - sym_comment, - ACTIONS(7117), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7115), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [155870] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3071), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7125), 1, - sym_filesize_unit, - ACTIONS(7127), 1, - sym_duration_unit, - STATE(4046), 1, - sym_comment, - ACTIONS(3069), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3067), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [155918] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7133), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7135), 1, - sym_filesize_unit, - ACTIONS(7137), 1, - sym_duration_unit, - STATE(4047), 1, - sym_comment, - ACTIONS(7131), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7129), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [155966] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(4048), 1, - sym_comment, - STATE(4079), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5478), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156026] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - STATE(4021), 1, - aux_sym_shebang_repeat1, - STATE(4049), 1, - sym_comment, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5480), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5478), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156074] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - STATE(3959), 1, - aux_sym_shebang_repeat1, - STATE(4050), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5478), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [156144] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - STATE(3961), 1, - aux_sym_shebang_repeat1, - STATE(4051), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5478), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [156216] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6720), 1, - aux_sym_unquoted_token2, - STATE(4052), 1, - sym_comment, - ACTIONS(1687), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156260] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - ACTIONS(7087), 1, - anon_sym_xor2, - STATE(3963), 1, - aux_sym_shebang_repeat1, - STATE(4053), 1, - sym_comment, - ACTIONS(5478), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [156334] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3965), 1, - aux_sym_shebang_repeat1, - STATE(4054), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5478), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156396] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3967), 1, - aux_sym_shebang_repeat1, - STATE(4055), 1, - sym_comment, - ACTIONS(5480), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5478), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156452] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3969), 1, - aux_sym_shebang_repeat1, - STATE(4056), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5478), 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, - [156516] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(4057), 1, - sym_comment, - ACTIONS(1034), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156560] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - STATE(3971), 1, - aux_sym_shebang_repeat1, - STATE(4058), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5478), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156626] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - STATE(3973), 1, - aux_sym_shebang_repeat1, - STATE(4059), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5478), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [156694] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7143), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(7145), 1, - sym_filesize_unit, - ACTIONS(7147), 1, - sym_duration_unit, - STATE(4060), 1, - sym_comment, - ACTIONS(7141), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7139), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [156742] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(4061), 1, - sym_comment, - ACTIONS(2254), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156786] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4062), 1, - sym_comment, - ACTIONS(2272), 29, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156830] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4063), 1, - sym_comment, - ACTIONS(5494), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5492), 18, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156886] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4064), 1, - sym_comment, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5494), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5492), 21, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156936] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4065), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5492), 14, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [156994] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4066), 1, - sym_comment, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5492), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157040] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4067), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5492), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157108] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4068), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5492), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [157178] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - ACTIONS(7085), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4069), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5492), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [157250] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4070), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5492), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157310] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4071), 1, - sym_comment, - ACTIONS(5494), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5492), 20, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157364] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4072), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5492), 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, - [157426] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4073), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5492), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157490] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4074), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5492), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [157556] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4075), 1, - sym_comment, - ACTIONS(5458), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5456), 18, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157612] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3978), 1, - aux_sym_shebang_repeat1, - STATE(4076), 1, - sym_comment, - ACTIONS(5462), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5460), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157670] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4077), 1, - sym_comment, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5458), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5456), 21, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157720] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - STATE(3979), 1, - aux_sym_shebang_repeat1, - STATE(4078), 1, - sym_comment, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5462), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5460), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157772] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4079), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5456), 14, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157830] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - STATE(3980), 1, - aux_sym_shebang_repeat1, - STATE(4080), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5460), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [157890] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5512), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - STATE(4068), 1, - aux_sym_shebang_repeat1, - STATE(4081), 1, - sym_comment, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5482), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [157962] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4082), 1, - sym_comment, - ACTIONS(2254), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2258), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158003] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4083), 1, - sym_comment, - ACTIONS(2411), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2413), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158044] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4084), 1, - sym_comment, - ACTIONS(2415), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2417), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158085] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4085), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5426), 20, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158134] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4086), 1, - sym_comment, - ACTIONS(5432), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5430), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158175] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4087), 1, - sym_comment, - STATE(5122), 1, - sym_redirection, - ACTIONS(7159), 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(7161), 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(7157), 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, - [158220] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(5515), 1, - anon_sym_DASH2, - ACTIONS(5523), 1, - anon_sym_PLUS2, - ACTIONS(5563), 1, - anon_sym_bit_DASHand2, - ACTIONS(5565), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5567), 1, - anon_sym_bit_DASHor2, - ACTIONS(5591), 1, - anon_sym_and2, - ACTIONS(5602), 1, - anon_sym_xor2, - ACTIONS(7163), 1, - anon_sym_or2, - STATE(4088), 1, - sym_comment, - STATE(4098), 1, - aux_sym_shebang_repeat1, - ACTIONS(5517), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5519), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5521), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5559), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5561), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5555), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5557), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [158293] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6985), 1, - anon_sym_LBRACE, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4089), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4636), 1, - sym__binary_predicate, - STATE(4637), 1, - sym__predicate, - STATE(5082), 1, - sym_val_closure, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [158376] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4090), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158417] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4091), 1, - sym_comment, - ACTIONS(1830), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1838), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158458] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4092), 1, - sym_comment, - ACTIONS(2266), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2270), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158499] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4093), 1, - sym_comment, - ACTIONS(2272), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2274), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158540] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4094), 1, - sym_comment, - ACTIONS(2131), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2137), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158581] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4095), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158622] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4096), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 8, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158679] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4097), 1, - sym_comment, - ACTIONS(2234), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2238), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158720] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(5527), 1, - anon_sym_DASH2, - ACTIONS(5541), 1, - anon_sym_PLUS2, - ACTIONS(5545), 1, - anon_sym_bit_DASHand2, - ACTIONS(5571), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5585), 1, - anon_sym_bit_DASHor2, - ACTIONS(5595), 1, - anon_sym_and2, - ACTIONS(5600), 1, - anon_sym_xor2, - ACTIONS(7175), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4098), 1, - sym_comment, - ACTIONS(5525), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5531), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5535), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5537), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5539), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5543), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5529), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5533), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [158793] = 25, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(7177), 1, - anon_sym_LBRACE, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4099), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4825), 1, - sym__binary_predicate, - STATE(4826), 1, - sym__predicate, - STATE(5466), 1, - sym_val_closure, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [158876] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4100), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 10, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158931] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4101), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [158972] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_bit_DASHand2, - STATE(4102), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 7, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159031] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4103), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159072] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4104), 1, - sym_comment, - ACTIONS(2419), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2421), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159113] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4105), 1, - sym_comment, - STATE(4148), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4584), 1, - sym__binary_predicate_parenthesized, - STATE(4585), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [159196] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4106), 1, - sym_comment, - STATE(4149), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4586), 1, - sym__binary_predicate_parenthesized, - STATE(4587), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [159279] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4107), 1, - sym_comment, - ACTIONS(2423), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2425), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159320] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4108), 1, - sym_comment, - ACTIONS(2427), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2429), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159361] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4109), 1, - sym_comment, - ACTIONS(2431), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2433), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159402] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4110), 1, - sym_comment, - STATE(4151), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4590), 1, - sym__binary_predicate_parenthesized, - STATE(4591), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [159485] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4111), 1, - sym_comment, - STATE(5178), 1, - sym_redirection, - ACTIONS(7159), 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(7161), 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(7181), 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, - [159530] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4112), 1, - sym_comment, - STATE(4155), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4594), 1, - sym__binary_predicate_parenthesized, - STATE(4595), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [159613] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4113), 1, - sym_comment, - ACTIONS(2435), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2437), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159654] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4114), 1, - sym_comment, - STATE(4157), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4596), 1, - sym__binary_predicate_parenthesized, - STATE(4597), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [159737] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4115), 1, - sym_comment, - STATE(4169), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4599), 1, - sym__binary_predicate_parenthesized, - STATE(4600), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [159820] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4116), 1, - sym_comment, - ACTIONS(2443), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2445), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159861] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4117), 1, - sym_comment, - ACTIONS(2447), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2449), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159902] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4118), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159943] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4119), 1, - sym_comment, - ACTIONS(5428), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5426), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [159984] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4120), 1, - sym_comment, - STATE(4142), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4774), 1, - sym__binary_predicate_parenthesized, - STATE(4775), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [160067] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4121), 1, - sym_comment, - ACTIONS(2242), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2244), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160108] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4122), 1, - sym_comment, - STATE(4141), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4770), 1, - sym__binary_predicate_parenthesized, - STATE(4771), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [160191] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_bit_DASHand2, - ACTIONS(7183), 1, - anon_sym_bit_DASHxor2, - STATE(4123), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 6, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [160252] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4124), 1, - sym_comment, - STATE(4143), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4776), 1, - sym__binary_predicate_parenthesized, - STATE(4777), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [160335] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4125), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160376] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4126), 1, - sym_comment, - ACTIONS(5436), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5434), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160417] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4127), 1, - sym_comment, - ACTIONS(2226), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2230), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160458] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4128), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160499] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4129), 1, - sym_comment, - ACTIONS(5378), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160540] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4130), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 18, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160591] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_bit_DASHand2, - ACTIONS(7183), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7185), 1, - anon_sym_and2, - ACTIONS(7187), 1, - anon_sym_xor2, - ACTIONS(7189), 1, - anon_sym_bit_DASHor2, - STATE(4131), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [160658] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4132), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4676), 1, - sym__predicate, - STATE(4782), 1, - sym__binary_predicate_parenthesized, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [160741] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4133), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4679), 1, - sym__binary_predicate_parenthesized, - STATE(4680), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [160824] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4134), 1, - sym_comment, - ACTIONS(2407), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2409), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160865] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4135), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160906] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4136), 1, - sym_comment, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 4, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5426), 20, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160953] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4137), 1, - sym_comment, - ACTIONS(2292), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2294), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [160994] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4138), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161035] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4139), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 14, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161088] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4140), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161129] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4141), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4694), 1, - sym__binary_predicate_parenthesized, - STATE(4695), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161212] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4142), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4698), 1, - sym__binary_predicate_parenthesized, - STATE(4699), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161295] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4143), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4703), 1, - sym__binary_predicate_parenthesized, - STATE(4704), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161378] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(4144), 1, - sym_comment, - ACTIONS(1687), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1699), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161421] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4145), 1, - sym_comment, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5428), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5426), 22, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161464] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4146), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161505] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_bit_DASHand2, - ACTIONS(7183), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7189), 1, - anon_sym_bit_DASHor2, - STATE(4147), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 5, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [161568] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4148), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4711), 1, - sym__binary_predicate_parenthesized, - STATE(4712), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161651] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4149), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4716), 1, - sym__binary_predicate_parenthesized, - STATE(4717), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161734] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4150), 1, - sym_comment, - ACTIONS(2072), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2078), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [161775] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4151), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4723), 1, - sym__binary_predicate_parenthesized, - STATE(4726), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161858] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4132), 1, - aux_sym_shebang_repeat1, - STATE(4152), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4728), 1, - sym__binary_predicate_parenthesized, - STATE(4738), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [161941] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4133), 1, - aux_sym_shebang_repeat1, - STATE(4153), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4739), 1, - sym__binary_predicate_parenthesized, - STATE(4741), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [162024] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4154), 1, - sym_comment, - STATE(4171), 1, - aux_sym_shebang_repeat1, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4746), 1, - sym__binary_predicate_parenthesized, - STATE(4747), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [162107] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4155), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4760), 1, - sym__binary_predicate_parenthesized, - STATE(4761), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [162190] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4156), 1, - sym_comment, - ACTIONS(1840), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1848), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162231] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4157), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4764), 1, - sym__binary_predicate_parenthesized, - STATE(4765), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [162314] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7059), 1, - anon_sym_DASH2, - ACTIONS(7073), 1, - anon_sym_PLUS2, - ACTIONS(7077), 1, - anon_sym_bit_DASHand2, - ACTIONS(7079), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7081), 1, - anon_sym_bit_DASHor2, - ACTIONS(7083), 1, - anon_sym_and2, - ACTIONS(7087), 1, - anon_sym_xor2, - ACTIONS(7191), 1, - anon_sym_or2, - STATE(4158), 1, - sym_comment, - STATE(4159), 1, - aux_sym_shebang_repeat1, - ACTIONS(7057), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7063), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7067), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7069), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7071), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7075), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7061), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7065), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [162387] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7031), 1, - anon_sym_DASH2, - ACTIONS(7037), 1, - anon_sym_and2, - ACTIONS(7047), 1, - anon_sym_PLUS2, - ACTIONS(7051), 1, - anon_sym_bit_DASHand2, - ACTIONS(7053), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7055), 1, - anon_sym_bit_DASHor2, - ACTIONS(7085), 1, - anon_sym_xor2, - ACTIONS(7193), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4159), 1, - sym_comment, - ACTIONS(7029), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7035), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7041), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7043), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7045), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7049), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7033), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7039), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [162460] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4160), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162501] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7179), 1, - anon_sym_bit_DASHand2, - ACTIONS(7183), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7185), 1, - anon_sym_and2, - ACTIONS(7189), 1, - anon_sym_bit_DASHor2, - STATE(4161), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [162566] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4162), 1, - sym_comment, - ACTIONS(5286), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5284), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162607] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4163), 1, - sym_comment, - ACTIONS(2395), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2397), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162648] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6493), 1, - anon_sym_DASH2, - ACTIONS(6501), 1, - anon_sym_PLUS2, - ACTIONS(6513), 1, - anon_sym_bit_DASHand2, - ACTIONS(6515), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6517), 1, - anon_sym_bit_DASHor2, - ACTIONS(6519), 1, - anon_sym_and2, - ACTIONS(6521), 1, - anon_sym_xor2, - ACTIONS(7195), 1, - anon_sym_or2, - STATE(4164), 1, - sym_comment, - STATE(4165), 1, - aux_sym_shebang_repeat1, - ACTIONS(6495), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6497), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6499), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6503), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6505), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6511), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6507), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6509), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [162721] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6459), 1, - anon_sym_DASH2, - ACTIONS(6469), 1, - anon_sym_PLUS2, - ACTIONS(6531), 1, - anon_sym_bit_DASHand2, - ACTIONS(6533), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6535), 1, - anon_sym_bit_DASHor2, - ACTIONS(6537), 1, - anon_sym_and2, - ACTIONS(6539), 1, - anon_sym_xor2, - ACTIONS(7197), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4165), 1, - sym_comment, - ACTIONS(6457), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6461), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6465), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6467), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6471), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6529), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6463), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6527), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [162794] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4166), 1, - sym_comment, - ACTIONS(2090), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2096), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162835] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6958), 1, - anon_sym_DASH2, - STATE(4167), 1, - sym_comment, - ACTIONS(5376), 2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - ACTIONS(5378), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5380), 22, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162880] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4168), 1, - sym_comment, - ACTIONS(5416), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5414), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [162921] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4169), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4768), 1, - sym__binary_predicate_parenthesized, - STATE(4769), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [163004] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4170), 1, - sym_comment, - ACTIONS(2098), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2104), 24, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163045] = 25, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6979), 1, - sym__newline, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4171), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(4573), 1, - sym_val_number, - STATE(4683), 1, - sym__binary_predicate_parenthesized, - STATE(4684), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [163128] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - STATE(4172), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 9, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163184] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4173), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5426), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163230] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4174), 1, - sym_comment, - STATE(5441), 1, - sym_redirection, - ACTIONS(7159), 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(7161), 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(7223), 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, - [163274] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4175), 1, - sym_comment, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5428), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5426), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163316] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - ACTIONS(7239), 1, - anon_sym_bit_DASHand2, - ACTIONS(7241), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7243), 1, - anon_sym_bit_DASHor2, - STATE(4176), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [163380] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4177), 1, - sym_comment, - STATE(5328), 1, - sym_redirection, - ACTIONS(7245), 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(7247), 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(7157), 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, - [163424] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - ACTIONS(7239), 1, - anon_sym_bit_DASHand2, - ACTIONS(7241), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7243), 1, - anon_sym_bit_DASHor2, - ACTIONS(7249), 1, - anon_sym_and2, - STATE(4178), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [163490] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - STATE(4179), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 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, - [163548] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - ACTIONS(7239), 1, - anon_sym_bit_DASHand2, - STATE(4180), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163608] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - ACTIONS(7239), 1, - anon_sym_bit_DASHand2, - ACTIONS(7241), 1, - anon_sym_bit_DASHxor2, - STATE(4181), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [163670] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - ACTIONS(7239), 1, - anon_sym_bit_DASHand2, - ACTIONS(7241), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7243), 1, - anon_sym_bit_DASHor2, - ACTIONS(7249), 1, - anon_sym_and2, - ACTIONS(7251), 1, - anon_sym_xor2, - STATE(4182), 1, - sym_comment, - ACTIONS(5426), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [163738] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - aux_sym_cmd_identifier_token41, - STATE(4183), 1, - sym_comment, - ACTIONS(3211), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3209), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [163780] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - STATE(4184), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 17, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163832] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4185), 1, - sym_comment, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5428), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5426), 20, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163878] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - STATE(4186), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 13, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163932] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4187), 1, - sym_comment, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5428), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5426), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [163974] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - ACTIONS(7255), 1, - anon_sym_bit_DASHand2, - ACTIONS(7257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7259), 1, - anon_sym_bit_DASHor2, - STATE(4188), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5426), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [164038] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - ACTIONS(7255), 1, - anon_sym_bit_DASHand2, - ACTIONS(7257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7259), 1, - anon_sym_bit_DASHor2, - ACTIONS(7261), 1, - anon_sym_and2, - STATE(4189), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5426), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [164104] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - ACTIONS(7255), 1, - anon_sym_bit_DASHand2, - ACTIONS(7257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7259), 1, - anon_sym_bit_DASHor2, - ACTIONS(7261), 1, - anon_sym_and2, - ACTIONS(7263), 1, - anon_sym_xor2, - STATE(4190), 1, - sym_comment, - ACTIONS(5426), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [164172] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - STATE(4191), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [164226] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - STATE(4192), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 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, - [164284] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - ACTIONS(7255), 1, - anon_sym_bit_DASHand2, - STATE(4193), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 6, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [164344] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - ACTIONS(7255), 1, - anon_sym_bit_DASHand2, - ACTIONS(7257), 1, - anon_sym_bit_DASHxor2, - STATE(4194), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [164406] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7269), 1, - aux_sym_cmd_identifier_token41, - STATE(4195), 1, - sym_comment, - ACTIONS(7267), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7265), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164448] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3201), 1, - aux_sym_cmd_identifier_token41, - STATE(4196), 1, - sym_comment, - ACTIONS(3199), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3197), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164490] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7275), 1, - aux_sym_cmd_identifier_token41, - STATE(4197), 1, - sym_comment, - ACTIONS(7273), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7271), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164532] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7281), 1, - aux_sym_cmd_identifier_token41, - STATE(4198), 1, - sym_comment, - ACTIONS(7279), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7277), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164574] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - STATE(4199), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5426), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [164630] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7287), 1, - aux_sym_cmd_identifier_token41, - STATE(4200), 1, - sym_comment, - ACTIONS(7285), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7283), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164672] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - STATE(4201), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5426), 19, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [164722] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7293), 1, - aux_sym_cmd_identifier_token41, - STATE(4202), 1, - sym_comment, - ACTIONS(7291), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7289), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164764] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7299), 1, - aux_sym_cmd_identifier_token41, - STATE(4203), 1, - sym_comment, - ACTIONS(7297), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7295), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [164806] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - STATE(4204), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5426), 17, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [164858] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4205), 1, - sym_comment, - STATE(5367), 1, - sym_redirection, - ACTIONS(7245), 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(7247), 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(7181), 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, - [164902] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4206), 1, - sym_comment, - STATE(5447), 1, - sym_redirection, - ACTIONS(7159), 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(7161), 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(7301), 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, - [164946] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - STATE(4207), 1, - sym_comment, - ACTIONS(5428), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5426), 19, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [164996] = 23, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4208), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4731), 1, - sym__binary_predicate, - STATE(4732), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165073] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5675), 1, - anon_sym_DASH2, - ACTIONS(5689), 1, - anon_sym_PLUS2, - ACTIONS(5693), 1, - anon_sym_bit_DASHand2, - ACTIONS(5695), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5697), 1, - anon_sym_bit_DASHor2, - ACTIONS(5711), 1, - anon_sym_and2, - ACTIONS(5713), 1, - anon_sym_xor2, - ACTIONS(7303), 1, - anon_sym_or2, - STATE(4209), 1, - sym_comment, - ACTIONS(5673), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5679), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5683), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5685), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5687), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5691), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5677), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5681), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [165140] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4210), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4837), 1, - sym__binary_predicate, - STATE(4842), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165217] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7149), 1, - anon_sym_PLUS2, - ACTIONS(7179), 1, - anon_sym_bit_DASHand2, - ACTIONS(7183), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7185), 1, - anon_sym_and2, - ACTIONS(7187), 1, - anon_sym_xor2, - ACTIONS(7189), 1, - anon_sym_bit_DASHor2, - ACTIONS(7305), 1, - anon_sym_DASH2, - ACTIONS(7307), 1, - anon_sym_or2, - STATE(4211), 1, - sym_comment, - ACTIONS(7151), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7153), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7155), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7165), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7171), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7173), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7167), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7169), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [165284] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6541), 1, - anon_sym_DASH2, - ACTIONS(6549), 1, - anon_sym_PLUS2, - ACTIONS(6561), 1, - anon_sym_bit_DASHand2, - ACTIONS(6563), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6565), 1, - anon_sym_bit_DASHor2, - ACTIONS(6567), 1, - anon_sym_and2, - ACTIONS(6569), 1, - anon_sym_xor2, - ACTIONS(7309), 1, - anon_sym_or2, - STATE(4212), 1, - sym_comment, - ACTIONS(6543), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6545), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6547), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6551), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6553), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6559), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6555), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6557), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [165351] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7201), 1, - anon_sym_DASH2, - ACTIONS(7213), 1, - anon_sym_PLUS2, - ACTIONS(7255), 1, - anon_sym_bit_DASHand2, - ACTIONS(7257), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7259), 1, - anon_sym_bit_DASHor2, - ACTIONS(7261), 1, - anon_sym_and2, - ACTIONS(7263), 1, - anon_sym_xor2, - ACTIONS(7311), 1, - anon_sym_or2, - STATE(4213), 1, - sym_comment, - ACTIONS(7199), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7205), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7209), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7211), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7215), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7253), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7203), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7207), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [165418] = 23, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4214), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4733), 1, - sym__binary_predicate, - STATE(4734), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165495] = 23, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4215), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4751), 1, - sym__binary_predicate, - STATE(4752), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165572] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6622), 1, - anon_sym_DASH2, - ACTIONS(6630), 1, - anon_sym_PLUS2, - ACTIONS(6642), 1, - anon_sym_bit_DASHand2, - ACTIONS(6644), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6646), 1, - anon_sym_bit_DASHor2, - ACTIONS(6648), 1, - anon_sym_and2, - ACTIONS(6650), 1, - anon_sym_xor2, - ACTIONS(7313), 1, - anon_sym_or2, - STATE(4216), 1, - sym_comment, - ACTIONS(6624), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6626), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6628), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6632), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6634), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6640), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6636), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6638), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [165639] = 23, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4217), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4729), 1, - sym__binary_predicate, - STATE(4730), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165716] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_DASH2, - ACTIONS(5612), 1, - anon_sym_PLUS2, - ACTIONS(5624), 1, - anon_sym_bit_DASHand2, - ACTIONS(5626), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5628), 1, - anon_sym_bit_DASHor2, - ACTIONS(5630), 1, - anon_sym_and2, - ACTIONS(5632), 1, - anon_sym_xor2, - ACTIONS(7315), 1, - anon_sym_or2, - STATE(4218), 1, - sym_comment, - ACTIONS(5606), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5608), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5610), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5614), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5616), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5622), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5618), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5620), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [165783] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4219), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4811), 1, - sym__binary_predicate, - STATE(4818), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165860] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4220), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4791), 1, - sym__predicate, - STATE(4882), 1, - sym__binary_predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [165937] = 23, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4221), 1, - sym_comment, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4735), 1, - sym__binary_predicate, - STATE(4736), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [166014] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_DASH2, - ACTIONS(7235), 1, - anon_sym_PLUS2, - ACTIONS(7239), 1, - anon_sym_bit_DASHand2, - ACTIONS(7241), 1, - anon_sym_bit_DASHxor2, - ACTIONS(7243), 1, - anon_sym_bit_DASHor2, - ACTIONS(7249), 1, - anon_sym_and2, - ACTIONS(7251), 1, - anon_sym_xor2, - ACTIONS(7317), 1, - anon_sym_or2, - STATE(4222), 1, - sym_comment, - ACTIONS(7217), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(7219), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(7221), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(7225), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7233), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7237), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(7229), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7231), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [166081] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4223), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4796), 1, - sym__binary_predicate, - STATE(4797), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [166158] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4224), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4821), 1, - sym__binary_predicate, - STATE(4822), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [166235] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4225), 1, - sym_comment, - ACTIONS(7321), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7327), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7323), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7325), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(7319), 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, - [166280] = 23, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(389), 1, - anon_sym_DASH2, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(4225), 1, - sym_expr_parenthesized, - STATE(4226), 1, - sym_comment, - STATE(4573), 1, - sym_val_number, - STATE(4737), 1, - sym__binary_predicate, - STATE(4750), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4638), 2, - sym_expr_unary, - sym_val_bool, - STATE(5387), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [166357] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(431), 1, - aux_sym__val_number_token5, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(6983), 1, - anon_sym_DOLLAR, - ACTIONS(6987), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6989), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6991), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6993), 1, - aux_sym__val_number_decimal_token4, - STATE(1805), 1, - sym__val_number_decimal, - STATE(1860), 1, - sym__val_number, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(4227), 1, - sym_comment, - STATE(4228), 1, - sym_expr_parenthesized, - STATE(4573), 1, - sym_val_number, - STATE(4806), 1, - sym__binary_predicate, - STATE(4809), 1, - sym__predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4829), 2, - sym_expr_unary, - sym_val_bool, - STATE(5478), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(433), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [166434] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4228), 1, - sym_comment, - ACTIONS(7329), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7331), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(7319), 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, - [166478] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(7337), 1, - anon_sym_DOLLAR, - ACTIONS(7339), 1, - anon_sym_DOT, - ACTIONS(7343), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7345), 1, - aux_sym__immediate_decimal_token5, - STATE(4229), 1, - sym_comment, - STATE(4317), 1, - sym__immediate_decimal, - ACTIONS(7341), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4362), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 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, - [166532] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4230), 1, - sym_comment, - ACTIONS(1052), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1054), 25, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166570] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - ACTIONS(7351), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token5, - STATE(4231), 1, - sym_comment, - STATE(4409), 1, - sym__immediate_decimal, - ACTIONS(7349), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 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, - [166621] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(7355), 1, - anon_sym_DOLLAR, - ACTIONS(7357), 1, - anon_sym_DOT, - ACTIONS(7361), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7363), 1, - aux_sym__immediate_decimal_token5, - STATE(4232), 1, - sym_comment, - STATE(4356), 1, - sym__immediate_decimal, - ACTIONS(7359), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4477), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 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, - [166674] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4706), 1, - anon_sym_DOT, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7337), 1, - anon_sym_DOLLAR, - STATE(4233), 1, - sym_comment, - STATE(4393), 1, - sym__immediate_decimal, - ACTIONS(4708), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4392), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [166725] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - ACTIONS(7351), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7353), 1, - aux_sym__immediate_decimal_token5, - STATE(4234), 1, - sym_comment, - STATE(4476), 1, - sym__immediate_decimal, - ACTIONS(7349), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 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, - [166776] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - STATE(2158), 1, - sym__immediate_decimal, - STATE(4235), 1, - sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2097), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1745), 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, - [166824] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - sym__space, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1977), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7367), 1, - anon_sym_DOT, - ACTIONS(7369), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7371), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - STATE(4236), 1, - sym_comment, - STATE(4378), 1, - sym__immediate_decimal, - STATE(4555), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 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, - [166880] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - STATE(2140), 1, - sym__immediate_decimal, - STATE(4237), 1, - sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 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, - [166928] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - STATE(2091), 1, - sym__immediate_decimal, - STATE(4238), 1, - sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1685), 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, - [166976] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - STATE(2093), 1, - sym__immediate_decimal, - STATE(4239), 1, - sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2090), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [167024] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(7355), 1, - anon_sym_DOLLAR, - STATE(4240), 1, - sym_comment, - STATE(4401), 1, - sym__immediate_decimal, - ACTIONS(4835), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4475), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [167074] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7377), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7379), 1, - aux_sym__immediate_decimal_token2, - STATE(4241), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167114] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(7383), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token5, - STATE(4242), 1, - sym_comment, - STATE(4564), 1, - sym__immediate_decimal, - ACTIONS(7381), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2611), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 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, - [167164] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7387), 1, - anon_sym_DOT, - ACTIONS(7389), 1, - aux_sym__immediate_decimal_token2, - STATE(4243), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167204] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(7383), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token5, - STATE(4244), 1, - sym_comment, - STATE(4515), 1, - sym__immediate_decimal, - ACTIONS(7381), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2655), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 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, - [167254] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(2647), 1, - sym__immediate_decimal, - STATE(4245), 1, - sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2639), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1745), 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, - [167301] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7391), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7393), 1, - aux_sym__immediate_decimal_token2, - STATE(4246), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167340] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7395), 1, - aux_sym__immediate_decimal_token2, - STATE(4247), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167377] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(2145), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7399), 1, - anon_sym_DOT, - ACTIONS(7401), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7403), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - STATE(4248), 1, - sym_comment, - STATE(4466), 1, - sym__immediate_decimal, - ACTIONS(1579), 2, - ts_builtin_sym_end, - sym__space, - STATE(4650), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 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, - [167432] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - sym__space, - ACTIONS(1977), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7369), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7371), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7409), 1, - anon_sym_DOT, - STATE(4249), 1, - sym_comment, - STATE(4516), 1, - sym__immediate_decimal, - STATE(4528), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [167485] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7389), 1, - aux_sym__immediate_decimal_token2, - STATE(4250), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167522] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(7411), 1, - anon_sym_DOT_DOT2, - ACTIONS(7415), 1, - sym_filesize_unit, - ACTIONS(7417), 1, - sym_duration_unit, - STATE(4251), 1, - sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7413), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 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, - [167569] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(2672), 1, - sym__immediate_decimal, - STATE(4252), 1, - sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2650), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [167616] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(2598), 1, - sym__immediate_decimal, - STATE(4253), 1, - sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2594), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1685), 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, - [167663] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(2613), 1, - sym__immediate_decimal, - STATE(4254), 1, - sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2604), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 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, - [167710] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1657), 1, - sym__space, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7419), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7421), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7425), 1, - aux_sym__immediate_decimal_token5, - STATE(4255), 1, - sym_comment, - STATE(4702), 1, - sym__immediate_decimal, - STATE(5053), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 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, - [167763] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7427), 1, - anon_sym_DOT, - ACTIONS(7429), 1, - aux_sym__immediate_decimal_token2, - STATE(4256), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167802] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - sym__space, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7419), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7421), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7423), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7425), 1, - aux_sym__immediate_decimal_token5, - STATE(4257), 1, - sym_comment, - STATE(4653), 1, - sym__immediate_decimal, - STATE(4990), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 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, - [167855] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4258), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [167889] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7431), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7433), 1, - aux_sym__immediate_decimal_token2, - STATE(4259), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 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, - [167927] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7435), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7437), 1, - aux_sym__immediate_decimal_token2, - STATE(4260), 1, - sym_comment, - ACTIONS(1663), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1661), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167965] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - sym__space, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7439), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token3, - STATE(4261), 1, - sym_comment, - STATE(4982), 1, - sym__immediate_decimal, - STATE(4981), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168015] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2145), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7401), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7403), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7443), 1, - anon_sym_DOT, - STATE(4262), 1, - sym_comment, - STATE(4649), 1, - sym__immediate_decimal, - ACTIONS(1643), 2, - ts_builtin_sym_end, - sym__space, - STATE(4648), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [168067] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1685), 1, - sym__space, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7439), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token3, - STATE(4263), 1, - sym_comment, - STATE(5047), 1, - sym__immediate_decimal, - STATE(4885), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 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, - [168117] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4379), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7445), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7447), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7449), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7451), 1, - aux_sym__immediate_decimal_token5, - STATE(4264), 1, - sym_comment, - STATE(4789), 1, - sym__immediate_decimal, - ACTIONS(1579), 2, - ts_builtin_sym_end, - sym__space, - STATE(5188), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1565), 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, - [168169] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4265), 1, - sym_comment, - ACTIONS(1767), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168203] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - sym__space, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7439), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token3, - STATE(4266), 1, - sym_comment, - STATE(5051), 1, - sym__immediate_decimal, - STATE(5050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 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, - [168253] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4379), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7445), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7447), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7449), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7451), 1, - aux_sym__immediate_decimal_token5, - STATE(4267), 1, - sym_comment, - STATE(4858), 1, - sym__immediate_decimal, - ACTIONS(1657), 2, - ts_builtin_sym_end, - sym__space, - STATE(5099), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1645), 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, - [168305] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4268), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168339] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7455), 1, - aux_sym__immediate_decimal_token2, - STATE(4269), 1, - sym_comment, - ACTIONS(1671), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1669), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [168377] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1741), 1, - sym__space, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(7373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7439), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7441), 1, - aux_sym__immediate_decimal_token3, - STATE(4270), 1, - sym_comment, - STATE(5049), 1, - sym__immediate_decimal, - STATE(5048), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 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, - [168427] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DOT_DOT2, - ACTIONS(7457), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(4230), 1, - sym_cell_path, - STATE(4271), 1, - sym_comment, - STATE(4298), 1, - aux_sym_cell_path_repeat1, - ACTIONS(971), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168469] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4272), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168503] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7429), 1, - aux_sym__immediate_decimal_token2, - STATE(4273), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168539] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - ACTIONS(7459), 1, - anon_sym_DOT_DOT2, - ACTIONS(7463), 1, - sym_filesize_unit, - ACTIONS(7465), 1, - sym_duration_unit, - STATE(4274), 1, - sym_comment, - STATE(8150), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7461), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 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, - [168585] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1757), 1, - anon_sym_DOT_DOT2, - ACTIONS(7457), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(1738), 1, - sym_cell_path, - STATE(4275), 1, - sym_comment, - STATE(4298), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1761), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168627] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1763), 1, - anon_sym_DOT_DOT2, - ACTIONS(7457), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(1742), 1, - sym_cell_path, - STATE(4276), 1, - sym_comment, - STATE(4298), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1765), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168669] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7467), 1, - anon_sym_DOT, - ACTIONS(7469), 1, - aux_sym__immediate_decimal_token2, - STATE(4277), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 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, - [168707] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7471), 1, - aux_sym__immediate_decimal_token2, - STATE(4278), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168743] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4279), 1, - sym_comment, - ACTIONS(1767), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168776] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7473), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7475), 1, - aux_sym__immediate_decimal_token2, - STATE(4280), 1, - sym_comment, - ACTIONS(1663), 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(1661), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [168813] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7469), 1, - aux_sym__immediate_decimal_token2, - STATE(4281), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 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, - [168848] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1757), 1, - anon_sym_DOT_DOT2, - ACTIONS(7477), 1, - anon_sym_DOT, - STATE(2088), 1, - sym_path, - STATE(2214), 1, - sym_cell_path, - STATE(4282), 1, - sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1761), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168889] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(7479), 1, - anon_sym_DOT_DOT2, - ACTIONS(7483), 1, - sym_filesize_unit, - ACTIONS(7485), 1, - sym_duration_unit, - ACTIONS(7487), 1, - aux_sym_unquoted_token2, - STATE(4283), 1, - sym_comment, - STATE(8102), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7481), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 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, - [168936] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1763), 1, - anon_sym_DOT_DOT2, - ACTIONS(7477), 1, - anon_sym_DOT, - STATE(2088), 1, - sym_path, - STATE(2268), 1, - sym_cell_path, - STATE(4284), 1, - sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1765), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168977] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4379), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7489), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7491), 1, - aux_sym__immediate_decimal_token3, - STATE(4285), 1, - sym_comment, - STATE(5098), 1, - sym__immediate_decimal, - ACTIONS(1745), 2, - ts_builtin_sym_end, - sym__space, - STATE(5097), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1743), 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, - [169026] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7455), 1, - aux_sym__immediate_decimal_token2, - STATE(4286), 1, - sym_comment, - ACTIONS(1671), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1669), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169061] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7493), 1, - anon_sym_DOT, - ACTIONS(7495), 1, - aux_sym__immediate_decimal_token2, - STATE(4287), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 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, - [169098] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4379), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7489), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7491), 1, - aux_sym__immediate_decimal_token3, - STATE(4288), 1, - sym_comment, - STATE(5093), 1, - sym__immediate_decimal, - ACTIONS(1685), 2, - ts_builtin_sym_end, - sym__space, - STATE(5079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 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, - [169147] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7497), 1, - anon_sym_DOT, - ACTIONS(7499), 1, - aux_sym__immediate_decimal_token2, - STATE(4289), 1, - sym_comment, - ACTIONS(1671), 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(1669), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169184] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4379), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7489), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7491), 1, - aux_sym__immediate_decimal_token3, - STATE(4290), 1, - sym_comment, - STATE(5096), 1, - sym__immediate_decimal, - ACTIONS(1741), 2, - ts_builtin_sym_end, - sym__space, - STATE(5094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1739), 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, - [169233] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7501), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7503), 1, - aux_sym__immediate_decimal_token2, - STATE(4291), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 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, - [169270] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4379), 1, - anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7489), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7491), 1, - aux_sym__immediate_decimal_token3, - STATE(4292), 1, - sym_comment, - STATE(5183), 1, - sym__immediate_decimal, - ACTIONS(1643), 2, - ts_builtin_sym_end, - sym__space, - STATE(5182), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [169319] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4293), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [169352] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4294), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [169385] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7505), 1, - aux_sym__immediate_decimal_token2, - STATE(4295), 1, - sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 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, - [169420] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7507), 1, - sym__newline, - STATE(4296), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1308), 10, - sym_identifier, - anon_sym_DASH2, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(1310), 10, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - [169455] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DOT_DOT2, - ACTIONS(7477), 1, - anon_sym_DOT, - STATE(1508), 1, - sym_cell_path, - STATE(2088), 1, - sym_path, - STATE(4297), 1, - sym_comment, - STATE(4324), 1, - aux_sym_cell_path_repeat1, - ACTIONS(971), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169496] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_DOT_DOT2, - ACTIONS(7457), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(4298), 1, - sym_comment, - STATE(4299), 1, - aux_sym_cell_path_repeat1, - ACTIONS(984), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169535] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DOT_DOT2, - ACTIONS(7510), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(4299), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169572] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7513), 1, - aux_sym__immediate_decimal_token2, - STATE(4300), 1, - sym_comment, - ACTIONS(1713), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1711), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169607] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4301), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [169640] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7515), 1, - anon_sym_DOLLAR, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7519), 1, - anon_sym_DOT, - ACTIONS(7521), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7523), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - STATE(4302), 1, - sym_comment, - STATE(4566), 1, - sym__immediate_decimal, - ACTIONS(1565), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4857), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 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, - [169693] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4303), 1, - sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 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, - [169725] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4304), 1, - sym_comment, - ACTIONS(1671), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1669), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169757] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7529), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7531), 1, - aux_sym__immediate_decimal_token2, - STATE(4305), 1, - sym_comment, - ACTIONS(1773), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1771), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169793] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4306), 1, - sym_comment, - STATE(4347), 1, - aux_sym_cell_path_repeat1, - STATE(4448), 1, - sym_path, - STATE(4561), 1, - sym_cell_path, - ACTIONS(971), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(969), 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, - [169833] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4307), 1, - sym_comment, - ACTIONS(1713), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1711), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169865] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7499), 1, - aux_sym__immediate_decimal_token2, - STATE(4308), 1, - sym_comment, - ACTIONS(1671), 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(1669), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169899] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1733), 1, - aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(4230), 1, - sym_cell_path, - STATE(4309), 1, - sym_comment, - ACTIONS(971), 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_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [169937] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7535), 1, - anon_sym_DOT, - ACTIONS(7537), 1, - aux_sym__immediate_decimal_token2, - STATE(4310), 1, - sym_comment, - ACTIONS(1781), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1779), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [169973] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4311), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 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, - [170005] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7539), 1, - anon_sym_DOT, - ACTIONS(7541), 1, - aux_sym__immediate_decimal_token2, - STATE(4312), 1, - sym_comment, - ACTIONS(1669), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1671), 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, - [170041] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4313), 1, - sym_comment, - ACTIONS(1769), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1767), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [170073] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4314), 1, - sym_comment, - STATE(4347), 1, - aux_sym_cell_path_repeat1, - STATE(4448), 1, - sym_path, - STATE(4527), 1, - sym_cell_path, - ACTIONS(1761), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1757), 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, - [170113] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(7543), 1, - anon_sym_DOT_DOT2, - ACTIONS(7547), 1, - sym_filesize_unit, - ACTIONS(7549), 1, - sym_duration_unit, - ACTIONS(7551), 1, - aux_sym_unquoted_token2, - STATE(4315), 1, - sym_comment, - STATE(8184), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1699), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7545), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 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, - [170159] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4316), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 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, - [170191] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(7553), 1, - anon_sym_DOT_DOT2, - STATE(4317), 1, - sym_comment, - ACTIONS(7555), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 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, - [170229] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7557), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7559), 1, - aux_sym__immediate_decimal_token2, - STATE(4318), 1, - sym_comment, - ACTIONS(1661), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1663), 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, - [170265] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7563), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7565), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7567), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7569), 1, - aux_sym__immediate_decimal_token5, - STATE(4319), 1, - sym_comment, - STATE(4934), 1, - sym__immediate_decimal, - ACTIONS(1565), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5386), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 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, - [170315] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4320), 1, - sym_comment, - ACTIONS(1304), 10, - sym_identifier, - anon_sym_DASH2, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - ACTIONS(1302), 11, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token5, - [170347] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7563), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7565), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7567), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7569), 1, - aux_sym__immediate_decimal_token5, - STATE(4321), 1, - sym_comment, - STATE(4939), 1, - sym__immediate_decimal, - ACTIONS(1645), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 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, - [170397] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4322), 1, - sym_comment, - STATE(4347), 1, - aux_sym_cell_path_repeat1, - STATE(4448), 1, - sym_path, - STATE(4537), 1, - sym_cell_path, - ACTIONS(1765), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 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, - [170437] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(7571), 1, - anon_sym_DOT_DOT2, - STATE(4323), 1, - sym_comment, - ACTIONS(7573), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1838), 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, - [170475] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_DOT_DOT2, - ACTIONS(7477), 1, - anon_sym_DOT, - STATE(2088), 1, - sym_path, - STATE(4324), 1, - sym_comment, - STATE(4325), 1, - aux_sym_cell_path_repeat1, - ACTIONS(984), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170513] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DOT_DOT2, - ACTIONS(7575), 1, - anon_sym_DOT, - STATE(2088), 1, - sym_path, - STATE(4325), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170549] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4326), 1, - sym_comment, - ACTIONS(1663), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1661), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [170581] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7495), 1, - aux_sym__immediate_decimal_token2, - STATE(4327), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 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, - [170615] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4328), 1, - sym_comment, - ACTIONS(1818), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1820), 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, - [170647] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7578), 1, - aux_sym__immediate_decimal_token2, - STATE(4329), 1, - sym_comment, - ACTIONS(1713), 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(1711), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [170681] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7580), 1, - aux_sym__immediate_decimal_token2, - STATE(4330), 1, - sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 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, - [170715] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7515), 1, - anon_sym_DOLLAR, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7521), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7523), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7582), 1, - anon_sym_DOT, - STATE(4331), 1, - sym_comment, - STATE(4855), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4854), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [170765] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7584), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token3, - STATE(4332), 1, - sym_comment, - STATE(5384), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5383), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [170812] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7588), 1, - anon_sym_DOT, - STATE(4448), 1, - sym_path, - STATE(4333), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(975), 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, - [170847] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7584), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token3, - STATE(4334), 1, - sym_comment, - STATE(5414), 1, - sym__immediate_decimal, - ACTIONS(1743), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5413), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1745), 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, - [170894] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4335), 1, - sym_comment, - ACTIONS(1671), 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(1669), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [170925] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7591), 1, - anon_sym_DOT, - STATE(4336), 1, - sym_comment, - STATE(4385), 1, - aux_sym_cell_path_repeat1, - STATE(4556), 1, - sym_path, - STATE(4713), 1, - sym_cell_path, - ACTIONS(1761), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1757), 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, - [170964] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(7593), 1, - anon_sym_DOT, - ACTIONS(7595), 1, - aux_sym__immediate_decimal_token2, - STATE(4337), 1, - sym_comment, - ACTIONS(1781), 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, - [170999] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7584), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token3, - STATE(4338), 1, - sym_comment, - STATE(5409), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5408), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1685), 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, - [171046] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7597), 1, - aux_sym__immediate_decimal_token2, - STATE(4339), 1, - sym_comment, - ACTIONS(1801), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1799), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171079] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7599), 1, - anon_sym_DOT, - ACTIONS(7601), 1, - aux_sym__immediate_decimal_token2, - STATE(4340), 1, - sym_comment, - ACTIONS(1781), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1779), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171114] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4341), 1, - sym_comment, - ACTIONS(1818), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1820), 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, - [171145] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4342), 1, - sym_comment, - ACTIONS(1769), 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(1767), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171176] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(7603), 1, - anon_sym_DOT_DOT2, - STATE(4343), 1, - sym_comment, - ACTIONS(7605), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1838), 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, - [171213] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4344), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 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, - [171244] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7607), 1, - aux_sym__immediate_decimal_token2, - STATE(4345), 1, - sym_comment, - ACTIONS(1711), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 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, - [171277] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7537), 1, - aux_sym__immediate_decimal_token2, - STATE(4346), 1, - sym_comment, - ACTIONS(1781), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1779), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171310] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4333), 1, - aux_sym_cell_path_repeat1, - STATE(4347), 1, - sym_comment, - STATE(4448), 1, - sym_path, - ACTIONS(984), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(982), 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, - [171347] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7591), 1, - anon_sym_DOT, - STATE(4348), 1, - sym_comment, - STATE(4385), 1, - aux_sym_cell_path_repeat1, - STATE(4556), 1, - sym_path, - STATE(4772), 1, - sym_cell_path, - ACTIONS(1765), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 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, - [171386] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(7483), 1, - sym_filesize_unit, - ACTIONS(7485), 1, - sym_duration_unit, - ACTIONS(7487), 1, - aux_sym_unquoted_token2, - STATE(4349), 1, - sym_comment, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 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, - [171427] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4350), 1, - sym_comment, - ACTIONS(1663), 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(1661), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171458] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7584), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7586), 1, - aux_sym__immediate_decimal_token3, - STATE(4351), 1, - sym_comment, - STATE(5411), 1, - sym__immediate_decimal, - ACTIONS(1739), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5410), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 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, - [171505] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - ACTIONS(7609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7611), 1, - aux_sym__immediate_decimal_token2, - STATE(4352), 1, - sym_comment, - ACTIONS(1773), 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, - [171540] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4353), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 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, - [171571] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7591), 1, - anon_sym_DOT, - STATE(4354), 1, - sym_comment, - STATE(4385), 1, - aux_sym_cell_path_repeat1, - STATE(4556), 1, - sym_path, - STATE(4759), 1, - sym_cell_path, - ACTIONS(971), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(969), 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, - [171610] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4355), 1, - sym_comment, - ACTIONS(1713), 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(1711), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171641] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(7613), 1, - anon_sym_DOT_DOT2, - STATE(4356), 1, - sym_comment, - ACTIONS(7615), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 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, - [171678] = 11, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139508] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(7617), 1, - anon_sym_DOT_DOT2, - ACTIONS(7621), 1, - sym_filesize_unit, - ACTIONS(7623), 1, - sym_duration_unit, - ACTIONS(7625), 1, - aux_sym__unquoted_in_record_token2, - STATE(4357), 1, - sym_comment, - STATE(8047), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1687), 2, - sym_identifier, + ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(7619), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 10, - anon_sym_EQ, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171723] = 5, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3710), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4224), 1, + sym__binary_predicate_parenthesized, + STATE(4225), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139591] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7541), 1, - aux_sym__immediate_decimal_token2, - STATE(4358), 1, - sym_comment, - ACTIONS(1669), 6, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, sym_identifier, + ACTIONS(6589), 1, + sym__newline, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3690), 1, + aux_sym_shebang_repeat1, + STATE(3711), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4261), 1, + sym__binary_predicate_parenthesized, + STATE(4273), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139674] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1671), 13, - anon_sym_EQ, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6589), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171756] = 6, - ACTIONS(3), 1, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3712), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(4070), 1, + sym_val_number, + STATE(4193), 1, + sym__binary_predicate_parenthesized, + STATE(4194), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139757] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7627), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7629), 1, - aux_sym__immediate_decimal_token2, - STATE(4359), 1, + ACTIONS(6769), 1, + anon_sym_DASH2, + ACTIONS(6777), 1, + anon_sym_PLUS2, + STATE(3713), 1, sym_comment, - ACTIONS(1773), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1771), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171791] = 4, + ACTIONS(5203), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5201), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139809] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4360), 1, + STATE(3714), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 18, - ts_builtin_sym_end, + STATE(4814), 1, + sym_redirection, + ACTIONS(6749), 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(6751), 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(6781), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394749,407 +358357,672 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [139853] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3715), 1, + sym_comment, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 13, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171822] = 7, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139907] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5342), 1, - anon_sym_DOT, - STATE(1508), 1, - sym_cell_path, - STATE(2148), 1, - aux_sym_cell_path_repeat1, - STATE(2293), 1, - sym_path, - STATE(4361), 1, + ACTIONS(6769), 1, + anon_sym_DASH2, + ACTIONS(6777), 1, + anon_sym_PLUS2, + STATE(3716), 1, sym_comment, - ACTIONS(971), 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, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5201), 13, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171859] = 5, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139961] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7631), 1, - anon_sym_DOT_DOT2, - STATE(4362), 1, + ACTIONS(6769), 1, + anon_sym_DASH2, + ACTIONS(6777), 1, + anon_sym_PLUS2, + ACTIONS(6807), 1, + anon_sym_bit_DASHand2, + ACTIONS(6809), 1, + anon_sym_bit_DASHxor2, + STATE(3717), 1, sym_comment, - ACTIONS(7633), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2137), 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, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171891] = 4, + anon_sym_bit_DASHor2, + [140023] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4363), 1, + ACTIONS(3174), 1, + aux_sym_cmd_identifier_token41, + STATE(3718), 1, sym_comment, - ACTIONS(1773), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1771), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [171921] = 4, + ACTIONS(3172), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3170), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140065] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(4364), 1, - sym_comment, - ACTIONS(1669), 6, - sym_identifier, + ACTIONS(6769), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1671), 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, - [171951] = 5, + ACTIONS(6777), 1, + anon_sym_PLUS2, + ACTIONS(6807), 1, + anon_sym_bit_DASHand2, + ACTIONS(6809), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6811), 1, + anon_sym_and2, + ACTIONS(6813), 1, + anon_sym_bit_DASHor2, + STATE(3719), 1, + sym_comment, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5201), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140131] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - ACTIONS(7635), 1, - aux_sym__immediate_decimal_token2, - STATE(4365), 1, + STATE(3720), 1, sym_comment, - ACTIONS(1801), 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, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5203), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5201), 22, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [171983] = 5, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140173] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7639), 1, - anon_sym_DOT_DOT2, - STATE(4366), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + ACTIONS(6819), 1, + anon_sym_bit_DASHand2, + ACTIONS(6821), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6823), 1, + anon_sym_bit_DASHor2, + STATE(3721), 1, sym_comment, - ACTIONS(7641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7637), 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, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5201), 4, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [172015] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4367), 1, - sym_comment, - ACTIONS(1006), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172045] = 4, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140237] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4368), 1, + ACTIONS(6829), 1, + aux_sym_cmd_identifier_token41, + STATE(3722), 1, sym_comment, - ACTIONS(988), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(986), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172075] = 5, + ACTIONS(6827), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6825), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140279] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7643), 1, - anon_sym_QMARK2, - STATE(4369), 1, + ACTIONS(6835), 1, + aux_sym_cmd_identifier_token41, + STATE(3723), 1, sym_comment, - ACTIONS(1010), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 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, - anon_sym_DOT, - [172107] = 4, - ACTIONS(3), 1, + ACTIONS(6833), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6831), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140321] = 17, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4370), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + ACTIONS(6819), 1, + anon_sym_bit_DASHand2, + ACTIONS(6821), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6823), 1, + anon_sym_bit_DASHor2, + ACTIONS(6837), 1, + anon_sym_and2, + STATE(3724), 1, sym_comment, - ACTIONS(1820), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1818), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [172137] = 5, - ACTIONS(3), 1, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5201), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140387] = 18, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7645), 1, - anon_sym_QMARK2, - STATE(4371), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + ACTIONS(6819), 1, + anon_sym_bit_DASHand2, + ACTIONS(6821), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6823), 1, + anon_sym_bit_DASHor2, + ACTIONS(6837), 1, + anon_sym_and2, + ACTIONS(6839), 1, + anon_sym_xor2, + STATE(3725), 1, sym_comment, - ACTIONS(992), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(990), 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, - anon_sym_DOT, - [172169] = 5, - ACTIONS(3), 1, + ACTIONS(5201), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140455] = 12, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7647), 1, - aux_sym__immediate_decimal_token2, - STATE(4372), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3726), 1, sym_comment, - ACTIONS(1801), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1799), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [172201] = 4, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 9, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140511] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4373), 1, + STATE(3727), 1, sym_comment, - ACTIONS(1711), 6, - sym_identifier, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5203), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5201), 22, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 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, - [172231] = 14, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140553] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7653), 1, - sym__newline, - ACTIONS(7655), 1, - anon_sym_COLON, - ACTIONS(7657), 1, - anon_sym_LPAREN, - ACTIONS(7659), 1, + ACTIONS(6769), 1, anon_sym_DASH2, - STATE(4374), 1, + ACTIONS(6777), 1, + anon_sym_PLUS2, + STATE(3728), 1, sym_comment, - STATE(4489), 1, - aux_sym_parameter_repeat1, - STATE(4525), 1, - sym_flag_capsule, - STATE(5525), 1, - aux_sym_parameter_repeat2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7649), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172281] = 5, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140609] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6845), 1, + aux_sym_cmd_identifier_token41, + STATE(3729), 1, + sym_comment, + ACTIONS(6843), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6841), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140651] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7639), 1, - anon_sym_DOT_DOT2, - STATE(4375), 1, + STATE(3730), 1, sym_comment, - ACTIONS(7641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7637), 16, + STATE(4802), 1, + sym_redirection, + ACTIONS(6749), 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(6751), 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(6847), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395162,83 +359035,79 @@ static 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, - [172313] = 6, + [140695] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - ACTIONS(7661), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7663), 1, - aux_sym__immediate_decimal_token2, - STATE(4376), 1, + ACTIONS(6769), 1, + anon_sym_DASH2, + ACTIONS(6777), 1, + anon_sym_PLUS2, + ACTIONS(6807), 1, + anon_sym_bit_DASHand2, + STATE(3731), 1, sym_comment, - ACTIONS(1773), 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, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [172347] = 6, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140755] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7665), 1, - anon_sym_DOT, - ACTIONS(7667), 1, - aux_sym__immediate_decimal_token2, - STATE(4377), 1, - sym_comment, - ACTIONS(1779), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 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, - [172381] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1848), 1, - sym__space, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(7669), 1, - anon_sym_DOT_DOT2, - STATE(4378), 1, + STATE(3732), 1, sym_comment, - ACTIONS(7671), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 13, + STATE(4929), 1, + sym_redirection, + ACTIONS(6849), 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(6851), 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(6755), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395250,224 +359119,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [172419] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7673), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7675), 1, - aux_sym__immediate_decimal_token2, - STATE(4379), 1, - sym_comment, - ACTIONS(1771), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 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, - [172453] = 8, + [140799] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7677), 1, - anon_sym_DOT, - STATE(4380), 1, - sym_comment, - STATE(4437), 1, - aux_sym_cell_path_repeat1, - STATE(4579), 1, - sym_path, - STATE(4783), 1, - sym_cell_path, - ACTIONS(1757), 2, + ACTIONS(6769), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1761), 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, - [172491] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7639), 1, - anon_sym_DOT_DOT2, - STATE(4381), 1, - sym_comment, - ACTIONS(7641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7637), 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, + ACTIONS(6777), 1, + anon_sym_PLUS2, + ACTIONS(6807), 1, + anon_sym_bit_DASHand2, + ACTIONS(6809), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6811), 1, anon_sym_and2, + ACTIONS(6813), 1, + anon_sym_bit_DASHor2, + ACTIONS(6853), 1, anon_sym_xor2, - anon_sym_or2, - [172523] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4382), 1, + STATE(3733), 1, sym_comment, - ACTIONS(1661), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1663), 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, - [172553] = 8, + ACTIONS(5201), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140867] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7677), 1, - anon_sym_DOT, - STATE(4383), 1, - sym_comment, - STATE(4437), 1, - aux_sym_cell_path_repeat1, - STATE(4579), 1, - sym_path, - STATE(4833), 1, - sym_cell_path, - ACTIONS(969), 2, + ACTIONS(6769), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(971), 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, - [172591] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7677), 1, - anon_sym_DOT, - STATE(4384), 1, + ACTIONS(6777), 1, + anon_sym_PLUS2, + STATE(3734), 1, sym_comment, - STATE(4437), 1, - aux_sym_cell_path_repeat1, - STATE(4579), 1, - sym_path, - STATE(4841), 1, - sym_cell_path, - ACTIONS(1763), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1765), 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, - [172629] = 7, + ACTIONS(5203), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5201), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140917] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7591), 1, - anon_sym_DOT, - STATE(4385), 1, + ACTIONS(6859), 1, + aux_sym_cmd_identifier_token41, + STATE(3735), 1, sym_comment, - STATE(4386), 1, - aux_sym_cell_path_repeat1, - STATE(4556), 1, - sym_path, - ACTIONS(984), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(982), 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, - [172665] = 6, - ACTIONS(3), 1, + ACTIONS(6857), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6855), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140959] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7679), 1, - anon_sym_DOT, - STATE(4556), 1, - sym_path, - STATE(4386), 2, + STATE(3736), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 4, + STATE(4884), 1, + sym_redirection, + ACTIONS(6849), 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(6851), 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(6747), 12, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(975), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395479,702 +359285,1051 @@ static const uint16_t 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, - [172699] = 5, + [141003] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(7595), 1, - aux_sym__immediate_decimal_token2, - STATE(4387), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3737), 1, sym_comment, - ACTIONS(1781), 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, + ACTIONS(5203), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5201), 19, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [172731] = 9, - ACTIONS(3), 1, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141053] = 13, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(7547), 1, - sym_filesize_unit, - ACTIONS(7549), 1, - sym_duration_unit, - ACTIONS(7551), 1, - aux_sym_unquoted_token2, - STATE(4388), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3738), 1, sym_comment, - ACTIONS(1699), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1687), 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, - [172771] = 5, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 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, + [141111] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7639), 1, - anon_sym_DOT_DOT2, - STATE(4389), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + ACTIONS(6819), 1, + anon_sym_bit_DASHand2, + STATE(3739), 1, sym_comment, - ACTIONS(7641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1036), 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, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 6, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [172803] = 4, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141171] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4390), 1, + ACTIONS(3180), 1, + aux_sym_cmd_identifier_token41, + STATE(3740), 1, sym_comment, - ACTIONS(1781), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1779), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [172833] = 5, + ACTIONS(3178), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3176), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [141213] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7682), 1, - anon_sym_DOT_DOT2, - STATE(4391), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3741), 1, sym_comment, - ACTIONS(7684), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 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, + ACTIONS(5203), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5201), 17, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [172865] = 5, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141265] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_DOT_DOT2, - STATE(4392), 1, + STATE(3742), 1, sym_comment, - ACTIONS(7688), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2096), 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, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5203), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5201), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [172897] = 5, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141311] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_DOT_DOT2, - STATE(4393), 1, + ACTIONS(6769), 1, + anon_sym_DASH2, + ACTIONS(6777), 1, + anon_sym_PLUS2, + STATE(3743), 1, sym_comment, - ACTIONS(7692), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 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, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 7, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [172929] = 6, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141369] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(7694), 1, - anon_sym_DOT, - ACTIONS(7696), 1, - aux_sym__immediate_decimal_token2, - STATE(4394), 1, + ACTIONS(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + ACTIONS(6819), 1, + anon_sym_bit_DASHand2, + ACTIONS(6821), 1, + anon_sym_bit_DASHxor2, + STATE(3744), 1, sym_comment, - ACTIONS(1781), 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, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5201), 5, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [172963] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4395), 1, - sym_comment, - ACTIONS(998), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(996), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172993] = 4, + anon_sym_bit_DASHor2, + [141431] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(4396), 1, - sym_comment, - ACTIONS(1767), 6, - sym_identifier, + ACTIONS(6769), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1769), 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, - [173023] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4397), 1, + ACTIONS(6777), 1, + anon_sym_PLUS2, + ACTIONS(6807), 1, + anon_sym_bit_DASHand2, + ACTIONS(6809), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6813), 1, + anon_sym_bit_DASHor2, + STATE(3745), 1, sym_comment, - ACTIONS(1801), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1799), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [173053] = 5, - ACTIONS(3), 1, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5201), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141495] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7601), 1, - aux_sym__immediate_decimal_token2, - STATE(4398), 1, + STATE(3746), 1, sym_comment, - ACTIONS(1781), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1779), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [173085] = 8, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5203), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5201), 20, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - sym__space, - ACTIONS(7698), 1, - anon_sym_DOT_DOT2, - STATE(4399), 1, + ACTIONS(6865), 1, + aux_sym_cmd_identifier_token41, + STATE(3747), 1, sym_comment, - ACTIONS(7700), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 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, - [173123] = 4, + ACTIONS(6863), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6861), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [141583] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4400), 1, - sym_comment, - ACTIONS(1002), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [173153] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, - STATE(4401), 1, + ACTIONS(3186), 1, + aux_sym_cmd_identifier_token41, + STATE(3748), 1, sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 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, - [173184] = 4, + ACTIONS(3184), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3182), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [141625] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5830), 1, + ACTIONS(381), 1, anon_sym_DASH2, - STATE(4402), 1, - sym_comment, - ACTIONS(5832), 17, - anon_sym_EQ, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6591), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173213] = 5, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3749), 1, + sym_comment, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4271), 1, + sym__binary_predicate, + STATE(4272), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [141702] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(4403), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3750), 1, sym_comment, - ACTIONS(2270), 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, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4269), 1, + sym__binary_predicate, + STATE(4270), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [141779] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5400), 1, + anon_sym_DASH2, + ACTIONS(5408), 1, + anon_sym_PLUS2, + ACTIONS(5420), 1, + anon_sym_bit_DASHand2, + ACTIONS(5422), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5424), 1, + anon_sym_bit_DASHor2, + ACTIONS(5426), 1, anon_sym_and2, + ACTIONS(5428), 1, anon_sym_xor2, + ACTIONS(6867), 1, anon_sym_or2, - [173244] = 4, + STATE(3751), 1, + sym_comment, + ACTIONS(5402), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5404), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5406), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5410), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5412), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5418), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5414), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5416), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141846] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5834), 1, + ACTIONS(6769), 1, anon_sym_DASH2, - STATE(4404), 1, + ACTIONS(6777), 1, + anon_sym_PLUS2, + ACTIONS(6807), 1, + anon_sym_bit_DASHand2, + ACTIONS(6809), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6811), 1, + anon_sym_and2, + ACTIONS(6813), 1, + anon_sym_bit_DASHor2, + ACTIONS(6853), 1, + anon_sym_xor2, + ACTIONS(6869), 1, + anon_sym_or2, + STATE(3752), 1, sym_comment, - ACTIONS(5836), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(6771), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6773), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6775), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173273] = 4, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141913] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5838), 1, - anon_sym_DASH2, - STATE(4405), 1, - sym_comment, - ACTIONS(5840), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173302] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(971), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4406), 1, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3753), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4561), 1, - sym_cell_path, - STATE(4874), 1, - sym_path, - ACTIONS(969), 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, - [173339] = 8, - ACTIONS(3), 1, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4304), 1, + sym__binary_predicate, + STATE(4305), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [141990] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4407), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3754), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4955), 1, - sym_cell_path, - ACTIONS(1941), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173376] = 8, - ACTIONS(3), 1, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4333), 1, + sym__binary_predicate, + STATE(4338), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142067] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1873), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4408), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3755), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4956), 1, - sym_cell_path, - ACTIONS(1871), 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, - [173413] = 5, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4339), 1, + sym__binary_predicate, + STATE(4340), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142144] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(4409), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3756), 1, sym_comment, - ACTIONS(2230), 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, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4263), 1, + sym__binary_predicate, + STATE(4264), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142221] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5478), 1, + anon_sym_bit_DASHand2, + ACTIONS(5492), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5498), 1, anon_sym_and2, + ACTIONS(5500), 1, anon_sym_xor2, + ACTIONS(5502), 1, + anon_sym_bit_DASHor2, + ACTIONS(6871), 1, anon_sym_or2, - [173444] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4410), 1, + STATE(3757), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4965), 1, - sym_cell_path, - ACTIONS(1875), 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, - [173481] = 8, - ACTIONS(3), 1, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [142288] = 18, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1761), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4411), 1, + ACTIONS(6382), 1, + anon_sym_DASH2, + ACTIONS(6390), 1, + anon_sym_PLUS2, + ACTIONS(6402), 1, + anon_sym_bit_DASHand2, + ACTIONS(6421), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6423), 1, + anon_sym_bit_DASHor2, + ACTIONS(6425), 1, + anon_sym_and2, + ACTIONS(6427), 1, + anon_sym_xor2, + ACTIONS(6873), 1, + anon_sym_or2, + STATE(3758), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4527), 1, - sym_cell_path, - STATE(4874), 1, - sym_path, - ACTIONS(1757), 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, - [173518] = 8, - ACTIONS(3), 1, + ACTIONS(6384), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6386), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6388), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6392), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6394), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6400), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6396), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6398), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [142355] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DOT, - ACTIONS(7710), 1, - sym__space, - STATE(4412), 1, + STATE(3759), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4901), 1, - sym_cell_path, - ACTIONS(7708), 13, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6879), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6875), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396188,182 +360343,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173555] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [142400] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5818), 1, + ACTIONS(381), 1, anon_sym_DASH2, - STATE(4413), 1, - sym_comment, - ACTIONS(5820), 17, - anon_sym_EQ, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6591), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173584] = 5, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3760), 1, + sym_comment, + STATE(4070), 1, + sym_val_number, + STATE(4265), 1, + sym__binary_predicate, + STATE(4266), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142477] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(4414), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3761), 1, sym_comment, - ACTIONS(1838), 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, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4311), 1, + sym__binary_predicate, + STATE(4313), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142554] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6312), 1, + anon_sym_DASH2, + ACTIONS(6320), 1, + anon_sym_PLUS2, + ACTIONS(6332), 1, + anon_sym_bit_DASHand2, + ACTIONS(6334), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6336), 1, + anon_sym_bit_DASHor2, + ACTIONS(6338), 1, anon_sym_and2, + ACTIONS(6340), 1, anon_sym_xor2, + ACTIONS(6885), 1, anon_sym_or2, - [173615] = 5, + STATE(3762), 1, + sym_comment, + ACTIONS(6314), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6316), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6318), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6322), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6324), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6330), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6328), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142621] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7712), 1, - anon_sym_DOT_DOT2, - STATE(4415), 1, - sym_comment, - ACTIONS(7714), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1036), 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(6785), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + ACTIONS(6819), 1, + anon_sym_bit_DASHand2, + ACTIONS(6821), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6823), 1, + anon_sym_bit_DASHor2, + ACTIONS(6837), 1, anon_sym_and2, + ACTIONS(6839), 1, anon_sym_xor2, + ACTIONS(6887), 1, anon_sym_or2, - [173646] = 4, + STATE(3763), 1, + sym_comment, + ACTIONS(6783), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6787), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6791), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6793), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6817), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6789), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6815), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142688] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5842), 1, + ACTIONS(381), 1, anon_sym_DASH2, - STATE(4416), 1, - sym_comment, - ACTIONS(5844), 17, - anon_sym_EQ, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6591), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6593), 1, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173675] = 8, - ACTIONS(3), 1, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3764), 1, + sym_comment, + STATE(4070), 1, + sym_val_number, + STATE(4267), 1, + sym__binary_predicate, + STATE(4268), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142765] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(7716), 1, - anon_sym_DOT_DOT2, - STATE(4417), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3765), 1, sym_comment, - ACTIONS(1838), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7718), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1830), 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, - [173712] = 8, - ACTIONS(3), 1, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4307), 1, + sym__binary_predicate, + STATE(4308), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142842] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1881), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4418), 1, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(3766), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4970), 1, - sym_cell_path, - ACTIONS(1879), 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, - [173749] = 8, - ACTIONS(3), 1, + STATE(3769), 1, + sym_expr_parenthesized, + STATE(4070), 1, + sym_val_number, + STATE(4314), 1, + sym__binary_predicate, + STATE(4326), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4324), 2, + sym_expr_unary, + sym_val_bool, + STATE(4854), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142919] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4419), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3398), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3400), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6587), 1, + sym_identifier, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6599), 1, + aux_sym__val_number_decimal_token2, + STATE(1655), 1, + sym__val_number_decimal, + STATE(1660), 1, + sym__val_number, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(3767), 1, + sym_comment, + STATE(4070), 1, + sym_val_number, + STATE(4274), 1, + sym__binary_predicate, + STATE(4275), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4217), 2, + sym_expr_unary, + sym_val_bool, + STATE(4867), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142996] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3768), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4988), 1, - sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(1018), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1020), 25, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396375,47 +360789,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, - [173786] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7720), 1, - anon_sym_QMARK2, - STATE(4420), 1, - sym_comment, - ACTIONS(1010), 4, - ts_builtin_sym_end, - sym__space, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1008), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [173817] = 5, - ACTIONS(3), 1, + [143034] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7722), 1, - anon_sym_QMARK2, - STATE(4421), 1, + STATE(3769), 1, sym_comment, - ACTIONS(992), 4, + ACTIONS(6889), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6895), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6891), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6893), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6875), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(990), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396427,49 +360836,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [173848] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4422), 1, - sym_comment, - ACTIONS(2242), 4, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2244), 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_LPAREN2, - [173877] = 8, - ACTIONS(3), 1, + [143078] = 12, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1889), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(6899), 1, anon_sym_DOT, - STATE(4423), 1, + ACTIONS(6903), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6905), 1, + aux_sym__immediate_decimal_token5, + STATE(3770), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4989), 1, - sym_cell_path, - ACTIONS(1887), 13, + STATE(3847), 1, + sym__immediate_decimal, + ACTIONS(6901), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3933), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396483,18 +360878,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173914] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143132] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7712), 1, - anon_sym_DOT_DOT2, - STATE(4424), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(6909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token5, + STATE(3771), 1, sym_comment, - ACTIONS(7714), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7637), 15, - ts_builtin_sym_end, + STATE(3957), 1, + sym__immediate_decimal, + ACTIONS(6907), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396506,25 +360916,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [173945] = 8, - ACTIONS(3), 1, + [143183] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(4591), 1, anon_sym_DOT, - STATE(4425), 1, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + STATE(3772), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5003), 1, - sym_cell_path, - ACTIONS(1891), 13, + STATE(3932), 1, + sym__immediate_decimal, + ACTIONS(4556), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3931), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1597), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396538,47 +360958,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173982] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143234] = 12, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4426), 1, - sym_comment, - ACTIONS(1801), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1799), 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, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - [174011] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2059), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(6913), 1, anon_sym_DOT, - STATE(4427), 1, + ACTIONS(6917), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6919), 1, + aux_sym__immediate_decimal_token5, + STATE(3773), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4940), 1, - sym_cell_path, - ACTIONS(2057), 13, + STATE(3891), 1, + sym__immediate_decimal, + ACTIONS(6915), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3935), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396590,24 +360999,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, - [174048] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143287] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4428), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(6909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token5, + STATE(3774), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5006), 1, - sym_cell_path, - ACTIONS(1895), 13, + STATE(3968), 1, + sym__immediate_decimal, + ACTIONS(6907), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2043), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396621,22 +361039,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174085] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143338] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2035), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4429), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(6923), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6925), 1, + aux_sym__immediate_decimal_token5, + STATE(3775), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4942), 1, - sym_cell_path, - ACTIONS(2033), 13, + STATE(4059), 1, + sym__immediate_decimal, + ACTIONS(6921), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2489), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396648,21 +361078,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, - [174122] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143388] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7724), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7726), 1, - aux_sym__immediate_decimal_token2, - STATE(4430), 1, - sym_comment, - ACTIONS(1773), 2, - sym__space, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(4614), 1, anon_sym_LPAREN2, - ACTIONS(1771), 14, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(6923), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6925), 1, + aux_sym__immediate_decimal_token5, + STATE(3776), 1, + sym_comment, + STATE(4033), 1, + sym__immediate_decimal, + ACTIONS(6921), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2493), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396674,25 +361117,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, - aux_sym_unquoted_token2, - [174155] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143438] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(6927), 1, anon_sym_DOT, - STATE(4431), 1, + ACTIONS(6929), 1, + aux_sym__immediate_decimal_token2, + STATE(3777), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4537), 1, - sym_cell_path, - STATE(4874), 1, - sym_path, - ACTIONS(1763), 13, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396706,22 +361146,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174192] = 8, - 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, + sym_filesize_unit, + sym_duration_unit, + [143478] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1865), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(4696), 1, anon_sym_DOT, - STATE(4432), 1, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(3778), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4995), 1, - sym_cell_path, - ACTIONS(1861), 13, + STATE(3996), 1, + sym__immediate_decimal, + ACTIONS(4618), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3995), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1597), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396733,41 +361190,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, - [174229] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143528] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5822), 1, - anon_sym_DASH2, - STATE(4433), 1, + ACTIONS(6931), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6933), 1, + aux_sym__immediate_decimal_token2, + STATE(3779), 1, sym_comment, - ACTIONS(5824), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [174258] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1771), 1, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - STATE(4434), 1, - sym_comment, - ACTIONS(1773), 17, + ACTIONS(1625), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396785,22 +361223,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [174287] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [143568] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1905), 1, + ACTIONS(1583), 1, sym__space, - ACTIONS(7706), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6937), 1, anon_sym_DOT, - STATE(4435), 1, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + STATE(3780), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5007), 1, - sym_cell_path, - ACTIONS(1903), 13, + STATE(3925), 1, + sym__immediate_decimal, + STATE(4065), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396814,22 +361269,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174324] = 8, - ACTIONS(3), 1, + [143624] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1911), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4436), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + STATE(2042), 1, + sym__immediate_decimal, + STATE(3781), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5011), 1, - sym_cell_path, - ACTIONS(1909), 13, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2041), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1695), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396843,50 +361304,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174361] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143672] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7677), 1, - anon_sym_DOT, - STATE(4437), 1, - sym_comment, - STATE(4451), 1, - aux_sym_cell_path_repeat1, - STATE(4579), 1, - sym_path, - ACTIONS(982), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(984), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6897), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174396] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1919), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4438), 1, + STATE(2025), 1, + sym__immediate_decimal, + STATE(3782), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5013), 1, - sym_cell_path, - ACTIONS(1917), 13, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2024), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1597), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396900,41 +361342,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4439), 1, - sym_comment, - ACTIONS(1002), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [174462] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143720] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - STATE(4440), 1, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + STATE(2038), 1, + sym__immediate_decimal, + STATE(3783), 1, sym_comment, - STATE(8202), 1, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2037), 2, sym__expr_parenthesized_immediate, - ACTIONS(7728), 16, + sym_val_variable, + ACTIONS(1687), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396951,22 +361383,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [174493] = 8, - ACTIONS(3), 1, + [143768] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1927), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4441), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + STATE(2040), 1, + sym__immediate_decimal, + STATE(3784), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5014), 1, - sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2039), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396980,76 +361418,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174530] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143816] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1931), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6949), 1, anon_sym_DOT, - STATE(4442), 1, - sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5015), 1, - sym_cell_path, - ACTIONS(1929), 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, - [174567] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4443), 1, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + STATE(3785), 1, sym_comment, - ACTIONS(1006), 4, + STATE(4002), 1, + sym__immediate_decimal, + ACTIONS(1583), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [174596] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1935), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4444), 1, - sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5022), 1, - sym_cell_path, - ACTIONS(1933), 13, + STATE(4282), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397061,19 +361462,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, - [174633] = 5, + [143871] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7712), 1, - anon_sym_DOT_DOT2, - STATE(4445), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2484), 1, + sym__immediate_decimal, + STATE(3786), 1, sym_comment, - ACTIONS(7714), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7637), 15, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2483), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1597), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397089,89 +361499,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [174664] = 4, - ACTIONS(3), 1, + [143918] = 10, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4446), 1, - sym_comment, - ACTIONS(1820), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(4113), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1818), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + ACTIONS(4773), 1, aux_sym_unquoted_token2, - [174693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4447), 1, - sym_comment, - ACTIONS(998), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(996), 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_QMARK2, + ACTIONS(6959), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - [174722] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4448), 1, + ACTIONS(6963), 1, + sym_filesize_unit, + ACTIONS(6965), 1, + sym_duration_unit, + STATE(3787), 1, sym_comment, - ACTIONS(1024), 3, - sym__space, + STATE(7290), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6961), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1022), 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, - anon_sym_DOT, - [174751] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - STATE(4449), 1, - sym_comment, - ACTIONS(1801), 17, + ACTIONS(1665), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397188,73 +361536,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [174780] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1955), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4450), 1, - sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4890), 1, - sym_cell_path, - ACTIONS(1953), 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, - [174817] = 6, + [143965] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7730), 1, - anon_sym_DOT, - STATE(4579), 1, - sym_path, - ACTIONS(975), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(4451), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [174850] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(7696), 1, - aux_sym__immediate_decimal_token2, - STATE(4452), 1, + STATE(2518), 1, + sym__immediate_decimal, + STATE(3788), 1, sym_comment, - ACTIONS(1781), 16, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2504), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1687), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397270,152 +361573,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [174881] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(4453), 1, - sym_comment, - ACTIONS(1034), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1036), 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, - [174914] = 6, - ACTIONS(3), 1, + [144012] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7733), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - aux_sym__immediate_decimal_token2, - STATE(4454), 1, - sym_comment, - ACTIONS(1781), 2, - sym__space, + ACTIONS(4614), 1, anon_sym_LPAREN2, - ACTIONS(1779), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [174947] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4455), 1, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2465), 1, + sym__immediate_decimal, + STATE(3789), 1, sym_comment, - ACTIONS(988), 4, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2454), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(986), 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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [174976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4456), 1, - sym_comment, - ACTIONS(1020), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 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, - anon_sym_DOT, - [175005] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4457), 1, - sym_comment, - ACTIONS(1016), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1014), 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, - anon_sym_DOT, - [175034] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4458), 1, - sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4992), 1, - sym_cell_path, - ACTIONS(2041), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397427,16 +361607,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, - [175071] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [144059] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1818), 1, - aux_sym_unquoted_token2, - STATE(4459), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2487), 1, + sym__immediate_decimal, + STATE(3790), 1, sym_comment, - ACTIONS(1820), 17, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2472), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1695), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397448,22 +361644,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, - [175100] = 5, + [144106] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - ACTIONS(7737), 1, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6969), 1, aux_sym__immediate_decimal_token2, - STATE(4460), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1801), 16, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397480,96 +361676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [175131] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4461), 1, - sym_comment, - ACTIONS(1781), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1779), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [175160] = 5, + sym_filesize_unit, + sym_duration_unit, + [144145] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(6971), 1, + anon_sym_DOT, + ACTIONS(6973), 1, aux_sym__immediate_decimal_token2, - STATE(4462), 1, + STATE(3792), 1, sym_comment, - ACTIONS(1779), 4, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1599), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 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, - [175191] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DOT, - ACTIONS(7741), 1, - sym__space, - STATE(4463), 1, - sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5012), 1, - sym_cell_path, - ACTIONS(7739), 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, - [175228] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4464), 1, - sym_comment, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7728), 16, + aux_sym_unquoted_token2, + ACTIONS(1601), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397581,21 +361705,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [175259] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144184] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4465), 1, + ACTIONS(6929), 1, + aux_sym__immediate_decimal_token2, + STATE(3793), 1, sym_comment, - STATE(8202), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7728), 16, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397612,51 +361740,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [175290] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(7743), 1, - anon_sym_DOT_DOT2, - STATE(4466), 1, - sym_comment, - ACTIONS(1848), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7745), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1840), 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, - [175327] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [144221] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4467), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token2, + STATE(3794), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4896), 1, - sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397670,16 +361769,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175364] = 5, + 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, + [144258] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(4468), 1, + ACTIONS(935), 1, + anon_sym_DOT_DOT2, + ACTIONS(4562), 1, + anon_sym_DOT2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(3768), 1, + sym_cell_path, + STATE(3795), 1, sym_comment, - ACTIONS(2294), 16, + ACTIONS(937), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397692,26 +361805,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_in2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [175395] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144301] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1619), 1, sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4469), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6983), 1, + aux_sym__immediate_decimal_token5, + STATE(3796), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4887), 1, - sym_cell_path, - ACTIONS(1945), 13, + STATE(4113), 1, + sym__immediate_decimal, + STATE(4541), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397725,18 +361852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175432] = 5, - ACTIONS(251), 1, + [144354] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7712), 1, - anon_sym_DOT_DOT2, - STATE(4470), 1, + ACTIONS(1597), 1, + sym__space, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6985), 1, + anon_sym_DOT, + STATE(3797), 1, sym_comment, - ACTIONS(7714), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7637), 15, - ts_builtin_sym_end, + STATE(4096), 1, + sym__immediate_decimal, + STATE(4095), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397748,23 +361890,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [175463] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [144407] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(1583), 1, + sym__space, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(4471), 1, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6983), 1, + aux_sym__immediate_decimal_token5, + STATE(3798), 1, sym_comment, - ACTIONS(2254), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2258), 13, + STATE(4287), 1, + sym__immediate_decimal, + STATE(4402), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397778,18 +361932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175496] = 5, + [144460] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7747), 1, - anon_sym_DOT_DOT2, - STATE(4472), 1, + ACTIONS(6987), 1, + anon_sym_DOT, + ACTIONS(6989), 1, + aux_sym__immediate_decimal_token2, + STATE(3799), 1, sym_comment, - ACTIONS(7749), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 15, - ts_builtin_sym_end, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397801,42 +361956,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, - [175527] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144498] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_DASH2, - STATE(4473), 1, + ACTIONS(6973), 1, + aux_sym__immediate_decimal_token2, + STATE(3800), 1, sym_comment, - ACTIONS(5828), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [175556] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - STATE(4474), 1, - sym_comment, - ACTIONS(1781), 17, + ACTIONS(1601), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397848,23 +361987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [175585] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144534] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7751), 1, - anon_sym_DOT_DOT2, - STATE(4475), 1, + ACTIONS(6991), 1, + aux_sym__immediate_decimal_token2, + STATE(3801), 1, sym_comment, - ACTIONS(7753), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2096), 15, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -397880,16 +362021,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [175616] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144570] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1621), 1, aux_sym_unquoted_token2, - STATE(4476), 1, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token5, + STATE(3802), 1, sym_comment, - ACTIONS(1848), 16, + STATE(4315), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + ts_builtin_sym_end, + sym__space, + STATE(4572), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1617), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397901,23 +362065,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, - [175647] = 5, + [144622] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7755), 1, - anon_sym_DOT_DOT2, - STATE(4477), 1, + STATE(3803), 1, sym_comment, - ACTIONS(7757), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2137), 15, - ts_builtin_sym_end, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397929,25 +362085,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [175678] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144656] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2051), 1, + ACTIONS(1597), 1, sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4478), 1, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token3, + STATE(3804), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4941), 1, - sym_cell_path, - ACTIONS(2049), 13, + STATE(4476), 1, + sym__immediate_decimal, + STATE(4508), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397961,22 +362133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175715] = 8, - ACTIONS(3), 1, + [144706] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2055), 1, - sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4479), 1, + STATE(3805), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4949), 1, - sym_cell_path, - ACTIONS(2053), 13, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397990,22 +362155,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175752] = 8, + 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, + [144740] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(1687), 1, sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4480), 1, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token3, + STATE(3806), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(4891), 1, - sym_cell_path, - ACTIONS(1949), 13, + STATE(4502), 1, + sym__immediate_decimal, + STATE(4501), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398019,20 +362201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175789] = 6, - ACTIONS(3), 1, + [144790] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4481), 1, + STATE(3807), 1, sym_comment, - ACTIONS(2272), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2274), 13, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398046,20 +362223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175822] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4482), 1, - sym_comment, - ACTIONS(2234), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2238), 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144824] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3808), 1, + sym_comment, + ACTIONS(1723), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1725), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398073,44 +362253,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175855] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7759), 1, - aux_sym__immediate_decimal_token2, - STATE(4483), 1, - sym_comment, - ACTIONS(1799), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [175886] = 4, + sym_filesize_unit, + sym_duration_unit, + [144858] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4484), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token5, + STATE(3809), 1, sym_comment, - ACTIONS(1773), 5, + STATE(4350), 1, + sym__immediate_decimal, + ACTIONS(1583), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1771), 13, + STATE(4742), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1569), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398122,24 +362300,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [175915] = 8, + [144910] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(1691), 1, sym__space, - ACTIONS(7706), 1, - anon_sym_DOT, - STATE(4485), 1, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token3, + STATE(3810), 1, sym_comment, - STATE(4517), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - STATE(5023), 1, - sym_cell_path, - ACTIONS(1937), 13, + STATE(4510), 1, + sym__immediate_decimal, + STATE(4509), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398153,43 +362338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175952] = 4, + [144960] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4486), 1, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token2, + STATE(3811), 1, sym_comment, - ACTIONS(996), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(998), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [175980] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2078), 1, - sym__space, - ACTIONS(7761), 1, + ACTIONS(1727), 2, anon_sym_DOT_DOT2, - STATE(4487), 1, - sym_comment, - ACTIONS(7763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 13, + aux_sym_unquoted_token2, + ACTIONS(1729), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398203,23 +362364,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [176012] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144998] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4488), 1, - sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5209), 1, - sym_cell_path, - ACTIONS(2043), 2, - ts_builtin_sym_end, + ACTIONS(1695), 1, sym__space, - ACTIONS(2041), 11, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token3, + STATE(3812), 1, + sym_comment, + STATE(4533), 1, + sym__immediate_decimal, + STATE(4527), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1693), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398231,48 +362406,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, - [176048] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7653), 1, - sym__newline, - ACTIONS(7655), 1, - anon_sym_COLON, - ACTIONS(7769), 1, - anon_sym_DASH2, - STATE(4489), 1, - sym_comment, - STATE(4592), 1, - aux_sym_parameter_repeat1, - STATE(5507), 1, - aux_sym_parameter_repeat2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7767), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176092] = 5, + anon_sym_RBRACE, + [145048] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(4490), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + ACTIONS(7009), 1, + anon_sym_DOT_DOT2, + ACTIONS(7013), 1, + sym_filesize_unit, + ACTIONS(7015), 1, + sym_duration_unit, + STATE(3813), 1, sym_comment, - ACTIONS(1838), 15, + STATE(7360), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7011), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1665), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -398288,76 +362444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [176122] = 12, + [145094] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7653), 1, - sym__newline, - ACTIONS(7655), 1, - anon_sym_COLON, - ACTIONS(7773), 1, - anon_sym_DASH2, - STATE(4491), 1, - sym_comment, - STATE(4592), 1, - aux_sym_parameter_repeat1, - STATE(5515), 1, - aux_sym_parameter_repeat2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7771), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176166] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4492), 1, - sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4759), 1, + ACTIONS(935), 1, + anon_sym_DOT_DOT2, + ACTIONS(4922), 1, + anon_sym_DOT2, + STATE(1475), 1, sym_cell_path, - STATE(4964), 1, + STATE(1651), 1, + aux_sym_cell_path_repeat1, + STATE(1826), 1, sym_path, - ACTIONS(971), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(969), 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, - [176202] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4493), 1, + STATE(3814), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7728), 15, + ACTIONS(937), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -398370,26 +362472,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_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [176232] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [145136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4494), 1, + ACTIONS(7017), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7019), 1, + aux_sym__immediate_decimal_token2, + STATE(3815), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5125), 1, - sym_cell_path, - ACTIONS(1919), 2, - ts_builtin_sym_end, + ACTIONS(1625), 6, sym__space, - ACTIONS(1917), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1623), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398401,23 +362506,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, - [176268] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [145174] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7021), 1, anon_sym_DOT, - STATE(4495), 1, + STATE(3816), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5135), 1, - sym_cell_path, - ACTIONS(1865), 2, + STATE(4281), 1, + sym__immediate_decimal, + ACTIONS(1597), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1861), 11, + STATE(4280), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398429,23 +362549,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, - [176304] = 8, + [145226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, + ACTIONS(7023), 1, anon_sym_DOT, - STATE(4496), 1, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token2, + STATE(3817), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5164), 1, - sym_cell_path, - ACTIONS(1955), 2, - ts_builtin_sym_end, + ACTIONS(1601), 6, sym__space, - ACTIONS(1953), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1599), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398457,73 +362577,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, - [176340] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7775), 1, - anon_sym_QMARK2, - STATE(4497), 1, - sym_comment, - ACTIONS(1008), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1010), 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, - [176370] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [145264] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7777), 1, - anon_sym_QMARK2, - STATE(4498), 1, + STATE(3818), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_DASH2, + ACTIONS(1723), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(992), 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, - [176400] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4499), 1, - sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5210), 1, - sym_cell_path, - ACTIONS(7741), 2, + aux_sym_unquoted_token2, + ACTIONS(1725), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(7739), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398535,14 +362602,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, - [176436] = 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, + [145297] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - STATE(4500), 1, + ACTIONS(7027), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token2, + STATE(3819), 1, sym_comment, - ACTIONS(1781), 16, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -398559,17 +362639,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [176464] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [145334] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, anon_sym_LPAREN2, - STATE(4501), 1, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3820), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7728), 15, + STATE(4673), 1, + sym__immediate_decimal, + ACTIONS(1691), 2, ts_builtin_sym_end, + sym__space, + STATE(4736), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1689), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398581,21 +362678,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, - [176494] = 4, + [145383] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4502), 1, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token2, + STATE(3821), 1, sym_comment, - ACTIONS(2242), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2244), 13, - ts_builtin_sym_end, + ACTIONS(1711), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1709), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398607,15 +362704,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_LPAREN2, - [176522] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [145418] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, + ACTIONS(1665), 1, + sym__space, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(7037), 1, + anon_sym_DOT_DOT2, + ACTIONS(7041), 1, + sym_filesize_unit, + ACTIONS(7043), 1, + sym_duration_unit, + ACTIONS(7045), 1, aux_sym_unquoted_token2, - STATE(4503), 1, + STATE(3822), 1, sym_comment, - ACTIONS(1699), 16, + STATE(7280), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7039), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398629,26 +362744,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, - [176550] = 8, - ACTIONS(3), 1, + [145465] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, + ACTIONS(7047), 1, anon_sym_DOT, - STATE(4504), 1, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token2, + STATE(3823), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5111), 1, - sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398660,23 +362769,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, - [176586] = 8, - 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, + [145502] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4505), 1, + ACTIONS(6989), 1, + aux_sym__immediate_decimal_token2, + STATE(3824), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5114), 1, - sym_cell_path, - ACTIONS(1885), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1883), 11, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398688,16 +362797,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, - [176622] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [145537] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(4506), 1, + STATE(3825), 1, sym_comment, - ACTIONS(2270), 15, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -398713,86 +362829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [176652] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - ACTIONS(7783), 1, - anon_sym_QMARK2, - STATE(1733), 1, - aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(4507), 1, - sym_comment, - STATE(5452), 1, - sym_cell_path, - ACTIONS(7779), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7781), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [176690] = 14, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [145570] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_DQUOTE, - ACTIONS(2017), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2019), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2027), 1, - sym_raw_string_begin, - ACTIONS(4415), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR, - ACTIONS(5255), 1, - anon_sym_LPAREN, - ACTIONS(7785), 1, - sym__unquoted_naive, - STATE(4508), 1, - sym_comment, - STATE(4967), 1, - sym__inter_single_quotes, - STATE(4983), 1, - sym__inter_double_quotes, - ACTIONS(2015), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4655), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4908), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [176738] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4509), 1, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3826), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5237), 1, - sym_cell_path, - ACTIONS(1959), 2, + STATE(4701), 1, + sym__immediate_decimal, + ACTIONS(1695), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1957), 11, + STATE(4583), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1693), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398804,21 +362871,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, - [176774] = 6, - ACTIONS(3), 1, + [145619] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(4510), 1, + ACTIONS(7051), 1, + aux_sym__immediate_decimal_token2, + STATE(3827), 1, sym_comment, - ACTIONS(2254), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2258), 12, - ts_builtin_sym_end, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398830,15 +362893,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, - [176806] = 4, + 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, + [145654] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - STATE(4511), 1, + ACTIONS(7053), 1, + sym__newline, + STATE(3828), 2, sym_comment, - ACTIONS(1773), 16, + aux_sym_shebang_repeat1, + ACTIONS(1262), 10, + sym_identifier, + anon_sym_DASH2, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1264), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token5, + [145689] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3829), 1, + sym_comment, + STATE(4739), 1, + sym__immediate_decimal, + ACTIONS(1597), 2, ts_builtin_sym_end, + sym__space, + STATE(4738), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398850,27 +362968,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [176834] = 8, + [145738] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4512), 1, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3830), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4772), 1, - sym_cell_path, - STATE(4964), 1, - sym_path, - ACTIONS(1765), 2, + STATE(4727), 1, + sym__immediate_decimal, + ACTIONS(1687), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1763), 11, + STATE(4620), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1685), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398882,23 +363005,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, - [176870] = 8, - ACTIONS(3), 1, + [145787] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4513), 1, + STATE(3831), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5116), 1, - sym_cell_path, - ACTIONS(1889), 2, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(1887), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398910,15 +363026,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, - [176906] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [145820] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - STATE(4514), 1, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token2, + STATE(3832), 1, sym_comment, - ACTIONS(1801), 16, - ts_builtin_sym_end, + ACTIONS(1601), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1599), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398930,20 +363060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [176934] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [145855] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(4515), 1, + STATE(3833), 1, sym_comment, - ACTIONS(2230), 15, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -398959,19 +363088,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [176964] = 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [145888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__space, - ACTIONS(7787), 1, - anon_sym_DOT_DOT2, - STATE(4516), 1, + ACTIONS(7056), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7058), 1, + aux_sym__immediate_decimal_token2, + STATE(3834), 1, sym_comment, - ACTIONS(7789), 2, + ACTIONS(1625), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1623), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -398983,22 +363122,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, - [176996] = 7, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [145925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(984), 1, - sym__space, - ACTIONS(7706), 1, + ACTIONS(7060), 1, anon_sym_DOT, - STATE(4517), 1, + ACTIONS(7062), 1, + aux_sym__immediate_decimal_token2, + STATE(3835), 1, sym_comment, - STATE(4576), 1, - aux_sym_cell_path_repeat1, - STATE(4874), 1, - sym_path, - ACTIONS(982), 13, + ACTIONS(1601), 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(1599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399010,73 +363153,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_RPAREN, - anon_sym_RBRACE, - [177030] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [145962] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(4518), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7068), 1, + anon_sym_DOT, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + STATE(3836), 1, sym_comment, - ACTIONS(1000), 3, + STATE(4063), 1, + sym__immediate_decimal, + ACTIONS(1569), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1002), 14, + STATE(4367), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 9, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177058] = 8, + [146015] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4519), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3837), 1, sym_comment, - STATE(4660), 1, + STATE(3883), 1, aux_sym_cell_path_repeat1, - STATE(4964), 1, + STATE(3977), 1, sym_path, - STATE(5126), 1, + STATE(4020), 1, sym_cell_path, - ACTIONS(1927), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1925), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [177094] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7793), 1, + ACTIONS(1763), 3, sym__space, - ACTIONS(7795), 1, - anon_sym_DOT_DOT2, - STATE(4520), 1, - sym_comment, - ACTIONS(7797), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7791), 13, + ACTIONS(1761), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399090,47 +363225,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177126] = 4, + anon_sym_DOT_DOT2, + [146055] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(4521), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7082), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token5, + STATE(3838), 1, sym_comment, - ACTIONS(1779), 3, + STATE(4386), 1, + sym__immediate_decimal, + ACTIONS(1569), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 14, + STATE(4840), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 9, 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, + [146105] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3839), 1, + sym_comment, + ACTIONS(1601), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [177154] = 8, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1599), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146137] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4522), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3840), 1, sym_comment, - STATE(4660), 1, + STATE(3883), 1, aux_sym_cell_path_repeat1, - STATE(4964), 1, + STATE(3977), 1, sym_path, - STATE(5117), 1, + STATE(4046), 1, sym_cell_path, - ACTIONS(1893), 2, - ts_builtin_sym_end, + ACTIONS(1719), 3, sym__space, - ACTIONS(1891), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1717), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399142,14 +363320,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, - [177190] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [146177] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1818), 1, - aux_sym_unquoted_token2, - STATE(4523), 1, + ACTIONS(7049), 1, + aux_sym__immediate_decimal_token2, + STATE(3841), 1, sym_comment, - ACTIONS(1820), 16, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -399166,89 +363350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [177218] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7653), 1, - sym__newline, - ACTIONS(7655), 1, - anon_sym_COLON, - ACTIONS(7801), 1, - anon_sym_DASH2, - STATE(4524), 1, - sym_comment, - STATE(4592), 1, - aux_sym_parameter_repeat1, - STATE(5520), 1, - aux_sym_parameter_repeat2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7799), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177262] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146211] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7653), 1, - sym__newline, - ACTIONS(7655), 1, - anon_sym_COLON, - ACTIONS(7805), 1, - anon_sym_DASH2, - STATE(4524), 1, - aux_sym_parameter_repeat1, - STATE(4525), 1, + ACTIONS(7088), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7090), 1, + aux_sym__immediate_decimal_token2, + STATE(3842), 1, sym_comment, - STATE(5534), 1, - aux_sym_parameter_repeat2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7803), 7, + ACTIONS(1623), 6, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177306] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1830), 1, anon_sym_DASH2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(7807), 1, anon_sym_DOT_DOT2, - STATE(4526), 1, - sym_comment, - ACTIONS(7809), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1838), 11, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1625), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -399258,43 +363379,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177342] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4527), 1, - sym_comment, - ACTIONS(1765), 3, - sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 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, - [177370] = 6, + [146247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - sym__space, - ACTIONS(7811), 1, - anon_sym_DOT_DOT2, - STATE(4528), 1, + ACTIONS(7092), 1, + anon_sym_DOT, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token2, + STATE(3843), 1, sym_comment, - ACTIONS(7813), 2, + ACTIONS(1737), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 13, + ACTIONS(1735), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399308,23 +363410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177402] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146283] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4529), 1, + ACTIONS(7096), 1, + aux_sym__immediate_decimal_token2, + STATE(3844), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5260), 1, - sym_cell_path, - ACTIONS(1951), 2, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399336,18 +363435,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, - [177438] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146317] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4530), 1, + ACTIONS(7098), 1, + anon_sym_DOT, + ACTIONS(7100), 1, + aux_sym__immediate_decimal_token2, + STATE(3845), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(1599), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1006), 14, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1601), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -399357,26 +363468,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [177466] = 8, - ACTIONS(3), 1, + [146353] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4531), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(7102), 1, + anon_sym_DOT_DOT2, + STATE(3846), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5109), 1, - sym_cell_path, - ACTIONS(1877), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1875), 11, + ACTIONS(7104), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1827), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399388,19 +363497,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, - [177502] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [146391] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1036), 1, - sym__space, - ACTIONS(7795), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(7106), 1, anon_sym_DOT_DOT2, - STATE(4532), 1, + STATE(3847), 1, sym_comment, - ACTIONS(7797), 2, + ACTIONS(7108), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 13, + ACTIONS(1802), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399414,23 +363530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [177534] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [146429] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4533), 1, + STATE(3848), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5154), 1, - sym_cell_path, - ACTIONS(1947), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1945), 11, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399442,16 +363553,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, - [177570] = 4, + 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, + [146461] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + ACTIONS(7062), 1, + aux_sym__immediate_decimal_token2, + STATE(3849), 1, sym_comment, - ACTIONS(2088), 3, + ACTIONS(1601), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2086), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399463,26 +363588,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, - [177598] = 8, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [146495] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4535), 1, + STATE(3850), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5103), 1, - sym_cell_path, - ACTIONS(2051), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2049), 11, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399494,23 +363610,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, - [177634] = 8, - ACTIONS(3), 1, + 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, + [146527] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4536), 1, + STATE(3851), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5106), 1, - sym_cell_path, - ACTIONS(1943), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1941), 11, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399522,16 +363638,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, - [177670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4537), 1, - sym_comment, - ACTIONS(2125), 3, - sym__space, + 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, - ACTIONS(2123), 14, + [146559] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3852), 1, + sym_comment, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399545,58 +363668,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [177698] = 14, - 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, + [146591] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(6981), 1, + STATE(3853), 1, + sym_comment, + ACTIONS(1277), 10, + sym_identifier, + anon_sym_DASH2, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + ACTIONS(1275), 11, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(7815), 1, - anon_sym_DQUOTE, - ACTIONS(7819), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7821), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7823), 1, - sym__unquoted_naive, - STATE(2164), 1, - sym__inter_single_quotes, - STATE(2170), 1, - sym__inter_double_quotes, - STATE(4538), 1, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token5, + [146623] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7110), 1, + anon_sym_DOT, + STATE(3854), 1, sym_comment, - ACTIONS(7817), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5201), 4, - sym_expr_parenthesized, + STATE(4358), 1, + sym__immediate_decimal, + ACTIONS(1587), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4357), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - sym_val_string, - sym_val_interpolated, - [177746] = 8, + ACTIONS(1597), 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, + [146673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4539), 1, + STATE(3855), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5105), 1, - sym_cell_path, - ACTIONS(2055), 2, - ts_builtin_sym_end, + ACTIONS(1625), 6, sym__space, - ACTIONS(2053), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1623), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399608,49 +363763,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, - [177782] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_EQ, - ACTIONS(7653), 1, - sym__newline, - ACTIONS(7655), 1, - anon_sym_COLON, - ACTIONS(7827), 1, - anon_sym_DASH2, - STATE(4491), 1, - aux_sym_parameter_repeat1, - STATE(4540), 1, - sym_comment, - STATE(5539), 1, - aux_sym_parameter_repeat2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7825), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177826] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7735), 1, - aux_sym__immediate_decimal_token2, - STATE(4541), 1, + STATE(3856), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(1711), 6, sym__space, anon_sym_LPAREN2, - ACTIONS(1779), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1709), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399664,24 +363793,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, aux_sym_unquoted_token2, - [177856] = 8, + [146737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4542), 1, + ACTIONS(7112), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token2, + STATE(3857), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5119), 1, - sym_cell_path, - ACTIONS(1897), 2, - ts_builtin_sym_end, + ACTIONS(1729), 4, sym__space, - ACTIONS(1895), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1727), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399693,47 +363821,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, - [177892] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146773] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(4543), 1, + ACTIONS(1621), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7082), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token5, + STATE(3858), 1, sym_comment, - ACTIONS(986), 3, + STATE(4524), 1, + sym__immediate_decimal, + ACTIONS(1617), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(988), 14, + STATE(4851), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 9, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177920] = 8, + [146823] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4544), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(7116), 1, + anon_sym_DOT_DOT2, + ACTIONS(7120), 1, + sym_filesize_unit, + ACTIONS(7122), 1, + sym_duration_unit, + ACTIONS(7124), 1, + aux_sym_unquoted_token2, + STATE(3859), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5127), 1, - sym_cell_path, - ACTIONS(1931), 2, + STATE(7291), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1665), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1929), 11, + ACTIONS(7118), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399745,23 +363897,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, - [177956] = 8, + [146869] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4545), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3860), 1, sym_comment, - STATE(4660), 1, + STATE(3883), 1, aux_sym_cell_path_repeat1, - STATE(4964), 1, + STATE(3977), 1, sym_path, - STATE(5120), 1, + STATE(4068), 1, sym_cell_path, - ACTIONS(1905), 2, - ts_builtin_sym_end, + ACTIONS(937), 3, sym__space, - ACTIONS(1903), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(935), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399773,44 +363926,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, - [177992] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4546), 1, - sym_comment, - ACTIONS(1771), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 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, - [178020] = 6, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [146909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7829), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7831), 1, + ACTIONS(7126), 1, aux_sym__immediate_decimal_token2, - STATE(4547), 1, + STATE(3861), 1, sym_comment, - ACTIONS(1773), 3, + ACTIONS(1711), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1771), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399822,22 +363956,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, aux_sym_unquoted_token2, - [178052] = 6, + [146943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4548), 1, + STATE(3862), 1, sym_comment, - ACTIONS(2272), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2274), 12, - ts_builtin_sym_end, + ACTIONS(1725), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1723), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399849,23 +363982,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, - [178084] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146975] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4549), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(7128), 1, + anon_sym_DOT_DOT2, + STATE(3863), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5130), 1, - sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(7130), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1827), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1933), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399877,17 +364013,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, - [178120] = 5, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [147012] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, + ACTIONS(1665), 1, + sym__space, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(7041), 1, + sym_filesize_unit, + ACTIONS(7043), 1, + sym_duration_unit, + ACTIONS(7045), 1, aux_sym_unquoted_token2, - STATE(4550), 1, + STATE(3864), 1, sym_comment, - ACTIONS(2294), 15, - ts_builtin_sym_end, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399899,23 +364046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [178150] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [147053] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4551), 1, + STATE(3865), 1, sym_comment, - ACTIONS(2234), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2238), 12, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -399928,23 +364069,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, - [178182] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4552), 1, + STATE(3866), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4713), 1, - sym_cell_path, - STATE(4964), 1, - sym_path, - ACTIONS(1761), 2, + ACTIONS(1601), 7, ts_builtin_sym_end, sym__space, - ACTIONS(1757), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399956,20 +364100,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, - [178218] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7833), 1, - anon_sym_DOT, - ACTIONS(7835), 1, + ACTIONS(7132), 1, aux_sym__immediate_decimal_token2, - STATE(4553), 1, + STATE(3867), 1, sym_comment, - ACTIONS(1781), 3, - ts_builtin_sym_end, + ACTIONS(1773), 4, sym__space, anon_sym_LPAREN2, - ACTIONS(1779), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1771), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -399981,24 +364126,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [178250] = 8, + [147148] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4554), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3868), 1, sym_comment, - STATE(4660), 1, + STATE(3924), 1, aux_sym_cell_path_repeat1, - STATE(4964), 1, + STATE(4061), 1, sym_path, - STATE(5124), 1, + STATE(4288), 1, sym_cell_path, - ACTIONS(1911), 2, + ACTIONS(1719), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1909), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1717), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400010,19 +364160,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, - [178286] = 6, + anon_sym_DOT_DOT2, + [147187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2137), 1, - sym__space, - ACTIONS(7837), 1, - anon_sym_DOT_DOT2, - STATE(4555), 1, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token2, + STATE(3869), 1, sym_comment, - ACTIONS(7839), 2, + ACTIONS(1737), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 13, + ACTIONS(1735), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400036,17 +364187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178318] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147220] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4556), 1, + ACTIONS(7136), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7138), 1, + aux_sym__immediate_decimal_token2, + STATE(3870), 1, sym_comment, - ACTIONS(1024), 4, + ACTIONS(1729), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1022), 13, + ACTIONS(1727), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400059,24 +364217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [178346] = 8, + aux_sym_unquoted_token2, + [147255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4557), 1, + STATE(3871), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5072), 1, - sym_cell_path, - ACTIONS(2035), 2, + ACTIONS(1725), 7, ts_builtin_sym_end, sym__space, - ACTIONS(2033), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1723), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400088,57 +364243,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, - [178382] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6031), 1, - anon_sym_DOLLAR, - ACTIONS(7841), 1, - anon_sym_DQUOTE, - ACTIONS(7845), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7847), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7849), 1, - sym__unquoted_naive, - STATE(2621), 1, - sym__inter_single_quotes, - STATE(2630), 1, - sym__inter_double_quotes, - STATE(4558), 1, - sym_comment, - ACTIONS(7843), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5352), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [178430] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147286] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4559), 1, + STATE(3872), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5129), 1, - sym_cell_path, - ACTIONS(2059), 2, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(2057), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400150,17 +364266,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, - [178466] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147317] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4560), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + ACTIONS(7140), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7142), 1, + aux_sym__immediate_decimal_token2, + STATE(3873), 1, sym_comment, - STATE(8152), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7728), 15, - ts_builtin_sym_end, + ACTIONS(1729), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400172,105 +364295,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [178496] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [147352] = 11, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4561), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(7144), 1, + anon_sym_DOT_DOT2, + ACTIONS(7148), 1, + sym_filesize_unit, + ACTIONS(7150), 1, + sym_duration_unit, + ACTIONS(7152), 1, + aux_sym__unquoted_in_record_token2, + STATE(3874), 1, sym_comment, - ACTIONS(1054), 3, - sym__space, + STATE(7333), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1653), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(7146), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1052), 14, + ACTIONS(1665), 10, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [178524] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [147397] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4562), 1, + ACTIONS(7154), 1, + aux_sym__immediate_decimal_token2, + STATE(3875), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5058), 1, - sym_cell_path, - ACTIONS(1873), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1871), 11, + ACTIONS(1709), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1711), 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, - [178560] = 14, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147430] = 12, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2181), 1, - anon_sym_DQUOTE, - ACTIONS(2185), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2187), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2195), 1, - sym_raw_string_begin, - ACTIONS(4379), 1, + ACTIONS(7064), 1, anon_sym_DOLLAR, - ACTIONS(5265), 1, - anon_sym_LPAREN, - ACTIONS(7851), 1, - sym__unquoted_naive, - STATE(4563), 1, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token3, + STATE(3876), 1, sym_comment, - STATE(5066), 1, - sym__inter_single_quotes, - STATE(5068), 1, - sym__inter_double_quotes, - ACTIONS(2183), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4801), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5076), 4, - sym_expr_parenthesized, + STATE(4850), 1, + sym__immediate_decimal, + ACTIONS(1693), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4849), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - sym_val_string, - sym_val_interpolated, - [178608] = 5, + ACTIONS(1695), 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, + [147477] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(4564), 1, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token3, + STATE(3877), 1, + sym_comment, + STATE(4839), 1, + sym__immediate_decimal, + ACTIONS(1587), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4838), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1597), 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, + [147524] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3878), 1, sym_comment, - ACTIONS(1848), 15, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -400286,23 +364457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [178638] = 8, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147555] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4565), 1, + STATE(3879), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5131), 1, - sym_cell_path, - ACTIONS(1939), 2, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 18, ts_builtin_sym_end, - sym__space, - ACTIONS(1937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400314,45 +364481,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, - [178674] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_DASH2, - ACTIONS(1842), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7853), 1, - anon_sym_DOT_DOT2, - STATE(4566), 1, - sym_comment, - ACTIONS(7855), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 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, - [178710] = 4, + [147586] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + ACTIONS(7160), 1, + anon_sym_DOT2, + STATE(3977), 1, + sym_path, + STATE(3880), 2, sym_comment, - ACTIONS(1020), 4, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(943), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 13, + ACTIONS(941), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400364,19 +364513,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [178738] = 5, - ACTIONS(3), 1, + [147621] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7857), 1, + ACTIONS(7100), 1, aux_sym__immediate_decimal_token2, - STATE(4568), 1, + STATE(3881), 1, sym_comment, - ACTIONS(1801), 2, - sym__space, + ACTIONS(1599), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1601), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - ACTIONS(1799), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147654] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(7163), 1, + anon_sym_DOT, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token2, + STATE(3882), 1, + sym_comment, + ACTIONS(1737), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400390,18 +364569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [178768] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [147689] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4569), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3880), 1, + aux_sym_cell_path_repeat1, + STATE(3883), 1, sym_comment, - ACTIONS(1016), 4, - ts_builtin_sym_end, + STATE(3977), 1, + sym_path, + ACTIONS(950), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1014), 13, + ACTIONS(948), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400413,18 +364600,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_DOT, - [178796] = 4, + [147726] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4570), 1, + STATE(3884), 1, sym_comment, - ACTIONS(2084), 3, + ACTIONS(1625), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2082), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1623), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400436,101 +364628,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [178824] = 4, + aux_sym_unquoted_token2, + [147757] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(4571), 1, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token3, + STATE(3885), 1, sym_comment, - ACTIONS(1799), 3, + STATE(4848), 1, + sym__immediate_decimal, + ACTIONS(1689), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 14, + STATE(4847), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1691), 9, 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, - [178852] = 4, + [147804] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(4572), 1, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7156), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token3, + STATE(3886), 1, sym_comment, - ACTIONS(1818), 3, + STATE(4846), 1, + sym__immediate_decimal, + ACTIONS(1685), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1820), 14, + STATE(4845), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1687), 9, 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, + [147851] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3887), 1, + sym_comment, + ACTIONS(1711), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [178880] = 9, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1709), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147882] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - ACTIONS(7863), 1, - anon_sym_QMARK2, - STATE(1733), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3888), 1, + sym_comment, + STATE(3924), 1, aux_sym_cell_path_repeat1, - STATE(1898), 1, + STATE(4061), 1, sym_path, - STATE(4573), 1, - sym_comment, - STATE(5377), 1, + STATE(4259), 1, sym_cell_path, - ACTIONS(7859), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7861), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [178918] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(4574), 1, - sym_comment, - ACTIONS(1034), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(1036), 12, + ACTIONS(1763), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1761), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400542,23 +364757,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, - [178950] = 8, + anon_sym_DOT_DOT2, + [147921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, + ACTIONS(7167), 1, anon_sym_DOT, - STATE(4575), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token2, + STATE(3889), 1, sym_comment, - STATE(4660), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - STATE(5136), 1, - sym_cell_path, - ACTIONS(7710), 2, + ACTIONS(1737), 5, ts_builtin_sym_end, sym__space, - ACTIONS(7708), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400570,19 +364785,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, - [178986] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(977), 1, - sym__space, - ACTIONS(7865), 1, - anon_sym_DOT, - STATE(4874), 1, - sym_path, - STATE(4576), 2, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3890), 1, sym_comment, + STATE(3924), 1, aux_sym_cell_path_repeat1, - ACTIONS(975), 13, + STATE(4061), 1, + sym_path, + STATE(4118), 1, + sym_cell_path, + ACTIONS(937), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(935), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400594,20 +364817,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, - [179018] = 6, + anon_sym_DOT_DOT2, + [147995] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4577), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(7171), 1, + anon_sym_DOT_DOT2, + STATE(3891), 1, sym_comment, - ACTIONS(7868), 13, + ACTIONS(7173), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400619,47 +364845,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [179049] = 8, + [148032] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4578), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT2, + STATE(3892), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(4833), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(971), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7175), 16, 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, - [179084] = 4, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [148064] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4579), 1, + ACTIONS(7181), 1, + anon_sym_DOT, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token2, + STATE(3893), 1, sym_comment, - ACTIONS(1022), 3, + ACTIONS(1735), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1024), 13, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -400669,43 +364900,59 @@ 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, - [179111] = 4, + [148098] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(4580), 1, - sym_comment, - ACTIONS(1018), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1020), 13, + ACTIONS(2554), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7189), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7191), 1, anon_sym_COLON, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7195), 1, + anon_sym_DASH2, + STATE(3894), 1, + sym_comment, + STATE(4029), 1, + aux_sym_parameter_repeat1, + STATE(4102), 1, + sym_flag_capsule, + STATE(4995), 1, + aux_sym_parameter_repeat2, + STATE(6518), 1, + aux_sym_shebang_repeat1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7185), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [179138] = 4, + [148148] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4581), 1, + STATE(3895), 1, sym_comment, - ACTIONS(1014), 3, + ACTIONS(1599), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1016), 13, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1601), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -400715,20 +364962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [179165] = 6, + [148178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, - sym__space, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(4582), 1, + STATE(3896), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(964), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(962), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400742,18 +364988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179196] = 6, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [148208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, + STATE(3897), 1, + sym_comment, + ACTIONS(1729), 4, sym__space, - ACTIONS(2220), 1, anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(4583), 1, - sym_comment, - ACTIONS(1034), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1727), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400767,14 +365015,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179227] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [148238] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(7120), 1, + sym_filesize_unit, + ACTIONS(7122), 1, + sym_duration_unit, + ACTIONS(7124), 1, + aux_sym_unquoted_token2, + STATE(3898), 1, sym_comment, - STATE(4709), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 15, + ACTIONS(1665), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400786,18 +365048,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, - [179254] = 4, - ACTIONS(251), 1, + [148278] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4585), 1, + ACTIONS(7197), 1, + anon_sym_QMARK2, + STATE(3899), 1, sym_comment, - STATE(4710), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 15, + ACTIONS(954), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(952), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400810,21 +365072,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [179281] = 6, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [148310] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7878), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - STATE(4586), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(7199), 1, + anon_sym_DOT, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token2, + STATE(3900), 1, sym_comment, - STATE(4714), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 13, + ACTIONS(1737), 16, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -400835,21 +365099,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, - [179312] = 6, + anon_sym_LPAREN2, + [148344] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7878), 1, - sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - STATE(4587), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(7165), 1, + aux_sym__immediate_decimal_token2, + STATE(3901), 1, sym_comment, - STATE(4715), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 13, + ACTIONS(1737), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -400861,20 +365125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [179343] = 6, + anon_sym_LPAREN2, + [148376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2274), 1, - sym__space, - STATE(4588), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token2, + STATE(3902), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(1737), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400886,20 +365155,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, - [179374] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [148408] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, - sym__space, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4589), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(7203), 1, + aux_sym__immediate_decimal_token2, + STATE(3903), 1, sym_comment, - ACTIONS(2234), 13, + ACTIONS(1773), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -400913,121 +365180,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179405] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, anon_sym_and2, - ACTIONS(7885), 1, anon_sym_xor2, - STATE(4590), 1, - sym_comment, - STATE(4718), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_or2, - [179438] = 7, + anon_sym_LPAREN2, + [148440] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4591), 1, + STATE(3904), 1, sym_comment, - STATE(4720), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [179471] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7891), 1, + ACTIONS(1623), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1625), 13, anon_sym_EQ, - ACTIONS(7894), 1, sym__newline, - ACTIONS(7897), 1, - anon_sym_COLON, - ACTIONS(7900), 1, - anon_sym_DASH2, - STATE(7307), 1, - aux_sym_shebang_repeat1, - STATE(4592), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(5454), 2, - sym_param_type, - sym_param_value, - ACTIONS(7889), 8, - sym_identifier, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179508] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148470] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4593), 1, + STATE(3905), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5312), 1, - sym_path, - STATE(5322), 1, - sym_cell_path, - ACTIONS(1955), 11, + ACTIONS(972), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(974), 16, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + 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, - [179543] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [148500] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4594), 1, + ACTIONS(7205), 1, + anon_sym_QMARK2, + STATE(3906), 1, sym_comment, - STATE(4749), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 15, + ACTIONS(968), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(966), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401040,17 +365260,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_and2, - anon_sym_xor2, - anon_sym_or2, - [179570] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [148532] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4595), 1, + ACTIONS(7207), 1, + anon_sym_DOT2, + STATE(4061), 1, + sym_path, + STATE(3907), 2, sym_comment, - STATE(4757), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 15, + aux_sym_cell_path_repeat1, + ACTIONS(943), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(941), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401062,47 +365290,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_and2, - anon_sym_xor2, - anon_sym_or2, - [179597] = 6, + anon_sym_DOT_DOT2, + [148566] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7878), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - STATE(4596), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT2, + STATE(3908), 1, sym_comment, - STATE(4762), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [179628] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7878), 1, + ACTIONS(7179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7175), 16, sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - STATE(4597), 1, - sym_comment, - STATE(4763), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -401114,26 +365314,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [179659] = 8, + [148598] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4598), 1, + ACTIONS(7210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7212), 1, + aux_sym__immediate_decimal_token2, + STATE(3909), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5312), 1, - sym_path, - STATE(5359), 1, - sym_cell_path, - ACTIONS(1959), 11, - anon_sym_EQ, + ACTIONS(1727), 4, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 13, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -401143,46 +365343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179694] = 7, - ACTIONS(251), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148632] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4599), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + sym__space, + ACTIONS(7214), 1, + anon_sym_DOT_DOT2, + STATE(3910), 1, sym_comment, - STATE(4766), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [179727] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(7216), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 13, sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4600), 1, - sym_comment, - STATE(4767), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -401194,21 +365375,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, - [179760] = 7, + anon_sym_RBRACE, + [148670] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - ACTIONS(7908), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4601), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT2, + STATE(3911), 1, sym_comment, - ACTIONS(7902), 12, + ACTIONS(7179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7175), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401221,20 +365399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179793] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7870), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(7872), 1, anon_sym_xor2, - ACTIONS(7910), 1, anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4602), 1, + [148702] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3912), 1, sym_comment, - ACTIONS(7902), 12, + ACTIONS(1788), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401247,22 +365426,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179826] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [148732] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4603), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3913), 1, sym_comment, - STATE(4828), 1, + STATE(4012), 1, aux_sym_cell_path_repeat1, - STATE(5177), 1, - sym_cell_path, - STATE(5312), 1, + STATE(4054), 1, sym_path, - ACTIONS(2035), 11, + STATE(4298), 1, + sym_cell_path, + ACTIONS(1761), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1763), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -401274,74 +365457,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179861] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2049), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4604), 1, + STATE(3914), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5185), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(2051), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1737), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 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, - [179896] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [148800] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2053), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4605), 1, + STATE(3915), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5189), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(2055), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(960), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(958), 16, 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, - [179931] = 6, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [148830] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7914), 1, - aux_sym__immediate_decimal_token2, - STATE(4606), 1, + STATE(3916), 1, sym_comment, - ACTIONS(1771), 3, + ACTIONS(1723), 6, sym_identifier, anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 11, + ACTIONS(1725), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -401353,46 +365535,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [179962] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148860] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4607), 1, + STATE(3917), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5193), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1943), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179997] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(958), 3, anon_sym_DASH2, - STATE(4608), 1, - sym_comment, - ACTIONS(1002), 15, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(960), 16, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_RPAREN, @@ -401402,50 +365560,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK2, - anon_sym_DOT, - [180024] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [148890] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4609), 1, + STATE(3918), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5195), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1873), 11, + ACTIONS(976), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(978), 16, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + 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, - [180059] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [148920] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4610), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3919), 1, sym_comment, - STATE(4828), 1, + STATE(4012), 1, aux_sym_cell_path_repeat1, - STATE(5197), 1, - sym_cell_path, - STATE(5312), 1, + STATE(4054), 1, sym_path, - ACTIONS(1877), 11, + STATE(4343), 1, + sym_cell_path, + ACTIONS(935), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(937), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -401457,20 +365617,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180094] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148958] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - ACTIONS(7908), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + ACTIONS(7220), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7222), 1, + aux_sym__immediate_decimal_token2, + STATE(3920), 1, sym_comment, - ACTIONS(7916), 12, + ACTIONS(1729), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401482,46 +365643,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, - [180127] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [148992] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4612), 1, + STATE(3921), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5200), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1881), 11, + ACTIONS(962), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(964), 16, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + 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, - [180162] = 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [149022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4992), 1, - sym__space, - STATE(4613), 1, + ACTIONS(7224), 1, + aux_sym__immediate_decimal_token2, + STATE(3922), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4994), 13, + ACTIONS(1773), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401533,74 +365698,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180193] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [149054] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4614), 1, + STATE(3923), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5206), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1885), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(978), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(976), 16, 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, - [180228] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [149084] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1887), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4615), 1, - sym_comment, - STATE(4828), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3907), 1, aux_sym_cell_path_repeat1, - STATE(5208), 1, - sym_cell_path, - STATE(5312), 1, + STATE(3924), 1, + sym_comment, + STATE(4061), 1, sym_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, - [180263] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(5004), 1, + ACTIONS(950), 4, + ts_builtin_sym_end, sym__space, - STATE(4616), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5006), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(948), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401612,22 +365754,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, - [180294] = 7, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [149120] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - ACTIONS(7910), 1, - anon_sym_or2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4617), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, + sym__space, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(7226), 1, + anon_sym_DOT_DOT2, + STATE(3925), 1, sym_comment, - ACTIONS(7916), 12, + ACTIONS(7228), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401640,22 +365784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180327] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + [149158] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - ACTIONS(7920), 1, - anon_sym_or2, - STATE(4601), 1, - aux_sym_shebang_repeat1, - STATE(4618), 1, + STATE(3926), 1, sym_comment, - ACTIONS(7918), 11, + ACTIONS(1773), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1771), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -401667,22 +365808,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180362] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [149188] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - ACTIONS(7922), 1, - anon_sym_or2, - STATE(4602), 1, - aux_sym_shebang_repeat1, - STATE(4619), 1, + STATE(3927), 1, sym_comment, - ACTIONS(7918), 11, + ACTIONS(974), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(972), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -401694,76 +365833,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180397] = 8, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [149218] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4620), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3928), 1, sym_comment, - STATE(4828), 1, + STATE(4012), 1, aux_sym_cell_path_repeat1, - STATE(5212), 1, - sym_cell_path, - STATE(5312), 1, + STATE(4054), 1, sym_path, - ACTIONS(1893), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180432] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4621), 1, - sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5214), 1, + STATE(4336), 1, sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1897), 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, - [180467] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(1717), 2, anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4622), 1, - sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5215), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1905), 11, + anon_sym_DOT_DOT2, + ACTIONS(1719), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -401775,72 +365865,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180502] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [149256] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4623), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT2, + STATE(3929), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5217), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1911), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1000), 16, 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, - [180537] = 8, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149288] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4624), 1, + ACTIONS(7230), 1, + anon_sym_DOT_DOT2, + STATE(3930), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5219), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1919), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7232), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2121), 16, 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, - [180572] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149320] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(5063), 1, - sym__space, - STATE(4625), 1, + ACTIONS(7234), 1, + anon_sym_DOT_DOT2, + STATE(3931), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5065), 13, + ACTIONS(7236), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401854,18 +365945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180603] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149352] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4986), 1, - sym__space, - STATE(4626), 1, + ACTIONS(7238), 1, + anon_sym_DOT_DOT2, + STATE(3932), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4988), 13, + ACTIONS(7240), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401879,18 +365972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180634] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149384] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1781), 1, - sym__space, - ACTIONS(7537), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7924), 1, - anon_sym_DOT, - STATE(4627), 1, + ACTIONS(7242), 1, + anon_sym_DOT_DOT2, + STATE(3933), 1, sym_comment, - ACTIONS(1779), 13, + ACTIONS(7244), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2164), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -401904,51 +365999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180665] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149416] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4628), 1, + STATE(3934), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5220), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1927), 11, - anon_sym_EQ, + ACTIONS(1709), 6, 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, - [180700] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1929), 1, anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4629), 1, - sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5222), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1931), 11, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1711), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -401958,22 +366025,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180735] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [149446] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - ACTIONS(7920), 1, - anon_sym_or2, - STATE(4611), 1, - aux_sym_shebang_repeat1, - STATE(4630), 1, + ACTIONS(7246), 1, + anon_sym_DOT_DOT2, + STATE(3935), 1, sym_comment, - ACTIONS(7926), 11, + ACTIONS(7248), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2164), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -401984,50 +366051,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, - [180770] = 8, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149477] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4631), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3936), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5230), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1935), 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, - [180805] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7883), 1, + ACTIONS(2257), 3, anon_sym_and2, - ACTIONS(7887), 1, anon_sym_xor2, - ACTIONS(7922), 1, anon_sym_or2, - STATE(4617), 1, - aux_sym_shebang_repeat1, - STATE(4632), 1, - sym_comment, - ACTIONS(7926), 11, + ACTIONS(2259), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -402039,42 +366080,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [180840] = 8, + anon_sym_RBRACE, + [149510] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(5611), 1, anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4633), 1, + STATE(3937), 1, sym_comment, - STATE(4828), 1, - aux_sym_cell_path_repeat1, - STATE(5232), 1, - sym_cell_path, - STATE(5312), 1, - sym_path, - ACTIONS(1939), 11, + ACTIONS(5613), 17, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [180875] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [149539] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4634), 1, - sym_comment, - ACTIONS(1781), 2, + ACTIONS(2019), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1779), 14, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3938), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4515), 1, + sym_cell_path, + ACTIONS(2017), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402088,21 +366135,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [180902] = 6, + [149576] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7928), 1, - anon_sym_DOT_DOT2, - STATE(4635), 1, - sym_comment, - ACTIONS(1036), 2, - ts_builtin_sym_end, + ACTIONS(2023), 1, sym__space, - ACTIONS(7930), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 11, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3939), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4516), 1, + sym_cell_path, + ACTIONS(2021), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402114,18 +366162,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, - [180933] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149613] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7934), 1, - anon_sym_and2, - ACTIONS(7936), 1, - anon_sym_xor2, - ACTIONS(7938), 1, - anon_sym_or2, - STATE(4636), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token2, + STATE(3940), 1, sym_comment, - ACTIONS(7932), 13, + ACTIONS(1737), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402137,20 +366186,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, - [180964] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7940), 1, anon_sym_and2, - ACTIONS(7942), 1, anon_sym_xor2, - ACTIONS(7944), 1, anon_sym_or2, - STATE(4637), 1, + anon_sym_LPAREN2, + [149644] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2027), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3941), 1, sym_comment, - ACTIONS(7932), 13, + STATE(3977), 1, + sym_path, + STATE(4523), 1, + sym_cell_path, + ACTIONS(2025), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402164,12 +366219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180995] = 3, + [149681] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4638), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token2, + STATE(3942), 1, sym_comment, - ACTIONS(7319), 16, + ACTIONS(1773), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402181,45 +366241,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, - [181020] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7946), 1, - anon_sym_DOT, - ACTIONS(7948), 1, - aux_sym__immediate_decimal_token2, - STATE(4639), 1, - sym_comment, - ACTIONS(1779), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 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, - [181051] = 4, + [149712] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4640), 1, - sym_comment, - ACTIONS(1773), 2, + ACTIONS(1975), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1771), 14, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3943), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4528), 1, + sym_cell_path, + ACTIONS(1973), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402233,66 +366274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [181078] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_DASH2, - STATE(4641), 1, - sym_comment, - ACTIONS(1006), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [181105] = 8, + [149749] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1733), 1, - aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(4642), 1, - sym_comment, - STATE(5356), 1, - sym_cell_path, - ACTIONS(7950), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7952), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [181140] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4643), 1, - sym_comment, - ACTIONS(1801), 2, - sym__space, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, anon_sym_LPAREN2, - ACTIONS(1799), 14, + STATE(3944), 1, + sym_comment, + ACTIONS(1827), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402306,16 +366297,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [181167] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149780] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4644), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(7252), 1, + anon_sym_DOT_DOT2, + STATE(3945), 1, sym_comment, - ACTIONS(1820), 2, + ACTIONS(1827), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1818), 14, + ACTIONS(7254), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1819), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402327,20 +366329,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, - aux_sym_unquoted_token2, - [181194] = 4, + [149817] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4645), 1, + STATE(3946), 1, sym_comment, - ACTIONS(2084), 4, + ACTIONS(1729), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2082), 12, + ACTIONS(1727), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402353,18 +366353,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, - [181221] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - sym__space, - STATE(4646), 1, + [149846] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7256), 1, + anon_sym_DOT_DOT2, + STATE(3947), 1, sym_comment, - ACTIONS(1830), 13, + ACTIONS(7258), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7175), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402376,19 +366377,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, - [181252] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149877] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4647), 1, + ACTIONS(7260), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7262), 1, + aux_sym__immediate_decimal_token2, + STATE(3948), 1, sym_comment, - ACTIONS(2088), 4, - ts_builtin_sym_end, + ACTIONS(1729), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2086), 12, + anon_sym_LPAREN2, + ACTIONS(1727), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402400,21 +366404,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [181279] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [149910] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7954), 1, - anon_sym_DOT_DOT2, - STATE(4648), 1, - sym_comment, - ACTIONS(2096), 2, - ts_builtin_sym_end, + ACTIONS(1931), 1, sym__space, - ACTIONS(7956), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2090), 11, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3949), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4535), 1, + sym_cell_path, + ACTIONS(1929), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402426,20 +366434,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, - [181310] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149947] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7958), 1, + ACTIONS(7256), 1, anon_sym_DOT_DOT2, - STATE(4649), 1, + STATE(3950), 1, sym_comment, - ACTIONS(2104), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7960), 2, + ACTIONS(7258), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 11, + ACTIONS(7175), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402451,20 +366459,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, - [181341] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149978] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7962), 1, + ACTIONS(7256), 1, anon_sym_DOT_DOT2, - STATE(4650), 1, + STATE(3951), 1, sym_comment, - ACTIONS(2137), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7964), 2, + ACTIONS(7258), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2131), 11, + ACTIONS(7175), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402476,41 +366485,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181372] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150009] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - STATE(4651), 1, + ACTIONS(7264), 1, + anon_sym_QMARK2, + STATE(3952), 1, sym_comment, - ACTIONS(998), 15, + ACTIONS(952), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(954), 14, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [150040] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7266), 1, anon_sym_QMARK2, - anon_sym_DOT, - [181399] = 6, - ACTIONS(3), 1, + STATE(3953), 1, + sym_comment, + ACTIONS(966), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(968), 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_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [150071] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7268), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + ACTIONS(941), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(3954), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(943), 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, + [150104] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(1796), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - ACTIONS(2294), 1, - sym__space, - STATE(4652), 1, + STATE(3955), 1, sym_comment, - ACTIONS(2292), 13, + ACTIONS(2216), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402524,18 +366590,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181430] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150135] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1848), 1, + ACTIONS(2031), 1, sym__space, - ACTIONS(1850), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3956), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4525), 1, + sym_cell_path, + ACTIONS(2029), 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, + [150172] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - STATE(4653), 1, + STATE(3957), 1, sym_comment, - ACTIONS(1840), 13, + ACTIONS(1802), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402549,15 +366645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181461] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150203] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4654), 1, - sym_comment, - ACTIONS(2244), 2, + ACTIONS(1935), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2242), 14, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3958), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4539), 1, + sym_cell_path, + ACTIONS(1933), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402571,16 +366677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token4, - [181488] = 4, + [150240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4655), 1, + STATE(3959), 1, sym_comment, - ACTIONS(1002), 2, + ACTIONS(974), 4, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1000), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(972), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402592,21 +366699,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_QMARK2, - [181515] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, - sym__space, - ACTIONS(7966), 1, - sym_long_flag_identifier, - ACTIONS(7968), 1, - anon_sym_EQ2, - STATE(4656), 1, + STATE(3960), 1, sym_comment, - ACTIONS(5012), 13, + ACTIONS(986), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402620,18 +366725,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181546] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150298] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + ACTIONS(7273), 1, sym__space, - ACTIONS(7970), 1, - anon_sym_EQ2, - ACTIONS(7972), 1, - sym_short_flag_identifier, - STATE(4657), 1, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3961), 1, sym_comment, - ACTIONS(5029), 13, + STATE(3977), 1, + sym_path, + STATE(4395), 1, + sym_cell_path, + ACTIONS(7271), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402645,15 +366756,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181577] = 4, + [150335] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5646), 1, + anon_sym_DASH2, + STATE(3962), 1, + sym_comment, + ACTIONS(5648), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150364] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5061), 1, + ACTIONS(1621), 1, aux_sym_unquoted_token2, - STATE(4658), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(3963), 1, sym_comment, - ACTIONS(1699), 15, - ts_builtin_sym_end, + ACTIONS(2222), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402665,49 +366802,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, - [181604] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7976), 1, - aux_sym__immediate_decimal_token2, - STATE(4659), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1663), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [181635] = 7, + [150395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7765), 1, - anon_sym_DOT, - STATE(4660), 1, + STATE(3964), 1, sym_comment, - STATE(4667), 1, - aux_sym_cell_path_repeat1, - STATE(4964), 1, - sym_path, - ACTIONS(984), 2, - ts_builtin_sym_end, + ACTIONS(982), 3, sym__space, - ACTIONS(982), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(980), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402719,15 +366828,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, - [181668] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150424] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4661), 1, - sym_comment, - ACTIONS(1006), 2, + ACTIONS(1979), 1, sym__space, - anon_sym_DOT, - ACTIONS(1004), 14, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3965), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4387), 1, + sym_cell_path, + ACTIONS(1977), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402741,39 +366861,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [181695] = 4, - ACTIONS(251), 1, + [150461] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_DASH2, - STATE(4662), 1, + ACTIONS(1983), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3966), 1, sym_comment, - ACTIONS(988), 15, - anon_sym_EQ, - sym_identifier, + STATE(3977), 1, + sym_path, + STATE(4388), 1, + sym_cell_path, + ACTIONS(1981), 13, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT, - [181722] = 4, + [150498] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4663), 1, - sym_comment, - ACTIONS(998), 2, + ACTIONS(1987), 1, sym__space, - anon_sym_DOT, - ACTIONS(996), 14, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3967), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4397), 1, + sym_cell_path, + ACTIONS(1985), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402787,19 +366919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [181749] = 6, - ACTIONS(3), 1, + [150535] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, + ACTIONS(2226), 1, anon_sym_LPAREN2, - ACTIONS(2270), 1, - sym__space, - STATE(4664), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(3968), 1, sym_comment, - ACTIONS(2266), 13, + ACTIONS(2228), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402813,45 +366942,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181780] = 8, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150566] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1733), 1, + ACTIONS(1831), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(4665), 1, + STATE(3969), 1, sym_comment, - STATE(5423), 1, + STATE(3977), 1, + sym_path, + STATE(4424), 1, sym_cell_path, - ACTIONS(7978), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7980), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [181815] = 6, - ACTIONS(3), 1, + ACTIONS(1829), 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, + [150603] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(7984), 1, - sym__space, - STATE(4666), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + STATE(3970), 1, sym_comment, - STATE(8103), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7982), 13, + ACTIONS(1737), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402865,20 +366995,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181846] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [150632] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7986), 1, - anon_sym_DOT, - STATE(4964), 1, - sym_path, - ACTIONS(977), 2, - ts_builtin_sym_end, + ACTIONS(1951), 1, sym__space, - STATE(4667), 2, - sym_comment, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, aux_sym_cell_path_repeat1, - ACTIONS(975), 11, + STATE(3971), 1, + sym_comment, + STATE(3977), 1, + sym_path, + STATE(4429), 1, + sym_cell_path, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402890,14 +367026,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, - [181877] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150669] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4668), 1, + ACTIONS(7275), 1, + anon_sym_QMARK2, + STATE(3972), 1, sym_comment, - ACTIONS(7989), 15, + ACTIONS(954), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(952), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402909,18 +367052,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, - [181904] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150700] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4669), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + STATE(3973), 1, sym_comment, - ACTIONS(7989), 15, + ACTIONS(1729), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402933,19 +367074,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [181931] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [150729] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4670), 1, + ACTIONS(7277), 1, + anon_sym_QMARK2, + STATE(3974), 1, sym_comment, - ACTIONS(7989), 14, + ACTIONS(968), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(966), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402957,19 +367103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [181960] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150760] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4671), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(3975), 1, sym_comment, - ACTIONS(7989), 14, + ACTIONS(1773), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -402982,20 +367125,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, - [181989] = 6, + anon_sym_LPAREN2, + [150789] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4672), 1, + ACTIONS(1786), 1, + aux_sym_unquoted_token2, + STATE(3976), 1, sym_comment, - ACTIONS(7989), 13, + ACTIONS(1788), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403008,19 +367150,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182020] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7870), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(7872), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4673), 1, + anon_sym_or2, + anon_sym_LPAREN2, + [150818] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3977), 1, sym_comment, - ACTIONS(7989), 13, + ACTIONS(990), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(988), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403033,15 +367177,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182051] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150847] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4674), 1, + ACTIONS(5642), 1, + anon_sym_DASH2, + STATE(3978), 1, + sym_comment, + ACTIONS(5644), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150876] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(3979), 1, sym_comment, - ACTIONS(7991), 15, + ACTIONS(2249), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403054,17 +367231,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, - [182078] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [150909] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4675), 1, + STATE(3980), 1, sym_comment, - ACTIONS(7991), 15, + ACTIONS(978), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(976), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403076,18 +367254,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, - [182105] = 4, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150938] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4676), 1, + ACTIONS(7256), 1, + anon_sym_DOT_DOT2, + STATE(3981), 1, sym_comment, - STATE(4742), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 15, + ACTIONS(7258), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1000), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403099,20 +367280,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, - [182132] = 5, - ACTIONS(251), 1, + [150969] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4677), 1, + STATE(3982), 1, sym_comment, - ACTIONS(7991), 14, + ACTIONS(1737), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403124,19 +367306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [182161] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [150998] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4678), 1, + STATE(3983), 1, sym_comment, - ACTIONS(7991), 14, + ACTIONS(964), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(962), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403148,21 +367330,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_xor2, - anon_sym_or2, - [182190] = 6, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151027] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7995), 1, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token2, + STATE(3984), 1, + sym_comment, + ACTIONS(1735), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 13, + anon_sym_EQ, sym__newline, - STATE(4679), 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151058] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(3985), 1, sym_comment, - STATE(4743), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 13, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7279), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403174,20 +367381,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [182221] = 6, - ACTIONS(251), 1, + [151089] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7995), 1, - sym__newline, - STATE(4680), 1, + STATE(3986), 1, sym_comment, - STATE(4744), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 13, + ACTIONS(1773), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1771), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403198,21 +367408,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [151118] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5650), 1, + anon_sym_DASH2, + STATE(3987), 1, + sym_comment, + ACTIONS(5652), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [182252] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151147] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4681), 1, + ACTIONS(7281), 1, + aux_sym__immediate_decimal_token2, + STATE(3988), 1, + sym_comment, + ACTIONS(1771), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 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, + [151178] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5628), 1, + anon_sym_DASH2, + STATE(3989), 1, + sym_comment, + ACTIONS(5630), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151207] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2035), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(3990), 1, sym_comment, - ACTIONS(7991), 13, + STATE(4433), 1, + sym_cell_path, + ACTIONS(2033), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403225,19 +367514,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182283] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [151244] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4682), 1, + ACTIONS(1947), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(3991), 1, sym_comment, - ACTIONS(7991), 13, + STATE(4506), 1, + sym_cell_path, + ACTIONS(1945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403250,21 +367543,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, - [182314] = 7, + anon_sym_RBRACE, + [151281] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4683), 1, + ACTIONS(7283), 1, + anon_sym_DOT_DOT2, + STATE(3992), 1, sym_comment, - STATE(4745), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 12, + ACTIONS(7285), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2121), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403275,22 +367567,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_or2, - [182347] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7883), 1, anon_sym_and2, - ACTIONS(7887), 1, anon_sym_xor2, - STATE(4577), 1, - aux_sym_shebang_repeat1, - STATE(4684), 1, + anon_sym_or2, + [151312] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1967), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(3993), 1, sym_comment, - ACTIONS(7993), 12, + STATE(4499), 1, + sym_cell_path, + ACTIONS(1965), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403302,15 +367598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182380] = 4, + anon_sym_RBRACE, + [151349] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4685), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(3994), 1, sym_comment, - ACTIONS(7989), 15, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7279), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403323,17 +367621,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [182407] = 4, + [151380] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4686), 1, + ACTIONS(7287), 1, + anon_sym_DOT_DOT2, + STATE(3995), 1, sym_comment, - ACTIONS(7989), 15, + ACTIONS(7289), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403345,20 +367648,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, - [182434] = 5, + [151411] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4687), 1, + ACTIONS(7291), 1, + anon_sym_DOT_DOT2, + STATE(3996), 1, sym_comment, - ACTIONS(7989), 14, + ACTIONS(7293), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403370,19 +367674,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, - [182463] = 5, - ACTIONS(251), 1, + [151442] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4688), 1, + STATE(3997), 1, sym_comment, - ACTIONS(7989), 14, + ACTIONS(1788), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1786), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403394,21 +367700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [182492] = 6, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [151471] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4689), 1, + STATE(3998), 1, sym_comment, - ACTIONS(7989), 13, + ACTIONS(960), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(958), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403420,20 +367724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [182523] = 6, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151500] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4690), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(3999), 1, sym_comment, - ACTIONS(7989), 13, + STATE(7268), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7279), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403446,15 +367749,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [182554] = 4, - ACTIONS(251), 1, + [151531] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4691), 1, + ACTIONS(1939), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4000), 1, sym_comment, - ACTIONS(7991), 15, + STATE(4472), 1, + sym_cell_path, + ACTIONS(1937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403467,18 +367781,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [182581] = 4, + anon_sym_RBRACE, + [151568] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4692), 1, - sym_comment, - ACTIONS(988), 2, + ACTIONS(7078), 1, + anon_sym_DOT2, + ACTIONS(7297), 1, sym__space, - anon_sym_DOT, - ACTIONS(986), 14, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4001), 1, + sym_comment, + STATE(4473), 1, + sym_cell_path, + ACTIONS(7295), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403492,15 +367811,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [182608] = 4, - ACTIONS(251), 1, + [151605] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4693), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(7299), 1, + anon_sym_DOT_DOT2, + STATE(4002), 1, sym_comment, - ACTIONS(7991), 15, + ACTIONS(1802), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7301), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1794), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403512,18 +367840,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, + [151642] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(4003), 1, + sym_comment, + ACTIONS(1004), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [182635] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4694), 1, - sym_comment, - STATE(4748), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 15, + ACTIONS(1000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403536,17 +367866,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, + [151675] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(4004), 1, + sym_comment, + ACTIONS(2241), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [182662] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4695), 1, - sym_comment, - STATE(4753), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 15, + ACTIONS(2245), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403559,19 +367893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [182689] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [151708] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4696), 1, + ACTIONS(1971), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4005), 1, sym_comment, - ACTIONS(7991), 14, + STATE(4521), 1, + sym_cell_path, + ACTIONS(1969), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403584,18 +367922,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [182718] = 5, + anon_sym_RBRACE, + [151745] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4697), 1, + ACTIONS(5617), 1, + anon_sym_DASH2, + STATE(4006), 1, + sym_comment, + ACTIONS(5619), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151774] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7303), 1, + anon_sym_DOT, + ACTIONS(7305), 1, + aux_sym__immediate_decimal_token2, + STATE(4007), 1, sym_comment, - ACTIONS(7991), 14, + ACTIONS(1737), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1735), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403608,20 +367973,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_xor2, - anon_sym_or2, - [182747] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [151807] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7995), 1, - sym__newline, - STATE(4698), 1, + ACTIONS(1959), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4008), 1, sym_comment, - STATE(4754), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 13, + STATE(4398), 1, + sym_cell_path, + ACTIONS(1957), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403633,20 +368003,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [182778] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [151844] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7995), 1, - sym__newline, - STATE(4699), 1, + ACTIONS(1991), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4009), 1, sym_comment, - STATE(4755), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 13, + STATE(4447), 1, + sym_cell_path, + ACTIONS(1989), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403658,20 +368032,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [182809] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [151881] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4700), 1, + ACTIONS(1995), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4010), 1, sym_comment, - ACTIONS(7991), 13, + STATE(4449), 1, + sym_cell_path, + ACTIONS(1993), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403684,19 +368061,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182840] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [151918] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4701), 1, + ACTIONS(1999), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4011), 1, sym_comment, - ACTIONS(7991), 13, + STATE(4451), 1, + sym_cell_path, + ACTIONS(1997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403709,19 +368090,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182871] = 6, + anon_sym_RBRACE, + [151955] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3954), 1, + aux_sym_cell_path_repeat1, + STATE(4012), 1, + sym_comment, + STATE(4054), 1, + sym_path, + ACTIONS(948), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(950), 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, + [151990] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, + ACTIONS(2003), 1, sym__space, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(4702), 1, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4013), 1, sym_comment, - ACTIONS(2226), 13, + STATE(4452), 1, + sym_cell_path, + ACTIONS(2001), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403735,20 +368148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182902] = 7, - ACTIONS(251), 1, + [152027] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4703), 1, + ACTIONS(2007), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4014), 1, sym_comment, - STATE(4756), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 12, + STATE(4453), 1, + sym_cell_path, + ACTIONS(2005), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403760,21 +368176,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182935] = 7, + anon_sym_RBRACE, + [152064] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5607), 1, + anon_sym_DASH2, + STATE(4015), 1, + sym_comment, + ACTIONS(5609), 17, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4704), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152093] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2011), 1, + sym__space, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4016), 1, sym_comment, - STATE(4758), 1, - aux_sym_shebang_repeat1, - ACTIONS(7993), 12, + STATE(4513), 1, + sym_cell_path, + ACTIONS(2009), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -403786,18 +368230,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [182968] = 5, + anon_sym_RBRACE, + [152130] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_QMARK2, - STATE(4705), 1, - sym_comment, - ACTIONS(1010), 2, + ACTIONS(2015), 1, sym__space, - anon_sym_DOT, - ACTIONS(1008), 13, + ACTIONS(7078), 1, + anon_sym_DOT2, + STATE(3883), 1, + aux_sym_cell_path_repeat1, + STATE(3977), 1, + sym_path, + STATE(4017), 1, + sym_comment, + STATE(4514), 1, + sym_cell_path, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403811,17 +368260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [182997] = 5, + [152167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - anon_sym_QMARK2, - STATE(4706), 1, + STATE(4018), 1, sym_comment, - ACTIONS(992), 2, - sym__space, - anon_sym_DOT, - ACTIONS(990), 13, + ACTIONS(2261), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2263), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403835,20 +368284,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183026] = 6, + anon_sym_LPAREN2, + [152196] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8002), 1, - anon_sym_DOT_DOT2, - STATE(4707), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4019), 1, sym_comment, - ACTIONS(2078), 2, + STATE(4061), 1, + sym_path, + STATE(4766), 1, + sym_cell_path, + ACTIONS(1947), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8004), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2072), 11, + ACTIONS(1945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403860,12 +368313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183057] = 3, - ACTIONS(251), 1, + [152232] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4708), 1, + STATE(4020), 1, sym_comment, - ACTIONS(7637), 16, + ACTIONS(1719), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1717), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403879,17 +368336,58 @@ 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, - [183082] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + [152260] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4709), 1, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(1883), 1, + anon_sym_DQUOTE, + ACTIONS(1887), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1889), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1897), 1, + sym_raw_string_begin, + ACTIONS(5045), 1, + anon_sym_LPAREN, + ACTIONS(7307), 1, + sym__unquoted_naive, + STATE(4021), 1, + sym_comment, + STATE(4426), 1, + sym__inter_single_quotes, + STATE(4441), 1, + sym__inter_double_quotes, + ACTIONS(1885), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3915), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4438), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [152308] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4022), 1, sym_comment, - ACTIONS(8006), 15, + STATE(4061), 1, + sym_path, + STATE(4753), 1, + sym_cell_path, + ACTIONS(1995), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1993), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403901,18 +368399,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_and2, - anon_sym_xor2, - anon_sym_or2, - [183109] = 4, - ACTIONS(251), 1, + [152344] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4710), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4023), 1, sym_comment, - ACTIONS(8006), 15, + STATE(4061), 1, + sym_path, + STATE(4676), 1, + sym_cell_path, + ACTIONS(1951), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403924,18 +368427,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_and2, - anon_sym_xor2, - anon_sym_or2, - [183136] = 4, - ACTIONS(251), 1, + [152380] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4668), 1, - aux_sym_shebang_repeat1, - STATE(4711), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4024), 1, sym_comment, - ACTIONS(8008), 15, + STATE(4061), 1, + sym_path, + STATE(4557), 1, + sym_cell_path, + ACTIONS(1999), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1997), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403947,18 +368455,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, - [183163] = 4, - ACTIONS(251), 1, + [152416] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4669), 1, - aux_sym_shebang_repeat1, - STATE(4712), 1, + ACTIONS(7309), 1, + aux_sym__immediate_decimal_token2, + STATE(4025), 1, sym_comment, - ACTIONS(8008), 15, + ACTIONS(1773), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403971,20 +368478,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_and2, - anon_sym_xor2, - anon_sym_or2, - [183190] = 4, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [152446] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4713), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4026), 1, sym_comment, - ACTIONS(1765), 4, + STATE(4061), 1, + sym_path, + STATE(4554), 1, + sym_cell_path, + ACTIONS(1975), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1763), 12, + ACTIONS(1973), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -403996,17 +368508,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, - [183217] = 5, - ACTIONS(251), 1, + [152482] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4714), 1, + STATE(4027), 1, sym_comment, - ACTIONS(8006), 14, + ACTIONS(986), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404018,19 +368530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [183246] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [152510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4715), 1, + STATE(4028), 1, sym_comment, - ACTIONS(8006), 14, + ACTIONS(982), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(980), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404042,21 +368554,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [183275] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [152538] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(8010), 1, + ACTIONS(2554), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, sym__newline, - STATE(4670), 1, + ACTIONS(7191), 1, + anon_sym_COLON, + ACTIONS(7313), 1, + anon_sym_DASH2, + STATE(4029), 1, + sym_comment, + STATE(4109), 1, + aux_sym_parameter_repeat1, + STATE(4990), 1, + aux_sym_parameter_repeat2, + STATE(6518), 1, aux_sym_shebang_repeat1, - STATE(4716), 1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7311), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [152582] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(4030), 1, sym_comment, - ACTIONS(8008), 13, + ACTIONS(1827), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404067,21 +368610,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [183306] = 6, + [152612] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(8010), 1, + STATE(4031), 1, + sym_comment, + ACTIONS(984), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(986), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4671), 1, - aux_sym_shebang_repeat1, - STATE(4717), 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_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152640] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4032), 1, + sym_comment, + ACTIONS(980), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(982), 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_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152668] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(4033), 1, sym_comment, - ACTIONS(8008), 13, + ACTIONS(2228), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404092,21 +368683,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_and2, anon_sym_xor2, anon_sym_or2, - [183337] = 6, - ACTIONS(251), 1, + [152698] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4718), 1, + ACTIONS(2121), 1, + sym__space, + ACTIONS(7315), 1, + anon_sym_DOT_DOT2, + STATE(4034), 1, sym_comment, - ACTIONS(8006), 13, + ACTIONS(7317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2115), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404119,13 +368711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [183368] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [152730] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4719), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4035), 1, sym_comment, - ACTIONS(7728), 16, + STATE(4061), 1, + sym_path, + STATE(4602), 1, + sym_cell_path, + ACTIONS(2003), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2001), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404137,23 +368740,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, - [183393] = 6, - ACTIONS(251), 1, + [152766] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4720), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4036), 1, sym_comment, - ACTIONS(8006), 13, + STATE(4061), 1, + sym_path, + STATE(4624), 1, + sym_cell_path, + ACTIONS(2007), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2005), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404165,14 +368768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [183424] = 3, - ACTIONS(251), 1, + [152802] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4721), 1, + STATE(4037), 1, sym_comment, - ACTIONS(7637), 16, + ACTIONS(2172), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2170), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404186,21 +368791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [183449] = 5, + anon_sym_DOT_DOT2, + [152830] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7835), 1, - aux_sym__immediate_decimal_token2, - STATE(4722), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4038), 1, sym_comment, - ACTIONS(1781), 3, + STATE(4061), 1, + sym_path, + STATE(4585), 1, + sym_cell_path, + ACTIONS(2011), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1779), 12, + ACTIONS(2009), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404212,21 +368820,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, - aux_sym_unquoted_token2, - [183478] = 7, - ACTIONS(251), 1, + [152866] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4672), 1, - aux_sym_shebang_repeat1, - STATE(4723), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4039), 1, sym_comment, - ACTIONS(8008), 12, + STATE(4061), 1, + sym_path, + STATE(4629), 1, + sym_cell_path, + ACTIONS(2015), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2013), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404237,14 +368848,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [183511] = 3, + [152902] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(4724), 1, + ACTIONS(4811), 1, + anon_sym_DOT2, + ACTIONS(7323), 1, + anon_sym_QMARK2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(4040), 1, + sym_comment, + STATE(4860), 1, + sym_cell_path, + ACTIONS(7319), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7321), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [152940] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4041), 1, sym_comment, - ACTIONS(7728), 16, + ACTIONS(2261), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2263), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404256,17 +368900,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_LPAREN2, + [152968] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(4042), 1, + sym_comment, + ACTIONS(2249), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [183536] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4725), 1, - sym_comment, - ACTIONS(7637), 16, + ACTIONS(2253), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404278,25 +368927,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, + [153000] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(4043), 1, + sym_comment, + ACTIONS(2257), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [183561] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2259), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4673), 1, - aux_sym_shebang_repeat1, - STATE(4726), 1, - sym_comment, - ACTIONS(8008), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404307,14 +368953,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [183594] = 3, + [153032] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(3464), 1, + anon_sym_DOLLAR, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(7325), 1, + anon_sym_DQUOTE, + ACTIONS(7329), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7331), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7333), 1, + sym__unquoted_naive, + STATE(2480), 1, + sym__inter_single_quotes, + STATE(2486), 1, + sym__inter_double_quotes, + STATE(4044), 1, + sym_comment, + ACTIONS(7327), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4865), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [153080] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4727), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(4045), 1, sym_comment, - ACTIONS(7728), 16, + ACTIONS(2216), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404326,19 +369009,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, - [183619] = 4, - ACTIONS(251), 1, + [153110] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4674), 1, - aux_sym_shebang_repeat1, - STATE(4728), 1, + STATE(4046), 1, sym_comment, - ACTIONS(8013), 15, + ACTIONS(2057), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2055), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404351,15 +369034,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_and2, - anon_sym_xor2, - anon_sym_or2, - [183646] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [153138] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4729), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4047), 1, sym_comment, - ACTIONS(8015), 16, + STATE(4061), 1, + sym_path, + STATE(4759), 1, + sym_cell_path, + ACTIONS(2031), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2029), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404371,17 +369064,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, - [183671] = 3, - ACTIONS(251), 1, + [153174] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4730), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4048), 1, sym_comment, - ACTIONS(8015), 16, + STATE(4061), 1, + sym_path, + STATE(4693), 1, + sym_cell_path, + ACTIONS(1979), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1977), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404393,19 +369092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [183696] = 4, - ACTIONS(251), 1, + [153210] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7934), 1, - anon_sym_and2, - STATE(4731), 1, + ACTIONS(7305), 1, + aux_sym__immediate_decimal_token2, + STATE(4049), 1, sym_comment, - ACTIONS(8015), 15, + ACTIONS(1737), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1735), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404419,16 +369116,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [183723] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [153240] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7940), 1, - anon_sym_and2, - STATE(4732), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4050), 1, sym_comment, - ACTIONS(8015), 15, + STATE(4061), 1, + sym_path, + STATE(4721), 1, + sym_cell_path, + ACTIONS(2019), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2017), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404440,20 +369145,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_xor2, - anon_sym_or2, - [183750] = 5, - ACTIONS(251), 1, + [153276] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7934), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(4051), 1, + sym_comment, + ACTIONS(1004), 3, anon_sym_and2, - ACTIONS(7936), 1, anon_sym_xor2, - STATE(4733), 1, - sym_comment, - ACTIONS(8015), 14, + anon_sym_or2, + ACTIONS(1000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404465,19 +369171,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_or2, - [183779] = 5, - ACTIONS(251), 1, + [153308] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7940), 1, - anon_sym_and2, - ACTIONS(7942), 1, - anon_sym_xor2, - STATE(4734), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4052), 1, sym_comment, - ACTIONS(8015), 14, + STATE(4061), 1, + sym_path, + STATE(4687), 1, + sym_cell_path, + ACTIONS(1983), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1981), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404489,15 +369199,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_or2, - [183808] = 3, - ACTIONS(251), 1, + [153344] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4735), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4053), 1, sym_comment, - ACTIONS(8015), 16, + STATE(4061), 1, + sym_path, + STATE(4749), 1, + sym_cell_path, + ACTIONS(1991), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1989), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404509,41 +369227,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [183833] = 3, + [153380] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4736), 1, + STATE(4054), 1, sym_comment, - ACTIONS(8015), 16, + ACTIONS(988), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(990), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [183858] = 4, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153408] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7934), 1, - anon_sym_and2, - STATE(4737), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4055), 1, sym_comment, - ACTIONS(8015), 15, + STATE(4061), 1, + sym_path, + STATE(4694), 1, + sym_cell_path, + ACTIONS(1987), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1985), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404555,18 +369279,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [183885] = 4, + [153444] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4675), 1, - aux_sym_shebang_repeat1, - STATE(4738), 1, + STATE(4056), 1, + sym_comment, + ACTIONS(1735), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 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, + [153472] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4057), 1, sym_comment, - ACTIONS(8013), 15, + STATE(4061), 1, + sym_path, + STATE(4651), 1, + sym_cell_path, + ACTIONS(1831), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1829), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404578,22 +369331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [183912] = 6, - ACTIONS(251), 1, + [153508] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(8017), 1, - sym__newline, - STATE(4677), 1, - aux_sym_shebang_repeat1, - STATE(4739), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4058), 1, sym_comment, - ACTIONS(8013), 13, + STATE(4061), 1, + sym_path, + STATE(4793), 1, + sym_cell_path, + ACTIONS(1967), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1965), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404604,17 +369359,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_xor2, - anon_sym_or2, - [183943] = 4, + [153544] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4740), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(4059), 1, sym_comment, - ACTIONS(7868), 15, + ACTIONS(1802), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404626,22 +369381,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_and2, anon_sym_xor2, anon_sym_or2, - [183970] = 6, + [153574] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(8017), 1, + STATE(4060), 1, + sym_comment, + ACTIONS(1727), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4678), 1, - aux_sym_shebang_repeat1, - STATE(4741), 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153602] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4061), 1, sym_comment, - ACTIONS(8013), 13, + ACTIONS(990), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(988), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404652,17 +369430,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_xor2, - anon_sym_or2, - [184001] = 4, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [153630] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4742), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4062), 1, sym_comment, - ACTIONS(7868), 15, + STATE(4657), 1, + sym_cell_path, + ACTIONS(1931), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1929), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404674,70 +369460,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [184028] = 5, + [153666] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4743), 1, + ACTIONS(1794), 1, + anon_sym_DASH2, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7335), 1, + anon_sym_DOT_DOT2, + STATE(4063), 1, sym_comment, - ACTIONS(7868), 14, + ACTIONS(7337), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [184057] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [153702] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4744), 1, + STATE(4064), 1, sym_comment, - ACTIONS(7868), 14, + ACTIONS(1786), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1788), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [184086] = 6, - ACTIONS(251), 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, + [153730] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4745), 1, + ACTIONS(2164), 1, + sym__space, + ACTIONS(7339), 1, + anon_sym_DOT_DOT2, + STATE(4065), 1, sym_comment, - ACTIONS(7868), 13, + ACTIONS(7341), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404750,21 +369537,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_or2, - [184117] = 7, - ACTIONS(251), 1, + anon_sym_RBRACE, + [153762] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4681), 1, - aux_sym_shebang_repeat1, - STATE(4746), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4066), 1, sym_comment, - ACTIONS(8013), 12, + STATE(4690), 1, + sym_cell_path, + ACTIONS(1935), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1933), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404775,22 +369566,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_or2, - [184150] = 7, - ACTIONS(251), 1, + [153798] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4682), 1, - aux_sym_shebang_repeat1, - STATE(4747), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4067), 1, sym_comment, - ACTIONS(8013), 12, + STATE(4720), 1, + sym_cell_path, + ACTIONS(7273), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7271), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -404801,16 +369594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [184183] = 4, - ACTIONS(251), 1, + [153834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4748), 1, + STATE(4068), 1, sym_comment, - ACTIONS(7868), 15, + ACTIONS(1020), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1018), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404823,17 +369616,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_and2, - anon_sym_xor2, - anon_sym_or2, - [184210] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [153862] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4749), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4069), 1, sym_comment, - ACTIONS(8006), 15, + STATE(4605), 1, + sym_cell_path, + ACTIONS(2023), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2021), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404845,18 +369646,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_and2, - anon_sym_xor2, - anon_sym_or2, - [184237] = 4, + [153898] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7940), 1, - anon_sym_and2, - STATE(4750), 1, + ACTIONS(4811), 1, + anon_sym_DOT2, + ACTIONS(7347), 1, + anon_sym_QMARK2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(4070), 1, + sym_comment, + STATE(4870), 1, + sym_cell_path, + ACTIONS(7343), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7345), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [153936] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + STATE(4071), 1, sym_comment, - ACTIONS(8015), 15, + ACTIONS(1737), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404868,20 +369695,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, - [184264] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [153964] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7934), 1, - anon_sym_and2, - ACTIONS(7936), 1, - anon_sym_xor2, - STATE(4751), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4072), 1, sym_comment, - ACTIONS(8015), 14, + STATE(4679), 1, + sym_cell_path, + ACTIONS(1971), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1969), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404893,19 +369727,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, + [154000] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2554), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + sym__newline, + ACTIONS(7191), 1, + anon_sym_COLON, + ACTIONS(7351), 1, + anon_sym_DASH2, + STATE(4073), 1, + sym_comment, + STATE(4079), 1, + aux_sym_parameter_repeat1, + STATE(4991), 1, + aux_sym_parameter_repeat2, + STATE(6518), 1, + aux_sym_shebang_repeat1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7349), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [184293] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154044] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7940), 1, - anon_sym_and2, - ACTIONS(7942), 1, - anon_sym_xor2, - STATE(4752), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + STATE(4074), 1, sym_comment, - ACTIONS(8015), 14, + ACTIONS(1729), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404917,17 +369779,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, - [184322] = 4, + anon_sym_LPAREN2, + [154072] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4753), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(4075), 1, sym_comment, - ACTIONS(7868), 15, + ACTIONS(1665), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404940,19 +369803,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, - [184349] = 5, + [154100] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4754), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(4076), 1, sym_comment, - ACTIONS(7868), 14, + ACTIONS(1773), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404964,19 +369827,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_and2, anon_sym_xor2, anon_sym_or2, - [184378] = 5, + anon_sym_LPAREN2, + [154128] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4755), 1, + ACTIONS(1786), 1, + aux_sym_unquoted_token2, + STATE(4077), 1, sym_comment, - ACTIONS(7868), 14, + ACTIONS(1788), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -404988,21 +369851,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_and2, anon_sym_xor2, anon_sym_or2, - [184407] = 6, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [154156] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(4078), 1, + sym_comment, + ACTIONS(2241), 3, anon_sym_and2, - ACTIONS(7906), 1, anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4756), 1, - sym_comment, - ACTIONS(7868), 13, + anon_sym_or2, + ACTIONS(2245), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405014,16 +369881,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [184438] = 4, + [154188] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(1800), 1, + ACTIONS(2554), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, + sym__newline, + ACTIONS(7191), 1, + anon_sym_COLON, + ACTIONS(7355), 1, + anon_sym_DASH2, + STATE(4079), 1, + sym_comment, + STATE(4109), 1, + aux_sym_parameter_repeat1, + STATE(4968), 1, + aux_sym_parameter_repeat2, + STATE(6518), 1, aux_sym_shebang_repeat1, - STATE(4757), 1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7353), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154232] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(2099), 1, + anon_sym_DQUOTE, + ACTIONS(2103), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2105), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2113), 1, + sym_raw_string_begin, + ACTIONS(5047), 1, + anon_sym_LPAREN, + ACTIONS(7357), 1, + sym__unquoted_naive, + STATE(4080), 1, + sym_comment, + STATE(4590), 1, + sym__inter_single_quotes, + STATE(4591), 1, + sym__inter_double_quotes, + ACTIONS(2101), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3998), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4792), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [154280] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7361), 1, + sym__space, + ACTIONS(7363), 1, + anon_sym_DOT_DOT2, + STATE(4081), 1, sym_comment, - ACTIONS(8006), 15, + ACTIONS(7365), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7359), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405036,21 +369972,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, - [184465] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [154312] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4758), 1, + ACTIONS(7367), 1, + anon_sym_DOT, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token2, + STATE(4082), 1, sym_comment, - ACTIONS(7868), 13, + ACTIONS(1737), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1735), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405062,19 +369998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [154344] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4083), 1, + sym_comment, + ACTIONS(958), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(960), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [184496] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154372] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4759), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4084), 1, sym_comment, - ACTIONS(1054), 4, + STATE(4728), 1, + sym_cell_path, + ACTIONS(1939), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1052), 12, + ACTIONS(1937), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405086,63 +370051,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [184523] = 4, + [154408] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4685), 1, - aux_sym_shebang_repeat1, - STATE(4760), 1, + STATE(4085), 1, sym_comment, - ACTIONS(8008), 15, + ACTIONS(976), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(978), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [184550] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154436] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4686), 1, - aux_sym_shebang_repeat1, - STATE(4761), 1, + STATE(4086), 1, sym_comment, - ACTIONS(8008), 15, + ACTIONS(972), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(974), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [184577] = 5, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154464] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4762), 1, + ACTIONS(1000), 1, + sym__space, + ACTIONS(7363), 1, + anon_sym_DOT_DOT2, + STATE(4087), 1, sym_comment, - ACTIONS(8006), 14, + ACTIONS(7365), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405155,69 +370124,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [184606] = 5, + anon_sym_RBRACE, + [154496] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4763), 1, + STATE(4088), 1, sym_comment, - ACTIONS(8006), 14, + ACTIONS(962), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(964), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [184635] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154524] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(8010), 1, + ACTIONS(2554), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, sym__newline, - STATE(4687), 1, - aux_sym_shebang_repeat1, - STATE(4764), 1, + ACTIONS(7191), 1, + anon_sym_COLON, + ACTIONS(7373), 1, + anon_sym_DASH2, + STATE(4089), 1, sym_comment, - ACTIONS(8008), 13, - anon_sym_SEMI, + STATE(4109), 1, + aux_sym_parameter_repeat1, + STATE(4976), 1, + aux_sym_parameter_repeat2, + STATE(6518), 1, + aux_sym_shebang_repeat1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7371), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [184666] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154568] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(8010), 1, - sym__newline, - STATE(4688), 1, - aux_sym_shebang_repeat1, - STATE(4765), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4090), 1, sym_comment, - ACTIONS(8008), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7279), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405228,21 +370203,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, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [184697] = 6, + [154598] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(3440), 1, + anon_sym_DOLLAR, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(7375), 1, + anon_sym_DQUOTE, + ACTIONS(7379), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7381), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7383), 1, + sym__unquoted_naive, + STATE(2138), 1, + sym__inter_single_quotes, + STATE(2139), 1, + sym__inter_double_quotes, + STATE(4091), 1, + sym_comment, + ACTIONS(7377), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4710), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [154646] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_and2, - ACTIONS(7906), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4766), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 1, + anon_sym_DASH2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(7385), 1, + anon_sym_DOT_DOT2, + STATE(4092), 1, + sym_comment, + ACTIONS(7387), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1827), 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, + [154682] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4093), 1, sym_comment, - ACTIONS(8006), 13, + STATE(4729), 1, + sym_cell_path, + ACTIONS(7297), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7295), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405254,20 +370296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [184728] = 6, - ACTIONS(251), 1, + [154718] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7870), 1, - anon_sym_and2, - ACTIONS(7872), 1, - anon_sym_xor2, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4767), 1, + STATE(4094), 1, sym_comment, - ACTIONS(8006), 13, + ACTIONS(2176), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2174), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405280,21 +370318,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, - [184759] = 7, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [154746] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4689), 1, - aux_sym_shebang_repeat1, - STATE(4768), 1, + ACTIONS(2148), 1, + sym__space, + ACTIONS(7389), 1, + anon_sym_DOT_DOT2, + STATE(4095), 1, sym_comment, - ACTIONS(8008), 12, + ACTIONS(7391), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405306,21 +370345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [184792] = 7, - ACTIONS(251), 1, + anon_sym_RBRACE, + [154778] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4690), 1, - aux_sym_shebang_repeat1, - STATE(4769), 1, + ACTIONS(2156), 1, + sym__space, + ACTIONS(7393), 1, + anon_sym_DOT_DOT2, + STATE(4096), 1, sym_comment, - ACTIONS(8008), 12, + ACTIONS(7395), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2150), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405332,15 +370371,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, - [184825] = 4, + anon_sym_RBRACE, + [154810] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4691), 1, - aux_sym_shebang_repeat1, - STATE(4770), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(4097), 1, sym_comment, - ACTIONS(8013), 15, + ACTIONS(2222), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405352,18 +370394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [184852] = 4, + [154840] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4693), 1, - aux_sym_shebang_repeat1, - STATE(4771), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4098), 1, sym_comment, - ACTIONS(8013), 15, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7279), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405375,21 +370419,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_and2, anon_sym_xor2, anon_sym_or2, - [184879] = 4, + [154870] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4772), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4099), 1, sym_comment, - ACTIONS(2125), 4, + STATE(4744), 1, + sym_cell_path, + ACTIONS(2027), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2123), 12, + ACTIONS(2025), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405401,19 +370450,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, - [184906] = 5, + [154906] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8020), 1, - aux_sym__immediate_decimal_token2, - STATE(4773), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4100), 1, sym_comment, - ACTIONS(1801), 3, + STATE(4797), 1, + sym_cell_path, + ACTIONS(2035), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1799), 12, + ACTIONS(2033), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405425,19 +370478,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, - aux_sym_unquoted_token2, - [184935] = 6, + [154942] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(8017), 1, - sym__newline, - STATE(4696), 1, - aux_sym_shebang_repeat1, - STATE(4774), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4101), 1, sym_comment, - ACTIONS(8013), 13, + STATE(7261), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7279), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405448,21 +370500,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [184966] = 6, + [154972] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(8017), 1, + ACTIONS(2554), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, + anon_sym_EQ, + ACTIONS(7189), 1, sym__newline, - STATE(4697), 1, + ACTIONS(7191), 1, + anon_sym_COLON, + ACTIONS(7399), 1, + anon_sym_DASH2, + STATE(4089), 1, + aux_sym_parameter_repeat1, + STATE(4102), 1, + sym_comment, + STATE(4989), 1, + aux_sym_parameter_repeat2, + STATE(6518), 1, aux_sym_shebang_repeat1, - STATE(4775), 1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7397), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [155016] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, + aux_sym__immediate_decimal_token2, + STATE(4103), 1, sym_comment, - ACTIONS(8013), 13, + ACTIONS(1729), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1727), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405473,23 +370560,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_xor2, - anon_sym_or2, - [184997] = 7, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [155048] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(7881), 1, - anon_sym_and2, - ACTIONS(7885), 1, - anon_sym_xor2, - STATE(4700), 1, - aux_sym_shebang_repeat1, - STATE(4776), 1, + ACTIONS(7134), 1, + anon_sym_DOT2, + STATE(3924), 1, + aux_sym_cell_path_repeat1, + STATE(4061), 1, + sym_path, + STATE(4104), 1, sym_comment, - ACTIONS(8013), 12, + STATE(4764), 1, + sym_cell_path, + ACTIONS(1959), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1957), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405500,22 +370589,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_or2, - [185030] = 7, + [155084] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + STATE(4105), 1, + sym_comment, + ACTIONS(1771), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7883), 1, - anon_sym_and2, - ACTIONS(7887), 1, - anon_sym_xor2, - STATE(4701), 1, - aux_sym_shebang_repeat1, - STATE(4777), 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155112] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4106), 1, sym_comment, - ACTIONS(8013), 12, + ACTIONS(7175), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405527,21 +370631,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [185063] = 6, - ACTIONS(3), 1, + [155137] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7928), 1, - anon_sym_DOT_DOT2, - STATE(4778), 1, + ACTIONS(2013), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4107), 1, sym_comment, - ACTIONS(7793), 2, - ts_builtin_sym_end, + STATE(4623), 1, + sym_cell_path, + ACTIONS(2015), 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, + [155172] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1000), 1, sym__space, - ACTIONS(7930), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7791), 11, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(4108), 1, + sym_comment, + ACTIONS(1004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405553,49 +370685,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185094] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155203] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1478), 1, - sym_cell_path, - STATE(1733), 1, + ACTIONS(7407), 1, + anon_sym_EQ, + ACTIONS(7410), 1, + sym__newline, + ACTIONS(7413), 1, + anon_sym_COLON, + ACTIONS(7416), 1, + anon_sym_DASH2, + STATE(6518), 1, + aux_sym_shebang_repeat1, + STATE(4109), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(4833), 2, + sym_param_type, + sym_param_value, + ACTIONS(7405), 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, + [155240] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2017), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, aux_sym_cell_path_repeat1, - STATE(1898), 1, + STATE(4054), 1, sym_path, - STATE(4779), 1, + STATE(4110), 1, sym_comment, - ACTIONS(969), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(971), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [185129] = 8, + STATE(4682), 1, + sym_cell_path, + ACTIONS(2019), 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, + [155275] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(2021), 1, anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4780), 1, - sym_comment, - STATE(4828), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, aux_sym_cell_path_repeat1, - STATE(5121), 1, - sym_cell_path, - STATE(5312), 1, + STATE(4054), 1, sym_path, - ACTIONS(1947), 11, + STATE(4111), 1, + sym_comment, + STATE(4698), 1, + sym_cell_path, + ACTIONS(2023), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -405607,22 +370769,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185164] = 8, + [155310] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(2025), 1, anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4781), 1, - sym_comment, - STATE(4828), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, aux_sym_cell_path_repeat1, - STATE(5163), 1, - sym_cell_path, - STATE(5312), 1, + STATE(4054), 1, sym_path, - ACTIONS(1951), 11, + STATE(4112), 1, + sym_comment, + STATE(4731), 1, + sym_cell_path, + ACTIONS(2027), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -405634,14 +370796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185199] = 4, - ACTIONS(251), 1, + [155345] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4740), 1, - aux_sym_shebang_repeat1, - STATE(4782), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + sym__space, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(4113), 1, sym_comment, - ACTIONS(7993), 15, + ACTIONS(2224), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405654,18 +370820,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [185226] = 4, + anon_sym_RBRACE, + [155376] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4783), 1, - sym_comment, - ACTIONS(1763), 2, + ACTIONS(2029), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1765), 13, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4114), 1, + sym_comment, + STATE(4740), 1, + sym_cell_path, + ACTIONS(2031), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -405677,17 +370848,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [185252] = 4, + [155411] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7418), 1, + anon_sym_DOT, + ACTIONS(7420), 1, + aux_sym__immediate_decimal_token2, + STATE(4115), 1, + sym_comment, + ACTIONS(1735), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 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, + [155442] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4784), 1, + ACTIONS(7422), 1, + anon_sym_DOT_DOT2, + STATE(4116), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(7361), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1018), 13, + ACTIONS(7424), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405699,17 +370898,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, - [185278] = 4, + [155473] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4785), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(2176), 4, + ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1014), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2174), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405721,42 +370920,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_RPAREN, - anon_sym_RBRACE, - [185304] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8024), 1, - anon_sym_DASH2, - ACTIONS(8026), 1, anon_sym_DOT_DOT2, - STATE(4786), 1, + [155500] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4118), 1, sym_comment, - ACTIONS(8028), 2, + ACTIONS(1020), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(8022), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1018), 12, 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, - [185334] = 5, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [155527] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - ACTIONS(7487), 1, - aux_sym_unquoted_token2, - STATE(4787), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4119), 1, sym_comment, - ACTIONS(1687), 13, + ACTIONS(7426), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405769,14 +370964,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [185362] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155554] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4788), 1, + ACTIONS(1957), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4120), 1, sym_comment, - ACTIONS(7637), 15, - ts_builtin_sym_end, + STATE(4943), 1, + sym_cell_path, + ACTIONS(1959), 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, + [155589] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4121), 1, + sym_comment, + ACTIONS(7428), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405788,22 +371013,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_and2, anon_sym_xor2, anon_sym_or2, - [185386] = 6, + [155616] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(2251), 1, anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(4789), 1, - sym_comment, - ACTIONS(1848), 2, - ts_builtin_sym_end, + ACTIONS(2253), 1, sym__space, - ACTIONS(1840), 11, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(4122), 1, + sym_comment, + ACTIONS(2249), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405815,16 +371040,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, - [185416] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155647] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4790), 1, - sym_comment, - ACTIONS(988), 3, - ts_builtin_sym_end, + ACTIONS(4898), 1, sym__space, - anon_sym_DOT, - ACTIONS(986), 12, + ACTIONS(7430), 1, + anon_sym_EQ2, + ACTIONS(7432), 1, + sym_short_flag_identifier, + STATE(4123), 1, + sym_comment, + ACTIONS(4900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405836,16 +371065,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [185442] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155678] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_and2, - STATE(4791), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + ACTIONS(2259), 1, + sym__space, + STATE(4124), 1, sym_comment, - ACTIONS(8015), 14, - ts_builtin_sym_end, + ACTIONS(2257), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -405857,45 +371090,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_xor2, - anon_sym_or2, - [185468] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155709] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8032), 1, - anon_sym_DOT, - ACTIONS(8035), 1, - aux_sym__immediate_decimal_token2, - STATE(4792), 1, + ACTIONS(1949), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4125), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1671), 11, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [185498] = 5, + STATE(4942), 1, + sym_cell_path, + ACTIONS(1951), 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, + [155744] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8035), 1, - aux_sym__immediate_decimal_token2, - STATE(4793), 1, + ACTIONS(4811), 1, + anon_sym_DOT2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(4126), 1, sym_comment, - ACTIONS(1669), 2, + STATE(4857), 1, + sym_cell_path, + ACTIONS(7434), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1671), 12, + ACTIONS(7436), 10, anon_sym_in2, - anon_sym_QMARK2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, @@ -405905,89 +371146,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_DOT, - [185526] = 17, + [155779] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(8041), 1, - anon_sym_RBRACK, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4794), 1, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + ACTIONS(7444), 1, + anon_sym_or2, + STATE(4127), 1, sym_comment, - STATE(4802), 1, + STATE(4207), 1, aux_sym_shebang_repeat1, - STATE(5293), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [185578] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8051), 1, + ACTIONS(7438), 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, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4795), 1, - sym_comment, - STATE(4803), 1, - aux_sym_shebang_repeat1, - STATE(5295), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [185630] = 5, + [155814] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8053), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(7446), 1, anon_sym_and2, - ACTIONS(8055), 1, + ACTIONS(7448), 1, anon_sym_xor2, - STATE(4796), 1, + ACTIONS(7450), 1, + anon_sym_or2, + STATE(4128), 1, sym_comment, - ACTIONS(8015), 13, - ts_builtin_sym_end, - sym__newline, + STATE(4234), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -405998,18 +371199,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_or2, - [185658] = 5, + anon_sym_RPAREN, + [155849] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_and2, - ACTIONS(8057), 1, - anon_sym_xor2, - STATE(4797), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4129), 1, sym_comment, - ACTIONS(8015), 13, - ts_builtin_sym_end, + ACTIONS(7428), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406021,111 +371219,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [185686] = 6, + [155876] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1034), 1, - anon_sym_DASH2, - ACTIONS(8026), 1, - anon_sym_DOT_DOT2, - STATE(4798), 1, + STATE(4130), 1, sym_comment, - ACTIONS(8028), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1036), 11, - anon_sym_EQ, - sym_identifier, + STATE(4178), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 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, - [185716] = 17, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155903] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8059), 1, - anon_sym_RBRACK, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4799), 1, + STATE(4131), 1, sym_comment, - STATE(5065), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5553), 1, + STATE(4180), 1, aux_sym_shebang_repeat1, - STATE(5843), 1, - sym_parameter, - [185768] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, + ACTIONS(7452), 15, sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8061), 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, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4800), 1, - sym_comment, - STATE(5077), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5553), 1, - aux_sym_shebang_repeat1, - STATE(5843), 1, - sym_parameter, - [185820] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155930] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4801), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4132), 1, sym_comment, - ACTIONS(1002), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1000), 12, + ACTIONS(7426), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406137,87 +371288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [185846] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8063), 1, - anon_sym_RBRACK, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4802), 1, - sym_comment, - STATE(5073), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5553), 1, - aux_sym_shebang_repeat1, - STATE(5843), 1, - sym_parameter, - [185898] = 17, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155957] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8065), 1, - anon_sym_RPAREN, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4803), 1, - sym_comment, - STATE(5074), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5553), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(5843), 1, - sym_parameter, - [185950] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4804), 1, + STATE(4133), 1, sym_comment, - ACTIONS(1781), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1779), 12, + ACTIONS(7428), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406229,20 +371313,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, - aux_sym_unquoted_token2, - [185976] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [155986] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8067), 1, - sym_long_flag_identifier, - ACTIONS(8069), 1, - anon_sym_EQ2, - STATE(4805), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4134), 1, sym_comment, - ACTIONS(5010), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5012), 11, + ACTIONS(7428), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406254,13 +371337,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, - [186006] = 3, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [156015] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4806), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4135), 1, sym_comment, - ACTIONS(8015), 15, - ts_builtin_sym_end, + ACTIONS(7426), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406272,48 +371361,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [186030] = 14, + [156044] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8071), 1, - sym_identifier, - ACTIONS(8076), 1, - anon_sym_DOLLAR, - ACTIONS(8079), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8082), 1, - anon_sym_DASH_DASH, - ACTIONS(8085), 1, - anon_sym_DASH2, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - STATE(4807), 2, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7458), 1, + sym__newline, + STATE(4136), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(8074), 3, + STATE(4181), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186076] = 3, + anon_sym_xor2, + anon_sym_or2, + [156075] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4808), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4137), 1, sym_comment, - ACTIONS(7728), 15, - ts_builtin_sym_end, + ACTIONS(7426), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406325,16 +371410,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [186100] = 3, - ACTIONS(251), 1, + [156104] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4809), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(7463), 1, + sym__space, + STATE(4138), 1, sym_comment, - ACTIONS(8015), 15, - ts_builtin_sym_end, + STATE(7281), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406346,22 +371436,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [186124] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [156135] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4811), 1, + anon_sym_DOT2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1409), 1, + sym_cell_path, + STATE(1510), 1, + sym_path, + STATE(4139), 1, + sym_comment, + ACTIONS(935), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(937), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [156170] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7601), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8088), 1, - anon_sym_DOT, - STATE(4810), 1, + ACTIONS(7465), 1, + anon_sym_DOT_DOT2, + STATE(4140), 1, sym_comment, - ACTIONS(1781), 2, + ACTIONS(2121), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1779), 11, + ACTIONS(7467), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2115), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406373,16 +371490,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, - [186154] = 4, + [156201] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8053), 1, + ACTIONS(7446), 1, anon_sym_and2, - STATE(4811), 1, - sym_comment, - ACTIONS(8015), 14, - ts_builtin_sym_end, + ACTIONS(7458), 1, sym__newline, + STATE(4141), 1, + sym_comment, + STATE(4182), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406393,20 +371512,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, - [186180] = 6, - ACTIONS(3), 1, + [156232] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8092), 1, - sym__space, - ACTIONS(8094), 1, - aux_sym_record_entry_token1, - STATE(4812), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4142), 1, sym_comment, - STATE(4927), 1, - aux_sym_command_repeat1, - ACTIONS(8090), 12, + ACTIONS(7428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406418,17 +371538,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, - [186210] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [156263] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8098), 1, - sym__space, - STATE(4813), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4143), 1, sym_comment, - STATE(4815), 1, - aux_sym_command_repeat1, - ACTIONS(8096), 13, + ACTIONS(7428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406441,21 +371564,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, - [186238] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [156294] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8100), 1, - anon_sym_EQ2, - ACTIONS(8102), 1, - sym_short_flag_identifier, - STATE(4814), 1, - sym_comment, - ACTIONS(5027), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5029), 11, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4144), 1, + sym_comment, + STATE(4183), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406466,16 +371589,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, - [186268] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [156327] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8106), 1, - sym__space, - STATE(4815), 2, - sym_comment, - aux_sym_command_repeat1, - ACTIONS(8104), 13, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4145), 1, + sym_comment, + STATE(4184), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406487,19 +371616,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, - [186294] = 5, - ACTIONS(3), 1, + anon_sym_or2, + [156360] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8109), 1, - anon_sym_QMARK2, - STATE(4816), 1, + STATE(4146), 1, sym_comment, - ACTIONS(1010), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1008), 11, + STATE(4185), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406511,18 +371636,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, - [186322] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156387] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8111), 1, - anon_sym_QMARK2, - STATE(4817), 1, + STATE(4147), 1, sym_comment, - ACTIONS(992), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(990), 11, + STATE(4186), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406534,16 +371659,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, - [186350] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156414] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8030), 1, + ACTIONS(7440), 1, anon_sym_and2, - STATE(4818), 1, - sym_comment, - ACTIONS(8015), 14, - ts_builtin_sym_end, + ACTIONS(7475), 1, sym__newline, + STATE(4148), 1, + sym_comment, + STATE(4190), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406554,42 +371685,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, - [186376] = 5, + [156445] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token2, - STATE(4819), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1713), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [186404] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4820), 1, - sym_comment, - ACTIONS(1006), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1004), 12, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7475), 1, sym__newline, + STATE(4149), 1, + sym_comment, + STATE(4192), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406600,18 +371710,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_QMARK2, - [186430] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [156476] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8053), 1, + ACTIONS(7454), 1, anon_sym_and2, - ACTIONS(8055), 1, + ACTIONS(7469), 1, anon_sym_xor2, - STATE(4821), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4150), 1, sym_comment, - ACTIONS(8015), 13, - ts_builtin_sym_end, + ACTIONS(7426), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406623,19 +371736,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_or2, - [186458] = 5, + [156507] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8030), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(7440), 1, anon_sym_and2, - ACTIONS(8057), 1, + ACTIONS(7442), 1, anon_sym_xor2, - STATE(4822), 1, + STATE(4151), 1, sym_comment, - ACTIONS(8015), 13, - ts_builtin_sym_end, - sym__newline, + STATE(4195), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406646,69 +371762,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_or2, - [186486] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8115), 1, - anon_sym_DOT, - ACTIONS(8117), 1, - aux_sym__immediate_decimal_token2, - STATE(4823), 1, - sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186516] = 6, + anon_sym_or2, + [156540] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8119), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8121), 1, - aux_sym__immediate_decimal_token2, - STATE(4824), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 10, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [186546] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8053), 1, + ACTIONS(7446), 1, anon_sym_and2, - ACTIONS(8055), 1, + ACTIONS(7448), 1, anon_sym_xor2, - ACTIONS(8123), 1, - anon_sym_or2, - STATE(4825), 1, + STATE(4152), 1, sym_comment, - ACTIONS(7932), 12, - ts_builtin_sym_end, - sym__newline, + STATE(4196), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406719,19 +371788,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, - [186576] = 6, + anon_sym_RPAREN, + anon_sym_or2, + [156573] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_and2, - ACTIONS(8057), 1, - anon_sym_xor2, - ACTIONS(8125), 1, - anon_sym_or2, - STATE(4826), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4153), 1, sym_comment, - ACTIONS(7932), 12, - ts_builtin_sym_end, + ACTIONS(7428), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406743,19 +371809,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, - [186606] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156600] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(4827), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4154), 1, sym_comment, - ACTIONS(2270), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2266), 11, + ACTIONS(7428), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406767,38 +371832,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, - [186636] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_DASH2, - ACTIONS(7874), 1, - anon_sym_DOT, - STATE(4828), 1, - sym_comment, - STATE(4834), 1, - aux_sym_cell_path_repeat1, - STATE(5312), 1, - sym_path, - ACTIONS(984), 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, - [186668] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156627] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4829), 1, + STATE(4155), 1, sym_comment, - ACTIONS(7319), 15, - ts_builtin_sym_end, + STATE(4201), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406810,16 +371855,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, - [186692] = 3, + [156654] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4830), 1, + STATE(4156), 1, sym_comment, - ACTIONS(7637), 15, - ts_builtin_sym_end, + STATE(4202), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406831,43 +371878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [186716] = 6, + [156681] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8026), 1, - anon_sym_DOT_DOT2, - ACTIONS(8129), 1, - anon_sym_DASH2, - STATE(4831), 1, - sym_comment, - ACTIONS(8028), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8127), 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, - [186746] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4832), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4157), 1, sym_comment, - ACTIONS(998), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(996), 12, + ACTIONS(7428), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406879,66 +371903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [186772] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4833), 1, - sym_comment, - ACTIONS(1052), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1054), 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, - [186798] = 6, + anon_sym_xor2, + anon_sym_or2, + [156710] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DASH2, - ACTIONS(8131), 1, - anon_sym_DOT, - STATE(5312), 1, - sym_path, - STATE(4834), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 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, - [186828] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(4835), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4158), 1, sym_comment, - ACTIONS(2294), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2292), 11, + ACTIONS(7428), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -406950,14 +371927,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, - [186858] = 3, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [156739] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4836), 1, - sym_comment, - ACTIONS(7637), 15, - ts_builtin_sym_end, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7458), 1, sym__newline, + STATE(4159), 1, + sym_comment, + STATE(4297), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406968,17 +371952,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [186882] = 3, + [156770] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4837), 1, - sym_comment, - ACTIONS(8015), 15, - ts_builtin_sym_end, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7458), 1, sym__newline, + STATE(4160), 1, + sym_comment, + STATE(4204), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -406989,18 +371977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [186906] = 4, - ACTIONS(3), 1, + [156801] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4838), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4161), 1, sym_comment, - ACTIONS(5124), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5126), 13, + ACTIONS(7428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407013,13 +372004,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, - [186932] = 3, + anon_sym_or2, + [156832] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4839), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4162), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(7428), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407032,62 +372029,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_else, - anon_sym_RBRACE, - anon_sym_catch, - [186956] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8134), 1, - aux_sym__immediate_decimal_token2, - STATE(4840), 1, - sym_comment, - ACTIONS(1799), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 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, - [186984] = 4, + anon_sym_or2, + [156863] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4841), 1, - sym_comment, - ACTIONS(2123), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2125), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(3876), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [187010] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4842), 1, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4163), 1, sym_comment, - ACTIONS(8015), 15, - ts_builtin_sym_end, - sym__newline, + STATE(4205), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -407098,54 +372054,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_RPAREN, anon_sym_or2, - [187034] = 17, + [156896] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8136), 1, - anon_sym_RBRACK, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4799), 1, - aux_sym_shebang_repeat1, - STATE(4843), 1, - sym_comment, - STATE(5269), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [187086] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4844), 1, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4164), 1, sym_comment, - ACTIONS(5136), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5138), 13, - sym__newline, + STATE(4206), 1, + aux_sym_shebang_repeat1, + ACTIONS(7452), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -407157,20 +372081,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, - [187112] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [156929] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(4845), 1, + STATE(4165), 1, sym_comment, - ACTIONS(2258), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2254), 11, + STATE(4209), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407182,16 +372101,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, - [187142] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156956] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8098), 1, - sym__space, - STATE(4846), 1, + STATE(4166), 1, sym_comment, - STATE(4860), 1, - aux_sym_command_repeat1, - ACTIONS(8090), 13, + STATE(4212), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407204,17 +372125,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, - [187170] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156983] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4847), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4167), 1, sym_comment, - ACTIONS(1773), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1771), 12, + ACTIONS(7426), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407226,20 +372151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [187196] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [157014] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(4848), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4168), 1, sym_comment, - ACTIONS(1036), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1034), 11, + ACTIONS(7426), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407251,20 +372172,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, - [187226] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157041] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(4849), 1, - sym_comment, - ACTIONS(1838), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1830), 11, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7475), 1, sym__newline, + STATE(4169), 1, + sym_comment, + STATE(4219), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -407275,22 +372198,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, - [187256] = 7, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [157072] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8138), 1, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7475), 1, sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4850), 1, + STATE(4170), 1, sym_comment, - STATE(5492), 1, + STATE(4222), 1, aux_sym_shebang_repeat1, - ACTIONS(8141), 3, + ACTIONS(7473), 13, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -407300,17 +372223,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, - [187288] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [157103] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8098), 1, - sym__space, - STATE(4813), 1, - aux_sym_command_repeat1, - STATE(4851), 1, - sym_comment, - ACTIONS(8143), 13, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4171), 1, + sym_comment, + STATE(4226), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -407322,21 +372251,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, - [187316] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [157136] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4852), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4992), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4994), 11, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4172), 1, + sym_comment, + STATE(4227), 1, + aux_sym_shebang_repeat1, + ACTIONS(7473), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -407347,19 +372276,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, - [187346] = 6, + anon_sym_RPAREN, + anon_sym_or2, + [157169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4853), 1, + STATE(4173), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5004), 2, - ts_builtin_sym_end, + ACTIONS(1737), 2, sym__space, - ACTIONS(5006), 11, + anon_sym_LPAREN2, + ACTIONS(1735), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407371,126 +372298,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, - [187376] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2090), 1, - anon_sym_DASH2, - ACTIONS(8145), 1, - anon_sym_DOT_DOT2, - STATE(4854), 1, - sym_comment, - ACTIONS(8147), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2096), 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, - [187406] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - anon_sym_DASH2, - ACTIONS(8149), 1, - anon_sym_DOT_DOT2, - STATE(4855), 1, - sym_comment, - ACTIONS(8151), 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, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187436] = 17, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [157196] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8153), 1, - anon_sym_RPAREN, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(4856), 1, - sym_comment, - STATE(5305), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [187488] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_DASH2, - ACTIONS(8155), 1, - anon_sym_DOT_DOT2, - STATE(4857), 1, - sym_comment, - ACTIONS(8157), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2137), 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, - [187518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(4858), 1, + STATE(4174), 1, sym_comment, - ACTIONS(2230), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2226), 11, + ACTIONS(7426), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407502,13 +372320,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, - [187548] = 3, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157223] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4859), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4175), 1, sym_comment, - ACTIONS(7728), 15, - ts_builtin_sym_end, + ACTIONS(7426), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407520,19 +372345,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [187572] = 5, - ACTIONS(3), 1, + [157252] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8098), 1, - sym__space, - STATE(4815), 1, - aux_sym_command_repeat1, - STATE(4860), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4176), 1, sym_comment, - ACTIONS(8159), 13, + ACTIONS(7426), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407545,20 +372370,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [187600] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [157281] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, + ACTIONS(4811), 1, + anon_sym_DOT2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(4177), 1, + sym_comment, STATE(4861), 1, + sym_cell_path, + ACTIONS(7478), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7480), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [157316] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4178), 1, sym_comment, - ACTIONS(2274), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2272), 11, + ACTIONS(7482), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407570,19 +372418,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, - [187630] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157343] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(4862), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4179), 1, sym_comment, - ACTIONS(2238), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2234), 11, + ACTIONS(7426), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407594,13 +372445,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, - [187660] = 3, + anon_sym_RPAREN, + anon_sym_or2, + [157374] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4863), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4180), 1, sym_comment, - ACTIONS(7728), 15, - ts_builtin_sym_end, + ACTIONS(7482), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407612,46 +372466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [187684] = 6, + [157401] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8026), 1, - anon_sym_DOT_DOT2, - ACTIONS(8163), 1, - anon_sym_DASH2, - STATE(4864), 1, - sym_comment, - ACTIONS(8028), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8161), 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, - [187714] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4865), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4181), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5063), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5065), 11, + ACTIONS(7482), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407663,19 +372491,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, - [187744] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [157430] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4866), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4182), 1, sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4986), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4988), 11, + ACTIONS(7482), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407687,16 +372515,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, - [187774] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [157459] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4867), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4183), 1, sym_comment, - ACTIONS(1801), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1799), 12, + ACTIONS(7482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407708,23 +372541,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, - aux_sym_unquoted_token2, - [187800] = 7, + anon_sym_RPAREN, + anon_sym_or2, + [157490] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8165), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4868), 1, - sym_comment, - STATE(5492), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(8168), 3, + STATE(4184), 1, + sym_comment, + ACTIONS(7482), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -407734,95 +372566,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, - [187832] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4869), 1, - sym_comment, - ACTIONS(2082), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2084), 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, - [187858] = 4, + anon_sym_or2, + [157521] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4870), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4185), 1, sym_comment, - ACTIONS(2086), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2088), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7484), 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, - [187884] = 17, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157548] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8170), 1, - anon_sym_PIPE, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4871), 1, - sym_comment, - STATE(5083), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5553), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(5843), 1, - sym_parameter, - [187936] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4872), 1, + STATE(4186), 1, sym_comment, - ACTIONS(1820), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1818), 12, + ACTIONS(7484), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407834,19 +372610,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, - aux_sym_unquoted_token2, - [187962] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8092), 1, - sym__space, - ACTIONS(8172), 1, - aux_sym_record_entry_token1, - STATE(4873), 1, + STATE(4187), 1, sym_comment, - STATE(4927), 1, - aux_sym_command_repeat1, - ACTIONS(8090), 12, + ACTIONS(1729), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1727), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407858,16 +372634,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, - [187992] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [157602] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4874), 1, + STATE(4119), 1, + aux_sym_shebang_repeat1, + STATE(4188), 1, sym_comment, - ACTIONS(1024), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1022), 13, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407880,20 +372657,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, - [188018] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157629] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(4875), 1, + STATE(4132), 1, + aux_sym_shebang_repeat1, + STATE(4189), 1, sym_comment, - STATE(8185), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7984), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7982), 11, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407905,51 +372679,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, - [188048] = 17, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157656] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8174), 1, - anon_sym_PIPE, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4871), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(4876), 1, - sym_comment, - STATE(5123), 1, - aux_sym_parameter_parens_repeat1, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [188100] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5112), 1, - sym__space, - ACTIONS(8176), 1, - anon_sym_EQ2, - STATE(4877), 1, + STATE(4190), 1, sym_comment, - ACTIONS(5114), 13, + ACTIONS(7484), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407962,17 +372705,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, - [188128] = 5, + anon_sym_xor2, + anon_sym_or2, + [157685] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5130), 1, - sym__space, - ACTIONS(8178), 1, - anon_sym_EQ2, - STATE(4878), 1, + STATE(4191), 1, sym_comment, - ACTIONS(5132), 13, + ACTIONS(2172), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2170), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -407984,14 +372729,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, - [188156] = 3, + anon_sym_DOT_DOT2, + [157712] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4879), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4192), 1, sym_comment, - ACTIONS(8180), 15, + ACTIONS(7484), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408004,20 +372752,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_else, - anon_sym_RBRACE, - anon_sym_catch, - [188180] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [157741] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4880), 1, - sym_comment, - ACTIONS(2244), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2242), 12, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7488), 1, sym__newline, + STATE(4135), 1, + aux_sym_shebang_repeat1, + STATE(4193), 1, + sym_comment, + ACTIONS(7486), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408028,41 +372776,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [188206] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2072), 1, - anon_sym_DASH2, - ACTIONS(8182), 1, - anon_sym_DOT_DOT2, - STATE(4881), 1, - sym_comment, - ACTIONS(8184), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 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, - [188236] = 4, + anon_sym_xor2, + anon_sym_or2, + [157772] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8053), 1, + ACTIONS(7446), 1, anon_sym_and2, - STATE(4882), 1, - sym_comment, - ACTIONS(8015), 14, - ts_builtin_sym_end, + ACTIONS(7488), 1, sym__newline, + STATE(4137), 1, + aux_sym_shebang_repeat1, + STATE(4194), 1, + sym_comment, + ACTIONS(7486), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408073,18 +372801,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, - [188262] = 5, - ACTIONS(3), 1, + [157803] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2308), 1, - sym__space, - ACTIONS(8186), 1, - anon_sym_LBRACK2, - STATE(4883), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4195), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(7484), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408097,38 +372828,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [188290] = 5, + anon_sym_or2, + [157834] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7948), 1, - aux_sym__immediate_decimal_token2, - STATE(4884), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4196), 1, sym_comment, - ACTIONS(1779), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 11, - anon_sym_EQ, + ACTIONS(7484), 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, - [188318] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [157865] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2421), 1, - sym__space, - STATE(4885), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4197), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(7426), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408141,16 +372878,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, - [188343] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [157896] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2405), 1, - sym__space, - STATE(4886), 1, - sym_comment, - ACTIONS(2403), 13, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4150), 1, + aux_sym_shebang_repeat1, + STATE(4198), 1, + sym_comment, + ACTIONS(7486), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408162,16 +372904,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, - [188368] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1951), 1, - sym__space, - STATE(4887), 1, - sym_comment, - ACTIONS(1949), 13, + anon_sym_or2, + [157929] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4167), 1, + aux_sym_shebang_repeat1, + STATE(4199), 1, + sym_comment, + ACTIONS(7486), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408183,15 +372930,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, - [188393] = 3, + anon_sym_or2, + [157962] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4888), 1, + STATE(4200), 1, sym_comment, - ACTIONS(5830), 14, - sym__newline, + ACTIONS(1773), 2, sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408202,16 +372951,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, - aux_sym_record_entry_token1, - [188416] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [157989] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2456), 1, - sym__space, - STATE(4889), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4201), 1, sym_comment, - ACTIONS(2454), 13, + ACTIONS(7482), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408224,15 +372974,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, - [188441] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158016] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__space, - STATE(4890), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4202), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(7482), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408245,15 +372997,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [188466] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158043] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2464), 1, - sym__space, - STATE(4891), 1, + ACTIONS(1965), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4203), 1, + sym_comment, + STATE(4647), 1, + sym_cell_path, + ACTIONS(1967), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [158078] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4204), 1, sym_comment, - ACTIONS(2462), 13, + ACTIONS(7482), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408266,19 +373049,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, - [188491] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [158107] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8188), 1, - sym__newline, - ACTIONS(8190), 1, - sym__space, - STATE(4892), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4205), 1, sym_comment, - STATE(4953), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8192), 11, + ACTIONS(7482), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408290,14 +373075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188520] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [158138] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2441), 1, - sym__space, - STATE(4893), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4206), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(7482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408310,19 +373100,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, - [188545] = 6, + anon_sym_or2, + [158169] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8194), 1, - sym__newline, - ACTIONS(8199), 1, - anon_sym_catch, - STATE(4894), 1, - sym_comment, - STATE(4928), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + ACTIONS(7493), 1, + anon_sym_or2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(8197), 11, + STATE(4207), 1, + sym_comment, + ACTIONS(7491), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408334,18 +373127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188574] = 6, + [158202] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(7495), 1, sym__newline, - ACTIONS(8190), 1, + ACTIONS(7497), 1, sym__space, - STATE(4895), 1, + ACTIONS(7501), 1, + anon_sym_COLON2, + STATE(4208), 1, sym_comment, - STATE(4937), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8201), 11, + STATE(4497), 1, + aux_sym_command_repeat1, + STATE(6087), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7499), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408356,15 +373153,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, - [188603] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [158237] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2522), 1, - sym__space, - STATE(4896), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4209), 1, sym_comment, - ACTIONS(2520), 13, + ACTIONS(7484), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408377,15 +373174,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, - [188628] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2460), 1, - sym__space, - STATE(4897), 1, + STATE(4210), 1, sym_comment, - ACTIONS(2458), 13, + ACTIONS(2263), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2261), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408399,18 +373199,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188653] = 6, + aux_sym_unquoted_token4, + [158291] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, - sym__newline, - ACTIONS(8203), 1, - anon_sym_else, - STATE(1800), 1, + ACTIONS(5952), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7503), 1, + anon_sym_DOT, + STATE(4211), 1, + sym_comment, + ACTIONS(1599), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_DOT2, + ACTIONS(1601), 11, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [158322] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(4898), 1, + STATE(4212), 1, sym_comment, - ACTIONS(1310), 11, + ACTIONS(7484), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408422,14 +373245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188682] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158349] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2468), 1, - sym__space, - STATE(4899), 1, + ACTIONS(7507), 1, + anon_sym_and2, + ACTIONS(7509), 1, + anon_sym_xor2, + ACTIONS(7511), 1, + anon_sym_or2, + STATE(4213), 1, sym_comment, - ACTIONS(2466), 13, + ACTIONS(7505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408443,13 +373273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188707] = 3, - ACTIONS(251), 1, + [158380] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, + STATE(4214), 1, sym_comment, - ACTIONS(8180), 14, - ts_builtin_sym_end, + ACTIONS(1788), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408461,16 +373293,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_else, - anon_sym_catch, - [188730] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [158407] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7741), 1, - sym__space, - STATE(4901), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + ACTIONS(7517), 1, + anon_sym_or2, + STATE(4215), 1, sym_comment, - ACTIONS(7739), 13, + ACTIONS(7505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408484,14 +373321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188755] = 4, - ACTIONS(3), 1, + [158438] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2472), 1, - sym__space, - STATE(4902), 1, + STATE(4168), 1, + aux_sym_shebang_repeat1, + STATE(4216), 1, sym_comment, - ACTIONS(2470), 13, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408504,40 +373341,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, - [188780] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158465] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4903), 1, + STATE(4217), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1769), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [188805] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8206), 1, + ACTIONS(6875), 16, sym__newline, - ACTIONS(8211), 1, - anon_sym_else, - STATE(4904), 1, - sym_comment, - STATE(4973), 1, - aux_sym_shebang_repeat1, - ACTIONS(8209), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408549,18 +373362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188834] = 6, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158490] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8213), 1, - sym__newline, - ACTIONS(8218), 1, - anon_sym_else, - STATE(4905), 1, - sym_comment, - STATE(4986), 1, + STATE(4174), 1, aux_sym_shebang_repeat1, - ACTIONS(8216), 11, + STATE(4218), 1, + sym_comment, + ACTIONS(7486), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408572,18 +373386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188863] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158517] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8220), 1, - sym__newline, - ACTIONS(8225), 1, - anon_sym_else, - STATE(4906), 1, - sym_comment, - STATE(4999), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(8223), 11, + STATE(4219), 1, + sym_comment, + ACTIONS(7484), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408595,14 +373411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188892] = 4, + anon_sym_xor2, + anon_sym_or2, + [158546] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2488), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4862), 1, sym__space, - STATE(4907), 1, + STATE(4220), 1, sym_comment, - ACTIONS(2486), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408616,14 +373438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188917] = 4, + [158577] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8229), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4866), 1, sym__space, - STATE(4908), 1, + STATE(4221), 1, sym_comment, - ACTIONS(8227), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4868), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408637,18 +373463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188942] = 6, + [158608] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym__newline, - ACTIONS(8236), 1, - anon_sym_catch, - STATE(4909), 1, - sym_comment, - STATE(5041), 1, + ACTIONS(7456), 1, + anon_sym_and2, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(8234), 11, + STATE(4222), 1, + sym_comment, + ACTIONS(7484), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408660,41 +373485,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [188971] = 6, - ACTIONS(251), 1, + anon_sym_xor2, + anon_sym_or2, + [158637] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8238), 1, - anon_sym_DOT, - ACTIONS(8240), 1, - aux_sym__immediate_decimal_token2, - STATE(4910), 1, + ACTIONS(4850), 1, + sym__space, + ACTIONS(7519), 1, + sym_long_flag_identifier, + ACTIONS(7521), 1, + anon_sym_EQ2, + STATE(4223), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 9, - ts_builtin_sym_end, + ACTIONS(4852), 13, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189000] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, + [158668] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8242), 1, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7488), 1, sym__newline, - ACTIONS(8247), 1, - anon_sym_catch, - STATE(4909), 1, + STATE(4175), 1, aux_sym_shebang_repeat1, - STATE(4911), 1, + STATE(4224), 1, sym_comment, - ACTIONS(8245), 11, + ACTIONS(7486), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408706,15 +373535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189029] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [158699] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2484), 1, - sym__space, - STATE(4912), 1, - sym_comment, - ACTIONS(2482), 13, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7488), 1, sym__newline, + STATE(4176), 1, + aux_sym_shebang_repeat1, + STATE(4225), 1, + sym_comment, + ACTIONS(7486), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408726,19 +373560,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, - [189054] = 6, + anon_sym_xor2, + anon_sym_or2, + [158730] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8249), 1, - sym__newline, - ACTIONS(8254), 1, - anon_sym_catch, - STATE(4894), 1, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(4913), 1, + STATE(4226), 1, sym_comment, - ACTIONS(8252), 11, + ACTIONS(7484), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408750,16 +373586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189083] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [158761] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4914), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4227), 1, sym_comment, - ACTIONS(5124), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5126), 11, + ACTIONS(7484), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408771,14 +373610,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, - [189108] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [158792] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4915), 1, - sym_comment, - ACTIONS(5834), 14, + ACTIONS(3876), 1, sym__newline, - sym__space, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4179), 1, + aux_sym_shebang_repeat1, + STATE(4228), 1, + sym_comment, + ACTIONS(7486), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408789,21 +373636,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_RBRACE, - aux_sym_record_entry_token1, - [189131] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [158825] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8256), 1, - ts_builtin_sym_end, - ACTIONS(8258), 1, - sym__space, - STATE(4916), 1, - sym_comment, - STATE(5031), 1, - aux_sym_command_repeat1, - ACTIONS(8143), 11, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4197), 1, + aux_sym_shebang_repeat1, + STATE(4229), 1, + sym_comment, + ACTIONS(7486), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408814,13 +373662,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, - [189160] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_or2, + [158858] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4917), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4870), 1, + sym__space, + STATE(4230), 1, sym_comment, - ACTIONS(5243), 14, - ts_builtin_sym_end, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408832,16 +373687,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_else, - anon_sym_catch, - [189183] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [158889] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5844), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4874), 1, sym__space, - STATE(4918), 1, + STATE(4231), 1, sym_comment, - ACTIONS(5842), 13, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4876), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408855,18 +373714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189208] = 6, + [158920] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(8024), 1, + ACTIONS(2033), 1, anon_sym_DASH2, - STATE(4919), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4232), 1, sym_comment, - STATE(8048), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8022), 11, + STATE(4571), 1, + sym_cell_path, + ACTIONS(2035), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -408878,18 +373741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189237] = 6, + [158955] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8258), 1, - sym__space, - ACTIONS(8260), 1, - ts_builtin_sym_end, - STATE(4920), 1, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token2, + STATE(4233), 1, sym_comment, - STATE(5034), 1, - aux_sym_command_repeat1, - ACTIONS(8159), 11, + ACTIONS(1737), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1735), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -408901,14 +373764,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, - [189266] = 3, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [158984] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4921), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + ACTIONS(7523), 1, + anon_sym_or2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4234), 1, sym_comment, - ACTIONS(5838), 14, + ACTIONS(7491), 12, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408919,17 +373790,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, - aux_sym_record_entry_token1, - [189289] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [159017] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2078), 1, - sym__space, - STATE(4922), 1, - sym_comment, - ACTIONS(2072), 13, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + ACTIONS(7444), 1, + anon_sym_or2, + STATE(4235), 1, + sym_comment, + STATE(4283), 1, + aux_sym_shebang_repeat1, + ACTIONS(7525), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408941,19 +373818,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, - [189314] = 6, + [159052] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8262), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(8267), 1, - anon_sym_else, - STATE(4904), 1, - aux_sym_shebang_repeat1, - STATE(4923), 1, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + ACTIONS(7450), 1, + anon_sym_or2, + STATE(4236), 1, sym_comment, - ACTIONS(8265), 11, + STATE(4284), 1, + aux_sym_shebang_repeat1, + ACTIONS(7525), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -408965,40 +373845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189343] = 6, + [159087] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(8163), 1, - anon_sym_DASH2, - STATE(4924), 1, - sym_comment, - STATE(8048), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8161), 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, - [189372] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8269), 1, - anon_sym_EQ2, - STATE(4925), 1, + STATE(4121), 1, + aux_sym_shebang_repeat1, + STATE(4237), 1, sym_comment, - ACTIONS(5130), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5132), 11, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409010,16 +373864,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, - [189399] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159114] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4926), 1, + ACTIONS(7422), 1, + anon_sym_DOT_DOT2, + STATE(4238), 1, sym_comment, - ACTIONS(5136), 3, + ACTIONS(1000), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(5138), 11, + ACTIONS(7424), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409031,16 +373893,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, - [189424] = 5, - ACTIONS(3), 1, + [159145] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8098), 1, - sym__space, - STATE(4815), 1, - aux_sym_command_repeat1, - STATE(4927), 1, + STATE(4129), 1, + aux_sym_shebang_repeat1, + STATE(4239), 1, sym_comment, - ACTIONS(8159), 12, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409052,19 +373912,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_RBRACE, - [189451] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159172] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7529), 1, sym__newline, - ACTIONS(8271), 1, - anon_sym_catch, - STATE(1800), 1, + STATE(4133), 1, aux_sym_shebang_repeat1, - STATE(4928), 1, + STATE(4240), 1, sym_comment, - ACTIONS(1310), 11, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409076,151 +373939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189480] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1830), 1, - anon_sym_DASH2, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - STATE(4929), 1, - sym_comment, - ACTIONS(1838), 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, - [189509] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8274), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8276), 1, - aux_sym__immediate_decimal_token2, - STATE(4930), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189538] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4931), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 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, - [189563] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7665), 1, - anon_sym_DOT, - ACTIONS(7667), 1, - aux_sym__immediate_decimal_token2, - STATE(4932), 1, - sym_comment, - ACTIONS(1779), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1781), 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, - [189592] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2292), 1, - anon_sym_DASH2, - STATE(4933), 1, - sym_comment, - ACTIONS(2294), 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, - [189621] = 6, + anon_sym_xor2, + anon_sym_or2, + [159203] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_DASH2, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_record_token2, - STATE(4934), 1, - sym_comment, - ACTIONS(1848), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7529), 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, - [189650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2476), 1, - sym__space, - STATE(4935), 1, + STATE(4134), 1, + aux_sym_shebang_repeat1, + STATE(4241), 1, sym_comment, - ACTIONS(2474), 13, - sym__newline, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409232,16 +373964,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, - [189675] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [159234] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2480), 1, - sym__space, - STATE(4936), 1, - sym_comment, - ACTIONS(2478), 13, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4142), 1, + aux_sym_shebang_repeat1, + STATE(4242), 1, + sym_comment, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409253,18 +373991,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, - [189700] = 5, - ACTIONS(3), 1, + anon_sym_or2, + [159267] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8278), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(8281), 1, - sym__space, - STATE(4937), 2, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4143), 1, + aux_sym_shebang_repeat1, + STATE(4243), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(8284), 11, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409276,60 +374017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189727] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2266), 1, - anon_sym_DASH2, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - STATE(4938), 1, - sym_comment, - ACTIONS(2270), 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, - [189756] = 6, + anon_sym_or2, + [159300] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_DASH2, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2232), 1, - aux_sym__unquoted_in_record_token2, - STATE(4939), 1, - sym_comment, - ACTIONS(2230), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [189785] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2043), 1, - sym__space, - STATE(4940), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + STATE(4244), 1, sym_comment, - ACTIONS(2041), 13, + ACTIONS(1665), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409341,16 +374038,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, - [189810] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159327] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__space, - STATE(4941), 1, + STATE(4245), 1, sym_comment, - ACTIONS(1941), 13, + ACTIONS(7175), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409364,14 +374060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189835] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159352] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2494), 1, - sym__space, - STATE(4942), 1, + STATE(4153), 1, + aux_sym_shebang_repeat1, + STATE(4246), 1, sym_comment, - ACTIONS(2492), 13, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409384,39 +374083,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, - [189860] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159379] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4943), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1671), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [189885] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8286), 1, - anon_sym_EQ2, - STATE(4944), 1, + STATE(4154), 1, + aux_sym_shebang_repeat1, + STATE(4247), 1, sym_comment, - ACTIONS(5112), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5114), 11, + ACTIONS(7527), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409428,40 +374105,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, - [189912] = 5, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159406] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8117), 1, - aux_sym__immediate_decimal_token2, - STATE(4945), 1, + STATE(4248), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189939] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(7279), 16, sym__newline, - ACTIONS(8190), 1, - sym__space, - STATE(4895), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4946), 1, - sym_comment, - ACTIONS(8288), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409473,14 +374127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [189968] = 4, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159431] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5180), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2245), 1, sym__space, - STATE(4947), 1, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(4249), 1, sym_comment, - ACTIONS(5182), 13, + ACTIONS(2241), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409494,43 +374156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [189993] = 12, + [159462] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(8290), 1, - anon_sym_DOT, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(4948), 1, - sym_comment, - STATE(6004), 1, - sym__immediate_decimal, - ACTIONS(8292), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6329), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [190034] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2506), 1, - sym__space, - STATE(4949), 1, + STATE(4250), 1, sym_comment, - ACTIONS(2504), 13, + ACTIONS(7175), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409544,14 +374175,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190059] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5184), 1, - sym__space, - STATE(4950), 1, + ACTIONS(7532), 1, + aux_sym__immediate_decimal_token2, + STATE(4251), 1, sym_comment, - ACTIONS(5186), 13, + ACTIONS(1773), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409563,23 +374201,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, - [190084] = 7, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [159516] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8298), 1, - sym__newline, - STATE(729), 1, - aux_sym__pipe_separator, - STATE(4951), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + sym__space, + STATE(4252), 1, sym_comment, - STATE(5492), 1, - aux_sym_shebang_repeat1, - ACTIONS(8301), 2, + ACTIONS(1819), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -409589,15 +374225,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, - [190115] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159547] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4952), 1, - sym_comment, - ACTIONS(1771), 2, + ACTIONS(1969), 1, anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 12, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4253), 1, + sym_comment, + STATE(4555), 1, + sym_cell_path, + ACTIONS(1971), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -409609,19 +374254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [190140] = 6, + [159582] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, + ACTIONS(7495), 1, sym__newline, - ACTIONS(8190), 1, + ACTIONS(7497), 1, sym__space, - STATE(4937), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4953), 1, + ACTIONS(7534), 1, + anon_sym_COLON2, + STATE(4254), 1, sym_comment, - ACTIONS(8303), 11, + STATE(4497), 1, + aux_sym_command_repeat1, + STATE(6086), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7499), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409632,38 +374280,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, - [190169] = 5, + anon_sym_RBRACE, + [159617] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__immediate_decimal_token2, - STATE(4954), 1, - sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 10, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7529), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190196] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2510), 1, - sym__space, - STATE(4955), 1, + STATE(4157), 1, + aux_sym_shebang_repeat1, + STATE(4255), 1, sym_comment, - ACTIONS(2508), 13, - sym__newline, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409675,15 +374304,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, - [190221] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [159648] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__space, - STATE(4956), 1, + STATE(4256), 1, sym_comment, - ACTIONS(1883), 13, + ACTIONS(7279), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409697,40 +374325,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190246] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159673] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(8129), 1, - anon_sym_DASH2, - STATE(4957), 1, + ACTIONS(7536), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7538), 1, + aux_sym__immediate_decimal_token2, + STATE(4257), 1, sym_comment, - STATE(8048), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8127), 11, - anon_sym_EQ, + ACTIONS(1727), 3, 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, - [190275] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4958), 1, - sym_comment, - ACTIONS(1000), 2, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1002), 12, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -409740,81 +374352,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [190300] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4959), 1, - sym_comment, - ACTIONS(5826), 14, - 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, - aux_sym_record_entry_token1, - [190323] = 6, + anon_sym_LPAREN2, + [159704] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, - sym__newline, - ACTIONS(8307), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4960), 1, - sym_comment, - ACTIONS(1310), 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, - [190352] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym__unquoted_in_record_token4, - STATE(4961), 1, + ACTIONS(1973), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4258), 1, sym_comment, - ACTIONS(1034), 6, + STATE(4646), 1, + sym_cell_path, + ACTIONS(1975), 11, anon_sym_EQ, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(1036), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [190381] = 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4962), 1, + STATE(4259), 1, sym_comment, - ACTIONS(5842), 14, - sym__newline, + ACTIONS(1719), 4, + ts_builtin_sym_end, sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1717), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409825,20 +374402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_record_entry_token1, - [190404] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [159766] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8310), 1, - anon_sym_LBRACK2, - STATE(4963), 1, - sym_comment, - ACTIONS(2308), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2304), 11, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7529), 1, sym__newline, + STATE(4158), 1, + aux_sym_shebang_repeat1, + STATE(4260), 1, + sym_comment, + ACTIONS(7527), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409849,17 +374425,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, - [190431] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [159797] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4964), 1, - sym_comment, - ACTIONS(1024), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1022), 11, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7440), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(4161), 1, + aux_sym_shebang_repeat1, + STATE(4261), 1, + sym_comment, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -409870,14 +374452,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, - [190456] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [159830] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__space, - STATE(4965), 1, + STATE(4262), 1, sym_comment, - ACTIONS(1891), 13, + ACTIONS(7279), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409891,35 +374473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190481] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159855] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4966), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1663), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [190506] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2393), 1, - sym__space, - STATE(4967), 1, + STATE(4263), 1, sym_comment, - ACTIONS(2391), 13, + ACTIONS(7540), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409933,56 +374495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190531] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4968), 1, - sym_comment, - ACTIONS(1004), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1006), 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_QMARK2, - [190556] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159880] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4969), 1, - sym_comment, - ACTIONS(996), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(998), 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_QMARK2, - [190581] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - sym__space, - STATE(4970), 1, + STATE(4264), 1, sym_comment, - ACTIONS(1895), 13, + ACTIONS(7540), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -409996,60 +374517,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190606] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159905] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4971), 1, + ACTIONS(7507), 1, + anon_sym_and2, + STATE(4265), 1, sym_comment, - ACTIONS(986), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(988), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7540), 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_QMARK2, - [190631] = 4, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [159932] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4972), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(4266), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 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, - [190656] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(7540), 15, sym__newline, - ACTIONS(8312), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4973), 1, - sym_comment, - ACTIONS(1310), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -410061,14 +374563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190685] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [159959] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8317), 1, - sym__space, - STATE(4974), 1, + ACTIONS(7507), 1, + anon_sym_and2, + ACTIONS(7509), 1, + anon_sym_xor2, + STATE(4267), 1, sym_comment, - ACTIONS(8315), 13, + ACTIONS(7540), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410082,14 +374589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190710] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [159988] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7793), 1, - sym__space, - STATE(4975), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(4268), 1, sym_comment, - ACTIONS(7791), 13, + ACTIONS(7540), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410103,14 +374613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190735] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [160017] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8321), 1, - sym__space, - STATE(4976), 1, + STATE(4269), 1, sym_comment, - ACTIONS(8319), 13, + ACTIONS(7540), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410124,36 +374633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190760] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160042] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_LT, - ACTIONS(8327), 1, - anon_sym_DASH2, - STATE(4977), 1, - sym_comment, - ACTIONS(8323), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190787] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - sym__space, - STATE(4978), 1, + STATE(4270), 1, sym_comment, - ACTIONS(2395), 13, + ACTIONS(7540), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410167,14 +374655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190812] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160067] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8331), 1, - sym__space, - STATE(4979), 1, + ACTIONS(7507), 1, + anon_sym_and2, + STATE(4271), 1, sym_comment, - ACTIONS(8329), 13, + ACTIONS(7540), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410188,14 +374679,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190837] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [160094] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8335), 1, - sym__space, - STATE(4980), 1, + ACTIONS(7513), 1, + anon_sym_and2, + STATE(4272), 1, sym_comment, - ACTIONS(8333), 13, + ACTIONS(7540), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410209,15 +374702,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190862] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [160121] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2096), 1, - sym__space, - STATE(4981), 1, - sym_comment, - ACTIONS(2090), 13, + ACTIONS(3876), 1, sym__newline, + ACTIONS(7446), 1, + anon_sym_and2, + ACTIONS(7448), 1, + anon_sym_xor2, + STATE(4162), 1, + aux_sym_shebang_repeat1, + STATE(4273), 1, + sym_comment, + ACTIONS(7527), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -410229,15 +374729,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, - [190887] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [160154] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__space, - STATE(4982), 1, + ACTIONS(7507), 1, + anon_sym_and2, + ACTIONS(7509), 1, + anon_sym_xor2, + STATE(4274), 1, sym_comment, - ACTIONS(2098), 13, + ACTIONS(7540), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410251,14 +374753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190912] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [160183] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2393), 1, - sym__space, - STATE(4983), 1, + ACTIONS(7513), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(4275), 1, sym_comment, - ACTIONS(2391), 13, + ACTIONS(7540), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410272,14 +374777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190937] = 4, + anon_sym_or2, + [160212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7984), 1, + ACTIONS(1737), 1, sym__space, - STATE(4984), 1, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7542), 1, + anon_sym_DOT, + STATE(4276), 1, sym_comment, - ACTIONS(7982), 13, + ACTIONS(1735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410293,15 +374803,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [190962] = 4, + [160243] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4985), 1, + ACTIONS(1977), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4277), 1, sym_comment, - ACTIONS(1818), 2, + STATE(4715), 1, + sym_cell_path, + ACTIONS(1979), 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, + [160278] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1981), 1, anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1820), 12, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4278), 1, + sym_comment, + STATE(4661), 1, + sym_cell_path, + ACTIONS(1983), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -410313,19 +374857,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [190987] = 6, + [160313] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(1985), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4279), 1, + sym_comment, + STATE(4563), 1, + sym_cell_path, + ACTIONS(1987), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8337), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4986), 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, + [160348] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7544), 1, + anon_sym_DOT_DOT2, + STATE(4280), 1, sym_comment, - ACTIONS(1310), 11, + ACTIONS(2148), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7546), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2142), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -410336,22 +374909,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, - [191016] = 7, - ACTIONS(251), 1, + [160379] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8165), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4987), 1, + ACTIONS(7548), 1, + anon_sym_DOT_DOT2, + STATE(4281), 1, sym_comment, - STATE(5492), 1, - aux_sym_shebang_repeat1, - ACTIONS(8168), 2, + ACTIONS(2156), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7550), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2150), 11, + sym__newline, anon_sym_SEMI, - ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -410361,14 +374934,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, - [191047] = 4, + [160410] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(7552), 1, + anon_sym_DOT_DOT2, + STATE(4282), 1, + sym_comment, + ACTIONS(2164), 2, + ts_builtin_sym_end, sym__space, - STATE(4988), 1, + ACTIONS(7554), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2158), 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, + [160441] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7454), 1, + anon_sym_and2, + ACTIONS(7469), 1, + anon_sym_xor2, + ACTIONS(7493), 1, + anon_sym_or2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, sym_comment, - ACTIONS(2359), 13, + ACTIONS(7556), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410381,15 +374985,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, - [191072] = 4, - ACTIONS(3), 1, + [160474] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1919), 1, - sym__space, - STATE(4989), 1, + ACTIONS(7456), 1, + anon_sym_and2, + ACTIONS(7471), 1, + anon_sym_xor2, + ACTIONS(7523), 1, + anon_sym_or2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4284), 1, sym_comment, - ACTIONS(1917), 13, + ACTIONS(7556), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410402,15 +375011,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, - [191097] = 4, + [160507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2137), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(2216), 1, sym__space, - STATE(4990), 1, + STATE(4285), 1, sym_comment, - ACTIONS(2131), 13, + ACTIONS(2214), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410424,37 +375036,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191122] = 6, - ACTIONS(3), 1, + [160538] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym__unquoted_in_record_token4, - STATE(4991), 1, + ACTIONS(1829), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4286), 1, sym_comment, - ACTIONS(2254), 6, + STATE(4588), 1, + sym_cell_path, + ACTIONS(1831), 11, anon_sym_EQ, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2258), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [191151] = 4, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [160573] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2498), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, sym__space, - STATE(4992), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(4287), 1, sym_comment, - ACTIONS(2496), 13, + ACTIONS(1794), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410468,18 +375088,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191176] = 6, + [160604] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4288), 1, + sym_comment, + ACTIONS(2057), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2055), 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, + [160631] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_AT, - ACTIONS(8344), 1, + ACTIONS(1989), 1, anon_sym_DASH2, - STATE(4993), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4289), 1, sym_comment, - STATE(5432), 1, - sym_param_cmd, - ACTIONS(8340), 11, + STATE(4618), 1, + sym_cell_path, + ACTIONS(1991), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -410491,18 +375138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191205] = 6, + [160666] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_AT, - ACTIONS(8344), 1, + ACTIONS(1993), 1, anon_sym_DASH2, - STATE(4994), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4290), 1, sym_comment, - STATE(5434), 1, - sym_param_cmd, - ACTIONS(8340), 11, + STATE(4619), 1, + sym_cell_path, + ACTIONS(1995), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -410514,106 +375165,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191234] = 4, - ACTIONS(3), 1, + [160701] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2530), 1, - sym__space, - STATE(4995), 1, + ACTIONS(1997), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4291), 1, sym_comment, - ACTIONS(2528), 13, + STATE(4637), 1, + sym_cell_path, + ACTIONS(1999), 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, - [191259] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [160736] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5188), 1, - sym__space, - STATE(4996), 1, + ACTIONS(2001), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4292), 1, sym_comment, - ACTIONS(5190), 13, + STATE(4669), 1, + sym_cell_path, + ACTIONS(2003), 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, - [191284] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym__unquoted_in_record_token4, - STATE(4997), 1, - sym_comment, - ACTIONS(2272), 6, - anon_sym_EQ, - sym_identifier, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [160771] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2005), 1, anon_sym_DASH2, - ACTIONS(2274), 6, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4293), 1, + sym_comment, + STATE(4674), 1, + sym_cell_path, + ACTIONS(2007), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [191313] = 6, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [160806] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym__unquoted_in_record_token4, - STATE(4998), 1, + ACTIONS(1945), 1, + anon_sym_DASH2, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4294), 1, sym_comment, - ACTIONS(2234), 6, + STATE(4773), 1, + sym_cell_path, + ACTIONS(1947), 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, + [160841] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2009), 1, anon_sym_DASH2, - ACTIONS(2238), 6, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(4295), 1, + sym_comment, + STATE(4581), 1, + sym_cell_path, + ACTIONS(2011), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [191342] = 6, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [160876] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8346), 1, - sym__newline, - ACTIONS(8351), 1, - anon_sym_else, - STATE(4960), 1, - aux_sym_shebang_repeat1, - STATE(4999), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + sym__space, + STATE(4296), 1, sym_comment, - ACTIONS(8349), 11, + ACTIONS(2218), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -410625,14 +375324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [191371] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [160907] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5192), 1, - sym__space, - STATE(5000), 1, + ACTIONS(7454), 1, + anon_sym_and2, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4297), 1, sym_comment, - ACTIONS(5194), 13, + ACTIONS(7482), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410645,17 +375347,72 @@ static 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, - [191396] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [160936] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5001), 1, + STATE(4298), 1, sym_comment, - ACTIONS(1020), 3, + ACTIONS(1717), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1719), 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, + [160962] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7562), 1, + anon_sym_RPAREN, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4299), 1, + sym_comment, + STATE(4302), 1, + aux_sym_shebang_repeat1, + STATE(4617), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [161014] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4300), 1, + sym_comment, + ACTIONS(7279), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1018), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410667,16 +375424,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, - [191421] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161038] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5002), 1, + STATE(4301), 1, sym_comment, - ACTIONS(1016), 3, + ACTIONS(7175), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1014), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410688,14 +375445,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, - [191446] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161062] = 17, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2365), 1, - sym__space, - STATE(5003), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7572), 1, + anon_sym_RPAREN, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4302), 1, + sym_comment, + STATE(4549), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5071), 1, + aux_sym_shebang_repeat1, + STATE(5313), 1, + sym_parameter, + [161114] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4303), 1, sym_comment, - ACTIONS(2363), 13, + ACTIONS(7279), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410707,37 +375501,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, - [191471] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161138] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5004), 1, + STATE(4304), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1713), 12, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_DOT, - [191496] = 4, + ACTIONS(7540), 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, + [161162] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8355), 1, - anon_sym_catch, - STATE(5005), 1, + STATE(4305), 1, sym_comment, - ACTIONS(8353), 13, + ACTIONS(7540), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410749,16 +375543,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, - [191521] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, - sym__space, - STATE(5006), 1, + ACTIONS(7574), 1, + anon_sym_EQ2, + ACTIONS(7576), 1, + sym_short_flag_identifier, + STATE(4306), 1, sym_comment, - ACTIONS(2367), 13, + ACTIONS(4898), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4900), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410770,16 +375570,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, - [191546] = 4, - ACTIONS(3), 1, + [161216] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1927), 1, - sym__space, - STATE(5007), 1, + ACTIONS(7578), 1, + anon_sym_and2, + STATE(4307), 1, sym_comment, - ACTIONS(1925), 13, + ACTIONS(7540), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410791,16 +375590,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, - [191571] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [161242] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5220), 1, - sym__space, - STATE(5008), 1, + ACTIONS(7580), 1, + anon_sym_and2, + STATE(4308), 1, sym_comment, - ACTIONS(5222), 13, + ACTIONS(7540), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410812,16 +375612,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, - [191596] = 4, + anon_sym_xor2, + anon_sym_or2, + [161268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5224), 1, - sym__space, - STATE(5009), 1, + STATE(4309), 1, sym_comment, - ACTIONS(5226), 13, + ACTIONS(1788), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1786), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410833,19 +375635,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, - [191621] = 5, + aux_sym_unquoted_token2, + [161294] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_QMARK2, - STATE(5010), 1, - sym_comment, - ACTIONS(990), 2, + ACTIONS(7584), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(992), 11, + ACTIONS(7586), 1, + anon_sym_DOT_DOT2, + STATE(4310), 1, + sym_comment, + ACTIONS(7588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7582), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -410857,14 +375660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [191648] = 4, - ACTIONS(3), 1, + [161324] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__space, - STATE(5011), 1, + ACTIONS(7578), 1, + anon_sym_and2, + ACTIONS(7590), 1, + anon_sym_xor2, + STATE(4311), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(7540), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410876,16 +375682,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, - [191673] = 4, + anon_sym_or2, + [161352] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8361), 1, - sym__space, - STATE(5012), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(4312), 1, sym_comment, - ACTIONS(8359), 13, + ACTIONS(2222), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2218), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410897,16 +375707,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, - [191698] = 4, - ACTIONS(3), 1, + [161382] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2373), 1, - sym__space, - STATE(5013), 1, + ACTIONS(7580), 1, + anon_sym_and2, + ACTIONS(7592), 1, + anon_sym_xor2, + STATE(4313), 1, sym_comment, - ACTIONS(2371), 13, + ACTIONS(7540), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410918,16 +375729,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, - [191723] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [161410] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2377), 1, - sym__space, - STATE(5014), 1, + STATE(4314), 1, sym_comment, - ACTIONS(2375), 13, + ACTIONS(7540), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410939,16 +375748,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, - [191748] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161434] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, - sym__space, - STATE(5015), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(4315), 1, sym_comment, - ACTIONS(1937), 13, + ACTIONS(2228), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2224), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -410960,151 +375775,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191773] = 5, + [161464] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8363), 1, - anon_sym_QMARK2, - STATE(5016), 1, - sym_comment, - ACTIONS(1008), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1010), 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, - [191800] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5017), 1, - sym_comment, - ACTIONS(2242), 7, - anon_sym_EQ, + ACTIONS(7594), 1, sym_identifier, + ACTIONS(7599), 1, anon_sym_DOLLAR, + ACTIONS(7602), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7605), 1, anon_sym_DASH_DASH, + ACTIONS(7608), 1, anon_sym_DASH2, - aux_sym__unquoted_in_record_token4, - ACTIONS(2244), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - [191825] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_DASH2, - STATE(5018), 1, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + STATE(4316), 2, sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2278), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + aux_sym_parameter_parens_repeat1, + ACTIONS(7597), 3, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191854] = 6, - ACTIONS(251), 1, + [161510] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_DASH2, - STATE(5019), 1, + STATE(4317), 1, sym_comment, - STATE(8427), 1, + STATE(7642), 1, sym__expr_parenthesized_immediate, - ACTIONS(2282), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4870), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4872), 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, - [191883] = 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, + [161540] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2284), 1, - anon_sym_DASH2, - STATE(5020), 1, - sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2286), 11, - anon_sym_EQ, + ACTIONS(7558), 1, sym_identifier, + ACTIONS(7560), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7564), 1, anon_sym_DOLLAR, + ACTIONS(7566), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, anon_sym_DASH_DASH, - [191912] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, + ACTIONS(7570), 1, anon_sym_DASH2, - STATE(5021), 1, - sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2290), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7611), 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, - [191941] = 4, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4318), 1, + sym_comment, + STATE(4371), 1, + aux_sym_shebang_repeat1, + STATE(4771), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [161592] = 4, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2381), 1, - sym__space, - STATE(5022), 1, + anon_sym_POUND, + STATE(4319), 1, sym_comment, - ACTIONS(2379), 13, + ACTIONS(4983), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4985), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411118,14 +375888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191966] = 4, - ACTIONS(3), 1, + [161618] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2385), 1, - sym__space, - STATE(5023), 1, + ACTIONS(7578), 1, + anon_sym_and2, + ACTIONS(7590), 1, + anon_sym_xor2, + ACTIONS(7613), 1, + anon_sym_or2, + STATE(4320), 1, sym_comment, - ACTIONS(2383), 13, + ACTIONS(7505), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411137,16 +375912,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, - [191991] = 4, + [161648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, - sym__space, - STATE(5024), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(4321), 1, sym_comment, - ACTIONS(5830), 13, + ACTIONS(2245), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2241), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411158,16 +375936,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, - [192016] = 4, + [161678] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(7617), 1, sym__space, - STATE(5025), 1, + STATE(4322), 1, sym_comment, - ACTIONS(5834), 13, + STATE(4356), 1, + aux_sym_command_repeat1, + ACTIONS(7615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411181,14 +375959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [192041] = 4, + [161706] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, - sym__space, - STATE(5026), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(4323), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(1000), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411200,20 +375983,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, - [192066] = 6, + [161736] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8365), 1, - sym__newline, - ACTIONS(8370), 1, - anon_sym_else, - STATE(4905), 1, - aux_sym_shebang_repeat1, - STATE(5027), 1, + STATE(4324), 1, sym_comment, - ACTIONS(8368), 11, + ACTIONS(6875), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -411224,15 +376001,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, + [161760] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7420), 1, + aux_sym__immediate_decimal_token2, + STATE(4325), 1, + sym_comment, + ACTIONS(1735), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [192095] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [161788] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2401), 1, - sym__space, - STATE(5028), 1, + STATE(4326), 1, sym_comment, - ACTIONS(2399), 13, + ACTIONS(7540), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411244,20 +376045,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, - [192120] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161812] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_AT, - ACTIONS(8374), 1, - anon_sym_DASH2, - STATE(5029), 1, + STATE(4327), 1, sym_comment, - STATE(5436), 1, - sym_param_cmd, - ACTIONS(8372), 11, + ACTIONS(2170), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2172), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -411269,39 +376068,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192149] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161838] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2413), 1, - sym__space, - STATE(5030), 1, + ACTIONS(7619), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7621), 1, + aux_sym__immediate_decimal_token2, + STATE(4328), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(1623), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [192174] = 6, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [161868] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8258), 1, + ACTIONS(7617), 1, sym__space, - ACTIONS(8376), 1, - ts_builtin_sym_end, - STATE(5031), 1, + STATE(4329), 1, sym_comment, - STATE(5034), 1, + STATE(4361), 1, aux_sym_command_repeat1, - ACTIONS(8096), 11, + ACTIONS(7623), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411313,37 +376115,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, - [192203] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161896] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_AT, - ACTIONS(8380), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, anon_sym_DASH2, - STATE(5032), 1, + ACTIONS(7625), 1, + anon_sym_RBRACK, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4330), 1, sym_comment, - STATE(5369), 1, - sym_param_cmd, - ACTIONS(8378), 11, - anon_sym_EQ, + STATE(4370), 1, + aux_sym_shebang_repeat1, + STATE(4558), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [161948] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, sym_identifier, + ACTIONS(7560), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7564), 1, anon_sym_DOLLAR, + ACTIONS(7566), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, anon_sym_DASH_DASH, - [192232] = 4, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7627), 1, + anon_sym_RPAREN, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4331), 1, + sym_comment, + STATE(4341), 1, + aux_sym_shebang_repeat1, + STATE(4567), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [162000] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - sym__space, - STATE(5033), 1, + STATE(4332), 1, sym_comment, - ACTIONS(1687), 13, + ACTIONS(2263), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2261), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411355,19 +376208,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, - [192257] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [162026] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8382), 1, - ts_builtin_sym_end, - ACTIONS(8384), 1, - sym__space, - STATE(5034), 2, + ACTIONS(7578), 1, + anon_sym_and2, + STATE(4333), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(8104), 11, + ACTIONS(7540), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411379,14 +376229,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, - [192284] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [162052] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2417), 1, - sym__space, - STATE(5035), 1, + STATE(4334), 1, sym_comment, - ACTIONS(2415), 13, + ACTIONS(5070), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411399,17 +376249,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - [192309] = 5, + anon_sym_catch, + [162076] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2304), 1, + ACTIONS(7629), 1, + aux_sym__immediate_decimal_token2, + STATE(4335), 1, + sym_comment, + ACTIONS(1771), 3, + sym_identifier, anon_sym_DASH2, - ACTIONS(8387), 1, - anon_sym_LBRACK2, - STATE(5036), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 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, + [162104] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4336), 1, sym_comment, - ACTIONS(2308), 12, + ACTIONS(2055), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2057), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -411421,19 +376295,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192336] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162130] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8389), 1, + ACTIONS(7631), 1, + anon_sym_DOT, + ACTIONS(7633), 1, + aux_sym__immediate_decimal_token2, + STATE(4337), 1, + sym_comment, + ACTIONS(1599), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 10, sym__newline, - ACTIONS(8394), 1, - anon_sym_else, - STATE(4898), 1, - aux_sym_shebang_repeat1, - STATE(5037), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [162160] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7580), 1, + anon_sym_and2, + STATE(4338), 1, sym_comment, - ACTIONS(8392), 11, + ACTIONS(7540), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -411444,15 +376341,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, - [192365] = 4, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [162186] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__space, - STATE(5038), 1, + ACTIONS(7578), 1, + anon_sym_and2, + ACTIONS(7590), 1, + anon_sym_xor2, + STATE(4339), 1, sym_comment, - ACTIONS(2387), 13, + ACTIONS(7540), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411464,16 +376365,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, - [192390] = 4, - ACTIONS(3), 1, + anon_sym_or2, + [162214] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5228), 1, - sym__space, - STATE(5039), 1, + ACTIONS(7580), 1, + anon_sym_and2, + ACTIONS(7592), 1, + anon_sym_xor2, + STATE(4340), 1, sym_comment, - ACTIONS(5230), 13, + ACTIONS(7540), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411485,41 +376388,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_or2, + [162242] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7635), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [192415] = 4, - ACTIONS(3), 1, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4341), 1, + sym_comment, + STATE(4658), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5071), 1, + aux_sym_shebang_repeat1, + STATE(5313), 1, + sym_parameter, + [162294] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5232), 1, - sym__space, - STATE(5040), 1, + ACTIONS(2115), 1, + anon_sym_DASH2, + ACTIONS(7637), 1, + anon_sym_DOT_DOT2, + STATE(4342), 1, sym_comment, - ACTIONS(5234), 13, + ACTIONS(7639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2121), 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, - [192440] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162324] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + STATE(4343), 1, + sym_comment, + ACTIONS(1018), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1020), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8396), 1, - anon_sym_catch, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5041), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162350] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7617), 1, + sym__space, + STATE(4329), 1, + aux_sym_command_repeat1, + STATE(4344), 1, sym_comment, - ACTIONS(1310), 11, + ACTIONS(7499), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -411531,14 +376492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [192469] = 4, + anon_sym_RBRACE, + [162378] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5840), 1, + ACTIONS(4965), 1, sym__space, - STATE(5042), 1, + ACTIONS(7641), 1, + anon_sym_EQ2, + STATE(4345), 1, sym_comment, - ACTIONS(5838), 13, + ACTIONS(4967), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411552,14 +376516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [192494] = 4, + [162406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, + ACTIONS(4987), 1, sym__space, - STATE(5043), 1, + ACTIONS(7643), 1, + anon_sym_EQ2, + STATE(4346), 1, sym_comment, - ACTIONS(1034), 13, + ACTIONS(4989), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411573,18 +376539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [192519] = 6, + [162434] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8258), 1, - sym__space, - ACTIONS(8399), 1, - ts_builtin_sym_end, - STATE(4920), 1, - aux_sym_command_repeat1, - STATE(5044), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(4347), 1, sym_comment, - ACTIONS(8090), 11, + ACTIONS(2216), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2214), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411596,41 +376563,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, - [192548] = 7, + [162464] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8138), 1, + ACTIONS(7586), 1, + anon_sym_DOT_DOT2, + ACTIONS(7647), 1, + anon_sym_DASH2, + STATE(4348), 1, + sym_comment, + ACTIONS(7588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7645), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(5045), 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, + [162494] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7649), 1, + anon_sym_RBRACK, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4349), 1, sym_comment, - STATE(5492), 1, + STATE(4373), 1, aux_sym_shebang_repeat1, - ACTIONS(8141), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2552), 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, - [192579] = 5, + STATE(4551), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [162546] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7551), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - STATE(5046), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1699), 2, + ACTIONS(1802), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1687), 11, + ACTIONS(1794), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411642,37 +376646,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, - [192606] = 4, - ACTIONS(3), 1, + [162576] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2425), 1, - sym__space, - STATE(5047), 1, - sym_comment, - ACTIONS(2423), 13, + ACTIONS(7651), 1, sym__newline, + STATE(721), 1, + aux_sym__pipe_separator, + STATE(4351), 1, + sym_comment, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7654), 3, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [192631] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2429), 1, - sym__space, - STATE(5048), 1, - sym_comment, - ACTIONS(2427), 13, - sym__newline, - anon_sym_SEMI, + ACTIONS(2529), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -411682,16 +376671,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, - [192656] = 4, + [162608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, - sym__space, - STATE(5049), 1, + ACTIONS(7656), 1, + sym_long_flag_identifier, + ACTIONS(7658), 1, + anon_sym_EQ2, + STATE(4352), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(4850), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4852), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411703,16 +376695,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, - [192681] = 4, - ACTIONS(3), 1, + [162638] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2437), 1, - sym__space, - STATE(5050), 1, + ACTIONS(7580), 1, + anon_sym_and2, + ACTIONS(7592), 1, + anon_sym_xor2, + ACTIONS(7660), 1, + anon_sym_or2, + STATE(4353), 1, sym_comment, - ACTIONS(2435), 13, + ACTIONS(7505), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411724,16 +376719,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, - [192706] = 4, - ACTIONS(3), 1, + [162668] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2445), 1, - sym__space, - STATE(5051), 1, + STATE(4354), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(7662), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411746,19 +376737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - [192731] = 6, - ACTIONS(251), 1, + anon_sym_catch, + [162692] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - sym__newline, - ACTIONS(8406), 1, - anon_sym_else, - STATE(5037), 1, - aux_sym_shebang_repeat1, - STATE(5052), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4355), 1, sym_comment, - ACTIONS(8404), 11, + STATE(7206), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7463), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7461), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -411769,15 +376764,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, - [192760] = 4, + [162722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(7617), 1, sym__space, - STATE(5053), 1, + STATE(4356), 1, sym_comment, - ACTIONS(2447), 13, + STATE(4361), 1, + aux_sym_command_repeat1, + ACTIONS(7664), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411791,42 +376787,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [192785] = 4, - ACTIONS(3), 1, + [162750] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5828), 1, - sym__space, - STATE(5054), 1, + ACTIONS(2142), 1, + anon_sym_DASH2, + ACTIONS(7666), 1, + anon_sym_DOT_DOT2, + STATE(4357), 1, sym_comment, - ACTIONS(5826), 13, + ACTIONS(7668), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 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, - [192810] = 7, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162780] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8408), 1, + ACTIONS(2150), 1, + anon_sym_DASH2, + ACTIONS(7670), 1, + anon_sym_DOT_DOT2, + STATE(4358), 1, + sym_comment, + ACTIONS(7672), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(729), 1, - aux_sym__pipe_separator, - STATE(5055), 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, + [162810] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4359), 1, sym_comment, - STATE(5492), 1, - aux_sym_shebang_repeat1, - ACTIONS(8411), 2, + ACTIONS(1773), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1771), 12, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2552), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -411836,16 +376856,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, - [192841] = 5, + aux_sym_unquoted_token2, + [162836] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_DASH2, - ACTIONS(8413), 1, - anon_sym_LT, - STATE(5056), 1, + STATE(4360), 1, sym_comment, - ACTIONS(8323), 12, + ACTIONS(2174), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2176), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -411855,17 +376875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192868] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, + ACTIONS(7676), 1, sym__space, - STATE(5057), 1, + STATE(4361), 2, sym_comment, - ACTIONS(8415), 13, + aux_sym_command_repeat1, + ACTIONS(7674), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411879,15 +376901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [192893] = 4, - ACTIONS(3), 1, + [162888] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5058), 1, + STATE(4362), 1, sym_comment, - ACTIONS(1885), 2, + ACTIONS(7175), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411899,12 +376919,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, - [192917] = 3, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162912] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5059), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(4363), 1, sym_comment, - ACTIONS(5261), 13, + ACTIONS(2253), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2249), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411916,16 +376946,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, - [192939] = 4, - ACTIONS(251), 1, + [162942] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5060), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4364), 1, sym_comment, - ACTIONS(8419), 12, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4862), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411937,16 +376970,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, - [192963] = 4, + [162972] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5061), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4365), 1, sym_comment, - ACTIONS(5228), 2, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4866), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5230), 11, + ACTIONS(4868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411958,15 +376994,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, - [192987] = 4, + [163002] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5062), 1, + STATE(4366), 1, sym_comment, - ACTIONS(5232), 2, - ts_builtin_sym_end, + ACTIONS(4940), 2, sym__space, - ACTIONS(5234), 11, + anon_sym_LPAREN2, + ACTIONS(4942), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -411978,15 +377014,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, - [193011] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163028] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5063), 1, - sym_comment, - ACTIONS(1018), 2, + ACTIONS(2158), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1020), 11, + ACTIONS(7679), 1, + anon_sym_DOT_DOT2, + STATE(4367), 1, + sym_comment, + ACTIONS(7681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2164), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -411998,15 +377040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193035] = 4, + [163058] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5064), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(4368), 1, sym_comment, - ACTIONS(1036), 2, + ACTIONS(1827), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1034), 11, + ACTIONS(1819), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412018,46 +377064,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193059] = 15, + [163088] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, + ACTIONS(1004), 1, + anon_sym_DASH2, + ACTIONS(7586), 1, + anon_sym_DOT_DOT2, + STATE(4369), 1, + sym_comment, + ACTIONS(7588), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1000), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(8043), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(8049), 1, + [163118] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, anon_sym_DASH2, - ACTIONS(8421), 1, + ACTIONS(7683), 1, anon_sym_RBRACK, - STATE(4374), 1, + STATE(3894), 1, sym_param_long_flag, - STATE(4540), 1, + STATE(4073), 1, sym__param_name, - STATE(4807), 1, + STATE(4370), 1, + sym_comment, + STATE(4654), 1, aux_sym_parameter_parens_repeat1, - STATE(5065), 1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5071), 1, + aux_sym_shebang_repeat1, + STATE(5313), 1, + sym_parameter, + [163170] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7560), 1, + sym__newline, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7685), 1, + anon_sym_PIPE, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4371), 1, sym_comment, - STATE(5357), 1, + STATE(4628), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, sym_param_rest, - STATE(5364), 1, + STATE(4828), 1, sym_param_opt, - STATE(5375), 1, + STATE(4834), 1, sym_param_short_flag, - STATE(5843), 1, + STATE(5071), 1, + aux_sym_shebang_repeat1, + STATE(5313), 1, sym_parameter, - [193105] = 4, + [163222] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5066), 1, + ACTIONS(7169), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7687), 1, + anon_sym_DOT, + STATE(4372), 1, sym_comment, - ACTIONS(2393), 2, + ACTIONS(1737), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2391), 11, + ACTIONS(1735), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412069,35 +377182,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, - [193129] = 4, + [163252] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(5067), 1, - sym_comment, - ACTIONS(1014), 2, - anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1016), 11, - anon_sym_EQ, + ACTIONS(7558), 1, sym_identifier, + ACTIONS(7560), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7564), 1, anon_sym_DOLLAR, + ACTIONS(7566), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, anon_sym_DASH_DASH, - [193153] = 4, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7689), 1, + anon_sym_RBRACK, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4373), 1, + sym_comment, + STATE(4547), 1, + aux_sym_parameter_parens_repeat1, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5071), 1, + aux_sym_shebang_repeat1, + STATE(5313), 1, + sym_parameter, + [163304] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5068), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(4374), 1, sym_comment, - ACTIONS(2393), 2, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4874), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2391), 11, + ACTIONS(4876), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412109,12 +377241,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, - [193177] = 3, - ACTIONS(251), 1, + [163334] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5069), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(4375), 1, sym_comment, - ACTIONS(8423), 13, + ACTIONS(2259), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2257), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412126,39 +377265,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, - [193199] = 9, + [163364] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(4720), 1, + ACTIONS(7586), 1, anon_sym_DOT_DOT2, - ACTIONS(6720), 1, - aux_sym_unquoted_token2, - ACTIONS(8425), 1, - sym_filesize_unit, - ACTIONS(8427), 1, - sym_duration_unit, - STATE(5070), 1, + ACTIONS(7693), 1, + anon_sym_DASH2, + STATE(4376), 1, sym_comment, - ACTIONS(4722), 2, + ACTIONS(7588), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 6, + ACTIONS(7691), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [193233] = 3, + [163394] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5071), 1, + STATE(4377), 1, sym_comment, - ACTIONS(8429), 13, + ACTIONS(7279), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412170,17 +377307,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [193255] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163418] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4378), 1, + sym_comment, + ACTIONS(7175), 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, + [163442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5072), 1, + STATE(4379), 1, sym_comment, - ACTIONS(2494), 2, + ACTIONS(1729), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2492), 11, + anon_sym_LPAREN2, + ACTIONS(1727), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412192,74 +377352,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193279] = 15, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [163468] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8431), 1, - anon_sym_RBRACK, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5073), 1, + STATE(4380), 1, sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [193325] = 15, + ACTIONS(1737), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1735), 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, + aux_sym_unquoted_token2, + [163494] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8433), 1, - anon_sym_RPAREN, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5074), 1, + ACTIONS(7695), 1, + sym__newline, + STATE(721), 1, + aux_sym__pipe_separator, + STATE(4381), 1, sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [193371] = 3, - ACTIONS(251), 1, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7698), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2529), 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, + [163526] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5075), 1, + ACTIONS(2319), 1, + sym__space, + ACTIONS(7700), 1, + anon_sym_LBRACK2, + STATE(4382), 1, sym_comment, - ACTIONS(8435), 13, + ACTIONS(2315), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412273,15 +377423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [193393] = 4, + [163554] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5076), 1, - sym_comment, - ACTIONS(8229), 2, - ts_builtin_sym_end, + ACTIONS(1665), 1, sym__space, - ACTIONS(8227), 11, + ACTIONS(7045), 1, + aux_sym_unquoted_token2, + STATE(4383), 1, + sym_comment, + ACTIONS(1653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412293,46 +377444,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193417] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163582] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, + ACTIONS(2315), 1, + anon_sym_DASH2, + ACTIONS(7702), 1, + anon_sym_LBRACK2, + STATE(4384), 1, + sym_comment, + ACTIONS(2319), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(8043), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(8049), 1, + anon_sym_LBRACE, + [163609] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7704), 1, + ts_builtin_sym_end, + ACTIONS(7706), 1, + sym__space, + STATE(4385), 1, + sym_comment, + STATE(4530), 1, + aux_sym_command_repeat1, + ACTIONS(7623), 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, + [163638] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1794), 1, anon_sym_DASH2, - ACTIONS(8437), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_record_token2, + STATE(4386), 1, + sym_comment, + ACTIONS(1802), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5077), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163667] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2380), 1, + sym__space, + STATE(4387), 1, sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [193463] = 4, + ACTIONS(2378), 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, + [163692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5078), 1, - sym_comment, - ACTIONS(5836), 2, - ts_builtin_sym_end, + ACTIONS(1991), 1, sym__space, - ACTIONS(5834), 11, + STATE(4388), 1, + sym_comment, + ACTIONS(1989), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412344,17 +377554,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, - [193487] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163717] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5079), 1, + ACTIONS(7651), 1, + sym__newline, + STATE(721), 1, + aux_sym__pipe_separator, + STATE(4389), 1, sym_comment, - ACTIONS(2421), 2, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7654), 2, ts_builtin_sym_end, - sym__space, - ACTIONS(2419), 11, - sym__newline, anon_sym_SEMI, + ACTIONS(2529), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -412364,16 +377580,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, - [193511] = 4, - ACTIONS(3), 1, + [163748] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5080), 1, - sym_comment, - ACTIONS(2401), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2399), 11, + ACTIONS(5055), 1, sym__newline, + ACTIONS(7708), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4390), 1, + sym_comment, + ACTIONS(1264), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -412384,32 +377602,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, - [193535] = 4, + anon_sym_RPAREN, + [163777] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8441), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2178), 1, anon_sym_DASH2, - STATE(5081), 1, + STATE(4391), 1, sym_comment, - ACTIONS(8439), 12, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2180), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193559] = 3, + [163806] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5082), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2182), 1, + anon_sym_DASH2, + STATE(4392), 1, + sym_comment, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2184), 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, + [163835] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2348), 1, + sym__space, + STATE(4393), 1, sym_comment, - ACTIONS(8443), 13, + ACTIONS(2346), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412423,92 +377670,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [193581] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8445), 1, - anon_sym_PIPE, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5083), 1, - sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [193627] = 12, - ACTIONS(251), 1, + [163860] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(8447), 1, - anon_sym_DOT, - ACTIONS(8451), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8453), 1, - aux_sym__immediate_decimal_token5, - STATE(5084), 1, + ACTIONS(7706), 1, + sym__space, + ACTIONS(7711), 1, + ts_builtin_sym_end, + STATE(4385), 1, + aux_sym_command_repeat1, + STATE(4394), 1, sym_comment, - STATE(6354), 1, - sym__immediate_decimal, - ACTIONS(1579), 2, + ACTIONS(7499), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8449), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6329), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193667] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [163889] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1034), 1, - anon_sym_DASH2, - STATE(5085), 1, + ACTIONS(7297), 1, + sym__space, + STATE(4395), 1, sym_comment, - ACTIONS(1036), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7295), 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_LBRACE, - [193691] = 3, + anon_sym_RBRACE, + [163914] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5086), 1, - sym_comment, - ACTIONS(8455), 13, + ACTIONS(7713), 1, sym__newline, + ACTIONS(7718), 1, + anon_sym_catch, + STATE(4396), 1, + sym_comment, + STATE(4425), 1, + aux_sym_shebang_repeat1, + ACTIONS(7716), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -412520,13 +377737,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, - [193713] = 3, - ACTIONS(251), 1, + [163943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5087), 1, + ACTIONS(1999), 1, + sym__space, + STATE(4397), 1, sym_comment, - ACTIONS(8457), 13, + ACTIONS(1997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412540,32 +377758,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [193735] = 4, - ACTIONS(251), 1, + [163968] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_DASH2, - STATE(5088), 1, + ACTIONS(2487), 1, + sym__space, + STATE(4398), 1, sym_comment, - ACTIONS(8323), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2485), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193759] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [163993] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5089), 1, + ACTIONS(7706), 1, + sym__space, + ACTIONS(7720), 1, + ts_builtin_sym_end, + STATE(4399), 1, sym_comment, - ACTIONS(7181), 13, + STATE(4530), 1, + aux_sym_command_repeat1, + ACTIONS(7664), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412577,16 +377802,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, + [164022] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + anon_sym_DASH2, + STATE(4400), 1, + sym_comment, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2188), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [193781] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [164051] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2399), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2190), 1, anon_sym_DASH2, - STATE(5090), 1, + STATE(4401), 1, sym_comment, - ACTIONS(2401), 12, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2192), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -412598,16 +377848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [193805] = 4, + [164080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5091), 1, - sym_comment, - ACTIONS(2078), 2, - ts_builtin_sym_end, + ACTIONS(2164), 1, sym__space, - ACTIONS(2072), 11, + STATE(4402), 1, + sym_comment, + ACTIONS(2158), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412619,15 +377867,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, - [193829] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5092), 1, - sym_comment, - ACTIONS(5188), 2, - ts_builtin_sym_end, + ACTIONS(2368), 1, sym__space, - ACTIONS(5190), 11, + STATE(4403), 1, + sym_comment, + ACTIONS(2366), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412639,15 +377888,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, - [193853] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164130] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5093), 1, - sym_comment, - ACTIONS(2425), 2, - ts_builtin_sym_end, + ACTIONS(2419), 1, sym__space, - ACTIONS(2423), 11, + STATE(4404), 1, + sym_comment, + ACTIONS(2417), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412659,15 +377909,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, - [193877] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164155] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5094), 1, - sym_comment, - ACTIONS(2429), 2, - ts_builtin_sym_end, + ACTIONS(2427), 1, sym__space, - ACTIONS(2427), 11, + STATE(4405), 1, + sym_comment, + ACTIONS(2425), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412679,15 +377930,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, - [193901] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164180] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5095), 1, + ACTIONS(1621), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2218), 1, + anon_sym_DASH2, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(4406), 1, sym_comment, - ACTIONS(2405), 2, - ts_builtin_sym_end, + ACTIONS(2222), 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, + [164209] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2443), 1, sym__space, - ACTIONS(2403), 11, + STATE(4407), 1, + sym_comment, + ACTIONS(2441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412699,15 +377974,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, - [193925] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164234] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5096), 1, - sym_comment, - ACTIONS(2433), 2, - ts_builtin_sym_end, + ACTIONS(2431), 1, sym__space, - ACTIONS(2431), 11, + STATE(4408), 1, + sym_comment, + ACTIONS(2429), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412719,15 +377995,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, - [193949] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164259] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5097), 1, + ACTIONS(7724), 1, + anon_sym_catch, + STATE(4409), 1, sym_comment, - ACTIONS(2437), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2435), 11, + ACTIONS(7722), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412739,15 +378016,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, - [193973] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164284] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5098), 1, - sym_comment, - ACTIONS(2445), 2, - ts_builtin_sym_end, + ACTIONS(2435), 1, sym__space, - ACTIONS(2443), 11, + STATE(4410), 1, + sym_comment, + ACTIONS(2433), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412759,16 +378037,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, - [193997] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164309] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5099), 1, - sym_comment, - ACTIONS(2449), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2447), 11, + ACTIONS(5055), 1, sym__newline, + ACTIONS(7726), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4411), 1, + sym_comment, + ACTIONS(1264), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -412779,15 +378061,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, - [194021] = 4, + anon_sym_RPAREN, + [164338] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5100), 1, - sym_comment, - ACTIONS(2441), 2, - ts_builtin_sym_end, + ACTIONS(5609), 1, sym__space, - ACTIONS(2439), 11, + STATE(4412), 1, + sym_comment, + ACTIONS(5607), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412799,15 +378081,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, - [194045] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5101), 1, - sym_comment, - ACTIONS(5192), 2, - ts_builtin_sym_end, + ACTIONS(7731), 1, sym__space, - ACTIONS(5194), 11, + STATE(4413), 1, + sym_comment, + ACTIONS(7729), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412819,15 +378102,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, - [194069] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164388] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, - anon_sym_catch, - STATE(5102), 1, + ACTIONS(7361), 1, + sym__space, + STATE(4414), 1, sym_comment, - ACTIONS(8353), 12, - ts_builtin_sym_end, + ACTIONS(7359), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412839,15 +378123,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, - [194093] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5103), 1, - sym_comment, - ACTIONS(1943), 2, - ts_builtin_sym_end, + ACTIONS(5613), 1, sym__space, - ACTIONS(1941), 11, + STATE(4415), 1, + sym_comment, + ACTIONS(5611), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412859,16 +378144,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, - [194117] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164438] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_QMARK, - ACTIONS(8465), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(7647), 1, anon_sym_DASH2, - STATE(5104), 1, + STATE(4416), 1, sym_comment, - ACTIONS(8461), 11, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7645), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -412880,15 +378169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194143] = 4, + [164467] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5105), 1, - sym_comment, - ACTIONS(2506), 2, - ts_builtin_sym_end, + ACTIONS(7735), 1, sym__space, - ACTIONS(2504), 11, + STATE(4417), 1, + sym_comment, + ACTIONS(7733), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412900,15 +378188,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, - [194167] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5106), 1, - sym_comment, - ACTIONS(2510), 2, - ts_builtin_sym_end, + ACTIONS(7739), 1, sym__space, - ACTIONS(2508), 11, + STATE(4418), 1, + sym_comment, + ACTIONS(7737), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412920,55 +378209,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, - [194191] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2458), 1, - anon_sym_DASH2, - STATE(5107), 1, - sym_comment, - ACTIONS(2460), 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_LBRACE, - [194215] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [164517] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2466), 1, - anon_sym_DASH2, - STATE(5108), 1, + ACTIONS(7743), 1, + sym__space, + STATE(4419), 1, sym_comment, - ACTIONS(2468), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7741), 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_LBRACE, - [194239] = 4, + anon_sym_RBRACE, + [164542] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5109), 1, - sym_comment, - ACTIONS(1893), 2, - ts_builtin_sym_end, + ACTIONS(7747), 1, sym__space, - ACTIONS(1891), 11, + STATE(4420), 1, + sym_comment, + ACTIONS(7745), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -412980,45 +378251,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, - [194263] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1565), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8469), 1, - anon_sym_DOT, - ACTIONS(8471), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8473), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8475), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8477), 1, - aux_sym__immediate_decimal_token5, - STATE(5110), 1, - sym_comment, - STATE(6034), 1, - sym__immediate_decimal, - STATE(6278), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194307] = 4, + [164567] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5111), 1, - sym_comment, - ACTIONS(1897), 2, - ts_builtin_sym_end, + ACTIONS(7463), 1, sym__space, - ACTIONS(1895), 11, + STATE(4421), 1, + sym_comment, + ACTIONS(7461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413030,35 +378272,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, - [194331] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164592] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8481), 1, - anon_sym_DASH2, - STATE(5112), 1, - sym_comment, - ACTIONS(8479), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7749), 1, sym__newline, + ACTIONS(7754), 1, + anon_sym_else, + STATE(4422), 1, + sym_comment, + STATE(4457), 1, + aux_sym_shebang_repeat1, + ACTIONS(7752), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194355] = 4, + [164621] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5113), 1, - sym_comment, - ACTIONS(5828), 2, - ts_builtin_sym_end, + ACTIONS(2352), 1, sym__space, - ACTIONS(5826), 11, + STATE(4423), 1, + sym_comment, + ACTIONS(2350), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413070,15 +378316,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, - [194379] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5114), 1, - sym_comment, - ACTIONS(2361), 2, - ts_builtin_sym_end, + ACTIONS(2003), 1, sym__space, - ACTIONS(2359), 11, + STATE(4424), 1, + sym_comment, + ACTIONS(2001), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413090,35 +378337,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, - [194403] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164671] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_DASH2, - STATE(5115), 1, - sym_comment, - ACTIONS(8483), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7756), 1, sym__newline, + ACTIONS(7761), 1, + anon_sym_catch, + STATE(4425), 1, + sym_comment, + STATE(4461), 1, + aux_sym_shebang_repeat1, + ACTIONS(7759), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194427] = 4, + [164700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5116), 1, - sym_comment, - ACTIONS(1919), 2, - ts_builtin_sym_end, + ACTIONS(2340), 1, sym__space, - ACTIONS(1917), 11, + STATE(4426), 1, + sym_comment, + ACTIONS(2338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413130,16 +378381,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, - [194451] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164725] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5117), 1, - sym_comment, - ACTIONS(2365), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2363), 11, + ACTIONS(7763), 1, sym__newline, + ACTIONS(7768), 1, + anon_sym_catch, + STATE(4427), 1, + sym_comment, + STATE(4462), 1, + aux_sym_shebang_repeat1, + ACTIONS(7766), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -413150,35 +378405,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, - [194475] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + [164754] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2482), 1, - anon_sym_DASH2, - STATE(5118), 1, + STATE(4428), 1, sym_comment, - ACTIONS(2484), 12, + ACTIONS(2261), 7, anon_sym_EQ, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token4, + ACTIONS(2263), 7, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [194499] = 4, + anon_sym_LPAREN2, + [164779] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5119), 1, - sym_comment, - ACTIONS(2369), 2, - ts_builtin_sym_end, + ACTIONS(1959), 1, sym__space, - ACTIONS(2367), 11, + STATE(4429), 1, + sym_comment, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413190,15 +378446,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, - [194523] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164804] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5120), 1, - sym_comment, - ACTIONS(1927), 2, - ts_builtin_sym_end, + ACTIONS(5074), 1, sym__space, - ACTIONS(1925), 11, + STATE(4430), 1, + sym_comment, + ACTIONS(5076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413210,32 +378467,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, - [194547] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - STATE(5121), 1, - sym_comment, - ACTIONS(1951), 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_LBRACE, - [194571] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [164829] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5122), 1, + ACTIONS(5078), 1, + sym__space, + STATE(4431), 1, sym_comment, - ACTIONS(8487), 13, + ACTIONS(5080), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413249,46 +378490,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [194593] = 15, - ACTIONS(251), 1, + [164854] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8037), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym__unquoted_in_record_token4, + STATE(4432), 1, + sym_comment, + ACTIONS(2249), 6, + anon_sym_EQ, sym_identifier, - ACTIONS(8043), 1, anon_sym_DOLLAR, - ACTIONS(8045), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(8049), 1, anon_sym_DASH2, - ACTIONS(8170), 1, + ACTIONS(2253), 6, + sym__newline, anon_sym_PIPE, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5123), 1, - sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [194639] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [164883] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5124), 1, - sym_comment, - ACTIONS(1935), 2, - ts_builtin_sym_end, + ACTIONS(1947), 1, sym__space, - ACTIONS(1933), 11, + STATE(4433), 1, + sym_comment, + ACTIONS(1945), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413300,15 +378532,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, - [194663] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164908] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5125), 1, - sym_comment, - ACTIONS(2373), 2, - ts_builtin_sym_end, + ACTIONS(2415), 1, sym__space, - ACTIONS(2371), 11, + STATE(4434), 1, + sym_comment, + ACTIONS(2413), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413320,15 +378553,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, - [194687] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164933] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5126), 1, - sym_comment, - ACTIONS(2377), 2, - ts_builtin_sym_end, + ACTIONS(2439), 1, sym__space, - ACTIONS(2375), 11, + STATE(4435), 1, + sym_comment, + ACTIONS(2437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413340,16 +378574,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, - [194711] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164958] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5127), 1, - sym_comment, - ACTIONS(1939), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1937), 11, + ACTIONS(7770), 1, sym__newline, + ACTIONS(7772), 1, + sym__space, + STATE(4436), 1, + sym_comment, + STATE(4517), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7774), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -413360,36 +378598,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, - [194735] = 4, + anon_sym_RPAREN, + [164987] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH2, - STATE(5128), 1, - sym_comment, - ACTIONS(2456), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7776), 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_LBRACE, - [194759] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5129), 1, + ACTIONS(7781), 1, + anon_sym_else, + STATE(4437), 1, sym_comment, - ACTIONS(2043), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2041), 11, - sym__newline, + STATE(4540), 1, + aux_sym_shebang_repeat1, + ACTIONS(7779), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -413400,15 +378621,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, - [194783] = 4, + anon_sym_RPAREN, + [165016] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5130), 1, - sym_comment, - ACTIONS(2381), 2, - ts_builtin_sym_end, + ACTIONS(7785), 1, sym__space, - ACTIONS(2379), 11, + STATE(4438), 1, + sym_comment, + ACTIONS(7783), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413420,15 +378641,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, - [194807] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165041] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5131), 1, - sym_comment, - ACTIONS(2385), 2, - ts_builtin_sym_end, + ACTIONS(5619), 1, sym__space, - ACTIONS(2383), 11, + STATE(4439), 1, + sym_comment, + ACTIONS(5617), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413440,34 +378662,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, - [194831] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165066] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_DASH2, - STATE(5132), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym__unquoted_in_record_token4, + STATE(4440), 1, sym_comment, - ACTIONS(8489), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1000), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(1004), 6, + anon_sym_EQ, + sym_identifier, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [194855] = 4, - ACTIONS(251), 1, + anon_sym_DASH2, + [165095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5133), 1, + ACTIONS(2340), 1, + sym__space, + STATE(4441), 1, sym_comment, - ACTIONS(8493), 12, + ACTIONS(2338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413480,42 +378707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194879] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4706), 1, - anon_sym_DOT, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(5134), 1, - sym_comment, - STATE(6328), 1, - sym__immediate_decimal, - ACTIONS(8292), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6327), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194917] = 4, + anon_sym_RBRACE, + [165120] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5135), 1, - sym_comment, - ACTIONS(2530), 2, - ts_builtin_sym_end, + ACTIONS(2356), 1, sym__space, - ACTIONS(2528), 11, + STATE(4442), 1, + sym_comment, + ACTIONS(2354), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413527,15 +378727,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, - [194941] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165145] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5136), 1, - sym_comment, - ACTIONS(7741), 2, - ts_builtin_sym_end, + ACTIONS(4995), 1, sym__space, - ACTIONS(7739), 11, + STATE(4443), 1, + sym_comment, + ACTIONS(4997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413547,15 +378748,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, - [194965] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5137), 1, - sym_comment, - ACTIONS(1699), 2, - ts_builtin_sym_end, + ACTIONS(4999), 1, sym__space, - ACTIONS(1687), 11, + STATE(4444), 1, + sym_comment, + ACTIONS(5001), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413567,75 +378769,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, - [194989] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_DASH2, - STATE(5138), 1, - sym_comment, - ACTIONS(8495), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195013] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8501), 1, - anon_sym_DASH2, - STATE(5139), 1, - sym_comment, - ACTIONS(8499), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195037] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165195] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, - anon_sym_DASH2, - STATE(5140), 1, + ACTIONS(2360), 1, + sym__space, + STATE(4445), 1, sym_comment, - ACTIONS(8503), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2358), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195061] = 4, + anon_sym_RBRACE, + [165220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5141), 1, + STATE(4446), 1, sym_comment, - ACTIONS(2389), 2, + ACTIONS(4983), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2387), 11, + anon_sym_LPAREN2, + ACTIONS(4985), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413647,12 +378813,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, - [195085] = 3, - ACTIONS(251), 1, + [165245] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5142), 1, + ACTIONS(2384), 1, + sym__space, + STATE(4447), 1, sym_comment, - ACTIONS(8507), 13, + ACTIONS(2382), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413666,54 +378834,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [195107] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2470), 1, - anon_sym_DASH2, - STATE(5143), 1, - sym_comment, - ACTIONS(2472), 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_LBRACE, - [195131] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8511), 1, - anon_sym_DASH2, - STATE(5144), 1, - sym_comment, - ACTIONS(8509), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195155] = 4, + [165270] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8515), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2214), 1, anon_sym_DASH2, - STATE(5145), 1, + STATE(4448), 1, sym_comment, - ACTIONS(8513), 12, + ACTIONS(2216), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -413723,15 +378855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195179] = 3, - ACTIONS(251), 1, + [165299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5146), 1, + ACTIONS(2015), 1, + sym__space, + STATE(4449), 1, sym_comment, - ACTIONS(8517), 13, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413745,156 +378878,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [195201] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(7625), 1, - aux_sym__unquoted_in_record_token2, - STATE(5147), 1, - sym_comment, - ACTIONS(1699), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195227] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_DASH2, - STATE(5148), 1, - sym_comment, - ACTIONS(8519), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195251] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2334), 1, - anon_sym_DASH2, - STATE(5149), 1, - sym_comment, - ACTIONS(2336), 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, - [195275] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8525), 1, - anon_sym_DASH2, - STATE(5150), 1, - sym_comment, - ACTIONS(8523), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195299] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8529), 1, - anon_sym_DASH2, - STATE(5151), 1, - sym_comment, - ACTIONS(8527), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195323] = 4, - ACTIONS(251), 1, + [165324] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, - anon_sym_DASH2, - STATE(5152), 1, + ACTIONS(2364), 1, + sym__space, + STATE(4450), 1, sym_comment, - ACTIONS(8531), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2362), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195347] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165349] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, - anon_sym_DASH2, - STATE(5153), 1, + ACTIONS(2388), 1, + sym__space, + STATE(4451), 1, sym_comment, - ACTIONS(8535), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2386), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195371] = 4, + anon_sym_RBRACE, + [165374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5154), 1, - sym_comment, - ACTIONS(1951), 2, - ts_builtin_sym_end, + ACTIONS(2392), 1, sym__space, - ACTIONS(1949), 11, + STATE(4452), 1, + sym_comment, + ACTIONS(2390), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -413906,54 +378939,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, - [195395] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8541), 1, - anon_sym_DASH2, - STATE(5155), 1, - sym_comment, - ACTIONS(8539), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195419] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165399] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_DASH2, - STATE(5156), 1, + ACTIONS(2019), 1, + sym__space, + STATE(4453), 1, sym_comment, - ACTIONS(8543), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2017), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195443] = 3, + anon_sym_RBRACE, + [165424] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5157), 1, - sym_comment, - ACTIONS(8547), 13, + ACTIONS(7787), 1, sym__newline, + STATE(737), 1, + aux_sym__pipe_separator, + STATE(4454), 1, + sym_comment, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7790), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2529), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -413963,18 +378986,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, - [195465] = 4, + [165455] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5158), 1, + STATE(4455), 1, sym_comment, - ACTIONS(2456), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2454), 11, + ACTIONS(5628), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -413985,115 +379004,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, - [195489] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [165478] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, - anon_sym_DASH2, - STATE(5159), 1, - sym_comment, - ACTIONS(8549), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7770), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195513] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_DASH2, - STATE(5160), 1, + ACTIONS(7772), 1, + sym__space, + STATE(4456), 1, sym_comment, - ACTIONS(8553), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4511), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7792), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195537] = 4, + [165507] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8559), 1, - anon_sym_DASH2, - STATE(5161), 1, - sym_comment, - ACTIONS(8557), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7794), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195561] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_DASH2, - STATE(5162), 1, + ACTIONS(7799), 1, + anon_sym_else, + STATE(4411), 1, + aux_sym_shebang_repeat1, + STATE(4457), 1, sym_comment, - ACTIONS(8561), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7797), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195585] = 4, + [165536] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2462), 1, - anon_sym_DASH2, - STATE(5163), 1, - sym_comment, - ACTIONS(2464), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7801), 1, sym__newline, + ACTIONS(7806), 1, + anon_sym_else, + STATE(4437), 1, + aux_sym_shebang_repeat1, + STATE(4458), 1, + sym_comment, + ACTIONS(7804), 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_LBRACE, - [195609] = 4, + [165565] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5164), 1, + ACTIONS(7808), 1, + anon_sym_LBRACK2, + STATE(4459), 1, sym_comment, - ACTIONS(1959), 2, + ACTIONS(2319), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1957), 11, + ACTIONS(2315), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414105,36 +379097,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, - [195633] = 4, + [165592] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8567), 1, - anon_sym_DASH2, - STATE(5165), 1, - sym_comment, - ACTIONS(8565), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7810), 1, sym__newline, + ACTIONS(7815), 1, + anon_sym_else, + STATE(4460), 1, + sym_comment, + STATE(4490), 1, + aux_sym_shebang_repeat1, + ACTIONS(7813), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195657] = 4, - ACTIONS(3), 1, + [165621] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5166), 1, - sym_comment, - ACTIONS(5840), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5838), 11, + ACTIONS(5055), 1, sym__newline, + ACTIONS(7817), 1, + anon_sym_catch, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4461), 1, + sym_comment, + ACTIONS(1264), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -414145,15 +379142,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, - [195681] = 4, + anon_sym_RPAREN, + [165650] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5060), 1, - aux_sym_shebang_repeat1, - STATE(5167), 1, - sym_comment, - ACTIONS(8569), 12, + ACTIONS(7820), 1, sym__newline, + ACTIONS(7825), 1, + anon_sym_catch, + STATE(4462), 1, + sym_comment, + STATE(4496), 1, + aux_sym_shebang_repeat1, + ACTIONS(7823), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -414165,54 +379166,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [195705] = 4, - ACTIONS(251), 1, + [165679] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8573), 1, - anon_sym_DASH2, - STATE(5168), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym__unquoted_in_record_token4, + STATE(4463), 1, sym_comment, - ACTIONS(8571), 12, + ACTIONS(2257), 6, anon_sym_EQ, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195729] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2391), 1, anon_sym_DASH2, - STATE(5169), 1, - sym_comment, - ACTIONS(2393), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2259), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195753] = 4, + [165708] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(7693), 1, anon_sym_DASH2, - STATE(5170), 1, + STATE(4464), 1, sym_comment, - ACTIONS(2393), 12, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7691), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -414224,15 +379212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195777] = 4, + [165737] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8577), 1, + ACTIONS(7829), 1, + anon_sym_LT, + ACTIONS(7831), 1, anon_sym_DASH2, - STATE(5171), 1, + STATE(4465), 1, sym_comment, - ACTIONS(8575), 12, + ACTIONS(7827), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -414245,14 +379234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195801] = 4, + [165764] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2486), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(7584), 1, anon_sym_DASH2, - STATE(5172), 1, + STATE(4466), 1, sym_comment, - ACTIONS(2488), 12, + STATE(7338), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7582), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -414264,17 +379257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195825] = 4, + [165793] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5173), 1, + STATE(4467), 1, sym_comment, - ACTIONS(2472), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2470), 11, + ACTIONS(5650), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -414285,35 +379275,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, - [195849] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [165816] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_DASH2, - STATE(5174), 1, + STATE(4468), 1, sym_comment, - ACTIONS(8579), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5070), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195873] = 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_else, + anon_sym_catch, + [165839] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5175), 1, - sym_comment, - ACTIONS(2476), 2, - ts_builtin_sym_end, + ACTIONS(5630), 1, sym__space, - ACTIONS(2474), 11, + STATE(4469), 1, + sym_comment, + ACTIONS(5628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414325,15 +379316,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, - [195897] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165864] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5176), 1, + ACTIONS(7833), 1, + anon_sym_EQ2, + STATE(4470), 1, sym_comment, - ACTIONS(2480), 2, + ACTIONS(4987), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2478), 11, + ACTIONS(4989), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414345,14 +379340,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, - [195921] = 4, + [165891] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2492), 1, + ACTIONS(7831), 1, anon_sym_DASH2, - STATE(5177), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4471), 1, sym_comment, - ACTIONS(2494), 12, + ACTIONS(7827), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -414362,15 +379359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [195945] = 3, - ACTIONS(251), 1, + [165918] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5178), 1, + ACTIONS(2491), 1, + sym__space, + STATE(4472), 1, sym_comment, - ACTIONS(7157), 13, + ACTIONS(2489), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414384,15 +379383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [195967] = 4, + [165943] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5179), 1, - sym_comment, - ACTIONS(2397), 2, - ts_builtin_sym_end, + ACTIONS(7839), 1, sym__space, - ACTIONS(2395), 11, + STATE(4473), 1, + sym_comment, + ACTIONS(7837), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414404,64 +379402,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195991] = 13, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165968] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4079), 1, - anon_sym_DOLLAR, - ACTIONS(8583), 1, + ACTIONS(7770), 1, sym__newline, - ACTIONS(8585), 1, + ACTIONS(7772), 1, sym__space, - ACTIONS(8587), 1, - anon_sym_DASH_DASH, - ACTIONS(8589), 1, - anon_sym_DASH2, - ACTIONS(8591), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - STATE(1854), 1, - sym_val_closure, - STATE(5180), 1, + STATE(4456), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4474), 1, sym_comment, - STATE(6038), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(790), 2, - sym__blosure, - sym_val_variable, - STATE(8157), 2, - sym_short_flag, - sym_long_flag, - [196033] = 4, + ACTIONS(7841), 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, + [165997] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_DASH2, - STATE(5181), 1, + ACTIONS(7843), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7845), 1, + aux_sym__immediate_decimal_token2, + STATE(4475), 1, sym_comment, - ACTIONS(8593), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1623), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - [196057] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [166026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5182), 1, - sym_comment, - ACTIONS(2096), 2, - ts_builtin_sym_end, + ACTIONS(2156), 1, sym__space, - ACTIONS(2090), 11, + STATE(4476), 1, + sym_comment, + ACTIONS(2150), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414473,15 +379469,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, - [196081] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5183), 1, - sym_comment, - ACTIONS(2104), 2, - ts_builtin_sym_end, + ACTIONS(2336), 1, sym__space, - ACTIONS(2098), 11, + STATE(4477), 1, + sym_comment, + ACTIONS(2334), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414493,84 +379490,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196105] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - sym__entry_separator, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8597), 1, - anon_sym_DOT, - ACTIONS(8599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8601), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - STATE(5184), 1, - sym_comment, - STATE(6269), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(6267), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196147] = 4, + [166076] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - STATE(5185), 1, + ACTIONS(7847), 1, + anon_sym_DOT, + ACTIONS(7849), 1, + aux_sym__immediate_decimal_token2, + STATE(4478), 1, sym_comment, - ACTIONS(1943), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1599), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196171] = 5, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [166105] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8240), 1, + ACTIONS(7633), 1, aux_sym__immediate_decimal_token2, - STATE(5186), 1, + STATE(4479), 1, sym_comment, - ACTIONS(1669), 3, + ACTIONS(1599), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1671), 9, - ts_builtin_sym_end, + ACTIONS(1601), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [196197] = 4, + [166132] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, - STATE(5187), 1, + STATE(4480), 1, sym_comment, - ACTIONS(2405), 12, + ACTIONS(1735), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -414582,16 +379557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196221] = 4, + anon_sym_LPAREN2, + [166157] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5188), 1, - sym_comment, - ACTIONS(2137), 2, - ts_builtin_sym_end, + ACTIONS(1000), 1, sym__space, - ACTIONS(2131), 11, + STATE(4481), 1, + sym_comment, + ACTIONS(1004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414603,75 +379577,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196245] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2504), 1, - anon_sym_DASH2, - STATE(5189), 1, - sym_comment, - ACTIONS(2506), 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_LBRACE, - [196269] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [166182] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, - anon_sym_DASH2, - STATE(5190), 1, + ACTIONS(2344), 1, + sym__space, + STATE(4482), 1, sym_comment, - ACTIONS(2441), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2342), 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_LBRACE, - [196293] = 4, + anon_sym_RBRACE, + [166207] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_DASH2, - STATE(5191), 1, - sym_comment, - ACTIONS(8607), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5055), 1, sym__newline, + ACTIONS(7851), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4483), 1, + sym_comment, + ACTIONS(1264), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196317] = 4, + [166236] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5192), 1, - sym_comment, - ACTIONS(5220), 2, - ts_builtin_sym_end, + ACTIONS(7706), 1, sym__space, - ACTIONS(5222), 11, + ACTIONS(7854), 1, + ts_builtin_sym_end, + STATE(4399), 1, + aux_sym_command_repeat1, + STATE(4484), 1, + sym_comment, + ACTIONS(7615), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414683,14 +379646,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, - [196341] = 4, + [166265] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(7858), 1, + anon_sym_AT, + ACTIONS(7860), 1, anon_sym_DASH2, - STATE(5193), 1, + STATE(4485), 1, sym_comment, - ACTIONS(2510), 12, + STATE(4804), 1, + sym_param_cmd, + ACTIONS(7856), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -414702,15 +379669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196365] = 4, + [166294] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8613), 1, + ACTIONS(7858), 1, + anon_sym_AT, + ACTIONS(7860), 1, anon_sym_DASH2, - STATE(5194), 1, + STATE(4486), 1, sym_comment, - ACTIONS(8611), 12, + STATE(4805), 1, + sym_param_cmd, + ACTIONS(7856), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -414720,17 +379690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196389] = 4, + [166323] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - STATE(5195), 1, + STATE(4487), 1, sym_comment, - ACTIONS(1885), 12, + ACTIONS(1727), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -414742,35 +379712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196413] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5196), 1, - sym_comment, - ACTIONS(5224), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5226), 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, - [196437] = 4, + anon_sym_LPAREN2, + [166348] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(7858), 1, + anon_sym_AT, + ACTIONS(7864), 1, anon_sym_DASH2, - STATE(5197), 1, + STATE(4488), 1, sym_comment, - ACTIONS(1893), 12, + STATE(4872), 1, + sym_param_cmd, + ACTIONS(7862), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -414782,85 +379736,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196461] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACK, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8601), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8615), 1, - anon_sym_DOT, - STATE(5198), 1, - sym_comment, - STATE(6016), 1, - sym__immediate_decimal, - STATE(6278), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196505] = 4, + [166377] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_DASH2, - STATE(5199), 1, + ACTIONS(7866), 1, + aux_sym__immediate_decimal_token2, + STATE(4489), 1, sym_comment, - ACTIONS(8617), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1709), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196529] = 4, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [166404] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - STATE(5200), 1, - sym_comment, - ACTIONS(1897), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7868), 1, sym__newline, + ACTIONS(7873), 1, + anon_sym_else, + STATE(4390), 1, + aux_sym_shebang_repeat1, + STATE(4490), 1, + sym_comment, + ACTIONS(7871), 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_LBRACE, - [196553] = 3, + [166433] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5201), 1, - sym_comment, - ACTIONS(8229), 13, + ACTIONS(7875), 1, sym__newline, + STATE(737), 1, + aux_sym__pipe_separator, + STATE(4491), 1, + sym_comment, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7878), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2529), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -414870,16 +379805,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, - [196575] = 4, + [166464] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8623), 1, - anon_sym_DASH2, - STATE(5202), 1, + STATE(4492), 1, sym_comment, - ACTIONS(8621), 12, + ACTIONS(1771), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -414889,17 +379823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196599] = 4, + anon_sym_LPAREN2, + [166489] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_DASH2, - STATE(5203), 1, + STATE(4493), 1, sym_comment, - ACTIONS(8625), 12, + ACTIONS(1786), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1788), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -414909,77 +379844,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196623] = 4, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [166514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - anon_sym_DASH2, - STATE(5204), 1, + STATE(4494), 1, sym_comment, - ACTIONS(8629), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4940), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4942), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196647] = 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, + [166539] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_DASH2, - STATE(5205), 1, - sym_comment, - ACTIONS(8633), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7880), 1, sym__newline, + ACTIONS(7885), 1, + anon_sym_else, + STATE(4495), 1, + sym_comment, + STATE(4543), 1, + aux_sym_shebang_repeat1, + ACTIONS(7883), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196671] = 4, + [166568] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2359), 1, - anon_sym_DASH2, - STATE(5206), 1, - sym_comment, - ACTIONS(2361), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5055), 1, sym__newline, + ACTIONS(7887), 1, + anon_sym_catch, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4496), 1, + sym_comment, + ACTIONS(1264), 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_LBRACE, - [196695] = 4, + [166597] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, + ACTIONS(7617), 1, sym__space, - STATE(5207), 1, + STATE(4361), 1, + aux_sym_command_repeat1, + STATE(4497), 1, sym_comment, - ACTIONS(8637), 12, + ACTIONS(7623), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -414991,15 +379935,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, - [196719] = 4, + anon_sym_RBRACE, + [166624] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(7858), 1, + anon_sym_AT, + ACTIONS(7892), 1, anon_sym_DASH2, - STATE(5208), 1, + STATE(4498), 1, sym_comment, - ACTIONS(1919), 12, + STATE(4869), 1, + sym_param_cmd, + ACTIONS(7890), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -415011,16 +379959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196743] = 4, + [166653] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5209), 1, - sym_comment, - ACTIONS(2498), 2, - ts_builtin_sym_end, + ACTIONS(2372), 1, sym__space, - ACTIONS(2496), 11, + STATE(4499), 1, + sym_comment, + ACTIONS(2370), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415032,15 +379978,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, - [196767] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166678] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5210), 1, + ACTIONS(7124), 1, + aux_sym_unquoted_token2, + STATE(4500), 1, sym_comment, - ACTIONS(8361), 2, + ACTIONS(1665), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8359), 11, + ACTIONS(1653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415052,237 +380002,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196791] = 4, - ACTIONS(251), 1, + [166705] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, - anon_sym_DASH2, - STATE(5211), 1, + ACTIONS(2447), 1, + sym__space, + STATE(4501), 1, sym_comment, - ACTIONS(8641), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2445), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196815] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [166730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2363), 1, - anon_sym_DASH2, - STATE(5212), 1, + ACTIONS(2451), 1, + sym__space, + STATE(4502), 1, sym_comment, - ACTIONS(2365), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2449), 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_LBRACE, - [196839] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [166755] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - anon_sym_DASH2, - STATE(5213), 1, + ACTIONS(7894), 1, + anon_sym_EQ2, + STATE(4503), 1, sym_comment, - ACTIONS(8645), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4965), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4967), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [196863] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [166782] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, - anon_sym_DASH2, - STATE(5214), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym__unquoted_in_record_token4, + STATE(4504), 1, sym_comment, - ACTIONS(2369), 12, + ACTIONS(2241), 6, 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_LBRACE, - [196887] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1925), 1, anon_sym_DASH2, - STATE(5215), 1, - sym_comment, - ACTIONS(1927), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2245), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [196911] = 5, + [166811] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8649), 1, - aux_sym__immediate_decimal_token2, - STATE(5216), 1, + STATE(4505), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 9, + ACTIONS(7662), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [196937] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - STATE(5217), 1, - sym_comment, - ACTIONS(1935), 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_LBRACE, - [196961] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2474), 1, - anon_sym_DASH2, - STATE(5218), 1, - sym_comment, - ACTIONS(2476), 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_LBRACE, - [196985] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_DASH2, - STATE(5219), 1, - sym_comment, - ACTIONS(2373), 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_LBRACE, - [197009] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_else, + anon_sym_catch, + [166834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, - anon_sym_DASH2, - STATE(5220), 1, + ACTIONS(2423), 1, + sym__space, + STATE(4506), 1, sym_comment, - ACTIONS(2377), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2421), 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_LBRACE, - [197033] = 4, + anon_sym_RBRACE, + [166859] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH2, - STATE(5221), 1, + ACTIONS(7181), 1, + anon_sym_DOT, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token2, + STATE(4507), 1, sym_comment, - ACTIONS(2480), 12, - anon_sym_EQ, + ACTIONS(1735), 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, - anon_sym_LBRACE, - [197057] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1937), 1, anon_sym_DASH2, - STATE(5222), 1, - sym_comment, - ACTIONS(1939), 12, + ACTIONS(1737), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -415292,13 +380153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [197081] = 3, - ACTIONS(251), 1, + [166888] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5223), 1, + ACTIONS(2148), 1, + sym__space, + STATE(4508), 1, sym_comment, - ACTIONS(8651), 13, + ACTIONS(2142), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415312,12 +380174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197103] = 3, - ACTIONS(251), 1, + [166913] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5224), 1, + ACTIONS(2455), 1, + sym__space, + STATE(4509), 1, sym_comment, - ACTIONS(8653), 13, + ACTIONS(2453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415331,15 +380195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197125] = 4, + [166938] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5225), 1, - sym_comment, - ACTIONS(5180), 2, - ts_builtin_sym_end, + ACTIONS(2459), 1, sym__space, - ACTIONS(5182), 11, + STATE(4510), 1, + sym_comment, + ACTIONS(2457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415351,13 +380214,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, - [197149] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166963] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5226), 1, - sym_comment, - ACTIONS(8655), 13, + ACTIONS(7896), 1, sym__newline, + ACTIONS(7899), 1, + sym__space, + STATE(4511), 2, + sym_comment, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7902), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -415369,40 +380238,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, - [197171] = 11, + [166990] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8659), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8661), 1, - aux_sym__immediate_decimal_token5, - STATE(5227), 1, + ACTIONS(7695), 1, + sym__newline, + STATE(721), 1, + aux_sym__pipe_separator, + STATE(4512), 1, sym_comment, - STATE(6670), 1, - sym__immediate_decimal, - ACTIONS(8657), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 3, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(7698), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2529), 9, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [197209] = 3, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [167021] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5228), 1, + ACTIONS(2027), 1, + sym__space, + STATE(4513), 1, sym_comment, - ACTIONS(8663), 13, + ACTIONS(2025), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415416,95 +380283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197231] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2300), 1, - anon_sym_DASH2, - STATE(5229), 1, - sym_comment, - ACTIONS(2302), 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, - [197255] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH2, - STATE(5230), 1, - sym_comment, - ACTIONS(2381), 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_LBRACE, - [197279] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8667), 1, - anon_sym_DASH2, - STATE(5231), 1, - sym_comment, - ACTIONS(8665), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197303] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_DASH2, - STATE(5232), 1, - sym_comment, - ACTIONS(2385), 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_LBRACE, - [197327] = 4, + [167046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5233), 1, - sym_comment, - ACTIONS(5184), 2, - ts_builtin_sym_end, + ACTIONS(2396), 1, sym__space, - ACTIONS(5186), 11, + STATE(4514), 1, + sym_comment, + ACTIONS(2394), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415516,75 +380302,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, - [197351] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_DASH2, - STATE(5234), 1, - sym_comment, - ACTIONS(8669), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197375] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8675), 1, - anon_sym_DASH2, - STATE(5235), 1, - sym_comment, - ACTIONS(8673), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197399] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [167071] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - anon_sym_DASH2, - STATE(5236), 1, + ACTIONS(2400), 1, + sym__space, + STATE(4515), 1, sym_comment, - ACTIONS(8677), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2398), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197423] = 4, + anon_sym_RBRACE, + [167096] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5237), 1, - sym_comment, - ACTIONS(2522), 2, - ts_builtin_sym_end, + ACTIONS(2031), 1, sym__space, - ACTIONS(2520), 11, + STATE(4516), 1, + sym_comment, + ACTIONS(2029), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415596,15 +380344,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, - [197447] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167121] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5133), 1, - aux_sym_shebang_repeat1, - STATE(5238), 1, - sym_comment, - ACTIONS(8681), 12, + ACTIONS(7770), 1, sym__newline, + ACTIONS(7772), 1, + sym__space, + STATE(4511), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4517), 1, + sym_comment, + ACTIONS(7904), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -415616,16 +380369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [197471] = 4, + [167150] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5239), 1, + STATE(4518), 1, sym_comment, - ACTIONS(5832), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5830), 11, + ACTIONS(5607), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -415636,15 +380387,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, - [197495] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [167173] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - anon_sym_else, - STATE(5240), 1, + STATE(4519), 1, sym_comment, - ACTIONS(8683), 12, + ACTIONS(5611), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -415656,32 +380408,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [197519] = 4, - ACTIONS(251), 1, + anon_sym_COLON2, + [167196] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - STATE(5241), 1, + ACTIONS(5025), 1, + sym__space, + STATE(4520), 1, sym_comment, - ACTIONS(1699), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5027), 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_LBRACE, - [197543] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [167221] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5242), 1, + ACTIONS(1979), 1, + sym__space, + STATE(4521), 1, sym_comment, - ACTIONS(8687), 13, + ACTIONS(1977), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415695,12 +380451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197565] = 3, - ACTIONS(251), 1, + [167246] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5243), 1, + ACTIONS(5029), 1, + sym__space, + STATE(4522), 1, sym_comment, - ACTIONS(8689), 13, + ACTIONS(5031), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415714,34 +380472,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197587] = 4, - ACTIONS(251), 1, + [167271] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5244), 1, + ACTIONS(2404), 1, + sym__space, + STATE(4523), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 10, + ACTIONS(2402), 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_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197611] = 4, + [167296] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8693), 1, + ACTIONS(2224), 1, anon_sym_DASH2, - STATE(5245), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + aux_sym__unquoted_in_record_token2, + STATE(4524), 1, sym_comment, - ACTIONS(8691), 12, + ACTIONS(2228), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -415751,15 +380514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197635] = 3, - ACTIONS(251), 1, + [167325] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5246), 1, + ACTIONS(2408), 1, + sym__space, + STATE(4525), 1, sym_comment, - ACTIONS(8695), 13, + ACTIONS(2406), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415773,12 +380537,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197657] = 3, - ACTIONS(251), 1, + [167350] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5247), 1, + ACTIONS(2507), 1, + sym__space, + STATE(4526), 1, sym_comment, - ACTIONS(8697), 13, + ACTIONS(2505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415792,15 +380558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197679] = 4, + [167375] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5248), 1, - sym_comment, - ACTIONS(5844), 2, - ts_builtin_sym_end, + ACTIONS(2463), 1, sym__space, - ACTIONS(5842), 11, + STATE(4527), 1, + sym_comment, + ACTIONS(2461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415812,62 +380577,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, - [197703] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8659), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8661), 1, - aux_sym__immediate_decimal_token5, - STATE(5249), 1, - sym_comment, - STATE(7080), 1, - sym__immediate_decimal, - ACTIONS(8657), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1579), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [197741] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_DASH2, - STATE(5250), 1, - sym_comment, - ACTIONS(8699), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197765] = 4, + anon_sym_RBRACE, + [167400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5251), 1, - sym_comment, - ACTIONS(2460), 2, - ts_builtin_sym_end, + ACTIONS(2376), 1, sym__space, - ACTIONS(2458), 11, + STATE(4528), 1, + sym_comment, + ACTIONS(2374), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415879,14 +380598,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, - [197789] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167425] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8705), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 1, anon_sym_DASH2, - STATE(5252), 1, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + STATE(4529), 1, sym_comment, - ACTIONS(8703), 12, + ACTIONS(1827), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -415896,18 +380621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197813] = 4, + [167454] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5253), 1, - sym_comment, - ACTIONS(2468), 2, + ACTIONS(7906), 1, ts_builtin_sym_end, + ACTIONS(7908), 1, sym__space, - ACTIONS(2466), 11, + STATE(4530), 2, + sym_comment, + aux_sym_command_repeat1, + ACTIONS(7674), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -415919,16 +380645,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, - [197837] = 5, - ACTIONS(251), 1, + [167481] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(8707), 1, - sym__newline, - STATE(5254), 1, + ACTIONS(2121), 1, + sym__space, + STATE(4531), 1, sym_comment, - ACTIONS(8423), 11, + ACTIONS(2115), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -415939,17 +380664,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, - [197863] = 5, + [167506] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(8709), 1, - sym__newline, - STATE(5255), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(7911), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7917), 1, + aux_sym__immediate_decimal_token5, + STATE(4532), 1, + sym_comment, + STATE(5453), 1, + sym__immediate_decimal, + ACTIONS(7913), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5761), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1583), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [167547] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2469), 1, + sym__space, + STATE(4533), 1, sym_comment, - ACTIONS(8429), 11, + ACTIONS(2467), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -415960,33 +380714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [197889] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2387), 1, - anon_sym_DASH2, - STATE(5256), 1, - sym_comment, - ACTIONS(2389), 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_LBRACE, - [197913] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [167572] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5257), 1, + ACTIONS(5652), 1, + sym__space, + STATE(4534), 1, sym_comment, - ACTIONS(8711), 13, + ACTIONS(5650), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416000,12 +380737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197935] = 3, - ACTIONS(251), 1, + [167597] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5258), 1, + ACTIONS(1939), 1, + sym__space, + STATE(4535), 1, sym_comment, - ACTIONS(8713), 13, + ACTIONS(1937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416019,36 +380758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [197957] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5259), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197981] = 4, + [167622] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5260), 1, + STATE(4536), 1, sym_comment, - ACTIONS(2464), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2462), 11, + ACTIONS(5617), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416059,15 +380776,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, - [198005] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [167645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5261), 1, - sym_comment, - ACTIONS(8317), 2, - ts_builtin_sym_end, + ACTIONS(5037), 1, sym__space, - ACTIONS(8315), 11, + STATE(4537), 1, + sym_comment, + ACTIONS(5039), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416079,15 +380797,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, - [198029] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167670] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5262), 1, - sym_comment, - ACTIONS(7793), 2, - ts_builtin_sym_end, + ACTIONS(5041), 1, sym__space, - ACTIONS(7791), 11, + STATE(4538), 1, + sym_comment, + ACTIONS(5043), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416099,15 +380818,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, - [198053] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167695] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5263), 1, - sym_comment, - ACTIONS(8321), 2, - ts_builtin_sym_end, + ACTIONS(2483), 1, sym__space, - ACTIONS(8319), 11, + STATE(4539), 1, + sym_comment, + ACTIONS(2481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416119,16 +380839,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, - [198077] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167720] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5264), 1, - sym_comment, - ACTIONS(8417), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(8415), 11, + ACTIONS(5055), 1, sym__newline, + ACTIONS(7919), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4540), 1, + sym_comment, + ACTIONS(1264), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416139,15 +380863,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, - [198101] = 4, + anon_sym_RPAREN, + [167749] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5265), 1, - sym_comment, - ACTIONS(8331), 2, - ts_builtin_sym_end, + ACTIONS(2473), 1, sym__space, - ACTIONS(8329), 11, + STATE(4541), 1, + sym_comment, + ACTIONS(2471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416159,15 +380883,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, - [198125] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5266), 1, - sym_comment, - ACTIONS(8335), 2, - ts_builtin_sym_end, + ACTIONS(1665), 1, sym__space, - ACTIONS(8333), 11, + STATE(4542), 1, + sym_comment, + ACTIONS(1653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416179,15 +380904,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, - [198149] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167799] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(7922), 1, + sym__newline, + ACTIONS(7927), 1, anon_sym_else, - STATE(5267), 1, + STATE(4483), 1, + aux_sym_shebang_repeat1, + STATE(4543), 1, sym_comment, - ACTIONS(8683), 12, - sym__newline, + ACTIONS(7925), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416199,65 +380929,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [198173] = 4, - ACTIONS(3), 1, + [167828] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5268), 1, + ACTIONS(7931), 1, + anon_sym_DASH2, + STATE(4544), 1, sym_comment, - ACTIONS(7984), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7982), 11, + ACTIONS(7929), 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, - [198197] = 15, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167852] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, + ACTIONS(7935), 1, + anon_sym_DASH2, + STATE(4545), 1, + sym_comment, + ACTIONS(7933), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(8043), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8045), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(8049), 1, + [167876] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7939), 1, anon_sym_DASH2, - ACTIONS(8059), 1, + STATE(4546), 1, + sym_comment, + ACTIONS(7937), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - STATE(4374), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167900] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7941), 1, + anon_sym_RBRACK, + STATE(3894), 1, sym_param_long_flag, - STATE(4540), 1, + STATE(4073), 1, sym__param_name, - STATE(4807), 1, + STATE(4316), 1, aux_sym_parameter_parens_repeat1, - STATE(5269), 1, + STATE(4547), 1, sym_comment, - STATE(5357), 1, + STATE(4822), 1, sym_param_rest, - STATE(5364), 1, + STATE(4828), 1, sym_param_opt, - STATE(5375), 1, + STATE(4834), 1, sym_param_short_flag, - STATE(5843), 1, + STATE(5313), 1, sym_parameter, - [198243] = 4, + [167946] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8719), 1, + ACTIONS(7945), 1, anon_sym_DASH2, - STATE(5270), 1, + STATE(4548), 1, sym_comment, - ACTIONS(8717), 12, + ACTIONS(7943), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416270,14 +381040,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198267] = 4, + [167970] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8723), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, anon_sym_DASH2, - STATE(5271), 1, + ACTIONS(7947), 1, + anon_sym_RPAREN, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4549), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [168016] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7951), 1, + anon_sym_DASH2, + STATE(4550), 1, sym_comment, - ACTIONS(8721), 12, + ACTIONS(7949), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416290,14 +381091,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198291] = 4, + [168040] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8727), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, anon_sym_DASH2, - STATE(5272), 1, + ACTIONS(7689), 1, + anon_sym_RBRACK, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4551), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [168086] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7955), 1, + anon_sym_DASH2, + STATE(4552), 1, sym_comment, - ACTIONS(8725), 12, + ACTIONS(7953), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416310,15 +381142,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198315] = 4, + [168110] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2417), 1, + anon_sym_DASH2, + STATE(4553), 1, + sym_comment, + ACTIONS(2419), 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_LBRACE, + [168134] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5273), 1, + STATE(4554), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2376), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2407), 11, + ACTIONS(2374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416330,14 +381182,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, - [198339] = 4, + [168158] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8731), 1, + ACTIONS(1977), 1, anon_sym_DASH2, - STATE(5274), 1, + STATE(4555), 1, sym_comment, - ACTIONS(8729), 12, + ACTIONS(1979), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416347,19 +381199,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198363] = 5, + anon_sym_LBRACE, + [168182] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(8707), 1, + ACTIONS(7959), 1, + anon_sym_DASH2, + STATE(4556), 1, + sym_comment, + ACTIONS(7957), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(5275), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168206] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4557), 1, sym_comment, - ACTIONS(8423), 11, + ACTIONS(2388), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2386), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416370,17 +381242,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [198389] = 5, + [168230] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(8709), 1, - sym__newline, - STATE(5276), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(7683), 1, + anon_sym_RBRACK, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4558), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [168276] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(7961), 1, + anon_sym_DOT, + ACTIONS(7965), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7967), 1, + aux_sym__immediate_decimal_token5, + STATE(4559), 1, + sym_comment, + STATE(5563), 1, + sym__immediate_decimal, + ACTIONS(1583), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7963), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5761), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [168316] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4560), 1, sym_comment, - ACTIONS(8429), 11, + ACTIONS(7969), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416391,15 +381318,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [198415] = 4, + [168338] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8735), 1, + ACTIONS(1653), 1, anon_sym_DASH2, - STATE(5277), 1, + ACTIONS(7152), 1, + aux_sym__unquoted_in_record_token2, + STATE(4561), 1, + sym_comment, + ACTIONS(1665), 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, + [168364] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2311), 1, + anon_sym_DASH2, + STATE(4562), 1, + sym_comment, + ACTIONS(2313), 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, + [168388] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1997), 1, + anon_sym_DASH2, + STATE(4563), 1, + sym_comment, + ACTIONS(1999), 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_LBRACE, + [168412] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7973), 1, + anon_sym_DASH2, + STATE(4564), 1, sym_comment, - ACTIONS(8733), 12, + ACTIONS(7971), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416412,35 +381401,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198439] = 4, + [168436] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1569), 1, + anon_sym_RBRACE, + ACTIONS(1583), 1, + sym__entry_separator, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(7977), 1, + anon_sym_DOT, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7981), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7983), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7985), 1, + aux_sym__immediate_decimal_token5, + STATE(4565), 1, + sym_comment, + STATE(5429), 1, + sym__immediate_decimal, + STATE(5633), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [168480] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5278), 1, + ACTIONS(7989), 1, + anon_sym_DASH2, + STATE(4566), 1, sym_comment, - ACTIONS(1711), 3, + ACTIONS(7987), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168504] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 10, + ACTIONS(7635), 1, + anon_sym_RPAREN, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4567), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [168550] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2342), 1, + anon_sym_DASH2, + STATE(4568), 1, + sym_comment, + ACTIONS(2344), 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_LBRACE, + [168574] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7993), 1, + anon_sym_DASH2, + STATE(4569), 1, + sym_comment, + ACTIONS(7991), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168598] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4570), 1, + sym_comment, + ACTIONS(7995), 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, + [168622] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + anon_sym_DASH2, + STATE(4571), 1, + sym_comment, + ACTIONS(1947), 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_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198463] = 4, + anon_sym_LBRACE, + [168646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5279), 1, + STATE(4572), 1, sym_comment, - ACTIONS(2413), 2, + ACTIONS(2473), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2471), 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, + [168670] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4573), 1, + sym_comment, + ACTIONS(5074), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2411), 11, + ACTIONS(5076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416452,14 +381602,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, - [198487] = 4, + [168694] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8739), 1, + ACTIONS(7831), 1, anon_sym_DASH2, - STATE(5280), 1, + STATE(4574), 1, sym_comment, - ACTIONS(8737), 12, + ACTIONS(7827), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416472,18 +381622,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198511] = 6, + [168718] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8401), 1, + ACTIONS(7999), 1, + anon_sym_DASH2, + STATE(4575), 1, + sym_comment, + ACTIONS(7997), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8741), 1, - anon_sym_else, - STATE(5281), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168742] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8003), 1, + anon_sym_DASH2, + STATE(4576), 1, sym_comment, - STATE(5282), 1, + ACTIONS(8001), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168766] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4577), 1, + sym_comment, + STATE(4751), 1, aux_sym_shebang_repeat1, - ACTIONS(8404), 10, + ACTIONS(8005), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416494,18 +381681,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, - [198539] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + [168790] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8389), 1, - sym__newline, - ACTIONS(8743), 1, - anon_sym_else, - STATE(5282), 1, + STATE(4578), 1, sym_comment, - STATE(5285), 1, - aux_sym_shebang_repeat1, - ACTIONS(8392), 10, + ACTIONS(5078), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5080), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416516,18 +381702,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, - [198567] = 6, + [168814] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8262), 1, + ACTIONS(2413), 1, + anon_sym_DASH2, + STATE(4579), 1, + sym_comment, + ACTIONS(2415), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8745), 1, - anon_sym_else, - STATE(5283), 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_LBRACE, + [168838] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8007), 1, + anon_sym_catch, + STATE(4580), 1, sym_comment, - STATE(5286), 1, - aux_sym_shebang_repeat1, - ACTIONS(8265), 10, + ACTIONS(7722), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416538,18 +381742,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, - [198595] = 6, + [168862] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8365), 1, + ACTIONS(2025), 1, + anon_sym_DASH2, + STATE(4581), 1, + sym_comment, + ACTIONS(2027), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(8747), 1, - anon_sym_else, - STATE(5284), 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_LBRACE, + [168886] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2425), 1, + anon_sym_DASH2, + STATE(4582), 1, sym_comment, - STATE(5287), 1, - aux_sym_shebang_repeat1, - ACTIONS(8368), 10, + ACTIONS(2427), 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_LBRACE, + [168910] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4583), 1, + sym_comment, + ACTIONS(2463), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2461), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416560,18 +381802,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, - [198623] = 6, - ACTIONS(251), 1, + [168934] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5240), 1, - sym__newline, - ACTIONS(8749), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5285), 1, + STATE(4584), 1, sym_comment, - ACTIONS(1310), 10, + ACTIONS(1665), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1653), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416582,18 +381822,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, - [198651] = 6, - ACTIONS(251), 1, + [168958] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8206), 1, - sym__newline, - ACTIONS(8752), 1, - anon_sym_else, - STATE(5286), 1, + STATE(4585), 1, sym_comment, - STATE(5290), 1, - aux_sym_shebang_repeat1, - ACTIONS(8209), 10, + ACTIONS(2027), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2025), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416604,18 +381842,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, - [198679] = 6, - ACTIONS(251), 1, + [168982] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8213), 1, - sym__newline, - ACTIONS(8754), 1, - anon_sym_else, - STATE(5287), 1, + STATE(4586), 1, sym_comment, - STATE(5291), 1, - aux_sym_shebang_repeat1, - ACTIONS(8216), 10, + ACTIONS(1000), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1004), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416626,18 +381862,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, - [198707] = 6, + [169006] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8220), 1, - sym__newline, - ACTIONS(8756), 1, - anon_sym_else, - STATE(5288), 1, + STATE(4587), 1, sym_comment, - STATE(5292), 1, - aux_sym_shebang_repeat1, - ACTIONS(8223), 10, + ACTIONS(8009), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416648,14 +381879,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, - [198735] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169028] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8760), 1, + ACTIONS(2001), 1, anon_sym_DASH2, - STATE(5289), 1, + STATE(4588), 1, sym_comment, - ACTIONS(8758), 12, + ACTIONS(2003), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416665,43 +381898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198759] = 6, - ACTIONS(251), 1, + anon_sym_LBRACE, + [169052] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5240), 1, - sym__newline, - ACTIONS(8762), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5290), 1, + STATE(4589), 1, sym_comment, - ACTIONS(1310), 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, - [198787] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(2336), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2334), 11, sym__newline, - ACTIONS(8765), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5291), 1, - sym_comment, - ACTIONS(1310), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416712,18 +381921,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, - [198815] = 6, - ACTIONS(251), 1, + [169076] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8346), 1, - sym__newline, - ACTIONS(8768), 1, - anon_sym_else, - STATE(5292), 1, + STATE(4590), 1, sym_comment, - STATE(5294), 1, - aux_sym_shebang_repeat1, - ACTIONS(8349), 10, + ACTIONS(2340), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2338), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416734,49 +381941,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, - [198843] = 15, - ACTIONS(251), 1, + [169100] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8063), 1, - anon_sym_RBRACK, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5293), 1, + STATE(4591), 1, sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [198889] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(2340), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2338), 11, sym__newline, - ACTIONS(8770), 1, - anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5294), 1, - sym_comment, - ACTIONS(1310), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -416787,46 +381961,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, - [198917] = 15, + [169124] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8037), 1, - sym_identifier, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, - anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8065), 1, - anon_sym_RPAREN, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5295), 1, - sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [198963] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5296), 1, + STATE(4592), 1, sym_comment, - ACTIONS(2417), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2415), 11, + ACTIONS(8011), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416838,14 +381978,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, - [198987] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169146] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8775), 1, + ACTIONS(8015), 1, anon_sym_DASH2, - STATE(5297), 1, + STATE(4593), 1, sym_comment, - ACTIONS(8773), 12, + ACTIONS(8013), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416858,14 +382000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199011] = 4, + [169170] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8779), 1, + ACTIONS(2346), 1, anon_sym_DASH2, - STATE(5298), 1, + STATE(4594), 1, sym_comment, - ACTIONS(8777), 12, + ACTIONS(2348), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416875,17 +382017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199035] = 4, + anon_sym_LBRACE, + [169194] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(2350), 1, anon_sym_DASH2, - STATE(5299), 1, + STATE(4595), 1, sym_comment, - ACTIONS(8781), 12, + ACTIONS(2352), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416895,17 +382037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199059] = 4, + anon_sym_LBRACE, + [169218] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8787), 1, + ACTIONS(8019), 1, anon_sym_DASH2, - STATE(5300), 1, + STATE(4596), 1, sym_comment, - ACTIONS(8785), 12, + ACTIONS(8017), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -416918,55 +382060,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199083] = 4, + [169242] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_DASH2, - STATE(5301), 1, + ACTIONS(1761), 1, + anon_sym_DOT_DOT2, + ACTIONS(8021), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(1610), 1, + sym_cell_path, + STATE(4597), 1, sym_comment, - ACTIONS(8789), 12, - anon_sym_EQ, - sym_identifier, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1763), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199107] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [169274] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, - anon_sym_DASH2, - STATE(5302), 1, + STATE(4598), 1, sym_comment, - ACTIONS(8793), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2344), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2342), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199131] = 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, + [169298] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5303), 1, + STATE(4599), 1, sym_comment, - ACTIONS(2484), 2, + ACTIONS(5025), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2482), 11, + ACTIONS(5027), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -416978,75 +382124,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, - [199155] = 13, - ACTIONS(3), 1, + [169322] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4079), 1, - anon_sym_DOLLAR, - ACTIONS(8583), 1, - sym__newline, - ACTIONS(8585), 1, - sym__space, - ACTIONS(8587), 1, - anon_sym_DASH_DASH, - ACTIONS(8589), 1, + ACTIONS(8025), 1, anon_sym_DASH2, - ACTIONS(8591), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - STATE(1854), 1, - sym_val_closure, - STATE(5304), 1, + STATE(4600), 1, sym_comment, - STATE(6038), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(784), 2, - sym__blosure, - sym_val_variable, - STATE(8157), 2, - sym_short_flag, - sym_long_flag, - [199197] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8037), 1, + ACTIONS(8023), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(8043), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8045), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(8047), 1, anon_sym_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_DASH2, - ACTIONS(8061), 1, - anon_sym_RPAREN, - STATE(4374), 1, - sym_param_long_flag, - STATE(4540), 1, - sym__param_name, - STATE(4807), 1, - aux_sym_parameter_parens_repeat1, - STATE(5305), 1, - sym_comment, - STATE(5357), 1, - sym_param_rest, - STATE(5364), 1, - sym_param_opt, - STATE(5375), 1, - sym_param_short_flag, - STATE(5843), 1, - sym_parameter, - [199243] = 4, + [169346] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5306), 1, - sym_comment, - ACTIONS(2488), 2, - ts_builtin_sym_end, + ACTIONS(8029), 1, sym__space, - ACTIONS(2486), 11, + STATE(4601), 1, + sym_comment, + ACTIONS(8027), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417058,15 +382163,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, - [199267] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + [169370] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_else, - STATE(5307), 1, + STATE(4602), 1, sym_comment, - ACTIONS(8683), 12, + ACTIONS(2392), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2390), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417078,34 +382184,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, - [199291] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5308), 1, - sym_comment, - ACTIONS(1767), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199315] = 4, + [169394] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8801), 1, + ACTIONS(8033), 1, anon_sym_DASH2, - STATE(5309), 1, + STATE(4603), 1, sym_comment, - ACTIONS(8799), 12, + ACTIONS(8031), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -417118,32 +382204,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199339] = 4, - ACTIONS(251), 1, + [169418] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, - anon_sym_DASH2, - STATE(5310), 1, + STATE(4604), 1, sym_comment, - ACTIONS(8803), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2121), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2115), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199363] = 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, + [169442] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4605), 1, + sym_comment, + ACTIONS(2031), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2029), 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, + [169466] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5311), 1, + STATE(4606), 1, sym_comment, - ACTIONS(5257), 13, + ACTIONS(8035), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417157,15 +382263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [199385] = 4, + [169488] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5312), 1, - sym_comment, - ACTIONS(1022), 2, + ACTIONS(8039), 1, anon_sym_DASH2, - anon_sym_DOT, - ACTIONS(1024), 11, + STATE(4607), 1, + sym_comment, + ACTIONS(8037), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -417175,14 +382280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199409] = 3, - ACTIONS(251), 1, + [169512] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5313), 1, + STATE(4608), 1, sym_comment, - ACTIONS(8807), 12, + ACTIONS(2348), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2346), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417194,41 +382303,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199430] = 13, + [169536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8809), 1, - anon_sym_RBRACK, - ACTIONS(8811), 1, - anon_sym_DOLLAR, - ACTIONS(8813), 1, - anon_sym_DOLLAR2, - ACTIONS(8815), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8817), 1, - aux_sym__immediate_decimal_token5, - STATE(2975), 1, - sym__immediate_decimal, - STATE(5314), 1, + STATE(4609), 1, sym_comment, - STATE(3056), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199471] = 3, - ACTIONS(251), 1, + ACTIONS(2352), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2350), 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, + [169560] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5315), 1, + STATE(4610), 1, sym_comment, - ACTIONS(8819), 12, + ACTIONS(5029), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5031), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417240,34 +382343,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, - [199492] = 6, + [169584] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5925), 1, - sym__newline, - ACTIONS(8821), 1, + ACTIONS(8043), 1, anon_sym_DASH2, - STATE(5316), 1, + STATE(4611), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(8041), 12, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5928), 8, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199519] = 3, + [169608] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5317), 1, + STATE(4612), 1, sym_comment, - ACTIONS(8823), 12, + ACTIONS(8045), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417280,52 +382381,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [199540] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [169630] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8825), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8827), 1, - aux_sym__immediate_decimal_token2, - STATE(5318), 1, + ACTIONS(8049), 1, + anon_sym_DASH2, + STATE(4613), 1, sym_comment, - ACTIONS(1661), 4, + ACTIONS(8047), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1663), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [199567] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [169654] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5319), 1, + ACTIONS(8053), 1, + anon_sym_DASH2, + STATE(4614), 1, sym_comment, - ACTIONS(8829), 12, + ACTIONS(8051), 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, - [199588] = 3, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [169678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5320), 1, + STATE(4615), 1, sym_comment, - ACTIONS(8429), 12, + ACTIONS(7361), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7359), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417337,13 +382442,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, - [199609] = 3, + [169702] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5321), 1, + STATE(4616), 1, sym_comment, - ACTIONS(8651), 12, - ts_builtin_sym_end, + ACTIONS(8055), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417355,14 +382459,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, - [199630] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169724] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, anon_sym_DASH2, - STATE(5322), 1, + ACTIONS(7572), 1, + anon_sym_RPAREN, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4617), 1, sym_comment, - ACTIONS(1959), 11, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [169770] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2382), 1, + anon_sym_DASH2, + STATE(4618), 1, + sym_comment, + ACTIONS(2384), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -417374,95 +382511,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199653] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - anon_sym_RBRACK, - ACTIONS(1657), 1, - sym__entry_separator, - ACTIONS(1659), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8833), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8835), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8839), 1, - aux_sym__immediate_decimal_token5, - STATE(5323), 1, - sym_comment, - STATE(6666), 1, - sym__immediate_decimal, - STATE(7890), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199694] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - anon_sym_RBRACE, - ACTIONS(1657), 1, - sym__entry_separator, - ACTIONS(1659), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8843), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8845), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8847), 1, - aux_sym__immediate_decimal_token5, - STATE(5324), 1, - sym_comment, - STATE(7090), 1, - sym__immediate_decimal, - STATE(7890), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199735] = 12, + anon_sym_LBRACE, + [169794] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(8849), 1, + ACTIONS(2013), 1, + anon_sym_DASH2, + STATE(4619), 1, + sym_comment, + ACTIONS(2015), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(8851), 1, sym__newline, - ACTIONS(8853), 1, - anon_sym_GT2, - STATE(5325), 1, - sym_comment, - STATE(5533), 1, - aux_sym_shebang_repeat1, - STATE(5703), 1, - aux_sym_collection_type_repeat1, - STATE(6870), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [199774] = 3, - ACTIONS(251), 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_LBRACE, + [169818] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5326), 1, + STATE(4620), 1, sym_comment, - ACTIONS(8855), 12, + ACTIONS(2447), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2445), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417474,35 +382552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [199795] = 6, + [169842] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(5327), 1, + ACTIONS(7849), 1, + aux_sym__immediate_decimal_token2, + STATE(4621), 1, sym_comment, - STATE(5492), 1, - aux_sym_shebang_repeat1, - ACTIONS(2552), 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, - [199822] = 3, + ACTIONS(1599), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [169868] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5328), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + STATE(4622), 1, sym_comment, - ACTIONS(8487), 12, - ts_builtin_sym_end, + ACTIONS(8009), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417514,14 +382592,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, - [199843] = 4, + anon_sym_RBRACE, + [169892] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2072), 1, + ACTIONS(2394), 1, anon_sym_DASH2, - STATE(5329), 1, + STATE(4623), 1, sym_comment, - ACTIONS(2078), 11, + ACTIONS(2396), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -417533,38 +382612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [199866] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8859), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8861), 1, - aux_sym__immediate_decimal_token5, - STATE(5330), 1, - sym_comment, - STATE(7696), 1, - sym__immediate_decimal, - ACTIONS(1579), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8857), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199903] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + [169916] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5331), 1, + STATE(4624), 1, sym_comment, - ACTIONS(8863), 12, + ACTIONS(2019), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2017), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417576,40 +382633,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, - [199924] = 12, - ACTIONS(251), 1, + [169940] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(8865), 1, + ACTIONS(3972), 1, anon_sym_DOLLAR, - ACTIONS(8867), 1, - anon_sym_DOT, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token5, - STATE(5332), 1, + ACTIONS(8057), 1, + sym__newline, + ACTIONS(8059), 1, + sym__space, + ACTIONS(8061), 1, + anon_sym_DASH_DASH, + ACTIONS(8063), 1, + anon_sym_DASH2, + ACTIONS(8065), 1, + anon_sym_LBRACE, + STATE(1785), 1, + sym_block, + STATE(1786), 1, + sym_val_closure, + STATE(4625), 1, sym_comment, - STATE(6401), 1, - sym__immediate_decimal, - ACTIONS(8869), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6789), 2, - sym__expr_parenthesized_immediate, + STATE(5540), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(780), 2, + sym__blosure, sym_val_variable, - [199963] = 3, + STATE(7264), 2, + sym_short_flag, + sym_long_flag, + [169982] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5333), 1, + STATE(4626), 1, sym_comment, - ACTIONS(8875), 12, + ACTIONS(8067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417622,39 +382680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [199984] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - sym__entry_separator, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token3, - STATE(5334), 1, - sym_comment, - STATE(7339), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - STATE(7337), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200023] = 3, - ACTIONS(251), 1, + [170004] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5335), 1, + STATE(4627), 1, sym_comment, - ACTIONS(8881), 12, + ACTIONS(2427), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417666,13 +382701,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, - [200044] = 3, + [170028] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(5336), 1, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(8069), 1, + anon_sym_PIPE, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4628), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [170074] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4629), 1, sym_comment, - ACTIONS(8883), 12, + ACTIONS(2396), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2394), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417684,14 +382752,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, - [200065] = 3, - ACTIONS(251), 1, + [170098] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5337), 1, + STATE(4630), 1, sym_comment, - ACTIONS(8547), 12, + ACTIONS(4995), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4997), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417703,12 +382772,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, - [200086] = 3, + [170122] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5338), 1, + STATE(4631), 1, sym_comment, - ACTIONS(8885), 12, + ACTIONS(8071), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417721,16 +382790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [200107] = 4, + anon_sym_RBRACE, + [170144] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5339), 1, + ACTIONS(8073), 1, + aux_sym__immediate_decimal_token2, + STATE(4632), 1, sym_comment, - ACTIONS(1669), 3, + ACTIONS(1709), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1671), 9, + ACTIONS(1711), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -417740,30 +382812,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200130] = 3, + [170170] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5340), 1, + ACTIONS(8077), 1, + anon_sym_DASH2, + STATE(4633), 1, sym_comment, - ACTIONS(8887), 12, + ACTIONS(8075), 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, - [200151] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170194] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5341), 1, + ACTIONS(8081), 1, + anon_sym_DASH2, + STATE(4634), 1, + sym_comment, + ACTIONS(8079), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170218] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4635), 1, sym_comment, - ACTIONS(8889), 12, + ACTIONS(7739), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7737), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417775,13 +382872,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, - [200172] = 3, - ACTIONS(251), 1, + [170242] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5342), 1, + STATE(4636), 1, sym_comment, - ACTIONS(8891), 12, + ACTIONS(7735), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7733), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417793,15 +382892,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, - [200193] = 4, + [170266] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8163), 1, + ACTIONS(2386), 1, anon_sym_DASH2, - STATE(5343), 1, + STATE(4637), 1, sym_comment, - ACTIONS(8161), 11, + ACTIONS(2388), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -417813,30 +382911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200216] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5344), 1, - sym_comment, - ACTIONS(7181), 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, - [200237] = 3, + anon_sym_LBRACE, + [170290] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5345), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + STATE(4638), 1, sym_comment, - ACTIONS(8893), 12, + ACTIONS(8009), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417848,13 +382931,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, - [200258] = 3, + anon_sym_RBRACE, + [170314] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5346), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + STATE(4639), 1, sym_comment, - ACTIONS(8895), 12, + ACTIONS(8083), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417866,35 +382951,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [200279] = 6, + anon_sym_RBRACE, + [170338] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8897), 1, - anon_sym_DOT, - ACTIONS(8899), 1, - aux_sym__immediate_decimal_token2, - STATE(5347), 1, + STATE(4640), 1, sym_comment, - ACTIONS(1669), 3, + ACTIONS(1599), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1671), 7, - anon_sym_DOLLAR, + ACTIONS(1601), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200306] = 3, + [170362] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5348), 1, + ACTIONS(8087), 1, + anon_sym_DASH2, + STATE(4641), 1, + sym_comment, + ACTIONS(8085), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170386] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4642), 1, sym_comment, - ACTIONS(8435), 12, + ACTIONS(7743), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7741), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417906,32 +383012,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, - [200327] = 3, + [170410] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5349), 1, + ACTIONS(2441), 1, + anon_sym_DASH2, + STATE(4643), 1, sym_comment, - ACTIONS(8901), 12, + ACTIONS(2443), 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, - [200348] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [170434] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(8091), 1, anon_sym_DASH2, - STATE(5350), 1, + STATE(4644), 1, sym_comment, - ACTIONS(8903), 11, + ACTIONS(8089), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -417941,14 +383049,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200371] = 3, + [170458] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5351), 1, + ACTIONS(8095), 1, + anon_sym_DASH2, + STATE(4645), 1, + sym_comment, + ACTIONS(8093), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170482] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2374), 1, + anon_sym_DASH2, + STATE(4646), 1, + sym_comment, + ACTIONS(2376), 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_LBRACE, + [170506] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2370), 1, + anon_sym_DASH2, + STATE(4647), 1, + sym_comment, + ACTIONS(2372), 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_LBRACE, + [170530] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4648), 1, sym_comment, - ACTIONS(8907), 12, + ACTIONS(8097), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417961,13 +383130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [200392] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [170552] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5352), 1, + STATE(4649), 1, sym_comment, - ACTIONS(8229), 12, + ACTIONS(7731), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7729), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -417979,62 +383151,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, - [200413] = 6, + [170576] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8909), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8911), 1, - aux_sym__immediate_decimal_token2, - STATE(5353), 1, + STATE(4650), 1, sym_comment, - ACTIONS(1661), 3, + ACTIONS(1623), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1663), 7, - anon_sym_DOLLAR, + ACTIONS(1625), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200440] = 13, + [170600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8811), 1, - anon_sym_DOLLAR, - ACTIONS(8813), 1, - anon_sym_DOLLAR2, - ACTIONS(8815), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8817), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8913), 1, - anon_sym_RBRACK, - STATE(2975), 1, - sym__immediate_decimal, - STATE(5354), 1, - sym_comment, - STATE(3056), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200481] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5355), 1, + STATE(4651), 1, sym_comment, - ACTIONS(8687), 12, + ACTIONS(2003), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2001), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418046,33 +383191,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, - [200502] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5356), 1, - sym_comment, - ACTIONS(8915), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8917), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [200525] = 4, + [170624] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(8101), 1, anon_sym_DASH2, - STATE(5357), 1, + STATE(4652), 1, sym_comment, - ACTIONS(8919), 11, + ACTIONS(8099), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418082,14 +383208,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200548] = 3, + [170648] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(5358), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7917), 1, + aux_sym__immediate_decimal_token5, + STATE(4653), 1, + sym_comment, + STATE(5760), 1, + sym__immediate_decimal, + ACTIONS(7913), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5759), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1597), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [170686] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, + anon_sym_DASH_DASH, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(8103), 1, + anon_sym_RBRACK, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4654), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [170732] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8107), 1, + anon_sym_else, + STATE(4655), 1, sym_comment, - ACTIONS(8653), 12, + ACTIONS(8105), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -418102,14 +383289,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, - [200569] = 4, + [170756] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2520), 1, + ACTIONS(8111), 1, anon_sym_DASH2, - STATE(5359), 1, + STATE(4656), 1, sym_comment, - ACTIONS(2522), 11, + ACTIONS(8109), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418119,16 +383306,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170780] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4657), 1, + sym_comment, + ACTIONS(1939), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1937), 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, + [170804] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, + anon_sym_DOLLAR, + ACTIONS(7566), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, anon_sym_DASH_DASH, - [200592] = 4, + ACTIONS(7570), 1, + anon_sym_DASH2, + ACTIONS(8113), 1, + anon_sym_RPAREN, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4658), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [170850] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(8117), 1, anon_sym_DASH2, - STATE(5360), 1, + STATE(4659), 1, sym_comment, - ACTIONS(8923), 11, + ACTIONS(8115), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418138,14 +383377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200615] = 3, - ACTIONS(251), 1, + [170874] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5361), 1, + STATE(4660), 1, sym_comment, - ACTIONS(8927), 12, + ACTIONS(4999), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5001), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418157,71 +383400,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, - [200636] = 13, - ACTIONS(3), 1, + [170898] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACE, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8843), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8845), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8847), 1, - aux_sym__immediate_decimal_token5, - STATE(5362), 1, + ACTIONS(1989), 1, + anon_sym_DASH2, + STATE(4661), 1, sym_comment, - STATE(6802), 1, - sym__immediate_decimal, - STATE(7372), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200677] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8811), 1, - anon_sym_DOLLAR, - ACTIONS(8813), 1, - anon_sym_DOLLAR2, - ACTIONS(8815), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8817), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8929), 1, + ACTIONS(1991), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - STATE(2975), 1, - sym__immediate_decimal, - STATE(5363), 1, - sym_comment, - STATE(3056), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200718] = 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [170922] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(8121), 1, anon_sym_DASH2, - STATE(5364), 1, + STATE(4662), 1, sym_comment, - ACTIONS(8931), 11, + ACTIONS(8119), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418231,95 +383437,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200741] = 4, + [170946] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5365), 1, + STATE(4663), 1, sym_comment, - ACTIONS(1661), 3, + ACTIONS(1709), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1663), 9, - ts_builtin_sym_end, + ACTIONS(1711), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200764] = 3, + [170970] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5366), 1, + ACTIONS(2358), 1, + anon_sym_DASH2, + STATE(4664), 1, sym_comment, - ACTIONS(8935), 12, + ACTIONS(2360), 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, - [200785] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5367), 1, - sym_comment, - ACTIONS(7157), 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, - [200806] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(8937), 1, - sym_filesize_unit, - ACTIONS(8939), 1, - sym_duration_unit, - ACTIONS(8941), 1, - aux_sym_unquoted_token2, - STATE(5368), 1, - sym_comment, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [200839] = 4, + anon_sym_LBRACE, + [170994] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(8125), 1, anon_sym_DASH2, - STATE(5369), 1, + STATE(4665), 1, sym_comment, - ACTIONS(8943), 11, + ACTIONS(8123), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418329,95 +383497,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [200862] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1685), 1, - sym__entry_separator, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token3, - STATE(5370), 1, - sym_comment, - STATE(7855), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7851), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200901] = 12, - ACTIONS(3), 1, + [171018] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1741), 1, - sym__entry_separator, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token3, - STATE(5371), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT2, + ACTIONS(8021), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(1619), 1, + sym_cell_path, + STATE(4666), 1, sym_comment, - STATE(7858), 1, - sym__immediate_decimal, - ACTIONS(1739), 2, - anon_sym_RBRACK, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1719), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(7856), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200940] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [171050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1745), 1, - sym__entry_separator, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token3, - STATE(5372), 1, - sym_comment, - STATE(7886), 1, - sym__immediate_decimal, - ACTIONS(1743), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7859), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200979] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5373), 1, + STATE(4667), 1, sym_comment, - ACTIONS(8947), 12, + ACTIONS(5609), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5607), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418429,33 +383544,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, - [201000] = 3, + [171074] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5374), 1, + ACTIONS(8129), 1, + anon_sym_DASH2, + STATE(4668), 1, sym_comment, - ACTIONS(8517), 12, - ts_builtin_sym_end, + ACTIONS(8127), 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, - [201021] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171098] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8951), 1, + ACTIONS(2390), 1, anon_sym_DASH2, - STATE(5375), 1, + STATE(4669), 1, sym_comment, - ACTIONS(8949), 11, + ACTIONS(2392), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418467,14 +383583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201044] = 4, + anon_sym_LBRACE, + [171122] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8955), 1, + ACTIONS(2366), 1, anon_sym_DASH2, - STATE(5376), 1, + STATE(4670), 1, sym_comment, - ACTIONS(8953), 11, + ACTIONS(2368), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418486,31 +383603,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201067] = 4, + anon_sym_LBRACE, + [171146] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5377), 1, + STATE(4671), 1, sym_comment, - ACTIONS(7978), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7980), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [201090] = 3, + ACTIONS(1723), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1725), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [171170] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5378), 1, + ACTIONS(8133), 1, + anon_sym_DASH2, + STATE(4672), 1, + sym_comment, + ACTIONS(8131), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171194] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4673), 1, sym_comment, - ACTIONS(8957), 12, + ACTIONS(2459), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2457), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418522,32 +383664,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, - [201111] = 4, + [171218] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5379), 1, - sym_comment, - ACTIONS(1711), 3, + ACTIONS(2017), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 9, - ts_builtin_sym_end, + STATE(4674), 1, + sym_comment, + ACTIONS(2019), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201134] = 3, + anon_sym_LBRACE, + [171242] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5380), 1, + STATE(4675), 1, sym_comment, - ACTIONS(8959), 12, + ACTIONS(6755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418560,13 +383702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [201155] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [171264] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5381), 1, + STATE(4676), 1, sym_comment, - ACTIONS(8689), 12, + ACTIONS(1959), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418578,14 +383723,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, - [201176] = 4, + [171288] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2395), 1, + ACTIONS(8137), 1, anon_sym_DASH2, - STATE(5382), 1, + STATE(4677), 1, sym_comment, - ACTIONS(2397), 11, + ACTIONS(8135), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418595,16 +383740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201199] = 4, + [171312] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2090), 1, + ACTIONS(8141), 1, anon_sym_DASH2, - STATE(5383), 1, + STATE(4678), 1, sym_comment, - ACTIONS(2096), 11, + ACTIONS(8139), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418614,16 +383760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201222] = 4, + [171336] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4679), 1, + sym_comment, + ACTIONS(1979), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1977), 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, + [171360] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(8145), 1, anon_sym_DASH2, - STATE(5384), 1, + STATE(4680), 1, sym_comment, - ACTIONS(2104), 11, + ACTIONS(8143), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418633,15 +383800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201245] = 3, - ACTIONS(251), 1, + [171384] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5385), 1, + STATE(4681), 1, sym_comment, - ACTIONS(8423), 12, + ACTIONS(2419), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2417), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418653,14 +383823,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, - [201266] = 4, + [171408] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2131), 1, + ACTIONS(2398), 1, anon_sym_DASH2, - STATE(5386), 1, + STATE(4682), 1, sym_comment, - ACTIONS(2137), 11, + ACTIONS(2400), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -418672,33 +383842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201289] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5387), 1, - sym_comment, - ACTIONS(7321), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7327), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7323), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7325), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [201316] = 3, + anon_sym_LBRACE, + [171432] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5388), 1, + ACTIONS(8147), 1, + anon_sym_else, + STATE(4683), 1, sym_comment, - ACTIONS(8961), 12, + ACTIONS(8105), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418711,37 +383863,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [201337] = 10, + [171456] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(2093), 1, - sym__immediate_decimal, - STATE(5389), 1, + ACTIONS(2338), 1, + anon_sym_DASH2, + STATE(4684), 1, sym_comment, - ACTIONS(8963), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2090), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 3, + ACTIONS(2340), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201372] = 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, + anon_sym_LBRACE, + [171480] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5390), 1, + STATE(4685), 1, sym_comment, - ACTIONS(8965), 12, + ACTIONS(8083), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418754,158 +383901,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [201393] = 13, + anon_sym_RBRACE, + [171502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_DOLLAR, - ACTIONS(5500), 1, - anon_sym_LPAREN2, - ACTIONS(5504), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5506), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5508), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5725), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8813), 1, - anon_sym_DOLLAR2, - ACTIONS(8967), 1, - anon_sym_RBRACK, - ACTIONS(8969), 1, - aux_sym__immediate_decimal_token1, - STATE(2797), 1, - sym__immediate_decimal, - STATE(5391), 1, - sym_comment, - STATE(2956), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201434] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8971), 1, - anon_sym_DOT, - ACTIONS(8973), 1, - aux_sym__immediate_decimal_token2, - STATE(5392), 1, - sym_comment, - ACTIONS(1671), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [201461] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(2091), 1, - sym__immediate_decimal, - STATE(5393), 1, - sym_comment, - ACTIONS(8963), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1685), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201496] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8975), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8977), 1, - aux_sym__immediate_decimal_token2, - STATE(5394), 1, - sym_comment, - ACTIONS(1663), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1661), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [201523] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(2140), 1, - sym__immediate_decimal, - STATE(5395), 1, + STATE(4686), 1, sym_comment, - ACTIONS(8963), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1741), 3, + ACTIONS(2443), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2441), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201558] = 10, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [171526] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(2158), 1, - sym__immediate_decimal, - STATE(5396), 1, + STATE(4687), 1, sym_comment, - ACTIONS(8963), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2097), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1745), 3, + ACTIONS(1991), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1989), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201593] = 3, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [171550] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5397), 1, + STATE(4688), 1, sym_comment, - ACTIONS(8711), 12, + ACTIONS(7747), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7745), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418917,32 +383962,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, - [201614] = 4, + [171574] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5398), 1, - sym_comment, - ACTIONS(1767), 3, + ACTIONS(1653), 1, anon_sym_DASH2, + ACTIONS(4540), 1, anon_sym_DOT_DOT2, + ACTIONS(8149), 1, + sym_filesize_unit, + ACTIONS(8151), 1, + sym_duration_unit, + ACTIONS(8153), 1, aux_sym_unquoted_token2, - ACTIONS(1769), 9, - ts_builtin_sym_end, + STATE(4689), 1, + sym_comment, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1665), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201637] = 3, - ACTIONS(251), 1, + [171608] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5399), 1, + STATE(4690), 1, sym_comment, - ACTIONS(8713), 12, + ACTIONS(2483), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418954,12 +384007,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, - [201658] = 3, + [171632] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5400), 1, + STATE(4691), 1, sym_comment, - ACTIONS(8979), 12, + ACTIONS(8155), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418972,12 +384025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [201679] = 3, + anon_sym_RBRACE, + [171654] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5401), 1, + STATE(4570), 1, + aux_sym_shebang_repeat1, + STATE(4692), 1, sym_comment, - ACTIONS(8981), 12, + ACTIONS(8157), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -418990,50 +384046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [201700] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_DASH2, - STATE(5402), 1, - sym_comment, - ACTIONS(2413), 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, - [201723] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2415), 1, - anon_sym_DASH2, - STATE(5403), 1, - sym_comment, - ACTIONS(2417), 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, - [201746] = 3, - ACTIONS(251), 1, + [171678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5404), 1, + STATE(4693), 1, sym_comment, - ACTIONS(8983), 12, + ACTIONS(2380), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2378), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419045,13 +384066,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, - [201767] = 3, - ACTIONS(251), 1, + [171702] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5405), 1, + STATE(4694), 1, sym_comment, - ACTIONS(8985), 12, + ACTIONS(1999), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1997), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419063,89 +384086,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, - [201788] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(8987), 1, - anon_sym_DOLLAR, - ACTIONS(8989), 1, - anon_sym_DASH_DASH, - ACTIONS(8991), 1, - anon_sym_DASH2, - ACTIONS(8993), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - STATE(1854), 1, - sym_val_closure, - STATE(5406), 1, - sym_comment, - STATE(5541), 1, - aux_sym_ctrl_do_repeat1, - STATE(785), 2, - sym__blosure, - sym_val_variable, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [201827] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACK, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8833), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8835), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8839), 1, - aux_sym__immediate_decimal_token5, - STATE(5407), 1, - sym_comment, - STATE(7052), 1, - sym__immediate_decimal, - STATE(7372), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201868] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_DASH2, - STATE(5408), 1, - sym_comment, - ACTIONS(2421), 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, - [201891] = 4, + [171726] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(2338), 1, anon_sym_DASH2, - STATE(5409), 1, + STATE(4695), 1, sym_comment, - ACTIONS(2425), 11, + ACTIONS(2340), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419157,14 +384105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201914] = 4, + anon_sym_LBRACE, + [171750] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(8161), 1, anon_sym_DASH2, - STATE(5410), 1, + STATE(4696), 1, sym_comment, - ACTIONS(2429), 11, + ACTIONS(8159), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419174,39 +384123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [201937] = 4, - ACTIONS(251), 1, + [171774] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2431), 1, - anon_sym_DASH2, - STATE(5411), 1, + STATE(4697), 1, sym_comment, - ACTIONS(2433), 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, - [201960] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8401), 1, + ACTIONS(2415), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2413), 11, sym__newline, - ACTIONS(8995), 1, - anon_sym_else, - STATE(5412), 1, - sym_comment, - STATE(5416), 1, - aux_sym_shebang_repeat1, - ACTIONS(8404), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419216,14 +384146,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, - [201987] = 4, + [171798] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2029), 1, anon_sym_DASH2, - STATE(5413), 1, + STATE(4698), 1, sym_comment, - ACTIONS(2437), 11, + ACTIONS(2031), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419235,33 +384165,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202010] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + [171822] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_DASH2, - STATE(5414), 1, - sym_comment, - ACTIONS(2445), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1569), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1583), 1, + sym__entry_separator, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3088), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [202033] = 4, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_DOT, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8167), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8169), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token5, + STATE(4699), 1, + sym_comment, + STATE(5538), 1, + sym__immediate_decimal, + STATE(5633), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [171866] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(8175), 1, anon_sym_DASH2, - STATE(5415), 1, + STATE(4700), 1, sym_comment, - ACTIONS(2449), 11, + ACTIONS(8173), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419271,20 +384213,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202056] = 6, - ACTIONS(251), 1, + [171890] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8389), 1, - sym__newline, - ACTIONS(8997), 1, - anon_sym_else, - STATE(5416), 1, + STATE(4701), 1, sym_comment, - STATE(5419), 1, - aux_sym_shebang_repeat1, - ACTIONS(8392), 9, + ACTIONS(2469), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2467), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419294,18 +384236,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, - [202083] = 6, + [171914] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8262), 1, + ACTIONS(7749), 1, sym__newline, - ACTIONS(8999), 1, + ACTIONS(8177), 1, anon_sym_else, - STATE(5417), 1, + STATE(4702), 1, sym_comment, - STATE(5420), 1, + STATE(4703), 1, aux_sym_shebang_repeat1, - ACTIONS(8265), 9, + ACTIONS(7752), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419315,18 +384258,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, - [202110] = 6, + [171942] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8365), 1, + ACTIONS(7794), 1, sym__newline, - ACTIONS(9001), 1, + ACTIONS(8179), 1, anon_sym_else, - STATE(5418), 1, + STATE(4703), 1, sym_comment, - STATE(5421), 1, + STATE(4706), 1, aux_sym_shebang_repeat1, - ACTIONS(8368), 9, + ACTIONS(7797), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419336,18 +384280,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, - [202137] = 6, + [171970] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(7801), 1, sym__newline, - ACTIONS(9003), 1, + ACTIONS(8181), 1, anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5419), 1, + STATE(4704), 1, sym_comment, - ACTIONS(1310), 9, + STATE(4707), 1, + aux_sym_shebang_repeat1, + ACTIONS(7804), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419357,18 +384302,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, - [202164] = 6, + [171998] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8206), 1, + ACTIONS(7810), 1, sym__newline, - ACTIONS(9006), 1, + ACTIONS(8183), 1, anon_sym_else, - STATE(5420), 1, + STATE(4705), 1, sym_comment, - STATE(5424), 1, + STATE(4708), 1, aux_sym_shebang_repeat1, - ACTIONS(8209), 9, + ACTIONS(7813), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419378,18 +384324,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, - [202191] = 6, + [172026] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8213), 1, + ACTIONS(5055), 1, sym__newline, - ACTIONS(9008), 1, + ACTIONS(8185), 1, anon_sym_else, - STATE(5421), 1, - sym_comment, - STATE(5425), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - ACTIONS(8216), 9, + STATE(4706), 1, + sym_comment, + ACTIONS(1264), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419399,18 +384346,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, - [202218] = 6, + [172054] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8220), 1, + ACTIONS(7776), 1, sym__newline, - ACTIONS(9010), 1, + ACTIONS(8188), 1, anon_sym_else, - STATE(5422), 1, + STATE(4707), 1, sym_comment, - STATE(5426), 1, + STATE(4712), 1, aux_sym_shebang_repeat1, - ACTIONS(8223), 9, + ACTIONS(7779), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419420,37 +384368,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, - [202245] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5423), 1, - sym_comment, - ACTIONS(9012), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(9014), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [202268] = 6, + [172082] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(7868), 1, sym__newline, - ACTIONS(9016), 1, + ACTIONS(8190), 1, anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5424), 1, + STATE(4708), 1, sym_comment, - ACTIONS(1310), 9, + STATE(4713), 1, + aux_sym_shebang_repeat1, + ACTIONS(7871), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419460,18 +384390,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, - [202295] = 6, + [172110] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(7880), 1, sym__newline, - ACTIONS(9019), 1, + ACTIONS(8192), 1, anon_sym_else, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5425), 1, + STATE(4709), 1, sym_comment, - ACTIONS(1310), 9, + STATE(4714), 1, + aux_sym_shebang_repeat1, + ACTIONS(7883), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419481,18 +384412,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, - [202322] = 6, + [172138] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8346), 1, - sym__newline, - ACTIONS(9022), 1, - anon_sym_else, - STATE(5426), 1, + STATE(4710), 1, sym_comment, - STATE(5428), 1, - aux_sym_shebang_repeat1, - ACTIONS(8349), 9, + ACTIONS(7785), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419502,13 +384429,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, - [202349] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5427), 1, + STATE(4711), 1, sym_comment, - ACTIONS(8663), 12, + ACTIONS(5619), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5617), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419520,18 +384451,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, - [202370] = 6, + [172184] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5240), 1, + ACTIONS(5055), 1, sym__newline, - ACTIONS(9024), 1, + ACTIONS(8194), 1, anon_sym_else, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(5428), 1, + STATE(4712), 1, sym_comment, - ACTIONS(1310), 9, + ACTIONS(1264), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419541,14 +384473,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, - [202397] = 3, + [172212] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5429), 1, - sym_comment, - ACTIONS(8507), 12, - ts_builtin_sym_end, + ACTIONS(5055), 1, sym__newline, + ACTIONS(8197), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4713), 1, + sym_comment, + ACTIONS(1264), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -419559,13 +384495,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, - [202418] = 3, + [172240] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5430), 1, - sym_comment, - ACTIONS(9027), 12, + ACTIONS(7922), 1, sym__newline, + ACTIONS(8200), 1, + anon_sym_else, + STATE(4714), 1, + sym_comment, + STATE(4719), 1, + aux_sym_shebang_repeat1, + ACTIONS(7925), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -419576,33 +384517,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, - [202439] = 3, + [172268] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5431), 1, + ACTIONS(2378), 1, + anon_sym_DASH2, + STATE(4715), 1, sym_comment, - ACTIONS(7301), 12, + ACTIONS(2380), 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, - [202460] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [172292] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9031), 1, + ACTIONS(8204), 1, anon_sym_DASH2, - STATE(5432), 1, + STATE(4716), 1, sym_comment, - ACTIONS(9029), 11, + ACTIONS(8202), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419612,14 +384554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202483] = 3, + [172316] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5433), 1, + STATE(4717), 1, sym_comment, - ACTIONS(9033), 12, + ACTIONS(6747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419632,33 +384575,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [202504] = 4, + anon_sym_RBRACE, + [172338] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9031), 1, - anon_sym_DASH2, - STATE(5434), 1, + STATE(4718), 1, sym_comment, - ACTIONS(9029), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8206), 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, - [202527] = 3, + anon_sym_RBRACE, + [172360] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5435), 1, - sym_comment, - ACTIONS(8695), 12, - ts_builtin_sym_end, + ACTIONS(5055), 1, sym__newline, + ACTIONS(8208), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4719), 1, + sym_comment, + ACTIONS(1264), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -419669,37 +384617,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, - [202548] = 4, - ACTIONS(251), 1, + [172388] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9037), 1, - anon_sym_DASH2, - STATE(5436), 1, + STATE(4720), 1, sym_comment, - ACTIONS(9035), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7297), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7295), 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, - [202571] = 6, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [172412] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - STATE(729), 1, - aux_sym__pipe_separator, - STATE(5437), 1, + STATE(4721), 1, sym_comment, - STATE(5492), 1, - aux_sym_shebang_repeat1, - ACTIONS(2552), 9, + ACTIONS(2400), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2398), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -419709,12 +384657,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, - [202598] = 3, + [172436] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5438), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + STATE(4722), 1, sym_comment, - ACTIONS(9039), 12, + ACTIONS(8083), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419726,14 +384676,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, - [202619] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [172460] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5439), 1, + STATE(4723), 1, sym_comment, - ACTIONS(8697), 12, + ACTIONS(7463), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7461), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419745,40 +384697,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, - [202640] = 13, + [172484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8811), 1, - anon_sym_DOLLAR, - ACTIONS(8813), 1, - anon_sym_DOLLAR2, - ACTIONS(8815), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8817), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8967), 1, - anon_sym_RBRACK, - STATE(2975), 1, - sym__immediate_decimal, - STATE(5440), 1, + STATE(4724), 1, sym_comment, - STATE(3056), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202681] = 3, - ACTIONS(251), 1, + ACTIONS(5037), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5039), 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, + [172508] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5441), 1, + STATE(4725), 1, sym_comment, - ACTIONS(9041), 12, + ACTIONS(5041), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419790,15 +384737,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, - [202702] = 4, + [172532] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8024), 1, + ACTIONS(8213), 1, anon_sym_DASH2, - STATE(5442), 1, + STATE(4726), 1, sym_comment, - ACTIONS(8022), 11, + ACTIONS(8211), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419808,14 +384754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202725] = 3, - ACTIONS(251), 1, + [172556] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5443), 1, + STATE(4727), 1, sym_comment, - ACTIONS(9043), 12, + ACTIONS(2451), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2449), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419827,42 +384777,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, - [202746] = 13, + [172580] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACE, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8601), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9045), 1, - anon_sym_DOT, - STATE(5444), 1, - sym_comment, - STATE(6582), 1, - sym__immediate_decimal, - STATE(6278), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202787] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5445), 1, + STATE(4728), 1, sym_comment, - ACTIONS(8455), 12, + ACTIONS(2491), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2489), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419874,39 +384797,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, - [202808] = 12, - ACTIONS(251), 1, + [172604] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(8987), 1, - anon_sym_DOLLAR, - ACTIONS(8989), 1, - anon_sym_DASH_DASH, - ACTIONS(8991), 1, - anon_sym_DASH2, - ACTIONS(8993), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - STATE(1854), 1, - sym_val_closure, - STATE(5446), 1, + STATE(4729), 1, sym_comment, - STATE(5541), 1, - aux_sym_ctrl_do_repeat1, - STATE(785), 2, - sym__blosure, - sym_val_variable, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [202847] = 3, - ACTIONS(251), 1, + ACTIONS(7839), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7837), 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, + [172628] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5447), 1, + STATE(4730), 1, sym_comment, - ACTIONS(7223), 12, + ACTIONS(2356), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2354), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419918,15 +384837,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, - [202868] = 4, + [172652] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8129), 1, + ACTIONS(2402), 1, anon_sym_DASH2, - STATE(5448), 1, + STATE(4731), 1, sym_comment, - ACTIONS(8127), 11, + ACTIONS(2404), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -419938,13 +384856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202891] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + [172676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5449), 1, + STATE(4732), 1, sym_comment, - ACTIONS(8457), 12, + ACTIONS(2360), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2358), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -419956,39 +384877,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, - [202912] = 11, - ACTIONS(251), 1, + [172700] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8859), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8861), 1, - aux_sym__immediate_decimal_token5, - STATE(5450), 1, + STATE(4733), 1, sym_comment, - STATE(7636), 1, - sym__immediate_decimal, - ACTIONS(1657), 2, + ACTIONS(2364), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2362), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8857), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2133), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202949] = 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, + [172724] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5451), 1, + ACTIONS(8217), 1, + anon_sym_DASH2, + STATE(4734), 1, + sym_comment, + ACTIONS(8215), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172748] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4735), 1, sym_comment, - ACTIONS(8655), 12, + ACTIONS(2507), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2505), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420000,33 +384937,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, - [202970] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5452), 1, - sym_comment, - ACTIONS(7950), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7952), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [202993] = 4, - ACTIONS(251), 1, + [172772] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9047), 1, - anon_sym_else, - STATE(5453), 1, + STATE(4736), 1, sym_comment, - ACTIONS(8683), 11, + ACTIONS(2455), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420038,14 +384957,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, - [203016] = 4, + [172796] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9051), 1, + ACTIONS(8221), 1, anon_sym_DASH2, - STATE(5454), 1, + STATE(4737), 1, sym_comment, - ACTIONS(9049), 11, + ACTIONS(8219), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -420055,14 +384974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203039] = 3, - ACTIONS(251), 1, + [172820] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5455), 1, + STATE(4738), 1, sym_comment, - ACTIONS(9053), 12, + ACTIONS(2148), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2142), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420074,13 +384997,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, - [203060] = 3, - ACTIONS(251), 1, + [172844] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5456), 1, + STATE(4739), 1, sym_comment, - ACTIONS(9055), 12, + ACTIONS(2156), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2150), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420092,13 +385017,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, + [172868] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2406), 1, + anon_sym_DASH2, + STATE(4740), 1, + sym_comment, + ACTIONS(2408), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [203081] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [172892] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5457), 1, + STATE(4741), 1, sym_comment, - ACTIONS(9057), 12, + ACTIONS(5060), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420111,12 +385055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [203102] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [172914] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5458), 1, + STATE(4742), 1, sym_comment, - ACTIONS(9059), 12, + ACTIONS(2164), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2158), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420128,13 +385076,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, - [203123] = 3, - ACTIONS(251), 1, + [172938] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5459), 1, + STATE(4743), 1, sym_comment, - ACTIONS(9061), 12, + ACTIONS(5630), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420146,13 +385096,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, - [203144] = 3, - ACTIONS(251), 1, + [172962] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5460), 1, + STATE(4744), 1, sym_comment, - ACTIONS(9063), 12, + ACTIONS(2404), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2402), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420164,13 +385116,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, + [172986] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8225), 1, + anon_sym_DASH2, + STATE(4745), 1, + sym_comment, + ACTIONS(8223), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [203165] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173010] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5461), 1, + STATE(4746), 1, sym_comment, - ACTIONS(9065), 12, + ACTIONS(8227), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420183,30 +385154,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [203186] = 3, + anon_sym_RBRACE, + [173032] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5462), 1, + ACTIONS(8231), 1, + anon_sym_DASH2, + STATE(4747), 1, sym_comment, - ACTIONS(9067), 12, + ACTIONS(8229), 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, - [203207] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173056] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5463), 1, + STATE(4748), 1, sym_comment, - ACTIONS(9069), 12, + ACTIONS(5064), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420219,12 +385193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [203228] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [173078] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5464), 1, + STATE(4749), 1, sym_comment, - ACTIONS(9071), 12, + ACTIONS(2384), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2382), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420236,41 +385214,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, - [203249] = 12, + [173102] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(8851), 1, - sym__newline, - ACTIONS(9073), 1, - sym_identifier, - ACTIONS(9075), 1, - anon_sym_GT2, - STATE(5465), 1, + ACTIONS(8235), 1, + anon_sym_DASH2, + STATE(4750), 1, sym_comment, - STATE(5531), 1, - aux_sym_shebang_repeat1, - STATE(5802), 1, - aux_sym_collection_type_repeat1, - STATE(7261), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [203288] = 3, + ACTIONS(8233), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173126] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5466), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4751), 1, sym_comment, - ACTIONS(8443), 12, - ts_builtin_sym_end, + ACTIONS(8237), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420282,30 +385253,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, - [203309] = 3, + anon_sym_RPAREN, + [173150] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5467), 1, + ACTIONS(8241), 1, + anon_sym_DASH2, + STATE(4752), 1, sym_comment, - ACTIONS(9077), 12, + ACTIONS(8239), 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, - [203330] = 3, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173174] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5468), 1, + STATE(4753), 1, sym_comment, - ACTIONS(9079), 12, + ACTIONS(2015), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420317,63 +385294,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, - [203351] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(8851), 1, - sym__newline, - ACTIONS(9081), 1, - sym_identifier, - ACTIONS(9083), 1, - anon_sym_GT2, - STATE(5469), 1, - sym_comment, - STATE(5514), 1, - aux_sym_shebang_repeat1, - STATE(5799), 1, - aux_sym_collection_type_repeat1, - STATE(6906), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [203390] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9085), 1, - anon_sym_DOT, - ACTIONS(9087), 1, - aux_sym__immediate_decimal_token2, - STATE(5470), 1, - sym_comment, - ACTIONS(1669), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1671), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [203417] = 4, + [173198] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9091), 1, + ACTIONS(8245), 1, anon_sym_DASH2, - STATE(5471), 1, + STATE(4754), 1, sym_comment, - ACTIONS(9089), 11, + ACTIONS(8243), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -420383,16 +385311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203440] = 4, + [173222] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9095), 1, + ACTIONS(8249), 1, anon_sym_DASH2, - STATE(5472), 1, + STATE(4755), 1, sym_comment, - ACTIONS(9093), 11, + ACTIONS(8247), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -420402,16 +385331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203463] = 4, + [173246] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9099), 1, + ACTIONS(8253), 1, anon_sym_DASH2, - STATE(5473), 1, + STATE(4756), 1, sym_comment, - ACTIONS(9097), 11, + ACTIONS(8251), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -420421,32 +385351,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203486] = 3, + [173270] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5474), 1, + ACTIONS(8257), 1, + anon_sym_DASH2, + STATE(4757), 1, sym_comment, - ACTIONS(9101), 12, + ACTIONS(8255), 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, - [203507] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173294] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5475), 1, + STATE(4758), 1, sym_comment, - ACTIONS(9103), 12, + ACTIONS(8259), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420459,13 +385392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [203528] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + [173316] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5476), 1, + STATE(4759), 1, sym_comment, - ACTIONS(5257), 12, + ACTIONS(2408), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2406), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420477,13 +385413,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, - [203549] = 3, + [173340] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5477), 1, + STATE(4760), 1, sym_comment, - ACTIONS(5261), 12, - ts_builtin_sym_end, + ACTIONS(8261), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -420495,35 +385430,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, - [203570] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173362] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5478), 1, + ACTIONS(3972), 1, + anon_sym_DOLLAR, + ACTIONS(8057), 1, + sym__newline, + ACTIONS(8059), 1, + sym__space, + ACTIONS(8061), 1, + anon_sym_DASH_DASH, + ACTIONS(8063), 1, + anon_sym_DASH2, + ACTIONS(8065), 1, + anon_sym_LBRACE, + STATE(1785), 1, + sym_block, + STATE(1786), 1, + sym_val_closure, + STATE(4761), 1, sym_comment, - ACTIONS(7329), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(7331), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(7333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [203597] = 4, + STATE(5540), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(790), 2, + sym__blosure, + sym_val_variable, + STATE(7264), 2, + sym_short_flag, + sym_long_flag, + [173404] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1597), 1, + sym__entry_separator, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8167), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8169), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8263), 1, + anon_sym_DOT, + STATE(4762), 1, + sym_comment, + STATE(5630), 1, + sym__immediate_decimal, + ACTIONS(1587), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5617), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173446] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2354), 1, anon_sym_DASH2, - STATE(5479), 1, + STATE(4763), 1, sym_comment, - ACTIONS(2409), 11, + ACTIONS(2356), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -420535,15 +385509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203620] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + [173470] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9105), 1, - anon_sym_else, - STATE(5480), 1, + STATE(4764), 1, sym_comment, - ACTIONS(8683), 10, + ACTIONS(2487), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2485), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -420553,249 +385530,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [203642] = 8, + [173494] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(4230), 1, - sym_cell_path, - STATE(5481), 1, + ACTIONS(8265), 1, + anon_sym_else, + STATE(4765), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(971), 6, + ACTIONS(8105), 12, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_as, - [203672] = 6, + [173518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4766), 1, + sym_comment, + ACTIONS(2423), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2421), 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, + [173542] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9109), 1, - anon_sym_DOT, - ACTIONS(9111), 1, - aux_sym__immediate_decimal_token2, - STATE(5482), 1, + ACTIONS(8269), 1, + anon_sym_DASH2, + STATE(4767), 1, sym_comment, - ACTIONS(1671), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 6, + ACTIONS(8267), 12, + anon_sym_EQ, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [203698] = 8, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [173566] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3745), 1, - sym_cell_path, - STATE(5483), 1, + STATE(4768), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1947), 6, + ACTIONS(8271), 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_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [203728] = 8, + [173588] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1653), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3712), 1, - sym_cell_path, - STATE(5484), 1, + STATE(4769), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1951), 6, + ACTIONS(1665), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [203758] = 6, + anon_sym_LBRACE, + [173612] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9113), 1, - anon_sym_DOT, - ACTIONS(9115), 1, - aux_sym__immediate_decimal_token2, - STATE(5485), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, + ACTIONS(1621), 1, aux_sym_unquoted_token2, - ACTIONS(1671), 7, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(8275), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8277), 1, + aux_sym__immediate_decimal_token5, + STATE(4770), 1, + sym_comment, + STATE(6372), 1, + sym__immediate_decimal, + ACTIONS(8273), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2043), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1619), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203784] = 5, + [173650] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9117), 1, - aux_sym__immediate_decimal_token2, - STATE(5486), 1, - sym_comment, - ACTIONS(1713), 4, + ACTIONS(7558), 1, + sym_identifier, + ACTIONS(7564), 1, anon_sym_DOLLAR, + ACTIONS(7566), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7568), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 6, - sym_identifier, + ACTIONS(7570), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [203808] = 6, + ACTIONS(7685), 1, + anon_sym_PIPE, + STATE(3894), 1, + sym_param_long_flag, + STATE(4073), 1, + sym__param_name, + STATE(4316), 1, + aux_sym_parameter_parens_repeat1, + STATE(4771), 1, + sym_comment, + STATE(4822), 1, + sym_param_rest, + STATE(4828), 1, + sym_param_opt, + STATE(4834), 1, + sym_param_short_flag, + STATE(5313), 1, + sym_parameter, + [173696] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(975), 1, + ACTIONS(8281), 1, anon_sym_DASH2, - ACTIONS(9119), 1, - anon_sym_DOT, - STATE(5806), 1, - sym_path, - STATE(5487), 2, + STATE(4772), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 7, + ACTIONS(8279), 12, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [203834] = 8, + [173720] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(2421), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3741), 1, - sym_cell_path, - STATE(5488), 1, + STATE(4773), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(2035), 6, + ACTIONS(2423), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [203864] = 8, + anon_sym_LBRACE, + [173744] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(8285), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3703), 1, - sym_cell_path, - STATE(5489), 1, + STATE(4774), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(2051), 6, + ACTIONS(8283), 12, + anon_sym_EQ, + sym_identifier, 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, - anon_sym_RBRACE, - anon_sym_as, - [203894] = 8, + [173768] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2053), 1, + ACTIONS(8289), 1, + anon_sym_QMARK, + ACTIONS(8291), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3726), 1, - sym_cell_path, - STATE(5490), 1, + STATE(4775), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(2055), 6, + ACTIONS(8287), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [203924] = 8, + [173794] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3740), 1, - sym_cell_path, - STATE(5491), 1, + STATE(4776), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1943), 6, + ACTIONS(8293), 13, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [203954] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5492), 1, - sym_comment, - ACTIONS(2625), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -420805,52899 +385785,51155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [203978] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3687), 1, - sym_cell_path, - STATE(5493), 1, - sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1873), 6, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [204008] = 8, - ACTIONS(251), 1, + [173816] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3696), 1, - sym_cell_path, - STATE(5494), 1, + STATE(4777), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1877), 6, + ACTIONS(2431), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2429), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204038] = 8, - ACTIONS(251), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3714), 1, - sym_cell_path, - STATE(5495), 1, + STATE(4778), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1881), 6, + ACTIONS(2435), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2433), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204068] = 8, - ACTIONS(251), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173864] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3716), 1, - sym_cell_path, - STATE(5496), 1, + STATE(4779), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1885), 6, + ACTIONS(2439), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2437), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204098] = 8, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173888] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(2297), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3730), 1, - sym_cell_path, - STATE(5497), 1, + STATE(4780), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1889), 6, + ACTIONS(2299), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204128] = 9, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [173912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3523), 1, - aux_sym_expr_unary_token1, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(9122), 1, - anon_sym_DASH2, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(5498), 1, + STATE(4781), 1, sym_comment, - ACTIONS(3515), 2, - anon_sym_true, - anon_sym_false, - STATE(2667), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [204160] = 8, + ACTIONS(2368), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2366), 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, + [173936] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(2362), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3686), 1, - sym_cell_path, - STATE(5499), 1, + STATE(4782), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1893), 6, + ACTIONS(2364), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204190] = 8, + anon_sym_LBRACE, + [173960] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1004), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3691), 1, - sym_cell_path, - STATE(5500), 1, + STATE(4783), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1897), 6, + ACTIONS(1000), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204220] = 8, + anon_sym_LBRACE, + [173984] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1903), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3700), 1, - sym_cell_path, - STATE(5501), 1, + STATE(4784), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1905), 6, + ACTIONS(8295), 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_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [204250] = 8, + [174006] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(8299), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3725), 1, - sym_cell_path, - STATE(5502), 1, + STATE(4785), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1911), 6, + ACTIONS(8297), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204280] = 8, + [174030] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(8303), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3713), 1, - sym_cell_path, - STATE(5503), 1, + STATE(4786), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1919), 6, + ACTIONS(8301), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204310] = 8, + [174054] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3688), 1, - sym_cell_path, - STATE(5504), 1, + STATE(4787), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1927), 6, + ACTIONS(8305), 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_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [204340] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9124), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9126), 1, - aux_sym__immediate_decimal_token2, - STATE(5505), 1, - sym_comment, - ACTIONS(1663), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1661), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [204366] = 11, + [174076] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(1659), 1, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(9130), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(8275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9132), 1, + ACTIONS(8277), 1, aux_sym__immediate_decimal_token5, - STATE(5506), 1, + STATE(4788), 1, sym_comment, - STATE(8097), 1, + STATE(6544), 1, sym__immediate_decimal, - ACTIONS(9128), 2, + ACTIONS(8273), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2133), 2, + STATE(2026), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [204402] = 6, + ACTIONS(1583), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [174114] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9136), 1, + ACTIONS(8309), 1, anon_sym_DASH2, - STATE(5507), 1, + STATE(4789), 1, sym_comment, - STATE(5530), 1, - aux_sym_parameter_repeat2, - ACTIONS(2571), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(9134), 7, + ACTIONS(8307), 12, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [204428] = 5, + [174138] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8973), 1, - aux_sym__immediate_decimal_token2, - STATE(5508), 1, + ACTIONS(8313), 1, + anon_sym_DASH2, + STATE(4790), 1, sym_comment, - ACTIONS(1671), 4, + ACTIONS(8311), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [204452] = 6, - ACTIONS(251), 1, + [174162] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9138), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9140), 1, - aux_sym__immediate_decimal_token2, - STATE(5509), 1, + STATE(4791), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 7, + ACTIONS(5652), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5650), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [204478] = 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, + [174186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_RBRACE, - ACTIONS(1579), 1, - sym__entry_separator, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token3, - STATE(5510), 1, - sym_comment, - STATE(8127), 1, - sym__immediate_decimal, - STATE(7372), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [204516] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3710), 1, - sym_cell_path, - STATE(5511), 1, + STATE(4792), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1935), 6, + ACTIONS(7785), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7783), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204546] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8899), 1, - aux_sym__immediate_decimal_token2, - STATE(5512), 1, - sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [204570] = 8, - ACTIONS(251), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [174210] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3717), 1, - sym_cell_path, - STATE(5513), 1, + STATE(4793), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1939), 6, + ACTIONS(2372), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2370), 11, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [204600] = 11, - ACTIONS(251), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [174234] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(8851), 1, - sym__newline, - ACTIONS(9142), 1, - sym_identifier, - STATE(5514), 1, + STATE(4794), 1, sym_comment, - STATE(5800), 1, - aux_sym_collection_type_repeat1, - STATE(6084), 1, - aux_sym_shebang_repeat1, - STATE(6766), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [204636] = 6, + ACTIONS(5613), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5611), 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, + [174258] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9146), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(5515), 1, + STATE(4795), 1, sym_comment, - STATE(5530), 1, - aux_sym_parameter_repeat2, - ACTIONS(2571), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(9144), 7, + ACTIONS(2336), 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, - [204662] = 8, + anon_sym_LBRACE, + [174282] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3736), 1, - sym_cell_path, - STATE(5516), 1, + STATE(4796), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1955), 6, + ACTIONS(8315), 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_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [204692] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8989), 1, - anon_sym_DASH_DASH, - ACTIONS(8991), 1, - anon_sym_DASH2, - ACTIONS(9148), 1, - anon_sym_DOLLAR, - ACTIONS(9150), 1, - anon_sym_LBRACE, - STATE(1976), 1, - sym_val_closure, - STATE(2020), 1, - sym_block, - STATE(5517), 1, - sym_comment, - STATE(5518), 1, - aux_sym_ctrl_do_repeat1, - STATE(804), 2, - sym__blosure, - sym_val_variable, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [204728] = 11, - ACTIONS(251), 1, + [174304] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, - anon_sym_DASH_DASH, - ACTIONS(8991), 1, - anon_sym_DASH2, - ACTIONS(9148), 1, - anon_sym_DOLLAR, - ACTIONS(9150), 1, - anon_sym_LBRACE, - STATE(1976), 1, - sym_val_closure, - STATE(2020), 1, - sym_block, - STATE(5518), 1, + STATE(4797), 1, sym_comment, - STATE(6030), 1, - aux_sym_ctrl_do_repeat1, - STATE(800), 2, - sym__blosure, - sym_val_variable, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [204764] = 9, - ACTIONS(83), 1, - aux_sym_expr_unary_token1, + ACTIONS(1947), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1945), 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, + [174328] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - ACTIONS(6029), 1, - anon_sym_LPAREN, - ACTIONS(9122), 1, - anon_sym_DASH2, - STATE(2649), 1, - sym__expr_unary_minus, - STATE(5519), 1, + STATE(4798), 1, sym_comment, - ACTIONS(3515), 2, - anon_sym_true, - anon_sym_false, - STATE(2667), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [204796] = 6, + ACTIONS(8071), 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, + [174349] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9154), 1, + ACTIONS(8319), 1, anon_sym_DASH2, - STATE(5520), 1, + STATE(4799), 1, sym_comment, - STATE(5530), 1, - aux_sym_parameter_repeat2, - ACTIONS(2571), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(9152), 7, + ACTIONS(8317), 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, - [204822] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3377), 1, - aux_sym_expr_unary_token1, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - ACTIONS(9156), 1, - anon_sym_LPAREN, - ACTIONS(9158), 1, - anon_sym_DASH2, - STATE(4168), 1, - sym__expr_unary_minus, - STATE(5521), 1, - sym_comment, - ACTIONS(5206), 2, - anon_sym_true, - anon_sym_false, - STATE(4126), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [204854] = 8, + [174372] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(7584), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(4230), 1, - sym_cell_path, - STATE(5522), 1, + STATE(4800), 1, sym_comment, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5806), 1, - sym_path, - ACTIONS(971), 6, + ACTIONS(7582), 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, - anon_sym_LBRACE, - [204884] = 11, + [174395] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8987), 1, - anon_sym_DOLLAR, - ACTIONS(8989), 1, - anon_sym_DASH_DASH, - ACTIONS(8991), 1, - anon_sym_DASH2, - ACTIONS(8993), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - STATE(1854), 1, - sym_val_closure, - STATE(5523), 1, - sym_comment, - STATE(5541), 1, - aux_sym_ctrl_do_repeat1, - STATE(785), 2, - sym__blosure, - sym_val_variable, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [204920] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9162), 1, - anon_sym_DOT, - ACTIONS(9164), 1, + ACTIONS(8321), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8323), 1, aux_sym__immediate_decimal_token2, - STATE(5524), 1, + STATE(4801), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1671), 6, - anon_sym_LPAREN2, + ACTIONS(1625), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1623), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [204946] = 6, + aux_sym_unquoted_token2, + [174422] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7769), 1, - anon_sym_DASH2, - STATE(5525), 1, + STATE(4802), 1, sym_comment, - STATE(5530), 1, - aux_sym_parameter_repeat2, - ACTIONS(2571), 2, + ACTIONS(6781), 12, sym__newline, - anon_sym_COMMA, - ACTIONS(7767), 7, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [204972] = 7, + [174443] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_DASH2, - ACTIONS(9160), 1, + ACTIONS(8325), 1, anon_sym_DOT, - STATE(5487), 1, - aux_sym_cell_path_repeat1, - STATE(5526), 1, + ACTIONS(8327), 1, + aux_sym__immediate_decimal_token2, + STATE(4803), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(984), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(1601), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205000] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3549), 1, - aux_sym_expr_unary_token1, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - ACTIONS(9166), 1, - anon_sym_DASH2, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(5527), 1, - sym_comment, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(2272), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [205032] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1645), 1, - anon_sym_RBRACE, - ACTIONS(1657), 1, - sym__entry_separator, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8877), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, - aux_sym__immediate_decimal_token3, - STATE(5528), 1, - sym_comment, - STATE(8020), 1, - sym__immediate_decimal, - STATE(7890), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205070] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9168), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9170), 1, - aux_sym__immediate_decimal_token2, - STATE(5529), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1663), 6, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1599), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [205096] = 5, + aux_sym_unquoted_token2, + [174470] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9177), 1, + ACTIONS(8331), 1, anon_sym_DASH2, - ACTIONS(9174), 2, - sym__newline, - anon_sym_COMMA, - STATE(5530), 2, + STATE(4804), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(9172), 7, + ACTIONS(8329), 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, - [205120] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(8851), 1, - sym__newline, - ACTIONS(9179), 1, - sym_identifier, - STATE(5531), 1, - sym_comment, - STATE(5803), 1, - aux_sym_collection_type_repeat1, - STATE(6084), 1, - aux_sym_shebang_repeat1, - STATE(6882), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [205156] = 9, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, + [174493] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6981), 1, - anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(8331), 1, anon_sym_DASH2, - STATE(2213), 1, - sym__expr_unary_minus, - STATE(5532), 1, + STATE(4805), 1, sym_comment, - ACTIONS(3497), 2, - anon_sym_true, - anon_sym_false, - STATE(2272), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [205188] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(8851), 1, - sym__newline, - ACTIONS(9181), 1, + ACTIONS(8329), 11, + anon_sym_EQ, sym_identifier, - STATE(5533), 1, - sym_comment, - STATE(5670), 1, - aux_sym_collection_type_repeat1, - STATE(6084), 1, - aux_sym_shebang_repeat1, - STATE(7061), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [205224] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7801), 1, - anon_sym_DASH2, - STATE(5530), 1, - aux_sym_parameter_repeat2, - STATE(5534), 1, - sym_comment, - ACTIONS(2571), 2, sym__newline, - anon_sym_COMMA, - ACTIONS(7799), 7, - sym_identifier, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [205250] = 11, + [174516] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(8333), 1, anon_sym_DOLLAR, - ACTIONS(9130), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9132), 1, - aux_sym__immediate_decimal_token5, - STATE(5535), 1, + ACTIONS(8335), 1, + anon_sym_DASH_DASH, + ACTIONS(8337), 1, + anon_sym_DASH2, + ACTIONS(8339), 1, + anon_sym_LBRACE, + STATE(1785), 1, + sym_block, + STATE(1786), 1, + sym_val_closure, + STATE(4806), 1, sym_comment, - STATE(8054), 1, - sym__immediate_decimal, - ACTIONS(9128), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2123), 2, - sym__expr_parenthesized_immediate, + STATE(4974), 1, + aux_sym_ctrl_do_repeat1, + STATE(787), 2, + sym__blosure, sym_val_variable, - [205286] = 5, - ACTIONS(3), 1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [174555] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9183), 1, - aux_sym__immediate_decimal_token2, - STATE(5536), 1, + STATE(4807), 1, sym_comment, - ACTIONS(1711), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [205310] = 5, - ACTIONS(3), 1, + ACTIONS(8341), 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, + [174576] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9087), 1, - aux_sym__immediate_decimal_token2, - STATE(5537), 1, + STATE(4808), 1, sym_comment, - ACTIONS(1669), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1671), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [205334] = 8, + ACTIONS(8343), 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, + [174597] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3692), 1, - sym_cell_path, - STATE(5538), 1, + STATE(4809), 1, sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1959), 6, + ACTIONS(8345), 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, + [174618] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4810), 1, + sym_comment, + ACTIONS(8347), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [205364] = 6, + [174639] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7773), 1, - anon_sym_DASH2, - STATE(5530), 1, - aux_sym_parameter_repeat2, - STATE(5539), 1, + STATE(4811), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(8349), 12, sym__newline, - anon_sym_COMMA, - ACTIONS(7771), 7, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [205390] = 11, + [174660] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1583), 1, anon_sym_LBRACE, - ACTIONS(4704), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(4706), 1, - anon_sym_DOT, - ACTIONS(8865), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR, - ACTIONS(8871), 1, + ACTIONS(8351), 1, + anon_sym_DOT, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, + ACTIONS(8357), 1, aux_sym__immediate_decimal_token5, - STATE(5540), 1, + STATE(4812), 1, sym_comment, - STATE(6782), 1, + STATE(5981), 1, sym__immediate_decimal, - ACTIONS(8869), 2, + ACTIONS(8353), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6781), 2, + STATE(6617), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205426] = 11, + [174699] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8987), 1, - anon_sym_DOLLAR, - ACTIONS(8989), 1, - anon_sym_DASH_DASH, - ACTIONS(8991), 1, - anon_sym_DASH2, - ACTIONS(8993), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - STATE(1854), 1, - sym_val_closure, - STATE(5541), 1, + ACTIONS(3876), 1, + sym__newline, + STATE(737), 1, + aux_sym__pipe_separator, + STATE(4813), 1, sym_comment, - STATE(6030), 1, - aux_sym_ctrl_do_repeat1, - STATE(796), 2, - sym__blosure, - sym_val_variable, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [205462] = 5, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(2529), 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, + [174726] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9185), 1, - aux_sym__immediate_decimal_token2, - STATE(5542), 1, + STATE(4814), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205486] = 8, + ACTIONS(8359), 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, + [174747] = 3, ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(3689), 1, - sym_cell_path, - STATE(5543), 1, - sym_comment, - STATE(5568), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(1931), 6, + anon_sym_POUND, + STATE(4815), 1, + sym_comment, + ACTIONS(8097), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [205516] = 11, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [174768] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(8857), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9187), 1, + ACTIONS(1687), 1, + sym__entry_separator, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(9189), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9191), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9193), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - STATE(5544), 1, + ACTIONS(8361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, + aux_sym__immediate_decimal_token3, + STATE(4816), 1, sym_comment, - STATE(7564), 1, + STATE(6673), 1, sym__immediate_decimal, - STATE(2144), 2, + ACTIONS(1685), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6672), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205551] = 11, + [174807] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(6591), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9187), 1, + ACTIONS(1691), 1, + sym__entry_separator, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(9195), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9197), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9199), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - STATE(3926), 1, - sym__immediate_decimal, - STATE(5545), 1, + ACTIONS(8361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, + aux_sym__immediate_decimal_token3, + STATE(4817), 1, sym_comment, - STATE(2144), 2, + STATE(6678), 1, + sym__immediate_decimal, + ACTIONS(1689), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6677), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205586] = 10, - ACTIONS(251), 1, + [174846] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1685), 1, - anon_sym_LBRACE, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, + ACTIONS(1695), 1, + sym__entry_separator, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(8871), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - STATE(2091), 1, - sym__immediate_decimal, - STATE(5546), 1, - sym_comment, - ACTIONS(9201), 2, + ACTIONS(8361), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, aux_sym__immediate_decimal_token3, - STATE(2080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205619] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5547), 1, + STATE(4818), 1, sym_comment, - ACTIONS(988), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(986), 7, - anon_sym_COLON, + STATE(6683), 1, + sym__immediate_decimal, + ACTIONS(1693), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [205640] = 11, + STATE(6682), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [174885] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(1569), 1, + anon_sym_RBRACE, + ACTIONS(1583), 1, + sym__entry_separator, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(4067), 1, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(4071), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4073), 1, + ACTIONS(8365), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4690), 1, - aux_sym_unquoted_token3, - ACTIONS(9203), 1, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8369), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9205), 1, + ACTIONS(8371), 1, aux_sym__immediate_decimal_token5, - STATE(1488), 1, - sym__immediate_decimal, - STATE(5548), 1, + STATE(4819), 1, sym_comment, - STATE(1594), 2, + STATE(6216), 1, + sym__immediate_decimal, + STATE(6896), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205675] = 5, + [174926] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9207), 1, - aux_sym__immediate_decimal_token2, - STATE(5549), 1, + STATE(4820), 1, sym_comment, - ACTIONS(1713), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [205698] = 11, - ACTIONS(3), 1, + ACTIONS(8315), 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, + [174947] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_DOLLAR, - ACTIONS(4233), 1, - anon_sym_LPAREN2, - ACTIONS(4235), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4237), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4690), 1, - aux_sym_unquoted_token3, - ACTIONS(9209), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9211), 1, - aux_sym__immediate_decimal_token5, - STATE(1755), 1, - sym__immediate_decimal, - STATE(5550), 1, + STATE(4821), 1, sym_comment, - STATE(1897), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205733] = 9, + ACTIONS(7969), 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, + [174968] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(8375), 1, anon_sym_DASH2, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(9213), 1, - sym_filesize_unit, - ACTIONS(9215), 1, - sym_duration_unit, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - STATE(5551), 1, + STATE(4822), 1, sym_comment, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 3, + ACTIONS(8373), 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, - anon_sym_LBRACE, - [205764] = 11, + [174991] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1056), 1, + ACTIONS(1617), 1, + anon_sym_RBRACE, + ACTIONS(1619), 1, + sym__entry_separator, + ACTIONS(1621), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(5979), 1, + ACTIONS(8365), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9219), 1, + ACTIONS(8367), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9221), 1, + ACTIONS(8369), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9223), 1, + ACTIONS(8371), 1, aux_sym__immediate_decimal_token5, - STATE(3315), 1, - sym__immediate_decimal, - STATE(5552), 1, + STATE(4823), 1, sym_comment, - STATE(2019), 2, + STATE(6333), 1, + sym__immediate_decimal, + STATE(6684), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [205799] = 5, + [175032] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1308), 1, + ACTIONS(8379), 1, anon_sym_DASH2, - ACTIONS(9225), 1, - sym__newline, - STATE(5553), 2, + STATE(4824), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1310), 7, + ACTIONS(8377), 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, - [205822] = 11, - ACTIONS(3), 1, + [175055] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(6031), 1, + ACTIONS(8383), 1, + anon_sym_DASH2, + STATE(4825), 1, + sym_comment, + ACTIONS(8381), 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(7381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9228), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9230), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9232), 1, - aux_sym__immediate_decimal_token5, - STATE(4490), 1, - sym__immediate_decimal, - STATE(5554), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175078] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8387), 1, + anon_sym_DASH2, + STATE(4826), 1, sym_comment, - STATE(2669), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205857] = 4, + ACTIONS(8385), 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, + [175101] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5555), 1, + STATE(4827), 1, sym_comment, - ACTIONS(1669), 3, + ACTIONS(1599), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1671), 7, - anon_sym_DOLLAR, + ACTIONS(1601), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205878] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8843), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8845), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8847), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9234), 1, - aux_sym__unquoted_in_record_token3, - STATE(5556), 1, - sym_comment, - STATE(7060), 1, - sym__immediate_decimal, - STATE(7336), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205913] = 6, + [175124] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9236), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9238), 1, - aux_sym__immediate_decimal_token2, - STATE(5557), 1, + ACTIONS(8391), 1, + anon_sym_DASH2, + STATE(4828), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 6, + ACTIONS(8389), 11, + 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, - [205938] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175147] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9240), 1, - anon_sym_DOT, - ACTIONS(9242), 1, - aux_sym__immediate_decimal_token2, - STATE(5558), 1, + STATE(4829), 1, sym_comment, - ACTIONS(1669), 3, - sym__newline, + ACTIONS(1623), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1671), 5, - sym__space, + ACTIONS(1625), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [205963] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3545), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(7341), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9244), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9246), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9248), 1, - aux_sym__immediate_decimal_token5, - STATE(4323), 1, - sym__immediate_decimal, - STATE(5559), 1, - sym_comment, - STATE(4391), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [205998] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(6070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9187), 1, - anon_sym_DOLLAR, - ACTIONS(9250), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9252), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9254), 1, - aux_sym__immediate_decimal_token5, - STATE(3351), 1, - sym__immediate_decimal, - STATE(5560), 1, - sym_comment, - STATE(2144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206033] = 4, - ACTIONS(3), 1, + [175170] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5561), 1, + STATE(4830), 1, sym_comment, - ACTIONS(1711), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1709), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1713), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1711), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [206054] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3369), 1, - anon_sym_DOLLAR, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6479), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6720), 1, - aux_sym_unquoted_token3, - ACTIONS(9256), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9258), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9260), 1, - aux_sym__immediate_decimal_token5, - STATE(3711), 1, - sym__immediate_decimal, - STATE(5562), 1, - sym_comment, - STATE(3839), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206089] = 5, + [175193] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9262), 1, - aux_sym__immediate_decimal_token2, - STATE(5563), 1, + STATE(4831), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1723), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1725), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [206112] = 11, - ACTIONS(3), 1, + [175216] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4313), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(7349), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9264), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9266), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9268), 1, - aux_sym__immediate_decimal_token5, - STATE(4414), 1, - sym__immediate_decimal, - STATE(5564), 1, + ACTIONS(8395), 1, + anon_sym_DASH2, + STATE(4832), 1, sym_comment, - STATE(2144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206147] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3459), 1, + ACTIONS(8393), 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(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(6658), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9270), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9272), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9274), 1, - aux_sym__immediate_decimal_token5, - STATE(3790), 1, - sym__immediate_decimal, - STATE(5565), 1, - sym_comment, - STATE(3947), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206182] = 8, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175239] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(8399), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5566), 1, + STATE(4833), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6355), 1, - sym_cell_path, - ACTIONS(1943), 5, - ts_builtin_sym_end, + ACTIONS(8397), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [206211] = 5, + [175262] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9111), 1, - aux_sym__immediate_decimal_token2, - STATE(5567), 1, + ACTIONS(8403), 1, + anon_sym_DASH2, + STATE(4834), 1, sym_comment, - ACTIONS(1671), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 6, + ACTIONS(8401), 11, + anon_sym_EQ, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [206234] = 7, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175285] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(982), 1, + ACTIONS(2115), 1, anon_sym_DASH2, - ACTIONS(9107), 1, - anon_sym_DOT, - STATE(5568), 1, + STATE(4835), 1, sym_comment, - STATE(5644), 1, - aux_sym_cell_path_repeat1, - STATE(5971), 1, - sym_path, - ACTIONS(984), 6, + ACTIONS(2121), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [206261] = 8, + [175308] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5569), 1, + ACTIONS(948), 1, + anon_sym_DOT_DOT2, + ACTIONS(8021), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(4836), 1, sym_comment, - STATE(5668), 1, + STATE(4841), 1, aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6348), 1, - sym_cell_path, - ACTIONS(1927), 5, - ts_builtin_sym_end, + ACTIONS(950), 8, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206290] = 8, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [175337] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(2505), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5570), 1, + STATE(4837), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6351), 1, - sym_cell_path, - ACTIONS(1931), 5, - ts_builtin_sym_end, + ACTIONS(2507), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [206319] = 8, + [175360] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(2142), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5571), 1, + STATE(4838), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6356), 1, - sym_cell_path, - ACTIONS(1873), 5, - ts_builtin_sym_end, + ACTIONS(2148), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [206348] = 11, - ACTIONS(3), 1, + [175383] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6720), 1, - aux_sym_unquoted_token3, - ACTIONS(9278), 1, - anon_sym_DOLLAR, - ACTIONS(9280), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9282), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9284), 1, - aux_sym__immediate_decimal_token5, - STATE(3878), 1, - sym__immediate_decimal, - STATE(5572), 1, + ACTIONS(2150), 1, + anon_sym_DASH2, + STATE(4839), 1, sym_comment, - STATE(4150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206383] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(6672), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9187), 1, + ACTIONS(2156), 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(9286), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9288), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9290), 1, - aux_sym__immediate_decimal_token5, - STATE(4027), 1, - sym__immediate_decimal, - STATE(5573), 1, - sym_comment, - STATE(2144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206418] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175406] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8821), 1, + ACTIONS(2158), 1, anon_sym_DASH2, - STATE(5574), 1, + STATE(4840), 1, sym_comment, - ACTIONS(5928), 9, + ACTIONS(2164), 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, - [206439] = 8, + [175429] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5575), 1, + ACTIONS(941), 1, + anon_sym_DOT_DOT2, + ACTIONS(8405), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(4841), 2, sym_comment, - STATE(5668), 1, aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6320), 1, - sym_cell_path, - ACTIONS(1959), 5, - ts_builtin_sym_end, + ACTIONS(943), 8, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [206468] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5573), 1, - anon_sym_LPAREN2, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8811), 1, - anon_sym_DOLLAR, - ACTIONS(8815), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8817), 1, - aux_sym__immediate_decimal_token5, - STATE(2975), 1, - sym__immediate_decimal, - STATE(5576), 1, - sym_comment, - STATE(3056), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206503] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1643), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token5, - STATE(2093), 1, - sym__immediate_decimal, - STATE(5577), 1, - sym_comment, - ACTIONS(9201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2090), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206536] = 8, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [175456] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(2429), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5578), 1, + STATE(4842), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6343), 1, - sym_cell_path, - ACTIONS(2051), 5, - ts_builtin_sym_end, + ACTIONS(2431), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [206565] = 8, + [175479] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(2433), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5579), 1, + STATE(4843), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6247), 1, - sym_cell_path, - ACTIONS(1877), 5, - ts_builtin_sym_end, + ACTIONS(2435), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [206594] = 6, + [175502] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9294), 1, - anon_sym_DASH_DASH, - ACTIONS(9297), 1, + ACTIONS(2437), 1, anon_sym_DASH2, - STATE(5580), 2, + STATE(4844), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6047), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9292), 5, + ACTIONS(2439), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_as, - [206619] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3459), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(6581), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9300), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9302), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9304), 1, - aux_sym__immediate_decimal_token5, - STATE(3705), 1, - sym__immediate_decimal, - STATE(5581), 1, - sym_comment, - STATE(2019), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206654] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3889), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(5582), 1, - sym_comment, - STATE(6495), 1, - sym__immediate_decimal, - STATE(7270), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206689] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175525] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4509), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(5583), 1, + ACTIONS(2445), 1, + anon_sym_DASH2, + STATE(4845), 1, sym_comment, - STATE(8021), 1, - sym__immediate_decimal, - STATE(2144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206724] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3459), 1, + ACTIONS(2447), 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(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(8449), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9318), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9320), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9322), 1, - aux_sym__immediate_decimal_token5, - STATE(5584), 1, - sym_comment, - STATE(6140), 1, - sym__immediate_decimal, - STATE(6325), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206759] = 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175548] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1741), 1, - anon_sym_LBRACE, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token5, - STATE(2140), 1, - sym__immediate_decimal, - STATE(5585), 1, - sym_comment, - ACTIONS(9201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2138), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206792] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3111), 1, - anon_sym_DOLLAR, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8471), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8473), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8475), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8477), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9234), 1, - aux_sym__unquoted_in_record_token3, - STATE(5586), 1, + ACTIONS(2449), 1, + anon_sym_DASH2, + STATE(4846), 1, sym_comment, - STATE(6018), 1, - sym__immediate_decimal, - STATE(6263), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206827] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1070), 1, + 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, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(6064), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9324), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9326), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9328), 1, - aux_sym__immediate_decimal_token5, - STATE(3328), 1, - sym__immediate_decimal, - STATE(5587), 1, - sym_comment, - STATE(2218), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206862] = 8, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175571] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2453), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5588), 1, + STATE(4847), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6094), 1, - sym_cell_path, - ACTIONS(1935), 5, - ts_builtin_sym_end, + ACTIONS(2455), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [206891] = 5, - ACTIONS(3), 1, + [175594] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9164), 1, - aux_sym__immediate_decimal_token2, - STATE(5589), 1, + ACTIONS(2457), 1, + anon_sym_DASH2, + STATE(4848), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1671), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [206914] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3111), 1, + ACTIONS(2459), 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(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8599), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8601), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8603), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8605), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9330), 1, - aux_sym__unquoted_in_list_token3, - STATE(5590), 1, - sym_comment, - STATE(6023), 1, - sym__immediate_decimal, - STATE(6263), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206949] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175617] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4079), 1, - anon_sym_DOLLAR, - ACTIONS(4081), 1, - anon_sym_LPAREN2, - ACTIONS(4083), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4085), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4159), 1, - aux_sym_unquoted_token3, - ACTIONS(9332), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9334), 1, - aux_sym__immediate_decimal_token5, - STATE(1602), 1, - sym__immediate_decimal, - STATE(5591), 1, + ACTIONS(2461), 1, + anon_sym_DASH2, + STATE(4849), 1, sym_comment, - STATE(1772), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [206984] = 8, + ACTIONS(2463), 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, + [175640] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2053), 1, + ACTIONS(2467), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5592), 1, + STATE(4850), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6352), 1, - sym_cell_path, - ACTIONS(2055), 5, - ts_builtin_sym_end, + ACTIONS(2469), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [207013] = 4, - ACTIONS(3), 1, + [175663] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5593), 1, + ACTIONS(2471), 1, + anon_sym_DASH2, + STATE(4851), 1, sym_comment, - ACTIONS(1006), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1004), 7, + ACTIONS(2473), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [207034] = 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175686] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5594), 1, + STATE(4852), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6098), 1, - sym_cell_path, - ACTIONS(1881), 5, + ACTIONS(5060), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207063] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [175707] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4853), 1, + sym_comment, + ACTIONS(5064), 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, + [175728] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5595), 1, + STATE(4854), 1, sym_comment, - ACTIONS(1661), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207084] = 8, + ACTIONS(6889), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6895), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6891), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6893), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [175755] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5596), 1, + STATE(4855), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6179), 1, - sym_cell_path, - ACTIONS(1951), 5, + ACTIONS(8035), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207113] = 11, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [175776] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(1569), 1, + anon_sym_RBRACE, + ACTIONS(1583), 1, + sym__entry_separator, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(4780), 1, + ACTIONS(8165), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(9187), 1, - anon_sym_DOLLAR, - ACTIONS(9336), 1, + ACTIONS(8167), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9338), 1, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9340), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - STATE(2220), 1, - sym__immediate_decimal, - STATE(5597), 1, + ACTIONS(8408), 1, + anon_sym_DOT, + STATE(4856), 1, sym_comment, - STATE(2144), 2, + STATE(5967), 1, + sym__immediate_decimal, + STATE(5633), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207148] = 11, + [175817] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4857), 1, + sym_comment, + ACTIONS(8410), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8412), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [175840] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4858), 1, + sym_comment, + ACTIONS(8305), 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, + [175861] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, + ACTIONS(2556), 1, anon_sym_DOLLAR, - ACTIONS(7365), 1, + ACTIONS(5275), 1, anon_sym_LPAREN2, - ACTIONS(7369), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7371), 1, + ACTIONS(5279), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7373), 1, + ACTIONS(5281), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7375), 1, + ACTIONS(5283), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7487), 1, - aux_sym_unquoted_token3, - STATE(4399), 1, + ACTIONS(5532), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8414), 1, + anon_sym_RBRACK, + ACTIONS(8416), 1, + anon_sym_DOLLAR2, + ACTIONS(8418), 1, + aux_sym__immediate_decimal_token1, + STATE(2677), 1, sym__immediate_decimal, - STATE(5598), 1, + STATE(4859), 1, sym_comment, - STATE(4487), 2, + STATE(2807), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207183] = 11, - ACTIONS(3), 1, + [175902] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4879), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(9342), 1, - anon_sym_DOLLAR, - ACTIONS(9344), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9346), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9348), 1, - aux_sym__immediate_decimal_token5, - STATE(2280), 1, - sym__immediate_decimal, - STATE(5599), 1, + STATE(4860), 1, sym_comment, - STATE(2669), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207218] = 11, + ACTIONS(7434), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7436), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [175925] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4861), 1, + sym_comment, + ACTIONS(8420), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(8422), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [175948] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5701), 1, + ACTIONS(5388), 1, anon_sym_LPAREN2, - ACTIONS(5703), 1, + ACTIONS(5392), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5705), 1, + ACTIONS(5394), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5913), 1, + ACTIONS(5700), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(9350), 1, + ACTIONS(8416), 1, + anon_sym_DOLLAR2, + ACTIONS(8424), 1, + anon_sym_RBRACK, + ACTIONS(8426), 1, anon_sym_DOLLAR, - ACTIONS(9352), 1, + ACTIONS(8428), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9354), 1, + ACTIONS(8430), 1, aux_sym__immediate_decimal_token5, - STATE(3167), 1, + STATE(2828), 1, sym__immediate_decimal, - STATE(5600), 1, + STATE(4862), 1, sym_comment, - STATE(3294), 2, + STATE(2934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207253] = 5, + [175989] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH2, - ACTIONS(9356), 1, - anon_sym_QMARK2, - STATE(5601), 1, + STATE(4863), 1, sym_comment, - ACTIONS(992), 8, - anon_sym_EQ, - sym_identifier, + ACTIONS(8295), 12, + ts_builtin_sym_end, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [207276] = 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176010] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5602), 1, + STATE(4864), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6095), 1, - sym_cell_path, - ACTIONS(1939), 5, + ACTIONS(8011), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207305] = 5, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176031] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9115), 1, - aux_sym__immediate_decimal_token2, - STATE(5603), 1, + STATE(4865), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 7, + ACTIONS(7785), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207328] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176052] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_DASH_DASH, - ACTIONS(9362), 1, + ACTIONS(7693), 1, anon_sym_DASH2, - ACTIONS(9364), 1, - anon_sym_as, - STATE(5604), 1, + STATE(4866), 1, sym_comment, - STATE(5626), 1, - aux_sym_ctrl_do_repeat1, - STATE(6047), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9358), 4, + ACTIONS(7691), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [207357] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2145), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(7401), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7403), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7407), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7551), 1, - aux_sym_unquoted_token3, - STATE(4417), 1, - sym__immediate_decimal, - STATE(5605), 1, - sym_comment, - STATE(4707), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207392] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176075] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5606), 1, + STATE(4867), 1, sym_comment, - ACTIONS(998), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(996), 7, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6877), 2, anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [207413] = 8, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6879), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [176102] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(8434), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5607), 1, + STATE(4868), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6123), 1, - sym_cell_path, - ACTIONS(1885), 5, - ts_builtin_sym_end, + ACTIONS(8432), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [207442] = 11, + [176125] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9368), 1, - anon_sym_DASH_DASH, - ACTIONS(9370), 1, + ACTIONS(8438), 1, anon_sym_DASH2, - STATE(5608), 1, + STATE(4869), 1, sym_comment, - STATE(5685), 1, - aux_sym_ctrl_do_repeat1, - STATE(5695), 1, - sym_val_variable, - STATE(6963), 1, - sym__variable_name, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [207477] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(8436), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - ACTIONS(9330), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9372), 1, - anon_sym_DOT_DOT2, - ACTIONS(9376), 1, - sym_filesize_unit, - ACTIONS(9378), 1, - sym_duration_unit, - STATE(5609), 1, - sym_comment, - STATE(8167), 1, - sym__expr_parenthesized_immediate, - ACTIONS(9374), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207512] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3519), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(7359), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9380), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9382), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9384), 1, - aux_sym__immediate_decimal_token5, - STATE(4343), 1, - sym__immediate_decimal, - STATE(5610), 1, - sym_comment, - STATE(4472), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207547] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176148] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(8831), 1, - anon_sym_DOLLAR, - ACTIONS(8833), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8835), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9330), 1, - aux_sym__unquoted_in_list_token3, - STATE(5611), 1, + STATE(4870), 1, sym_comment, - STATE(7134), 1, - sym__immediate_decimal, - STATE(7336), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207582] = 6, + ACTIONS(7478), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7480), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [176171] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9386), 1, - anon_sym_DOT, - ACTIONS(9388), 1, - aux_sym__immediate_decimal_token2, - STATE(5612), 1, - sym_comment, - ACTIONS(1671), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 5, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(8440), 1, sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [207607] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5613), 1, + ACTIONS(8442), 1, + sym__newline, + ACTIONS(8444), 1, + anon_sym_GT2, + STATE(4871), 1, sym_comment, - ACTIONS(1661), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1663), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [207628] = 8, + STATE(4985), 1, + aux_sym_shebang_repeat1, + STATE(5231), 1, + aux_sym_collection_type_repeat1, + STATE(6129), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [176210] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(8448), 1, anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5614), 1, + STATE(4872), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6139), 1, - sym_cell_path, - ACTIONS(1889), 5, - ts_builtin_sym_end, + ACTIONS(8446), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [207657] = 11, - ACTIONS(3), 1, + [176233] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(6174), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9342), 1, - anon_sym_DOLLAR, - ACTIONS(9390), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9392), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9394), 1, - aux_sym__immediate_decimal_token5, - STATE(3369), 1, - sym__immediate_decimal, - STATE(5615), 1, + STATE(4873), 1, sym_comment, - STATE(2669), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207692] = 5, - ACTIONS(3), 1, + ACTIONS(8450), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [176254] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9396), 1, - aux_sym__immediate_decimal_token2, - STATE(5616), 1, + STATE(4874), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [207715] = 6, - ACTIONS(3), 1, + ACTIONS(8452), 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, + [176275] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9398), 1, - anon_sym_DOT, - ACTIONS(9400), 1, - aux_sym__immediate_decimal_token2, - STATE(5617), 1, + STATE(4875), 1, sym_comment, - ACTIONS(1779), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207740] = 6, - ACTIONS(3), 1, + ACTIONS(8454), 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, + [176296] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9402), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9404), 1, - aux_sym__immediate_decimal_token2, - STATE(5618), 1, + STATE(4876), 1, sym_comment, - ACTIONS(1661), 3, + ACTIONS(8456), 12, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207765] = 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [176317] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5619), 1, + STATE(4877), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6115), 1, - sym_cell_path, - ACTIONS(1893), 5, - ts_builtin_sym_end, + ACTIONS(8458), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207794] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [176338] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5620), 1, + STATE(4878), 1, sym_comment, - ACTIONS(1767), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [207815] = 6, + ACTIONS(8460), 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, + [176359] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9406), 1, - anon_sym_DOT, - ACTIONS(9408), 1, - aux_sym__immediate_decimal_token2, - STATE(5621), 1, + STATE(4879), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 6, + ACTIONS(8462), 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, - [207840] = 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_RPAREN, + [176380] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9410), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9412), 1, - aux_sym__immediate_decimal_token2, - STATE(5622), 1, + STATE(4880), 1, sym_comment, - ACTIONS(1663), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1661), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [207865] = 9, + ACTIONS(8464), 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, + [176401] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4720), 1, + ACTIONS(1653), 1, + anon_sym_DASH2, + ACTIONS(4540), 1, anon_sym_DOT_DOT2, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - ACTIONS(9414), 1, + ACTIONS(8466), 1, sym_filesize_unit, - ACTIONS(9416), 1, + ACTIONS(8468), 1, sym_duration_unit, - STATE(5623), 1, + ACTIONS(8470), 1, + aux_sym_unquoted_token2, + STATE(4881), 1, sym_comment, - ACTIONS(1687), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1699), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4722), 2, + ACTIONS(4542), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207896] = 11, - ACTIONS(3), 1, + ACTIONS(1665), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [176434] = 12, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3635), 1, - anon_sym_DOLLAR, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7521), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7523), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7625), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9418), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9420), 1, - aux_sym__immediate_decimal_token5, - STATE(4526), 1, - sym__immediate_decimal, - STATE(5624), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(8442), 1, + sym__newline, + ACTIONS(8472), 1, + sym_identifier, + ACTIONS(8474), 1, + anon_sym_GT2, + STATE(4882), 1, sym_comment, - STATE(4881), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [207931] = 11, + STATE(5016), 1, + aux_sym_shebang_repeat1, + STATE(5232), 1, + aux_sym_collection_type_repeat1, + STATE(6375), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [176473] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4379), 1, + ACTIONS(1617), 1, + anon_sym_RBRACK, + ACTIONS(1619), 1, + sym__entry_separator, + ACTIONS(1621), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(7397), 1, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(7445), 1, + ACTIONS(8476), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7447), 1, + ACTIONS(8478), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7449), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7451), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7551), 1, - aux_sym_unquoted_token3, - STATE(4849), 1, - sym__immediate_decimal, - STATE(5625), 1, + STATE(4883), 1, sym_comment, - STATE(5091), 2, + STATE(6127), 1, + sym__immediate_decimal, + STATE(6684), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [207966] = 8, + [176514] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_DASH_DASH, - ACTIONS(9362), 1, - anon_sym_DASH2, - ACTIONS(9424), 1, - anon_sym_as, - STATE(5580), 1, - aux_sym_ctrl_do_repeat1, - STATE(5626), 1, + STATE(4884), 1, sym_comment, - STATE(6047), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9422), 4, + ACTIONS(6755), 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, + [176535] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4885), 1, + sym_comment, + ACTIONS(8155), 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, + [176556] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4886), 1, + sym_comment, + ACTIONS(8484), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [207995] = 8, + [176577] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_DASH_DASH, - ACTIONS(9362), 1, - anon_sym_DASH2, - ACTIONS(9428), 1, - anon_sym_as, - STATE(5627), 1, + STATE(4887), 1, sym_comment, - STATE(5648), 1, - aux_sym_ctrl_do_repeat1, - STATE(6047), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9426), 4, + ACTIONS(8486), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [208024] = 11, - ACTIONS(3), 1, + [176598] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7563), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7565), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7625), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9430), 1, - anon_sym_DOLLAR, - ACTIONS(9432), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9434), 1, - aux_sym__immediate_decimal_token5, - STATE(4929), 1, - sym__immediate_decimal, - STATE(5628), 1, + STATE(4888), 1, sym_comment, - STATE(5329), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208059] = 8, + ACTIONS(8488), 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, + [176619] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5629), 1, + STATE(4889), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6131), 1, - sym_cell_path, - ACTIONS(1947), 5, + ACTIONS(6747), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208088] = 11, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176640] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5634), 1, - anon_sym_DOLLAR, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5640), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5642), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5725), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9436), 1, - aux_sym__immediate_decimal_token1, - STATE(3018), 1, - sym__immediate_decimal, - STATE(5630), 1, + STATE(4890), 1, sym_comment, - STATE(3197), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208123] = 8, + ACTIONS(8293), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176661] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5631), 1, + STATE(4891), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6294), 1, - sym_cell_path, - ACTIONS(1897), 5, + ACTIONS(8067), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208152] = 8, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [176682] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9438), 1, + ACTIONS(8490), 1, anon_sym_DOT, - STATE(5632), 1, + ACTIONS(8492), 1, + aux_sym__immediate_decimal_token2, + STATE(4892), 1, sym_comment, - STATE(5705), 1, - aux_sym_cell_path_repeat1, - STATE(6017), 1, - sym_path, - STATE(6338), 1, - sym_cell_path, - ACTIONS(1763), 3, + ACTIONS(1599), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1765), 3, + aux_sym__unquoted_in_list_token2, + ACTIONS(1601), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [208181] = 11, + [176709] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1621), 1, + ACTIONS(5388), 1, anon_sym_LPAREN2, - ACTIONS(1625), 1, + ACTIONS(5392), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1627), 1, + ACTIONS(5394), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1795), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3831), 1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8414), 1, + anon_sym_RBRACK, + ACTIONS(8416), 1, + anon_sym_DOLLAR2, + ACTIONS(8426), 1, anon_sym_DOLLAR, - ACTIONS(9440), 1, + ACTIONS(8428), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9442), 1, + ACTIONS(8430), 1, aux_sym__immediate_decimal_token5, - STATE(436), 1, + STATE(2828), 1, sym__immediate_decimal, - STATE(5633), 1, + STATE(4893), 1, sym_comment, - STATE(553), 2, + STATE(2934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [208216] = 11, - ACTIONS(3), 1, + [176750] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1056), 1, + ACTIONS(7647), 1, + anon_sym_DASH2, + STATE(4894), 1, + sym_comment, + ACTIONS(7645), 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(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4708), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176773] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8494), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(9444), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9446), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9448), 1, - aux_sym__immediate_decimal_token5, - STATE(1831), 1, - sym__immediate_decimal, - STATE(5634), 1, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token2, + STATE(4895), 1, sym_comment, - STATE(2019), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208251] = 11, + ACTIONS(1623), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1625), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [176800] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(7365), 1, + ACTIONS(5388), 1, anon_sym_LPAREN2, - ACTIONS(7419), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7421), 1, + ACTIONS(5392), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7423), 1, + ACTIONS(5394), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8416), 1, + anon_sym_DOLLAR2, + ACTIONS(8426), 1, + anon_sym_DOLLAR, + ACTIONS(8428), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7425), 1, + ACTIONS(8430), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7487), 1, - aux_sym_unquoted_token3, - STATE(4646), 1, + ACTIONS(8498), 1, + anon_sym_RBRACK, + STATE(2828), 1, sym__immediate_decimal, - STATE(5635), 1, + STATE(4896), 1, sym_comment, - STATE(4922), 2, + STATE(2934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [208286] = 4, + [176841] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5636), 1, + STATE(4897), 1, sym_comment, - ACTIONS(1713), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [208307] = 8, + ACTIONS(8500), 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, + [176862] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1903), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5637), 1, + STATE(4898), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6316), 1, - sym_cell_path, - ACTIONS(1905), 5, - ts_builtin_sym_end, + ACTIONS(8502), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208336] = 11, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [176883] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4899), 1, + sym_comment, + ACTIONS(6847), 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, + [176904] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1567), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(1569), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(1573), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1575), 1, + ACTIONS(8506), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1577), 1, + ACTIONS(8508), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1701), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9450), 1, - aux_sym__immediate_decimal_token1, - STATE(389), 1, - sym__immediate_decimal, - STATE(5638), 1, + STATE(4900), 1, sym_comment, - STATE(450), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208371] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - anon_sym_LPAREN2, - ACTIONS(1721), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1723), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1795), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9452), 1, - anon_sym_DOLLAR, - ACTIONS(9454), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9456), 1, - aux_sym__immediate_decimal_token5, - STATE(570), 1, + STATE(6878), 1, sym__immediate_decimal, - STATE(5639), 1, - sym_comment, - STATE(709), 2, + ACTIONS(1583), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8504), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2026), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [208406] = 11, - ACTIONS(3), 1, + [176941] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1647), 1, - anon_sym_DOLLAR, - ACTIONS(1649), 1, - anon_sym_LPAREN2, - ACTIONS(1651), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1653), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(1701), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9458), 1, - aux_sym__immediate_decimal_token1, - STATE(548), 1, - sym__immediate_decimal, - STATE(5640), 1, + STATE(4901), 1, sym_comment, - STATE(624), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208441] = 8, + ACTIONS(8510), 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, + [176962] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1909), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5641), 1, + STATE(4902), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6321), 1, - sym_cell_path, - ACTIONS(1911), 5, - ts_builtin_sym_end, + ACTIONS(8512), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208470] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [176983] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5642), 1, + STATE(4903), 1, sym_comment, - ACTIONS(1663), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1661), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [208491] = 4, + ACTIONS(8514), 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, + [177004] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5643), 1, + STATE(4904), 1, sym_comment, - ACTIONS(1769), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1767), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [208512] = 6, + ACTIONS(8516), 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, + [177025] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DASH2, - ACTIONS(9460), 1, - anon_sym_DOT, - STATE(5971), 1, - sym_path, - STATE(5644), 2, + STATE(4905), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 6, + ACTIONS(8518), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [208537] = 5, + [177046] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DASH2, - ACTIONS(9463), 1, - anon_sym_QMARK2, - STATE(5645), 1, + STATE(4906), 1, sym_comment, - ACTIONS(1010), 8, - anon_sym_EQ, - sym_identifier, + ACTIONS(8520), 12, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [208560] = 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177067] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5646), 1, + STATE(4907), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6172), 1, - sym_cell_path, - ACTIONS(1955), 5, - ts_builtin_sym_end, + ACTIONS(8522), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208589] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177088] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5647), 1, + STATE(4908), 1, sym_comment, - ACTIONS(1767), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1769), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [208610] = 8, + ACTIONS(8524), 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, + [177109] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_DASH_DASH, - ACTIONS(9362), 1, - anon_sym_DASH2, - ACTIONS(9467), 1, - anon_sym_as, - STATE(5580), 1, - aux_sym_ctrl_do_repeat1, - STATE(5648), 1, + STATE(4909), 1, sym_comment, - STATE(6047), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9465), 4, + ACTIONS(8526), 12, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [208639] = 8, + [177130] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5649), 1, + STATE(4910), 1, sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6341), 1, - sym_cell_path, - ACTIONS(2035), 5, - ts_builtin_sym_end, + ACTIONS(8528), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208668] = 11, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177151] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1056), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(6581), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9300), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9302), 1, + ACTIONS(7915), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9304), 1, + ACTIONS(7917), 1, aux_sym__immediate_decimal_token5, - STATE(3705), 1, + STATE(2025), 1, sym__immediate_decimal, - STATE(5650), 1, + STATE(4911), 1, sym_comment, - STATE(2019), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208703] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DOLLAR, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4835), 1, + ACTIONS(8530), 2, aux_sym__immediate_decimal_token1, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(9469), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9471), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9473), 1, - aux_sym__immediate_decimal_token5, - STATE(1900), 1, - sym__immediate_decimal, - STATE(5651), 1, - sym_comment, - STATE(2218), 2, + STATE(2024), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [208738] = 11, - ACTIONS(3), 1, + ACTIONS(1597), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [177186] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3459), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(8292), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9475), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9477), 1, + ACTIONS(7915), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9479), 1, + ACTIONS(7917), 1, aux_sym__immediate_decimal_token5, - STATE(5652), 1, - sym_comment, - STATE(6006), 1, + STATE(2038), 1, sym__immediate_decimal, - STATE(6325), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [208773] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(9234), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9481), 1, - anon_sym_DOT_DOT2, - ACTIONS(9485), 1, - sym_filesize_unit, - ACTIONS(9487), 1, - sym_duration_unit, - STATE(5653), 1, + STATE(4912), 1, sym_comment, - STATE(8194), 1, - sym__expr_parenthesized_immediate, - ACTIONS(9483), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208808] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(8657), 1, + ACTIONS(8530), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9187), 1, - anon_sym_DOLLAR, - ACTIONS(9489), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9491), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9493), 1, - aux_sym__immediate_decimal_token5, - STATE(5654), 1, - sym_comment, - STATE(6812), 1, - sym__immediate_decimal, - STATE(2144), 2, + STATE(2037), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [208843] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5655), 1, - sym_comment, - ACTIONS(1669), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1671), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [208864] = 8, + ACTIONS(1687), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [177221] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5656), 1, - sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6340), 1, - sym_cell_path, - ACTIONS(1919), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208893] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_DOT, - STATE(5657), 1, - sym_comment, - STATE(5705), 1, - aux_sym_cell_path_repeat1, - STATE(6017), 1, - sym_path, - STATE(6145), 1, - sym_cell_path, - ACTIONS(1757), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1761), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [208922] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2653), 1, + ACTIONS(3610), 1, anon_sym_DOLLAR, - ACTIONS(4043), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(4047), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4049), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4159), 1, - aux_sym_unquoted_token3, - ACTIONS(9495), 1, + ACTIONS(7915), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9497), 1, + ACTIONS(7917), 1, aux_sym__immediate_decimal_token5, - STATE(1445), 1, + STATE(2040), 1, sym__immediate_decimal, - STATE(5658), 1, + STATE(4913), 1, sym_comment, - STATE(1559), 2, + ACTIONS(8530), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2039), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [208957] = 4, + ACTIONS(1691), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [177256] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(5659), 1, - sym_comment, - ACTIONS(1711), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 7, + ACTIONS(3610), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208978] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_DOT, - STATE(5660), 1, - sym_comment, - STATE(5705), 1, - aux_sym_cell_path_repeat1, - STATE(6017), 1, - sym_path, - STATE(6114), 1, - sym_cell_path, - ACTIONS(969), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(971), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209007] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5661), 1, - sym_comment, - STATE(5668), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - STATE(6168), 1, - sym_cell_path, - ACTIONS(971), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209036] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5662), 1, - sym_comment, - ACTIONS(1002), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1000), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [209057] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1745), 1, - anon_sym_LBRACE, - ACTIONS(4704), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(8871), 1, + ACTIONS(7915), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, + ACTIONS(7917), 1, aux_sym__immediate_decimal_token5, - STATE(2158), 1, + STATE(2042), 1, sym__immediate_decimal, - STATE(5663), 1, + STATE(4914), 1, sym_comment, - ACTIONS(9201), 2, + ACTIONS(8530), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2097), 2, + STATE(2041), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [209090] = 4, + ACTIONS(1695), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [177291] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5664), 1, + STATE(4915), 1, sym_comment, - ACTIONS(1671), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [209111] = 11, + ACTIONS(8532), 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, + [177312] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9368), 1, - anon_sym_DASH_DASH, - ACTIONS(9370), 1, - anon_sym_DASH2, - STATE(5665), 1, - sym_comment, - STATE(5685), 1, - aux_sym_ctrl_do_repeat1, - STATE(5695), 1, - sym_val_variable, - STATE(6963), 1, - sym__variable_name, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [209146] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9501), 1, - aux_sym__immediate_decimal_token2, - STATE(5666), 1, + STATE(4916), 1, sym_comment, - ACTIONS(1771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209171] = 5, + ACTIONS(8009), 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, + [177333] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9503), 1, - aux_sym__immediate_decimal_token2, - STATE(5667), 1, + STATE(4917), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 6, + ACTIONS(8083), 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, - [209193] = 7, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177354] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(982), 1, - anon_sym_DASH2, - ACTIONS(9276), 1, - anon_sym_DOT, - STATE(5668), 1, + STATE(4918), 1, sym_comment, - STATE(5669), 1, - aux_sym_cell_path_repeat1, - STATE(6055), 1, - sym_path, - ACTIONS(984), 5, + ACTIONS(8206), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209219] = 6, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177375] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(975), 1, - anon_sym_DASH2, - ACTIONS(9505), 1, - anon_sym_DOT, - STATE(6055), 1, - sym_path, - STATE(5669), 2, + STATE(4919), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(977), 5, + ACTIONS(8045), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [209243] = 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, + [177396] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8508), 1, + aux_sym__immediate_decimal_token5, + STATE(4920), 1, + sym_comment, + STATE(6666), 1, + sym__immediate_decimal, + ACTIONS(1619), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8504), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2043), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [177433] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, + ACTIONS(3118), 1, anon_sym_DQUOTE, - ACTIONS(3147), 1, + ACTIONS(3124), 1, sym_raw_string_begin, - ACTIONS(9508), 1, + ACTIONS(8442), 1, + sym__newline, + ACTIONS(8534), 1, sym_identifier, - STATE(5670), 1, + ACTIONS(8536), 1, + anon_sym_GT2, + STATE(4921), 1, sym_comment, - STATE(5671), 1, + STATE(5022), 1, + aux_sym_shebang_repeat1, + STATE(5249), 1, aux_sym_collection_type_repeat1, - STATE(7279), 1, + STATE(6115), 1, sym_val_string, - ACTIONS(3143), 2, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5662), 2, + STATE(5080), 2, sym__raw_str, sym__str_double_quotes, - [209273] = 8, + [177472] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9510), 1, - sym_identifier, - ACTIONS(9513), 1, - anon_sym_DQUOTE, - ACTIONS(9519), 1, - sym_raw_string_begin, - STATE(7675), 1, - sym_val_string, - ACTIONS(9516), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5671), 2, + ACTIONS(3876), 1, + sym__newline, + STATE(721), 1, + aux_sym__pipe_separator, + STATE(4922), 1, sym_comment, - aux_sym_collection_type_repeat1, - [209301] = 9, + STATE(4979), 1, + aux_sym_shebang_repeat1, + ACTIONS(2529), 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, + [177499] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - STATE(2599), 1, - sym__immediate_decimal, - STATE(5672), 1, + STATE(4923), 1, sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2654), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209331] = 9, + ACTIONS(8538), 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, + [177520] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - STATE(2585), 1, - sym__immediate_decimal, - STATE(5673), 1, + STATE(4924), 1, sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2575), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209361] = 5, + ACTIONS(8540), 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, + [177541] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9408), 1, - aux_sym__immediate_decimal_token2, - STATE(5674), 1, + STATE(4925), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 6, + ACTIONS(8542), 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, - [209383] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177562] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_DASH_DASH, - ACTIONS(9524), 1, - anon_sym_DASH2, - ACTIONS(9526), 1, - anon_sym_as, - STATE(5675), 1, + STATE(4926), 1, sym_comment, - STATE(5700), 1, - aux_sym_ctrl_do_repeat1, - STATE(6220), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9422), 3, - ts_builtin_sym_end, + ACTIONS(8544), 12, sym__newline, anon_sym_SEMI, - [209411] = 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, + anon_sym_RPAREN, + [177583] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(8871), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, - aux_sym__immediate_decimal_token5, - STATE(2125), 1, - sym__immediate_decimal, - STATE(5676), 1, + STATE(4927), 1, sym_comment, - ACTIONS(9201), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2033), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209441] = 5, + ACTIONS(8546), 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, + [177604] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DASH2, - ACTIONS(9528), 1, - anon_sym_QMARK2, - STATE(5677), 1, + STATE(4928), 1, sym_comment, - ACTIONS(1010), 7, + ACTIONS(8548), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [209463] = 5, + [177625] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(990), 1, - anon_sym_DASH2, - ACTIONS(9530), 1, - anon_sym_QMARK2, - STATE(5678), 1, + STATE(4929), 1, + sym_comment, + ACTIONS(8227), 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, + [177646] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4930), 1, sym_comment, - ACTIONS(992), 7, + ACTIONS(8550), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [209485] = 9, + [177667] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4829), 1, - anon_sym_DOLLAR, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4837), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, - aux_sym__immediate_decimal_token5, - STATE(2219), 1, - sym__immediate_decimal, - STATE(5679), 1, + STATE(4931), 1, sym_comment, - ACTIONS(4835), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2218), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209515] = 4, + ACTIONS(8552), 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, + [177688] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1018), 1, - anon_sym_DASH2, - STATE(5680), 1, + STATE(4932), 1, sym_comment, - ACTIONS(1020), 8, - anon_sym_EQ, - sym_identifier, + ACTIONS(8554), 12, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [209535] = 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177709] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1014), 1, - anon_sym_DASH2, - STATE(5681), 1, + STATE(4933), 1, sym_comment, - ACTIONS(1016), 8, - anon_sym_EQ, - sym_identifier, + ACTIONS(8556), 12, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [209555] = 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177730] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(9532), 1, - anon_sym_DOT_DOT2, - ACTIONS(9536), 1, - sym_filesize_unit, - ACTIONS(9538), 1, - sym_duration_unit, - STATE(5682), 1, + STATE(4934), 1, sym_comment, - ACTIONS(9534), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1699), 3, + ACTIONS(8558), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [209583] = 7, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177751] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2202), 1, - sym_cell_path, - STATE(5683), 1, + STATE(4935), 1, sym_comment, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1951), 5, + ACTIONS(8560), 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_LBRACE, - anon_sym_RBRACE, - [209609] = 8, + [177772] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_DASH_DASH, - ACTIONS(9524), 1, - anon_sym_DASH2, - ACTIONS(9542), 1, - anon_sym_as, - STATE(5684), 1, + STATE(4936), 1, sym_comment, - STATE(5690), 1, - aux_sym_ctrl_do_repeat1, - STATE(6220), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9426), 3, - ts_builtin_sym_end, + ACTIONS(8562), 12, sym__newline, anon_sym_SEMI, - [209637] = 10, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [177793] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9368), 1, - anon_sym_DASH_DASH, - ACTIONS(9370), 1, - anon_sym_DASH2, - STATE(5685), 1, + STATE(4937), 1, sym_comment, - STATE(5695), 1, - sym_val_variable, - STATE(6013), 1, - aux_sym_ctrl_do_repeat1, - STATE(6866), 1, - sym__variable_name, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [209669] = 4, + ACTIONS(8564), 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, + [177814] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_DASH2, - STATE(5686), 1, + STATE(4938), 1, + sym_comment, + ACTIONS(8566), 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, + [177835] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(935), 1, + anon_sym_DOT_DOT2, + ACTIONS(8021), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(3768), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(4939), 1, sym_comment, - ACTIONS(1002), 8, + ACTIONS(937), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [209689] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177866] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_DASH2, - STATE(5687), 1, + STATE(4940), 1, sym_comment, - ACTIONS(1006), 8, + ACTIONS(8568), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [209709] = 4, + [177887] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - STATE(5688), 1, + STATE(4941), 1, sym_comment, - ACTIONS(998), 8, + ACTIONS(8570), 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_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [209729] = 4, + [177908] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(986), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(5689), 1, + STATE(4942), 1, sym_comment, - ACTIONS(988), 8, + ACTIONS(1959), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [209749] = 8, + [177931] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_DASH_DASH, - ACTIONS(9524), 1, + ACTIONS(2485), 1, anon_sym_DASH2, - ACTIONS(9544), 1, - anon_sym_as, - STATE(5690), 1, + STATE(4943), 1, sym_comment, - STATE(5700), 1, - aux_sym_ctrl_do_repeat1, - STATE(6220), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9465), 3, - ts_builtin_sym_end, + ACTIONS(2487), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - [209777] = 8, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177954] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9522), 1, - anon_sym_DASH_DASH, - ACTIONS(9524), 1, + ACTIONS(5755), 1, + sym__newline, + ACTIONS(8572), 1, anon_sym_DASH2, - ACTIONS(9546), 1, - anon_sym_as, - STATE(5675), 1, - aux_sym_ctrl_do_repeat1, - STATE(5691), 1, + STATE(4944), 1, sym_comment, - STATE(6220), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9358), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [209805] = 10, + ACTIONS(1275), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5758), 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, + [177981] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9548), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(8333), 1, anon_sym_DOLLAR, - ACTIONS(9550), 1, + ACTIONS(8335), 1, anon_sym_DASH_DASH, - ACTIONS(9552), 1, + ACTIONS(8337), 1, anon_sym_DASH2, - STATE(5692), 1, + ACTIONS(8339), 1, + anon_sym_LBRACE, + STATE(1785), 1, + sym_block, + STATE(1786), 1, + sym_val_closure, + STATE(4945), 1, sym_comment, - STATE(5695), 1, + STATE(4974), 1, + aux_sym_ctrl_do_repeat1, + STATE(787), 2, + sym__blosure, sym_val_variable, - STATE(6640), 1, - sym__variable_name, - STATE(7304), 2, + STATE(5904), 2, sym_short_flag, sym_long_flag, - [209837] = 9, - ACTIONS(251), 1, + [178020] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(9554), 1, + ACTIONS(1569), 1, + anon_sym_RBRACK, + ACTIONS(1583), 1, + sym__entry_separator, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(9556), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8476), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8478), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9558), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token5, - STATE(5693), 1, + STATE(4946), 1, sym_comment, - STATE(7185), 1, + STATE(6495), 1, sym__immediate_decimal, - ACTIONS(8833), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7567), 2, + STATE(6896), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [209867] = 4, + [178061] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9562), 1, - anon_sym_DASH2, - STATE(5694), 1, - sym_comment, - ACTIONS(9560), 8, - anon_sym_EQ, + ACTIONS(7749), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - [209887] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9566), 1, - anon_sym_DASH2, - STATE(5695), 1, + ACTIONS(8574), 1, + anon_sym_else, + STATE(4947), 1, sym_comment, - ACTIONS(9564), 8, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, - [209907] = 9, - ACTIONS(251), 1, + STATE(4949), 1, + aux_sym_shebang_repeat1, + ACTIONS(7752), 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, + [178088] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4702), 1, + ACTIONS(1597), 1, + sym__entry_separator, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(4710), 1, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - STATE(1973), 1, - sym__immediate_decimal, - STATE(5696), 1, - sym_comment, - ACTIONS(4708), 2, + ACTIONS(8361), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, aux_sym__immediate_decimal_token3, - STATE(2019), 2, + STATE(4948), 1, + sym_comment, + STATE(6693), 1, + sym__immediate_decimal, + ACTIONS(1587), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7163), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [209937] = 10, + [178127] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9368), 1, - anon_sym_DASH_DASH, - ACTIONS(9370), 1, - anon_sym_DASH2, - STATE(5685), 1, - aux_sym_ctrl_do_repeat1, - STATE(5695), 1, - sym_val_variable, - STATE(5697), 1, + ACTIONS(7794), 1, + sym__newline, + ACTIONS(8576), 1, + anon_sym_else, + STATE(4949), 1, sym_comment, - STATE(6963), 1, - sym__variable_name, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [209969] = 9, + STATE(4952), 1, + aux_sym_shebang_repeat1, + ACTIONS(7797), 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, + [178154] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - STATE(2221), 1, - sym__immediate_decimal, - STATE(5698), 1, + ACTIONS(7801), 1, + sym__newline, + ACTIONS(8578), 1, + anon_sym_else, + STATE(4950), 1, sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [209999] = 10, + STATE(4953), 1, + aux_sym_shebang_repeat1, + ACTIONS(7804), 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, + [178181] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(9368), 1, - anon_sym_DASH_DASH, - ACTIONS(9370), 1, - anon_sym_DASH2, - ACTIONS(9568), 1, - sym_identifier, - STATE(5699), 1, + ACTIONS(7810), 1, + sym__newline, + ACTIONS(8580), 1, + anon_sym_else, + STATE(4951), 1, sym_comment, - STATE(5713), 1, - aux_sym_ctrl_do_repeat1, - STATE(7580), 1, - sym_val_variable, - STATE(7740), 1, - sym__variable_name, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [210031] = 6, + STATE(4954), 1, + aux_sym_shebang_repeat1, + ACTIONS(7813), 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, + [178208] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9570), 1, - anon_sym_DASH_DASH, - ACTIONS(9573), 1, - anon_sym_DASH2, - STATE(5700), 2, + ACTIONS(5055), 1, + sym__newline, + ACTIONS(8582), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4952), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6220), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9292), 4, - ts_builtin_sym_end, + ACTIONS(1264), 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, + [178235] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7776), 1, sym__newline, - anon_sym_SEMI, - anon_sym_as, - [210055] = 9, + ACTIONS(8585), 1, + anon_sym_else, + STATE(4953), 1, + sym_comment, + STATE(4956), 1, + aux_sym_shebang_repeat1, + ACTIONS(7779), 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, + [178262] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(9554), 1, - anon_sym_DOLLAR, - ACTIONS(9576), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9578), 1, - aux_sym__immediate_decimal_token5, - STATE(5701), 1, + ACTIONS(7868), 1, + sym__newline, + ACTIONS(8587), 1, + anon_sym_else, + STATE(4954), 1, sym_comment, - STATE(7566), 1, - sym__immediate_decimal, - ACTIONS(8877), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7565), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [210085] = 9, + STATE(4957), 1, + aux_sym_shebang_repeat1, + ACTIONS(7871), 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, + [178289] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - STATE(2215), 1, - sym__immediate_decimal, - STATE(5702), 1, + ACTIONS(7880), 1, + sym__newline, + ACTIONS(8589), 1, + anon_sym_else, + STATE(4955), 1, sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [210115] = 9, + STATE(4958), 1, + aux_sym_shebang_repeat1, + ACTIONS(7883), 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, + [178316] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(9580), 1, - sym_identifier, - STATE(5671), 1, - aux_sym_collection_type_repeat1, - STATE(5703), 1, + ACTIONS(5055), 1, + sym__newline, + ACTIONS(8591), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, sym_comment, - STATE(7063), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [210145] = 9, + ACTIONS(1264), 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, + [178343] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4233), 1, - anon_sym_LPAREN2, - ACTIONS(4239), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4241), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9148), 1, - anon_sym_DOLLAR, - STATE(1683), 1, - sym__immediate_decimal, - STATE(5704), 1, + ACTIONS(5055), 1, + sym__newline, + ACTIONS(8594), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4957), 1, sym_comment, - ACTIONS(4237), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1938), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [210175] = 7, - ACTIONS(3), 1, + ACTIONS(1264), 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, + [178370] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9438), 1, - anon_sym_DOT, - STATE(5705), 1, + ACTIONS(7922), 1, + sym__newline, + ACTIONS(8597), 1, + anon_sym_else, + STATE(4958), 1, sym_comment, - STATE(5712), 1, - aux_sym_cell_path_repeat1, - STATE(6017), 1, - sym_path, - ACTIONS(982), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(984), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210201] = 5, - ACTIONS(3), 1, + STATE(4959), 1, + aux_sym_shebang_repeat1, + ACTIONS(7925), 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, + [178397] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5055), 1, + sym__newline, + ACTIONS(8599), 1, + anon_sym_else, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4959), 1, + sym_comment, + ACTIONS(1264), 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, + [178424] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9582), 1, + ACTIONS(8602), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8604), 1, aux_sym__immediate_decimal_token2, - STATE(5706), 1, + STATE(4960), 1, sym_comment, - ACTIONS(1799), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1623), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1625), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210223] = 9, + sym_filesize_unit, + sym_duration_unit, + [178451] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4961), 1, + sym_comment, + ACTIONS(8259), 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, + [178472] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, + STATE(4962), 1, + sym_comment, + ACTIONS(8261), 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, + [178493] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5388), 1, anon_sym_LPAREN2, - ACTIONS(4776), 1, + ACTIONS(5392), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5394), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8416), 1, + anon_sym_DOLLAR2, + ACTIONS(8426), 1, anon_sym_DOLLAR, - ACTIONS(8659), 1, + ACTIONS(8428), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8661), 1, + ACTIONS(8430), 1, aux_sym__immediate_decimal_token5, - STATE(5707), 1, - sym_comment, - STATE(6738), 1, + ACTIONS(8606), 1, + anon_sym_RBRACK, + STATE(2828), 1, sym__immediate_decimal, - ACTIONS(8657), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, + STATE(4963), 1, + sym_comment, + STATE(2934), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [210253] = 5, + [178534] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9388), 1, + ACTIONS(8608), 1, + anon_sym_DOT, + ACTIONS(8610), 1, aux_sym__immediate_decimal_token2, - STATE(5708), 1, + STATE(4964), 1, sym_comment, - ACTIONS(1671), 3, + ACTIONS(1599), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 7, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [210275] = 4, + [178561] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8612), 1, + anon_sym_else, + STATE(4965), 1, + sym_comment, + ACTIONS(8105), 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, + [178584] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4966), 1, + sym_comment, + ACTIONS(8271), 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, + [178605] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4967), 1, + sym_comment, + ACTIONS(8055), 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, + [178626] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1304), 1, + ACTIONS(8616), 1, anon_sym_DASH2, - STATE(5709), 1, + STATE(4968), 1, sym_comment, - ACTIONS(1302), 8, - sym_identifier, + STATE(5019), 1, + aux_sym_parameter_repeat2, + ACTIONS(2554), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(8614), 7, + sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [210295] = 5, - ACTIONS(251), 1, + [178652] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9584), 1, + ACTIONS(8618), 1, + anon_sym_DOT, + ACTIONS(8620), 1, aux_sym__immediate_decimal_token2, - STATE(5710), 1, + STATE(4969), 1, sym_comment, - ACTIONS(1713), 3, - anon_sym_DOLLAR, + ACTIONS(1599), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1601), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 5, - sym_identifier, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, + sym__entry_separator, + [178678] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1583), 1, + anon_sym_LBRACE, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - [210317] = 9, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8626), 1, + aux_sym__immediate_decimal_token5, + STATE(4970), 1, + sym_comment, + STATE(7345), 1, + sym__immediate_decimal, + ACTIONS(8622), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2026), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178714] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1699), 1, + ACTIONS(8333), 1, + anon_sym_DOLLAR, + ACTIONS(8335), 1, anon_sym_DASH_DASH, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - ACTIONS(9586), 1, - sym_filesize_unit, - ACTIONS(9588), 1, - sym_duration_unit, - STATE(5711), 1, + ACTIONS(8337), 1, + anon_sym_DASH2, + ACTIONS(8339), 1, + anon_sym_LBRACE, + STATE(1785), 1, + sym_block, + STATE(1786), 1, + sym_val_closure, + STATE(4971), 1, sym_comment, - ACTIONS(1687), 2, - sym_identifier, + STATE(4974), 1, + aux_sym_ctrl_do_repeat1, + STATE(787), 2, + sym__blosure, + sym_val_variable, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [178750] = 9, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(8628), 1, anon_sym_DASH2, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210347] = 6, - ACTIONS(3), 1, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(4972), 1, + sym_comment, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(2085), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [178782] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9590), 1, - anon_sym_DOT, - STATE(6017), 1, - sym_path, - STATE(5712), 2, + ACTIONS(8630), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8632), 1, + aux_sym__immediate_decimal_token2, + STATE(4973), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(977), 3, + ACTIONS(1625), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210371] = 10, + ACTIONS(1623), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [178808] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6722), 1, + ACTIONS(8333), 1, anon_sym_DOLLAR, - ACTIONS(9368), 1, + ACTIONS(8335), 1, anon_sym_DASH_DASH, - ACTIONS(9370), 1, + ACTIONS(8337), 1, anon_sym_DASH2, - ACTIONS(9568), 1, - sym_identifier, - STATE(5713), 1, + ACTIONS(8339), 1, + anon_sym_LBRACE, + STATE(1785), 1, + sym_block, + STATE(1786), 1, + sym_val_closure, + STATE(4974), 1, sym_comment, - STATE(6013), 1, + STATE(5478), 1, aux_sym_ctrl_do_repeat1, - STATE(7580), 1, + STATE(792), 2, + sym__blosure, sym_val_variable, - STATE(7671), 1, - sym__variable_name, - STATE(6545), 2, + STATE(5904), 2, sym_short_flag, sym_long_flag, - [210403] = 6, + [178844] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9593), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9595), 1, + ACTIONS(8634), 1, aux_sym__immediate_decimal_token2, - STATE(5714), 1, + STATE(4975), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1711), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [210427] = 6, + ACTIONS(1709), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [178868] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9597), 1, - anon_sym_EQ2, - ACTIONS(9599), 1, - sym_short_flag_identifier, - STATE(5715), 1, - sym_comment, - ACTIONS(5029), 3, - anon_sym_DASH_DASH, + ACTIONS(8638), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(5027), 4, + STATE(4976), 1, + sym_comment, + STATE(5019), 1, + aux_sym_parameter_repeat2, + ACTIONS(2554), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(8636), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [210451] = 9, - ACTIONS(251), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178894] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4831), 1, + ACTIONS(1617), 1, + anon_sym_RBRACE, + ACTIONS(1619), 1, + sym__entry_separator, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(4837), 1, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - STATE(2636), 1, - sym__immediate_decimal, - STATE(5716), 1, - sym_comment, - ACTIONS(4889), 2, + ACTIONS(8361), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, aux_sym__immediate_decimal_token3, - STATE(2669), 2, + STATE(4977), 1, + sym_comment, + STATE(7212), 1, + sym__immediate_decimal, + STATE(6684), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [210481] = 4, + [178932] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5717), 1, + ACTIONS(8640), 1, + anon_sym_DOT, + ACTIONS(8642), 1, + aux_sym__immediate_decimal_token2, + STATE(4978), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1601), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1599), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [210501] = 9, + aux_sym_unquoted_token2, + [178958] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - STATE(2125), 1, - sym__immediate_decimal, - STATE(5718), 1, + ACTIONS(3876), 1, + sym__newline, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4979), 1, sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2033), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [210531] = 9, + 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, + [178982] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, + ACTIONS(8335), 1, + anon_sym_DASH_DASH, + ACTIONS(8337), 1, + anon_sym_DASH2, + ACTIONS(8644), 1, anon_sym_DOLLAR, - STATE(4092), 1, - sym__immediate_decimal, - STATE(5719), 1, + ACTIONS(8646), 1, + anon_sym_LBRACE, + STATE(1865), 1, + sym_block, + STATE(1899), 1, + sym_val_closure, + STATE(4980), 1, sym_comment, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4084), 2, - sym__expr_parenthesized_immediate, + STATE(5015), 1, + aux_sym_ctrl_do_repeat1, + STATE(811), 2, + sym__blosure, sym_val_variable, - [210561] = 4, - ACTIONS(251), 1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [179018] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5720), 1, + ACTIONS(8492), 1, + aux_sym__immediate_decimal_token2, + STATE(4981), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(1599), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1601), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [210581] = 8, + sym__entry_separator, + [179042] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(2033), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5721), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4982), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - STATE(6105), 1, + STATE(5432), 1, sym_cell_path, - ACTIONS(1955), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2035), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210609] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179072] = 8, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(1945), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5121), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5722), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4983), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1947), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5442), 1, + sym_cell_path, + ACTIONS(1947), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210637] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179102] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(9160), 1, + ACTIONS(1597), 1, + anon_sym_LBRACE, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4591), 1, anon_sym_DOT, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5723), 1, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8355), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8357), 1, + aux_sym__immediate_decimal_token5, + STATE(4984), 1, sym_comment, - STATE(5806), 1, - sym_path, - STATE(6314), 1, - sym_cell_path, - ACTIONS(1959), 4, + STATE(6616), 1, + sym__immediate_decimal, + ACTIONS(8353), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6615), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179138] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(8442), 1, + sym__newline, + ACTIONS(8650), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210665] = 8, + STATE(4985), 1, + sym_comment, + STATE(5153), 1, + aux_sym_collection_type_repeat1, + STATE(5531), 1, + aux_sym_shebang_repeat1, + STATE(6172), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [179174] = 9, + ACTIONS(83), 1, + aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(8652), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5163), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5724), 1, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(4986), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(1951), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210693] = 8, + ACTIONS(3436), 2, + anon_sym_true, + anon_sym_false, + STATE(2464), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [179206] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8654), 1, + aux_sym__immediate_decimal_token2, + STATE(4987), 1, + sym_comment, + ACTIONS(1709), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1711), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [179230] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(3468), 1, + aux_sym_expr_unary_token1, + ACTIONS(5829), 1, + anon_sym_LPAREN, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(8652), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5177), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5725), 1, + STATE(2450), 1, + sym__expr_unary_minus, + STATE(4988), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(2035), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210721] = 8, + ACTIONS(3436), 2, + anon_sym_true, + anon_sym_false, + STATE(2464), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [179262] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2049), 1, + ACTIONS(7373), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5185), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5726), 1, + STATE(4989), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(2051), 4, + STATE(5019), 1, + aux_sym_parameter_repeat2, + ACTIONS(2554), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7371), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210749] = 8, + [179288] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2053), 1, + ACTIONS(8658), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5189), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5727), 1, + STATE(4990), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(2055), 4, + STATE(5019), 1, + aux_sym_parameter_repeat2, + ACTIONS(2554), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8656), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210777] = 8, + [179314] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(7355), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5193), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5728), 1, + STATE(4991), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(1943), 4, + STATE(5019), 1, + aux_sym_parameter_repeat2, + ACTIONS(2554), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7353), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210805] = 8, + [179340] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(1949), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5195), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5729), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4992), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1873), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5460), 1, + sym_cell_path, + ACTIONS(1951), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210833] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179370] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5197), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5730), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4993), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1877), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5466), 1, + sym_cell_path, + ACTIONS(1959), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210861] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179400] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1965), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5200), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5731), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4994), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1881), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5498), 1, + sym_cell_path, + ACTIONS(1967), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210889] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179430] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(7313), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5206), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5732), 1, + STATE(4995), 1, sym_comment, - STATE(5806), 1, - sym_path, - ACTIONS(1885), 4, + STATE(5019), 1, + aux_sym_parameter_repeat2, + ACTIONS(2554), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7311), 7, sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210917] = 8, + [179456] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8662), 1, + aux_sym__immediate_decimal_token2, + STATE(4996), 1, + sym_comment, + ACTIONS(1623), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1625), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [179482] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1887), 1, + ACTIONS(1973), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5208), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5733), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4997), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1889), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5504), 1, + sym_cell_path, + ACTIONS(1975), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210945] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179512] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(1977), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5212), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5734), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4998), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1893), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5505), 1, + sym_cell_path, + ACTIONS(1979), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210973] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179542] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1981), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5214), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5735), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(4999), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1897), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5506), 1, + sym_cell_path, + ACTIONS(1983), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211001] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179572] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(1985), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5215), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5736), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5000), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1905), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5507), 1, + sym_cell_path, + ACTIONS(1987), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211029] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179602] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1909), 1, + ACTIONS(1829), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5217), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5737), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5001), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1911), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5508), 1, + sym_cell_path, + ACTIONS(1831), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211057] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179632] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5219), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5738), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5002), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1919), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5510), 1, + sym_cell_path, + ACTIONS(1991), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211085] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179662] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1993), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5220), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5739), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5003), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1927), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5512), 1, + sym_cell_path, + ACTIONS(1995), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211113] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179692] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1929), 1, + ACTIONS(1997), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5222), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5740), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5004), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1931), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5514), 1, + sym_cell_path, + ACTIONS(1999), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211141] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179722] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2001), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5230), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5741), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5005), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1935), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5515), 1, + sym_cell_path, + ACTIONS(2003), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211169] = 8, + anon_sym_RBRACE, + anon_sym_as, + [179752] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(2005), 1, anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(5232), 1, - sym_cell_path, - STATE(5526), 1, - aux_sym_cell_path_repeat1, - STATE(5742), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5006), 1, sym_comment, - STATE(5806), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - ACTIONS(1939), 4, - sym_identifier, - anon_sym_DOLLAR, + STATE(5516), 1, + sym_cell_path, + ACTIONS(2007), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211197] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5743), 1, - sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211217] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5744), 1, - sym_comment, - ACTIONS(1767), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211237] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5745), 1, - sym_comment, - ACTIONS(1669), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1671), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [211257] = 9, + anon_sym_as, + [179782] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6678), 1, - anon_sym_DOLLAR, - ACTIONS(9130), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9132), 1, - aux_sym__immediate_decimal_token5, - STATE(5746), 1, - sym_comment, - STATE(8060), 1, - sym__immediate_decimal, - ACTIONS(9128), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211287] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9601), 1, - aux_sym__immediate_decimal_token2, - STATE(5747), 1, + ACTIONS(2009), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5007), 1, sym_comment, - ACTIONS(1711), 3, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + STATE(5518), 1, + sym_cell_path, + ACTIONS(2011), 6, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [211309] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(4091), 1, - sym__immediate_decimal, - STATE(5748), 1, - sym_comment, - ACTIONS(6670), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211339] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5749), 1, - sym_comment, - ACTIONS(1661), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1663), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [211359] = 9, + anon_sym_as, + [179812] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(9603), 1, - anon_sym_DOLLAR, - ACTIONS(9605), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9607), 1, - aux_sym__immediate_decimal_token5, - STATE(4827), 1, - sym__immediate_decimal, - STATE(5750), 1, - sym_comment, - ACTIONS(7445), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5296), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211389] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9609), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9611), 1, - aux_sym__immediate_decimal_token2, - STATE(5751), 1, - sym_comment, - ACTIONS(1771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [211413] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5752), 1, + ACTIONS(2013), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5008), 1, sym_comment, - ACTIONS(1711), 3, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + STATE(5519), 1, + sym_cell_path, + ACTIONS(2015), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1713), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [211433] = 4, - ACTIONS(3), 1, + anon_sym_as, + [179842] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5753), 1, + ACTIONS(2017), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5009), 1, sym_comment, - ACTIONS(1767), 3, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + STATE(5520), 1, + sym_cell_path, + ACTIONS(2019), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1769), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [211453] = 9, + anon_sym_as, + [179872] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5707), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5709), 1, - aux_sym__immediate_decimal_token5, - STATE(3220), 1, - sym__immediate_decimal, - STATE(5754), 1, + ACTIONS(2021), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5010), 1, sym_comment, - ACTIONS(5705), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3245), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211483] = 6, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + STATE(5521), 1, + sym_cell_path, + ACTIONS(2023), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [179902] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9613), 1, - anon_sym_DOT, - ACTIONS(9615), 1, - aux_sym__immediate_decimal_token2, - STATE(5755), 1, + ACTIONS(2025), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5011), 1, sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211507] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, sym_path, - STATE(4230), 1, + STATE(5522), 1, sym_cell_path, - STATE(5756), 1, - sym_comment, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - ACTIONS(971), 5, + ACTIONS(2027), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [211533] = 9, + anon_sym_as, + [179932] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4233), 1, - anon_sym_LPAREN2, - ACTIONS(4675), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4677), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9148), 1, - anon_sym_DOLLAR, - STATE(1937), 1, - sym__immediate_decimal, - STATE(5757), 1, + ACTIONS(2029), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5012), 1, sym_comment, - ACTIONS(4673), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1936), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211563] = 9, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + STATE(5525), 1, + sym_cell_path, + ACTIONS(2031), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [179962] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2215), 1, - sym__immediate_decimal, - STATE(5758), 1, + ACTIONS(935), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(3768), 1, + sym_cell_path, + STATE(5013), 1, sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211593] = 6, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + ACTIONS(937), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [179992] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9617), 1, - anon_sym_DOT, - ACTIONS(9619), 1, + ACTIONS(8327), 1, aux_sym__immediate_decimal_token2, - STATE(5759), 1, + STATE(5014), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - anon_sym_in2, + ACTIONS(1601), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1599), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [211617] = 9, + aux_sym_unquoted_token2, + [180016] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3697), 1, + ACTIONS(8335), 1, + anon_sym_DASH_DASH, + ACTIONS(8337), 1, + anon_sym_DASH2, + ACTIONS(8644), 1, anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(3938), 1, - sym__immediate_decimal, - STATE(5760), 1, + ACTIONS(8646), 1, + anon_sym_LBRACE, + STATE(1865), 1, + sym_block, + STATE(1899), 1, + sym_val_closure, + STATE(5015), 1, sym_comment, - ACTIONS(6658), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3947), 2, - sym__expr_parenthesized_immediate, + STATE(5478), 1, + aux_sym_ctrl_do_repeat1, + STATE(794), 2, + sym__blosure, sym_val_variable, - [211647] = 9, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [180052] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, - aux_sym__immediate_decimal_token5, - STATE(2221), 1, - sym__immediate_decimal, - STATE(5761), 1, - sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2144), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211677] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9621), 1, - anon_sym_DOT, - ACTIONS(9623), 1, - aux_sym__immediate_decimal_token2, - STATE(5762), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(8442), 1, + sym__newline, + ACTIONS(8664), 1, + sym_identifier, + STATE(5016), 1, sym_comment, - ACTIONS(1779), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [211701] = 6, + STATE(5234), 1, + aux_sym_collection_type_repeat1, + STATE(5531), 1, + aux_sym_shebang_repeat1, + STATE(6515), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [180088] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9625), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9627), 1, + ACTIONS(8610), 1, aux_sym__immediate_decimal_token2, - STATE(5763), 1, + STATE(5017), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(1599), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1663), 5, - anon_sym_in2, + ACTIONS(1601), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [211725] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9629), 1, - sym_long_flag_identifier, - ACTIONS(9631), 1, - anon_sym_EQ2, - STATE(5764), 1, - sym_comment, - ACTIONS(5012), 2, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(5010), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [211749] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(4877), 1, - anon_sym_DOLLAR, - ACTIONS(4881), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4883), 1, - aux_sym__immediate_decimal_token5, - STATE(2275), 1, - sym__immediate_decimal, - STATE(5765), 1, - sym_comment, - ACTIONS(4879), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2575), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211779] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8859), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8861), 1, - aux_sym__immediate_decimal_token5, - STATE(5766), 1, - sym_comment, - STATE(7394), 1, - sym__immediate_decimal, - ACTIONS(8857), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211809] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7397), 1, - anon_sym_LPAREN2, - ACTIONS(9603), 1, - anon_sym_DOLLAR, - ACTIONS(9633), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9635), 1, - aux_sym__immediate_decimal_token5, - STATE(5279), 1, - sym__immediate_decimal, - STATE(5767), 1, - sym_comment, - ACTIONS(7489), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5273), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211839] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(9554), 1, - anon_sym_DOLLAR, - ACTIONS(9576), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9578), 1, - aux_sym__immediate_decimal_token5, - STATE(5768), 1, - sym_comment, - STATE(7984), 1, - sym__immediate_decimal, - ACTIONS(8877), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7567), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211869] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(9576), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9578), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9637), 1, - anon_sym_DOLLAR, - STATE(5769), 1, - sym_comment, - STATE(6650), 1, - sym__immediate_decimal, - ACTIONS(8599), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6263), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211899] = 9, + [180112] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(9554), 1, + ACTIONS(3444), 1, + aux_sym_expr_unary_token1, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6897), 1, anon_sym_DOLLAR, - ACTIONS(9576), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9578), 1, - aux_sym__immediate_decimal_token5, - STATE(5770), 1, + ACTIONS(8628), 1, + anon_sym_DASH2, + STATE(2083), 1, + sym__expr_unary_minus, + STATE(5018), 1, sym_comment, - STATE(8089), 1, - sym__immediate_decimal, - ACTIONS(8877), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7336), 2, - sym__expr_parenthesized_immediate, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(2085), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [211929] = 9, + [180144] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(9639), 1, - anon_sym_DOLLAR, - ACTIONS(9641), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9643), 1, - aux_sym__immediate_decimal_token5, - STATE(4664), 1, - sym__immediate_decimal, - STATE(5771), 1, + ACTIONS(8671), 1, + anon_sym_DASH2, + ACTIONS(8668), 2, + sym__newline, + anon_sym_COMMA, + STATE(5019), 2, sym_comment, - ACTIONS(7419), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5035), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211959] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7365), 1, - anon_sym_LPAREN2, - ACTIONS(9639), 1, + aux_sym_parameter_repeat2, + ACTIONS(8666), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(9645), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9647), 1, - aux_sym__immediate_decimal_token5, - STATE(5030), 1, - sym__immediate_decimal, - STATE(5772), 1, - sym_comment, - ACTIONS(7439), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5026), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [211989] = 9, - ACTIONS(251), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180168] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, + ACTIONS(1569), 1, + anon_sym_RBRACE, + ACTIONS(1583), 1, + sym__entry_separator, + ACTIONS(3088), 1, anon_sym_DOLLAR, - ACTIONS(4782), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4784), 1, - aux_sym__immediate_decimal_token5, - STATE(2181), 1, - sym__immediate_decimal, - STATE(5773), 1, - sym_comment, - ACTIONS(4780), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212019] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6475), 1, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(6481), 1, + ACTIONS(8169), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, + ACTIONS(8171), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6597), 1, - anon_sym_DOLLAR, - STATE(4083), 1, - sym__immediate_decimal, - STATE(5774), 1, - sym_comment, - ACTIONS(6670), 2, + ACTIONS(8361), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8363), 1, aux_sym__immediate_decimal_token3, - STATE(4134), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212049] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6593), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6595), 1, - aux_sym__immediate_decimal_token5, - STATE(3929), 1, - sym__immediate_decimal, - STATE(5775), 1, + STATE(5020), 1, sym_comment, - ACTIONS(6591), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212079] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(8294), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8296), 1, - aux_sym__immediate_decimal_token5, - STATE(2125), 1, + STATE(7234), 1, sym__immediate_decimal, - STATE(5776), 1, - sym_comment, - ACTIONS(8963), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(6896), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212109] = 6, + [180206] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9649), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9651), 1, + ACTIONS(8673), 1, aux_sym__immediate_decimal_token2, - STATE(5777), 1, + STATE(5021), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(1709), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1663), 5, + ACTIONS(1711), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [212133] = 9, + [180230] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_LPAREN2, - ACTIONS(9554), 1, - anon_sym_DOLLAR, - ACTIONS(9653), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9655), 1, - aux_sym__immediate_decimal_token5, - STATE(5778), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(8442), 1, + sym__newline, + ACTIONS(8675), 1, + sym_identifier, + STATE(5022), 1, sym_comment, - STATE(7294), 1, - sym__immediate_decimal, - ACTIONS(8841), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(7567), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212163] = 9, + STATE(5250), 1, + aux_sym_collection_type_repeat1, + STATE(5531), 1, + aux_sym_shebang_repeat1, + STATE(6132), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [180266] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4081), 1, - anon_sym_LPAREN2, - ACTIONS(4197), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4199), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8987), 1, - anon_sym_DOLLAR, - STATE(1787), 1, - sym__immediate_decimal, - STATE(5779), 1, + ACTIONS(8677), 1, + anon_sym_else, + STATE(5023), 1, sym_comment, - ACTIONS(4195), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1785), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212193] = 9, + ACTIONS(8105), 10, + sym__newline, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [180288] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4081), 1, - anon_sym_LPAREN2, - ACTIONS(4087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4089), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8987), 1, - anon_sym_DOLLAR, - STATE(1616), 1, - sym__immediate_decimal, - STATE(5780), 1, - sym_comment, - ACTIONS(4085), 2, + ACTIONS(8679), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212223] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5699), 1, - anon_sym_DOLLAR, - ACTIONS(5701), 1, - anon_sym_LPAREN2, - ACTIONS(5764), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5766), 1, - aux_sym__immediate_decimal_token5, - STATE(3244), 1, - sym__immediate_decimal, - STATE(5781), 1, + ACTIONS(8681), 1, + aux_sym__immediate_decimal_token2, + STATE(5024), 1, sym_comment, - ACTIONS(5762), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3268), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212253] = 9, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180314] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(4877), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR, - ACTIONS(6176), 1, + ACTIONS(8624), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6178), 1, + ACTIONS(8626), 1, aux_sym__immediate_decimal_token5, - STATE(3383), 1, - sym__immediate_decimal, - STATE(5782), 1, + STATE(5025), 1, sym_comment, - ACTIONS(6174), 2, + STATE(7326), 1, + sym__immediate_decimal, + ACTIONS(8622), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2575), 2, + STATE(2043), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212283] = 9, + [180350] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7525), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7527), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - STATE(5402), 1, - sym__immediate_decimal, - STATE(5783), 1, + ACTIONS(8683), 1, + anon_sym_DOT, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token2, + STATE(5026), 1, sym_comment, - ACTIONS(7586), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5479), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212313] = 9, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180376] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4831), 1, - anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(7383), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7385), 1, - aux_sym__immediate_decimal_token5, - STATE(4506), 1, - sym__immediate_decimal, - STATE(5784), 1, + ACTIONS(1969), 1, + anon_sym_DASH2, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5027), 1, sym_comment, - ACTIONS(7381), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2575), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212343] = 9, + STATE(5076), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + STATE(5501), 1, + sym_cell_path, + ACTIONS(1971), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [180406] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(9657), 1, - anon_sym_DOLLAR, - ACTIONS(9661), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9663), 1, - aux_sym__immediate_decimal_token5, - STATE(3170), 1, - sym__immediate_decimal, - STATE(5785), 1, + ACTIONS(2021), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5028), 1, sym_comment, - ACTIONS(9659), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3152), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212373] = 9, - ACTIONS(251), 1, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5783), 1, + sym_cell_path, + ACTIONS(2023), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [180435] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, + ACTIONS(2063), 1, anon_sym_DOLLAR, - ACTIONS(6072), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6074), 1, - aux_sym__immediate_decimal_token5, - STATE(3349), 1, - sym__immediate_decimal, - STATE(5786), 1, - sym_comment, - ACTIONS(6070), 2, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6993), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token3, - STATE(2092), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212403] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4776), 1, - anon_sym_DOLLAR, - ACTIONS(6660), 1, + ACTIONS(6997), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6662), 1, + ACTIONS(6999), 1, aux_sym__immediate_decimal_token5, - STATE(2125), 1, + ACTIONS(7124), 1, + aux_sym_unquoted_token3, + STATE(4368), 1, sym__immediate_decimal, - STATE(5787), 1, + STATE(5029), 1, sym_comment, - ACTIONS(6735), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(4604), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212433] = 9, - ACTIONS(251), 1, + [180470] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 1, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(7351), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(7963), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8689), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8691), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7353), 1, + ACTIONS(8693), 1, aux_sym__immediate_decimal_token5, - STATE(4403), 1, - sym__immediate_decimal, - STATE(5788), 1, + STATE(5030), 1, sym_comment, - ACTIONS(7349), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2092), 2, + STATE(5701), 1, + sym__immediate_decimal, + STATE(5757), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212463] = 9, - ACTIONS(251), 1, + [180505] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1717), 1, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(1719), 1, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(1751), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8695), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8697), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1753), 1, + ACTIONS(8699), 1, aux_sym__immediate_decimal_token5, - STATE(753), 1, - sym__immediate_decimal, - STATE(5789), 1, + STATE(5031), 1, sym_comment, - ACTIONS(1749), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(735), 2, + STATE(7109), 1, + sym__immediate_decimal, + STATE(2017), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212493] = 9, + [180540] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_LPAREN2, - ACTIONS(7561), 1, - anon_sym_DOLLAR, - ACTIONS(7567), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7569), 1, - aux_sym__immediate_decimal_token5, - STATE(4938), 1, - sym__immediate_decimal, - STATE(5790), 1, + ACTIONS(1949), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5032), 1, sym_comment, - ACTIONS(7565), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5403), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [212523] = 9, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5665), 1, + sym_cell_path, + ACTIONS(1951), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [180569] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_LPAREN2, - ACTIONS(9665), 1, + ACTIONS(2033), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5033), 1, + sym_comment, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5754), 1, + sym_cell_path, + ACTIONS(2035), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [180598] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5434), 1, anon_sym_DOLLAR, - ACTIONS(9669), 1, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5438), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5440), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9671), 1, + ACTIONS(5442), 1, aux_sym__immediate_decimal_token5, - STATE(638), 1, + ACTIONS(5532), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8701), 1, + aux_sym__immediate_decimal_token1, + STATE(2935), 1, sym__immediate_decimal, - STATE(5791), 1, + STATE(5034), 1, sym_comment, - ACTIONS(9667), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(637), 2, + STATE(3051), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212553] = 9, - ACTIONS(251), 1, + [180633] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6597), 1, + ACTIONS(1847), 1, anon_sym_DOLLAR, - ACTIONS(6601), 1, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6943), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6603), 1, + ACTIONS(6945), 1, aux_sym__immediate_decimal_token5, - STATE(3890), 1, + ACTIONS(7045), 1, + aux_sym_unquoted_token3, + STATE(3910), 1, sym__immediate_decimal, - STATE(5792), 1, + STATE(5035), 1, sym_comment, - ACTIONS(6599), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4084), 2, + STATE(4034), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212583] = 9, - ACTIONS(251), 1, + [180668] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5636), 1, - anon_sym_LPAREN2, - ACTIONS(9657), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(9673), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4674), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(8703), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8705), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9675), 1, + ACTIONS(8707), 1, aux_sym__immediate_decimal_token5, - STATE(3010), 1, + STATE(2273), 1, sym__immediate_decimal, - STATE(5793), 1, + STATE(5036), 1, sym_comment, - ACTIONS(9436), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3156), 2, + STATE(2473), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212613] = 9, + [180703] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5037), 1, + sym_comment, + ACTIONS(1723), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1725), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [180724] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1717), 1, - anon_sym_DOLLAR, - ACTIONS(1719), 1, + ACTIONS(1687), 1, + anon_sym_LBRACE, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(1725), 1, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1727), 1, + ACTIONS(8357), 1, aux_sym__immediate_decimal_token5, - STATE(576), 1, + STATE(2038), 1, sym__immediate_decimal, - STATE(5794), 1, + STATE(5038), 1, sym_comment, - ACTIONS(1723), 2, + ACTIONS(8709), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(756), 2, + STATE(2037), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212643] = 9, + [180757] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(1691), 1, + anon_sym_LBRACE, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(4776), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR, - ACTIONS(6674), 1, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6676), 1, + ACTIONS(8357), 1, aux_sym__immediate_decimal_token5, - STATE(4033), 1, + STATE(2040), 1, sym__immediate_decimal, - STATE(5795), 1, + STATE(5039), 1, sym_comment, - ACTIONS(6672), 2, + ACTIONS(8709), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2092), 2, + STATE(2039), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212673] = 9, + [180790] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1695), 1, + anon_sym_LBRACE, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(9665), 1, + ACTIONS(6435), 1, anon_sym_DOLLAR, - ACTIONS(9677), 1, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9679), 1, + ACTIONS(8357), 1, aux_sym__immediate_decimal_token5, - STATE(554), 1, + STATE(2042), 1, sym__immediate_decimal, - STATE(5796), 1, + STATE(5040), 1, sym_comment, - ACTIONS(9458), 2, + ACTIONS(8709), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(639), 2, + STATE(2041), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212703] = 10, + [180823] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9548), 1, - anon_sym_DOLLAR, - ACTIONS(9550), 1, - anon_sym_DASH_DASH, - ACTIONS(9552), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(5695), 1, - sym_val_variable, - STATE(5797), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5041), 1, sym_comment, - STATE(6640), 1, - sym__variable_name, - STATE(7304), 2, - sym_short_flag, - sym_long_flag, - [212735] = 9, - ACTIONS(251), 1, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5785), 1, + sym_cell_path, + ACTIONS(1959), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [180852] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4831), 1, + ACTIONS(1633), 1, anon_sym_LPAREN2, - ACTIONS(4837), 1, + ACTIONS(1637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1639), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1751), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3710), 1, + anon_sym_DOLLAR, + ACTIONS(8711), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4839), 1, + ACTIONS(8713), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(2599), 1, + STATE(414), 1, sym__immediate_decimal, - STATE(5798), 1, + STATE(5042), 1, sym_comment, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2654), 2, + STATE(510), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212765] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(9681), 1, - sym_identifier, - STATE(5671), 1, - aux_sym_collection_type_repeat1, - STATE(5799), 1, - sym_comment, - STATE(6788), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [212795] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(9683), 1, - sym_identifier, - STATE(5671), 1, - aux_sym_collection_type_repeat1, - STATE(5800), 1, - sym_comment, - STATE(7144), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [212825] = 9, - ACTIONS(251), 1, + [180887] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(1699), 1, anon_sym_LPAREN2, - ACTIONS(4710), 1, + ACTIONS(1701), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1703), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1751), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8715), 1, + anon_sym_DOLLAR, + ACTIONS(8717), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, + ACTIONS(8719), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7347), 1, - anon_sym_DOLLAR, - STATE(2125), 1, + STATE(583), 1, sym__immediate_decimal, - STATE(5801), 1, + STATE(5043), 1, sym_comment, - ACTIONS(4778), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(713), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [212855] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(9685), 1, - sym_identifier, - STATE(5671), 1, - aux_sym_collection_type_repeat1, - STATE(5802), 1, - sym_comment, - STATE(7241), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [212885] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(9687), 1, - sym_identifier, - STATE(5671), 1, - aux_sym_collection_type_repeat1, - STATE(5803), 1, - sym_comment, - STATE(6850), 1, - sym_val_string, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [212915] = 4, - ACTIONS(251), 1, + [180922] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5804), 1, + ACTIONS(8721), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8723), 1, + aux_sym__immediate_decimal_token2, + STATE(5044), 1, sym_comment, - ACTIONS(1671), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1623), 3, + sym__newline, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym_unquoted_token2, - [212935] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5805), 1, - sym_comment, - ACTIONS(1663), 3, - anon_sym_DASH_DASH, + ACTIONS(1625), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1661), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [212955] = 4, + [180947] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1965), 1, anon_sym_DASH2, - STATE(5806), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5045), 1, sym_comment, - ACTIONS(1024), 8, - anon_sym_EQ, - sym_identifier, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5717), 1, + sym_cell_path, + ACTIONS(1967), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - [212975] = 4, + anon_sym_as, + [180976] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5807), 1, - sym_comment, - ACTIONS(1713), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 6, - sym_identifier, + ACTIONS(1969), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [212995] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2174), 1, - sym_cell_path, - STATE(5808), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5046), 1, sym_comment, - STATE(5820), 1, + STATE(5162), 1, aux_sym_cell_path_repeat1, - ACTIONS(1947), 5, + STATE(5439), 1, + sym_path, + STATE(5726), 1, + sym_cell_path, + ACTIONS(1971), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [213021] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9689), 1, - anon_sym_DOT, - ACTIONS(9691), 1, - aux_sym__immediate_decimal_token2, - STATE(5809), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [213045] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9400), 1, - aux_sym__immediate_decimal_token2, - STATE(5810), 1, - sym_comment, - ACTIONS(1779), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213067] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + [181005] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5811), 1, - sym_comment, - ACTIONS(1769), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1767), 6, - sym_identifier, + ACTIONS(1973), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [213087] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9242), 1, - aux_sym__immediate_decimal_token2, - STATE(5812), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5047), 1, sym_comment, - ACTIONS(1669), 3, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5735), 1, + sym_cell_path, + ACTIONS(1975), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [213109] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3697), 1, - anon_sym_DOLLAR, - ACTIONS(4704), 1, - anon_sym_LPAREN2, - ACTIONS(4710), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4712), 1, - aux_sym__immediate_decimal_token5, - STATE(1973), 1, - sym__immediate_decimal, - STATE(5813), 1, - sym_comment, - ACTIONS(4708), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2019), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [213139] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6473), 1, - anon_sym_DOLLAR, - ACTIONS(6475), 1, - anon_sym_LPAREN2, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6483), 1, - aux_sym__immediate_decimal_token5, - STATE(3835), 1, - sym__immediate_decimal, - STATE(5814), 1, - sym_comment, - ACTIONS(6479), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3839), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [213169] = 4, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [181034] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(1977), 1, anon_sym_DASH2, - STATE(5815), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5048), 1, sym_comment, - ACTIONS(1002), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5736), 1, + sym_cell_path, + ACTIONS(1979), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [213188] = 8, + [181063] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(9693), 1, - aux_sym_path_token1, - STATE(5601), 1, - sym_val_string, - STATE(5816), 1, - sym_comment, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - [213215] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9697), 1, - anon_sym_GT2, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - STATE(5817), 1, - sym_comment, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213240] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9705), 1, - anon_sym_GT2, - ACTIONS(9707), 1, - sym_raw_string_begin, - STATE(5818), 1, + ACTIONS(1981), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5049), 1, sym_comment, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213265] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DOT_DOT2, - ACTIONS(6680), 1, - anon_sym_DOT, - STATE(1643), 1, - sym_path, - STATE(3607), 1, + STATE(5162), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(5439), 1, + sym_path, + STATE(5737), 1, sym_cell_path, - STATE(5819), 1, - sym_comment, - ACTIONS(971), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213292] = 6, + ACTIONS(1983), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [181092] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(5820), 1, + ACTIONS(1985), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5050), 1, sym_comment, - STATE(5821), 1, + STATE(5162), 1, aux_sym_cell_path_repeat1, - ACTIONS(984), 5, + STATE(5439), 1, + sym_path, + STATE(5741), 1, + sym_cell_path, + ACTIONS(1987), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [213315] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + [181121] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9709), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(5821), 2, + ACTIONS(1829), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5051), 1, sym_comment, + STATE(5162), 1, aux_sym_cell_path_repeat1, - ACTIONS(977), 5, + STATE(5439), 1, + sym_path, + STATE(5742), 1, + sym_cell_path, + ACTIONS(1831), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [213336] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5822), 1, - sym_comment, - ACTIONS(1818), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213355] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5823), 1, - sym_comment, - ACTIONS(1663), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1661), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [213374] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + [181150] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(990), 1, + ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(9712), 1, - anon_sym_QMARK2, - STATE(5824), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5052), 1, sym_comment, - ACTIONS(992), 6, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5744), 1, + sym_cell_path, + ACTIONS(1991), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - anon_sym_DOT, - [213395] = 4, + [181179] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(1993), 1, anon_sym_DASH2, - STATE(5825), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5053), 1, sym_comment, - ACTIONS(5228), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5745), 1, + sym_cell_path, + ACTIONS(1995), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [213414] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9714), 1, - anon_sym_GT2, - STATE(5826), 1, - sym_comment, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213439] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(9716), 1, - anon_sym_DOT_DOT2, - ACTIONS(9720), 1, - sym_filesize_unit, - ACTIONS(9722), 1, - sym_duration_unit, - STATE(5827), 1, - sym_comment, - ACTIONS(1699), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9718), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213466] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5828), 1, - sym_comment, - ACTIONS(1713), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [213485] = 4, + [181208] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5182), 1, + ACTIONS(1997), 1, anon_sym_DASH2, - STATE(5829), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5054), 1, sym_comment, - ACTIONS(5180), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5746), 1, + sym_cell_path, + ACTIONS(1999), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [213504] = 4, + [181237] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5186), 1, + ACTIONS(2001), 1, anon_sym_DASH2, - STATE(5830), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5055), 1, sym_comment, - ACTIONS(5184), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5748), 1, + sym_cell_path, + ACTIONS(2003), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [213523] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9623), 1, - aux_sym__immediate_decimal_token2, - STATE(5831), 1, - sym_comment, - ACTIONS(1779), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213544] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9724), 1, - anon_sym_GT2, - STATE(5832), 1, - sym_comment, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213569] = 4, + [181266] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5234), 1, + ACTIONS(2005), 1, anon_sym_DASH2, - STATE(5833), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5056), 1, sym_comment, - ACTIONS(5232), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5749), 1, + sym_cell_path, + ACTIONS(2007), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [213588] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5834), 1, - sym_comment, - ACTIONS(1769), 3, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1767), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [213607] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9726), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9728), 1, - aux_sym__immediate_decimal_token2, - STATE(5835), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [213630] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9730), 1, - aux_sym__immediate_decimal_token2, - STATE(5836), 1, - sym_comment, - ACTIONS(1799), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213651] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9732), 1, - anon_sym_QMARK2, - STATE(5837), 1, - sym_comment, - ACTIONS(1010), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1008), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [213672] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9734), 1, - anon_sym_QMARK2, - STATE(5838), 1, - sym_comment, - ACTIONS(992), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(990), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [213693] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2355), 1, - sym_raw_string_begin, - ACTIONS(9736), 1, - sym__entry_separator, - STATE(5839), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2350), 5, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213714] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9741), 1, - anon_sym_GT2, - ACTIONS(9743), 1, - sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5840), 1, - sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213739] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9747), 1, - anon_sym_GT2, - ACTIONS(9749), 1, - sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5841), 1, - sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213764] = 4, + [181295] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5222), 1, + ACTIONS(2009), 1, anon_sym_DASH2, - STATE(5842), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5057), 1, sym_comment, - ACTIONS(5220), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5775), 1, + sym_cell_path, + ACTIONS(2011), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [213783] = 4, + [181324] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9753), 1, + ACTIONS(2013), 1, anon_sym_DASH2, - STATE(5843), 1, - sym_comment, - ACTIONS(9751), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [213802] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9755), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5844), 1, - sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213827] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5845), 1, - sym_comment, - ACTIONS(1767), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [213846] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9757), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5846), 1, - sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213871] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9759), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5847), 1, - sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213896] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9761), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5848), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5058), 1, sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [213921] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1738), 1, - sym_cell_path, - STATE(1898), 1, - sym_path, - STATE(5820), 1, + STATE(5162), 1, aux_sym_cell_path_repeat1, - STATE(5849), 1, - sym_comment, - ACTIONS(1761), 4, + STATE(5439), 1, + sym_path, + STATE(5776), 1, + sym_cell_path, + ACTIONS(2015), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213946] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + [181353] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5226), 1, + ACTIONS(2017), 1, anon_sym_DASH2, - STATE(5850), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5059), 1, sym_comment, - ACTIONS(5224), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5777), 1, + sym_cell_path, + ACTIONS(2019), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, - anon_sym_RBRACE, anon_sym_as, - [213965] = 4, + [181382] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5851), 1, + ACTIONS(8725), 1, + aux_sym__immediate_decimal_token2, + STATE(5060), 1, sym_comment, - ACTIONS(1711), 3, - sym__newline, + ACTIONS(1709), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 5, - sym__space, + aux_sym__unquoted_in_record_token2, + ACTIONS(1711), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [213984] = 5, + sym__entry_separator, + [181405] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(2025), 1, anon_sym_DASH2, - ACTIONS(6720), 1, - aux_sym_unquoted_token2, - STATE(5852), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5061), 1, sym_comment, - ACTIONS(1699), 6, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5786), 1, + sym_cell_path, + ACTIONS(2027), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [214005] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9763), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5853), 1, - sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214030] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9765), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5854), 1, - sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214055] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9767), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5855), 1, - sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214080] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9769), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5856), 1, - sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214105] = 4, + [181434] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(2029), 1, anon_sym_DASH2, - STATE(5857), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5062), 1, sym_comment, - ACTIONS(1006), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5790), 1, + sym_cell_path, + ACTIONS(2031), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [214124] = 4, + [181463] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(1945), 1, anon_sym_DASH2, - STATE(5858), 1, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5063), 1, sym_comment, - ACTIONS(998), 7, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5769), 1, + sym_cell_path, + ACTIONS(1947), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [214143] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9771), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5859), 1, - sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214168] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9773), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5860), 1, - sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214193] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9775), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5861), 1, - sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214218] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9777), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5862), 1, - sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214243] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9781), 1, - anon_sym_GT2, - ACTIONS(9783), 1, - sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5863), 1, - sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214268] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9787), 1, - anon_sym_GT2, - ACTIONS(9789), 1, - sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5864), 1, - sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214293] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9791), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5865), 1, - sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214318] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9793), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5866), 1, - sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214343] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9795), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5867), 1, - sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214368] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9797), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5868), 1, - sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214393] = 7, - ACTIONS(3), 1, + [181492] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9799), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5869), 1, + ACTIONS(1653), 1, + anon_sym_DASH2, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(8727), 1, + sym_filesize_unit, + ACTIONS(8729), 1, + sym_duration_unit, + ACTIONS(8731), 1, + aux_sym_unquoted_token2, + STATE(5064), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214418] = 7, - ACTIONS(3), 1, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1665), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [181523] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9801), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5870), 1, - sym_comment, - ACTIONS(9785), 4, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214443] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9803), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5871), 1, + ACTIONS(8735), 1, + anon_sym_DASH_DASH, + ACTIONS(8737), 1, + anon_sym_DASH2, + STATE(5065), 1, sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214468] = 7, + STATE(5223), 1, + aux_sym_ctrl_do_repeat1, + STATE(5491), 1, + sym_val_variable, + STATE(6483), 1, + sym__variable_name, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [181558] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9805), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5872), 1, + ACTIONS(3544), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7152), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8739), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8741), 1, + aux_sym__immediate_decimal_token5, + STATE(4092), 1, + sym__immediate_decimal, + STATE(5066), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214493] = 7, + STATE(4342), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9807), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5873), 1, + ACTIONS(8743), 1, + anon_sym_DOT, + ACTIONS(8745), 1, + aux_sym__immediate_decimal_token2, + STATE(5067), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214518] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(1735), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9809), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5874), 1, - sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214543] = 7, + [181618] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9811), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5875), 1, + ACTIONS(3544), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7080), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7082), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7152), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8747), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8749), 1, + aux_sym__immediate_decimal_token5, + STATE(4529), 1, + sym__immediate_decimal, + STATE(5068), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214568] = 7, + STATE(4835), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181653] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(1653), 1, + anon_sym_RBRACK, + ACTIONS(1665), 1, sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9813), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5876), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(8751), 1, + anon_sym_DOT_DOT2, + ACTIONS(8755), 1, + sym_filesize_unit, + ACTIONS(8757), 1, + sym_duration_unit, + ACTIONS(8759), 1, + aux_sym__unquoted_in_list_token2, + STATE(5069), 1, sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214593] = 4, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8753), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [181688] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5877), 1, + STATE(5070), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1625), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1623), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [214612] = 8, + aux_sym_unquoted_token2, + [181709] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(435), 1, - anon_sym_DQUOTE, - ACTIONS(439), 1, - sym_raw_string_begin, - ACTIONS(9815), 1, - aux_sym_path_token1, - STATE(1819), 1, - sym_val_string, - STATE(5878), 1, + ACTIONS(1262), 1, + anon_sym_DASH2, + ACTIONS(8761), 1, + sym__newline, + STATE(5071), 2, sym_comment, - ACTIONS(437), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1868), 2, - sym__raw_str, - sym__str_double_quotes, - [214639] = 5, - ACTIONS(251), 1, + aux_sym_shebang_repeat1, + ACTIONS(1264), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181732] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9615), 1, + ACTIONS(8764), 1, + anon_sym_DOT, + ACTIONS(8766), 1, aux_sym__immediate_decimal_token2, - STATE(5879), 1, + STATE(5072), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(1599), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1601), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [214660] = 7, + sym_filesize_unit, + sym_duration_unit, + [181757] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9817), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5880), 1, + ACTIONS(5388), 1, + anon_sym_LPAREN2, + ACTIONS(5392), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5394), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8426), 1, + anon_sym_DOLLAR, + ACTIONS(8428), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8430), 1, + aux_sym__immediate_decimal_token5, + STATE(2828), 1, + sym__immediate_decimal, + STATE(5073), 1, sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214685] = 4, + STATE(2934), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181792] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(986), 1, - anon_sym_DASH2, - STATE(5881), 1, + STATE(5074), 1, sym_comment, - ACTIONS(988), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1725), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT, - [214704] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1723), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [181813] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9819), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5882), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(7913), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8768), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8772), 1, + aux_sym__immediate_decimal_token5, + STATE(5075), 1, sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214729] = 4, + STATE(5557), 1, + sym__immediate_decimal, + STATE(5757), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181848] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(948), 1, anon_sym_DASH2, - STATE(5883), 1, + ACTIONS(8648), 1, + anon_sym_DOT2, + STATE(5076), 1, sym_comment, - ACTIONS(5188), 7, + STATE(5078), 1, + aux_sym_cell_path_repeat1, + STATE(5298), 1, + sym_path, + ACTIONS(950), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [214748] = 5, - ACTIONS(251), 1, + [181875] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9619), 1, - aux_sym__immediate_decimal_token2, - STATE(5884), 1, + STATE(5077), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(1599), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - anon_sym_in2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1601), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [214769] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(5885), 1, - sym_comment, - ACTIONS(1034), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1036), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214790] = 4, + sym__entry_separator, + [181896] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5194), 1, + ACTIONS(941), 1, anon_sym_DASH2, - STATE(5886), 1, + ACTIONS(8774), 1, + anon_sym_DOT2, + STATE(5298), 1, + sym_path, + STATE(5078), 2, sym_comment, - ACTIONS(5192), 7, + aux_sym_cell_path_repeat1, + ACTIONS(943), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in2, anon_sym_RBRACE, anon_sym_as, - [214809] = 9, - ACTIONS(251), 1, + [181921] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9548), 1, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(9550), 1, - anon_sym_DASH_DASH, - ACTIONS(9552), 1, - anon_sym_DASH2, - STATE(5695), 1, - sym_val_variable, - STATE(5887), 1, - sym_comment, - STATE(6592), 1, - sym__variable_name, - STATE(7274), 2, - sym_short_flag, - sym_long_flag, - [214838] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9821), 1, - sym_long_flag_identifier, - ACTIONS(9823), 1, - anon_sym_EQ2, - STATE(5888), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8273), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8777), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8779), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8781), 1, + aux_sym__immediate_decimal_token5, + STATE(5079), 1, sym_comment, - ACTIONS(5012), 2, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(5010), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - [214861] = 7, + STATE(6586), 1, + sym__immediate_decimal, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(5080), 1, + sym_comment, + ACTIONS(960), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9825), 1, + ACTIONS(958), 7, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5889), 1, - sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214886] = 8, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [181977] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(969), 1, - anon_sym_DASH2, - ACTIONS(9160), 1, - anon_sym_DOT, - STATE(4833), 1, - sym_cell_path, - STATE(5526), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5081), 1, + sym_comment, + STATE(5169), 1, aux_sym_cell_path_repeat1, - STATE(5806), 1, + STATE(5562), 1, sym_path, - STATE(5890), 1, - sym_comment, - ACTIONS(971), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [214913] = 7, + STATE(5588), 1, + sym_cell_path, + ACTIONS(1717), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1719), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [182006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9827), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5891), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5082), 1, sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214938] = 7, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5663), 1, + sym_cell_path, + ACTIONS(935), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(937), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [182035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9829), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5892), 1, + STATE(5083), 1, sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214963] = 7, + ACTIONS(1623), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1625), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [182056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(5084), 1, + sym_comment, + ACTIONS(978), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9831), 1, + ACTIONS(976), 7, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5893), 1, - sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214988] = 5, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [182077] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9833), 1, + ACTIONS(8785), 1, aux_sym__immediate_decimal_token2, - STATE(5894), 1, + STATE(5085), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 5, - anon_sym_in2, + ACTIONS(1711), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [215009] = 8, + aux_sym_unquoted_token2, + [182100] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9835), 1, - anon_sym_DQUOTE, - ACTIONS(9839), 1, - aux_sym_path_token1, - ACTIONS(9841), 1, - sym_raw_string_begin, - STATE(2697), 1, - sym_val_string, - STATE(5895), 1, - sym_comment, - ACTIONS(9837), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2710), 2, - sym__raw_str, - sym__str_double_quotes, - [215036] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9843), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5896), 1, + ACTIONS(8642), 1, + aux_sym__immediate_decimal_token2, + STATE(5086), 1, sym_comment, - ACTIONS(9703), 4, + ACTIONS(1601), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1599), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215061] = 7, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [182123] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9845), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5897), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4556), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8787), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8789), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8791), 1, + aux_sym__immediate_decimal_token5, + STATE(1721), 1, + sym__immediate_decimal, + STATE(5087), 1, sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215086] = 7, + STATE(1858), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182158] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1742), 1, - sym_cell_path, - STATE(1898), 1, - sym_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(5898), 1, + ACTIONS(8795), 1, + anon_sym_DASH_DASH, + ACTIONS(8797), 1, + anon_sym_DASH2, + ACTIONS(8799), 1, + anon_sym_as, + STATE(5088), 1, sym_comment, - ACTIONS(1765), 4, + STATE(5119), 1, + aux_sym_ctrl_do_repeat1, + STATE(5526), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8793), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215111] = 7, + [182187] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9847), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5899), 1, + ACTIONS(1571), 1, + anon_sym_DOLLAR, + ACTIONS(1573), 1, + anon_sym_LPAREN2, + ACTIONS(1577), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1579), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1581), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1667), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8801), 1, + aux_sym__immediate_decimal_token1, + STATE(383), 1, + sym__immediate_decimal, + STATE(5089), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215136] = 7, + STATE(472), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182222] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(9849), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5900), 1, + ACTIONS(1607), 1, + anon_sym_DOLLAR, + ACTIONS(1609), 1, + anon_sym_LPAREN2, + ACTIONS(1611), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1613), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1615), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(1667), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8803), 1, + aux_sym__immediate_decimal_token1, + STATE(514), 1, + sym__immediate_decimal, + STATE(5090), 1, sym_comment, - ACTIONS(9695), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215161] = 7, + STATE(637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182257] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(9851), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5901), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(6354), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8805), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8807), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8809), 1, + aux_sym__immediate_decimal_token5, + STATE(3494), 1, + sym__immediate_decimal, + STATE(5091), 1, sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215186] = 8, + STATE(1858), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182292] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4624), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8811), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8813), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8815), 1, + aux_sym__immediate_decimal_token5, + STATE(2080), 1, + sym__immediate_decimal, + STATE(5092), 1, + sym_comment, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182327] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9853), 1, - anon_sym_DQUOTE, - ACTIONS(9857), 1, - aux_sym_path_token1, - ACTIONS(9859), 1, - sym_raw_string_begin, - STATE(5902), 1, + ACTIONS(1597), 1, + anon_sym_LBRACE, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8355), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8357), 1, + aux_sym__immediate_decimal_token5, + STATE(2025), 1, + sym__immediate_decimal, + STATE(5093), 1, sym_comment, - STATE(6653), 1, - sym_val_string, - ACTIONS(9855), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6393), 2, - sym__raw_str, - sym__str_double_quotes, - [215213] = 5, + ACTIONS(8709), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2024), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182360] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9861), 1, - aux_sym__immediate_decimal_token2, - STATE(5903), 1, + STATE(5094), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1601), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215234] = 7, + ACTIONS(1599), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [182381] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9863), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5904), 1, + ACTIONS(2630), 1, + anon_sym_DOLLAR, + ACTIONS(3956), 1, + anon_sym_LPAREN2, + ACTIONS(3960), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3962), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4123), 1, + aux_sym_unquoted_token3, + ACTIONS(8817), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8819), 1, + aux_sym__immediate_decimal_token5, + STATE(1390), 1, + sym__immediate_decimal, + STATE(5095), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215259] = 8, - ACTIONS(251), 1, + STATE(1489), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182416] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3141), 1, - anon_sym_DQUOTE, - ACTIONS(3147), 1, - sym_raw_string_begin, - ACTIONS(9865), 1, - aux_sym_path_token1, - STATE(5838), 1, - sym_val_string, - STATE(5905), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(6370), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8821), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8823), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8825), 1, + aux_sym__immediate_decimal_token5, + STATE(3538), 1, + sym__immediate_decimal, + STATE(5096), 1, sym_comment, - ACTIONS(3143), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5662), 2, - sym__raw_str, - sym__str_double_quotes, - [215286] = 7, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182451] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9867), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5906), 1, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(5935), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8827), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8829), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8831), 1, + aux_sym__immediate_decimal_token5, + STATE(3202), 1, + sym__immediate_decimal, + STATE(5097), 1, sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215311] = 7, + STATE(2145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182486] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3972), 1, + anon_sym_DOLLAR, + ACTIONS(3974), 1, + anon_sym_LPAREN2, + ACTIONS(3976), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4123), 1, + aux_sym_unquoted_token3, + ACTIONS(8833), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8835), 1, + aux_sym__immediate_decimal_token5, + STATE(1609), 1, + sym__immediate_decimal, + STATE(5098), 1, + sym_comment, + STATE(1794), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182521] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9869), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5907), 1, + ACTIONS(3464), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(6915), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8837), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8839), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8841), 1, + aux_sym__immediate_decimal_token5, + STATE(3863), 1, + sym__immediate_decimal, + STATE(5099), 1, sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215336] = 8, - ACTIONS(251), 1, + STATE(3992), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182556] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9871), 1, - anon_sym_DQUOTE, - ACTIONS(9875), 1, - aux_sym_path_token1, - ACTIONS(9877), 1, - sym_raw_string_begin, - STATE(5908), 1, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(5964), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8843), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8845), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8847), 1, + aux_sym__immediate_decimal_token5, + STATE(3266), 1, + sym__immediate_decimal, + STATE(5100), 1, sym_comment, - STATE(6550), 1, - sym_val_string, - ACTIONS(9873), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(6511), 2, - sym__raw_str, - sym__str_double_quotes, - [215363] = 7, + STATE(2473), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182591] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9879), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5909), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(5801), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8849), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8851), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8853), 1, + aux_sym__immediate_decimal_token5, + STATE(3201), 1, + sym__immediate_decimal, + STATE(5101), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215388] = 7, + STATE(1858), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182626] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9881), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5910), 1, + ACTIONS(3464), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(6921), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8855), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token5, + STATE(4030), 1, + sym__immediate_decimal, + STATE(5102), 1, sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215413] = 7, + STATE(2473), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182661] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9883), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5911), 1, + ACTIONS(3440), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(6901), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token5, + STATE(3846), 1, + sym__immediate_decimal, + STATE(5103), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215438] = 8, - ACTIONS(251), 1, + STATE(3930), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182696] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9885), 1, - anon_sym_DQUOTE, - ACTIONS(9889), 1, - aux_sym_path_token1, - ACTIONS(9891), 1, - sym_raw_string_begin, - STATE(1585), 1, - sym_val_string, - STATE(5912), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(5895), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8871), 1, + aux_sym__immediate_decimal_token5, + STATE(3249), 1, + sym__immediate_decimal, + STATE(5104), 1, sym_comment, - ACTIONS(9887), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1724), 2, - sym__raw_str, - sym__str_double_quotes, - [215465] = 7, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182731] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9893), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5913), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(6406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8873), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8875), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8877), 1, + aux_sym__immediate_decimal_token5, + STATE(3508), 1, + sym__immediate_decimal, + STATE(5105), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215490] = 7, + STATE(3532), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182766] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9895), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5914), 1, + ACTIONS(3440), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(6907), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8879), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8881), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8883), 1, + aux_sym__immediate_decimal_token5, + STATE(3944), 1, + sym__immediate_decimal, + STATE(5106), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215515] = 7, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182801] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9897), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5915), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(6429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8885), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8887), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8889), 1, + aux_sym__immediate_decimal_token5, + STATE(3645), 1, + sym__immediate_decimal, + STATE(5107), 1, sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215540] = 7, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182836] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(5108), 1, + sym_comment, + ACTIONS(974), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9899), 1, + ACTIONS(972), 7, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5916), 1, - sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215565] = 8, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [182857] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9901), 1, - anon_sym_DQUOTE, - ACTIONS(9905), 1, - aux_sym_path_token1, - ACTIONS(9907), 1, - sym_raw_string_begin, - STATE(1405), 1, - sym_val_string, - STATE(5917), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(8735), 1, + anon_sym_DASH_DASH, + ACTIONS(8737), 1, + anon_sym_DASH2, + STATE(5109), 1, sym_comment, - ACTIONS(9903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1393), 2, - sym__raw_str, - sym__str_double_quotes, - [215592] = 7, - ACTIONS(3), 1, + STATE(5223), 1, + aux_sym_ctrl_do_repeat1, + STATE(5491), 1, + sym_val_variable, + STATE(6483), 1, + sym__variable_name, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [182892] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9909), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5918), 1, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(8731), 1, + aux_sym_unquoted_token2, + ACTIONS(8891), 1, + sym_filesize_unit, + ACTIONS(8893), 1, + sym_duration_unit, + STATE(5110), 1, sym_comment, - ACTIONS(9739), 4, + ACTIONS(1653), 2, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215617] = 7, - ACTIONS(3), 1, + anon_sym_DASH2, + ACTIONS(1665), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [182923] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9911), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5919), 1, + ACTIONS(935), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5111), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215642] = 8, - ACTIONS(251), 1, + STATE(5162), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + STATE(5621), 1, + sym_cell_path, + ACTIONS(937), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [182952] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DQUOTE, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(9913), 1, - aux_sym_path_token1, - STATE(3752), 1, - sym_val_string, - STATE(5920), 1, + ACTIONS(3932), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5112), 1, sym_comment, - ACTIONS(3405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3753), 2, - sym__raw_str, - sym__str_double_quotes, - [215669] = 7, + STATE(5916), 1, + sym__immediate_decimal, + STATE(6508), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182987] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9915), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5921), 1, + ACTIONS(2889), 1, + anon_sym_DOLLAR, + ACTIONS(3988), 1, + anon_sym_LPAREN2, + ACTIONS(3992), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3994), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4441), 1, + aux_sym_unquoted_token3, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8903), 1, + aux_sym__immediate_decimal_token5, + STATE(1431), 1, + sym__immediate_decimal, + STATE(5113), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215694] = 7, + STATE(1569), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183022] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9917), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5922), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5114), 1, sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215719] = 8, - ACTIONS(237), 1, - anon_sym_DQUOTE, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5729), 1, + sym_cell_path, + ACTIONS(1761), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1763), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [183051] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(9889), 1, - aux_sym_path_token1, - STATE(1585), 1, - sym_val_string, - STATE(5923), 1, + ACTIONS(8907), 1, + anon_sym_DASH_DASH, + ACTIONS(8910), 1, + anon_sym_DASH2, + STATE(5115), 2, sym_comment, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1571), 2, - sym__raw_str, - sym__str_double_quotes, - [215746] = 7, + aux_sym_ctrl_do_repeat1, + STATE(5526), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8905), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + [183076] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(9919), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5924), 1, + ACTIONS(4018), 1, + anon_sym_DOLLAR, + ACTIONS(4141), 1, + anon_sym_LPAREN2, + ACTIONS(4143), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4441), 1, + aux_sym_unquoted_token3, + ACTIONS(8913), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8915), 1, + aux_sym__immediate_decimal_token5, + STATE(1630), 1, + sym__immediate_decimal, + STATE(5116), 1, + sym_comment, + STATE(1894), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183111] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8572), 1, + anon_sym_DASH2, + STATE(5117), 1, sym_comment, - ACTIONS(9779), 4, + ACTIONS(5758), 9, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215771] = 7, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183132] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(9921), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5925), 1, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8167), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8169), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8171), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8759), 1, + aux_sym__unquoted_in_list_token3, + STATE(5118), 1, sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215796] = 8, + STATE(5509), 1, + sym__immediate_decimal, + STATE(5713), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183167] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9923), 1, - anon_sym_DQUOTE, - ACTIONS(9927), 1, - aux_sym_path_token1, - ACTIONS(9929), 1, - sym_raw_string_begin, - STATE(1747), 1, - sym_val_string, - STATE(5926), 1, + ACTIONS(8795), 1, + anon_sym_DASH_DASH, + ACTIONS(8797), 1, + anon_sym_DASH2, + ACTIONS(8919), 1, + anon_sym_as, + STATE(5115), 1, + aux_sym_ctrl_do_repeat1, + STATE(5119), 1, sym_comment, - ACTIONS(9925), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1678), 2, - sym__raw_str, - sym__str_double_quotes, - [215823] = 4, + STATE(5526), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8917), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183196] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5927), 1, + STATE(5120), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(1599), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1663), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1601), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [215842] = 7, + [183217] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(9931), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5928), 1, - sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215867] = 8, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9933), 1, - aux_sym_path_token1, - STATE(2211), 1, - sym_val_string, - STATE(5929), 1, - sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2190), 2, - sym__raw_str, - sym__str_double_quotes, - [215894] = 8, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(9935), 1, - aux_sym_path_token1, - STATE(1859), 1, - sym_val_string, - STATE(5930), 1, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(7979), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7981), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7983), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7985), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8921), 1, + aux_sym__unquoted_in_record_token3, + STATE(5121), 1, sym_comment, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1571), 2, - sym__raw_str, - sym__str_double_quotes, - [215921] = 8, + STATE(5541), 1, + sym__immediate_decimal, + STATE(5713), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183252] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_DQUOTE, - ACTIONS(9941), 1, - aux_sym_path_token1, - ACTIONS(9943), 1, - sym_raw_string_begin, - STATE(1430), 1, - sym_val_string, - STATE(5931), 1, + ACTIONS(8795), 1, + anon_sym_DASH_DASH, + ACTIONS(8797), 1, + anon_sym_DASH2, + ACTIONS(8925), 1, + anon_sym_as, + STATE(5122), 1, sym_comment, - ACTIONS(9939), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - [215948] = 4, + STATE(5126), 1, + aux_sym_ctrl_do_repeat1, + STATE(5526), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8923), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183281] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5932), 1, + STATE(5123), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1623), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1625), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [215967] = 8, - ACTIONS(251), 1, + [183302] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9945), 1, - anon_sym_DQUOTE, - ACTIONS(9949), 1, - aux_sym_path_token1, - ACTIONS(9951), 1, - sym_raw_string_begin, - STATE(1382), 1, - sym_val_string, - STATE(5933), 1, + ACTIONS(3932), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5124), 1, sym_comment, - ACTIONS(9947), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1386), 2, - sym__raw_str, - sym__str_double_quotes, - [215994] = 4, + STATE(7245), 1, + sym__immediate_decimal, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183337] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5934), 1, + STATE(5125), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1711), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [216013] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [183358] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5935), 1, - sym_comment, - ACTIONS(2242), 4, + ACTIONS(8795), 1, anon_sym_DASH_DASH, + ACTIONS(8797), 1, anon_sym_DASH2, + ACTIONS(8935), 1, anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2244), 4, + STATE(5115), 1, + aux_sym_ctrl_do_repeat1, + STATE(5126), 1, + sym_comment, + STATE(5526), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8933), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216032] = 8, + [183387] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2195), 1, - sym_raw_string_begin, - ACTIONS(4403), 1, - anon_sym_DQUOTE, - ACTIONS(9953), 1, - aux_sym_path_token1, - STATE(4817), 1, - sym_val_string, - STATE(5936), 1, + ACTIONS(8937), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token2, + STATE(5127), 1, sym_comment, - ACTIONS(4405), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4801), 2, - sym__raw_str, - sym__str_double_quotes, - [216059] = 7, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183412] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(9955), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5937), 1, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token2, + STATE(5128), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216084] = 9, + ACTIONS(1727), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [183437] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, - sym_identifier, - ACTIONS(1699), 1, - anon_sym_DOLLAR, - ACTIONS(4720), 1, + STATE(5129), 1, + sym_comment, + ACTIONS(1709), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(9217), 1, aux_sym_unquoted_token2, - ACTIONS(9957), 1, - sym_filesize_unit, - ACTIONS(9959), 1, - sym_duration_unit, - STATE(5938), 1, - sym_comment, - ACTIONS(4722), 2, + ACTIONS(1711), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [216113] = 8, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [183458] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9961), 1, - anon_sym_DQUOTE, - ACTIONS(9965), 1, - aux_sym_path_token1, - ACTIONS(9967), 1, - sym_raw_string_begin, - STATE(2627), 1, - sym_val_string, - STATE(5939), 1, + ACTIONS(2063), 1, + anon_sym_DOLLAR, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7124), 1, + aux_sym_unquoted_token3, + STATE(3945), 1, + sym__immediate_decimal, + STATE(5130), 1, sym_comment, - ACTIONS(9963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2606), 2, - sym__raw_str, - sym__str_double_quotes, - [216140] = 6, + STATE(4140), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183493] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9969), 1, - anon_sym_EQ2, - ACTIONS(9971), 1, - sym_short_flag_identifier, - STATE(5940), 1, + STATE(5131), 1, sym_comment, - ACTIONS(5027), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5029), 3, - anon_sym_DASH_DASH, + ACTIONS(1723), 3, anon_sym_DASH2, - anon_sym_as, - [216163] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1725), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183514] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2027), 1, - sym_raw_string_begin, - ACTIONS(4441), 1, - anon_sym_DQUOTE, - ACTIONS(9973), 1, - aux_sym_path_token1, - STATE(4706), 1, - sym_val_string, - STATE(5941), 1, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5484), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5486), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8945), 1, + anon_sym_DOLLAR, + ACTIONS(8947), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8949), 1, + aux_sym__immediate_decimal_token5, + STATE(3100), 1, + sym__immediate_decimal, + STATE(5132), 1, sym_comment, - ACTIONS(4443), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4655), 2, - sym__raw_str, - sym__str_double_quotes, - [216190] = 8, - ACTIONS(251), 1, + STATE(3132), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183549] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3913), 1, - anon_sym_DQUOTE, - ACTIONS(3917), 1, - sym_raw_string_begin, - ACTIONS(9815), 1, - aux_sym_path_token1, - STATE(1819), 1, - sym_val_string, - STATE(5942), 1, + STATE(5133), 1, sym_comment, - ACTIONS(3915), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4608), 2, - sym__raw_str, - sym__str_double_quotes, - [216217] = 8, + ACTIONS(1709), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1711), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [183570] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9975), 1, - anon_sym_DQUOTE, - ACTIONS(9979), 1, - aux_sym_path_token1, - ACTIONS(9981), 1, - sym_raw_string_begin, - STATE(1466), 1, - sym_val_string, - STATE(5943), 1, + ACTIONS(8685), 1, + aux_sym__immediate_decimal_token2, + STATE(5134), 1, sym_comment, - ACTIONS(9977), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1483), 2, - sym__raw_str, - sym__str_double_quotes, - [216244] = 6, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183593] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5135), 1, + sym_comment, + ACTIONS(964), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(962), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [183614] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9983), 1, - anon_sym_DOT, - ACTIONS(9985), 1, + ACTIONS(8951), 1, aux_sym__immediate_decimal_token2, - STATE(5944), 1, + STATE(5136), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(1709), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 4, + ACTIONS(1711), 7, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [216267] = 8, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [183637] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9987), 1, - anon_sym_DQUOTE, - ACTIONS(9991), 1, - aux_sym_path_token1, - ACTIONS(9993), 1, - sym_raw_string_begin, - STATE(1613), 1, - sym_val_string, - STATE(5945), 1, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4618), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(8953), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8957), 1, + aux_sym__immediate_decimal_token5, + STATE(1914), 1, + sym__immediate_decimal, + STATE(5137), 1, sym_comment, - ACTIONS(9989), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1655), 2, - sym__raw_str, - sym__str_double_quotes, - [216294] = 8, - ACTIONS(251), 1, + STATE(2145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183672] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9995), 1, - anon_sym_DQUOTE, - ACTIONS(9999), 1, - aux_sym_path_token1, - ACTIONS(10001), 1, - sym_raw_string_begin, - STATE(4421), 1, - sym_val_string, - STATE(5946), 1, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8365), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8367), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8369), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8371), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8921), 1, + aux_sym__unquoted_in_record_token3, + STATE(5138), 1, sym_comment, - ACTIONS(9997), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4439), 2, - sym__raw_str, - sym__str_double_quotes, - [216321] = 8, - ACTIONS(251), 1, + STATE(6148), 1, + sym__immediate_decimal, + STATE(6974), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183707] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_DQUOTE, - ACTIONS(10007), 1, - aux_sym_path_token1, - ACTIONS(10009), 1, - sym_raw_string_begin, - STATE(2944), 1, - sym_val_string, - STATE(5947), 1, + ACTIONS(3088), 1, + anon_sym_DOLLAR, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(8476), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8478), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8480), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8482), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8759), 1, + aux_sym__unquoted_in_list_token3, + STATE(5139), 1, sym_comment, - ACTIONS(10005), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2951), 2, - sym__raw_str, - sym__str_double_quotes, - [216348] = 8, + STATE(6358), 1, + sym__immediate_decimal, + STATE(6974), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183742] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10011), 1, - anon_sym_DQUOTE, - ACTIONS(10015), 1, - aux_sym_path_token1, - ACTIONS(10017), 1, - sym_raw_string_begin, - STATE(4371), 1, - sym_val_string, - STATE(5948), 1, + ACTIONS(8959), 1, + anon_sym_DOT, + ACTIONS(8961), 1, + aux_sym__immediate_decimal_token2, + STATE(5140), 1, sym_comment, - ACTIONS(10013), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4400), 2, - sym__raw_str, - sym__str_double_quotes, - [216375] = 8, - ACTIONS(251), 1, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183767] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4129), 1, - anon_sym_DQUOTE, - ACTIONS(4133), 1, - sym_raw_string_begin, - ACTIONS(10019), 1, - aux_sym_path_token1, - STATE(3702), 1, - sym_val_string, - STATE(5949), 1, + ACTIONS(8620), 1, + aux_sym__immediate_decimal_token2, + STATE(5141), 1, sym_comment, - ACTIONS(4131), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3508), 2, - sym__raw_str, - sym__str_double_quotes, - [216402] = 8, - ACTIONS(251), 1, + ACTIONS(1599), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1601), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [183790] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10021), 1, - anon_sym_DQUOTE, - ACTIONS(10025), 1, - aux_sym_path_token1, - ACTIONS(10027), 1, - sym_raw_string_begin, - STATE(1453), 1, - sym_val_string, - STATE(5950), 1, + ACTIONS(1653), 1, + anon_sym_RBRACE, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(1665), 1, + sym__entry_separator, + ACTIONS(8921), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8963), 1, + anon_sym_DOT_DOT2, + ACTIONS(8967), 1, + sym_filesize_unit, + ACTIONS(8969), 1, + sym_duration_unit, + STATE(5142), 1, + sym_comment, + STATE(7359), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8965), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [183825] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6983), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7045), 1, + aux_sym_unquoted_token3, + STATE(4252), 1, + sym__immediate_decimal, + STATE(5143), 1, sym_comment, - ACTIONS(10023), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1412), 2, - sym__raw_str, - sym__str_double_quotes, - [216429] = 8, - ACTIONS(251), 1, + STATE(4531), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183860] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9937), 1, - anon_sym_DQUOTE, - ACTIONS(9943), 1, - sym_raw_string_begin, - ACTIONS(10029), 1, - aux_sym_path_token1, - STATE(2017), 1, - sym_val_string, - STATE(5951), 1, + STATE(5144), 1, sym_comment, - ACTIONS(9939), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1418), 2, - sym__raw_str, - sym__str_double_quotes, - [216456] = 8, + ACTIONS(1723), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1725), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [183880] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9889), 1, - aux_sym_path_token1, - ACTIONS(9901), 1, - anon_sym_DQUOTE, - ACTIONS(9907), 1, - sym_raw_string_begin, - STATE(1585), 1, - sym_val_string, - STATE(5952), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token5, + STATE(3553), 1, + sym__immediate_decimal, + STATE(5145), 1, sym_comment, - ACTIONS(9903), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1393), 2, - sym__raw_str, - sym__str_double_quotes, - [216483] = 8, + ACTIONS(6406), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3532), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183910] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10031), 1, - anon_sym_DQUOTE, - ACTIONS(10035), 1, - aux_sym_path_token1, - ACTIONS(10037), 1, - sym_raw_string_begin, - STATE(2900), 1, - sym_val_string, - STATE(5953), 1, + ACTIONS(966), 1, + anon_sym_DASH2, + ACTIONS(8971), 1, + anon_sym_QMARK2, + STATE(5146), 1, sym_comment, - ACTIONS(10033), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2901), 2, - sym__raw_str, - sym__str_double_quotes, - [216510] = 8, + ACTIONS(968), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT2, + [183932] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10039), 1, - anon_sym_DQUOTE, - ACTIONS(10043), 1, - aux_sym_path_token1, - ACTIONS(10045), 1, - sym_raw_string_begin, - STATE(3069), 1, - sym_val_string, - STATE(5954), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token5, + STATE(2086), 1, + sym__immediate_decimal, + STATE(5147), 1, sym_comment, - ACTIONS(10041), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3077), 2, - sym__raw_str, - sym__str_double_quotes, - [216537] = 8, + ACTIONS(6451), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183962] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10047), 1, - anon_sym_DQUOTE, - ACTIONS(10051), 1, - aux_sym_path_token1, - ACTIONS(10053), 1, - sym_raw_string_begin, - STATE(459), 1, - sym_val_string, - STATE(5955), 1, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + STATE(2556), 1, + sym__immediate_decimal, + STATE(5148), 1, sym_comment, - ACTIONS(10049), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(462), 2, - sym__raw_str, - sym__str_double_quotes, - [216564] = 8, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2446), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183992] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10055), 1, - anon_sym_DQUOTE, - ACTIONS(10059), 1, - aux_sym_path_token1, - ACTIONS(10061), 1, - sym_raw_string_begin, - STATE(585), 1, - sym_val_string, - STATE(5956), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + STATE(1896), 1, + sym__immediate_decimal, + STATE(5149), 1, sym_comment, - ACTIONS(10057), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(589), 2, - sym__raw_str, - sym__str_double_quotes, - [216591] = 8, + ACTIONS(4556), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1858), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184022] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DQUOTE, - ACTIONS(3679), 1, - sym_raw_string_begin, - ACTIONS(10063), 1, - aux_sym_path_token1, - STATE(5010), 1, - sym_val_string, - STATE(5957), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + STATE(2109), 1, + sym__immediate_decimal, + STATE(5150), 1, sym_comment, - ACTIONS(3667), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4958), 2, - sym__raw_str, - sym__str_double_quotes, - [216618] = 8, - ACTIONS(251), 1, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184052] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10065), 1, - anon_sym_DQUOTE, - ACTIONS(10069), 1, - aux_sym_path_token1, - ACTIONS(10071), 1, - sym_raw_string_begin, - STATE(4498), 1, - sym_val_string, - STATE(5958), 1, + ACTIONS(8973), 1, + aux_sym__immediate_decimal_token2, + STATE(5151), 1, sym_comment, - ACTIONS(10067), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4518), 2, - sym__raw_str, - sym__str_double_quotes, - [216645] = 8, + ACTIONS(1771), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [184074] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4497), 1, - anon_sym_DQUOTE, - ACTIONS(4507), 1, - sym_raw_string_begin, - ACTIONS(10073), 1, - aux_sym_path_token1, - STATE(3746), 1, - sym_val_string, - STATE(5959), 1, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(8975), 1, + anon_sym_DOLLAR, + ACTIONS(8977), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8979), 1, + aux_sym__immediate_decimal_token5, + STATE(4312), 1, + sym__immediate_decimal, + STATE(5152), 1, sym_comment, - ACTIONS(4499), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3792), 2, - sym__raw_str, - sym__str_double_quotes, - [216672] = 8, + ACTIONS(6993), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4779), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184104] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10075), 1, + ACTIONS(3118), 1, anon_sym_DQUOTE, - ACTIONS(10079), 1, - aux_sym_path_token1, - ACTIONS(10081), 1, + ACTIONS(3124), 1, sym_raw_string_begin, - STATE(2818), 1, - sym_val_string, - STATE(5960), 1, + ACTIONS(8981), 1, + sym_identifier, + STATE(5153), 1, sym_comment, - ACTIONS(10077), 2, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(6509), 1, + sym_val_string, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2820), 2, + STATE(5080), 2, sym__raw_str, sym__str_double_quotes, - [216699] = 8, + [184134] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10083), 1, + ACTIONS(8983), 1, + sym_identifier, + ACTIONS(8986), 1, anon_sym_DQUOTE, - ACTIONS(10087), 1, - aux_sym_path_token1, - ACTIONS(10089), 1, + ACTIONS(8992), 1, sym_raw_string_begin, - STATE(3033), 1, + STATE(7015), 1, sym_val_string, - STATE(5961), 1, - sym_comment, - ACTIONS(10085), 2, + ACTIONS(8989), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3052), 2, + STATE(5080), 2, sym__raw_str, sym__str_double_quotes, - [216726] = 8, + STATE(5154), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [184162] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4569), 1, - anon_sym_DQUOTE, - ACTIONS(4579), 1, - sym_raw_string_begin, - ACTIONS(10091), 1, - aux_sym_path_token1, - STATE(5824), 1, - sym_val_string, - STATE(5962), 1, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(8735), 1, + anon_sym_DASH_DASH, + ACTIONS(8737), 1, + anon_sym_DASH2, + STATE(5155), 1, sym_comment, - ACTIONS(4571), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5815), 2, - sym__raw_str, - sym__str_double_quotes, - [216753] = 8, + STATE(5223), 1, + aux_sym_ctrl_do_repeat1, + STATE(5491), 1, + sym_val_variable, + STATE(6483), 1, + sym__variable_name, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [184194] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10093), 1, - anon_sym_DQUOTE, - ACTIONS(10097), 1, - aux_sym_path_token1, - ACTIONS(10099), 1, - sym_raw_string_begin, - STATE(5678), 1, - sym_val_string, - STATE(5963), 1, + STATE(5156), 1, sym_comment, - ACTIONS(10095), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5686), 2, - sym__raw_str, - sym__str_double_quotes, - [216780] = 8, + ACTIONS(1711), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1709), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184214] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10101), 1, - anon_sym_DQUOTE, - ACTIONS(10105), 1, - aux_sym_path_token1, - ACTIONS(10107), 1, - sym_raw_string_begin, - STATE(154), 1, - sym_val_string, - STATE(5964), 1, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token5, + STATE(3048), 1, + sym__immediate_decimal, + STATE(5157), 1, sym_comment, - ACTIONS(10103), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(156), 2, - sym__raw_str, - sym__str_double_quotes, - [216807] = 8, + ACTIONS(5486), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3149), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184244] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10109), 1, - anon_sym_DQUOTE, - ACTIONS(10113), 1, - aux_sym_path_token1, - ACTIONS(10115), 1, - sym_raw_string_begin, - STATE(523), 1, - sym_val_string, - STATE(5965), 1, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + STATE(2507), 1, + sym__immediate_decimal, + STATE(5158), 1, sym_comment, - ACTIONS(10111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(538), 2, - sym__raw_str, - sym__str_double_quotes, - [216834] = 8, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2506), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184274] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10117), 1, - anon_sym_DQUOTE, - ACTIONS(10121), 1, - aux_sym_path_token1, - ACTIONS(10123), 1, - sym_raw_string_begin, - STATE(428), 1, - sym_val_string, - STATE(5966), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + STATE(2086), 1, + sym__immediate_decimal, + STATE(5159), 1, sym_comment, - ACTIONS(10119), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(432), 2, - sym__raw_str, - sym__str_double_quotes, - [216861] = 8, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2017), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184304] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10125), 1, - anon_sym_DQUOTE, - ACTIONS(10129), 1, - aux_sym_path_token1, - ACTIONS(10131), 1, - sym_raw_string_begin, - STATE(387), 1, - sym_val_string, - STATE(5967), 1, + ACTIONS(8995), 1, + anon_sym_DOT, + ACTIONS(8997), 1, + aux_sym__immediate_decimal_token2, + STATE(5160), 1, sym_comment, - ACTIONS(10127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(384), 2, - sym__raw_str, - sym__str_double_quotes, - [216888] = 7, - ACTIONS(3), 1, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [184328] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(10133), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5968), 1, + STATE(5161), 1, sym_comment, - ACTIONS(9779), 4, + ACTIONS(1601), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1599), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216913] = 7, - ACTIONS(3), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184348] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(10135), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5969), 1, + ACTIONS(948), 1, + anon_sym_DASH2, + ACTIONS(8687), 1, + anon_sym_DOT2, + STATE(5162), 1, sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216938] = 8, + STATE(5163), 1, + aux_sym_cell_path_repeat1, + STATE(5439), 1, + sym_path, + ACTIONS(950), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [184374] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10029), 1, - aux_sym_path_token1, - ACTIONS(10137), 1, - anon_sym_DQUOTE, - ACTIONS(10141), 1, - sym_raw_string_begin, - STATE(2017), 1, - sym_val_string, - STATE(5970), 1, + ACTIONS(941), 1, + anon_sym_DASH2, + ACTIONS(8999), 1, + anon_sym_DOT2, + STATE(5439), 1, + sym_path, + STATE(5163), 2, sym_comment, - ACTIONS(10139), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1977), 2, - sym__raw_str, - sym__str_double_quotes, - [216965] = 4, + aux_sym_cell_path_repeat1, + ACTIONS(943), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [184398] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(958), 1, anon_sym_DASH2, - STATE(5971), 1, + STATE(5164), 1, sym_comment, - ACTIONS(1024), 7, + ACTIONS(960), 8, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT, - [216984] = 5, + anon_sym_QMARK2, + anon_sym_DOT2, + [184418] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10143), 1, - aux_sym__immediate_decimal_token2, - STATE(5972), 1, + ACTIONS(976), 1, + anon_sym_DASH2, + STATE(5165), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1713), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [217005] = 5, + ACTIONS(978), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [184438] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(972), 1, anon_sym_DASH2, - ACTIONS(10145), 1, - anon_sym_EQ2, - STATE(5973), 1, + STATE(5166), 1, sym_comment, - ACTIONS(5112), 6, + ACTIONS(974), 8, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [217026] = 5, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_DOT2, + [184458] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(5974), 1, + ACTIONS(9002), 1, + sym_long_flag_identifier, + ACTIONS(9004), 1, + anon_sym_EQ2, + STATE(5167), 1, sym_comment, - ACTIONS(2254), 3, - anon_sym_DASH_DASH, + ACTIONS(4852), 2, anon_sym_DASH2, anon_sym_as, - ACTIONS(2258), 4, + ACTIONS(4850), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [217047] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(10147), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5975), 1, - sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217072] = 5, + [184482] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(962), 1, anon_sym_DASH2, - ACTIONS(10149), 1, - anon_sym_EQ2, - STATE(5976), 1, + STATE(5168), 1, sym_comment, - ACTIONS(5130), 6, + ACTIONS(964), 8, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [217093] = 5, + anon_sym_QMARK2, + anon_sym_DOT2, + [184502] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(5977), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, sym_comment, - ACTIONS(2272), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2274), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5178), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + ACTIONS(948), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [217114] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + ACTIONS(950), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [184528] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(5978), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2507), 1, + sym__immediate_decimal, + STATE(5170), 1, sym_comment, - ACTIONS(2234), 3, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2506), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184558] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(8735), 1, anon_sym_DASH_DASH, + ACTIONS(8737), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2238), 4, + ACTIONS(9006), 1, + sym_identifier, + STATE(5171), 1, + sym_comment, + STATE(5190), 1, + aux_sym_ctrl_do_repeat1, + STATE(6671), 1, + sym_val_variable, + STATE(7054), 1, + sym__variable_name, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [184590] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2153), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5172), 1, + sym_comment, + ACTIONS(2035), 5, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - [217135] = 7, + [184616] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(8745), 1, + aux_sym__immediate_decimal_token2, + STATE(5173), 1, + sym_comment, + ACTIONS(1735), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(10151), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5979), 1, + [184638] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5174), 1, sym_comment, - ACTIONS(9785), 4, + ACTIONS(1625), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1623), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217160] = 7, - ACTIONS(3), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184658] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, - sym_raw_string_begin, - ACTIONS(10153), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5980), 1, + STATE(5175), 1, sym_comment, - ACTIONS(9695), 4, + ACTIONS(1725), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1723), 6, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217185] = 4, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184678] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1018), 1, - anon_sym_DASH2, - STATE(5981), 1, + ACTIONS(4141), 1, + anon_sym_LPAREN2, + ACTIONS(4147), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4149), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8644), 1, + anon_sym_DOLLAR, + STATE(1647), 1, + sym__immediate_decimal, + STATE(5176), 1, sym_comment, - ACTIONS(1020), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [217204] = 4, + ACTIONS(4145), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1847), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184708] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1014), 1, - anon_sym_DASH2, - STATE(5982), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8626), 1, + aux_sym__immediate_decimal_token5, + STATE(5177), 1, sym_comment, - ACTIONS(1016), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT, - [217223] = 7, + STATE(7341), 1, + sym__immediate_decimal, + ACTIONS(8622), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184738] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9010), 1, + anon_sym_DOT2, + STATE(5562), 1, + sym_path, + STATE(5178), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(943), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9783), 1, - sym_raw_string_begin, - ACTIONS(10155), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5983), 1, + [184762] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8355), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8357), 1, + aux_sym__immediate_decimal_token5, + STATE(2032), 1, + sym__immediate_decimal, + STATE(5179), 1, sym_comment, - ACTIONS(9779), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217248] = 7, + ACTIONS(8709), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184792] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, - sym_raw_string_begin, - ACTIONS(10157), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5984), 1, + ACTIONS(9013), 1, + anon_sym_DOT, + ACTIONS(9015), 1, + aux_sym__immediate_decimal_token2, + STATE(5180), 1, sym_comment, - ACTIONS(9703), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217273] = 9, - ACTIONS(3), 1, + ACTIONS(1735), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [184816] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, - sym__newline, - ACTIONS(1699), 1, - sym__space, - ACTIONS(4720), 1, + ACTIONS(9017), 1, + anon_sym_DOT, + ACTIONS(9019), 1, + aux_sym__immediate_decimal_token2, + STATE(5181), 1, + sym_comment, + ACTIONS(1599), 2, anon_sym_DOT_DOT2, - ACTIONS(7487), 1, aux_sym_unquoted_token2, - ACTIONS(10159), 1, + ACTIONS(1601), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(10161), 1, sym_duration_unit, - STATE(5985), 1, + [184840] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8961), 1, + aux_sym__immediate_decimal_token2, + STATE(5182), 1, sym_comment, - ACTIONS(4722), 2, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [217302] = 7, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [184862] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9743), 1, - sym_raw_string_begin, - ACTIONS(10163), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5986), 1, + ACTIONS(4141), 1, + anon_sym_LPAREN2, + ACTIONS(4427), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4429), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8644), 1, + anon_sym_DOLLAR, + STATE(1926), 1, + sym__immediate_decimal, + STATE(5183), 1, sym_comment, - ACTIONS(9739), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217327] = 7, - ACTIONS(3), 1, + ACTIONS(4425), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1895), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184892] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - ACTIONS(10165), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5987), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(9021), 1, + anon_sym_DOLLAR, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9025), 1, + aux_sym__immediate_decimal_token5, + STATE(5184), 1, sym_comment, - ACTIONS(9785), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217352] = 5, + STATE(7339), 1, + sym__immediate_decimal, + ACTIONS(8361), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184922] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(9021), 1, + anon_sym_DOLLAR, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9025), 1, + aux_sym__immediate_decimal_token5, + STATE(5185), 1, + sym_comment, + STATE(5838), 1, + sym__immediate_decimal, + ACTIONS(8165), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5713), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184952] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(9021), 1, + anon_sym_DOLLAR, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9025), 1, + aux_sym__immediate_decimal_token5, + STATE(5186), 1, + sym_comment, + STATE(7251), 1, + sym__immediate_decimal, + ACTIONS(8361), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6974), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184982] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4676), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4678), 1, + aux_sym__immediate_decimal_token5, + STATE(2279), 1, + sym__immediate_decimal, + STATE(5187), 1, + sym_comment, + ACTIONS(4674), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2446), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185012] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9691), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8508), 1, + aux_sym__immediate_decimal_token5, + STATE(5188), 1, + sym_comment, + STATE(7119), 1, + sym__immediate_decimal, + ACTIONS(8504), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185042] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(8975), 1, + anon_sym_DOLLAR, + ACTIONS(9027), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9029), 1, + aux_sym__immediate_decimal_token5, + STATE(4778), 1, + sym__immediate_decimal, + STATE(5189), 1, + sym_comment, + ACTIONS(7031), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4777), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185072] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(8735), 1, + anon_sym_DASH_DASH, + ACTIONS(8737), 1, + anon_sym_DASH2, + ACTIONS(9006), 1, + sym_identifier, + STATE(5190), 1, + sym_comment, + STATE(5556), 1, + aux_sym_ctrl_do_repeat1, + STATE(6670), 1, + sym__variable_name, + STATE(6671), 1, + sym_val_variable, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [185104] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8766), 1, aux_sym__immediate_decimal_token2, - STATE(5988), 1, + STATE(5191), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(1599), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1671), 5, - anon_sym_LBRACE, + ACTIONS(1601), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [217373] = 4, - ACTIONS(3), 1, + [185126] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5989), 1, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(9031), 1, + anon_sym_DOLLAR, + ACTIONS(9033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9035), 1, + aux_sym__immediate_decimal_token5, + STATE(4296), 1, + sym__immediate_decimal, + STATE(5192), 1, sym_comment, - ACTIONS(1779), 4, - anon_sym_RBRACK, + ACTIONS(6977), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4435), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185156] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(9031), 1, + anon_sym_DOLLAR, + ACTIONS(9037), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9039), 1, + aux_sym__immediate_decimal_token5, + STATE(4410), 1, + sym__immediate_decimal, + STATE(5193), 1, + sym_comment, + ACTIONS(7001), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4408), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185186] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9041), 1, + anon_sym_DASH_DASH, + ACTIONS(9043), 1, + anon_sym_DASH2, + ACTIONS(9045), 1, + anon_sym_as, + STATE(5194), 1, + sym_comment, + STATE(5252), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8793), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185214] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2128), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5195), 1, + sym_comment, + ACTIONS(1947), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 4, + [185240] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217392] = 7, - ACTIONS(3), 1, + ACTIONS(4626), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4628), 1, + aux_sym__immediate_decimal_token5, + STATE(2133), 1, + sym__immediate_decimal, + STATE(5196), 1, + sym_comment, + ACTIONS(4624), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185270] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(10167), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5990), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(7915), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7917), 1, + aux_sym__immediate_decimal_token5, + STATE(2032), 1, + sym__immediate_decimal, + STATE(5197), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217417] = 4, + ACTIONS(8530), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185300] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5991), 1, + ACTIONS(9047), 1, + aux_sym__immediate_decimal_token2, + STATE(5198), 1, sym_comment, - ACTIONS(1771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1709), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 4, + aux_sym_unquoted_token2, + ACTIONS(1711), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185322] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6372), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6374), 1, + aux_sym__immediate_decimal_token5, + STATE(3544), 1, + sym__immediate_decimal, + STATE(5199), 1, + sym_comment, + ACTIONS(6370), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185352] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3974), 1, + anon_sym_LPAREN2, + ACTIONS(4046), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4048), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8333), 1, + anon_sym_DOLLAR, + STATE(1773), 1, + sym__immediate_decimal, + STATE(5200), 1, + sym_comment, + ACTIONS(4044), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1816), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185382] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + STATE(2146), 1, + sym__immediate_decimal, + STATE(5201), 1, + sym_comment, + ACTIONS(4618), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185412] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217436] = 4, - ACTIONS(3), 1, + ACTIONS(8275), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8277), 1, + aux_sym__immediate_decimal_token5, + STATE(5202), 1, + sym_comment, + STATE(6169), 1, + sym__immediate_decimal, + ACTIONS(8273), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185442] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5992), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(9021), 1, + anon_sym_DOLLAR, + ACTIONS(9049), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9051), 1, + aux_sym__immediate_decimal_token5, + STATE(5203), 1, sym_comment, - ACTIONS(1669), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [217455] = 4, - ACTIONS(3), 1, + STATE(6311), 1, + sym__immediate_decimal, + ACTIONS(8365), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185472] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5993), 1, + ACTIONS(5480), 1, + anon_sym_DOLLAR, + ACTIONS(5482), 1, + anon_sym_LPAREN2, + ACTIONS(5565), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(3148), 1, + sym__immediate_decimal, + STATE(5204), 1, sym_comment, - ACTIONS(1799), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 4, + ACTIONS(5563), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185502] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4612), 1, + anon_sym_DOLLAR, + ACTIONS(4614), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217474] = 4, + ACTIONS(4620), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4622), 1, + aux_sym__immediate_decimal_token5, + STATE(2476), 1, + sym__immediate_decimal, + STATE(5205), 1, + sym_comment, + ACTIONS(4722), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2473), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185532] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5994), 1, + ACTIONS(3974), 1, + anon_sym_LPAREN2, + ACTIONS(3980), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(3982), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8333), 1, + anon_sym_DOLLAR, + STATE(1568), 1, + sym__immediate_decimal, + STATE(5206), 1, sym_comment, - ACTIONS(1671), 3, + ACTIONS(3978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1763), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185562] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7064), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1669), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [217493] = 4, - ACTIONS(3), 1, + ACTIONS(7066), 1, + anon_sym_LPAREN2, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token5, + STATE(4843), 1, + sym__immediate_decimal, + STATE(5207), 1, + sym_comment, + ACTIONS(7158), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185592] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5995), 1, + ACTIONS(9053), 1, + aux_sym__immediate_decimal_token2, + STATE(5208), 1, sym_comment, - ACTIONS(1661), 3, - sym__newline, + ACTIONS(1709), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1663), 5, - sym__space, + ACTIONS(1711), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [217512] = 9, + [185614] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9548), 1, + ACTIONS(4612), 1, anon_sym_DOLLAR, - ACTIONS(9550), 1, - anon_sym_DASH_DASH, - ACTIONS(9552), 1, - anon_sym_DASH2, - STATE(5695), 1, - sym_val_variable, - STATE(5996), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(5966), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5968), 1, + aux_sym__immediate_decimal_token5, + STATE(3255), 1, + sym__immediate_decimal, + STATE(5209), 1, sym_comment, - STATE(6640), 1, - sym__variable_name, - STATE(7304), 2, - sym_short_flag, - sym_long_flag, - [217541] = 5, + ACTIONS(5964), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2446), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185644] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1008), 1, - anon_sym_DASH2, - ACTIONS(10169), 1, - anon_sym_QMARK2, - STATE(5997), 1, - sym_comment, - ACTIONS(1010), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [217562] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9749), 1, - sym_raw_string_begin, - ACTIONS(10171), 1, - anon_sym_GT2, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(5998), 1, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(9055), 1, + anon_sym_DOLLAR, + ACTIONS(9059), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9061), 1, + aux_sym__immediate_decimal_token5, + STATE(3099), 1, + sym__immediate_decimal, + STATE(5210), 1, sym_comment, - ACTIONS(9745), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217587] = 7, + ACTIONS(9057), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3076), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185674] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1733), 1, - aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(5999), 1, - sym_comment, - STATE(7778), 1, - sym_cell_path, - ACTIONS(5994), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217611] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10173), 1, - anon_sym_DOT, - STATE(6000), 1, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(6923), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6925), 1, + aux_sym__immediate_decimal_token5, + STATE(4097), 1, + sym__immediate_decimal, + STATE(5211), 1, sym_comment, - STATE(6283), 1, - aux_sym_cell_path_repeat1, - STATE(7065), 1, - sym_path, - STATE(7479), 1, - sym_cell_path, - ACTIONS(1957), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [217635] = 8, - ACTIONS(3), 1, + ACTIONS(6921), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2446), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185704] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2035), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6001), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token5, + STATE(2032), 1, + sym__immediate_decimal, + STATE(5212), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7749), 1, - sym_cell_path, - ACTIONS(2033), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [217661] = 4, - ACTIONS(3), 1, + ACTIONS(6451), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185734] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6002), 1, - sym_comment, - ACTIONS(1779), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 4, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217679] = 8, + ACTIONS(5897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5899), 1, + aux_sym__immediate_decimal_token5, + STATE(3234), 1, + sym__immediate_decimal, + STATE(5213), 1, + sym_comment, + ACTIONS(5895), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185764] = 9, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1697), 1, + anon_sym_DOLLAR, ACTIONS(1699), 1, - anon_sym_in2, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(10177), 1, - sym_filesize_unit, - ACTIONS(10179), 1, - sym_duration_unit, - STATE(6003), 1, + anon_sym_LPAREN2, + ACTIONS(1757), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1759), 1, + aux_sym__immediate_decimal_token5, + STATE(760), 1, + sym__immediate_decimal, + STATE(5214), 1, sym_comment, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217705] = 6, + ACTIONS(1755), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(756), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185794] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(4773), 1, aux_sym_unquoted_token2, - ACTIONS(10181), 1, + ACTIONS(9063), 1, anon_sym_DOT_DOT2, - STATE(6004), 1, + ACTIONS(9067), 1, + sym_filesize_unit, + ACTIONS(9069), 1, + sym_duration_unit, + STATE(5215), 1, sym_comment, - ACTIONS(10183), 2, + ACTIONS(9065), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1848), 3, + ACTIONS(1665), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [217727] = 4, + [185822] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6005), 1, + STATE(5216), 1, sym_comment, - ACTIONS(1771), 3, + ACTIONS(1709), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 4, + ACTIONS(1711), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [217745] = 6, + [185842] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(10185), 1, - anon_sym_DOT_DOT2, - STATE(6006), 1, + ACTIONS(1609), 1, + anon_sym_LPAREN2, + ACTIONS(9071), 1, + anon_sym_DOLLAR, + ACTIONS(9075), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9077), 1, + aux_sym__immediate_decimal_token5, + STATE(653), 1, + sym__immediate_decimal, + STATE(5217), 1, sym_comment, - ACTIONS(10187), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1838), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217767] = 4, - ACTIONS(3), 1, + ACTIONS(9073), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(652), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185872] = 9, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6007), 1, - sym_comment, - ACTIONS(1799), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 4, + ACTIONS(7064), 1, + anon_sym_DOLLAR, + ACTIONS(7066), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217785] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6008), 1, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token5, + STATE(4406), 1, + sym__immediate_decimal, + STATE(5218), 1, sym_comment, - ACTIONS(1818), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1820), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [217803] = 8, - ACTIONS(3), 1, + ACTIONS(7082), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4844), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185902] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6009), 1, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(9055), 1, + anon_sym_DOLLAR, + ACTIONS(9079), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9081), 1, + aux_sym__immediate_decimal_token5, + STATE(2905), 1, + sym__immediate_decimal, + STATE(5219), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7560), 1, - sym_cell_path, - ACTIONS(1949), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [217829] = 5, + ACTIONS(8701), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3107), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185932] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(8941), 1, - aux_sym_unquoted_token2, - STATE(6010), 1, + ACTIONS(1697), 1, + anon_sym_DOLLAR, + ACTIONS(1699), 1, + anon_sym_LPAREN2, + ACTIONS(1705), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1707), 1, + aux_sym__immediate_decimal_token5, + STATE(557), 1, + sym__immediate_decimal, + STATE(5220), 1, sym_comment, - ACTIONS(1699), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [217849] = 6, + ACTIONS(1703), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(688), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185962] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10191), 1, - aux_sym__immediate_decimal_token2, - STATE(6011), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6431), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6433), 1, + aux_sym__immediate_decimal_token5, + STATE(3621), 1, + sym__immediate_decimal, + STATE(5221), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217871] = 7, - ACTIONS(3), 1, + ACTIONS(6429), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185992] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10173), 1, - anon_sym_DOT, - STATE(6012), 1, + ACTIONS(1609), 1, + anon_sym_LPAREN2, + ACTIONS(9071), 1, + anon_sym_DOLLAR, + ACTIONS(9083), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9085), 1, + aux_sym__immediate_decimal_token5, + STATE(520), 1, + sym__immediate_decimal, + STATE(5222), 1, sym_comment, - STATE(6283), 1, - aux_sym_cell_path_repeat1, - STATE(7065), 1, - sym_path, - STATE(7842), 1, - sym_cell_path, - ACTIONS(1953), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [217895] = 6, + ACTIONS(8803), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(654), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186022] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10193), 1, + ACTIONS(6435), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(8735), 1, anon_sym_DASH_DASH, - ACTIONS(10196), 1, + ACTIONS(8737), 1, anon_sym_DASH2, - ACTIONS(9292), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(6013), 2, + STATE(5223), 1, sym_comment, + STATE(5491), 1, + sym_val_variable, + STATE(5556), 1, aux_sym_ctrl_do_repeat1, - STATE(6545), 2, + STATE(6165), 1, + sym__variable_name, + STATE(5904), 2, sym_short_flag, sym_long_flag, - [217917] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(6014), 1, - sym_comment, - ACTIONS(1034), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1036), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217937] = 4, + [186054] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(6015), 1, - sym_comment, - ACTIONS(1767), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [217955] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_RBRACK, - ACTIONS(1842), 1, + ACTIONS(7975), 1, anon_sym_LPAREN2, - ACTIONS(1848), 1, - sym__entry_separator, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(10199), 1, - anon_sym_DOT_DOT2, - STATE(6016), 1, - sym_comment, - ACTIONS(10201), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [217981] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6017), 1, + ACTIONS(9021), 1, + anon_sym_DOLLAR, + ACTIONS(9087), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9089), 1, + aux_sym__immediate_decimal_token5, + STATE(5224), 1, sym_comment, - ACTIONS(1024), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1022), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [217999] = 8, - ACTIONS(3), 1, + STATE(6291), 1, + sym__immediate_decimal, + ACTIONS(8476), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186084] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1830), 1, - anon_sym_RBRACE, - ACTIONS(1832), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(10203), 1, - anon_sym_DOT_DOT2, - STATE(6018), 1, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + STATE(2032), 1, + sym__immediate_decimal, + STATE(5225), 1, sym_comment, - ACTIONS(10205), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218025] = 5, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186114] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(9041), 1, + anon_sym_DASH_DASH, + ACTIONS(9043), 1, anon_sym_DASH2, - ACTIONS(10207), 1, - anon_sym_EQ2, - STATE(6019), 1, + ACTIONS(9091), 1, + anon_sym_as, + STATE(5226), 1, sym_comment, - ACTIONS(5112), 5, + STATE(5229), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8933), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [218045] = 8, + [186142] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(8871), 1, + ACTIONS(3610), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8873), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token5, - ACTIONS(10209), 1, - anon_sym_DOT, - STATE(6020), 1, - sym_comment, - STATE(6735), 1, + STATE(2109), 1, sym__immediate_decimal, - ACTIONS(8869), 2, + STATE(5227), 1, + sym_comment, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [218071] = 8, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186172] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2059), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6021), 1, + ACTIONS(9093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9095), 1, + aux_sym__immediate_decimal_token2, + STATE(5228), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7751), 1, - sym_cell_path, - ACTIONS(2057), 2, - anon_sym_RBRACK, + ACTIONS(1727), 3, anon_sym_RBRACE, - [218097] = 4, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [186196] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(9097), 1, + anon_sym_DASH_DASH, + ACTIONS(9100), 1, anon_sym_DASH2, - STATE(6022), 1, + STATE(5229), 2, sym_comment, - ACTIONS(1020), 6, + aux_sym_ctrl_do_repeat1, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8905), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, anon_sym_as, - anon_sym_DOT, - [218115] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1830), 1, - anon_sym_RBRACK, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(10211), 1, - anon_sym_DOT_DOT2, - STATE(6023), 1, - sym_comment, - ACTIONS(10213), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218141] = 4, + [186220] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(952), 1, anon_sym_DASH2, - STATE(6024), 1, + ACTIONS(9103), 1, + anon_sym_QMARK2, + STATE(5230), 1, sym_comment, - ACTIONS(1016), 6, - ts_builtin_sym_end, + ACTIONS(954), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [218159] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2051), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6025), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7340), 1, - sym_cell_path, - ACTIONS(2049), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218185] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2055), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6026), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7311), 1, - sym_cell_path, - ACTIONS(2053), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - [218211] = 4, + anon_sym_as, + anon_sym_DOT2, + [186242] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(6027), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [218229] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9783), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(6028), 1, - sym_comment, - ACTIONS(9779), 4, + ACTIONS(9105), 1, sym_identifier, - anon_sym_DQUOTE, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(5231), 1, + sym_comment, + STATE(6174), 1, + sym_val_string, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - [218251] = 6, - ACTIONS(3), 1, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [186272] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9701), 1, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(6029), 1, - sym_comment, - ACTIONS(9695), 4, + ACTIONS(9107), 1, sym_identifier, - anon_sym_DQUOTE, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(5232), 1, + sym_comment, + STATE(6517), 1, + sym_val_string, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - [218273] = 6, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [186302] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10215), 1, - anon_sym_DASH_DASH, - ACTIONS(10218), 1, + ACTIONS(1277), 1, anon_sym_DASH2, - ACTIONS(9292), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(6030), 2, + STATE(5233), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [218295] = 4, + ACTIONS(1275), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186322] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(6031), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [218313] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9789), 1, - sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(6032), 1, - sym_comment, - ACTIONS(9785), 4, - sym_identifier, + ACTIONS(3118), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [218335] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(9707), 1, + ACTIONS(3124), 1, sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(6033), 1, - sym_comment, - ACTIONS(9703), 4, + ACTIONS(9109), 1, sym_identifier, - anon_sym_DQUOTE, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(5234), 1, + sym_comment, + STATE(6540), 1, + sym_val_string, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - [218357] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_RBRACE, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1848), 1, - sym__entry_separator, - ACTIONS(1850), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(10221), 1, - anon_sym_DOT_DOT2, - STATE(6034), 1, - sym_comment, - ACTIONS(10223), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218383] = 4, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [186352] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6035), 1, + ACTIONS(9111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9113), 1, + aux_sym__immediate_decimal_token2, + STATE(5235), 1, sym_comment, - ACTIONS(1711), 2, + ACTIONS(1623), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1713), 5, - anon_sym_in2, + ACTIONS(1625), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [218401] = 8, - ACTIONS(3), 1, + [186376] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(971), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6036), 1, + ACTIONS(1949), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(5236), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(6114), 1, + STATE(5574), 1, sym_cell_path, - STATE(7284), 1, - sym_path, - ACTIONS(969), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218427] = 4, + ACTIONS(1951), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186404] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6037), 1, + ACTIONS(2033), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4571), 1, + sym_cell_path, + STATE(5237), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1769), 5, - anon_sym_in2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [218445] = 5, - ACTIONS(3), 1, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2035), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186432] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10225), 1, - sym__newline, - ACTIONS(10228), 1, - sym__space, - STATE(6038), 2, + ACTIONS(1957), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(5238), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3579), 4, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + STATE(5592), 1, + sym_cell_path, + ACTIONS(1959), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, anon_sym_LBRACE, - [218465] = 8, - ACTIONS(3), 1, + [186460] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6039), 1, + ACTIONS(1945), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4773), 1, + sym_cell_path, + STATE(5239), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(1947), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186488] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1965), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7447), 1, + STATE(4647), 1, sym_cell_path, - ACTIONS(1941), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218491] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6040), 1, + STATE(5240), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(1967), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186516] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1969), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7450), 1, + STATE(4555), 1, sym_cell_path, - ACTIONS(1871), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218517] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6041), 1, + STATE(5241), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(1971), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186544] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1973), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7459), 1, + STATE(4646), 1, sym_cell_path, - ACTIONS(1875), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218543] = 8, - ACTIONS(3), 1, + STATE(5242), 1, + sym_comment, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1975), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186572] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1881), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6042), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(4558), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4560), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + STATE(2032), 1, + sym__immediate_decimal, + STATE(5243), 1, sym_comment, - STATE(6112), 1, + ACTIONS(4606), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186602] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4715), 1, + sym_cell_path, + STATE(5244), 1, + sym_comment, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(1979), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186630] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1981), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7470), 1, + STATE(4661), 1, sym_cell_path, - ACTIONS(1879), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218569] = 4, - ACTIONS(3), 1, + STATE(5245), 1, + sym_comment, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1983), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186658] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6043), 1, + ACTIONS(1985), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4563), 1, + sym_cell_path, + STATE(5246), 1, sym_comment, - ACTIONS(1020), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1018), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [218587] = 4, - ACTIONS(3), 1, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1987), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186686] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6044), 1, + ACTIONS(1829), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4588), 1, + sym_cell_path, + STATE(5247), 1, sym_comment, - ACTIONS(1016), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1014), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [218605] = 4, - ACTIONS(3), 1, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1831), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186714] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6045), 1, + ACTIONS(1989), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4618), 1, + sym_cell_path, + STATE(5248), 1, sym_comment, - ACTIONS(2502), 2, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1991), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186742] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2500), 5, + ACTIONS(9117), 1, sym_identifier, - anon_sym_GT2, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(5249), 1, + sym_comment, + STATE(6134), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [186772] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(9119), 1, + sym_identifier, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(5250), 1, + sym_comment, + STATE(6150), 1, + sym_val_string, + ACTIONS(3120), 2, sym__str_single_quotes, sym__str_back_ticks, - [218623] = 8, - ACTIONS(3), 1, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [186802] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6046), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(1993), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7702), 1, + STATE(4619), 1, sym_cell_path, - ACTIONS(1883), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218649] = 4, + STATE(5251), 1, + sym_comment, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1995), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186830] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10233), 1, + ACTIONS(9041), 1, + anon_sym_DASH_DASH, + ACTIONS(9043), 1, anon_sym_DASH2, - STATE(6047), 1, + ACTIONS(9121), 1, + anon_sym_as, + STATE(5229), 1, + aux_sym_ctrl_do_repeat1, + STATE(5252), 1, sym_comment, - ACTIONS(10231), 6, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8917), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [186858] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1997), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4637), 1, + sym_cell_path, + STATE(5253), 1, + sym_comment, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1999), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_LBRACE, + [186886] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9041), 1, + anon_sym_DASH_DASH, + ACTIONS(9043), 1, + anon_sym_DASH2, + ACTIONS(9123), 1, anon_sym_as, - [218667] = 4, + STATE(5226), 1, + aux_sym_ctrl_do_repeat1, + STATE(5254), 1, + sym_comment, + STATE(5696), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8923), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [186914] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6048), 1, + STATE(5255), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(1599), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 5, + ACTIONS(1601), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [218685] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [186934] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6049), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(2001), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7709), 1, + STATE(4669), 1, sym_cell_path, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218711] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6050), 1, + STATE(5256), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7711), 1, - sym_cell_path, - ACTIONS(1895), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218737] = 8, - ACTIONS(3), 1, + ACTIONS(2003), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186962] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1905), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6051), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(2005), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7712), 1, + STATE(4674), 1, sym_cell_path, - ACTIONS(1903), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218763] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1911), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6052), 1, + STATE(5257), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(2007), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186990] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2009), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7718), 1, + STATE(4581), 1, sym_cell_path, - ACTIONS(1909), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218789] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6053), 1, + STATE(5258), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7422), 1, - sym_cell_path, - ACTIONS(1945), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218815] = 4, + ACTIONS(2011), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187018] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6054), 1, + STATE(5259), 1, sym_comment, - ACTIONS(1771), 2, + ACTIONS(1623), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1773), 5, + ACTIONS(1625), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [218833] = 4, + sym_filesize_unit, + sym_duration_unit, + [187038] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1022), 1, - anon_sym_DASH2, - STATE(6055), 1, - sym_comment, - ACTIONS(1024), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1665), 1, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT, - [218851] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6056), 1, - sym_comment, - ACTIONS(1711), 2, + ACTIONS(4540), 1, anon_sym_DOT_DOT2, + ACTIONS(8731), 1, aux_sym_unquoted_token2, - ACTIONS(1713), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9125), 1, sym_filesize_unit, + ACTIONS(9127), 1, sym_duration_unit, - [218869] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6057), 1, + STATE(5260), 1, sym_comment, - ACTIONS(2244), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(2242), 4, - anon_sym_DASH_DASH, + ACTIONS(1653), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - [218887] = 8, - ACTIONS(3), 1, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187068] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1865), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6058), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(2013), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7788), 1, + STATE(4623), 1, sym_cell_path, - ACTIONS(1861), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218913] = 5, + STATE(5261), 1, + sym_comment, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2015), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187096] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9985), 1, - aux_sym__immediate_decimal_token2, - STATE(6059), 1, + STATE(5262), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(1709), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 4, + ACTIONS(1711), 7, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [218933] = 8, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [187116] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8583), 1, - sym__newline, - ACTIONS(8585), 1, - sym__space, - ACTIONS(8587), 1, + ACTIONS(9129), 1, + anon_sym_EQ2, + ACTIONS(9131), 1, + sym_short_flag_identifier, + STATE(5263), 1, + sym_comment, + ACTIONS(4900), 3, anon_sym_DASH_DASH, - ACTIONS(8589), 1, anon_sym_DASH2, - STATE(6038), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6060), 1, - sym_comment, - STATE(8157), 2, - sym_short_flag, - sym_long_flag, - [218959] = 5, + anon_sym_as, + ACTIONS(4898), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187140] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10235), 1, - aux_sym__immediate_decimal_token2, - STATE(6061), 1, + ACTIONS(2017), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4682), 1, + sym_cell_path, + STATE(5264), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218979] = 4, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2019), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187168] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6062), 1, + STATE(5265), 1, sym_comment, - ACTIONS(1799), 2, + ACTIONS(1723), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1801), 5, + ACTIONS(1725), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [218997] = 8, + sym_filesize_unit, + sym_duration_unit, + [187188] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(969), 1, + ACTIONS(2021), 1, anon_sym_DASH2, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(4230), 1, + STATE(4698), 1, sym_cell_path, - STATE(6063), 1, + STATE(5266), 1, sym_comment, - ACTIONS(971), 2, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2023), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in2, - [219023] = 9, + anon_sym_LBRACE, + [187216] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(10237), 1, - anon_sym_alias, - ACTIONS(10239), 1, - anon_sym_const, - ACTIONS(10241), 1, - anon_sym_def, - ACTIONS(10243), 1, - anon_sym_extern, - ACTIONS(10245), 1, - anon_sym_module, - ACTIONS(10247), 1, - anon_sym_use, - STATE(6064), 1, - sym_comment, - [219051] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1919), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6065), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(2025), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7764), 1, + STATE(4731), 1, sym_cell_path, - ACTIONS(1917), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219077] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6066), 1, + STATE(5267), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7769), 1, - sym_cell_path, - ACTIONS(1925), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219103] = 8, - ACTIONS(3), 1, + ACTIONS(2027), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187244] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1931), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6067), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, + ACTIONS(2029), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, sym_path, - STATE(7770), 1, + STATE(4740), 1, sym_cell_path, - ACTIONS(1929), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219129] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6068), 1, + STATE(5268), 1, sym_comment, - STATE(6112), 1, + STATE(5420), 1, aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7772), 1, - sym_cell_path, - ACTIONS(1933), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219155] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(6069), 1, - sym_comment, - ACTIONS(2254), 3, + ACTIONS(2031), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2258), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219175] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + [187272] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6070), 1, + STATE(5269), 1, sym_comment, - ACTIONS(1818), 2, + ACTIONS(1599), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1820), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1601), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219193] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1955), 1, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6071), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7318), 1, - sym_cell_path, - ACTIONS(1953), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219219] = 5, + [187292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(6072), 1, - sym_comment, - ACTIONS(2272), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2274), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219239] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10249), 1, - anon_sym_DOT, - ACTIONS(10251), 1, - aux_sym__immediate_decimal_token2, - STATE(6073), 1, + STATE(5270), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(1623), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 3, - anon_sym_LBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1625), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [219261] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(6074), 1, - sym_comment, - ACTIONS(2234), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2238), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219281] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1939), 1, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6075), 1, - sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7828), 1, - sym_cell_path, - ACTIONS(1937), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219307] = 8, + [187312] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(10253), 1, - anon_sym_DOT_DOT2, - ACTIONS(10257), 1, - sym_filesize_unit, - ACTIONS(10259), 1, - sym_duration_unit, - STATE(6076), 1, + ACTIONS(7975), 1, + anon_sym_LPAREN2, + ACTIONS(9021), 1, + anon_sym_DOLLAR, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9025), 1, + aux_sym__immediate_decimal_token5, + STATE(5271), 1, sym_comment, - ACTIONS(10255), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219333] = 7, + STATE(6703), 1, + sym__immediate_decimal, + ACTIONS(8361), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(7197), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187342] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_DOT, - STATE(1733), 1, - aux_sym_cell_path_repeat1, - STATE(1898), 1, - sym_path, - STATE(6077), 1, + ACTIONS(9133), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9135), 1, + aux_sym__immediate_decimal_token2, + STATE(5272), 1, sym_comment, - STATE(7538), 1, - sym_cell_path, - ACTIONS(6156), 3, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [219357] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187366] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(10237), 1, - anon_sym_alias, - ACTIONS(10239), 1, - anon_sym_const, - ACTIONS(10241), 1, - anon_sym_def, - ACTIONS(10243), 1, - anon_sym_extern, - ACTIONS(10245), 1, - anon_sym_module, - ACTIONS(10247), 1, - anon_sym_use, - STATE(6078), 1, + ACTIONS(4552), 1, + anon_sym_LPAREN2, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(6909), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token5, + STATE(3963), 1, + sym__immediate_decimal, + STATE(5273), 1, + sym_comment, + ACTIONS(6907), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187396] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3124), 1, + sym_raw_string_begin, + ACTIONS(9137), 1, + aux_sym_path_token1, + STATE(5274), 1, sym_comment, - [219385] = 6, + STATE(5332), 1, + sym_val_string, + ACTIONS(3120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5080), 2, + sym__raw_str, + sym__str_double_quotes, + [187423] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9141), 1, + anon_sym_GT2, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(9743), 1, + ACTIONS(9145), 1, sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(6079), 1, + STATE(5275), 1, sym_comment, - ACTIONS(9739), 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [219407] = 6, + [187448] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(9749), 1, + ACTIONS(9149), 1, + anon_sym_GT2, + ACTIONS(9151), 1, sym_raw_string_begin, - STATE(5839), 1, - aux_sym__multiple_types_repeat1, - STATE(6080), 1, + STATE(5276), 1, sym_comment, - ACTIONS(9745), 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [219429] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6081), 1, - sym_comment, - ACTIONS(1661), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1663), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [219447] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(4720), 1, - anon_sym_DOT_DOT2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - ACTIONS(10257), 1, - sym_filesize_unit, - ACTIONS(10259), 1, - sym_duration_unit, - STATE(6082), 1, - sym_comment, - ACTIONS(4722), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219473] = 8, + [187473] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10261), 1, - anon_sym_DOT_DOT2, - ACTIONS(10265), 1, - sym_filesize_unit, - ACTIONS(10267), 1, - sym_duration_unit, - STATE(6083), 1, - sym_comment, - ACTIONS(10263), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [219499] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10269), 1, - sym__newline, - STATE(6084), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1310), 5, + ACTIONS(9151), 1, sym_raw_string_begin, + ACTIONS(9153), 1, + anon_sym_GT2, + STATE(5277), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [219517] = 4, + [187498] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6085), 1, + ACTIONS(2315), 1, + anon_sym_DASH2, + ACTIONS(9155), 1, + anon_sym_LBRACK2, + STATE(5278), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1671), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [219535] = 8, + ACTIONS(2319), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [187519] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6086), 1, + ACTIONS(9159), 1, + anon_sym_GT2, + ACTIONS(9161), 1, + sym_raw_string_begin, + STATE(5279), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7530), 1, - sym_cell_path, - ACTIONS(1957), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219561] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187544] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2043), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6087), 1, + ACTIONS(9165), 1, + anon_sym_GT2, + ACTIONS(9167), 1, + sym_raw_string_begin, + STATE(5280), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7426), 1, - sym_cell_path, - ACTIONS(2041), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219587] = 5, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187569] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2304), 1, - anon_sym_DASH2, - ACTIONS(10272), 1, - anon_sym_LBRACK2, - STATE(6088), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(5281), 1, sym_comment, - ACTIONS(2308), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1004), 3, anon_sym_DASH_DASH, - anon_sym_as, - [219607] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5132), 1, anon_sym_DASH2, - ACTIONS(10274), 1, - anon_sym_EQ2, - STATE(6089), 1, - sym_comment, - ACTIONS(5130), 5, - ts_builtin_sym_end, + anon_sym_as, + ACTIONS(1000), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219627] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6090), 1, + STATE(5282), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7703), 1, - sym_cell_path, - ACTIONS(1887), 2, + ACTIONS(1786), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [219653] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10278), 1, - anon_sym_RBRACK, - STATE(6091), 1, - sym_comment, - STATE(6616), 1, - aux_sym_shebang_repeat1, - STATE(7436), 1, - sym_val_list, - STATE(7878), 1, - aux_sym_val_table_repeat1, - [219678] = 5, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [187609] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10280), 1, - anon_sym_DOT, - STATE(7065), 1, - sym_path, - STATE(6092), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(975), 3, - anon_sym_RBRACK, + ACTIONS(9143), 1, sym__entry_separator, - sym__table_head_separator, - [219697] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6093), 1, - sym_comment, - STATE(6678), 1, - sym_block, - STATE(8033), 1, - sym_short_flag, - STATE(8034), 1, - sym_long_flag, - [219722] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2379), 1, - anon_sym_DASH2, - STATE(6094), 1, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9169), 1, + anon_sym_GT2, + STATE(5283), 1, sym_comment, - ACTIONS(2381), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219739] = 4, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187634] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, - anon_sym_DASH2, - STATE(6095), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9171), 1, + anon_sym_GT2, + STATE(5284), 1, sym_comment, - ACTIONS(2385), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219756] = 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187659] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, + ACTIONS(935), 1, anon_sym_DASH2, - STATE(6096), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(3768), 1, + sym_cell_path, + STATE(4054), 1, + sym_path, + STATE(5285), 1, sym_comment, - ACTIONS(2405), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(937), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [219773] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6097), 1, - sym_comment, - STATE(7626), 1, - sym_block, - STATE(8203), 1, - sym_short_flag, - STATE(8216), 1, - sym_long_flag, - [219798] = 4, + [187686] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - STATE(6098), 1, + ACTIONS(9173), 1, + anon_sym_DQUOTE, + ACTIONS(9177), 1, + aux_sym_path_token1, + ACTIONS(9179), 1, + sym_raw_string_begin, + STATE(2557), 1, + sym_val_string, + STATE(5286), 1, sym_comment, - ACTIONS(1897), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219815] = 4, + ACTIONS(9175), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2585), 2, + sym__raw_str, + sym__str_double_quotes, + [187713] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(966), 1, anon_sym_DASH2, - STATE(6099), 1, + ACTIONS(9181), 1, + anon_sym_QMARK2, + STATE(5287), 1, sym_comment, - ACTIONS(1699), 5, + ACTIONS(968), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [219832] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - ACTIONS(10287), 1, - anon_sym_LBRACE, - STATE(6100), 1, - sym_comment, - STATE(6691), 1, - sym_val_record, - STATE(8188), 2, - sym_short_flag, - sym_long_flag, - [219855] = 8, - ACTIONS(251), 1, + anon_sym_DOT2, + [187734] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10289), 1, - anon_sym_RBRACK, - STATE(6101), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9185), 1, + anon_sym_GT2, + ACTIONS(9187), 1, + sym_raw_string_begin, + STATE(5288), 1, sym_comment, - STATE(6587), 1, - aux_sym_shebang_repeat1, - STATE(7533), 1, - sym_val_list, - STATE(7795), 1, - aux_sym_val_table_repeat1, - [219880] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187759] = 8, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5342), 1, - sym__blosure, - STATE(6102), 1, + ACTIONS(9189), 1, + aux_sym_path_token1, + STATE(1774), 1, + sym_val_string, + STATE(5289), 1, sym_comment, - [219905] = 4, - ACTIONS(251), 1, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1812), 2, + sym__raw_str, + sym__str_double_quotes, + [187786] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, - anon_sym_DASH2, - STATE(6103), 1, + STATE(5290), 1, sym_comment, - ACTIONS(2389), 5, - ts_builtin_sym_end, + ACTIONS(1723), 3, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [219922] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10293), 1, - sym_identifier, - ACTIONS(10295), 1, - anon_sym_DASH_DASH, - ACTIONS(10297), 1, - anon_sym_DASH2, - STATE(6104), 1, - sym_comment, - STATE(6300), 1, - aux_sym_ctrl_do_repeat1, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [219945] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1725), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187805] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - STATE(6105), 1, + ACTIONS(9191), 1, + aux_sym__immediate_decimal_token2, + STATE(5291), 1, sym_comment, - ACTIONS(1959), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 5, anon_sym_LBRACE, - sym__table_head_separator, - [219962] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6438), 1, - sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - ACTIONS(10299), 1, + STATE(5292), 1, + sym_comment, + ACTIONS(1735), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6106), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [187845] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5293), 1, sym_comment, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - STATE(7422), 1, - sym_cell_path, - [219987] = 6, + ACTIONS(1623), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187864] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - ACTIONS(10302), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10304), 1, - aux_sym__immediate_decimal_token2, - STATE(6107), 1, + ACTIONS(9193), 1, + anon_sym_DQUOTE, + ACTIONS(9197), 1, + aux_sym_path_token1, + ACTIONS(9199), 1, + sym_raw_string_begin, + STATE(5294), 1, sym_comment, - ACTIONS(1773), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220008] = 5, - ACTIONS(251), 1, + STATE(5998), 1, + sym_val_string, + ACTIONS(9195), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5886), 2, + sym__raw_str, + sym__str_double_quotes, + [187891] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6108), 1, + STATE(5295), 1, sym_comment, - STATE(7062), 1, - sym_block, - ACTIONS(10306), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1771), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - [220027] = 4, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [187910] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5126), 1, + ACTIONS(958), 1, anon_sym_DASH2, - STATE(6109), 1, + STATE(5296), 1, sym_comment, - ACTIONS(5124), 5, + ACTIONS(960), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [220044] = 7, + anon_sym_QMARK2, + anon_sym_DOT2, + [187929] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10312), 1, - anon_sym_DQUOTE2, - STATE(6110), 1, + ACTIONS(1653), 1, + sym__newline, + ACTIONS(1665), 1, + sym__space, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(7045), 1, + aux_sym_unquoted_token2, + ACTIONS(9201), 1, + sym_filesize_unit, + ACTIONS(9203), 1, + sym_duration_unit, + STATE(5297), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220067] = 4, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187958] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(988), 1, anon_sym_DASH2, - STATE(6111), 1, + STATE(5298), 1, sym_comment, - ACTIONS(2441), 5, - ts_builtin_sym_end, + ACTIONS(990), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [220084] = 7, + anon_sym_DOT2, + [187977] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(984), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6112), 1, + ACTIONS(9207), 1, + anon_sym_GT2, + ACTIONS(9209), 1, + sym_raw_string_begin, + STATE(5299), 1, sym_comment, - STATE(6309), 1, - aux_sym_cell_path_repeat1, - STATE(7284), 1, - sym_path, - ACTIONS(982), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220107] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188002] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10314), 1, - anon_sym_RBRACK, - STATE(6113), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(9211), 1, + aux_sym_path_token1, + STATE(1470), 1, + sym_val_string, + STATE(5300), 1, sym_comment, - STATE(6588), 1, - aux_sym_shebang_repeat1, - STATE(7591), 1, - sym_val_list, - STATE(7797), 1, - aux_sym_val_table_repeat1, - [220132] = 4, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + [188029] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6114), 1, + ACTIONS(9213), 1, + aux_sym__immediate_decimal_token2, + STATE(5301), 1, sym_comment, - ACTIONS(1052), 3, - anon_sym_RBRACK, + ACTIONS(1771), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1054), 3, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [220149] = 4, + [188050] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(4967), 1, anon_sym_DASH2, - STATE(6115), 1, + ACTIONS(9215), 1, + anon_sym_EQ2, + STATE(5302), 1, sym_comment, - ACTIONS(2365), 5, - ts_builtin_sym_end, + ACTIONS(4965), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [220166] = 6, - ACTIONS(251), 1, + [188071] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10316), 1, - anon_sym_EQ2, - ACTIONS(10318), 1, - sym_short_flag_identifier, - STATE(6116), 1, + STATE(5303), 1, sym_comment, - ACTIONS(5027), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(5029), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [220187] = 3, + ACTIONS(1727), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [188090] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9217), 1, + anon_sym_GT2, + STATE(5304), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188115] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6117), 1, + ACTIONS(9219), 1, + anon_sym_DQUOTE, + ACTIONS(9223), 1, + aux_sym_path_token1, + ACTIONS(9225), 1, + sym_raw_string_begin, + STATE(1336), 1, + sym_val_string, + STATE(5305), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(9221), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1315), 2, + sym__raw_str, + sym__str_double_quotes, + [188142] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, sym_raw_string_begin, + ACTIONS(9227), 1, + anon_sym_GT2, + STATE(5306), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, sym_identifier, - sym__newline, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [220202] = 7, + [188167] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10320), 1, - anon_sym_DQUOTE2, - STATE(6118), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9229), 1, + anon_sym_GT2, + STATE(5307), 1, sym_comment, - STATE(6124), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220225] = 6, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188192] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4720), 1, + STATE(5308), 1, + sym_comment, + ACTIONS(1709), 3, + sym__newline, anon_sym_DOT_DOT2, - ACTIONS(10324), 1, aux_sym_unquoted_token2, - STATE(6119), 1, - sym_comment, - ACTIONS(4722), 2, + ACTIONS(1711), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(10322), 2, sym_filesize_unit, sym_duration_unit, - [220246] = 8, + [188211] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6120), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9231), 1, + anon_sym_GT2, + STATE(5309), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [220271] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188236] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6121), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9233), 1, + anon_sym_GT2, + STATE(5310), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [220296] = 6, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188261] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9235), 1, + anon_sym_DQUOTE, + ACTIONS(9239), 1, + aux_sym_path_token1, + ACTIONS(9241), 1, + sym_raw_string_begin, + STATE(1658), 1, + sym_val_string, + STATE(5311), 1, + sym_comment, + ACTIONS(9237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1684), 2, + sym__raw_str, + sym__str_double_quotes, + [188288] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9243), 1, + anon_sym_GT2, + STATE(5312), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188313] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9247), 1, + anon_sym_DASH2, + STATE(5313), 1, + sym_comment, + ACTIONS(9245), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188332] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4720), 1, + ACTIONS(9249), 1, + anon_sym_DOT, + ACTIONS(9251), 1, + aux_sym__immediate_decimal_token2, + STATE(5314), 1, + sym_comment, + ACTIONS(1735), 2, anon_sym_DOT_DOT2, - ACTIONS(4946), 1, aux_sym_unquoted_token2, - STATE(6122), 1, + ACTIONS(1737), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [188355] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9253), 1, + anon_sym_GT2, + STATE(5315), 1, sym_comment, - ACTIONS(4722), 2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188380] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2113), 1, + sym_raw_string_begin, + ACTIONS(4197), 1, + anon_sym_DQUOTE, + ACTIONS(9255), 1, + aux_sym_path_token1, + STATE(3974), 1, + sym_val_string, + STATE(5316), 1, + sym_comment, + ACTIONS(4199), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3998), 2, + sym__raw_str, + sym__str_double_quotes, + [188407] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9257), 1, + anon_sym_GT2, + STATE(5317), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188432] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5318), 1, + sym_comment, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(10322), 2, sym_filesize_unit, sym_duration_unit, - [220317] = 4, + [188451] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2359), 1, - anon_sym_DASH2, - STATE(6123), 1, + ACTIONS(9259), 1, + anon_sym_EQ2, + ACTIONS(9261), 1, + sym_short_flag_identifier, + STATE(5319), 1, sym_comment, - ACTIONS(2361), 5, + ACTIONS(4898), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + ACTIONS(4900), 3, anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_as, - [220334] = 7, + [188474] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10326), 1, - anon_sym_DQUOTE2, - STATE(6124), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9263), 1, + anon_sym_GT2, + STATE(5320), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220357] = 4, - ACTIONS(3), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188499] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3610), 1, - sym__space, - STATE(6125), 1, + ACTIONS(9265), 1, + anon_sym_DQUOTE, + ACTIONS(9269), 1, + aux_sym_path_token1, + ACTIONS(9271), 1, + sym_raw_string_begin, + STATE(2467), 1, + sym_val_string, + STATE(5321), 1, sym_comment, - ACTIONS(3608), 5, - sym__newline, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [220374] = 8, - ACTIONS(251), 1, + ACTIONS(9267), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2553), 2, + sym__raw_str, + sym__str_double_quotes, + [188526] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10328), 1, - anon_sym_RBRACK, - STATE(6126), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9273), 1, + anon_sym_GT2, + STATE(5322), 1, sym_comment, - STATE(6603), 1, - aux_sym_shebang_repeat1, - STATE(7807), 1, - sym_val_list, - STATE(7821), 1, - aux_sym_val_table_repeat1, - [220399] = 5, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188551] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10330), 1, - anon_sym_DOT_DOT2, - STATE(6127), 1, + STATE(5323), 1, sym_comment, - ACTIONS(10332), 2, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6092), 3, + sym_filesize_unit, + sym_duration_unit, + [188570] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5324), 1, + sym_comment, + ACTIONS(1723), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1725), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [220418] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188589] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2274), 1, - anon_sym_LBRACE, - STATE(6128), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9275), 1, + anon_sym_GT2, + STATE(5325), 1, sym_comment, - ACTIONS(2272), 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [220437] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188614] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_DASH2, - STATE(6129), 1, + ACTIONS(1897), 1, + sym_raw_string_begin, + ACTIONS(4233), 1, + anon_sym_DQUOTE, + ACTIONS(9277), 1, + aux_sym_path_token1, + STATE(3906), 1, + sym_val_string, + STATE(5326), 1, sym_comment, - ACTIONS(5136), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [220454] = 8, - ACTIONS(251), 1, + ACTIONS(4235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3915), 2, + sym__raw_str, + sym__str_double_quotes, + [188641] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10334), 1, - anon_sym_RBRACK, - STATE(6130), 1, + ACTIONS(9279), 1, + anon_sym_QMARK2, + STATE(5327), 1, sym_comment, - STATE(6604), 1, - aux_sym_shebang_repeat1, - STATE(7815), 1, - sym_val_list, - STATE(7823), 1, - aux_sym_val_table_repeat1, - [220479] = 4, + ACTIONS(954), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(952), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [188662] = 8, + ACTIONS(237), 1, + anon_sym_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - STATE(6131), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(9211), 1, + aux_sym_path_token1, + STATE(1470), 1, + sym_val_string, + STATE(5328), 1, sym_comment, - ACTIONS(1951), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [220496] = 4, - ACTIONS(251), 1, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1427), 2, + sym__raw_str, + sym__str_double_quotes, + [188689] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10336), 1, - anon_sym_LT, - STATE(6132), 1, - sym_comment, - ACTIONS(8323), 5, - anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9281), 1, anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [220513] = 8, + STATE(5329), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188714] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6133), 1, + ACTIONS(9283), 1, + anon_sym_DQUOTE, + ACTIONS(9287), 1, + aux_sym_path_token1, + ACTIONS(9289), 1, + sym_raw_string_begin, + STATE(1422), 1, + sym_val_string, + STATE(5330), 1, sym_comment, - STATE(7635), 1, - sym_block, - STATE(7979), 1, - sym_short_flag, - STATE(7998), 1, - sym_long_flag, - [220538] = 5, - ACTIONS(251), 1, + ACTIONS(9285), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1466), 2, + sym__raw_str, + sym__str_double_quotes, + [188741] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10330), 1, - anon_sym_DOT_DOT2, - STATE(6134), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9291), 1, + anon_sym_GT2, + STATE(5331), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188766] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9293), 1, + anon_sym_QMARK2, + STATE(5332), 1, sym_comment, - ACTIONS(10332), 2, + ACTIONS(968), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6099), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220557] = 5, + sym__entry_separator, + ACTIONS(966), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [188787] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - anon_sym_LBRACE, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(6135), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9295), 1, + anon_sym_GT2, + STATE(5333), 1, sym_comment, - ACTIONS(2234), 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [220576] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(9130), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9132), 1, - aux_sym__immediate_decimal_token5, - STATE(6136), 1, - sym_comment, - STATE(8489), 1, - sym__immediate_decimal, - ACTIONS(9128), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [220599] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188812] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5182), 1, - anon_sym_DASH2, - STATE(6137), 1, + ACTIONS(9297), 1, + anon_sym_DQUOTE, + ACTIONS(9301), 1, + aux_sym_path_token1, + ACTIONS(9303), 1, + sym_raw_string_begin, + STATE(1581), 1, + sym_val_string, + STATE(5334), 1, sym_comment, - ACTIONS(5180), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [220616] = 4, + ACTIONS(9299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1593), 2, + sym__raw_str, + sym__str_double_quotes, + [188839] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5186), 1, + ACTIONS(4989), 1, anon_sym_DASH2, - STATE(6138), 1, + ACTIONS(9305), 1, + anon_sym_EQ2, + STATE(5335), 1, sym_comment, - ACTIONS(5184), 5, - ts_builtin_sym_end, + ACTIONS(4987), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [220633] = 4, + [188860] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1917), 1, + ACTIONS(984), 1, anon_sym_DASH2, - STATE(6139), 1, + STATE(5336), 1, sym_comment, - ACTIONS(1919), 5, - ts_builtin_sym_end, + ACTIONS(986), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [220650] = 6, + anon_sym_DOT2, + [188879] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(10338), 1, - anon_sym_DOT_DOT2, - STATE(6140), 1, + ACTIONS(9307), 1, + anon_sym_DQUOTE, + ACTIONS(9311), 1, + aux_sym_path_token1, + ACTIONS(9313), 1, + sym_raw_string_begin, + STATE(2831), 1, + sym_val_string, + STATE(5337), 1, sym_comment, - ACTIONS(1838), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(10340), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220671] = 4, - ACTIONS(251), 1, + ACTIONS(9309), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2852), 2, + sym__raw_str, + sym__str_double_quotes, + [188906] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10342), 1, - anon_sym_LT, - STATE(6141), 1, - sym_comment, - ACTIONS(8323), 5, - anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9315), 1, anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [220688] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6142), 1, + STATE(5338), 1, sym_comment, - STATE(7247), 1, - sym_block, - STATE(8092), 1, - sym_short_flag, - STATE(8093), 1, - sym_long_flag, - [220713] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188931] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6143), 1, + ACTIONS(9317), 1, + anon_sym_DQUOTE, + ACTIONS(9321), 1, + aux_sym_path_token1, + ACTIONS(9323), 1, + sym_raw_string_begin, + STATE(1396), 1, + sym_val_string, + STATE(5339), 1, sym_comment, - STATE(7258), 1, - sym_block, - STATE(8095), 1, - sym_short_flag, - STATE(8098), 1, - sym_long_flag, - [220738] = 7, + ACTIONS(9319), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1379), 2, + sym__raw_str, + sym__str_double_quotes, + [188958] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10344), 1, - anon_sym_DQUOTE2, - STATE(6144), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9325), 1, + anon_sym_GT2, + STATE(5340), 1, sym_comment, - STATE(6149), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220761] = 4, - ACTIONS(3), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188983] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6145), 1, + ACTIONS(9327), 1, + anon_sym_DQUOTE, + ACTIONS(9331), 1, + aux_sym_path_token1, + ACTIONS(9333), 1, + sym_raw_string_begin, + STATE(5341), 1, sym_comment, - ACTIONS(1763), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1765), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [220778] = 6, + STATE(7149), 1, + sym_val_string, + ACTIONS(9329), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(7016), 2, + sym__raw_str, + sym__str_double_quotes, + [189010] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10346), 1, - anon_sym_DOT, - ACTIONS(10348), 1, - aux_sym__immediate_decimal_token2, - STATE(6146), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 2, - anon_sym_LPAREN2, + ACTIONS(9143), 1, sym__entry_separator, - [220799] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5774), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6147), 1, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9335), 1, + anon_sym_GT2, + STATE(5342), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [220824] = 8, - ACTIONS(3), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189035] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5774), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6148), 1, + ACTIONS(9337), 1, + anon_sym_DQUOTE, + ACTIONS(9341), 1, + aux_sym_path_token1, + ACTIONS(9343), 1, + sym_raw_string_begin, + STATE(2772), 1, + sym_val_string, + STATE(5343), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [220849] = 7, + ACTIONS(9339), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2751), 2, + sym__raw_str, + sym__str_double_quotes, + [189062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10350), 1, - anon_sym_DQUOTE2, - STATE(6149), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9345), 1, + anon_sym_GT2, + STATE(5344), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [220872] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189087] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10352), 1, - anon_sym_RBRACK, - STATE(6150), 1, + ACTIONS(9347), 1, + anon_sym_DQUOTE, + ACTIONS(9351), 1, + aux_sym_path_token1, + ACTIONS(9353), 1, + sym_raw_string_begin, + STATE(2988), 1, + sym_val_string, + STATE(5345), 1, sym_comment, - STATE(6605), 1, - aux_sym_shebang_repeat1, - STATE(7830), 1, - aux_sym_val_table_repeat1, - STATE(7963), 1, - sym_val_list, - [220897] = 8, + ACTIONS(9349), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3005), 2, + sym__raw_str, + sym__str_double_quotes, + [189114] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6151), 1, + ACTIONS(9355), 1, + anon_sym_DQUOTE, + ACTIONS(9359), 1, + aux_sym_path_token1, + ACTIONS(9361), 1, + sym_raw_string_begin, + STATE(485), 1, + sym_val_string, + STATE(5346), 1, sym_comment, - STATE(7259), 1, - sym_block, - STATE(8099), 1, - sym_short_flag, - STATE(8100), 1, - sym_long_flag, - [220922] = 8, + ACTIONS(9357), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(442), 2, + sym__raw_str, + sym__str_double_quotes, + [189141] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10354), 1, - anon_sym_RBRACK, - STATE(6152), 1, + ACTIONS(9363), 1, + anon_sym_DQUOTE, + ACTIONS(9367), 1, + aux_sym_path_token1, + ACTIONS(9369), 1, + sym_raw_string_begin, + STATE(561), 1, + sym_val_string, + STATE(5347), 1, sym_comment, - STATE(6606), 1, - aux_sym_shebang_repeat1, - STATE(7833), 1, - aux_sym_val_table_repeat1, - STATE(7970), 1, - sym_val_list, - [220947] = 8, + ACTIONS(9365), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(592), 2, + sym__raw_str, + sym__str_double_quotes, + [189168] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6153), 1, + ACTIONS(9371), 1, + anon_sym_DQUOTE, + ACTIONS(9375), 1, + aux_sym_path_token1, + ACTIONS(9377), 1, + sym_raw_string_begin, + STATE(2719), 1, + sym_val_string, + STATE(5348), 1, sym_comment, - STATE(7264), 1, - sym_block, - STATE(8104), 1, - sym_short_flag, - STATE(8107), 1, - sym_long_flag, - [220972] = 8, + ACTIONS(9373), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2738), 2, + sym__raw_str, + sym__str_double_quotes, + [189195] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6154), 1, - sym_comment, - STATE(7271), 1, - sym_block, - STATE(8118), 1, - sym_short_flag, - STATE(8124), 1, - sym_long_flag, - [220997] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10356), 1, - anon_sym_DQUOTE2, - STATE(6155), 1, - sym_comment, - STATE(6159), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221020] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6156), 1, - sym_comment, - ACTIONS(2086), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2088), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [221037] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9217), 1, - aux_sym_unquoted_token3, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6157), 1, - sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [221062] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9217), 1, - aux_sym_unquoted_token3, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6158), 1, - sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [221087] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10358), 1, - anon_sym_DQUOTE2, - STATE(6159), 1, + ACTIONS(9379), 1, + anon_sym_DQUOTE, + ACTIONS(9383), 1, + aux_sym_path_token1, + ACTIONS(9385), 1, + sym_raw_string_begin, + STATE(2882), 1, + sym_val_string, + STATE(5349), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221110] = 8, + ACTIONS(9381), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2884), 2, + sym__raw_str, + sym__str_double_quotes, + [189222] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10360), 1, - anon_sym_RBRACK, - STATE(6160), 1, + ACTIONS(4359), 1, + anon_sym_DQUOTE, + ACTIONS(4369), 1, + sym_raw_string_begin, + ACTIONS(9387), 1, + aux_sym_path_token1, + STATE(5287), 1, + sym_val_string, + STATE(5350), 1, sym_comment, - STATE(6607), 1, - aux_sym_shebang_repeat1, - STATE(7325), 1, - sym_val_list, - STATE(7840), 1, - aux_sym_val_table_repeat1, - [221135] = 8, + ACTIONS(4361), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5296), 2, + sym__raw_str, + sym__str_double_quotes, + [189249] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10362), 1, - sym__newline, - ACTIONS(10364), 1, - anon_sym_SEMI, - ACTIONS(10366), 1, - anon_sym_RPAREN, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6161), 1, + ACTIONS(4405), 1, + anon_sym_DQUOTE, + ACTIONS(4415), 1, + sym_raw_string_begin, + ACTIONS(9389), 1, + aux_sym_path_token1, + STATE(5146), 1, + sym_val_string, + STATE(5351), 1, sym_comment, - STATE(7273), 1, - aux_sym__block_body_repeat1, - STATE(7746), 1, - aux_sym_shebang_repeat1, - [221160] = 8, + ACTIONS(4407), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5164), 2, + sym__raw_str, + sym__str_double_quotes, + [189276] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10368), 1, - anon_sym_RBRACK, - STATE(6162), 1, + ACTIONS(9391), 1, + anon_sym_DQUOTE, + ACTIONS(9395), 1, + aux_sym_path_token1, + ACTIONS(9397), 1, + sym_raw_string_begin, + STATE(143), 1, + sym_val_string, + STATE(5352), 1, sym_comment, - STATE(6608), 1, - aux_sym_shebang_repeat1, - STATE(7330), 1, - sym_val_list, - STATE(7843), 1, - aux_sym_val_table_repeat1, - [221185] = 7, + ACTIONS(9393), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(141), 2, + sym__raw_str, + sym__str_double_quotes, + [189303] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10295), 1, - anon_sym_DASH_DASH, - ACTIONS(10297), 1, - anon_sym_DASH2, - ACTIONS(10370), 1, - sym_identifier, - STATE(6163), 1, + ACTIONS(9399), 1, + anon_sym_DQUOTE, + ACTIONS(9403), 1, + aux_sym_path_token1, + ACTIONS(9405), 1, + sym_raw_string_begin, + STATE(526), 1, + sym_val_string, + STATE(5353), 1, sym_comment, - STATE(6350), 1, - aux_sym_ctrl_do_repeat1, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [221208] = 8, + ACTIONS(9401), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(532), 2, + sym__raw_str, + sym__str_double_quotes, + [189330] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_RBRACK, - STATE(6164), 1, + ACTIONS(9407), 1, + anon_sym_DQUOTE, + ACTIONS(9411), 1, + aux_sym_path_token1, + ACTIONS(9413), 1, + sym_raw_string_begin, + STATE(394), 1, + sym_val_string, + STATE(5354), 1, sym_comment, - STATE(6590), 1, - aux_sym_shebang_repeat1, - STATE(7773), 1, - sym_val_list, - STATE(7806), 1, - aux_sym_val_table_repeat1, - [221233] = 5, + ACTIONS(9409), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(435), 2, + sym__raw_str, + sym__str_double_quotes, + [189357] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10374), 1, - aux_sym__immediate_decimal_token2, - STATE(6165), 1, + ACTIONS(9415), 1, + anon_sym_DQUOTE, + ACTIONS(9419), 1, + aux_sym_path_token1, + ACTIONS(9421), 1, + sym_raw_string_begin, + STATE(377), 1, + sym_val_string, + STATE(5355), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221252] = 8, - ACTIONS(251), 1, + ACTIONS(9417), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(380), 2, + sym__raw_str, + sym__str_double_quotes, + [189384] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6166), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9423), 1, + anon_sym_GT2, + STATE(5356), 1, sym_comment, - STATE(7594), 1, - sym_block, - STATE(8162), 1, - sym_short_flag, - STATE(8164), 1, - sym_long_flag, - [221277] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189409] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10376), 1, - anon_sym_DQUOTE2, - STATE(6167), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9425), 1, + anon_sym_GT2, + STATE(5357), 1, sym_comment, - STATE(6171), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221300] = 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189434] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1052), 1, + ACTIONS(935), 1, anon_sym_DASH2, - STATE(6168), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(4343), 1, + sym_cell_path, + STATE(5358), 1, sym_comment, - ACTIONS(1054), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5420), 1, + aux_sym_cell_path_repeat1, + ACTIONS(937), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [221317] = 8, + [189461] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6169), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9427), 1, + anon_sym_GT2, + STATE(5359), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [221342] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189486] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6170), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9429), 1, + anon_sym_GT2, + STATE(5360), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [221367] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189511] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10378), 1, - anon_sym_DQUOTE2, - STATE(6171), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9431), 1, + anon_sym_GT2, + STATE(5361), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221390] = 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189536] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9433), 1, + anon_sym_GT2, + STATE(5362), 1, + sym_comment, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189561] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1653), 1, anon_sym_DASH2, - STATE(6172), 1, + ACTIONS(8153), 1, + aux_sym_unquoted_token2, + STATE(5363), 1, sym_comment, - ACTIONS(1959), 5, - ts_builtin_sym_end, + ACTIONS(1665), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [221407] = 6, + [189582] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10380), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10382), 1, + ACTIONS(9015), 1, aux_sym__immediate_decimal_token2, - STATE(6173), 1, + STATE(5364), 1, sym_comment, - ACTIONS(1771), 2, + ACTIONS(1735), 3, anon_sym_RBRACE, + anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 2, + ACTIONS(1737), 4, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [221428] = 8, - ACTIONS(251), 1, + [189603] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10384), 1, - anon_sym_RBRACK, - STATE(6174), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9435), 1, + anon_sym_GT2, + STATE(5365), 1, sym_comment, - STATE(6609), 1, - aux_sym_shebang_repeat1, - STATE(7350), 1, - sym_val_list, - STATE(7849), 1, - aux_sym_val_table_repeat1, - [221453] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189628] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10241), 1, - anon_sym_def, - ACTIONS(10243), 1, - anon_sym_extern, - ACTIONS(10245), 1, - anon_sym_module, - ACTIONS(10247), 1, - anon_sym_use, - ACTIONS(10386), 1, - anon_sym_alias, - ACTIONS(10388), 1, - anon_sym_const, - STATE(6175), 1, + ACTIONS(9437), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9439), 1, + aux_sym__immediate_decimal_token2, + STATE(5366), 1, sym_comment, - [221478] = 7, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189651] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10390), 1, - anon_sym_DQUOTE2, - STATE(6176), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9441), 1, + anon_sym_GT2, + STATE(5367), 1, sym_comment, - STATE(6353), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221501] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189676] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10392), 1, - anon_sym_RBRACK, - STATE(6177), 1, + ACTIONS(1295), 1, + anon_sym_DQUOTE, + ACTIONS(1299), 1, + sym_raw_string_begin, + ACTIONS(9443), 1, + aux_sym_path_token1, + STATE(3953), 1, + sym_val_string, + STATE(5368), 1, sym_comment, - STATE(6610), 1, - aux_sym_shebang_repeat1, - STATE(7355), 1, - sym_val_list, - STATE(7852), 1, - aux_sym_val_table_repeat1, - [221526] = 4, - ACTIONS(251), 1, + ACTIONS(1297), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3917), 2, + sym__raw_str, + sym__str_double_quotes, + [189703] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2458), 1, - anon_sym_DASH2, - STATE(6178), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9445), 1, + anon_sym_GT2, + STATE(5369), 1, sym_comment, - ACTIONS(2460), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [221543] = 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189728] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(976), 1, anon_sym_DASH2, - STATE(6179), 1, + STATE(5370), 1, sym_comment, - ACTIONS(2464), 5, + ACTIONS(978), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [221560] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10394), 1, - anon_sym_DQUOTE2, - STATE(6180), 1, - sym_comment, - STATE(6183), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221583] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7551), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6181), 1, - sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [221608] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7551), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6182), 1, - sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [221633] = 7, + anon_sym_QMARK2, + anon_sym_DOT2, + [189747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10396), 1, - anon_sym_DQUOTE2, - STATE(6183), 1, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(5371), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221656] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2241), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2245), 4, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10398), 1, - anon_sym_RBRACK, - STATE(6184), 1, - sym_comment, - STATE(6611), 1, - aux_sym_shebang_repeat1, - STATE(7380), 1, - sym_val_list, - STATE(7860), 1, - aux_sym_val_table_repeat1, - [221681] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189768] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2466), 1, - anon_sym_DASH2, - STATE(6185), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + ACTIONS(9447), 1, + anon_sym_DOT_DOT2, + ACTIONS(9451), 1, + sym_filesize_unit, + ACTIONS(9453), 1, + sym_duration_unit, + STATE(5372), 1, sym_comment, - ACTIONS(2468), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [221698] = 4, + ACTIONS(1665), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9449), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189795] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5190), 1, + ACTIONS(972), 1, anon_sym_DASH2, - STATE(6186), 1, + STATE(5373), 1, sym_comment, - ACTIONS(5188), 5, + ACTIONS(974), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [221715] = 8, - ACTIONS(251), 1, + anon_sym_QMARK2, + anon_sym_DOT2, + [189814] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10400), 1, - anon_sym_RBRACK, - STATE(6187), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9455), 1, + anon_sym_GT2, + STATE(5374), 1, sym_comment, - STATE(6612), 1, - aux_sym_shebang_repeat1, - STATE(7384), 1, - sym_val_list, - STATE(7862), 1, - aux_sym_val_table_repeat1, - [221740] = 4, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189839] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_DASH2, - STATE(6188), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9457), 1, + anon_sym_GT2, + STATE(5375), 1, sym_comment, - ACTIONS(5192), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [221757] = 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189864] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1034), 1, + ACTIONS(962), 1, anon_sym_DASH2, - STATE(6189), 1, + STATE(5376), 1, sym_comment, - ACTIONS(1036), 5, + ACTIONS(964), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [221774] = 7, + anon_sym_QMARK2, + anon_sym_DOT2, + [189883] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10402), 1, - anon_sym_DQUOTE2, - STATE(6190), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9459), 1, + anon_sym_GT2, + STATE(5377), 1, sym_comment, - STATE(6193), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221797] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189908] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7487), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6191), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9461), 1, + anon_sym_GT2, + STATE(5378), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [221822] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7487), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6192), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9463), 1, + anon_sym_GT2, + STATE(5379), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [221847] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189958] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10404), 1, - anon_sym_DQUOTE2, - STATE(6193), 1, - sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [221870] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10406), 1, - anon_sym_RBRACK, - STATE(6194), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9465), 1, + anon_sym_GT2, + STATE(5380), 1, sym_comment, - STATE(6613), 1, - aux_sym_shebang_repeat1, - STATE(7403), 1, - sym_val_list, - STATE(7868), 1, - aux_sym_val_table_repeat1, - [221895] = 8, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189983] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6195), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9467), 1, + anon_sym_GT2, + STATE(5381), 1, sym_comment, - STATE(6792), 1, - sym_block, - STATE(8210), 1, - sym_short_flag, - STATE(8212), 1, - sym_long_flag, - [221920] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190008] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6196), 1, + ACTIONS(9469), 1, + sym_long_flag_identifier, + ACTIONS(9471), 1, + anon_sym_EQ2, + STATE(5382), 1, sym_comment, - STATE(6796), 1, - sym_block, - STATE(8214), 1, - sym_short_flag, - STATE(8217), 1, - sym_long_flag, - [221945] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(4852), 2, anon_sym_DASH2, - STATE(6197), 1, - sym_comment, - STATE(6803), 1, - sym_block, - STATE(8218), 1, - sym_short_flag, - STATE(8219), 1, - sym_long_flag, - [221970] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + anon_sym_as, + ACTIONS(4850), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10408), 1, - anon_sym_RBRACK, - STATE(6198), 1, - sym_comment, - STATE(6614), 1, - aux_sym_shebang_repeat1, - STATE(7406), 1, - sym_val_list, - STATE(7870), 1, - aux_sym_val_table_repeat1, - [221995] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6199), 1, - sym_comment, - STATE(6814), 1, - sym_block, - STATE(8220), 1, - sym_short_flag, - STATE(8221), 1, - sym_long_flag, - [222020] = 8, - ACTIONS(251), 1, + [190031] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6200), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9473), 1, + anon_sym_GT2, + STATE(5383), 1, sym_comment, - STATE(6821), 1, - sym_block, - STATE(8109), 1, - sym_long_flag, - STATE(8222), 1, - sym_short_flag, - [222045] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10410), 1, - anon_sym_DQUOTE2, - STATE(6201), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9475), 1, + anon_sym_GT2, + STATE(5384), 1, sym_comment, - STATE(6204), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222068] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190081] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6728), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6202), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9477), 1, + anon_sym_GT2, + STATE(5385), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [222093] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190106] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6728), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6203), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9479), 1, + anon_sym_GT2, + STATE(5386), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [222118] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190131] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10412), 1, - anon_sym_DQUOTE2, - STATE(6204), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9481), 1, + anon_sym_GT2, + STATE(5387), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222141] = 8, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190156] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10414), 1, - anon_sym_RBRACK, - STATE(6205), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(5388), 1, sym_comment, - STATE(6615), 1, - aux_sym_shebang_repeat1, - STATE(7430), 1, - sym_val_list, - STATE(7875), 1, - aux_sym_val_table_repeat1, - [222166] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, + ACTIONS(2249), 3, anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6206), 1, - sym_comment, - STATE(6825), 1, - sym_block, - STATE(8180), 1, - sym_long_flag, - STATE(8197), 1, - sym_short_flag, - [222191] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2399), 1, anon_sym_DASH2, - STATE(6207), 1, - sym_comment, - ACTIONS(2401), 5, - ts_builtin_sym_end, + anon_sym_as, + ACTIONS(2253), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [222208] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6208), 1, - sym_comment, - STATE(6827), 1, - sym_block, - STATE(8161), 1, - sym_short_flag, - STATE(8178), 1, - sym_long_flag, - [222233] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6209), 1, - sym_comment, - STATE(6840), 1, - sym_block, - STATE(8035), 1, - sym_short_flag, - STATE(8038), 1, - sym_long_flag, - [222258] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190177] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10416), 1, - anon_sym_DQUOTE2, - STATE(6210), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9483), 1, + anon_sym_GT2, + STATE(5389), 1, sym_comment, - STATE(6213), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222281] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190202] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6211), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9485), 1, + anon_sym_GT2, + STATE(5390), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [222306] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190227] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6212), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9487), 1, + anon_sym_GT2, + STATE(5391), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [222331] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190252] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10418), 1, - anon_sym_DQUOTE2, - STATE(6213), 1, - sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222354] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10420), 1, - anon_sym_RBRACK, - STATE(6214), 1, - sym_comment, - STATE(6617), 1, - aux_sym_shebang_repeat1, - STATE(7457), 1, - sym_val_list, - STATE(7884), 1, - aux_sym_val_table_repeat1, - [222379] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6215), 1, - sym_comment, - STATE(7313), 1, - sym_block, - STATE(8116), 1, - sym_short_flag, - STATE(8177), 1, - sym_long_flag, - [222404] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6216), 1, - sym_comment, - STATE(7316), 1, - sym_block, - STATE(7986), 1, - sym_short_flag, - STATE(7987), 1, - sym_long_flag, - [222429] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10422), 1, - anon_sym_RBRACK, - STATE(6217), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9489), 1, + anon_sym_GT2, + STATE(5392), 1, sym_comment, - STATE(6558), 1, - aux_sym_shebang_repeat1, - STATE(7497), 1, - sym_val_list, - STATE(7743), 1, - aux_sym_val_table_repeat1, - [222454] = 8, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190277] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10424), 1, - anon_sym_RBRACK, - STATE(6218), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9491), 1, + anon_sym_GT2, + STATE(5393), 1, sym_comment, - STATE(6618), 1, - aux_sym_shebang_repeat1, - STATE(7462), 1, - sym_val_list, - STATE(7887), 1, - aux_sym_val_table_repeat1, - [222479] = 4, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190302] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2470), 1, - anon_sym_DASH2, - STATE(6219), 1, + ACTIONS(9493), 1, + anon_sym_DQUOTE, + ACTIONS(9497), 1, + aux_sym_path_token1, + ACTIONS(9499), 1, + sym_raw_string_begin, + STATE(1378), 1, + sym_val_string, + STATE(5394), 1, sym_comment, - ACTIONS(2472), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [222496] = 4, + ACTIONS(9495), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1399), 2, + sym__raw_str, + sym__str_double_quotes, + [190329] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10233), 1, + ACTIONS(980), 1, anon_sym_DASH2, - STATE(6220), 1, + STATE(5395), 1, sym_comment, - ACTIONS(10231), 5, - ts_builtin_sym_end, + ACTIONS(982), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [222513] = 8, + anon_sym_DOT2, + [190348] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6221), 1, + ACTIONS(9019), 1, + aux_sym__immediate_decimal_token2, + STATE(5396), 1, sym_comment, - STATE(7344), 1, - sym_block, - STATE(8072), 1, - sym_short_flag, - STATE(8136), 1, - sym_long_flag, - [222538] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 5, anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6222), 1, - sym_comment, - STATE(7351), 1, - sym_block, - STATE(8156), 1, - sym_short_flag, - STATE(8166), 1, - sym_long_flag, - [222563] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190369] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10426), 1, - anon_sym_DQUOTE2, - STATE(6223), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9501), 1, + anon_sym_GT2, + STATE(5397), 1, sym_comment, - STATE(6227), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222586] = 8, - ACTIONS(3), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190394] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8941), 1, - aux_sym_unquoted_token3, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6224), 1, + STATE(5398), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [222611] = 8, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8941), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6225), 1, + STATE(5399), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [222636] = 8, + ACTIONS(2261), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2263), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190432] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(10324), 1, - aux_sym_unquoted_token3, - STATE(6226), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9503), 1, + anon_sym_GT2, + STATE(5400), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [222661] = 7, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10428), 1, - anon_sym_DQUOTE2, - STATE(6227), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9505), 1, + anon_sym_GT2, + STATE(5401), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222684] = 4, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190482] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH2, - STATE(6228), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9507), 1, + anon_sym_GT2, + STATE(5402), 1, sym_comment, - ACTIONS(2456), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [222701] = 8, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190507] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10430), 1, - anon_sym_RBRACK, - STATE(6229), 1, + ACTIONS(9509), 1, + aux_sym__immediate_decimal_token2, + STATE(5403), 1, sym_comment, - STATE(6619), 1, - aux_sym_shebang_repeat1, - STATE(7478), 1, - sym_val_list, - STATE(7894), 1, - aux_sym_val_table_repeat1, - [222726] = 4, - ACTIONS(251), 1, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190528] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2474), 1, - anon_sym_DASH2, - STATE(6230), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9511), 1, + anon_sym_GT2, + STATE(5404), 1, sym_comment, - ACTIONS(2476), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [222743] = 8, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190553] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10432), 1, - anon_sym_RBRACK, - STATE(6231), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9513), 1, + anon_sym_GT2, + STATE(5405), 1, sym_comment, - STATE(6620), 1, - aux_sym_shebang_repeat1, - STATE(7483), 1, - sym_val_list, - STATE(7897), 1, - aux_sym_val_table_repeat1, - [222768] = 4, - ACTIONS(251), 1, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190578] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_DASH2, - STATE(6232), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(5406), 1, sym_comment, - ACTIONS(2480), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2257), 3, anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_as, - [222785] = 8, + ACTIONS(2259), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190599] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5467), 1, - sym__blosure, - STATE(6233), 1, + ACTIONS(3574), 1, + anon_sym_DQUOTE, + ACTIONS(3588), 1, + sym_raw_string_begin, + ACTIONS(9443), 1, + aux_sym_path_token1, + STATE(3953), 1, + sym_val_string, + STATE(5407), 1, sym_comment, - [222810] = 7, + ACTIONS(3576), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4083), 2, + sym__raw_str, + sym__str_double_quotes, + [190626] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10434), 1, - anon_sym_DQUOTE2, - STATE(6234), 1, + ACTIONS(2332), 1, + sym_raw_string_begin, + ACTIONS(9515), 1, + sym__entry_separator, + STATE(5408), 2, sym_comment, - STATE(6237), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222833] = 8, + aux_sym__multiple_types_repeat1, + ACTIONS(2327), 5, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190647] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6720), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6235), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9518), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5409), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [222858] = 8, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190672] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6720), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6236), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + ACTIONS(9520), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5410), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [222883] = 7, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190697] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10436), 1, - anon_sym_DQUOTE2, - STATE(6237), 1, + STATE(5411), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [222906] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(1599), 3, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10438), 1, - anon_sym_RBRACK, - STATE(6238), 1, - sym_comment, - STATE(6621), 1, - aux_sym_shebang_repeat1, - STATE(7500), 1, - sym_val_list, - STATE(7905), 1, - aux_sym_val_table_repeat1, - [222931] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6239), 1, - sym_comment, - STATE(7707), 1, - sym_block, - STATE(8003), 1, - sym_long_flag, - STATE(8059), 1, - sym_short_flag, - [222956] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190716] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5342), 1, - sym__blosure, - STATE(6240), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9522), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5412), 1, sym_comment, - STATE(6284), 1, - aux_sym_shebang_repeat1, - [222981] = 8, - ACTIONS(251), 1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190741] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10440), 1, - anon_sym_RBRACK, - STATE(6241), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9524), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5413), 1, sym_comment, - STATE(6622), 1, - aux_sym_shebang_repeat1, - STATE(7504), 1, - sym_val_list, - STATE(7908), 1, - aux_sym_val_table_repeat1, - [223006] = 4, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190766] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6242), 1, - sym_comment, - ACTIONS(2082), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2084), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9143), 1, sym__entry_separator, - [223023] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2482), 1, - anon_sym_DASH2, - STATE(6243), 1, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9526), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5414), 1, sym_comment, - ACTIONS(2484), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [223040] = 7, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190791] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10442), 1, - anon_sym_DQUOTE2, - STATE(6244), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9528), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5415), 1, sym_comment, - STATE(6245), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223063] = 7, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190816] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10444), 1, - anon_sym_DQUOTE2, - STATE(6245), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9530), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5416), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223086] = 8, - ACTIONS(251), 1, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190841] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10446), 1, - anon_sym_RBRACK, - STATE(6246), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9532), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5417), 1, sym_comment, - STATE(6624), 1, - aux_sym_shebang_repeat1, - STATE(7523), 1, - sym_val_list, - STATE(7913), 1, - aux_sym_val_table_repeat1, - [223111] = 4, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190866] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(952), 1, anon_sym_DASH2, - STATE(6247), 1, + ACTIONS(9534), 1, + anon_sym_QMARK2, + STATE(5418), 1, sym_comment, - ACTIONS(1893), 5, + ACTIONS(954), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [223128] = 8, + anon_sym_DOT2, + [190887] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10448), 1, - anon_sym_RBRACK, - STATE(6248), 1, + ACTIONS(8997), 1, + aux_sym__immediate_decimal_token2, + STATE(5419), 1, sym_comment, - STATE(6625), 1, - aux_sym_shebang_repeat1, - STATE(7527), 1, - sym_val_list, - STATE(7915), 1, - aux_sym_val_table_repeat1, - [223153] = 8, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190908] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(948), 1, anon_sym_DASH2, - STATE(6249), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(5420), 1, sym_comment, - STATE(7095), 1, - sym_block, - STATE(7995), 1, - sym_short_flag, - STATE(8000), 1, - sym_long_flag, - [223178] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, + STATE(5424), 1, + aux_sym_cell_path_repeat1, + ACTIONS(950), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6250), 1, - sym_comment, - STATE(7096), 1, - sym_block, - STATE(8001), 1, - sym_short_flag, - STATE(8005), 1, - sym_long_flag, - [223203] = 7, + anon_sym_LBRACE, + [190933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10450), 1, - anon_sym_DQUOTE2, - STATE(6251), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + ACTIONS(9536), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5421), 1, sym_comment, - STATE(6252), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223226] = 7, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190958] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10452), 1, - anon_sym_DQUOTE2, - STATE(6252), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9538), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5422), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223249] = 8, - ACTIONS(251), 1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190983] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10454), 1, - anon_sym_RBRACK, - STATE(6253), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9540), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5423), 1, sym_comment, - STATE(6626), 1, - aux_sym_shebang_repeat1, - STATE(7548), 1, - sym_val_list, - STATE(7919), 1, - aux_sym_val_table_repeat1, - [223274] = 8, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191008] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(941), 1, anon_sym_DASH2, - STATE(6254), 1, - sym_comment, - STATE(7099), 1, - sym_block, - STATE(8019), 1, - sym_short_flag, - STATE(8025), 1, - sym_long_flag, - [223299] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10456), 1, - anon_sym_RBRACK, - STATE(6255), 1, + ACTIONS(9542), 1, + anon_sym_DOT2, + STATE(4054), 1, + sym_path, + STATE(5424), 2, sym_comment, - STATE(6627), 1, - aux_sym_shebang_repeat1, - STATE(7552), 1, - sym_val_list, - STATE(7922), 1, - aux_sym_val_table_repeat1, - [223324] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, + aux_sym_cell_path_repeat1, + ACTIONS(943), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6256), 1, - sym_comment, - STATE(7100), 1, - sym_block, - STATE(8029), 1, - sym_short_flag, - STATE(8031), 1, - sym_long_flag, - [223349] = 7, + anon_sym_LBRACE, + [191031] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10458), 1, - anon_sym_DQUOTE2, - STATE(6257), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + ACTIONS(9545), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5425), 1, sym_comment, - STATE(6259), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223372] = 6, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10462), 1, - aux_sym__immediate_decimal_token2, - STATE(6258), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 2, - anon_sym_LPAREN2, + ACTIONS(9143), 1, sym__entry_separator, - [223393] = 7, + ACTIONS(9151), 1, + sym_raw_string_begin, + ACTIONS(9547), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5426), 1, + sym_comment, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191081] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10464), 1, - anon_sym_DQUOTE2, - STATE(6259), 1, + ACTIONS(5680), 1, + anon_sym_DOT2, + STATE(5427), 1, sym_comment, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223416] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10466), 1, + STATE(5762), 1, + aux_sym_cell_path_repeat1, + STATE(6534), 1, + sym_path, + STATE(6686), 1, + sym_cell_path, + ACTIONS(1957), 3, anon_sym_RBRACK, - STATE(6260), 1, - sym_comment, - STATE(6628), 1, - aux_sym_shebang_repeat1, - STATE(7574), 1, - sym_val_list, - STATE(7926), 1, - aux_sym_val_table_repeat1, - [223441] = 5, + sym__entry_separator, + sym__table_head_separator, + [191105] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10251), 1, - aux_sym__immediate_decimal_token2, - STATE(6261), 1, + STATE(5428), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(1771), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1781), 3, - anon_sym_LBRACE, + ACTIONS(1773), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [223460] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10468), 1, - anon_sym_RBRACK, - STATE(6262), 1, - sym_comment, - STATE(6629), 1, - aux_sym_shebang_repeat1, - STATE(7578), 1, - sym_val_list, - STATE(7928), 1, - aux_sym_val_table_repeat1, - [223485] = 6, + [191123] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(1794), 1, + anon_sym_RBRACE, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, sym__entry_separator, - ACTIONS(10470), 1, + ACTIONS(1804), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9549), 1, anon_sym_DOT_DOT2, - STATE(6263), 1, + STATE(5429), 1, sym_comment, - ACTIONS(2072), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10472), 2, + ACTIONS(9551), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [223506] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10474), 1, - anon_sym_RBRACK, - STATE(6264), 1, - sym_comment, - STATE(6630), 1, - aux_sym_shebang_repeat1, - STATE(7592), 1, - sym_val_list, - STATE(7932), 1, - aux_sym_val_table_repeat1, - [223531] = 8, - ACTIONS(251), 1, + [191149] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5373), 1, - sym__blosure, - STATE(6265), 1, + STATE(5430), 1, sym_comment, - STATE(6342), 1, - aux_sym_shebang_repeat1, - [223556] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10476), 1, + ACTIONS(986), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(984), 4, anon_sym_RBRACK, - STATE(6266), 1, - sym_comment, - STATE(6631), 1, - aux_sym_shebang_repeat1, - STATE(7597), 1, - sym_val_list, - STATE(7935), 1, - aux_sym_val_table_repeat1, - [223581] = 6, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [191167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, + STATE(5431), 1, + sym_comment, + ACTIONS(982), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(10478), 1, + ACTIONS(980), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(6267), 1, + anon_sym_DOT2, + [191185] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + anon_sym_DASH2, + STATE(5432), 1, sym_comment, - ACTIONS(2090), 2, - anon_sym_RBRACK, + ACTIONS(1947), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - ACTIONS(10480), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223602] = 8, + anon_sym_as, + [191203] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2413), 1, + anon_sym_DASH2, + STATE(5433), 1, + sym_comment, + ACTIONS(2415), 6, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10482), 1, - anon_sym_RBRACK, - STATE(6268), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191221] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(5434), 1, sym_comment, - STATE(6632), 1, - aux_sym_shebang_repeat1, - STATE(7605), 1, - sym_val_list, - STATE(7939), 1, - aux_sym_val_table_repeat1, - [223627] = 6, + ACTIONS(2241), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2245), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [191241] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10484), 1, - anon_sym_DOT_DOT2, - STATE(6269), 1, + ACTIONS(9151), 1, + sym_raw_string_begin, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5435), 1, sym_comment, - ACTIONS(2098), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10486), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223648] = 8, + ACTIONS(9147), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191263] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10488), 1, - anon_sym_RBRACK, - STATE(6270), 1, + ACTIONS(4997), 1, + anon_sym_DASH2, + STATE(5436), 1, sym_comment, - STATE(6633), 1, - aux_sym_shebang_repeat1, - STATE(7608), 1, - sym_val_list, - STATE(7941), 1, - aux_sym_val_table_repeat1, - [223673] = 7, + ACTIONS(4995), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10490), 1, - anon_sym_DQUOTE2, - STATE(6110), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6271), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9187), 1, + sym_raw_string_begin, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5437), 1, sym_comment, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [223696] = 8, + ACTIONS(9183), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191303] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10492), 1, - anon_sym_RBRACK, - STATE(6272), 1, + ACTIONS(5001), 1, + anon_sym_DASH2, + STATE(5438), 1, sym_comment, - STATE(6634), 1, - aux_sym_shebang_repeat1, - STATE(7620), 1, - sym_val_list, - STATE(7945), 1, - aux_sym_val_table_repeat1, - [223721] = 8, + ACTIONS(4999), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191321] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10237), 1, - anon_sym_alias, - ACTIONS(10239), 1, - anon_sym_const, - ACTIONS(10241), 1, - anon_sym_def, - ACTIONS(10243), 1, - anon_sym_extern, - ACTIONS(10245), 1, - anon_sym_module, - ACTIONS(10247), 1, - anon_sym_use, - STATE(6273), 1, + ACTIONS(988), 1, + anon_sym_DASH2, + STATE(5439), 1, sym_comment, - [223746] = 8, + ACTIONS(990), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [191339] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10494), 1, - anon_sym_RBRACK, - STATE(6274), 1, + STATE(5440), 1, sym_comment, - STATE(6635), 1, - aux_sym_shebang_repeat1, - STATE(7624), 1, - sym_val_list, - STATE(7947), 1, - aux_sym_val_table_repeat1, - [223771] = 8, + ACTIONS(1723), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1725), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191357] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(2417), 1, anon_sym_DASH2, - STATE(6275), 1, + STATE(5441), 1, sym_comment, - STATE(7369), 1, - sym_block, - STATE(7992), 1, - sym_short_flag, - STATE(8046), 1, - sym_long_flag, - [223796] = 5, + ACTIONS(2419), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191375] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10287), 1, - anon_sym_LBRACE, - STATE(6276), 1, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(5442), 1, sym_comment, - STATE(6851), 1, - sym_val_record, - ACTIONS(10496), 4, + ACTIONS(2423), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [223815] = 5, + anon_sym_as, + [191393] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10287), 1, - anon_sym_LBRACE, - STATE(6277), 1, + ACTIONS(2425), 1, + anon_sym_DASH2, + STATE(5443), 1, sym_comment, - STATE(6852), 1, - sym_val_record, - ACTIONS(10498), 4, + ACTIONS(2427), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [223834] = 6, + anon_sym_as, + [191411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2137), 1, - sym__entry_separator, - ACTIONS(10500), 1, - anon_sym_DOT_DOT2, - STATE(6278), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(5444), 1, sym_comment, - ACTIONS(2131), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(10502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223855] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2249), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2253), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5326), 1, - sym__blosure, - STATE(6279), 1, - sym_comment, - STATE(6282), 1, - aux_sym_shebang_repeat1, - [223880] = 8, + anon_sym_SEMI, + [191431] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(5039), 1, anon_sym_DASH2, - STATE(6280), 1, + STATE(5445), 1, sym_comment, - STATE(7393), 1, - sym_block, - STATE(8058), 1, - sym_short_flag, - STATE(8090), 1, - sym_long_flag, - [223905] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5037), 6, sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5401), 1, - sym__blosure, - STATE(6102), 1, - aux_sym_shebang_repeat1, - STATE(6281), 1, - sym_comment, - [223930] = 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191449] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5043), 1, + anon_sym_DASH2, + STATE(5446), 1, + sym_comment, + ACTIONS(5041), 6, sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5349), 1, - sym__blosure, - STATE(6282), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191467] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(5447), 1, sym_comment, - [223955] = 6, + ACTIONS(2257), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2259), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [191487] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10173), 1, - anon_sym_DOT, - STATE(6092), 1, + ACTIONS(1979), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, aux_sym_cell_path_repeat1, - STATE(6283), 1, + STATE(5448), 1, sym_comment, - STATE(7065), 1, + STATE(5562), 1, sym_path, - ACTIONS(982), 3, + STATE(6977), 1, + sym_cell_path, + ACTIONS(1977), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [223976] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5351), 1, - sym__blosure, - STATE(6284), 1, - sym_comment, - [224001] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [191513] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6285), 1, + ACTIONS(1983), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5449), 1, sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224018] = 8, + STATE(5562), 1, + sym_path, + STATE(6980), 1, + sym_cell_path, + ACTIONS(1981), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191539] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(2441), 1, anon_sym_DASH2, - STATE(6286), 1, + STATE(5450), 1, sym_comment, - STATE(7402), 1, - sym_block, - STATE(8126), 1, - sym_short_flag, - STATE(8137), 1, - sym_long_flag, - [224043] = 8, + ACTIONS(2443), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191557] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - STATE(6287), 1, - sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [224068] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6288), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1773), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224085] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5351), 1, - sym__blosure, - STATE(6233), 1, - aux_sym_shebang_repeat1, - STATE(6289), 1, + ACTIONS(1987), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5451), 1, sym_comment, - [224110] = 8, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(6983), 1, + sym_cell_path, + ACTIONS(1985), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191583] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6290), 1, + ACTIONS(1831), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5452), 1, sym_comment, - STATE(7468), 1, - sym_block, - STATE(8007), 1, - sym_short_flag, - STATE(8013), 1, - sym_long_flag, - [224135] = 4, + STATE(5562), 1, + sym_path, + STATE(6990), 1, + sym_cell_path, + ACTIONS(1829), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191609] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6291), 1, - sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, + ACTIONS(1804), 1, aux_sym_unquoted_token2, - ACTIONS(1801), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(9553), 1, + anon_sym_DOT_DOT2, + STATE(5453), 1, + sym_comment, + ACTIONS(9555), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [224152] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6292), 1, - sym_comment, - ACTIONS(1818), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1820), 4, + ACTIONS(1802), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [224169] = 8, + [191631] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7708), 1, - anon_sym_RBRACK, - ACTIONS(7710), 1, + ACTIONS(1991), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6112), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5454), 1, + sym_comment, + STATE(5562), 1, + sym_path, + STATE(7024), 1, + sym_cell_path, + ACTIONS(1989), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191657] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1995), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, aux_sym_cell_path_repeat1, - STATE(6293), 1, + STATE(5455), 1, sym_comment, - STATE(7284), 1, + STATE(5562), 1, sym_path, - STATE(8101), 1, + STATE(7035), 1, sym_cell_path, - [224194] = 4, + ACTIONS(1993), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191683] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(4985), 1, anon_sym_DASH2, - STATE(6294), 1, + STATE(5456), 1, sym_comment, - ACTIONS(2369), 5, - ts_builtin_sym_end, + ACTIONS(4983), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [224211] = 8, + [191701] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5061), 1, - aux_sym_unquoted_token3, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - STATE(6295), 1, + ACTIONS(1999), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5457), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [224236] = 5, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(7044), 1, + sym_cell_path, + ACTIONS(1997), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191727] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6296), 1, + ACTIONS(1951), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5458), 1, sym_comment, - STATE(6724), 1, - sym_block, - ACTIONS(10504), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5562), 1, + sym_path, + STATE(7017), 1, + sym_cell_path, + ACTIONS(1949), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [224255] = 5, + [191753] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6297), 1, + ACTIONS(4942), 1, + anon_sym_DASH2, + STATE(5459), 1, sym_comment, - STATE(6730), 1, - sym_block, - ACTIONS(10504), 4, + ACTIONS(4940), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [224274] = 4, + anon_sym_as, + [191771] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5222), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(6298), 1, + STATE(5460), 1, sym_comment, - ACTIONS(5220), 5, - ts_builtin_sym_end, + ACTIONS(1959), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [224291] = 8, + [191789] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(10324), 1, - aux_sym_unquoted_token3, - STATE(6299), 1, + ACTIONS(2003), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5461), 1, sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [224316] = 7, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(7048), 1, + sym_cell_path, + ACTIONS(2001), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191815] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10295), 1, - anon_sym_DASH_DASH, - ACTIONS(10297), 1, - anon_sym_DASH2, - ACTIONS(10506), 1, - sym_identifier, - STATE(6300), 1, + ACTIONS(2007), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5462), 1, sym_comment, - STATE(6335), 1, - aux_sym_ctrl_do_repeat1, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [224339] = 8, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(7049), 1, + sym_cell_path, + ACTIONS(2005), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191841] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6301), 1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5463), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6967), 1, - sym__assignment_pattern, - [224364] = 8, + STATE(5562), 1, + sym_path, + STATE(7053), 1, + sym_cell_path, + ACTIONS(2009), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191867] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6302), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(9557), 1, + anon_sym_alias, + ACTIONS(9559), 1, + anon_sym_const, + ACTIONS(9561), 1, + anon_sym_def, + ACTIONS(9563), 1, + anon_sym_extern, + ACTIONS(9565), 1, + anon_sym_module, + ACTIONS(9567), 1, + anon_sym_use, + STATE(5464), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6983), 1, - sym__assignment_pattern, - [224389] = 8, - ACTIONS(251), 1, + [191895] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6303), 1, + ACTIONS(8057), 1, + sym__newline, + ACTIONS(8059), 1, + sym__space, + ACTIONS(8061), 1, + anon_sym_DASH_DASH, + ACTIONS(8063), 1, + anon_sym_DASH2, + STATE(5465), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(7003), 1, - sym__assignment_pattern, - [224414] = 4, + STATE(5540), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7264), 2, + sym_short_flag, + sym_long_flag, + [191921] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5226), 1, + ACTIONS(2485), 1, anon_sym_DASH2, - STATE(6304), 1, + STATE(5466), 1, sym_comment, - ACTIONS(5224), 5, - ts_builtin_sym_end, + ACTIONS(2487), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [224431] = 7, - ACTIONS(251), 1, + [191939] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(9130), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9132), 1, - aux_sym__immediate_decimal_token5, - STATE(6305), 1, + ACTIONS(2015), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5467), 1, sym_comment, - STATE(8267), 1, - sym__immediate_decimal, - ACTIONS(9128), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [224454] = 7, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(7094), 1, + sym_cell_path, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191965] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - ACTIONS(10510), 1, - anon_sym_LBRACE, - STATE(6306), 1, + ACTIONS(2019), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5468), 1, sym_comment, - STATE(7812), 1, - sym_val_record, - STATE(8165), 2, - sym_short_flag, - sym_long_flag, - [224477] = 8, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(7098), 1, + sym_cell_path, + ACTIONS(2017), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191991] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6307), 1, + ACTIONS(2023), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5469), 1, sym_comment, - STATE(7599), 1, - sym_block, - STATE(8175), 1, - sym_short_flag, - STATE(8176), 1, - sym_long_flag, - [224502] = 8, - ACTIONS(251), 1, + STATE(5562), 1, + sym_path, + STATE(7101), 1, + sym_cell_path, + ACTIONS(2021), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192017] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6308), 1, + ACTIONS(2027), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5470), 1, sym_comment, - STATE(7619), 1, - sym_block, - STATE(8191), 1, - sym_short_flag, - STATE(8193), 1, - sym_long_flag, - [224527] = 6, + STATE(5562), 1, + sym_path, + STATE(7107), 1, + sym_cell_path, + ACTIONS(2025), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192043] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(977), 1, + ACTIONS(2031), 1, sym__entry_separator, - ACTIONS(10512), 1, - anon_sym_DOT, - STATE(7284), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5471), 1, + sym_comment, + STATE(5562), 1, sym_path, - ACTIONS(975), 2, + STATE(7146), 1, + sym_cell_path, + ACTIONS(2029), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6309), 2, - sym_comment, - aux_sym_cell_path_repeat1, - [224548] = 8, - ACTIONS(251), 1, + [192069] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6310), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9209), 1, + sym_raw_string_begin, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5472), 1, sym_comment, - STATE(7621), 1, - sym_block, - STATE(8198), 1, - sym_short_flag, - STATE(8215), 1, - sym_long_flag, - [224573] = 7, + ACTIONS(9205), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192091] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10515), 1, - anon_sym_DQUOTE2, - STATE(6311), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9145), 1, + sym_raw_string_begin, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5473), 1, sym_comment, - STATE(6362), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [224596] = 6, + ACTIONS(9139), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192113] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2315), 1, + anon_sym_DASH2, + ACTIONS(9569), 1, + anon_sym_LBRACK2, + STATE(5474), 1, + sym_comment, + ACTIONS(2319), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [192133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10517), 1, - anon_sym_LPAREN, - ACTIONS(10523), 1, - anon_sym_DQUOTE2, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10520), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(6312), 2, + STATE(5475), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [224617] = 8, + ACTIONS(1727), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [192151] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8869), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9306), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9308), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9310), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(10525), 1, - aux_sym_unquoted_token3, - STATE(6313), 1, + ACTIONS(1959), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5476), 1, sym_comment, - STATE(7174), 1, - sym__immediate_decimal, - [224642] = 4, + STATE(5562), 1, + sym_path, + STATE(6813), 1, + sym_cell_path, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192177] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2520), 1, + ACTIONS(984), 1, anon_sym_DASH2, - STATE(6314), 1, + STATE(5477), 1, sym_comment, - ACTIONS(2522), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(986), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym__table_head_separator, - [224659] = 6, + anon_sym_as, + anon_sym_DOT2, + [192195] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(10527), 1, - anon_sym_DOT, - ACTIONS(10529), 1, - aux_sym__immediate_decimal_token2, - STATE(6315), 1, + ACTIONS(9571), 1, + anon_sym_DASH_DASH, + ACTIONS(9574), 1, + anon_sym_DASH2, + ACTIONS(8905), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(5478), 2, sym_comment, - ACTIONS(1781), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224680] = 4, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [192217] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(980), 1, anon_sym_DASH2, - STATE(6316), 1, + STATE(5479), 1, sym_comment, - ACTIONS(1927), 5, + ACTIONS(982), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [224697] = 8, + anon_sym_DOT2, + [192235] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9128), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9312), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9314), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9316), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(10525), 1, - aux_sym_unquoted_token3, - STATE(6317), 1, - sym_comment, - STATE(8356), 1, - sym__immediate_decimal, - [224722] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6318), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5480), 1, sym_comment, - STATE(7528), 1, - sym_block, - STATE(8106), 1, - sym_short_flag, - STATE(8108), 1, - sym_long_flag, - [224747] = 8, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192257] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, - anon_sym_RBRACE, - ACTIONS(2047), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(6319), 1, + ACTIONS(9167), 1, + sym_raw_string_begin, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, + STATE(5481), 1, sym_comment, - STATE(7284), 1, - sym_path, - STATE(8053), 1, - sym_cell_path, - [224772] = 4, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192279] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5482), 1, + sym_comment, + ACTIONS(9577), 7, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + [192295] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2520), 1, + ACTIONS(1653), 1, anon_sym_DASH2, - STATE(6320), 1, + STATE(5483), 1, sym_comment, - ACTIONS(2522), 5, - ts_builtin_sym_end, + ACTIONS(1665), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [224789] = 4, + [192313] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(6321), 1, + STATE(5484), 1, sym_comment, - ACTIONS(1935), 5, - ts_builtin_sym_end, + ACTIONS(2336), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [224806] = 6, + [192331] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10531), 1, - sym_long_flag_identifier, - ACTIONS(10533), 1, - anon_sym_EQ2, - STATE(6322), 1, + ACTIONS(2338), 1, + anon_sym_DASH2, + STATE(5485), 1, sym_comment, - ACTIONS(5010), 2, - anon_sym_DOLLAR, + ACTIONS(2340), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - ACTIONS(5012), 2, - sym_identifier, - anon_sym_DASH2, - [224827] = 8, + anon_sym_RBRACE, + anon_sym_as, + [192349] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, - anon_sym_DASH2, - STATE(6323), 1, + STATE(5486), 1, sym_comment, - STATE(7541), 1, - sym_block, - STATE(8117), 1, - sym_short_flag, - STATE(8122), 1, - sym_long_flag, - [224852] = 8, + ACTIONS(1599), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1601), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192367] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6324), 1, + ACTIONS(2338), 1, + anon_sym_DASH2, + STATE(5487), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6967), 1, - sym__assignment_pattern, - [224877] = 5, + ACTIONS(2340), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192385] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10535), 1, - anon_sym_DOT_DOT2, - STATE(6325), 1, + ACTIONS(2342), 1, + anon_sym_DASH2, + STATE(5488), 1, sym_comment, - ACTIONS(10537), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224896] = 8, + ACTIONS(2344), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192403] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6326), 1, + ACTIONS(2346), 1, + anon_sym_DASH2, + STATE(5489), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6983), 1, - sym__assignment_pattern, - [224921] = 5, + ACTIONS(2348), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192421] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10539), 1, - anon_sym_DOT_DOT2, - STATE(6327), 1, + ACTIONS(2350), 1, + anon_sym_DASH2, + STATE(5490), 1, sym_comment, - ACTIONS(10541), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2096), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224940] = 5, + ACTIONS(2352), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192439] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10543), 1, - anon_sym_DOT_DOT2, - STATE(6328), 1, + STATE(5491), 1, sym_comment, - ACTIONS(10545), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2104), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224959] = 5, + ACTIONS(9579), 7, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + [192455] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10547), 1, - anon_sym_DOT_DOT2, - STATE(6329), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(8355), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8357), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9581), 1, + anon_sym_DOT, + STATE(5492), 1, sym_comment, - ACTIONS(10549), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2137), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224978] = 8, + STATE(6386), 1, + sym__immediate_decimal, + ACTIONS(8353), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [192481] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6330), 1, + ACTIONS(2354), 1, + anon_sym_DASH2, + STATE(5493), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(7003), 1, - sym__assignment_pattern, - [225003] = 4, + ACTIONS(2356), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192499] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(2358), 1, anon_sym_DASH2, - STATE(6331), 1, + STATE(5494), 1, sym_comment, - ACTIONS(5228), 5, - ts_builtin_sym_end, + ACTIONS(2360), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225020] = 4, + [192517] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5234), 1, + ACTIONS(2362), 1, anon_sym_DASH2, - STATE(6332), 1, + STATE(5495), 1, sym_comment, - ACTIONS(5232), 5, - ts_builtin_sym_end, + ACTIONS(2364), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225037] = 6, + [192535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(10551), 1, - anon_sym_DOT_DOT2, - STATE(6333), 1, + STATE(5496), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, + ACTIONS(1771), 3, anon_sym_RBRACE, - ACTIONS(10553), 2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [225058] = 4, + sym__entry_separator, + [192553] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2486), 1, + ACTIONS(2366), 1, anon_sym_DASH2, - STATE(6334), 1, + STATE(5497), 1, sym_comment, - ACTIONS(2488), 5, - ts_builtin_sym_end, + ACTIONS(2368), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225075] = 6, + [192571] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9292), 1, - sym_identifier, - ACTIONS(10555), 1, - anon_sym_DASH_DASH, - ACTIONS(10558), 1, + ACTIONS(2370), 1, anon_sym_DASH2, - STATE(6335), 2, + STATE(5498), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [225096] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2372), 6, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10561), 1, - anon_sym_RBRACK, - STATE(6336), 1, - sym_comment, - STATE(6561), 1, - aux_sym_shebang_repeat1, - STATE(7655), 1, - sym_val_list, - STATE(7757), 1, - aux_sym_val_table_repeat1, - [225121] = 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192589] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10362), 1, + ACTIONS(1004), 1, + anon_sym_DASH2, + STATE(5499), 1, + sym_comment, + ACTIONS(1000), 6, sym__newline, - ACTIONS(10364), 1, anon_sym_SEMI, - ACTIONS(10563), 1, anon_sym_RPAREN, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6337), 1, - sym_comment, - STATE(6846), 1, - aux_sym__block_body_repeat1, - STATE(7746), 1, - aux_sym_shebang_repeat1, - [225146] = 4, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192607] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6338), 1, + STATE(5500), 1, sym_comment, - ACTIONS(2123), 3, - anon_sym_RBRACK, + ACTIONS(1786), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(2125), 3, + aux_sym__unquoted_in_record_token2, + ACTIONS(1788), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [225163] = 6, + [192625] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_DASH2, + STATE(5501), 1, + sym_comment, + ACTIONS(1979), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192643] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4720), 1, + ACTIONS(9251), 1, + aux_sym__immediate_decimal_token2, + STATE(5502), 1, + sym_comment, + ACTIONS(1735), 2, anon_sym_DOT_DOT2, - ACTIONS(10525), 1, aux_sym_unquoted_token2, - STATE(6339), 1, - sym_comment, - ACTIONS(4722), 2, + ACTIONS(1737), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(10322), 2, - sym_filesize_unit, - sym_duration_unit, - [225184] = 4, + [192663] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5680), 1, + anon_sym_DOT2, + STATE(5503), 1, + sym_comment, + STATE(5762), 1, + aux_sym_cell_path_repeat1, + STATE(6534), 1, + sym_path, + STATE(7043), 1, + sym_cell_path, + ACTIONS(1949), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [192687] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2374), 1, anon_sym_DASH2, - STATE(6340), 1, + STATE(5504), 1, sym_comment, - ACTIONS(2373), 5, - ts_builtin_sym_end, + ACTIONS(2376), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225201] = 4, + [192705] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2492), 1, + ACTIONS(2378), 1, anon_sym_DASH2, - STATE(6341), 1, + STATE(5505), 1, sym_comment, - ACTIONS(2494), 5, - ts_builtin_sym_end, + ACTIONS(2380), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225218] = 8, + [192723] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5326), 1, - sym__blosure, - STATE(6342), 1, + ACTIONS(1989), 1, + anon_sym_DASH2, + STATE(5506), 1, sym_comment, - [225243] = 4, + ACTIONS(1991), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192741] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(1997), 1, anon_sym_DASH2, - STATE(6343), 1, + STATE(5507), 1, sym_comment, - ACTIONS(1943), 5, - ts_builtin_sym_end, + ACTIONS(1999), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225260] = 6, + [192759] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4720), 1, + ACTIONS(2001), 1, + anon_sym_DASH2, + STATE(5508), 1, + sym_comment, + ACTIONS(2003), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192777] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1819), 1, + anon_sym_RBRACK, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + sym__entry_separator, + ACTIONS(9583), 1, anon_sym_DOT_DOT2, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - STATE(6344), 1, + STATE(5509), 1, sym_comment, - ACTIONS(4722), 2, + ACTIONS(9585), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(10322), 2, - sym_filesize_unit, - sym_duration_unit, - [225281] = 8, + [192803] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10565), 1, - anon_sym_alias, - ACTIONS(10567), 1, - anon_sym_const, - ACTIONS(10569), 1, - anon_sym_def, - ACTIONS(10571), 1, - anon_sym_extern, - ACTIONS(10573), 1, - anon_sym_module, - ACTIONS(10575), 1, - anon_sym_use, - STATE(6345), 1, + ACTIONS(2382), 1, + anon_sym_DASH2, + STATE(5510), 1, sym_comment, - [225306] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(617), 1, - anon_sym_RPAREN, - ACTIONS(10362), 1, + ACTIONS(2384), 6, sym__newline, - ACTIONS(10364), 1, anon_sym_SEMI, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6346), 1, - sym_comment, - STATE(7267), 1, - aux_sym__block_body_repeat1, - STATE(7746), 1, - aux_sym_shebang_repeat1, - [225331] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192821] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2258), 1, - anon_sym_LBRACE, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(6347), 1, + ACTIONS(9587), 1, + aux_sym__immediate_decimal_token2, + STATE(5511), 1, sym_comment, - ACTIONS(2254), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [225350] = 4, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192841] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2013), 1, anon_sym_DASH2, - STATE(6348), 1, + STATE(5512), 1, sym_comment, - ACTIONS(2377), 5, - ts_builtin_sym_end, + ACTIONS(2015), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225367] = 5, + [192859] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, - anon_sym_LBRACE, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(6349), 1, + ACTIONS(1931), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5513), 1, sym_comment, - ACTIONS(1034), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [225386] = 7, + STATE(5562), 1, + sym_path, + STATE(6968), 1, + sym_cell_path, + ACTIONS(1929), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192885] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10295), 1, - anon_sym_DASH_DASH, - ACTIONS(10297), 1, + ACTIONS(2386), 1, anon_sym_DASH2, - ACTIONS(10577), 1, - sym_identifier, - STATE(6335), 1, - aux_sym_ctrl_do_repeat1, - STATE(6350), 1, + STATE(5514), 1, sym_comment, - STATE(6545), 2, - sym_short_flag, - sym_long_flag, - [225409] = 4, + ACTIONS(2388), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192903] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(2390), 1, anon_sym_DASH2, - STATE(6351), 1, + STATE(5515), 1, sym_comment, - ACTIONS(1939), 5, - ts_builtin_sym_end, + ACTIONS(2392), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225426] = 4, + [192921] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2504), 1, + ACTIONS(2017), 1, anon_sym_DASH2, - STATE(6352), 1, + STATE(5516), 1, sym_comment, - ACTIONS(2506), 5, - ts_builtin_sym_end, + ACTIONS(2019), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225443] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10579), 1, - anon_sym_DQUOTE2, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6353), 1, - sym_comment, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [225466] = 6, + [192939] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(10581), 1, - anon_sym_DOT_DOT2, - STATE(6354), 1, + ACTIONS(9589), 1, + anon_sym_DOT2, + STATE(3768), 1, + sym_cell_path, + STATE(4012), 1, + aux_sym_cell_path_repeat1, + STATE(4054), 1, + sym_path, + STATE(5517), 1, sym_comment, - ACTIONS(1848), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(10583), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225487] = 4, + ACTIONS(937), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [192963] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2508), 1, + ACTIONS(2025), 1, anon_sym_DASH2, - STATE(6355), 1, + STATE(5518), 1, sym_comment, - ACTIONS(2510), 5, - ts_builtin_sym_end, + ACTIONS(2027), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225504] = 4, + [192981] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(2394), 1, anon_sym_DASH2, - STATE(6356), 1, + STATE(5519), 1, sym_comment, - ACTIONS(1885), 5, - ts_builtin_sym_end, + ACTIONS(2396), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225521] = 5, + [192999] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6357), 1, + ACTIONS(2398), 1, + anon_sym_DASH2, + STATE(5520), 1, sym_comment, - STATE(6692), 1, - sym_block, - ACTIONS(10585), 4, + ACTIONS(2400), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [225540] = 8, + anon_sym_as, + [193017] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - ACTIONS(10283), 1, - anon_sym_DASH_DASH, - ACTIONS(10285), 1, + ACTIONS(2029), 1, anon_sym_DASH2, - STATE(6358), 1, + STATE(5521), 1, sym_comment, - STATE(7558), 1, - sym_block, - STATE(8154), 1, - sym_short_flag, - STATE(8155), 1, - sym_long_flag, - [225565] = 8, + ACTIONS(2031), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193035] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2402), 1, + anon_sym_DASH2, + STATE(5522), 1, + sym_comment, + ACTIONS(2404), 6, sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5341), 1, - sym__blosure, - STATE(6359), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193053] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_RBRACE, + ACTIONS(1665), 1, + sym__entry_separator, + ACTIONS(9591), 1, + anon_sym_DOT_DOT2, + ACTIONS(9595), 1, + sym_filesize_unit, + ACTIONS(9597), 1, + sym_duration_unit, + STATE(5523), 1, sym_comment, - STATE(6375), 1, - aux_sym_shebang_repeat1, - [225590] = 4, + ACTIONS(9593), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193079] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_LBRACE, - STATE(6360), 1, + STATE(5524), 1, sym_comment, - ACTIONS(2242), 5, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2263), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(2261), 4, anon_sym_DASH_DASH, anon_sym_DASH2, + anon_sym_as, aux_sym_unquoted_token4, - [225607] = 8, + [193097] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10241), 1, - anon_sym_def, - ACTIONS(10243), 1, - anon_sym_extern, - ACTIONS(10245), 1, - anon_sym_module, - ACTIONS(10247), 1, - anon_sym_use, - ACTIONS(10587), 1, - anon_sym_alias, - ACTIONS(10589), 1, - anon_sym_const, - STATE(6361), 1, - sym_comment, - [225632] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10308), 1, - anon_sym_LPAREN, - ACTIONS(10591), 1, - anon_sym_DQUOTE2, - STATE(6312), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6362), 1, + ACTIONS(2406), 1, + anon_sym_DASH2, + STATE(5525), 1, sym_comment, - STATE(6668), 1, - sym_expr_interpolated, - ACTIONS(10310), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [225655] = 8, + ACTIONS(2408), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193115] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10241), 1, - anon_sym_def, - ACTIONS(10243), 1, - anon_sym_extern, - ACTIONS(10245), 1, - anon_sym_module, - ACTIONS(10247), 1, - anon_sym_use, - ACTIONS(10593), 1, - anon_sym_alias, - ACTIONS(10595), 1, - anon_sym_const, - STATE(6363), 1, + ACTIONS(9601), 1, + anon_sym_DASH2, + STATE(5526), 1, sym_comment, - [225680] = 5, + ACTIONS(9599), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193133] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(9603), 1, + anon_sym_DOT, + ACTIONS(9605), 1, + aux_sym__immediate_decimal_token2, + STATE(5527), 1, + sym_comment, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 3, anon_sym_LBRACE, - STATE(6364), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193155] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2035), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5528), 1, sym_comment, - STATE(6755), 1, - sym_block, - ACTIONS(10597), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5562), 1, + sym_path, + STATE(7190), 1, + sym_cell_path, + ACTIONS(2033), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [225699] = 6, + [193181] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DASH2, - ACTIONS(10599), 1, - sym_long_flag_identifier, - ACTIONS(10601), 1, - anon_sym_EQ2, - STATE(6365), 1, + STATE(5529), 1, sym_comment, - ACTIONS(5010), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1623), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1625), 5, anon_sym_LBRACE, - [225720] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193199] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1935), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5530), 1, + sym_comment, + STATE(5562), 1, + sym_path, + STATE(6970), 1, + sym_cell_path, + ACTIONS(1933), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [193225] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(9607), 1, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - ACTIONS(10603), 1, - anon_sym_RBRACK, - STATE(6366), 1, + STATE(5531), 2, sym_comment, - STATE(6416), 1, aux_sym_shebang_repeat1, - STATE(7725), 1, - sym_val_list, - STATE(7734), 1, - aux_sym_val_table_repeat1, - [225745] = 6, + ACTIONS(1264), 5, + sym_raw_string_begin, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [193243] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOLLAR, - ACTIONS(10605), 1, - anon_sym_EQ2, - ACTIONS(10607), 1, - sym_short_flag_identifier, - STATE(6367), 1, + STATE(5532), 1, sym_comment, - ACTIONS(5029), 3, - sym_identifier, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193261] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(5533), 1, + sym_comment, + ACTIONS(1000), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(1004), 3, anon_sym_DASH_DASH, anon_sym_DASH2, - [225766] = 5, + anon_sym_as, + [193281] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6368), 1, + ACTIONS(4989), 1, + anon_sym_DASH2, + ACTIONS(9610), 1, + anon_sym_EQ2, + STATE(5534), 1, sym_comment, - STATE(6758), 1, - sym_block, - ACTIONS(10597), 4, + ACTIONS(4987), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_as, + [193301] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_DASH2, + ACTIONS(8470), 1, + aux_sym_unquoted_token2, + STATE(5535), 1, + sym_comment, + ACTIONS(1665), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [193321] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1939), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5536), 1, + sym_comment, + STATE(5562), 1, + sym_path, + STATE(6756), 1, + sym_cell_path, + ACTIONS(1937), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [225785] = 8, + [193347] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10241), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(9557), 1, + anon_sym_alias, + ACTIONS(9559), 1, + anon_sym_const, + ACTIONS(9561), 1, anon_sym_def, - ACTIONS(10243), 1, + ACTIONS(9563), 1, anon_sym_extern, - ACTIONS(10245), 1, + ACTIONS(9565), 1, anon_sym_module, - ACTIONS(10247), 1, + ACTIONS(9567), 1, anon_sym_use, - ACTIONS(10609), 1, - anon_sym_alias, - ACTIONS(10611), 1, - anon_sym_const, - STATE(6369), 1, + STATE(5537), 1, sym_comment, - [225810] = 8, + [193375] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7739), 1, + ACTIONS(1794), 1, anon_sym_RBRACK, - ACTIONS(7741), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6112), 1, - aux_sym_cell_path_repeat1, - STATE(6370), 1, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9612), 1, + anon_sym_DOT_DOT2, + STATE(5538), 1, sym_comment, - STATE(7284), 1, - sym_path, - STATE(8181), 1, - sym_cell_path, - [225835] = 6, + ACTIONS(9614), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193401] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LBRACE, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + ACTIONS(9616), 1, + sym_filesize_unit, + ACTIONS(9618), 1, + sym_duration_unit, + STATE(5539), 1, + sym_comment, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, - anon_sym_DOT, - ACTIONS(10615), 1, - aux_sym__immediate_decimal_token2, - STATE(6371), 1, + ACTIONS(9620), 1, + sym__newline, + ACTIONS(9623), 1, + sym__space, + STATE(5540), 2, sym_comment, - ACTIONS(1779), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 2, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3488), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [193447] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 1, + anon_sym_RBRACE, + ACTIONS(1821), 1, anon_sym_LPAREN2, + ACTIONS(1827), 1, sym__entry_separator, - [225856] = 4, + ACTIONS(9626), 1, + anon_sym_DOT_DOT2, + STATE(5541), 1, + sym_comment, + ACTIONS(9628), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193473] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(5076), 1, anon_sym_DASH2, - STATE(6372), 1, + STATE(5542), 1, sym_comment, - ACTIONS(2393), 5, - ts_builtin_sym_end, + ACTIONS(5074), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225873] = 8, + [193491] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2037), 1, + ACTIONS(1971), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5543), 1, + sym_comment, + STATE(5562), 1, + sym_path, + STATE(6817), 1, + sym_cell_path, + ACTIONS(1969), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(2039), 1, + [193517] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1975), 1, sym__entry_separator, - ACTIONS(10175), 1, - anon_sym_DOT, - STATE(6112), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, aux_sym_cell_path_repeat1, - STATE(6373), 1, + STATE(5544), 1, sym_comment, - STATE(7284), 1, + STATE(5562), 1, sym_path, - STATE(8002), 1, + STATE(6835), 1, sym_cell_path, - [225898] = 4, + ACTIONS(1973), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [193543] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(5080), 1, anon_sym_DASH2, - STATE(6374), 1, + STATE(5545), 1, sym_comment, - ACTIONS(2393), 5, - ts_builtin_sym_end, + ACTIONS(5078), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [225915] = 8, + [193561] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5059), 1, - sym_val_closure, - STATE(5311), 1, - sym_block, - STATE(5373), 1, - sym__blosure, - STATE(6375), 1, + STATE(5546), 1, sym_comment, - [225940] = 6, + ACTIONS(1709), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1711), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10617), 1, - anon_sym_LPAREN, - ACTIONS(10620), 1, - sym_unescaped_interpolated_content, - ACTIONS(10623), 1, - anon_sym_SQUOTE, - STATE(7667), 1, - sym_expr_interpolated, - STATE(6376), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [225960] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6377), 1, + STATE(5547), 1, sym_comment, - ACTIONS(8571), 5, - anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(2479), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2477), 5, + sym_identifier, anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [225974] = 3, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [193597] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6378), 1, + ACTIONS(4967), 1, + anon_sym_DASH2, + ACTIONS(9630), 1, + anon_sym_EQ2, + STATE(5548), 1, sym_comment, - ACTIONS(8721), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [225988] = 7, + ACTIONS(4965), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [193617] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2051), 1, - sym_cell_path, - STATE(5820), 1, + ACTIONS(4811), 1, + anon_sym_DOT2, + STATE(1402), 1, aux_sym_cell_path_repeat1, - STATE(6379), 1, - sym_comment, - [226010] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1889), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, + STATE(1510), 1, sym_path, - STATE(2065), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6380), 1, + STATE(5549), 1, sym_comment, - [226032] = 7, + STATE(6838), 1, + sym_cell_path, + ACTIONS(5837), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [193641] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(1967), 1, sym__entry_separator, - ACTIONS(10625), 1, - anon_sym_GT2, - ACTIONS(10627), 1, - anon_sym_AT, - STATE(5969), 1, - aux_sym__multiple_types_repeat1, - STATE(6381), 1, - sym_comment, - STATE(7721), 1, - sym_param_cmd, - [226054] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6382), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5550), 1, sym_comment, - ACTIONS(8575), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226068] = 7, + STATE(5562), 1, + sym_path, + STATE(6922), 1, + sym_cell_path, + ACTIONS(1965), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [193667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10629), 1, - anon_sym_GT2, - STATE(5975), 1, - aux_sym__multiple_types_repeat1, - STATE(6383), 1, - sym_comment, - STATE(7753), 1, - sym_param_cmd, - [226090] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6384), 1, + STATE(5551), 1, sym_comment, - ACTIONS(8543), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226104] = 3, + ACTIONS(1735), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193685] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6385), 1, + ACTIONS(5027), 1, + anon_sym_DASH2, + STATE(5552), 1, sym_comment, - ACTIONS(8717), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226118] = 3, + ACTIONS(5025), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193703] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6386), 1, + ACTIONS(4811), 1, + anon_sym_DOT2, + STATE(1402), 1, + aux_sym_cell_path_repeat1, + STATE(1510), 1, + sym_path, + STATE(5553), 1, sym_comment, - ACTIONS(8699), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226132] = 3, + STATE(6779), 1, + sym_cell_path, + ACTIONS(5816), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [193727] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6387), 1, + ACTIONS(5031), 1, + anon_sym_DASH2, + STATE(5554), 1, sym_comment, - ACTIONS(8579), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226146] = 7, + ACTIONS(5029), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193745] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(1665), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2071), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6388), 1, - sym_comment, - [226168] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6389), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + ACTIONS(9616), 1, + sym_filesize_unit, + ACTIONS(9618), 1, + sym_duration_unit, + ACTIONS(9632), 1, + anon_sym_DOT_DOT2, + STATE(5555), 1, sym_comment, - ACTIONS(8489), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226182] = 7, + ACTIONS(9634), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193771] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1897), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2086), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6390), 1, + ACTIONS(9636), 1, + anon_sym_DASH_DASH, + ACTIONS(9639), 1, + anon_sym_DASH2, + ACTIONS(8905), 2, + sym_identifier, + anon_sym_DOLLAR, + STATE(5556), 2, sym_comment, - [226204] = 5, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [193793] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(9217), 1, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - STATE(6391), 1, + ACTIONS(9642), 1, + anon_sym_DOT_DOT2, + STATE(5557), 1, sym_comment, - ACTIONS(1699), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [226222] = 7, + ACTIONS(9644), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1827), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [193815] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1905), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2163), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6392), 1, + STATE(5558), 1, sym_comment, - [226244] = 4, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1002), 1, - anon_sym_DOT, - STATE(6393), 1, + ACTIONS(1947), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5559), 1, sym_comment, - ACTIONS(1000), 4, + STATE(5562), 1, + sym_path, + STATE(7186), 1, + sym_cell_path, + ACTIONS(1945), 2, anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [226260] = 7, + anon_sym_RBRACE, + [193859] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1911), 1, + ACTIONS(9646), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9648), 1, + aux_sym__immediate_decimal_token2, + STATE(5560), 1, + sym_comment, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 3, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2141), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6394), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193881] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5561), 1, sym_comment, - [226282] = 6, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - sym__entry_separator, - ACTIONS(9400), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10631), 1, - anon_sym_DOT, - STATE(6395), 1, + STATE(5562), 1, sym_comment, - ACTIONS(1779), 2, + ACTIONS(990), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(988), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [226302] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [193917] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10633), 1, - anon_sym_GT2, - STATE(5859), 1, - aux_sym__multiple_types_repeat1, - STATE(6396), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(9650), 1, + anon_sym_DOT_DOT2, + STATE(5563), 1, sym_comment, - STATE(7693), 1, - sym_param_cmd, - [226324] = 7, - ACTIONS(3), 1, + ACTIONS(1802), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9652), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193938] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10635), 1, - anon_sym_GT2, - STATE(5860), 1, - aux_sym__multiple_types_repeat1, - STATE(6397), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8626), 1, + aux_sym__immediate_decimal_token5, + STATE(5564), 1, sym_comment, - STATE(7695), 1, - sym_param_cmd, - [226346] = 5, + STATE(7556), 1, + sym__immediate_decimal, + ACTIONS(8622), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [193961] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - STATE(6398), 1, + ACTIONS(9654), 1, + aux_sym__immediate_decimal_token2, + STATE(5565), 1, sym_comment, - ACTIONS(1699), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 3, anon_sym_LBRACE, - [226364] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193980] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2035), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2035), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6399), 1, + ACTIONS(9561), 1, + anon_sym_def, + ACTIONS(9563), 1, + anon_sym_extern, + ACTIONS(9565), 1, + anon_sym_module, + ACTIONS(9567), 1, + anon_sym_use, + ACTIONS(9656), 1, + anon_sym_alias, + ACTIONS(9658), 1, + anon_sym_const, + STATE(5566), 1, + sym_comment, + [194005] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9660), 1, + aux_sym_unquoted_token3, + STATE(5567), 1, sym_comment, - [226386] = 7, + STATE(6198), 1, + sym__immediate_decimal, + [194030] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2266), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6400), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4810), 1, + sym__blosure, + STATE(5568), 1, sym_comment, - [226408] = 6, + [194055] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, anon_sym_LBRACE, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(10637), 1, - anon_sym_DOT_DOT2, - STATE(6401), 1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4810), 1, + sym__blosure, + STATE(5569), 1, sym_comment, - ACTIONS(10639), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [226428] = 3, - ACTIONS(251), 1, + STATE(5654), 1, + aux_sym_shebang_repeat1, + [194080] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6402), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5570), 1, sym_comment, - ACTIONS(8737), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226442] = 7, + STATE(6198), 1, + sym__immediate_decimal, + [194105] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10641), 1, - anon_sym_GT2, - STATE(5865), 1, - aux_sym__multiple_types_repeat1, - STATE(6403), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5571), 1, sym_comment, - STATE(7713), 1, - sym_param_cmd, - [226464] = 7, + STATE(7524), 1, + sym__immediate_decimal, + [194130] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4811), 1, + sym__blosure, + STATE(5572), 1, + sym_comment, + STATE(5666), 1, + aux_sym_shebang_repeat1, + [194155] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10643), 1, - anon_sym_GT2, - STATE(5866), 1, - aux_sym__multiple_types_repeat1, - STATE(6404), 1, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9660), 1, + aux_sym_unquoted_token3, + STATE(5573), 1, sym_comment, - STATE(7714), 1, - sym_param_cmd, - [226486] = 3, + STATE(7524), 1, + sym__immediate_decimal, + [194180] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6405), 1, + ACTIONS(1957), 1, + anon_sym_DASH2, + STATE(5574), 1, sym_comment, - ACTIONS(8758), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(1959), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [226500] = 7, + sym__table_head_separator, + [194197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10645), 1, - anon_sym_GT2, - STATE(5867), 1, - aux_sym__multiple_types_repeat1, - STATE(6406), 1, + ACTIONS(2263), 1, + anon_sym_LBRACE, + STATE(5575), 1, sym_comment, - STATE(7717), 1, - sym_param_cmd, - [226522] = 7, - ACTIONS(3), 1, + ACTIONS(2261), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [194214] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10647), 1, - anon_sym_GT2, - STATE(5868), 1, - aux_sym__multiple_types_repeat1, - STATE(6407), 1, + ACTIONS(1653), 1, + anon_sym_DASH2, + STATE(5576), 1, sym_comment, - STATE(7720), 1, - sym_param_cmd, - [226544] = 4, + ACTIONS(1665), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194231] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1006), 1, + ACTIONS(9664), 1, anon_sym_DOT, - STATE(6408), 1, + ACTIONS(9666), 1, + aux_sym__immediate_decimal_token2, + STATE(5577), 1, sym_comment, - ACTIONS(1004), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, + ACTIONS(1735), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [226560] = 3, + [194252] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6409), 1, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + STATE(5578), 1, sym_comment, - ACTIONS(8773), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226574] = 3, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9668), 2, + sym_filesize_unit, + sym_duration_unit, + [194273] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6410), 1, - sym_comment, - ACTIONS(8703), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226588] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DOT, - STATE(6411), 1, + ACTIONS(2334), 1, + anon_sym_DASH2, + STATE(5579), 1, sym_comment, - ACTIONS(996), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [226604] = 7, - ACTIONS(3), 1, + ACTIONS(2336), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194290] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10649), 1, - anon_sym_GT2, - STATE(5871), 1, - aux_sym__multiple_types_repeat1, - STATE(6412), 1, + ACTIONS(2338), 1, + anon_sym_DASH2, + STATE(5580), 1, sym_comment, - STATE(7727), 1, - sym_param_cmd, - [226626] = 7, - ACTIONS(3), 1, + ACTIONS(2340), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194307] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10651), 1, - anon_sym_GT2, - STATE(5872), 1, - aux_sym__multiple_types_repeat1, - STATE(6413), 1, + ACTIONS(2338), 1, + anon_sym_DASH2, + STATE(5581), 1, sym_comment, - STATE(7728), 1, - sym_param_cmd, - [226648] = 3, + ACTIONS(2340), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194324] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6414), 1, + ACTIONS(5039), 1, + anon_sym_DASH2, + STATE(5582), 1, sym_comment, - ACTIONS(8777), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226662] = 3, + ACTIONS(5037), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194341] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6415), 1, + ACTIONS(2342), 1, + anon_sym_DASH2, + STATE(5583), 1, sym_comment, - ACTIONS(8677), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226676] = 7, + ACTIONS(2344), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194358] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6416), 1, + ACTIONS(9672), 1, + anon_sym_RBRACK, + STATE(5584), 1, sym_comment, - STATE(7379), 1, + STATE(5971), 1, + aux_sym_shebang_repeat1, + STATE(6642), 1, sym_val_list, - STATE(7453), 1, + STATE(7036), 1, aux_sym_val_table_repeat1, - [226698] = 7, + [194383] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1919), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2058), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6417), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9674), 1, + anon_sym_RBRACK, + STATE(5585), 1, sym_comment, - [226720] = 4, + STATE(5915), 1, + aux_sym_shebang_repeat1, + STATE(6640), 1, + sym_val_list, + STATE(6993), 1, + aux_sym_val_table_repeat1, + [194408] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(2346), 1, anon_sym_DASH2, - STATE(6418), 1, + STATE(5586), 1, sym_comment, - ACTIONS(5228), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2348), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [226736] = 4, + anon_sym_as, + [194425] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5182), 1, + ACTIONS(2350), 1, anon_sym_DASH2, - STATE(6419), 1, + STATE(5587), 1, sym_comment, - ACTIONS(5180), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2352), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [226752] = 4, - ACTIONS(251), 1, + anon_sym_as, + [194442] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_DASH2, - STATE(6420), 1, + STATE(5588), 1, sym_comment, - ACTIONS(5232), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2055), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2057), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [194459] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9676), 1, anon_sym_DASH_DASH, + ACTIONS(9678), 1, + anon_sym_DASH2, + ACTIONS(9680), 1, anon_sym_LBRACE, - [226768] = 5, + STATE(5589), 1, + sym_comment, + STATE(6563), 1, + sym_val_record, + STATE(7242), 2, + sym_short_flag, + sym_long_flag, + [194482] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10653), 1, + ACTIONS(9682), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9684), 1, aux_sym__immediate_decimal_token2, - STATE(6421), 1, + STATE(5590), 1, sym_comment, - ACTIONS(1799), 2, + ACTIONS(1727), 2, anon_sym_RBRACK, aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 2, + ACTIONS(1729), 2, anon_sym_LPAREN2, sym__entry_separator, - [226786] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10659), 1, - anon_sym_SQUOTE, - STATE(6422), 1, - sym_comment, - STATE(6426), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [226808] = 7, + [194503] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2067), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6423), 1, + ACTIONS(9686), 1, + sym__newline, + ACTIONS(9688), 1, + anon_sym_SEMI, + ACTIONS(9690), 1, + anon_sym_RPAREN, + STATE(212), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5591), 1, sym_comment, - [226830] = 7, + STATE(6523), 1, + aux_sym__block_body_repeat1, + STATE(6689), 1, + aux_sym_shebang_repeat1, + [194528] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2081), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6424), 1, + ACTIONS(2485), 1, + anon_sym_DASH2, + STATE(5592), 1, sym_comment, - [226852] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(2487), 5, sym_identifier, - ACTIONS(10508), 1, anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6425), 1, - sym_comment, - STATE(6459), 1, - sym__variable_name, - STATE(7911), 1, - sym__assignment_pattern, - [226874] = 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [194545] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10661), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6426), 1, + ACTIONS(9696), 1, + anon_sym_DQUOTE2, + STATE(5593), 1, sym_comment, - STATE(7667), 1, + STATE(5597), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [226896] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6427), 1, - sym_comment, - ACTIONS(8323), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226910] = 4, - ACTIONS(251), 1, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194568] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5190), 1, - anon_sym_DASH2, - STATE(6428), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5594), 1, sym_comment, - ACTIONS(5188), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [226926] = 4, - ACTIONS(251), 1, + STATE(6198), 1, + sym__immediate_decimal, + [194593] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_DASH2, - STATE(6429), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5595), 1, sym_comment, - ACTIONS(5192), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [226942] = 3, + STATE(7524), 1, + sym__immediate_decimal, + [194618] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6430), 1, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(5596), 1, sym_comment, - ACTIONS(8781), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [226956] = 7, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9668), 2, + sym_filesize_unit, + sym_duration_unit, + [194639] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10663), 1, - anon_sym_SQUOTE, - STATE(6431), 1, + ACTIONS(9698), 1, + anon_sym_DQUOTE2, + STATE(5597), 1, sym_comment, - STATE(6437), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [226978] = 4, - ACTIONS(3), 1, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194662] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(988), 1, - anon_sym_DOT, - STATE(6432), 1, - sym_comment, - ACTIONS(986), 4, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9700), 1, anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [226994] = 6, + STATE(5598), 1, + sym_comment, + STATE(5993), 1, + aux_sym_shebang_repeat1, + STATE(7001), 1, + sym_val_list, + STATE(7063), 1, + aux_sym_val_table_repeat1, + [194687] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9130), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9132), 1, - aux_sym__immediate_decimal_token5, - STATE(6433), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5599), 1, sym_comment, - STATE(8624), 1, - sym__immediate_decimal, - ACTIONS(9128), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [227014] = 7, + STATE(6027), 1, + sym__variable_name, + STATE(6244), 1, + sym__assignment_pattern, + [194712] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10665), 1, - anon_sym_EQ, - ACTIONS(10667), 1, - anon_sym_COLON, - STATE(6434), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9704), 1, + anon_sym_RBRACK, + STATE(5600), 1, sym_comment, - STATE(7487), 1, + STATE(5994), 1, aux_sym_shebang_repeat1, - STATE(8312), 1, - sym_param_type, - [227036] = 5, + STATE(7012), 1, + sym_val_list, + STATE(7066), 1, + aux_sym_val_table_repeat1, + [194737] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10510), 1, - anon_sym_LBRACE, - STATE(6435), 1, + ACTIONS(5043), 1, + anon_sym_DASH2, + STATE(5601), 1, sym_comment, - STATE(7431), 1, - sym_val_record, - ACTIONS(10496), 3, + ACTIONS(5041), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227054] = 5, + anon_sym_DASH_DASH, + anon_sym_as, + [194754] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10510), 1, - anon_sym_LBRACE, - STATE(6436), 1, - sym_comment, - STATE(7432), 1, - sym_val_record, - ACTIONS(10498), 3, - ts_builtin_sym_end, + ACTIONS(597), 1, + anon_sym_RPAREN, + ACTIONS(9686), 1, sym__newline, + ACTIONS(9688), 1, anon_sym_SEMI, - [227072] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10669), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6437), 1, + STATE(212), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5602), 1, sym_comment, - STATE(7667), 1, - sym_expr_interpolated, - [227094] = 4, + STATE(6130), 1, + aux_sym__block_body_repeat1, + STATE(6689), 1, + aux_sym_shebang_repeat1, + [194779] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_DASH2, - STATE(6438), 1, + ACTIONS(9706), 1, + anon_sym_LT, + STATE(5603), 1, sym_comment, - ACTIONS(5124), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(7827), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [227110] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(219), 1, - aux_sym__block_body_repeat1, - STATE(6439), 1, - sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1480), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227128] = 7, + [194796] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1761), 1, - aux_sym_record_entry_token1, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(2156), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, - sym_path, - STATE(6440), 1, + ACTIONS(9708), 1, + anon_sym_LT, + STATE(5604), 1, sym_comment, - [227150] = 4, + ACTIONS(7827), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [194813] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5186), 1, + ACTIONS(4985), 1, anon_sym_DASH2, - STATE(6441), 1, + STATE(5605), 1, sym_comment, - ACTIONS(5184), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4983), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [227166] = 4, + anon_sym_as, + [194830] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6442), 1, - sym_comment, - ACTIONS(1818), 2, + ACTIONS(4540), 1, anon_sym_DOT_DOT2, + ACTIONS(9660), 1, aux_sym_unquoted_token2, - ACTIONS(1820), 3, - anon_sym_LBRACE, + STATE(5606), 1, + sym_comment, + ACTIONS(4542), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [227182] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10671), 1, - sym__newline, - ACTIONS(10674), 1, - sym__space, - STATE(6060), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(8045), 1, - sym__flags_parenthesized, - STATE(6443), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [227202] = 6, + ACTIONS(9668), 2, + sym_filesize_unit, + sym_duration_unit, + [194851] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(10677), 1, - anon_sym_DOT, - ACTIONS(10679), 1, - aux_sym__immediate_decimal_token2, - STATE(6444), 1, + STATE(5607), 1, sym_comment, - ACTIONS(1781), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227222] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(1275), 6, + sym_raw_string_begin, sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6445), 1, - sym_comment, - STATE(6459), 1, - sym__variable_name, - STATE(7865), 1, - sym__assignment_pattern, - [227244] = 7, + sym__newline, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [194866] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2051), 1, + ACTIONS(9676), 1, + anon_sym_DASH_DASH, + ACTIONS(9678), 1, + anon_sym_DASH2, + ACTIONS(9710), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2084), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6446), 1, + STATE(5608), 1, sym_comment, - [227266] = 7, + STATE(6972), 1, + sym_val_record, + STATE(7236), 2, + sym_short_flag, + sym_long_flag, + [194889] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2113), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6447), 1, + ACTIONS(9712), 1, + anon_sym_EQ2, + ACTIONS(9714), 1, + sym_short_flag_identifier, + STATE(5609), 1, sym_comment, - [227288] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2055), 1, + ACTIONS(4898), 2, + anon_sym_DOLLAR, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2126), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6448), 1, + ACTIONS(4900), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [194910] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9716), 1, + anon_sym_DQUOTE2, + STATE(5610), 1, sym_comment, - [227310] = 7, + STATE(5614), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194933] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1939), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2150), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6449), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8626), 1, + aux_sym__immediate_decimal_token5, + STATE(5611), 1, sym_comment, - [227332] = 7, + STATE(7399), 1, + sym__immediate_decimal, + ACTIONS(8622), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [194956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10681), 1, - anon_sym_SQUOTE, - STATE(6450), 1, + ACTIONS(5555), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5612), 1, sym_comment, - STATE(6452), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [227354] = 5, - ACTIONS(251), 1, + STATE(6198), 1, + sym__immediate_decimal, + [194981] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(6451), 1, + ACTIONS(5555), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5613), 1, sym_comment, - STATE(7687), 1, - sym_block, - ACTIONS(10597), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [227372] = 7, + STATE(7524), 1, + sym__immediate_decimal, + [195006] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10683), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6452), 1, + ACTIONS(9718), 1, + anon_sym_DQUOTE2, + STATE(5614), 1, sym_comment, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [227394] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195029] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(1918), 1, + anon_sym_RBRACE, + ACTIONS(1920), 1, sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10685), 1, - anon_sym_GT2, - STATE(5897), 1, - aux_sym__multiple_types_repeat1, - STATE(6453), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5615), 1, sym_comment, - STATE(7341), 1, - sym_param_cmd, - [227416] = 7, + STATE(7284), 1, + sym_cell_path, + [195054] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9720), 1, + anon_sym_RBRACK, + STATE(5616), 1, + sym_comment, + STATE(5999), 1, + aux_sym_shebang_repeat1, + STATE(7074), 1, + aux_sym_val_table_repeat1, + STATE(7201), 1, + sym_val_list, + [195079] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(2148), 1, sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10687), 1, - anon_sym_GT2, - STATE(5899), 1, - aux_sym__multiple_types_repeat1, - STATE(6454), 1, + ACTIONS(9722), 1, + anon_sym_DOT_DOT2, + STATE(5617), 1, sym_comment, - STATE(7343), 1, - sym_param_cmd, - [227438] = 7, - ACTIONS(3), 1, + ACTIONS(2142), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195100] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10689), 1, - anon_sym_SQUOTE, - STATE(6455), 1, + ACTIONS(2354), 1, + anon_sym_DASH2, + STATE(5618), 1, sym_comment, - STATE(6456), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [227460] = 7, - ACTIONS(3), 1, + ACTIONS(2356), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195117] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10691), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6456), 1, + ACTIONS(9726), 1, + sym_identifier, + ACTIONS(9728), 1, + anon_sym_DASH_DASH, + ACTIONS(9730), 1, + anon_sym_DASH2, + STATE(5619), 1, sym_comment, - STATE(7667), 1, - sym_expr_interpolated, - [227482] = 4, + STATE(5642), 1, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [195140] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5138), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9732), 1, + anon_sym_RBRACK, + STATE(5620), 1, + sym_comment, + STATE(6000), 1, + aux_sym_shebang_repeat1, + STATE(6627), 1, + sym_val_list, + STATE(7076), 1, + aux_sym_val_table_repeat1, + [195165] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1018), 1, anon_sym_DASH2, - STATE(6457), 1, + STATE(5621), 1, sym_comment, - ACTIONS(5136), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1020), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [227498] = 5, + anon_sym_as, + [195182] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(221), 1, - aux_sym__block_body_repeat1, - STATE(6458), 1, + ACTIONS(2358), 1, + anon_sym_DASH2, + STATE(5622), 1, sym_comment, - ACTIONS(141), 2, + ACTIONS(2360), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(631), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227516] = 7, + anon_sym_DASH_DASH, + anon_sym_as, + [195199] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2362), 1, + anon_sym_DASH2, + STATE(5623), 1, + sym_comment, + ACTIONS(2364), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10667), 1, - anon_sym_COLON, - ACTIONS(10693), 1, - anon_sym_EQ, - STATE(6459), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195216] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + anon_sym_DASH2, + STATE(5624), 1, sym_comment, - STATE(7487), 1, - aux_sym_shebang_repeat1, - STATE(8242), 1, - sym_param_type, - [227538] = 7, - ACTIONS(3), 1, + ACTIONS(4940), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195233] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10695), 1, - anon_sym_GT2, - STATE(5907), 1, - aux_sym__multiple_types_repeat1, - STATE(6460), 1, + ACTIONS(9734), 1, + anon_sym_alias, + ACTIONS(9736), 1, + anon_sym_const, + ACTIONS(9738), 1, + anon_sym_def, + ACTIONS(9740), 1, + anon_sym_extern, + ACTIONS(9742), 1, + anon_sym_module, + ACTIONS(9744), 1, + anon_sym_use, + STATE(5625), 1, sym_comment, - STATE(7352), 1, - sym_param_cmd, - [227560] = 7, + [195258] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10697), 1, - anon_sym_SQUOTE, - STATE(6461), 1, + ACTIONS(9746), 1, + anon_sym_DQUOTE2, + STATE(5626), 1, sym_comment, - STATE(6464), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5629), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [227582] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195281] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10699), 1, - anon_sym_GT2, - STATE(5909), 1, - aux_sym__multiple_types_repeat1, - STATE(6462), 1, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8731), 1, + aux_sym_unquoted_token3, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5627), 1, sym_comment, - STATE(7356), 1, - sym_param_cmd, - [227604] = 7, + STATE(6198), 1, + sym__immediate_decimal, + [195306] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10701), 1, - anon_sym_GT2, - STATE(5910), 1, - aux_sym__multiple_types_repeat1, - STATE(6463), 1, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8731), 1, + aux_sym_unquoted_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5628), 1, sym_comment, - STATE(7360), 1, - sym_param_cmd, - [227626] = 7, + STATE(7524), 1, + sym__immediate_decimal, + [195331] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10703), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6464), 1, + ACTIONS(9748), 1, + anon_sym_DQUOTE2, + STATE(5629), 1, sym_comment, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [227648] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195354] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(2156), 1, sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10705), 1, - anon_sym_GT2, - STATE(5998), 1, - aux_sym__multiple_types_repeat1, - STATE(6465), 1, + ACTIONS(9750), 1, + anon_sym_DOT_DOT2, + STATE(5630), 1, sym_comment, - STATE(7363), 1, - sym_param_cmd, - [227670] = 7, + ACTIONS(2150), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9752), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195375] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6466), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9754), 1, + anon_sym_RBRACK, + STATE(5631), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6967), 1, - sym__assignment_pattern, - [227692] = 7, + STATE(6003), 1, + aux_sym_shebang_repeat1, + STATE(6654), 1, + sym_val_list, + STATE(7083), 1, + aux_sym_val_table_repeat1, + [195400] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6467), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9756), 1, + anon_sym_RBRACK, + STATE(5632), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6983), 1, - sym__assignment_pattern, - [227714] = 7, + STATE(6004), 1, + aux_sym_shebang_repeat1, + STATE(6658), 1, + sym_val_list, + STATE(7086), 1, + aux_sym_val_table_repeat1, + [195425] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + sym__entry_separator, + ACTIONS(9758), 1, + anon_sym_DOT_DOT2, + STATE(5633), 1, + sym_comment, + ACTIONS(2158), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9760), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195446] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(8733), 1, sym_identifier, - ACTIONS(10508), 1, + ACTIONS(9702), 1, anon_sym_DOLLAR, - STATE(5695), 1, + STATE(5491), 1, sym_val_variable, - STATE(6468), 1, + STATE(5634), 1, sym_comment, - STATE(6480), 1, + STATE(6027), 1, sym__variable_name, - STATE(7003), 1, + STATE(6247), 1, sym__assignment_pattern, - [227736] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(971), 1, - aux_sym_record_entry_token1, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(1475), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, - sym_path, - STATE(6469), 1, - sym_comment, - [227758] = 7, + [195471] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10707), 1, - anon_sym_SQUOTE, - STATE(6470), 1, + ACTIONS(9762), 1, + anon_sym_DQUOTE2, + STATE(5635), 1, sym_comment, - STATE(6473), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5639), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [227780] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195494] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10709), 1, - anon_sym_GT2, - STATE(5918), 1, - aux_sym__multiple_types_repeat1, - STATE(6471), 1, + ACTIONS(4657), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5636), 1, sym_comment, - STATE(7365), 1, - sym_param_cmd, - [227802] = 7, + STATE(6198), 1, + sym__immediate_decimal, + [195519] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10711), 1, - anon_sym_GT2, - STATE(5919), 1, - aux_sym__multiple_types_repeat1, - STATE(6472), 1, + ACTIONS(4657), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5637), 1, sym_comment, - STATE(7367), 1, - sym_param_cmd, - [227824] = 7, + STATE(7524), 1, + sym__immediate_decimal, + [195544] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(9764), 1, + sym_long_flag_identifier, + ACTIONS(9766), 1, + anon_sym_EQ2, + STATE(5638), 1, + sym_comment, + ACTIONS(4850), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10713), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6473), 1, + ACTIONS(9768), 1, + anon_sym_DQUOTE2, + STATE(5639), 1, sym_comment, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [227846] = 5, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195588] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9770), 1, + anon_sym_RBRACK, + STATE(5640), 1, + sym_comment, + STATE(6005), 1, + aux_sym_shebang_repeat1, + STATE(6687), 1, + sym_val_list, + STATE(7092), 1, + aux_sym_val_table_repeat1, + [195613] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(6474), 1, + STATE(5641), 1, sym_comment, - STATE(7515), 1, + STATE(6542), 1, sym_block, - ACTIONS(10585), 3, - ts_builtin_sym_end, + ACTIONS(9772), 4, sym__newline, anon_sym_SEMI, - [227864] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [195632] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6475), 1, + ACTIONS(9728), 1, + anon_sym_DASH_DASH, + ACTIONS(9730), 1, + anon_sym_DASH2, + ACTIONS(9774), 1, + sym_identifier, + STATE(5642), 1, sym_comment, - ACTIONS(8691), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [227878] = 7, + STATE(5756), 1, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [195655] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10715), 1, - anon_sym_SQUOTE, - STATE(6476), 1, + ACTIONS(1922), 1, + anon_sym_RBRACE, + ACTIONS(1924), 1, + sym__entry_separator, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5643), 1, sym_comment, - STATE(6497), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [227900] = 7, + STATE(7229), 1, + sym_cell_path, + [195680] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6477), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9776), 1, + anon_sym_RBRACK, + STATE(5644), 1, sym_comment, - STATE(6529), 1, - sym__variable_name, - STATE(7446), 1, - sym__assignment_pattern_parenthesized, - [227922] = 7, + STATE(6006), 1, + aux_sym_shebang_repeat1, + STATE(6692), 1, + sym_val_list, + STATE(7095), 1, + aux_sym_val_table_repeat1, + [195705] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5645), 1, + sym_comment, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195722] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10717), 1, - anon_sym_SQUOTE, - STATE(6478), 1, + ACTIONS(9778), 1, + anon_sym_DQUOTE2, + STATE(5646), 1, sym_comment, - STATE(6481), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5649), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [227944] = 7, - ACTIONS(251), 1, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195745] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6479), 1, + ACTIONS(7124), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5647), 1, sym_comment, - STATE(6480), 1, - sym__variable_name, - STATE(6867), 1, - sym__assignment_pattern, - [227966] = 7, - ACTIONS(251), 1, + STATE(6198), 1, + sym__immediate_decimal, + [195770] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10667), 1, - anon_sym_COLON, - ACTIONS(10719), 1, - anon_sym_EQ, - STATE(6480), 1, + ACTIONS(7124), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5648), 1, sym_comment, - STATE(7487), 1, - aux_sym_shebang_repeat1, - STATE(8404), 1, - sym_param_type, - [227988] = 7, + STATE(7524), 1, + sym__immediate_decimal, + [195795] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10721), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6481), 1, + ACTIONS(9780), 1, + anon_sym_DQUOTE2, + STATE(5649), 1, sym_comment, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228010] = 3, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195818] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6482), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9782), 1, + anon_sym_RBRACK, + STATE(5650), 1, sym_comment, - ACTIONS(8593), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228024] = 3, + STATE(6009), 1, + aux_sym_shebang_repeat1, + STATE(6714), 1, + sym_val_list, + STATE(7102), 1, + aux_sym_val_table_repeat1, + [195843] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6483), 1, + ACTIONS(9784), 1, + sym_long_flag_identifier, + ACTIONS(9786), 1, + anon_sym_EQ2, + STATE(5651), 1, sym_comment, - ACTIONS(8607), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228038] = 3, + ACTIONS(4850), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4852), 2, + sym_identifier, + anon_sym_DASH2, + [195864] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6484), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9788), 1, + anon_sym_RBRACK, + STATE(5652), 1, sym_comment, - ACTIONS(8611), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228052] = 5, + STATE(6010), 1, + aux_sym_shebang_repeat1, + STATE(6719), 1, + sym_val_list, + STATE(7104), 1, + aux_sym_val_table_repeat1, + [195889] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(222), 1, - aux_sym__block_body_repeat1, - STATE(6485), 1, + STATE(5653), 1, sym_comment, - ACTIONS(141), 2, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195906] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(1478), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [228070] = 7, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4879), 1, + sym__blosure, + STATE(5654), 1, + sym_comment, + [195931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10723), 1, - anon_sym_SQUOTE, - STATE(6486), 1, + ACTIONS(9790), 1, + anon_sym_DQUOTE2, + STATE(5655), 1, sym_comment, - STATE(6487), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5659), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228092] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195954] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10725), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6487), 1, + ACTIONS(7045), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5656), 1, sym_comment, - STATE(7667), 1, - sym_expr_interpolated, - [228114] = 5, + STATE(6198), 1, + sym__immediate_decimal, + [195979] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10727), 1, - anon_sym_LT, - STATE(6488), 1, + ACTIONS(7045), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5657), 1, sym_comment, - ACTIONS(8323), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8327), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [228132] = 3, + STATE(7524), 1, + sym__immediate_decimal, + [196004] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6489), 1, - sym_comment, - ACTIONS(8617), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, anon_sym_LBRACE, - [228146] = 5, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4879), 1, + sym__blosure, + STATE(5658), 1, + sym_comment, + STATE(5734), 1, + aux_sym_shebang_repeat1, + [196029] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10729), 1, - anon_sym_LT, - STATE(6490), 1, - sym_comment, - ACTIONS(8323), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8327), 2, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9792), 1, + anon_sym_DQUOTE2, + STATE(5659), 1, + sym_comment, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196052] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9794), 1, + anon_sym_RBRACK, + STATE(5660), 1, + sym_comment, + STATE(6014), 1, + aux_sym_shebang_repeat1, + STATE(6740), 1, + sym_val_list, + STATE(7111), 1, + aux_sym_val_table_repeat1, + [196077] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9796), 1, + anon_sym_RBRACK, + STATE(5661), 1, + sym_comment, + STATE(6015), 1, + aux_sym_shebang_repeat1, + STATE(6746), 1, + sym_val_list, + STATE(7113), 1, + aux_sym_val_table_repeat1, + [196102] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9798), 1, anon_sym_RBRACK, - anon_sym_GT2, - [228164] = 6, + STATE(5662), 1, + sym_comment, + STATE(5920), 1, + aux_sym_shebang_repeat1, + STATE(6763), 1, + sym_val_list, + STATE(6997), 1, + aux_sym_val_table_repeat1, + [196127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6084), 1, + STATE(5663), 1, + sym_comment, + ACTIONS(1018), 3, anon_sym_RBRACK, - ACTIONS(6090), 1, - sym__entry_separator, - ACTIONS(10551), 1, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(6491), 1, - sym_comment, - ACTIONS(10553), 2, + ACTIONS(1020), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [228184] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6459), 1, - sym__variable_name, - STATE(6492), 1, - sym_comment, - STATE(7904), 1, - sym__assignment_pattern, - [228206] = 7, + sym__entry_separator, + [196144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10731), 1, - anon_sym_SQUOTE, - STATE(6493), 1, + ACTIONS(9800), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9802), 1, + aux_sym__immediate_decimal_token2, + STATE(5664), 1, sym_comment, - STATE(6496), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [228228] = 4, + ACTIONS(1727), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [196165] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5222), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(6494), 1, + STATE(5665), 1, sym_comment, - ACTIONS(5220), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1959), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, + anon_sym_as, + [196182] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, anon_sym_LBRACE, - [228244] = 6, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4880), 1, + sym__blosure, + STATE(5666), 1, + sym_comment, + [196207] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1838), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, anon_sym_LBRACE, - ACTIONS(10733), 1, - anon_sym_DOT_DOT2, - STATE(6495), 1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4880), 1, + sym__blosure, + STATE(5667), 1, sym_comment, - ACTIONS(10735), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228264] = 7, + STATE(5764), 1, + aux_sym_shebang_repeat1, + [196232] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10737), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6496), 1, + ACTIONS(9804), 1, + anon_sym_DQUOTE2, + STATE(5668), 1, sym_comment, - STATE(7667), 1, + STATE(5671), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228286] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196255] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4548), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5669), 1, + sym_comment, + STATE(6198), 1, + sym__immediate_decimal, + [196280] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4548), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5670), 1, + sym_comment, + STATE(7524), 1, + sym__immediate_decimal, + [196305] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10739), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6497), 1, + ACTIONS(9806), 1, + anon_sym_DQUOTE2, + STATE(5671), 1, sym_comment, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228308] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196328] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6459), 1, - sym__variable_name, - STATE(6498), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9808), 1, + anon_sym_RBRACK, + STATE(5672), 1, sym_comment, - STATE(7907), 1, - sym__assignment_pattern, - [228330] = 7, + STATE(6017), 1, + aux_sym_shebang_repeat1, + STATE(6768), 1, + sym_val_list, + STATE(7120), 1, + aux_sym_val_table_repeat1, + [196353] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6499), 1, + STATE(5673), 1, sym_comment, - STATE(6529), 1, - sym__variable_name, - STATE(7456), 1, - sym__assignment_pattern_parenthesized, - [228352] = 3, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196370] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6500), 1, + STATE(5674), 1, sym_comment, - ACTIONS(8725), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228366] = 4, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196387] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5226), 1, + ACTIONS(9728), 1, + anon_sym_DASH_DASH, + ACTIONS(9730), 1, anon_sym_DASH2, - STATE(6501), 1, - sym_comment, - ACTIONS(5224), 4, + ACTIONS(9810), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [228382] = 7, + STATE(5675), 1, + sym_comment, + STATE(5752), 1, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [196410] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9812), 1, + anon_sym_RBRACK, + STATE(5676), 1, + sym_comment, + STATE(6018), 1, + aux_sym_shebang_repeat1, + STATE(6772), 1, + sym_val_list, + STATE(7122), 1, + aux_sym_val_table_repeat1, + [196435] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10741), 1, - anon_sym_SQUOTE, - STATE(6502), 1, + ACTIONS(9814), 1, + anon_sym_DQUOTE2, + STATE(5677), 1, sym_comment, - STATE(6503), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5681), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228404] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196458] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10743), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6503), 1, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8470), 1, + aux_sym_unquoted_token3, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5678), 1, sym_comment, - STATE(7667), 1, - sym_expr_interpolated, - [228426] = 5, + STATE(6198), 1, + sym__immediate_decimal, + [196483] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8470), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5679), 1, + sym_comment, + STATE(7524), 1, + sym__immediate_decimal, + [196508] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, + ACTIONS(1727), 1, aux_sym_unquoted_token2, - ACTIONS(10529), 1, + ACTIONS(9816), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9818), 1, aux_sym__immediate_decimal_token2, - STATE(6504), 1, + STATE(5680), 1, sym_comment, - ACTIONS(1781), 3, + ACTIONS(1729), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [228444] = 3, + [196529] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9820), 1, + anon_sym_DQUOTE2, + STATE(5681), 1, + sym_comment, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196552] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6505), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9822), 1, + anon_sym_RBRACK, + STATE(5682), 1, sym_comment, - ACTIONS(8621), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228458] = 5, + STATE(6021), 1, + aux_sym_shebang_repeat1, + STATE(6794), 1, + sym_val_list, + STATE(7127), 1, + aux_sym_val_table_repeat1, + [196577] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(6506), 1, + STATE(5683), 1, sym_comment, - STATE(7331), 1, + STATE(6106), 1, sym_block, - ACTIONS(10306), 3, - ts_builtin_sym_end, + ACTIONS(9824), 4, sym__newline, anon_sym_SEMI, - [228476] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10745), 1, - anon_sym_SQUOTE, - STATE(6507), 1, - sym_comment, - STATE(6509), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [228498] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196596] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6508), 1, - sym_comment, - STATE(6529), 1, - sym__variable_name, - STATE(7785), 1, - sym__assignment_pattern_parenthesized, - [228520] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10747), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6509), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9826), 1, + anon_sym_RBRACK, + STATE(5684), 1, sym_comment, - STATE(7667), 1, - sym_expr_interpolated, - [228542] = 4, + STATE(6022), 1, + aux_sym_shebang_repeat1, + STATE(6798), 1, + sym_val_list, + STATE(7129), 1, + aux_sym_val_table_repeat1, + [196621] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6510), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1781), 3, + ACTIONS(6213), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228558] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6511), 1, + STATE(5685), 1, sym_comment, - ACTIONS(1002), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1000), 3, - anon_sym_RBRACK, + STATE(6107), 1, + sym_block, + ACTIONS(9824), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [228574] = 5, + [196640] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9615), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10749), 1, - anon_sym_DOT, - STATE(6512), 1, + ACTIONS(4898), 1, + anon_sym_DOLLAR, + ACTIONS(9828), 1, + anon_sym_EQ2, + ACTIONS(9830), 1, + sym_short_flag_identifier, + STATE(5686), 1, sym_comment, - ACTIONS(1781), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [228592] = 7, + ACTIONS(4900), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [196661] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10751), 1, - anon_sym_SQUOTE, - STATE(6513), 1, + ACTIONS(9832), 1, + anon_sym_DQUOTE2, + STATE(5687), 1, sym_comment, - STATE(6514), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5690), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228614] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196684] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10753), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6514), 1, + ACTIONS(8153), 1, + aux_sym_unquoted_token3, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + STATE(5688), 1, sym_comment, - STATE(7667), 1, - sym_expr_interpolated, - [228636] = 3, - ACTIONS(251), 1, + STATE(6198), 1, + sym__immediate_decimal, + [196709] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6515), 1, + ACTIONS(8153), 1, + aux_sym_unquoted_token3, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + STATE(5689), 1, sym_comment, - ACTIONS(8785), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228650] = 4, + STATE(7524), 1, + sym__immediate_decimal, + [196734] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6516), 1, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9834), 1, + anon_sym_DQUOTE2, + STATE(5690), 1, sym_comment, - ACTIONS(1006), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1004), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [228666] = 4, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6517), 1, + STATE(5691), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(996), 3, + ACTIONS(2174), 3, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK2, - [228682] = 4, + anon_sym_DOT_DOT2, + ACTIONS(2176), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [196774] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(6518), 1, - sym_comment, - ACTIONS(988), 2, - anon_sym_DOT, + ACTIONS(6233), 1, sym__entry_separator, - ACTIONS(986), 3, - anon_sym_RBRACK, + ACTIONS(8783), 1, + anon_sym_DOT2, + ACTIONS(9836), 1, anon_sym_RBRACE, - anon_sym_QMARK2, - [228698] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6519), 1, - sym_comment, - ACTIONS(8625), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228712] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10655), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10755), 1, - anon_sym_SQUOTE, - STATE(6520), 1, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5692), 1, sym_comment, - STATE(6523), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, - sym_expr_interpolated, - [228734] = 4, + STATE(7190), 1, + sym_cell_path, + [196799] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6521), 1, - sym_comment, - ACTIONS(1771), 2, - anon_sym_DOT_DOT2, + ACTIONS(1735), 1, aux_sym_unquoted_token2, - ACTIONS(1773), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [228750] = 7, + ACTIONS(9839), 1, + anon_sym_DOT, + ACTIONS(9841), 1, + aux_sym__immediate_decimal_token2, + STATE(5693), 1, + sym_comment, + ACTIONS(1737), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [196820] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_record_entry_token1, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(2104), 1, - sym_cell_path, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, - sym_path, - STATE(6522), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9843), 1, + anon_sym_RBRACK, + STATE(5694), 1, sym_comment, - [228772] = 7, + STATE(6024), 1, + aux_sym_shebang_repeat1, + STATE(6823), 1, + sym_val_list, + STATE(7139), 1, + aux_sym_val_table_repeat1, + [196845] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10757), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6523), 1, + ACTIONS(9845), 1, + anon_sym_DQUOTE2, + STATE(5695), 1, sym_comment, - STATE(7667), 1, + STATE(5724), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228794] = 3, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196868] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6524), 1, + ACTIONS(9601), 1, + anon_sym_DASH2, + STATE(5696), 1, sym_comment, - ACTIONS(8789), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228808] = 7, + ACTIONS(9599), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196885] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10759), 1, - anon_sym_SQUOTE, - STATE(6525), 1, + ACTIONS(9847), 1, + anon_sym_DQUOTE2, + STATE(5697), 1, sym_comment, - STATE(6527), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5698), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228830] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6526), 1, - sym_comment, - ACTIONS(8527), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228844] = 7, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196908] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10761), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6527), 1, + ACTIONS(9849), 1, + anon_sym_DQUOTE2, + STATE(5698), 1, sym_comment, - STATE(7667), 1, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [228866] = 3, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196931] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6528), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9851), 1, + anon_sym_RBRACK, + STATE(5699), 1, sym_comment, - ACTIONS(8793), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228880] = 7, + STATE(6028), 1, + aux_sym_shebang_repeat1, + STATE(6842), 1, + sym_val_list, + STATE(7147), 1, + aux_sym_val_table_repeat1, + [196956] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10667), 1, - anon_sym_COLON, - ACTIONS(10763), 1, - anon_sym_EQ, - STATE(6529), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9853), 1, + anon_sym_RBRACK, + STATE(5700), 1, sym_comment, - STATE(7487), 1, + STATE(6029), 1, aux_sym_shebang_repeat1, - STATE(8426), 1, - sym_param_type, - [228902] = 7, - ACTIONS(3), 1, + STATE(6845), 1, + sym_val_list, + STATE(7150), 1, + aux_sym_val_table_repeat1, + [196981] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10765), 1, - anon_sym_GT2, - STATE(5986), 1, - aux_sym__multiple_types_repeat1, - STATE(6530), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(9855), 1, + anon_sym_DOT_DOT2, + STATE(5701), 1, sym_comment, - STATE(7789), 1, - sym_param_cmd, - [228924] = 5, + ACTIONS(1827), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9857), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197002] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(6531), 1, + ACTIONS(2366), 1, + anon_sym_DASH2, + STATE(5702), 1, sym_comment, - STATE(7682), 1, - sym_block, - ACTIONS(10504), 3, + ACTIONS(2368), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228942] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6532), 1, - sym_comment, - ACTIONS(8539), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [228956] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1955), 1, - sym__table_head_separator, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, - sym_path, - STATE(6105), 1, - sym_cell_path, - STATE(6533), 1, - sym_comment, - [228978] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1959), 1, - sym__table_head_separator, - ACTIONS(6826), 1, - anon_sym_DOT, - STATE(3706), 1, - aux_sym_cell_path_repeat1, - STATE(3825), 1, - sym_path, - STATE(6314), 1, - sym_cell_path, - STATE(6534), 1, - sym_comment, - [229000] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(10767), 1, - anon_sym_use, - ACTIONS(10769), 1, - anon_sym_list, - ACTIONS(10771), 1, - anon_sym_hide, - ACTIONS(10773), 1, - anon_sym_new, - STATE(6535), 1, - sym_comment, - [229022] = 7, + anon_sym_DASH_DASH, + anon_sym_as, + [197019] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10775), 1, - anon_sym_SQUOTE, - STATE(6536), 1, + ACTIONS(9859), 1, + anon_sym_DQUOTE2, + STATE(5703), 1, sym_comment, - STATE(6541), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7667), 1, + STATE(5704), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [229044] = 5, - ACTIONS(251), 1, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197042] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(6537), 1, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9861), 1, + anon_sym_DQUOTE2, + STATE(5704), 1, sym_comment, - STATE(7683), 1, - sym_block, - ACTIONS(10504), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229062] = 7, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197065] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10667), 1, - anon_sym_COLON, - ACTIONS(10777), 1, - anon_sym_EQ, - STATE(6538), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9863), 1, + anon_sym_RBRACK, + STATE(5705), 1, sym_comment, - STATE(7487), 1, + STATE(6030), 1, aux_sym_shebang_repeat1, - STATE(8639), 1, - sym_param_type, - [229084] = 5, + STATE(6859), 1, + sym_val_list, + STATE(7155), 1, + aux_sym_val_table_repeat1, + [197090] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(6539), 1, - sym_comment, - STATE(7686), 1, - sym_block, - ACTIONS(10597), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229102] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(8585), 1, - sym__space, - STATE(5304), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6443), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6540), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9865), 1, + anon_sym_RBRACK, + STATE(5706), 1, sym_comment, - STATE(8045), 1, - sym__flags_parenthesized, - [229124] = 7, + STATE(6031), 1, + aux_sym_shebang_repeat1, + STATE(6863), 1, + sym_val_list, + STATE(7157), 1, + aux_sym_val_table_repeat1, + [197115] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10655), 1, + ACTIONS(9692), 1, anon_sym_LPAREN, - ACTIONS(10657), 1, - sym_unescaped_interpolated_content, - ACTIONS(10779), 1, - anon_sym_SQUOTE, - STATE(6376), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6541), 1, + ACTIONS(9867), 1, + anon_sym_DQUOTE2, + STATE(5707), 1, sym_comment, - STATE(7667), 1, + STATE(5709), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - [229146] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6542), 1, - sym_comment, - ACTIONS(8629), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229160] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10781), 1, - anon_sym_GT2, - STATE(5990), 1, - aux_sym__multiple_types_repeat1, - STATE(6543), 1, - sym_comment, - STATE(7593), 1, - sym_param_cmd, - [229182] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6544), 1, - sym_comment, - ACTIONS(8633), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229196] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10233), 1, - anon_sym_DASH2, - STATE(6545), 1, - sym_comment, - ACTIONS(10231), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [229212] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10783), 1, - anon_sym_PIPE, - ACTIONS(10785), 1, - anon_sym_if, - ACTIONS(10787), 1, - anon_sym_EQ_GT, - STATE(6546), 1, - sym_comment, - STATE(7801), 1, - aux_sym_match_pattern_repeat1, - STATE(8274), 1, - sym_match_guard, - [229234] = 3, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197138] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6547), 1, + ACTIONS(9605), 1, + aux_sym__immediate_decimal_token2, + STATE(5708), 1, sym_comment, - ACTIONS(8641), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 3, anon_sym_LBRACE, - [229248] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197157] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10789), 1, - anon_sym_QMARK2, - STATE(6548), 1, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + anon_sym_DQUOTE2, + STATE(5709), 1, sym_comment, - ACTIONS(1008), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1010), 2, - anon_sym_DOT, - sym__entry_separator, - [229266] = 7, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197180] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1943), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2048), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6549), 1, - sym_comment, - [229288] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10791), 1, - anon_sym_QMARK2, - STATE(6550), 1, - sym_comment, - ACTIONS(990), 2, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9871), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(992), 2, - anon_sym_DOT, - sym__entry_separator, - [229306] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2060), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6551), 1, - sym_comment, - [229328] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(10767), 1, - anon_sym_use, - ACTIONS(10769), 1, - anon_sym_list, - ACTIONS(10771), 1, - anon_sym_hide, - ACTIONS(10773), 1, - anon_sym_new, - STATE(6552), 1, - sym_comment, - [229350] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6529), 1, - sym__variable_name, - STATE(6553), 1, + STATE(5710), 1, sym_comment, - STATE(7458), 1, - sym__assignment_pattern_parenthesized, - [229372] = 7, + STATE(5802), 1, + aux_sym_shebang_repeat1, + STATE(6879), 1, + sym_val_list, + STATE(7161), 1, + aux_sym_val_table_repeat1, + [197205] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10667), 1, - anon_sym_COLON, - ACTIONS(10793), 1, - anon_sym_EQ, - STATE(6554), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9873), 1, + anon_sym_RBRACK, + STATE(5711), 1, sym_comment, - STATE(7487), 1, + STATE(6033), 1, aux_sym_shebang_repeat1, - STATE(8647), 1, - sym_param_type, - [229394] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6555), 1, - sym_comment, - ACTIONS(8535), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229408] = 5, + STATE(6884), 1, + sym_val_list, + STATE(7164), 1, + aux_sym_val_table_repeat1, + [197230] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(1004), 1, anon_sym_DASH2, - ACTIONS(10795), 1, - anon_sym_EQ2, - STATE(6556), 1, + STATE(5712), 1, sym_comment, - ACTIONS(5112), 3, - anon_sym_DOLLAR, + ACTIONS(1000), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [229426] = 3, - ACTIONS(251), 1, + anon_sym_as, + [197247] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6557), 1, + ACTIONS(2121), 1, + sym__entry_separator, + ACTIONS(9875), 1, + anon_sym_DOT_DOT2, + STATE(5713), 1, sym_comment, - ACTIONS(8479), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229440] = 7, + ACTIONS(2115), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9877), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197268] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6558), 1, + ACTIONS(9879), 1, + anon_sym_RBRACK, + STATE(5714), 1, sym_comment, - STATE(7651), 1, + STATE(6034), 1, + aux_sym_shebang_repeat1, + STATE(6898), 1, sym_val_list, - STATE(7755), 1, + STATE(7169), 1, aux_sym_val_table_repeat1, - [229462] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6559), 1, - sym_comment, - ACTIONS(8645), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229476] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6560), 1, - sym_comment, - ACTIONS(8729), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229490] = 7, + [197293] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6561), 1, + ACTIONS(9881), 1, + anon_sym_RBRACK, + STATE(5715), 1, sym_comment, - STATE(7742), 1, + STATE(6035), 1, + aux_sym_shebang_repeat1, + STATE(6902), 1, sym_val_list, - STATE(7766), 1, + STATE(7172), 1, aux_sym_val_table_repeat1, - [229512] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6562), 1, - sym_comment, - ACTIONS(8495), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229526] = 3, + [197318] = 8, ACTIONS(251), 1, - anon_sym_POUND, - STATE(6563), 1, - sym_comment, - ACTIONS(8799), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229540] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10797), 1, - anon_sym_GT2, - STATE(5840), 1, - aux_sym__multiple_types_repeat1, - STATE(6564), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9883), 1, + anon_sym_RBRACK, + STATE(5716), 1, sym_comment, - STATE(7643), 1, - sym_param_cmd, - [229562] = 3, + STATE(6036), 1, + aux_sym_shebang_repeat1, + STATE(6915), 1, + sym_val_list, + STATE(7177), 1, + aux_sym_val_table_repeat1, + [197343] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6565), 1, + ACTIONS(2370), 1, + anon_sym_DASH2, + STATE(5717), 1, sym_comment, - ACTIONS(8509), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229576] = 7, - ACTIONS(3), 1, + ACTIONS(2372), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197360] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(8585), 1, - sym__space, - STATE(5180), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6540), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6566), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + ACTIONS(9885), 1, + anon_sym_RBRACK, + STATE(5718), 1, sym_comment, - STATE(8045), 1, - sym__flags_parenthesized, - [229598] = 7, + STATE(6037), 1, + aux_sym_shebang_repeat1, + STATE(6919), 1, + sym_val_list, + STATE(7180), 1, + aux_sym_val_table_repeat1, + [197385] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(7271), 1, + anon_sym_RBRACK, + ACTIONS(7273), 1, sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10799), 1, - anon_sym_GT2, - STATE(5841), 1, - aux_sym__multiple_types_repeat1, - STATE(6567), 1, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5719), 1, sym_comment, - STATE(7644), 1, - sym_param_cmd, - [229620] = 5, + STATE(7214), 1, + sym_cell_path, + [197410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, - aux_sym__immediate_decimal_token2, - STATE(6568), 1, + ACTIONS(2245), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(5720), 1, sym_comment, - ACTIONS(1779), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [229638] = 7, - ACTIONS(251), 1, + ACTIONS(2241), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [197429] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2062), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6569), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(5721), 1, sym_comment, - [229660] = 5, + ACTIONS(1004), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [197448] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(5027), 1, anon_sym_DASH2, - ACTIONS(10801), 1, - anon_sym_EQ2, - STATE(6570), 1, + STATE(5722), 1, sym_comment, - ACTIONS(5130), 3, - anon_sym_DOLLAR, + ACTIONS(5025), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [229678] = 3, + anon_sym_as, + [197465] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6571), 1, + ACTIONS(5031), 1, + anon_sym_DASH2, + STATE(5723), 1, sym_comment, - ACTIONS(8513), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229692] = 3, + ACTIONS(5029), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197482] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9887), 1, + anon_sym_DQUOTE2, + STATE(5724), 1, + sym_comment, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197505] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6572), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5725), 1, sym_comment, - ACTIONS(8519), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229706] = 5, + STATE(6027), 1, + sym__variable_name, + STATE(6248), 1, + sym__assignment_pattern, + [197530] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10803), 1, - anon_sym_EQ2, - ACTIONS(10805), 1, - sym_short_flag_identifier, - STATE(6573), 1, + ACTIONS(1977), 1, + anon_sym_DASH2, + STATE(5726), 1, sym_comment, - ACTIONS(5029), 3, - sym_identifier, + ACTIONS(1979), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH2, - [229724] = 3, + anon_sym_as, + [197547] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6574), 1, - sym_comment, - ACTIONS(8803), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(9680), 1, anon_sym_LBRACE, - [229738] = 4, + STATE(5727), 1, + sym_comment, + STATE(6620), 1, + sym_val_record, + ACTIONS(9889), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197566] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6575), 1, - sym_comment, - ACTIONS(1799), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1801), 3, + ACTIONS(9680), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229754] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10551), 1, - anon_sym_DOT_DOT2, - ACTIONS(10807), 1, - anon_sym_RBRACE, - ACTIONS(10809), 1, - sym__entry_separator, - STATE(6576), 1, + STATE(5728), 1, sym_comment, - ACTIONS(10553), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229774] = 6, + STATE(6621), 1, + sym_val_record, + ACTIONS(9891), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197585] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10551), 1, - anon_sym_DOT_DOT2, - ACTIONS(10811), 1, - anon_sym_RBRACE, - ACTIONS(10813), 1, - sym__entry_separator, - STATE(6577), 1, + STATE(5729), 1, sym_comment, - ACTIONS(10553), 2, + ACTIONS(1717), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1719), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [229794] = 5, + sym__entry_separator, + [197602] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10348), 1, - aux_sym__immediate_decimal_token2, - STATE(6578), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 2, - anon_sym_LPAREN2, + ACTIONS(7295), 1, + anon_sym_RBRACK, + ACTIONS(7297), 1, sym__entry_separator, - [229812] = 7, + ACTIONS(8783), 1, + anon_sym_DOT2, + STATE(5169), 1, + aux_sym_cell_path_repeat1, + STATE(5562), 1, + sym_path, + STATE(5730), 1, + sym_comment, + STATE(7307), 1, + sym_cell_path, + [197627] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(8733), 1, sym_identifier, - ACTIONS(10508), 1, + ACTIONS(9702), 1, anon_sym_DOLLAR, - STATE(5695), 1, + STATE(5491), 1, sym_val_variable, - STATE(6538), 1, - sym__variable_name, - STATE(6579), 1, + STATE(5731), 1, sym_comment, - STATE(6967), 1, + STATE(6027), 1, + sym__variable_name, + STATE(6244), 1, sym__assignment_pattern, - [229834] = 7, + [197652] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(8733), 1, sym_identifier, - ACTIONS(10508), 1, + ACTIONS(9702), 1, anon_sym_DOLLAR, - STATE(5695), 1, + STATE(5491), 1, sym_val_variable, - STATE(6538), 1, - sym__variable_name, - STATE(6580), 1, + STATE(5732), 1, sym_comment, - STATE(6983), 1, + STATE(6027), 1, + sym__variable_name, + STATE(6247), 1, sym__assignment_pattern, - [229856] = 7, + [197677] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(8733), 1, sym_identifier, - ACTIONS(10508), 1, + ACTIONS(9702), 1, anon_sym_DOLLAR, - STATE(5695), 1, + STATE(5491), 1, sym_val_variable, - STATE(6538), 1, - sym__variable_name, - STATE(6581), 1, + STATE(5733), 1, sym_comment, - STATE(7003), 1, + STATE(6027), 1, + sym__variable_name, + STATE(6248), 1, sym__assignment_pattern, - [229878] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_RBRACE, - ACTIONS(1848), 1, - sym__entry_separator, - ACTIONS(10815), 1, - anon_sym_DOT_DOT2, - STATE(6582), 1, - sym_comment, - ACTIONS(10817), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [229898] = 7, + [197702] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6538), 1, - sym__variable_name, - STATE(6583), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4909), 1, + sym__blosure, + STATE(5734), 1, sym_comment, - STATE(6867), 1, - sym__assignment_pattern, - [229920] = 3, + [197727] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6584), 1, + ACTIONS(2374), 1, + anon_sym_DASH2, + STATE(5735), 1, sym_comment, - ACTIONS(8733), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [229934] = 7, + ACTIONS(2376), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197744] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2189), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6585), 1, + ACTIONS(2378), 1, + anon_sym_DASH2, + STATE(5736), 1, sym_comment, - [229956] = 5, + ACTIONS(2380), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197761] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5114), 1, + ACTIONS(1989), 1, anon_sym_DASH2, - ACTIONS(10819), 1, - anon_sym_EQ2, - STATE(6586), 1, + STATE(5737), 1, sym_comment, - ACTIONS(5112), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1991), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [229974] = 7, + anon_sym_as, + [197778] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6587), 1, + ACTIONS(9893), 1, + anon_sym_RBRACK, + STATE(5738), 1, sym_comment, - STATE(7589), 1, + STATE(5830), 1, + aux_sym_shebang_repeat1, + STATE(6787), 1, sym_val_list, - STATE(7796), 1, + STATE(6789), 1, aux_sym_val_table_repeat1, - [229996] = 7, + [197803] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6588), 1, + ACTIONS(9895), 1, + anon_sym_RBRACK, + STATE(5739), 1, sym_comment, - STATE(7641), 1, + STATE(5903), 1, + aux_sym_shebang_repeat1, + STATE(6978), 1, sym_val_list, - STATE(7800), 1, + STATE(6981), 1, aux_sym_val_table_repeat1, - [230018] = 5, + [197828] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10821), 1, + ACTIONS(9897), 1, + anon_sym_DOT, + ACTIONS(9899), 1, aux_sym__immediate_decimal_token2, - STATE(6589), 1, + STATE(5740), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 2, + ACTIONS(1735), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 2, anon_sym_LPAREN2, sym__entry_separator, - [230036] = 7, + [197849] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(1997), 1, + anon_sym_DASH2, + STATE(5741), 1, + sym_comment, + ACTIONS(1999), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6590), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197866] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_DASH2, + STATE(5742), 1, sym_comment, - STATE(7748), 1, - sym_val_list, - STATE(7756), 1, - aux_sym_val_table_repeat1, - [230058] = 7, + ACTIONS(2003), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197883] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, anon_sym_LBRACE, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1898), 1, - sym_path, - STATE(2096), 1, - sym_cell_path, - STATE(5820), 1, - aux_sym_cell_path_repeat1, - STATE(6591), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4932), 1, + sym__blosure, + STATE(5743), 1, sym_comment, - [230080] = 7, + [197908] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10823), 1, - anon_sym_DASH_DASH, - ACTIONS(10825), 1, + ACTIONS(2382), 1, anon_sym_DASH2, - ACTIONS(10827), 1, - anon_sym_in2, - STATE(6592), 1, + STATE(5744), 1, sym_comment, - STATE(8666), 1, - sym_long_flag, - STATE(8677), 1, - sym_short_flag, - [230102] = 5, - ACTIONS(3), 1, + ACTIONS(2384), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197925] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_DOT, - ACTIONS(10829), 1, - anon_sym_QMARK2, - STATE(6593), 1, + ACTIONS(2013), 1, + anon_sym_DASH2, + STATE(5745), 1, sym_comment, - ACTIONS(1008), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [230120] = 6, + ACTIONS(2015), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197942] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(2386), 1, + anon_sym_DASH2, + STATE(5746), 1, + sym_comment, + ACTIONS(2388), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(10831), 1, - sym_long_flag_identifier, - ACTIONS(10833), 1, - anon_sym_EQ2, - STATE(6594), 1, + anon_sym_as, + [197959] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2253), 1, + anon_sym_LBRACE, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(5747), 1, sym_comment, - ACTIONS(5012), 2, + ACTIONS(2249), 4, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, - [230140] = 5, + [197978] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(2390), 1, anon_sym_DASH2, - ACTIONS(10835), 1, - anon_sym_EQ2, - STATE(6595), 1, + STATE(5748), 1, + sym_comment, + ACTIONS(2392), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197995] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2017), 1, + anon_sym_DASH2, + STATE(5749), 1, + sym_comment, + ACTIONS(2019), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198012] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4888), 1, + sym__blosure, + STATE(5568), 1, + aux_sym_shebang_repeat1, + STATE(5750), 1, + sym_comment, + [198037] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + ACTIONS(2259), 1, + anon_sym_LBRACE, + STATE(5751), 1, sym_comment, - ACTIONS(5130), 3, + ACTIONS(2257), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [230158] = 7, + anon_sym_DASH2, + [198056] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10823), 1, + ACTIONS(9728), 1, anon_sym_DASH_DASH, - ACTIONS(10825), 1, + ACTIONS(9730), 1, anon_sym_DASH2, - ACTIONS(10837), 1, - anon_sym_in2, - STATE(6596), 1, + ACTIONS(9901), 1, + sym_identifier, + STATE(5752), 1, sym_comment, - STATE(8431), 1, + STATE(5756), 1, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, sym_short_flag, - STATE(8456), 1, sym_long_flag, - [230180] = 3, + [198079] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6597), 1, + ACTIONS(9686), 1, + sym__newline, + ACTIONS(9688), 1, + anon_sym_SEMI, + ACTIONS(9903), 1, + anon_sym_RPAREN, + STATE(212), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5753), 1, sym_comment, - ACTIONS(8523), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [230194] = 6, + STATE(6079), 1, + aux_sym__block_body_repeat1, + STATE(6689), 1, + aux_sym_shebang_repeat1, + [198104] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - ACTIONS(10839), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10841), 1, - aux_sym__immediate_decimal_token2, - STATE(6598), 1, + ACTIONS(1945), 1, + anon_sym_DASH2, + STATE(5754), 1, sym_comment, - ACTIONS(1773), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230214] = 7, + ACTIONS(1947), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198121] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6434), 1, - sym__variable_name, - STATE(6599), 1, + ACTIONS(2413), 1, + anon_sym_DASH2, + STATE(5755), 1, sym_comment, - STATE(6967), 1, - sym__assignment_pattern, - [230236] = 7, + ACTIONS(2415), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198138] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(8905), 1, sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6434), 1, - sym__variable_name, - STATE(6600), 1, + ACTIONS(9905), 1, + anon_sym_DASH_DASH, + ACTIONS(9908), 1, + anon_sym_DASH2, + STATE(5756), 2, sym_comment, - STATE(6983), 1, - sym__assignment_pattern, - [230258] = 7, + aux_sym_ctrl_do_repeat1, + STATE(5904), 2, + sym_short_flag, + sym_long_flag, + [198159] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6434), 1, - sym__variable_name, - STATE(6601), 1, + ACTIONS(9911), 1, + anon_sym_DOT_DOT2, + STATE(5757), 1, sym_comment, - STATE(7003), 1, - sym__assignment_pattern, - [230280] = 7, + ACTIONS(9913), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2121), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198178] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6434), 1, - sym__variable_name, - STATE(6602), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(5758), 1, sym_comment, - STATE(6867), 1, - sym__assignment_pattern, - [230302] = 7, + STATE(6098), 1, + sym_block, + ACTIONS(9915), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198197] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6603), 1, + ACTIONS(9917), 1, + anon_sym_DOT_DOT2, + STATE(5759), 1, sym_comment, - STATE(7813), 1, - sym_val_list, - STATE(7822), 1, - aux_sym_val_table_repeat1, - [230324] = 7, + ACTIONS(9919), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198216] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6604), 1, + ACTIONS(9921), 1, + anon_sym_DOT_DOT2, + STATE(5760), 1, sym_comment, - STATE(7819), 1, - sym_val_list, - STATE(7824), 1, - aux_sym_val_table_repeat1, - [230346] = 7, + ACTIONS(9923), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2156), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198235] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6605), 1, + ACTIONS(9925), 1, + anon_sym_DOT_DOT2, + STATE(5761), 1, sym_comment, - STATE(7831), 1, - aux_sym_val_table_repeat1, - STATE(7968), 1, - sym_val_list, - [230368] = 7, + ACTIONS(9927), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2164), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198254] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5680), 1, + anon_sym_DOT2, + STATE(5762), 1, + sym_comment, + STATE(5778), 1, + aux_sym_cell_path_repeat1, + STATE(6534), 1, + sym_path, + ACTIONS(948), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [198275] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6606), 1, + ACTIONS(9929), 1, + anon_sym_DOT_DOT2, + STATE(5763), 1, sym_comment, - STATE(7834), 1, - aux_sym_val_table_repeat1, - STATE(7974), 1, - sym_val_list, - [230390] = 7, + ACTIONS(9931), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5915), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198294] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(6607), 1, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4910), 1, + sym__blosure, + STATE(5764), 1, sym_comment, - STATE(7328), 1, - sym_val_list, - STATE(7841), 1, - aux_sym_val_table_repeat1, - [230412] = 7, + [198319] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6608), 1, + ACTIONS(9929), 1, + anon_sym_DOT_DOT2, + STATE(5765), 1, sym_comment, - STATE(7334), 1, - sym_val_list, - STATE(7844), 1, - aux_sym_val_table_repeat1, - [230434] = 7, + ACTIONS(9931), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5922), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198338] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6609), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(5766), 1, sym_comment, - STATE(7353), 1, - sym_val_list, - STATE(7850), 1, - aux_sym_val_table_repeat1, - [230456] = 7, + STATE(6161), 1, + sym_block, + ACTIONS(9933), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198357] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(5767), 1, + sym_comment, + STATE(6162), 1, + sym_block, + ACTIONS(9933), 4, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6610), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198376] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2417), 1, + anon_sym_DASH2, + STATE(5768), 1, sym_comment, - STATE(7358), 1, - sym_val_list, - STATE(7853), 1, - aux_sym_val_table_repeat1, - [230478] = 7, + ACTIONS(2419), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198393] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(5769), 1, + sym_comment, + ACTIONS(2423), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6611), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198410] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9935), 1, + anon_sym_DQUOTE2, + STATE(5770), 1, sym_comment, - STATE(7382), 1, - sym_val_list, - STATE(7861), 1, - aux_sym_val_table_repeat1, - [230500] = 7, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [198433] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2425), 1, + anon_sym_DASH2, + STATE(5771), 1, + sym_comment, + ACTIONS(2427), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6612), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198450] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9557), 1, + anon_sym_alias, + ACTIONS(9559), 1, + anon_sym_const, + ACTIONS(9561), 1, + anon_sym_def, + ACTIONS(9563), 1, + anon_sym_extern, + ACTIONS(9565), 1, + anon_sym_module, + ACTIONS(9567), 1, + anon_sym_use, + STATE(5772), 1, sym_comment, - STATE(7387), 1, - sym_val_list, - STATE(7863), 1, - aux_sym_val_table_repeat1, - [230522] = 7, + [198475] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(4910), 1, + sym__blosure, + STATE(5743), 1, aux_sym_shebang_repeat1, - STATE(6613), 1, + STATE(5773), 1, sym_comment, - STATE(7404), 1, - sym_val_list, - STATE(7869), 1, - aux_sym_val_table_repeat1, - [230544] = 7, + [198500] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9937), 1, + anon_sym_LPAREN, + ACTIONS(9943), 1, + anon_sym_DQUOTE2, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9940), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(5774), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [198521] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2025), 1, + anon_sym_DASH2, + STATE(5775), 1, + sym_comment, + ACTIONS(2027), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6614), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198538] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2394), 1, + anon_sym_DASH2, + STATE(5776), 1, sym_comment, - STATE(7408), 1, - sym_val_list, - STATE(7871), 1, - aux_sym_val_table_repeat1, - [230566] = 7, + ACTIONS(2396), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198555] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2398), 1, + anon_sym_DASH2, + STATE(5777), 1, + sym_comment, + ACTIONS(2400), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6615), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198572] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9945), 1, + anon_sym_DOT2, + STATE(6534), 1, + sym_path, + STATE(5778), 2, sym_comment, - STATE(7434), 1, - sym_val_list, - STATE(7876), 1, - aux_sym_val_table_repeat1, - [230588] = 7, + aux_sym_cell_path_repeat1, + ACTIONS(941), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [198591] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2441), 1, + anon_sym_DASH2, + STATE(5779), 1, + sym_comment, + ACTIONS(2443), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6616), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198608] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5076), 1, + anon_sym_DASH2, + STATE(5780), 1, sym_comment, - STATE(7439), 1, - sym_val_list, - STATE(7879), 1, - aux_sym_val_table_repeat1, - [230610] = 7, + ACTIONS(5074), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198625] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5080), 1, + anon_sym_DASH2, + STATE(5781), 1, + sym_comment, + ACTIONS(5078), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6617), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198642] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9948), 1, + anon_sym_DQUOTE2, + STATE(5782), 1, sym_comment, - STATE(7460), 1, - sym_val_list, - STATE(7885), 1, - aux_sym_val_table_repeat1, - [230632] = 7, + STATE(5797), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [198665] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2029), 1, + anon_sym_DASH2, + STATE(5783), 1, + sym_comment, + ACTIONS(2031), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6618), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198682] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3522), 1, + sym__space, + STATE(5784), 1, sym_comment, - STATE(7465), 1, - sym_val_list, - STATE(7888), 1, - aux_sym_val_table_repeat1, - [230654] = 7, + ACTIONS(1916), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [198699] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6619), 1, + ACTIONS(2485), 1, + anon_sym_DASH2, + STATE(5785), 1, sym_comment, - STATE(7481), 1, - sym_val_list, - STATE(7895), 1, - aux_sym_val_table_repeat1, - [230676] = 7, + ACTIONS(2487), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198716] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(2402), 1, + anon_sym_DASH2, + STATE(5786), 1, + sym_comment, + ACTIONS(2404), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6620), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198733] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8353), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8895), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9950), 1, + aux_sym_unquoted_token3, + STATE(5787), 1, sym_comment, - STATE(7485), 1, - sym_val_list, - STATE(7898), 1, - aux_sym_val_table_repeat1, - [230698] = 7, + STATE(6198), 1, + sym__immediate_decimal, + [198758] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9950), 1, + aux_sym_unquoted_token3, + STATE(5788), 1, + sym_comment, + STATE(7524), 1, + sym__immediate_decimal, + [198783] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6621), 1, + ACTIONS(4540), 1, + anon_sym_DOT_DOT2, + ACTIONS(9950), 1, + aux_sym_unquoted_token2, + STATE(5789), 1, sym_comment, - STATE(7502), 1, - sym_val_list, - STATE(7906), 1, - aux_sym_val_table_repeat1, - [230720] = 7, + ACTIONS(4542), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9668), 2, + sym_filesize_unit, + sym_duration_unit, + [198804] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6622), 1, + ACTIONS(2406), 1, + anon_sym_DASH2, + STATE(5790), 1, sym_comment, - STATE(7508), 1, - sym_val_list, - STATE(7909), 1, - aux_sym_val_table_repeat1, - [230742] = 3, + ACTIONS(2408), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198821] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(6623), 1, + ACTIONS(9561), 1, + anon_sym_def, + ACTIONS(9563), 1, + anon_sym_extern, + ACTIONS(9565), 1, + anon_sym_module, + ACTIONS(9567), 1, + anon_sym_use, + ACTIONS(9952), 1, + anon_sym_alias, + ACTIONS(9954), 1, + anon_sym_const, + STATE(5791), 1, sym_comment, - ACTIONS(8549), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [230756] = 7, + [198846] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6624), 1, + ACTIONS(9561), 1, + anon_sym_def, + ACTIONS(9563), 1, + anon_sym_extern, + ACTIONS(9565), 1, + anon_sym_module, + ACTIONS(9567), 1, + anon_sym_use, + ACTIONS(9956), 1, + anon_sym_alias, + ACTIONS(9958), 1, + anon_sym_const, + STATE(5792), 1, sym_comment, - STATE(7525), 1, - sym_val_list, - STATE(7914), 1, - aux_sym_val_table_repeat1, - [230778] = 7, - ACTIONS(251), 1, + [198871] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6625), 1, + ACTIONS(1000), 1, + sym__entry_separator, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + STATE(5793), 1, sym_comment, - STATE(7531), 1, - sym_val_list, - STATE(7916), 1, - aux_sym_val_table_repeat1, - [230800] = 7, - ACTIONS(251), 1, + ACTIONS(1004), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198892] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6626), 1, + STATE(5794), 1, sym_comment, - STATE(7550), 1, - sym_val_list, - STATE(7920), 1, - aux_sym_val_table_repeat1, - [230822] = 7, + ACTIONS(2170), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2172), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [198909] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6627), 1, + ACTIONS(4997), 1, + anon_sym_DASH2, + STATE(5795), 1, sym_comment, - STATE(7556), 1, - sym_val_list, - STATE(7923), 1, - aux_sym_val_table_repeat1, - [230844] = 7, + ACTIONS(4995), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198926] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(5001), 1, + anon_sym_DASH2, + STATE(5796), 1, + sym_comment, + ACTIONS(4999), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6628), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198943] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9964), 1, + anon_sym_DQUOTE2, + STATE(5774), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5797), 1, sym_comment, - STATE(7576), 1, - sym_val_list, - STATE(7927), 1, - aux_sym_val_table_repeat1, - [230866] = 7, - ACTIONS(251), 1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [198966] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6629), 1, + ACTIONS(9692), 1, + anon_sym_LPAREN, + ACTIONS(9966), 1, + anon_sym_DQUOTE2, + STATE(5770), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5798), 1, sym_comment, - STATE(7581), 1, - sym_val_list, - STATE(7929), 1, - aux_sym_val_table_repeat1, - [230888] = 7, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9694), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [198989] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6630), 1, + ACTIONS(9561), 1, + anon_sym_def, + ACTIONS(9563), 1, + anon_sym_extern, + ACTIONS(9565), 1, + anon_sym_module, + ACTIONS(9567), 1, + anon_sym_use, + ACTIONS(9968), 1, + anon_sym_alias, + ACTIONS(9970), 1, + anon_sym_const, + STATE(5799), 1, sym_comment, - STATE(7595), 1, - sym_val_list, - STATE(7933), 1, - aux_sym_val_table_repeat1, - [230910] = 7, + [199014] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6631), 1, + ACTIONS(9972), 1, + anon_sym_RBRACK, + STATE(5800), 1, sym_comment, - STATE(7600), 1, + STATE(5969), 1, + aux_sym_shebang_repeat1, + STATE(6951), 1, sym_val_list, - STATE(7936), 1, + STATE(7032), 1, aux_sym_val_table_repeat1, - [230932] = 7, + [199039] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6632), 1, + ACTIONS(9974), 1, + anon_sym_RBRACK, + STATE(5801), 1, sym_comment, - STATE(7606), 1, + STATE(6023), 1, + aux_sym_shebang_repeat1, + STATE(6820), 1, sym_val_list, - STATE(7940), 1, + STATE(7136), 1, aux_sym_val_table_repeat1, - [230954] = 7, + [199064] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(1800), 1, + STATE(1782), 1, aux_sym_shebang_repeat1, - STATE(6633), 1, + STATE(5802), 1, sym_comment, - STATE(7611), 1, + STATE(6882), 1, sym_val_list, - STATE(7942), 1, + STATE(7162), 1, aux_sym_val_table_repeat1, - [230976] = 7, + [199086] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6634), 1, + STATE(5803), 1, sym_comment, - STATE(7622), 1, - sym_val_list, - STATE(7946), 1, - aux_sym_val_table_repeat1, - [230998] = 7, + ACTIONS(8173), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199100] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(6635), 1, + ACTIONS(4967), 1, + anon_sym_DASH2, + ACTIONS(9976), 1, + anon_sym_EQ2, + STATE(5804), 1, sym_comment, - STATE(7627), 1, - sym_val_list, - STATE(7948), 1, - aux_sym_val_table_repeat1, - [231020] = 6, + ACTIONS(4965), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [199118] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2064), 1, - anon_sym_RBRACE, - ACTIONS(2070), 1, - sym__entry_separator, - ACTIONS(10551), 1, - anon_sym_DOT_DOT2, - STATE(6636), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(9982), 1, + anon_sym_SQUOTE, + STATE(5805), 1, sym_comment, - ACTIONS(10553), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231040] = 7, + STATE(5810), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199140] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6554), 1, - sym__variable_name, - STATE(6637), 1, + ACTIONS(5076), 1, + anon_sym_DASH2, + STATE(5806), 1, sym_comment, - STATE(7446), 1, - sym__assignment_pattern_parenthesized, - [231062] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(5074), 4, sym_identifier, - ACTIONS(10508), 1, anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6554), 1, - sym__variable_name, - STATE(6638), 1, - sym_comment, - STATE(7456), 1, - sym__assignment_pattern_parenthesized, - [231084] = 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [199156] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(10508), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6554), 1, - sym__variable_name, - STATE(6639), 1, + ACTIONS(1831), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2051), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5807), 1, sym_comment, - STATE(7458), 1, - sym__assignment_pattern_parenthesized, - [231106] = 7, + [199178] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10823), 1, - anon_sym_DASH_DASH, - ACTIONS(10825), 1, + ACTIONS(5080), 1, anon_sym_DASH2, - ACTIONS(10843), 1, - anon_sym_in2, - STATE(6640), 1, + STATE(5808), 1, sym_comment, - STATE(8619), 1, - sym_short_flag, - STATE(8620), 1, - sym_long_flag, - [231128] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(5078), 4, sym_identifier, - ACTIONS(10508), 1, anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6554), 1, - sym__variable_name, - STATE(6641), 1, - sym_comment, - STATE(7785), 1, - sym__assignment_pattern_parenthesized, - [231150] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10823), 1, anon_sym_DASH_DASH, - ACTIONS(10825), 1, - anon_sym_DASH2, - ACTIONS(10845), 1, - anon_sym_in2, - STATE(6642), 1, - sym_comment, - STATE(8627), 1, - sym_short_flag, - STATE(8628), 1, - sym_long_flag, - [231172] = 3, + anon_sym_LBRACE, + [199194] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6643), 1, + STATE(5809), 1, sym_comment, - ACTIONS(8553), 5, + ACTIONS(8243), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231186] = 7, + [199208] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10847), 1, - anon_sym_GT2, - STATE(5928), 1, - aux_sym__multiple_types_repeat1, - STATE(6644), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(9984), 1, + anon_sym_SQUOTE, + STATE(5810), 1, sym_comment, - STATE(7475), 1, - sym_param_cmd, - [231208] = 3, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199230] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6645), 1, + STATE(5811), 1, sym_comment, - ACTIONS(8557), 5, + ACTIONS(8311), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231222] = 3, + [199244] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5812), 1, + sym_comment, + ACTIONS(962), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [199258] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6646), 1, + STATE(5813), 1, sym_comment, - ACTIONS(8531), 5, + ACTIONS(8075), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231236] = 3, + [199272] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6647), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + ACTIONS(9986), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9988), 1, + aux_sym__immediate_decimal_token2, + STATE(5814), 1, + sym_comment, + ACTIONS(1729), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [199292] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5815), 1, sym_comment, - ACTIONS(8665), 5, + ACTIONS(8202), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231250] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - ACTIONS(10849), 1, - anon_sym_GT2, - STATE(5937), 1, - aux_sym__multiple_types_repeat1, - STATE(6648), 1, - sym_comment, - STATE(7563), 1, - sym_param_cmd, - [231272] = 3, + [199306] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6649), 1, + STATE(5816), 1, sym_comment, - ACTIONS(8669), 5, + ACTIONS(8123), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231286] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_RBRACE, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(10851), 1, - anon_sym_DOT_DOT2, - STATE(6650), 1, - sym_comment, - ACTIONS(10853), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231306] = 3, + [199320] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6651), 1, + STATE(5817), 1, sym_comment, - ACTIONS(8561), 5, + ACTIONS(8143), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231320] = 6, - ACTIONS(3), 1, + [199334] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2197), 1, - anon_sym_RBRACE, - ACTIONS(2199), 1, - sym__entry_separator, - ACTIONS(10551), 1, - anon_sym_DOT_DOT2, - STATE(6652), 1, + ACTIONS(2019), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2060), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5818), 1, sym_comment, - ACTIONS(10553), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [231340] = 5, - ACTIONS(3), 1, + [199356] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(992), 1, - anon_sym_DOT, - ACTIONS(10855), 1, - anon_sym_QMARK2, - STATE(6653), 1, + STATE(208), 1, + aux_sym__block_body_repeat1, + STATE(5819), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [231358] = 3, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(595), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [199374] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6654), 1, + ACTIONS(2023), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2061), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5820), 1, sym_comment, - ACTIONS(8565), 5, - anon_sym_EQ, - anon_sym_DASH_GT, + [199396] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9990), 1, anon_sym_GT2, + ACTIONS(9992), 1, anon_sym_AT, - anon_sym_LBRACE, - [231372] = 3, + STATE(5365), 1, + aux_sym__multiple_types_repeat1, + STATE(5821), 1, + sym_comment, + STATE(6894), 1, + sym_param_cmd, + [199418] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(9994), 1, + anon_sym_SQUOTE, + STATE(5822), 1, + sym_comment, + STATE(5827), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199440] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6655), 1, + STATE(5823), 1, sym_comment, - ACTIONS(8673), 5, + ACTIONS(8119), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231386] = 3, + [199454] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6656), 1, + STATE(5824), 1, sym_comment, - ACTIONS(8503), 5, + ACTIONS(8247), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [231400] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - ACTIONS(10857), 1, - aux_sym__immediate_decimal_token2, - STATE(6657), 1, - sym_comment, - ACTIONS(1801), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231418] = 4, + [199468] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6658), 1, - sym_comment, - ACTIONS(8509), 2, - anon_sym_AT, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(8511), 2, - anon_sym_RBRACK, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(9996), 1, anon_sym_GT2, - [231433] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10861), 1, - anon_sym_RBRACK, - STATE(3591), 1, + STATE(5315), 1, aux_sym__multiple_types_repeat1, - STATE(6659), 1, + STATE(5825), 1, sym_comment, - [231452] = 6, - ACTIONS(3), 1, + STATE(6777), 1, + sym_param_cmd, + [199490] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10863), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6660), 1, + ACTIONS(8624), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8626), 1, + aux_sym__immediate_decimal_token5, + STATE(5826), 1, sym_comment, - [231471] = 3, - ACTIONS(251), 1, + STATE(7433), 1, + sym__immediate_decimal, + ACTIONS(8622), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [199510] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6661), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(9998), 1, + anon_sym_SQUOTE, + STATE(5827), 1, sym_comment, - ACTIONS(10865), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231484] = 3, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199532] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6662), 1, - sym_comment, - ACTIONS(10867), 4, + ACTIONS(8733), 1, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [231497] = 6, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5828), 1, + sym_comment, + STATE(6055), 1, + sym__variable_name, + STATE(6815), 1, + sym__assignment_pattern, + [199554] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10869), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10000), 1, + anon_sym_GT2, + STATE(5367), 1, aux_sym__multiple_types_repeat1, - STATE(6663), 1, + STATE(5829), 1, sym_comment, - [231516] = 5, - ACTIONS(3), 1, + STATE(6897), 1, + sym_param_cmd, + [199576] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10871), 1, - anon_sym_DQUOTE, - STATE(6664), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5830), 1, sym_comment, - STATE(6671), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [231533] = 4, + STATE(6650), 1, + sym_val_list, + STATE(6651), 1, + aux_sym_val_table_repeat1, + [199598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10875), 1, + ACTIONS(9978), 1, anon_sym_LPAREN, - STATE(6665), 1, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10002), 1, + anon_sym_SQUOTE, + STATE(5831), 1, sym_comment, - ACTIONS(10877), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [231548] = 6, + STATE(5841), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_RBRACK, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, + ACTIONS(2051), 1, + anon_sym_RBRACE, + ACTIONS(2053), 1, sym__entry_separator, - ACTIONS(2232), 1, - aux_sym__unquoted_in_list_token2, - STATE(6666), 1, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + STATE(5832), 1, sym_comment, - [231567] = 6, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199640] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_DOLLAR, - ACTIONS(5029), 1, - sym_identifier, - ACTIONS(10879), 1, - anon_sym_EQ2, - ACTIONS(10881), 1, - sym_short_flag_identifier, - STATE(6667), 1, + ACTIONS(1991), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2053), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5833), 1, sym_comment, - [231586] = 4, + [199662] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10883), 1, + ACTIONS(10004), 1, anon_sym_LPAREN, - STATE(6668), 1, + ACTIONS(10007), 1, + sym_unescaped_interpolated_content, + ACTIONS(10010), 1, + anon_sym_SQUOTE, + STATE(7168), 1, + sym_expr_interpolated, + STATE(5834), 2, sym_comment, - ACTIONS(10885), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [231601] = 6, + aux_sym__inter_single_quotes_repeat1, + [199682] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, + STATE(5835), 1, + sym_comment, + ACTIONS(8215), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199696] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9978), 1, anon_sym_LPAREN, - STATE(6364), 1, - sym_parameter_parens, - STATE(6368), 1, - sym_parameter_bracks, - STATE(6669), 1, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10012), 1, + anon_sym_SQUOTE, + STATE(5836), 1, sym_comment, - [231620] = 4, - ACTIONS(251), 1, + STATE(5839), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199718] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(6670), 1, + ACTIONS(10014), 1, + aux_sym__immediate_decimal_token2, + STATE(5837), 1, sym_comment, - ACTIONS(2230), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231635] = 5, + ACTIONS(1771), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [199736] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10891), 1, - anon_sym_DQUOTE, - STATE(6671), 1, + ACTIONS(1819), 1, + anon_sym_RBRACE, + ACTIONS(1827), 1, + sym__entry_separator, + ACTIONS(10016), 1, + anon_sym_DOT_DOT2, + STATE(5838), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [231652] = 3, - ACTIONS(251), 1, + ACTIONS(10018), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199756] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6672), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10020), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5839), 1, sym_comment, - ACTIONS(10893), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [231665] = 6, + STATE(7168), 1, + sym_expr_interpolated, + [199778] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3321), 1, - sym_parameter_bracks, - STATE(3322), 1, - sym_parameter_parens, - STATE(6673), 1, + STATE(5840), 1, sym_comment, - [231684] = 5, + ACTIONS(7953), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199792] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, - sym__entry_separator, - ACTIONS(10895), 1, - anon_sym_LBRACK2, - STATE(6674), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10022), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5841), 1, sym_comment, - ACTIONS(2304), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [231701] = 4, + STATE(7168), 1, + sym_expr_interpolated, + [199814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1020), 1, - anon_sym_DOT, - STATE(6675), 1, + ACTIONS(10024), 1, + anon_sym_LT, + STATE(5842), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_RBRACK, + ACTIONS(7827), 2, + anon_sym_AT, sym__entry_separator, - sym__table_head_separator, - [231716] = 5, + ACTIONS(7831), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [199832] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1036), 1, + STATE(5843), 1, + sym_comment, + ACTIONS(8297), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - ACTIONS(10897), 1, - anon_sym_DOT_DOT2, - STATE(6676), 1, + [199846] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5844), 1, sym_comment, - ACTIONS(10899), 2, + ACTIONS(1771), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1773), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [231733] = 6, - ACTIONS(3), 1, + [199862] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5010), 1, - sym__space, - ACTIONS(5012), 1, - sym__newline, - ACTIONS(10901), 1, - sym_long_flag_identifier, - ACTIONS(10903), 1, - anon_sym_EQ2, - STATE(6677), 1, + ACTIONS(1995), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2054), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5845), 1, sym_comment, - [231752] = 3, + [199884] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6678), 1, + ACTIONS(2027), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2062), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5846), 1, sym_comment, - ACTIONS(10905), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231765] = 4, + [199906] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_DOT, - STATE(6679), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10026), 1, + anon_sym_SQUOTE, + STATE(5847), 1, sym_comment, - ACTIONS(1014), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [231780] = 3, + STATE(5849), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [199928] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6680), 1, + STATE(5848), 1, sym_comment, - ACTIONS(10907), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [231793] = 3, - ACTIONS(251), 1, + ACTIONS(8219), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199942] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6681), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10028), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5849), 1, sym_comment, - ACTIONS(10909), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231806] = 3, + STATE(7168), 1, + sym_expr_interpolated, + [199964] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10030), 1, + aux_sym__immediate_decimal_token2, + STATE(5850), 1, + sym_comment, + ACTIONS(1771), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [199982] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6682), 1, + ACTIONS(1653), 1, + anon_sym_DASH2, + ACTIONS(8731), 1, + aux_sym_unquoted_token2, + STATE(5851), 1, sym_comment, - ACTIONS(10911), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231819] = 6, + ACTIONS(1665), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(10032), 1, + anon_sym_LT, + STATE(5852), 1, + sym_comment, + ACTIONS(7827), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10913), 1, + ACTIONS(7831), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6683), 1, - sym_comment, - [231838] = 6, + anon_sym_GT2, + [200018] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10915), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10034), 1, + anon_sym_GT2, + STATE(5322), 1, aux_sym__multiple_types_repeat1, - STATE(6684), 1, + STATE(5853), 1, sym_comment, - [231857] = 6, - ACTIONS(3), 1, + STATE(6806), 1, + sym_param_cmd, + [200040] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10917), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6685), 1, + STATE(5854), 1, sym_comment, - [231876] = 6, - ACTIONS(3), 1, + ACTIONS(8211), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200054] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10919), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6686), 1, + STATE(5855), 1, sym_comment, - [231895] = 6, + ACTIONS(1735), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1737), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200070] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10921), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6687), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10036), 1, + anon_sym_SQUOTE, + STATE(5856), 1, sym_comment, - [231914] = 6, - ACTIONS(3), 1, + STATE(5859), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [200092] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10923), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6688), 1, + STATE(5857), 1, sym_comment, - [231933] = 6, - ACTIONS(3), 1, + ACTIONS(7957), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200106] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10925), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6689), 1, + STATE(5858), 1, sym_comment, - [231952] = 6, + ACTIONS(8135), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200120] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10927), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6690), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10038), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5859), 1, sym_comment, - [231971] = 3, + STATE(7168), 1, + sym_expr_interpolated, + [200142] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6691), 1, + STATE(5860), 1, sym_comment, - ACTIONS(10929), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231984] = 3, + ACTIONS(7933), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200156] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6692), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5861), 1, sym_comment, - ACTIONS(10931), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [231997] = 3, + STATE(6055), 1, + sym__variable_name, + STATE(6999), 1, + sym__assignment_pattern, + [200178] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6693), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5862), 1, sym_comment, - ACTIONS(10933), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232010] = 6, - ACTIONS(3), 1, + STATE(6055), 1, + sym__variable_name, + STATE(7065), 1, + sym__assignment_pattern, + [200200] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2272), 1, - anon_sym_RBRACE, - ACTIONS(2274), 1, - sym__entry_separator, - STATE(6694), 1, + STATE(5863), 1, + sym_comment, + ACTIONS(7971), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200214] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5864), 1, sym_comment, - [232029] = 3, + ACTIONS(7987), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200228] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6695), 1, + ACTIONS(4985), 1, + anon_sym_DASH2, + STATE(5865), 1, sym_comment, - ACTIONS(10935), 4, + ACTIONS(4983), 4, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [232042] = 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200244] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6696), 1, + ACTIONS(1951), 1, + sym__table_head_separator, + ACTIONS(10040), 1, + anon_sym_DOT2, + STATE(5574), 1, + sym_cell_path, + STATE(5866), 1, sym_comment, - ACTIONS(10937), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232055] = 5, + STATE(6113), 1, + aux_sym_cell_path_repeat1, + STATE(7311), 1, + sym_path, + [200266] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5039), 1, + anon_sym_DASH2, + STATE(5867), 1, + sym_comment, + ACTIONS(5037), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200282] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10939), 1, - anon_sym_DQUOTE, - STATE(6697), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10042), 1, + anon_sym_SQUOTE, + STATE(5868), 1, sym_comment, - STATE(6703), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232072] = 4, + STATE(5875), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [200304] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5043), 1, + anon_sym_DASH2, + STATE(5869), 1, + sym_comment, + ACTIONS(5041), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200320] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5870), 1, + sym_comment, + ACTIONS(8223), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200334] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5871), 1, + sym_comment, + ACTIONS(7937), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200348] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6698), 1, + ACTIONS(9899), 1, + aux_sym__immediate_decimal_token2, + STATE(5872), 1, sym_comment, - ACTIONS(2242), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2244), 2, + ACTIONS(1735), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 2, anon_sym_LPAREN2, sym__entry_separator, - [232087] = 3, + [200366] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(5873), 1, + sym_comment, + STATE(6790), 1, + sym_block, + ACTIONS(9933), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [200384] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + anon_sym_DASH2, + STATE(5874), 1, + sym_comment, + ACTIONS(5025), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200400] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10044), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5875), 1, + sym_comment, + STATE(7168), 1, + sym_expr_interpolated, + [200422] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5876), 1, + sym_comment, + ACTIONS(8109), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200436] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6699), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5877), 1, sym_comment, - ACTIONS(10941), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232100] = 3, + STATE(6002), 1, + sym__variable_name, + STATE(7080), 1, + sym__assignment_pattern_parenthesized, + [200458] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6700), 1, + ACTIONS(2031), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2063), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5878), 1, sym_comment, - ACTIONS(10943), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232113] = 3, + [200480] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6701), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5879), 1, sym_comment, - ACTIONS(10945), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232126] = 3, + STATE(6002), 1, + sym__variable_name, + STATE(7099), 1, + sym__assignment_pattern_parenthesized, + [200502] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6702), 1, + ACTIONS(5031), 1, + anon_sym_DASH2, + STATE(5880), 1, sym_comment, - ACTIONS(10937), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232139] = 5, + ACTIONS(5029), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200518] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10947), 1, - anon_sym_DQUOTE, - STATE(6703), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10046), 1, + anon_sym_GT2, + STATE(5299), 1, + aux_sym__multiple_types_repeat1, + STATE(5881), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232156] = 4, - ACTIONS(3), 1, + STATE(6935), 1, + sym_param_cmd, + [200540] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_PIPE, - STATE(6704), 1, + STATE(5882), 1, sym_comment, - ACTIONS(2242), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [232171] = 4, + ACTIONS(8139), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200554] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6705), 1, - sym_comment, - ACTIONS(8323), 2, - anon_sym_AT, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(8327), 2, - anon_sym_RBRACK, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10048), 1, anon_sym_GT2, - [232186] = 4, - ACTIONS(3), 1, + STATE(5401), 1, + aux_sym__multiple_types_repeat1, + STATE(5883), 1, + sym_comment, + STATE(7038), 1, + sym_param_cmd, + [200576] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6706), 1, + STATE(5884), 1, sym_comment, - ACTIONS(8479), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8481), 2, - anon_sym_RBRACK, + ACTIONS(8229), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - [232201] = 6, + anon_sym_AT, + anon_sym_LBRACE, + [200590] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2292), 1, - anon_sym_RBRACE, - ACTIONS(2294), 1, + ACTIONS(9143), 1, sym__entry_separator, - STATE(6707), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10050), 1, + anon_sym_GT2, + STATE(5402), 1, + aux_sym__multiple_types_repeat1, + STATE(5885), 1, sym_comment, - [232220] = 4, + STATE(7042), 1, + sym_param_cmd, + [200612] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6708), 1, + STATE(5886), 1, sym_comment, - ACTIONS(8489), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8491), 2, + ACTIONS(958), 5, anon_sym_RBRACK, - anon_sym_GT2, - [232235] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_RBRACE, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, + anon_sym_QMARK2, sym__entry_separator, - ACTIONS(2240), 1, - aux_sym__unquoted_in_record_token4, - STATE(6709), 1, - sym_comment, - [232254] = 5, - ACTIONS(3), 1, + sym__table_head_separator, + anon_sym_DOT2, + [200626] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10949), 1, - anon_sym_DQUOTE, - STATE(6710), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(9841), 1, + aux_sym__immediate_decimal_token2, + STATE(5887), 1, sym_comment, - STATE(6739), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232271] = 4, - ACTIONS(3), 1, + ACTIONS(1737), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [200644] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6711), 1, + STATE(5888), 1, sym_comment, - ACTIONS(8495), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8497), 2, - anon_sym_RBRACK, + ACTIONS(8013), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - [232286] = 3, + anon_sym_AT, + anon_sym_LBRACE, + [200658] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6712), 1, + STATE(5889), 1, sym_comment, - ACTIONS(10951), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232299] = 3, + ACTIONS(7991), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200672] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6713), 1, + STATE(5890), 1, sym_comment, - ACTIONS(10953), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232312] = 4, + ACTIONS(8001), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200686] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6714), 1, + ACTIONS(9666), 1, + aux_sym__immediate_decimal_token2, + STATE(5891), 1, sym_comment, - ACTIONS(8503), 2, - anon_sym_AT, + ACTIONS(1735), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(8505), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [232327] = 6, - ACTIONS(3), 1, + [200704] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10955), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6715), 1, + STATE(5892), 1, sym_comment, - [232346] = 6, + ACTIONS(8085), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200718] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10957), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10052), 1, + anon_sym_GT2, + STATE(5360), 1, aux_sym__multiple_types_repeat1, - STATE(6716), 1, + STATE(5893), 1, sym_comment, - [232365] = 6, - ACTIONS(3), 1, + STATE(6881), 1, + sym_param_cmd, + [200740] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10959), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6717), 1, + STATE(5894), 1, sym_comment, - [232384] = 6, + ACTIONS(8127), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200754] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10961), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6718), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10054), 1, + anon_sym_SQUOTE, + STATE(5895), 1, sym_comment, - [232403] = 6, - ACTIONS(3), 1, + STATE(5902), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [200776] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10963), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6719), 1, + ACTIONS(1951), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2115), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5896), 1, sym_comment, - [232422] = 6, + [200798] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10965), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10056), 1, + anon_sym_GT2, + STATE(5333), 1, aux_sym__multiple_types_repeat1, - STATE(6720), 1, + STATE(5897), 1, sym_comment, - [232441] = 6, + STATE(6955), 1, + sym_param_cmd, + [200820] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10967), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10058), 1, + anon_sym_GT2, + STATE(5379), 1, aux_sym__multiple_types_repeat1, - STATE(6721), 1, + STATE(5898), 1, sym_comment, - [232460] = 6, + STATE(6911), 1, + sym_param_cmd, + [200842] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(10969), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10060), 1, + anon_sym_GT2, + STATE(5380), 1, aux_sym__multiple_types_repeat1, - STATE(6722), 1, + STATE(5899), 1, sym_comment, - [232479] = 3, + STATE(6914), 1, + sym_param_cmd, + [200864] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6723), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + STATE(5491), 1, + sym_val_variable, + STATE(5900), 1, sym_comment, - ACTIONS(10951), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232492] = 3, + STATE(7723), 1, + sym__variable_name, + [200886] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6724), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5901), 1, sym_comment, - ACTIONS(10971), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232505] = 3, - ACTIONS(251), 1, + STATE(6055), 1, + sym__variable_name, + STATE(7171), 1, + sym__assignment_pattern, + [200908] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6725), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10062), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5902), 1, sym_comment, - ACTIONS(10973), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232518] = 3, + STATE(7168), 1, + sym_expr_interpolated, + [200930] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6726), 1, - sym_comment, - ACTIONS(10975), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232531] = 3, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5903), 1, + sym_comment, + STATE(6782), 1, + sym_val_list, + STATE(6783), 1, + aux_sym_val_table_repeat1, + [200952] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6727), 1, + ACTIONS(9601), 1, + anon_sym_DASH2, + STATE(5904), 1, sym_comment, - ACTIONS(10977), 4, + ACTIONS(9599), 4, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [232544] = 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200968] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6728), 1, + STATE(5905), 1, sym_comment, - ACTIONS(10979), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232557] = 5, - ACTIONS(3), 1, + ACTIONS(8017), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200982] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10981), 1, - anon_sym_DQUOTE, - STATE(6729), 1, + ACTIONS(1999), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2055), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5906), 1, sym_comment, - STATE(6734), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232574] = 3, + [201004] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6730), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(10064), 1, + anon_sym_use, + ACTIONS(10066), 1, + anon_sym_list, + ACTIONS(10068), 1, + anon_sym_hide, + ACTIONS(10070), 1, + anon_sym_new, + STATE(5907), 1, sym_comment, - ACTIONS(10971), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232587] = 6, - ACTIONS(3), 1, + [201026] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5027), 1, - sym__space, - ACTIONS(5029), 1, + STATE(5908), 1, + sym_comment, + ACTIONS(8047), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201040] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, sym__newline, - ACTIONS(10983), 1, + ACTIONS(10072), 1, + anon_sym_EQ, + ACTIONS(10074), 1, + anon_sym_COLON, + STATE(5909), 1, + sym_comment, + STATE(6827), 1, + aux_sym_shebang_repeat1, + STATE(7388), 1, + sym_param_type, + [201062] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4967), 1, + anon_sym_DASH2, + ACTIONS(10076), 1, anon_sym_EQ2, - ACTIONS(10985), 1, - sym_short_flag_identifier, - STATE(6731), 1, + STATE(5910), 1, sym_comment, - [232606] = 3, + ACTIONS(4965), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [201080] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6732), 1, + STATE(5911), 1, sym_comment, - ACTIONS(5832), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8051), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [232619] = 3, + [201094] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6733), 1, + STATE(5912), 1, sym_comment, - ACTIONS(10987), 4, + ACTIONS(8233), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201108] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10078), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232632] = 5, + ACTIONS(10081), 1, + sym__space, + STATE(5465), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7203), 1, + sym__flags_parenthesized, + STATE(5913), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat1, + [201128] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10989), 1, - anon_sym_DQUOTE, - STATE(6734), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10084), 1, + anon_sym_GT2, + STATE(5317), 1, + aux_sym__multiple_types_repeat1, + STATE(5914), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232649] = 5, + STATE(6784), 1, + sym_param_cmd, + [201150] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5915), 1, + sym_comment, + STATE(6761), 1, + sym_val_list, + STATE(6995), 1, + aux_sym_val_table_repeat1, + [201172] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1585), 1, aux_sym_unquoted_token2, - ACTIONS(10991), 1, + ACTIONS(1827), 1, + anon_sym_LBRACE, + ACTIONS(10086), 1, anon_sym_DOT_DOT2, - STATE(6735), 1, + STATE(5916), 1, sym_comment, - ACTIONS(10993), 2, + ACTIONS(10088), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [232666] = 5, - ACTIONS(3), 1, + [201192] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10995), 1, - anon_sym_DQUOTE, - STATE(6736), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(5917), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232683] = 6, + STATE(6959), 1, + sym_block, + ACTIONS(9915), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [201210] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5918), 1, + sym_comment, + ACTIONS(8023), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201224] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10997), 1, - anon_sym_COLON, - ACTIONS(10999), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10090), 1, anon_sym_GT2, - STATE(5853), 1, + STATE(5361), 1, aux_sym__multiple_types_repeat1, - STATE(6737), 1, + STATE(5919), 1, sym_comment, - [232702] = 4, + STATE(6887), 1, + sym_param_cmd, + [201246] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(6738), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5920), 1, sym_comment, - ACTIONS(2270), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232717] = 5, - ACTIONS(3), 1, + STATE(6927), 1, + sym_val_list, + STATE(7000), 1, + aux_sym_val_table_repeat1, + [201268] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11001), 1, - anon_sym_DQUOTE, - STATE(6739), 1, + STATE(5921), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232734] = 3, - ACTIONS(3), 1, + ACTIONS(8239), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201282] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6740), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(10064), 1, + anon_sym_use, + ACTIONS(10066), 1, + anon_sym_list, + ACTIONS(10068), 1, + anon_sym_hide, + ACTIONS(10070), 1, + anon_sym_new, + STATE(5922), 1, sym_comment, - ACTIONS(2242), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [232747] = 6, + [201304] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11003), 1, - anon_sym_LBRACE, - STATE(5337), 1, - sym__blosure, - STATE(5476), 1, - sym_block, - STATE(5477), 1, - sym_val_closure, - STATE(6741), 1, + STATE(5923), 1, sym_comment, - [232766] = 3, + ACTIONS(8031), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201318] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6742), 1, + ACTIONS(1979), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2047), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5924), 1, sym_comment, - ACTIONS(6573), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + [201340] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1959), 1, anon_sym_LBRACE, - [232779] = 6, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2125), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5925), 1, + sym_comment, + [201362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(2140), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11005), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6743), 1, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + STATE(5926), 1, sym_comment, - [232798] = 6, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201382] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11007), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6744), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10092), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5927), 1, sym_comment, - [232817] = 6, + STATE(7168), 1, + sym_expr_interpolated, + [201404] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11009), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6745), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10094), 1, + anon_sym_SQUOTE, + STATE(5928), 1, sym_comment, - [232836] = 6, - ACTIONS(3), 1, + STATE(5933), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [201426] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11011), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6746), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5929), 1, sym_comment, - [232855] = 6, + STATE(6002), 1, + sym__variable_name, + STATE(7116), 1, + sym__assignment_pattern_parenthesized, + [201448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1737), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, + ACTIONS(8745), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10096), 1, + anon_sym_DOT, + STATE(5930), 1, + sym_comment, + ACTIONS(1735), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6747), 1, + anon_sym_RBRACE, + [201468] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5931), 1, sym_comment, - [232874] = 6, - ACTIONS(3), 1, + ACTIONS(8037), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201482] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11015), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6748), 1, + ACTIONS(2003), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2056), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5932), 1, sym_comment, - [232893] = 6, + [201504] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11017), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6749), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10098), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5933), 1, sym_comment, - [232912] = 6, - ACTIONS(3), 1, + STATE(7168), 1, + sym_expr_interpolated, + [201526] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11019), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6750), 1, + STATE(5934), 1, sym_comment, - [232931] = 3, + ACTIONS(8251), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201540] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6751), 1, + ACTIONS(10100), 1, + anon_sym_PIPE, + ACTIONS(10102), 1, + anon_sym_if, + ACTIONS(10104), 1, + anon_sym_EQ_GT, + STATE(5935), 1, sym_comment, - ACTIONS(6575), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(7132), 1, + aux_sym_match_pattern_repeat1, + STATE(7605), 1, + sym_match_guard, + [201562] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + anon_sym_DASH2, + STATE(5936), 1, + sym_comment, + ACTIONS(4940), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [232944] = 3, + [201578] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6752), 1, + STATE(5937), 1, sym_comment, - ACTIONS(11021), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232957] = 3, + ACTIONS(8093), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201592] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6753), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(10106), 1, + anon_sym_DOT, + ACTIONS(10108), 1, + aux_sym__immediate_decimal_token2, + STATE(5938), 1, + sym_comment, + ACTIONS(1737), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [201612] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(205), 1, + aux_sym__block_body_repeat1, + STATE(5939), 1, sym_comment, - ACTIONS(11021), 4, + ACTIONS(141), 2, sym__newline, anon_sym_SEMI, + ACTIONS(1396), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [232970] = 3, + [201630] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6754), 1, + ACTIONS(4997), 1, + anon_sym_DASH2, + STATE(5940), 1, sym_comment, - ACTIONS(11023), 4, + ACTIONS(4995), 4, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [232983] = 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201646] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6755), 1, + ACTIONS(5001), 1, + anon_sym_DASH2, + STATE(5941), 1, sym_comment, - ACTIONS(11025), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [232996] = 5, - ACTIONS(3), 1, + ACTIONS(4999), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201662] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11027), 1, - anon_sym_DQUOTE, - STATE(6756), 1, + ACTIONS(10110), 1, + anon_sym_EQ2, + ACTIONS(10112), 1, + sym_short_flag_identifier, + STATE(5942), 1, sym_comment, - STATE(6762), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233013] = 6, - ACTIONS(3), 1, + ACTIONS(4900), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [201680] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11029), 1, - anon_sym_COLON, - ACTIONS(11031), 1, - anon_sym_GT2, - STATE(5891), 1, - aux_sym__multiple_types_repeat1, - STATE(6757), 1, + ACTIONS(4989), 1, + anon_sym_DASH2, + ACTIONS(10114), 1, + anon_sym_EQ2, + STATE(5943), 1, sym_comment, - [233032] = 3, + ACTIONS(4987), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [201698] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6758), 1, + STATE(5944), 1, sym_comment, - ACTIONS(11025), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233045] = 3, + ACTIONS(8079), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201712] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6759), 1, + ACTIONS(937), 1, + anon_sym_COLON2, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1409), 1, + sym_cell_path, + STATE(1510), 1, + sym_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5945), 1, sym_comment, - ACTIONS(11033), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233058] = 6, + [201734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(5907), 1, anon_sym_RBRACK, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, + ACTIONS(5913), 1, sym__entry_separator, - ACTIONS(2260), 1, - aux_sym__unquoted_in_list_token4, - STATE(6760), 1, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + STATE(5946), 1, sym_comment, - [233077] = 4, - ACTIONS(3), 1, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201754] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(6761), 1, + ACTIONS(4850), 1, + anon_sym_DASH_DASH, + ACTIONS(10116), 1, + sym_long_flag_identifier, + ACTIONS(10118), 1, + anon_sym_EQ2, + STATE(5947), 1, sym_comment, - ACTIONS(1034), 3, + ACTIONS(4852), 2, sym_identifier, - anon_sym_DASH_DASH, anon_sym_DASH2, - [233092] = 5, - ACTIONS(3), 1, + [201774] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11035), 1, - anon_sym_DQUOTE, - STATE(6762), 1, + ACTIONS(2007), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2057), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5948), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233109] = 5, + [201796] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(631), 1, - ts_builtin_sym_end, - STATE(302), 1, - aux_sym__block_body_repeat1, - STATE(6763), 1, + STATE(5949), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [233126] = 5, - ACTIONS(251), 1, + ACTIONS(8041), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201810] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1478), 1, - ts_builtin_sym_end, - STATE(228), 1, - aux_sym__block_body_repeat1, - STATE(6764), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10120), 1, + anon_sym_GT2, + STATE(5275), 1, + aux_sym__multiple_types_repeat1, + STATE(5950), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [233143] = 4, + STATE(7085), 1, + sym_param_cmd, + [201832] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - STATE(6765), 1, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2058), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5951), 1, sym_comment, - ACTIONS(1781), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [233158] = 6, + [201854] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(11037), 1, - anon_sym_COLON, - ACTIONS(11039), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10122), 1, anon_sym_GT2, - STATE(5892), 1, + STATE(5416), 1, aux_sym__multiple_types_repeat1, - STATE(6766), 1, + STATE(5952), 1, sym_comment, - [233177] = 3, + STATE(7062), 1, + sym_param_cmd, + [201876] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6767), 1, + STATE(5953), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233190] = 6, + ACTIONS(8099), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201890] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11043), 1, - anon_sym_COLON, - ACTIONS(11045), 1, - anon_sym_GT2, - STATE(5893), 1, - aux_sym__multiple_types_repeat1, - STATE(6768), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10124), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5954), 1, sym_comment, - [233209] = 3, + STATE(7168), 1, + sym_expr_interpolated, + [201912] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6769), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5955), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233222] = 6, + STATE(6026), 1, + sym__variable_name, + STATE(6244), 1, + sym__assignment_pattern, + [201934] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11047), 1, - anon_sym_LBRACK, - ACTIONS(11049), 1, - anon_sym_LPAREN, - STATE(6451), 1, - sym_parameter_bracks, - STATE(6539), 1, - sym_parameter_parens, - STATE(6770), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5956), 1, sym_comment, - [233241] = 4, - ACTIONS(3), 1, + STATE(6026), 1, + sym__variable_name, + STATE(6247), 1, + sym__assignment_pattern, + [201956] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11051), 1, - anon_sym_LPAREN, - STATE(6771), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5957), 1, sym_comment, - ACTIONS(11053), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [233256] = 3, + STATE(6026), 1, + sym__variable_name, + STATE(6248), 1, + sym__assignment_pattern, + [201978] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6772), 1, + STATE(5958), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233269] = 6, - ACTIONS(3), 1, + ACTIONS(8255), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201992] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11055), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6773), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5959), 1, sym_comment, - [233288] = 6, - ACTIONS(3), 1, + STATE(6026), 1, + sym__variable_name, + STATE(6533), 1, + sym__assignment_pattern, + [202014] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11057), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6774), 1, + STATE(203), 1, + aux_sym__block_body_repeat1, + STATE(5960), 1, sym_comment, - [233307] = 6, - ACTIONS(3), 1, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1387), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202032] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11059), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6775), 1, + ACTIONS(4989), 1, + anon_sym_DASH2, + ACTIONS(10126), 1, + anon_sym_EQ2, + STATE(5961), 1, sym_comment, - [233326] = 6, + ACTIONS(4987), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202050] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11061), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10128), 1, + anon_sym_GT2, + STATE(5381), 1, aux_sym__multiple_types_repeat1, - STATE(6776), 1, + STATE(5962), 1, sym_comment, - [233345] = 6, - ACTIONS(3), 1, + STATE(6921), 1, + sym_param_cmd, + [202072] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11063), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6777), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(5963), 1, sym_comment, - [233364] = 6, + STATE(7185), 1, + sym_block, + ACTIONS(9824), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [202090] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11065), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6778), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10130), 1, + anon_sym_SQUOTE, + STATE(5964), 1, sym_comment, - [233383] = 6, + STATE(5973), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [202112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11067), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6779), 1, + STATE(5965), 1, sym_comment, - [233402] = 6, + ACTIONS(976), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [202126] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11069), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10132), 1, + anon_sym_GT2, + STATE(5383), 1, aux_sym__multiple_types_repeat1, - STATE(6780), 1, + STATE(5966), 1, sym_comment, - [233421] = 5, - ACTIONS(251), 1, + STATE(6925), 1, + sym_param_cmd, + [202148] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_LBRACE, - ACTIONS(11071), 1, + ACTIONS(1794), 1, + anon_sym_RBRACE, + ACTIONS(1802), 1, + sym__entry_separator, + ACTIONS(10134), 1, anon_sym_DOT_DOT2, - STATE(6781), 1, + STATE(5967), 1, sym_comment, - ACTIONS(11073), 2, + ACTIONS(10136), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [233438] = 5, + [202168] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2104), 1, - anon_sym_LBRACE, - ACTIONS(11075), 1, - anon_sym_DOT_DOT2, - STATE(6782), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(10138), 1, + aux_sym__immediate_decimal_token2, + STATE(5968), 1, sym_comment, - ACTIONS(11077), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [233455] = 3, + ACTIONS(1773), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [202186] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6783), 1, - sym_comment, - ACTIONS(11041), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233468] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6784), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5969), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233481] = 3, + STATE(6639), 1, + sym_val_list, + STATE(7034), 1, + aux_sym_val_table_repeat1, + [202208] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6785), 1, + STATE(5970), 1, sym_comment, - ACTIONS(11079), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [233494] = 3, + ACTIONS(8301), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202222] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6786), 1, - sym_comment, - ACTIONS(11041), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233507] = 5, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5971), 1, + sym_comment, + STATE(6755), 1, + sym_val_list, + STATE(7039), 1, + aux_sym_val_table_repeat1, + [202244] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, - anon_sym_DQUOTE, - STATE(6787), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10140), 1, + anon_sym_SQUOTE, + STATE(5972), 1, sym_comment, - STATE(6793), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233524] = 6, + STATE(6019), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [202266] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11083), 1, - anon_sym_COLON, - ACTIONS(11085), 1, - anon_sym_GT2, - STATE(5896), 1, - aux_sym__multiple_types_repeat1, - STATE(6788), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10142), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5973), 1, sym_comment, - [233543] = 5, - ACTIONS(251), 1, + STATE(7168), 1, + sym_expr_interpolated, + [202288] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2137), 1, - anon_sym_LBRACE, - ACTIONS(11087), 1, - anon_sym_DOT_DOT2, - STATE(6789), 1, + STATE(5974), 1, sym_comment, - ACTIONS(11089), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [233560] = 6, + ACTIONS(972), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [202302] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + ACTIONS(10144), 1, + anon_sym_RBRACE, + ACTIONS(10146), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11091), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6790), 1, + STATE(5975), 1, sym_comment, - [233579] = 6, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202322] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3341), 1, - sym_parameter_parens, - STATE(3343), 1, - sym_parameter_bracks, - STATE(6791), 1, + ACTIONS(1971), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2044), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5976), 1, sym_comment, - [233598] = 3, + [202344] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6792), 1, + STATE(5977), 1, sym_comment, - ACTIONS(11093), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233611] = 5, - ACTIONS(3), 1, + ACTIONS(7929), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202358] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11095), 1, - anon_sym_DQUOTE, - STATE(6793), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5978), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [233628] = 6, - ACTIONS(3), 1, + STATE(6027), 1, + sym__variable_name, + STATE(6244), 1, + sym__assignment_pattern, + [202380] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11097), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6794), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5979), 1, sym_comment, - [233647] = 6, + STATE(6027), 1, + sym__variable_name, + STATE(6247), 1, + sym__assignment_pattern, + [202402] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11099), 1, - anon_sym_use, - ACTIONS(11101), 1, - anon_sym_list, - ACTIONS(11103), 1, - anon_sym_hide, - ACTIONS(11105), 1, - anon_sym_new, - STATE(6795), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5980), 1, sym_comment, - [233666] = 3, + STATE(6027), 1, + sym__variable_name, + STATE(6248), 1, + sym__assignment_pattern, + [202424] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6796), 1, + ACTIONS(1802), 1, + anon_sym_LBRACE, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(10148), 1, + anon_sym_DOT_DOT2, + STATE(5981), 1, sym_comment, - ACTIONS(11093), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233679] = 6, + ACTIONS(10150), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202444] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + ACTIONS(10152), 1, anon_sym_RBRACE, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2258), 1, + ACTIONS(10154), 1, sym__entry_separator, - ACTIONS(2260), 1, - aux_sym__unquoted_in_record_token4, - STATE(6797), 1, + STATE(5982), 1, sym_comment, - [233698] = 3, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202464] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6798), 1, + ACTIONS(1975), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2046), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(5983), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233711] = 6, - ACTIONS(3), 1, + [202486] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11107), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6799), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5984), 1, sym_comment, - [233730] = 3, + STATE(6001), 1, + sym__variable_name, + STATE(6244), 1, + sym__assignment_pattern, + [202508] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6800), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5985), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233743] = 6, + STATE(6001), 1, + sym__variable_name, + STATE(6247), 1, + sym__assignment_pattern, + [202530] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(6296), 1, - sym_parameter_parens, - STATE(6297), 1, - sym_parameter_bracks, - STATE(6801), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5986), 1, sym_comment, - [233762] = 6, - ACTIONS(3), 1, + STATE(6001), 1, + sym__variable_name, + STATE(6248), 1, + sym__assignment_pattern, + [202552] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_RBRACE, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1848), 1, - sym__entry_separator, - ACTIONS(1850), 1, - aux_sym__unquoted_in_record_token2, - STATE(6802), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5987), 1, sym_comment, - [233781] = 3, + STATE(6001), 1, + sym__variable_name, + STATE(6533), 1, + sym__assignment_pattern, + [202574] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6803), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(5988), 1, sym_comment, - ACTIONS(11093), 4, + STATE(7187), 1, + sym_block, + ACTIONS(9824), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233794] = 6, - ACTIONS(3), 1, + [202592] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11109), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6804), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5989), 1, sym_comment, - [233813] = 6, + STATE(6002), 1, + sym__variable_name, + STATE(6987), 1, + sym__assignment_pattern_parenthesized, + [202614] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11111), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10156), 1, + anon_sym_GT2, + STATE(5417), 1, aux_sym__multiple_types_repeat1, - STATE(6805), 1, + STATE(5990), 1, sym_comment, - [233832] = 6, + STATE(7068), 1, + sym_param_cmd, + [202636] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11113), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10158), 1, + anon_sym_GT2, + STATE(5421), 1, aux_sym__multiple_types_repeat1, - STATE(6806), 1, + STATE(5991), 1, sym_comment, - [233851] = 6, - ACTIONS(3), 1, + STATE(7071), 1, + sym_param_cmd, + [202658] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(5992), 1, + sym_comment, + STATE(6809), 1, + sym_block, + ACTIONS(9933), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [202676] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11115), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6807), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5993), 1, sym_comment, - [233870] = 6, - ACTIONS(3), 1, + STATE(7009), 1, + sym_val_list, + STATE(7064), 1, + aux_sym_val_table_repeat1, + [202698] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11117), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6808), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5994), 1, sym_comment, - [233889] = 6, + STATE(7022), 1, + sym_val_list, + STATE(7067), 1, + aux_sym_val_table_repeat1, + [202720] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2043), 1, + anon_sym_RBRACE, + ACTIONS(2049), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11119), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6809), 1, + ACTIONS(9960), 1, + anon_sym_DOT_DOT2, + STATE(5995), 1, + sym_comment, + ACTIONS(9962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202740] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5996), 1, sym_comment, - [233908] = 6, + ACTIONS(8115), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11121), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6810), 1, + ACTIONS(10160), 1, + anon_sym_QMARK2, + STATE(5997), 1, sym_comment, - [233927] = 6, + ACTIONS(952), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [202770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(10162), 1, + anon_sym_QMARK2, + STATE(5998), 1, + sym_comment, + ACTIONS(966), 4, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(10859), 1, + sym__table_head_separator, + anon_sym_DOT2, + [202786] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11123), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6811), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(5999), 1, sym_comment, - [233946] = 4, + STATE(6625), 1, + sym_val_list, + STATE(7075), 1, + aux_sym_val_table_repeat1, + [202808] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - STATE(6812), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6000), 1, sym_comment, - ACTIONS(1838), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [233961] = 6, + STATE(6631), 1, + sym_val_list, + STATE(7077), 1, + aux_sym_val_table_repeat1, + [202830] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - ACTIONS(1773), 1, - anon_sym_LBRACE, - ACTIONS(11125), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11127), 1, - aux_sym__immediate_decimal_token2, - STATE(6813), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(10074), 1, + anon_sym_COLON, + ACTIONS(10164), 1, + anon_sym_EQ, + STATE(6001), 1, sym_comment, - [233980] = 3, + STATE(6827), 1, + aux_sym_shebang_repeat1, + STATE(7749), 1, + sym_param_type, + [202852] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6814), 1, - sym_comment, - ACTIONS(11093), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [233993] = 3, + ACTIONS(10074), 1, + anon_sym_COLON, + ACTIONS(10166), 1, + anon_sym_EQ, + STATE(6002), 1, + sym_comment, + STATE(6827), 1, + aux_sym_shebang_repeat1, + STATE(7380), 1, + sym_param_type, + [202874] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6815), 1, - sym_comment, - ACTIONS(11129), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234006] = 3, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6003), 1, + sym_comment, + STATE(7084), 1, + aux_sym_val_table_repeat1, + STATE(7202), 1, + sym_val_list, + [202896] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6816), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6004), 1, sym_comment, - ACTIONS(11131), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [234019] = 3, + STATE(6662), 1, + sym_val_list, + STATE(7087), 1, + aux_sym_val_table_repeat1, + [202918] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6817), 1, - sym_comment, - ACTIONS(11129), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11133), 1, - anon_sym_DQUOTE, - STATE(6818), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6005), 1, sym_comment, - STATE(6822), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234049] = 6, - ACTIONS(3), 1, + STATE(6690), 1, + sym_val_list, + STATE(7093), 1, + aux_sym_val_table_repeat1, + [202940] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11135), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6819), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6006), 1, sym_comment, - [234068] = 6, - ACTIONS(3), 1, + STATE(6696), 1, + sym_val_list, + STATE(7096), 1, + aux_sym_val_table_repeat1, + [202962] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11137), 1, - anon_sym_COLON, - ACTIONS(11139), 1, + STATE(6007), 1, + sym_comment, + ACTIONS(7943), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5980), 1, - aux_sym__multiple_types_repeat1, - STATE(6820), 1, + anon_sym_AT, + anon_sym_LBRACE, + [202976] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6008), 1, sym_comment, - [234087] = 3, + ACTIONS(7949), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202990] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6821), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6009), 1, sym_comment, - ACTIONS(11141), 4, + STATE(6717), 1, + sym_val_list, + STATE(7103), 1, + aux_sym_val_table_repeat1, + [203012] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234100] = 5, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6010), 1, + sym_comment, + STATE(6723), 1, + sym_val_list, + STATE(7105), 1, + aux_sym_val_table_repeat1, + [203034] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11143), 1, - anon_sym_DQUOTE, - STATE(6822), 1, + ACTIONS(8057), 1, + sym__newline, + ACTIONS(8059), 1, + sym__space, + STATE(4761), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6011), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234117] = 6, + STATE(6025), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7203), 1, + sym__flags_parenthesized, + [203056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11145), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10168), 1, + anon_sym_GT2, + STATE(5320), 1, aux_sym__multiple_types_repeat1, - STATE(6823), 1, + STATE(6012), 1, sym_comment, - [234136] = 6, + STATE(6800), 1, + sym_param_cmd, + [203078] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11147), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6824), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10170), 1, + anon_sym_SQUOTE, + STATE(6013), 1, sym_comment, - [234155] = 3, + STATE(6061), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [203100] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6825), 1, - sym_comment, - ACTIONS(11141), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234168] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6826), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6014), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1773), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [234183] = 3, + STATE(6744), 1, + sym_val_list, + STATE(7112), 1, + aux_sym_val_table_repeat1, + [203122] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6827), 1, - sym_comment, - ACTIONS(11141), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234196] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11149), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6828), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6015), 1, sym_comment, - [234215] = 6, - ACTIONS(3), 1, + STATE(6749), 1, + sym_val_list, + STATE(7114), 1, + aux_sym_val_table_repeat1, + [203144] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11151), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6829), 1, + STATE(6016), 1, sym_comment, - [234234] = 6, - ACTIONS(3), 1, + ACTIONS(7827), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [203158] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11153), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6830), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6017), 1, sym_comment, - [234253] = 6, - ACTIONS(3), 1, + STATE(6770), 1, + sym_val_list, + STATE(7121), 1, + aux_sym_val_table_repeat1, + [203180] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11155), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6831), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6018), 1, sym_comment, - [234272] = 6, + STATE(6775), 1, + sym_val_list, + STATE(7123), 1, + aux_sym_val_table_repeat1, + [203202] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11157), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6832), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10172), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6019), 1, sym_comment, - [234291] = 6, - ACTIONS(3), 1, + STATE(7168), 1, + sym_expr_interpolated, + [203224] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11159), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6833), 1, + STATE(6020), 1, sym_comment, - [234310] = 6, - ACTIONS(3), 1, + ACTIONS(1786), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1788), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203240] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11161), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6834), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6021), 1, sym_comment, - [234329] = 6, - ACTIONS(3), 1, + STATE(6796), 1, + sym_val_list, + STATE(7128), 1, + aux_sym_val_table_repeat1, + [203262] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11163), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6835), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6022), 1, sym_comment, - [234348] = 6, - ACTIONS(3), 1, + STATE(6801), 1, + sym_val_list, + STATE(7130), 1, + aux_sym_val_table_repeat1, + [203284] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11165), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6836), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6023), 1, sym_comment, - [234367] = 6, - ACTIONS(3), 1, + STATE(6821), 1, + sym_val_list, + STATE(7137), 1, + aux_sym_val_table_repeat1, + [203306] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11167), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6837), 1, - sym_comment, - [234386] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11169), 1, - anon_sym_COLON, - ACTIONS(11171), 1, - anon_sym_GT2, - STATE(5826), 1, - aux_sym__multiple_types_repeat1, - STATE(6838), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6024), 1, sym_comment, - [234405] = 6, + STATE(6825), 1, + sym_val_list, + STATE(7140), 1, + aux_sym_val_table_repeat1, + [203328] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11173), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6839), 1, + ACTIONS(8057), 1, + sym__newline, + ACTIONS(8059), 1, + sym__space, + STATE(4625), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5913), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6025), 1, sym_comment, - [234424] = 3, + STATE(7203), 1, + sym__flags_parenthesized, + [203350] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6840), 1, - sym_comment, - ACTIONS(11141), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234437] = 3, + ACTIONS(10074), 1, + anon_sym_COLON, + ACTIONS(10174), 1, + anon_sym_EQ, + STATE(6026), 1, + sym_comment, + STATE(6827), 1, + aux_sym_shebang_repeat1, + STATE(7683), 1, + sym_param_type, + [203372] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6841), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(10074), 1, + anon_sym_COLON, + ACTIONS(10176), 1, + anon_sym_EQ, + STATE(6027), 1, sym_comment, - ACTIONS(11175), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [234450] = 6, - ACTIONS(3), 1, + STATE(6827), 1, + aux_sym_shebang_repeat1, + STATE(7587), 1, + sym_param_type, + [203394] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11177), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6842), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6028), 1, sym_comment, - [234469] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11179), 1, - anon_sym_DQUOTE, STATE(6843), 1, - sym_comment, - STATE(6847), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234486] = 6, - ACTIONS(3), 1, + sym_val_list, + STATE(7148), 1, + aux_sym_val_table_repeat1, + [203416] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11181), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6844), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6029), 1, sym_comment, - [234505] = 6, - ACTIONS(3), 1, + STATE(6848), 1, + sym_val_list, + STATE(7151), 1, + aux_sym_val_table_repeat1, + [203438] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11183), 1, - anon_sym_COLON, - ACTIONS(11185), 1, - anon_sym_GT2, - STATE(5861), 1, - aux_sym__multiple_types_repeat1, - STATE(6845), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6030), 1, sym_comment, - [234524] = 5, + STATE(6861), 1, + sym_val_list, + STATE(7156), 1, + aux_sym_val_table_repeat1, + [203460] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10366), 1, - anon_sym_RPAREN, - STATE(6846), 1, - sym_comment, - STATE(7175), 1, - aux_sym__block_body_repeat1, - ACTIONS(11187), 2, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - [234541] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11189), 1, - anon_sym_DQUOTE, - STATE(6847), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6031), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234558] = 4, - ACTIONS(3), 1, + STATE(6867), 1, + sym_val_list, + STATE(7158), 1, + aux_sym_val_table_repeat1, + [203482] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6848), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(6027), 1, + sym__variable_name, + STATE(6032), 1, sym_comment, - ACTIONS(1799), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1801), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [234573] = 6, - ACTIONS(3), 1, + STATE(6533), 1, + sym__assignment_pattern, + [203504] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2240), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2272), 1, - anon_sym_RBRACK, - ACTIONS(2274), 1, - sym__entry_separator, - STATE(6849), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6033), 1, sym_comment, - [234592] = 6, - ACTIONS(3), 1, + STATE(6888), 1, + sym_val_list, + STATE(7165), 1, + aux_sym_val_table_repeat1, + [203526] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11191), 1, - anon_sym_COLON, - ACTIONS(11193), 1, - anon_sym_GT2, - STATE(5862), 1, - aux_sym__multiple_types_repeat1, - STATE(6850), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6034), 1, sym_comment, - [234611] = 3, + STATE(6900), 1, + sym_val_list, + STATE(7170), 1, + aux_sym_val_table_repeat1, + [203548] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6851), 1, - sym_comment, - ACTIONS(11195), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234624] = 3, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6035), 1, + sym_comment, + STATE(6906), 1, + sym_val_list, + STATE(7173), 1, + aux_sym_val_table_repeat1, + [203570] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6852), 1, - sym_comment, - ACTIONS(11197), 4, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234637] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11199), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6853), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6036), 1, sym_comment, - [234656] = 6, - ACTIONS(3), 1, + STATE(6917), 1, + sym_val_list, + STATE(7178), 1, + aux_sym_val_table_repeat1, + [203592] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(9670), 1, anon_sym_LBRACK, - ACTIONS(11201), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6854), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6037), 1, sym_comment, - [234675] = 6, + STATE(6923), 1, + sym_val_list, + STATE(7181), 1, + aux_sym_val_table_repeat1, + [203614] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11203), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6855), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10178), 1, + anon_sym_SQUOTE, + STATE(6038), 1, sym_comment, - [234694] = 6, - ACTIONS(3), 1, + STATE(6048), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7168), 1, + sym_expr_interpolated, + [203636] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11205), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6856), 1, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2048), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(6039), 1, sym_comment, - [234713] = 6, - ACTIONS(3), 1, + [203658] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11207), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6857), 1, + ACTIONS(1653), 1, + anon_sym_DASH2, + ACTIONS(8731), 1, + aux_sym_unquoted_token2, + STATE(6040), 1, sym_comment, - [234732] = 6, - ACTIONS(3), 1, + ACTIONS(1665), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203676] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11209), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6858), 1, + ACTIONS(8997), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10180), 1, + anon_sym_DOT, + STATE(6041), 1, sym_comment, - [234751] = 6, - ACTIONS(3), 1, + ACTIONS(1737), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [203694] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11211), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6859), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5909), 1, + sym__variable_name, + STATE(6042), 1, sym_comment, - [234770] = 6, - ACTIONS(3), 1, + STATE(7080), 1, + sym__assignment_pattern_parenthesized, + [203716] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11213), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6860), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5909), 1, + sym__variable_name, + STATE(6043), 1, sym_comment, - [234789] = 3, + STATE(7099), 1, + sym__assignment_pattern_parenthesized, + [203738] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6861), 1, + ACTIONS(8733), 1, + sym_identifier, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5909), 1, + sym__variable_name, + STATE(6044), 1, sym_comment, - ACTIONS(11215), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234802] = 3, + STATE(7116), 1, + sym__assignment_pattern_parenthesized, + [203760] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6862), 1, + STATE(6045), 1, sym_comment, - ACTIONS(8483), 4, + ACTIONS(8307), 5, anon_sym_EQ, anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [234815] = 3, + [203774] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6863), 1, + STATE(6046), 1, sym_comment, - ACTIONS(11217), 4, + ACTIONS(8159), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [203788] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8733), 1, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [234828] = 5, + ACTIONS(9702), 1, + anon_sym_DOLLAR, + STATE(5491), 1, + sym_val_variable, + STATE(5909), 1, + sym__variable_name, + STATE(6047), 1, + sym_comment, + STATE(6987), 1, + sym__assignment_pattern_parenthesized, + [203810] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11219), 1, - anon_sym_DQUOTE, - STATE(6864), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10182), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6048), 1, sym_comment, - STATE(6868), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234845] = 3, - ACTIONS(251), 1, + STATE(7168), 1, + sym_expr_interpolated, + [203832] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6865), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10184), 1, + anon_sym_SQUOTE, + STATE(5927), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6049), 1, sym_comment, - ACTIONS(11221), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234858] = 3, + STATE(7168), 1, + sym_expr_interpolated, + [203854] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6866), 1, + STATE(6050), 1, sym_comment, - ACTIONS(11223), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234871] = 3, + ACTIONS(8131), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [203868] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6867), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(6051), 1, sym_comment, - ACTIONS(11225), 4, + STATE(6716), 1, + sym_block, + ACTIONS(9772), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234884] = 5, - ACTIONS(3), 1, + [203886] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11227), 1, - anon_sym_DQUOTE, - STATE(6868), 1, + ACTIONS(1967), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2036), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(6052), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [234901] = 3, + [203908] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6869), 1, + ACTIONS(9710), 1, + anon_sym_LBRACE, + STATE(6053), 1, sym_comment, - ACTIONS(11229), 4, + STATE(6660), 1, + sym_val_record, + ACTIONS(9889), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234914] = 6, + [203926] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11231), 1, - anon_sym_COLON, - ACTIONS(11233), 1, - anon_sym_GT2, - STATE(5984), 1, - aux_sym__multiple_types_repeat1, - STATE(6870), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10186), 1, + anon_sym_SQUOTE, + STATE(5954), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6054), 1, sym_comment, - [234933] = 6, + STATE(7168), 1, + sym_expr_interpolated, + [203948] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1538), 1, - anon_sym_SEMI, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6871), 1, + ACTIONS(10074), 1, + anon_sym_COLON, + ACTIONS(10188), 1, + anon_sym_EQ, + STATE(6055), 1, sym_comment, - STATE(7746), 1, + STATE(6827), 1, aux_sym_shebang_repeat1, - [234952] = 3, + STATE(7473), 1, + sym_param_type, + [203970] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6872), 1, + ACTIONS(1987), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2050), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(6056), 1, sym_comment, - ACTIONS(11235), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234965] = 3, + [203992] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(6873), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + STATE(5491), 1, + sym_val_variable, + STATE(6057), 1, sym_comment, - ACTIONS(11237), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [234978] = 6, - ACTIONS(3), 1, + STATE(7723), 1, + sym__variable_name, + [204014] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11239), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6874), 1, + ACTIONS(2015), 1, + anon_sym_LBRACE, + ACTIONS(9008), 1, + anon_sym_DOT2, + STATE(1510), 1, + sym_path, + STATE(2059), 1, + sym_cell_path, + STATE(4836), 1, + aux_sym_cell_path_repeat1, + STATE(6058), 1, sym_comment, - [234997] = 6, + [204036] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6059), 1, + sym_comment, + ACTIONS(8267), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [204050] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6060), 1, + sym_comment, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204066] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11241), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6875), 1, + ACTIONS(9978), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + sym_unescaped_interpolated_content, + ACTIONS(10190), 1, + anon_sym_SQUOTE, + STATE(5834), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6061), 1, sym_comment, - [235016] = 6, + STATE(7168), 1, + sym_expr_interpolated, + [204088] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11243), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10192), 1, + anon_sym_GT2, + STATE(5387), 1, aux_sym__multiple_types_repeat1, - STATE(6876), 1, + STATE(6062), 1, sym_comment, - [235035] = 6, + STATE(6929), 1, + sym_param_cmd, + [204110] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9710), 1, + anon_sym_LBRACE, + STATE(6063), 1, + sym_comment, + STATE(6661), 1, + sym_val_record, + ACTIONS(9891), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [204128] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11245), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10194), 1, + anon_sym_GT2, + STATE(5389), 1, aux_sym__multiple_types_repeat1, - STATE(6877), 1, + STATE(6064), 1, + sym_comment, + STATE(6931), 1, + sym_param_cmd, + [204150] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6065), 1, + sym_comment, + ACTIONS(8279), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [204164] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1959), 1, + sym__table_head_separator, + ACTIONS(10040), 1, + anon_sym_DOT2, + STATE(5592), 1, + sym_cell_path, + STATE(6066), 1, sym_comment, - [235054] = 6, + STATE(6113), 1, + aux_sym_cell_path_repeat1, + STATE(7311), 1, + sym_path, + [204186] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11247), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10196), 1, + anon_sym_GT2, + STATE(5425), 1, aux_sym__multiple_types_repeat1, - STATE(6878), 1, + STATE(6067), 1, sym_comment, - [235073] = 6, + STATE(7082), 1, + sym_param_cmd, + [204208] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11249), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(9992), 1, + anon_sym_AT, + ACTIONS(10198), 1, + anon_sym_GT2, + STATE(5415), 1, aux_sym__multiple_types_repeat1, - STATE(6879), 1, + STATE(6068), 1, sym_comment, - [235092] = 6, + STATE(7059), 1, + sym_param_cmd, + [204230] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(10202), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(6880), 1, + STATE(6069), 1, sym_comment, - [235111] = 6, + [204249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6070), 1, + sym_comment, + ACTIONS(8037), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11253), 1, + ACTIONS(8039), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6881), 1, - sym_comment, - [235130] = 6, + anon_sym_GT2, + [204264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(6071), 1, + sym_comment, + ACTIONS(8041), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11255), 1, - anon_sym_COLON, - ACTIONS(11257), 1, + ACTIONS(8043), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5854), 1, - aux_sym__multiple_types_repeat1, - STATE(6882), 1, + [204279] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6072), 1, sym_comment, - [235149] = 6, + ACTIONS(5630), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [204292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(6073), 1, + sym_comment, + ACTIONS(2261), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2263), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11259), 1, - anon_sym_COLON, - ACTIONS(11261), 1, - anon_sym_GT2, - STATE(5880), 1, - aux_sym__multiple_types_repeat1, - STATE(6883), 1, + [204307] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7501), 1, + anon_sym_COLON2, + STATE(6074), 1, sym_comment, - [235168] = 3, + STATE(6087), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7495), 2, + sym__newline, + sym__space, + [204324] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6884), 1, + STATE(6075), 1, sym_comment, - ACTIONS(11263), 4, + ACTIONS(10204), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [235181] = 5, + [204337] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11265), 1, + ACTIONS(10206), 1, anon_sym_DQUOTE, - STATE(6885), 1, + STATE(6076), 1, sym_comment, - STATE(6887), 1, + STATE(6081), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [235198] = 3, + [204354] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6886), 1, + STATE(6077), 1, sym_comment, - ACTIONS(11267), 4, + ACTIONS(10210), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [235211] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11269), 1, - anon_sym_DQUOTE, - STATE(6887), 1, - sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [235228] = 5, + [204367] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2274), 1, - anon_sym_PIPE, - STATE(6888), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2043), 1, + anon_sym_RBRACE, + ACTIONS(2049), 1, + sym__entry_separator, + STATE(6078), 1, sym_comment, - ACTIONS(2272), 2, - anon_sym_if, - anon_sym_EQ_GT, - [235245] = 3, + STATE(7365), 1, + sym__expr_parenthesized_immediate, + [204386] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6889), 1, + ACTIONS(9690), 1, + anon_sym_RPAREN, + STATE(6079), 1, sym_comment, - ACTIONS(11271), 4, + STATE(6092), 1, + aux_sym__block_body_repeat1, + ACTIONS(10212), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [235258] = 4, - ACTIONS(251), 1, + [204403] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - STATE(6890), 1, - sym_comment, - ACTIONS(1773), 3, + ACTIONS(2263), 1, anon_sym_PIPE, + STATE(6080), 1, + sym_comment, + ACTIONS(2261), 3, anon_sym_if, anon_sym_EQ_GT, - [235273] = 6, + aux_sym_unquoted_token4, + [204418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11273), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6891), 1, + ACTIONS(10214), 1, + anon_sym_DQUOTE, + STATE(6081), 1, sym_comment, - [235292] = 6, - ACTIONS(3), 1, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204435] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11275), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6892), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(10108), 1, + aux_sym__immediate_decimal_token2, + STATE(6082), 1, sym_comment, - [235311] = 6, - ACTIONS(3), 1, + ACTIONS(1737), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [204452] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11277), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6893), 1, + ACTIONS(1470), 1, + anon_sym_SEMI, + ACTIONS(3876), 1, + sym__newline, + STATE(212), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6083), 1, sym_comment, - [235330] = 6, - ACTIONS(3), 1, + STATE(6689), 1, + aux_sym_shebang_repeat1, + [204471] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11279), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6894), 1, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + STATE(5491), 1, + sym_val_variable, + STATE(6084), 1, sym_comment, - [235349] = 6, - ACTIONS(3), 1, + STATE(7452), 1, + sym__variable_name, + [204490] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11281), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6895), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(10216), 1, + aux_sym__immediate_decimal_token2, + STATE(6085), 1, sym_comment, - [235368] = 6, + ACTIONS(1773), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [204507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11283), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6896), 1, + ACTIONS(10218), 1, + anon_sym_COLON2, + STATE(6086), 1, sym_comment, - [235387] = 6, + STATE(6159), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7495), 2, + sym__newline, + sym__space, + [204524] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11285), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6897), 1, + ACTIONS(10220), 1, + anon_sym_COLON2, + STATE(6087), 1, sym_comment, - [235406] = 6, - ACTIONS(3), 1, + STATE(6159), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7495), 2, + sym__newline, + sym__space, + [204541] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11287), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6898), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(6088), 1, sym_comment, - [235425] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(1773), 3, anon_sym_PIPE, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(6899), 1, - sym_comment, - ACTIONS(2234), 2, anon_sym_if, anon_sym_EQ_GT, - [235442] = 6, - ACTIONS(3), 1, + [204556] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10222), 1, anon_sym_LBRACK, - ACTIONS(11289), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6900), 1, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3222), 1, + sym_parameter_parens, + STATE(3225), 1, + sym_parameter_bracks, + STATE(6089), 1, sym_comment, - [235461] = 3, + [204575] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6901), 1, - sym_comment, - ACTIONS(11291), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [235474] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11293), 1, - anon_sym_DQUOTE, - STATE(6902), 1, - sym_comment, - STATE(6904), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [235491] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6903), 1, + STATE(6090), 1, sym_comment, - ACTIONS(8513), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8515), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [235506] = 5, + ACTIONS(5652), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [204588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11295), 1, - anon_sym_DQUOTE, - STATE(6904), 1, + ACTIONS(10226), 1, + anon_sym_LPAREN, + STATE(6091), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [235523] = 6, + ACTIONS(10228), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [204603] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10291), 1, - anon_sym_LBRACE, - STATE(5059), 1, - sym_val_closure, - STATE(5157), 1, - sym__blosure, - STATE(5311), 1, - sym_block, - STATE(6905), 1, + ACTIONS(1391), 1, + anon_sym_RPAREN, + ACTIONS(10230), 2, + sym__newline, + anon_sym_SEMI, + STATE(6092), 2, sym_comment, - [235542] = 6, - ACTIONS(3), 1, + aux_sym__block_body_repeat1, + [204618] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11297), 1, - anon_sym_COLON, - ACTIONS(11299), 1, - anon_sym_GT2, - STATE(5882), 1, - aux_sym__multiple_types_repeat1, - STATE(6906), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(6093), 1, sym_comment, - [235561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(1665), 3, anon_sym_PIPE, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(6907), 1, - sym_comment, - ACTIONS(2254), 2, anon_sym_if, anon_sym_EQ_GT, - [235578] = 6, + [204633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11301), 1, + ACTIONS(2241), 1, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6908), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2245), 1, + sym__entry_separator, + ACTIONS(2247), 1, + aux_sym__unquoted_in_list_token4, + STATE(6094), 1, sym_comment, - [235597] = 6, + [204652] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11303), 1, + ACTIONS(10233), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(6909), 1, + STATE(6095), 1, sym_comment, - [235616] = 6, - ACTIONS(3), 1, + [204671] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11305), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6910), 1, + ACTIONS(1387), 1, + ts_builtin_sym_end, + STATE(264), 1, + aux_sym__block_body_repeat1, + STATE(6096), 1, sym_comment, - [235635] = 6, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [204688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11307), 1, + ACTIONS(1004), 1, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6911), 1, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym__unquoted_in_list_token4, + STATE(6097), 1, sym_comment, - [235654] = 6, - ACTIONS(3), 1, + [204707] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11309), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6912), 1, + STATE(6098), 1, sym_comment, - [235673] = 6, - ACTIONS(3), 1, + ACTIONS(10235), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204720] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11311), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6913), 1, + ACTIONS(10237), 1, + anon_sym_LBRACE, + STATE(4852), 1, + sym_block, + STATE(4853), 1, + sym_val_closure, + STATE(4855), 1, + sym__blosure, + STATE(6099), 1, sym_comment, - [235692] = 6, - ACTIONS(3), 1, + [204739] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11313), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6914), 1, + STATE(6100), 1, + sym_comment, + ACTIONS(10239), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204752] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6101), 1, sym_comment, - [235711] = 6, + ACTIONS(10241), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(10243), 1, + anon_sym_COLON, + ACTIONS(10245), 1, + anon_sym_GT2, + STATE(5277), 1, aux_sym__multiple_types_repeat1, - STATE(6915), 1, + STATE(6102), 1, sym_comment, - [235730] = 4, + [204784] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - STATE(6916), 1, + STATE(6103), 1, sym_comment, - ACTIONS(1801), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [235745] = 3, + ACTIONS(10247), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204797] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6917), 1, - sym_comment, - ACTIONS(11317), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [235758] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11319), 1, - anon_sym_DQUOTE, - STATE(6918), 1, + STATE(6104), 1, sym_comment, - STATE(6920), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [235775] = 4, - ACTIONS(3), 1, + ACTIONS(10249), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204810] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6919), 1, + STATE(6105), 1, sym_comment, - ACTIONS(8519), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8521), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [235790] = 5, - ACTIONS(3), 1, + ACTIONS(10249), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204823] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11321), 1, - anon_sym_DQUOTE, - STATE(6920), 1, + STATE(6106), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [235807] = 3, + ACTIONS(10251), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204836] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6921), 1, + STATE(6107), 1, sym_comment, - ACTIONS(11323), 4, + ACTIONS(10251), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [235820] = 3, + [204849] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6922), 1, + STATE(6108), 1, sym_comment, - ACTIONS(5820), 4, - ts_builtin_sym_end, + ACTIONS(10253), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [235833] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1034), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym__unquoted_in_record_token4, - STATE(6923), 1, - sym_comment, - [235852] = 6, + [204862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6109), 1, + sym_comment, + ACTIONS(7827), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11325), 1, + ACTIONS(7831), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6924), 1, + anon_sym_GT2, + [204877] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6110), 1, sym_comment, - [235871] = 6, - ACTIONS(3), 1, + ACTIONS(10255), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204890] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11327), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6925), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + ACTIONS(1729), 1, + anon_sym_LBRACE, + ACTIONS(10257), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10259), 1, + aux_sym__immediate_decimal_token2, + STATE(6111), 1, sym_comment, - [235890] = 6, - ACTIONS(3), 1, + [204909] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11329), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6926), 1, + ACTIONS(1786), 1, + aux_sym_unquoted_token2, + STATE(6112), 1, sym_comment, - [235909] = 6, - ACTIONS(3), 1, + ACTIONS(1788), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [204924] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(6927), 1, + ACTIONS(950), 1, + sym__table_head_separator, + ACTIONS(10040), 1, + anon_sym_DOT2, + STATE(6113), 1, sym_comment, - [235928] = 6, + STATE(6125), 1, + aux_sym_cell_path_repeat1, + STATE(7311), 1, + sym_path, + [204943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11333), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(10261), 1, + anon_sym_COLON, + ACTIONS(10263), 1, + anon_sym_GT2, + STATE(5329), 1, aux_sym__multiple_types_repeat1, - STATE(6928), 1, + STATE(6114), 1, sym_comment, - [235947] = 6, + [204962] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11335), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(10265), 1, + anon_sym_COLON, + ACTIONS(10267), 1, + anon_sym_GT2, + STATE(5331), 1, aux_sym__multiple_types_repeat1, - STATE(6929), 1, + STATE(6115), 1, sym_comment, - [235966] = 6, + [204981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11337), 1, + ACTIONS(10269), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(6930), 1, + STATE(6116), 1, sym_comment, - [235985] = 6, + [205000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11339), 1, + ACTIONS(10271), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(6931), 1, - sym_comment, - [236004] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1818), 1, - aux_sym_unquoted_token2, - STATE(6932), 1, - sym_comment, - ACTIONS(1820), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [236019] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6933), 1, - sym_comment, - ACTIONS(11341), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236032] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11343), 1, - anon_sym_DQUOTE, - STATE(6934), 1, - sym_comment, - STATE(6936), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236049] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6935), 1, - sym_comment, - ACTIONS(8523), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8525), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [236064] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11345), 1, - anon_sym_DQUOTE, - STATE(6936), 1, + STATE(6117), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236081] = 6, + [205019] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11347), 1, + ACTIONS(10273), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(6937), 1, - sym_comment, - [236100] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6938), 1, + STATE(6118), 1, sym_comment, - ACTIONS(11349), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236113] = 5, - ACTIONS(3), 1, + [205038] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11351), 1, - anon_sym_DQUOTE, - STATE(6939), 1, + STATE(6119), 1, sym_comment, - STATE(6941), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236130] = 4, + ACTIONS(5609), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [205051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6940), 1, + STATE(6120), 1, sym_comment, - ACTIONS(8531), 2, - anon_sym_AT, + ACTIONS(2261), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2263), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(8533), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [236145] = 5, - ACTIONS(3), 1, + [205066] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11353), 1, - anon_sym_DQUOTE, - STATE(6941), 1, + STATE(6121), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236162] = 3, + ACTIONS(6348), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [205079] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6942), 1, + STATE(6122), 1, sym_comment, - ACTIONS(5824), 4, + ACTIONS(5613), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [236175] = 3, + [205092] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6943), 1, + STATE(6123), 1, sym_comment, - ACTIONS(11355), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236188] = 5, + ACTIONS(6350), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [205105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11357), 1, - anon_sym_DQUOTE, - STATE(6944), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9992), 1, + anon_sym_AT, + STATE(5472), 1, + aux_sym__multiple_types_repeat1, + STATE(6124), 1, sym_comment, - STATE(6946), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236205] = 4, - ACTIONS(3), 1, + STATE(7310), 1, + sym_param_cmd, + [205124] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(6945), 1, + ACTIONS(943), 1, + sym__table_head_separator, + ACTIONS(10275), 1, + anon_sym_DOT2, + STATE(7311), 1, + sym_path, + STATE(6125), 2, sym_comment, - ACTIONS(8539), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8541), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [236220] = 5, + aux_sym_cell_path_repeat1, + [205141] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11359), 1, - anon_sym_DQUOTE, - STATE(6946), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(9992), 1, + anon_sym_AT, + STATE(5473), 1, + aux_sym__multiple_types_repeat1, + STATE(6126), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236237] = 4, + STATE(7316), 1, + sym_param_cmd, + [205160] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6947), 1, - sym_comment, - ACTIONS(1818), 2, + ACTIONS(2224), 1, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1820), 2, + ACTIONS(2226), 1, anon_sym_LPAREN2, + ACTIONS(2228), 1, sym__entry_separator, - [236252] = 3, + ACTIONS(2230), 1, + aux_sym__unquoted_in_list_token2, + STATE(6127), 1, + sym_comment, + [205179] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6948), 1, + STATE(6128), 1, sym_comment, - ACTIONS(11361), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236265] = 5, + ACTIONS(10278), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205192] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11363), 1, - anon_sym_DQUOTE, - STATE(6949), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10280), 1, + anon_sym_COLON, + ACTIONS(10282), 1, + anon_sym_GT2, + STATE(5309), 1, + aux_sym__multiple_types_repeat1, + STATE(6129), 1, sym_comment, - STATE(6950), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236282] = 5, - ACTIONS(3), 1, + [205211] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11365), 1, - anon_sym_DQUOTE, - STATE(6950), 1, + ACTIONS(9903), 1, + anon_sym_RPAREN, + STATE(6092), 1, + aux_sym__block_body_repeat1, + STATE(6130), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236299] = 6, + ACTIONS(10212), 2, + sym__newline, + anon_sym_SEMI, + [205228] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11367), 1, - anon_sym_RBRACK, - STATE(3591), 1, + ACTIONS(10284), 1, + anon_sym_COLON, + ACTIONS(10286), 1, + anon_sym_GT2, + STATE(5356), 1, aux_sym__multiple_types_repeat1, - STATE(6951), 1, - sym_comment, - [236318] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6952), 1, + STATE(6131), 1, sym_comment, - ACTIONS(11369), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236331] = 5, + [205247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11371), 1, - anon_sym_DQUOTE, - STATE(6953), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10288), 1, + anon_sym_COLON, + ACTIONS(10290), 1, + anon_sym_GT2, + STATE(5357), 1, + aux_sym__multiple_types_repeat1, + STATE(6132), 1, sym_comment, - STATE(6954), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236348] = 5, + [205266] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11373), 1, - anon_sym_DQUOTE, - STATE(6954), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10292), 1, + anon_sym_COLON, + ACTIONS(10294), 1, + anon_sym_GT2, + STATE(5426), 1, + aux_sym__multiple_types_repeat1, + STATE(6133), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236365] = 6, + [205285] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_RBRACK, - ACTIONS(2236), 1, - anon_sym_LPAREN2, - ACTIONS(2238), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(2240), 1, - aux_sym__unquoted_in_list_token4, - STATE(6955), 1, + ACTIONS(10296), 1, + anon_sym_COLON, + ACTIONS(10298), 1, + anon_sym_GT2, + STATE(5359), 1, + aux_sym__multiple_types_repeat1, + STATE(6134), 1, sym_comment, - [236384] = 3, - ACTIONS(251), 1, + [205304] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6956), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10300), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6135), 1, sym_comment, - ACTIONS(11375), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236397] = 5, + [205323] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11377), 1, - anon_sym_DQUOTE, - STATE(6957), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10302), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6136), 1, sym_comment, - STATE(6958), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236414] = 5, + [205342] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11379), 1, - anon_sym_DQUOTE, - STATE(6958), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10304), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6137), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236431] = 3, + [205361] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6959), 1, + STATE(6138), 1, sym_comment, - ACTIONS(11381), 4, + ACTIONS(10306), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [236444] = 3, + [205374] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6960), 1, - sym_comment, - ACTIONS(11383), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236457] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11385), 1, - anon_sym_DQUOTE, - STATE(6961), 1, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3213), 1, + sym_parameter_parens, + STATE(3214), 1, + sym_parameter_bracks, + STATE(6139), 1, sym_comment, - STATE(6962), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236474] = 5, + [205393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11387), 1, - anon_sym_DQUOTE, - STATE(6962), 1, + STATE(6140), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236491] = 3, + ACTIONS(1735), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1737), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [205408] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6963), 1, + STATE(6141), 1, sym_comment, - ACTIONS(11389), 4, + ACTIONS(6368), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [236504] = 3, + anon_sym_LBRACE, + [205421] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6964), 1, - sym_comment, - ACTIONS(11391), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236517] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11393), 1, - anon_sym_DQUOTE, - STATE(6965), 1, - sym_comment, - STATE(6966), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236534] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11395), 1, - anon_sym_DQUOTE, - STATE(6966), 1, + ACTIONS(10064), 1, + anon_sym_use, + ACTIONS(10066), 1, + anon_sym_list, + ACTIONS(10068), 1, + anon_sym_hide, + ACTIONS(10070), 1, + anon_sym_new, + STATE(6142), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236551] = 3, + [205440] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6967), 1, + STATE(6143), 1, sym_comment, - ACTIONS(11397), 4, + ACTIONS(10278), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [236564] = 3, + [205453] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6968), 1, - sym_comment, - ACTIONS(11399), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236577] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11401), 1, - anon_sym_DQUOTE, - STATE(6969), 1, + STATE(6144), 1, sym_comment, - STATE(6970), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236594] = 5, + ACTIONS(10249), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205466] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11403), 1, + ACTIONS(10308), 1, anon_sym_DQUOTE, - STATE(6970), 1, + STATE(6145), 1, sym_comment, - STATE(7127), 1, + STATE(6166), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [236611] = 3, + [205483] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6971), 1, + STATE(6146), 1, sym_comment, - ACTIONS(11405), 4, + ACTIONS(10249), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [236624] = 3, + [205496] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6972), 1, + STATE(6147), 1, sym_comment, - ACTIONS(11407), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236637] = 5, + ACTIONS(6342), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [205509] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11409), 1, - anon_sym_DQUOTE, - STATE(6973), 1, + ACTIONS(1585), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 1, + anon_sym_RBRACE, + ACTIONS(1821), 1, + anon_sym_LPAREN2, + ACTIONS(1827), 1, + sym__entry_separator, + STATE(6148), 1, sym_comment, - STATE(6974), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236654] = 5, + [205528] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11411), 1, - anon_sym_DQUOTE, - STATE(6974), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10310), 1, + anon_sym_COLON, + ACTIONS(10312), 1, + anon_sym_GT2, + STATE(5369), 1, + aux_sym__multiple_types_repeat1, + STATE(6149), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236671] = 5, + [205547] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11413), 1, - anon_sym_DQUOTE, - STATE(6975), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10314), 1, + anon_sym_COLON, + ACTIONS(10316), 1, + anon_sym_GT2, + STATE(5374), 1, + aux_sym__multiple_types_repeat1, + STATE(6150), 1, sym_comment, - STATE(7019), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236688] = 3, + [205566] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6976), 1, - sym_comment, - ACTIONS(11415), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236701] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11417), 1, - anon_sym_DQUOTE, - STATE(6977), 1, - sym_comment, - STATE(6978), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236718] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11419), 1, - anon_sym_DQUOTE, - STATE(6978), 1, + STATE(6151), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236735] = 6, + ACTIONS(10318), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11421), 1, + ACTIONS(10320), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(6979), 1, + STATE(6152), 1, sym_comment, - [236754] = 3, + [205598] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6980), 1, - sym_comment, - ACTIONS(11423), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236767] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11425), 1, - anon_sym_DQUOTE, - STATE(6981), 1, - sym_comment, - STATE(6982), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236784] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11427), 1, - anon_sym_DQUOTE, - STATE(6982), 1, + STATE(6153), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236801] = 3, + ACTIONS(10322), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205611] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6983), 1, + STATE(6154), 1, sym_comment, - ACTIONS(11429), 4, + ACTIONS(10322), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [236814] = 3, + [205624] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6984), 1, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(5766), 1, + sym_parameter_parens, + STATE(5767), 1, + sym_parameter_bracks, + STATE(6155), 1, sym_comment, - ACTIONS(11431), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236827] = 5, + [205643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11433), 1, - anon_sym_DQUOTE, - STATE(6985), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + ACTIONS(5922), 1, + anon_sym_PIPE, + STATE(6156), 1, sym_comment, - STATE(6986), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236844] = 5, - ACTIONS(3), 1, + ACTIONS(5917), 2, + anon_sym_if, + anon_sym_EQ_GT, + [205660] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11435), 1, - anon_sym_DQUOTE, - STATE(6986), 1, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3215), 1, + sym_parameter_parens, + STATE(3216), 1, + sym_parameter_bracks, + STATE(6157), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236861] = 6, + [205679] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(1655), 1, anon_sym_LPAREN2, - ACTIONS(6084), 1, - anon_sym_RBRACK, - ACTIONS(6090), 1, + ACTIONS(2178), 1, + anon_sym_RBRACE, + ACTIONS(2180), 1, sym__entry_separator, - STATE(6987), 1, + STATE(6158), 1, sym_comment, - STATE(8043), 1, + STATE(7373), 1, sym__expr_parenthesized_immediate, - [236880] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6988), 1, - sym_comment, - ACTIONS(11437), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236893] = 5, + [205698] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11439), 1, - anon_sym_DQUOTE, - STATE(6989), 1, + ACTIONS(3488), 1, + anon_sym_COLON2, + ACTIONS(10324), 2, + sym__newline, + sym__space, + STATE(6159), 2, sym_comment, - STATE(6990), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236910] = 5, + aux_sym_ctrl_do_parenthesized_repeat2, + [205713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11441), 1, - anon_sym_DQUOTE, - STATE(6990), 1, - sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236927] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6991), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2182), 1, + anon_sym_RBRACE, + ACTIONS(2184), 1, + sym__entry_separator, + STATE(6160), 1, sym_comment, - ACTIONS(11443), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236940] = 3, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + [205732] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6992), 1, - sym_comment, - ACTIONS(11445), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [236953] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11447), 1, - anon_sym_DQUOTE, - STATE(6993), 1, - sym_comment, - STATE(6994), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236970] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11449), 1, - anon_sym_DQUOTE, - STATE(6994), 1, + STATE(6161), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [236987] = 6, + ACTIONS(10327), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205745] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3325), 1, - sym_parameter_bracks, - STATE(3327), 1, - sym_parameter_parens, - STATE(6995), 1, + STATE(6162), 1, sym_comment, - [237006] = 3, + ACTIONS(10327), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205758] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6996), 1, - sym_comment, - ACTIONS(11451), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237019] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11453), 1, - anon_sym_DQUOTE, - STATE(6997), 1, - sym_comment, - STATE(6998), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237036] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11455), 1, - anon_sym_DQUOTE, - STATE(6998), 1, + STATE(6163), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237053] = 3, + ACTIONS(10329), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205771] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6999), 1, + STATE(6164), 1, sym_comment, - ACTIONS(11457), 4, + ACTIONS(10331), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [237066] = 3, + [205784] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7000), 1, + STATE(6165), 1, sym_comment, - ACTIONS(11459), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237079] = 5, + ACTIONS(10333), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205797] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11461), 1, + ACTIONS(10335), 1, anon_sym_DQUOTE, - STATE(7001), 1, + STATE(6166), 1, sym_comment, - STATE(7002), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [237096] = 5, + [205814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11463), 1, + ACTIONS(10337), 1, anon_sym_DQUOTE, - STATE(7002), 1, + STATE(6167), 1, sym_comment, - STATE(7127), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [237113] = 3, + [205831] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7003), 1, + STATE(6168), 1, sym_comment, - ACTIONS(11465), 4, + ACTIONS(10339), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [237126] = 3, + [205844] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7004), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + STATE(6169), 1, sym_comment, - ACTIONS(11467), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237139] = 5, - ACTIONS(3), 1, + ACTIONS(2222), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205859] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11469), 1, - anon_sym_DQUOTE, - STATE(7005), 1, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(5683), 1, + sym_parameter_parens, + STATE(5685), 1, + sym_parameter_bracks, + STATE(6170), 1, sym_comment, - STATE(7006), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237156] = 5, + [205878] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11471), 1, - anon_sym_DQUOTE, - STATE(7006), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10341), 1, + anon_sym_COLON, + ACTIONS(10343), 1, + anon_sym_GT2, + STATE(5276), 1, + aux_sym__multiple_types_repeat1, + STATE(6171), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237173] = 3, - ACTIONS(251), 1, + [205897] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7007), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10345), 1, + anon_sym_COLON, + ACTIONS(10347), 1, + anon_sym_GT2, + STATE(5288), 1, + aux_sym__multiple_types_repeat1, + STATE(6172), 1, sym_comment, - ACTIONS(11473), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [237186] = 3, - ACTIONS(251), 1, + [205916] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7008), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10349), 1, + anon_sym_COLON, + ACTIONS(10351), 1, + anon_sym_GT2, + STATE(5310), 1, + aux_sym__multiple_types_repeat1, + STATE(6173), 1, sym_comment, - ACTIONS(11475), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237199] = 5, + [205935] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11477), 1, - anon_sym_DQUOTE, - STATE(7009), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10353), 1, + anon_sym_COLON, + ACTIONS(10355), 1, + anon_sym_GT2, + STATE(5325), 1, + aux_sym__multiple_types_repeat1, + STATE(6174), 1, sym_comment, - STATE(7010), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237216] = 5, + [205954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11479), 1, - anon_sym_DQUOTE, - STATE(7010), 1, + ACTIONS(4850), 1, + sym__space, + ACTIONS(4852), 1, + sym__newline, + ACTIONS(10357), 1, + sym_long_flag_identifier, + ACTIONS(10359), 1, + anon_sym_EQ2, + STATE(6175), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237233] = 6, + [205973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11481), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7011), 1, + STATE(6176), 1, sym_comment, - [237252] = 3, + ACTIONS(1727), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [205988] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7012), 1, + STATE(6177), 1, sym_comment, - ACTIONS(11483), 4, + ACTIONS(10361), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [237265] = 5, + [206001] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6178), 1, + sym_comment, + ACTIONS(5619), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [206014] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11485), 1, + STATE(6179), 1, + sym_comment, + ACTIONS(1735), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1737), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206029] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10363), 1, anon_sym_DQUOTE, - STATE(7013), 1, + STATE(6180), 1, sym_comment, - STATE(7014), 1, + STATE(6181), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [237282] = 5, + [206046] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11487), 1, + ACTIONS(10365), 1, anon_sym_DQUOTE, - STATE(7014), 1, + STATE(6181), 1, sym_comment, - STATE(7127), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [237299] = 6, + [206063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1034), 1, - anon_sym_RBRACK, - ACTIONS(1036), 1, - sym__entry_separator, - ACTIONS(2220), 1, - anon_sym_LPAREN2, - ACTIONS(2222), 1, - aux_sym__unquoted_in_list_token4, - STATE(7015), 1, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(6182), 1, sym_comment, - [237318] = 3, + ACTIONS(2241), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [206078] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7016), 1, + STATE(6183), 1, sym_comment, - ACTIONS(11489), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237331] = 5, + ACTIONS(10367), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206091] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11491), 1, - anon_sym_DQUOTE, - STATE(7017), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6184), 1, sym_comment, - STATE(7018), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237348] = 5, + [206110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11493), 1, - anon_sym_DQUOTE, - STATE(7018), 1, + ACTIONS(10371), 1, + anon_sym_COLON2, + STATE(6185), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237365] = 5, + STATE(6186), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7495), 2, + sym__newline, + sym__space, + [206127] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11495), 1, - anon_sym_DQUOTE, - STATE(7019), 1, + ACTIONS(10373), 1, + anon_sym_COLON2, + STATE(6159), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6186), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237382] = 3, - ACTIONS(251), 1, + ACTIONS(7495), 2, + sym__newline, + sym__space, + [206144] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7020), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10375), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6187), 1, sym_comment, - ACTIONS(11497), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237395] = 5, + [206163] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11499), 1, - anon_sym_DQUOTE, - STATE(7021), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10377), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6188), 1, sym_comment, - STATE(7022), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237412] = 5, + [206182] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11501), 1, - anon_sym_DQUOTE, - STATE(7022), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10379), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6189), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237429] = 6, + [206201] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11503), 1, + ACTIONS(10381), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7023), 1, + STATE(6190), 1, sym_comment, - [237448] = 3, - ACTIONS(251), 1, + [206220] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7024), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10383), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6191), 1, sym_comment, - ACTIONS(11505), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237461] = 5, + [206239] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11507), 1, - anon_sym_DQUOTE, - STATE(7025), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6192), 1, sym_comment, - STATE(7310), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237478] = 6, + [206258] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11509), 1, + ACTIONS(10387), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7026), 1, + STATE(6193), 1, sym_comment, - [237497] = 3, + [206277] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10389), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6194), 1, + sym_comment, + [206296] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7027), 1, + ACTIONS(9662), 1, + anon_sym_LBRACE, + STATE(4606), 1, + sym__blosure, + STATE(4741), 1, + sym_block, + STATE(4748), 1, + sym_val_closure, + STATE(6195), 1, sym_comment, - ACTIONS(11511), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237510] = 5, + [206315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11513), 1, - anon_sym_DQUOTE, - STATE(7028), 1, + ACTIONS(2319), 1, + sym__entry_separator, + ACTIONS(10391), 1, + anon_sym_LBRACK2, + STATE(6196), 1, sym_comment, - STATE(7029), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237527] = 5, - ACTIONS(3), 1, + ACTIONS(2315), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206332] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11515), 1, - anon_sym_DQUOTE, - STATE(7029), 1, + STATE(6197), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237544] = 3, + ACTIONS(8089), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [206345] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7030), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(10393), 1, + anon_sym_DOT_DOT2, + STATE(6198), 1, sym_comment, - ACTIONS(11517), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237557] = 5, + ACTIONS(10395), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206362] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11519), 1, - anon_sym_DQUOTE, - STATE(7031), 1, + ACTIONS(2245), 1, + anon_sym_PIPE, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(6199), 1, sym_comment, - STATE(7032), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237574] = 5, - ACTIONS(3), 1, + ACTIONS(2241), 2, + anon_sym_if, + anon_sym_EQ_GT, + [206379] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11521), 1, - anon_sym_DQUOTE, - STATE(7032), 1, + STATE(6200), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237591] = 3, + ACTIONS(10397), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206392] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7033), 1, + STATE(6201), 1, sym_comment, - ACTIONS(11523), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237604] = 5, + ACTIONS(10399), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206405] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11525), 1, - anon_sym_DQUOTE, - STATE(7034), 1, + ACTIONS(1000), 1, + sym__entry_separator, + ACTIONS(1004), 1, + anon_sym_RBRACE, + ACTIONS(2237), 1, + anon_sym_LPAREN2, + ACTIONS(2239), 1, + aux_sym__unquoted_in_record_token4, + STATE(6202), 1, + sym_comment, + [206424] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6203), 1, + sym_comment, + ACTIONS(10401), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206437] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6204), 1, + sym_comment, + ACTIONS(10403), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206450] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6205), 1, + sym_comment, + ACTIONS(10405), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206463] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6206), 1, sym_comment, - STATE(7035), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237621] = 5, - ACTIONS(3), 1, + ACTIONS(10407), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206476] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11527), 1, - anon_sym_DQUOTE, - STATE(7035), 1, + STATE(6207), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237638] = 3, + ACTIONS(10409), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206489] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7036), 1, + STATE(6208), 1, sym_comment, - ACTIONS(11529), 4, + ACTIONS(10411), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [237651] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11531), 1, - anon_sym_DQUOTE, - STATE(7037), 1, - sym_comment, - STATE(7038), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237668] = 5, + [206502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11533), 1, + ACTIONS(10413), 1, anon_sym_DQUOTE, - STATE(7038), 1, + STATE(6209), 1, sym_comment, - STATE(7127), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [237685] = 5, + [206519] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11535), 1, - anon_sym_DQUOTE, - STATE(7039), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2214), 1, + anon_sym_RBRACE, + ACTIONS(2216), 1, + sym__entry_separator, + STATE(6210), 1, sym_comment, - STATE(7040), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237702] = 5, + [206538] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11537), 1, - anon_sym_DQUOTE, - STATE(7040), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10415), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6211), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237719] = 5, + [206557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11539), 1, + ACTIONS(10417), 1, anon_sym_DQUOTE, - STATE(7041), 1, + STATE(6212), 1, sym_comment, - STATE(7042), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [237736] = 5, - ACTIONS(3), 1, + [206574] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11541), 1, - anon_sym_DQUOTE, - STATE(7042), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + STATE(6213), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237753] = 5, + ACTIONS(1737), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11543), 1, - anon_sym_DQUOTE, - STATE(7043), 1, + ACTIONS(10419), 1, + anon_sym_LPAREN, + STATE(6214), 1, sym_comment, - STATE(7044), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237770] = 5, + ACTIONS(10421), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [206604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11545), 1, - anon_sym_DQUOTE, - STATE(7044), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10423), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6215), 1, sym_comment, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237787] = 5, + [206623] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11547), 1, - anon_sym_DQUOTE, - STATE(7045), 1, - sym_comment, - STATE(7069), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [237804] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7046), 1, + ACTIONS(1794), 1, + anon_sym_RBRACE, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, + sym__entry_separator, + ACTIONS(1804), 1, + aux_sym__unquoted_in_record_token2, + STATE(6216), 1, sym_comment, - ACTIONS(11549), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [237817] = 4, + [206642] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7047), 1, - sym_comment, - ACTIONS(8543), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8545), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10425), 1, anon_sym_RBRACK, - anon_sym_GT2, - [237832] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7048), 1, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6217), 1, sym_comment, - ACTIONS(11551), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [237845] = 6, + [206661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11553), 1, + ACTIONS(10427), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7049), 1, - sym_comment, - [237864] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4906), 1, - sym_block, - STATE(7050), 1, - sym_comment, - [237883] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3330), 1, - sym_parameter_parens, - STATE(3331), 1, - sym_parameter_bracks, - STATE(7051), 1, + STATE(6218), 1, sym_comment, - [237902] = 6, + [206680] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_RBRACK, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1848), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - STATE(7052), 1, - sym_comment, - [237921] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10897), 1, - anon_sym_DOT_DOT2, - ACTIONS(11555), 1, - anon_sym_LBRACE, - STATE(7053), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10429), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6219), 1, sym_comment, - ACTIONS(10899), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [237938] = 6, + [206699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11557), 1, - anon_sym_COLON, - ACTIONS(11559), 1, - anon_sym_GT2, - STATE(5817), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10431), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7054), 1, - sym_comment, - [237957] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5010), 1, - anon_sym_DOLLAR, - ACTIONS(5012), 1, - sym_identifier, - ACTIONS(11561), 1, - sym_long_flag_identifier, - ACTIONS(11563), 1, - anon_sym_EQ2, - STATE(7055), 1, - sym_comment, - [237976] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7056), 1, + STATE(6220), 1, sym_comment, - ACTIONS(11565), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [237989] = 5, + [206718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - ACTIONS(6099), 1, - anon_sym_PIPE, - STATE(7057), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10433), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6221), 1, sym_comment, - ACTIONS(6094), 2, - anon_sym_if, - anon_sym_EQ_GT, - [238006] = 6, + [206737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11567), 1, + ACTIONS(10435), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7058), 1, - sym_comment, - [238025] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7059), 1, + STATE(6222), 1, sym_comment, - ACTIONS(11457), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238038] = 6, + [206756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1830), 1, - anon_sym_RBRACE, - ACTIONS(1832), 1, - anon_sym_LPAREN2, - ACTIONS(1838), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7060), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10437), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6223), 1, sym_comment, - [238057] = 6, + [206775] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11569), 1, - anon_sym_COLON, - ACTIONS(11571), 1, - anon_sym_GT2, - STATE(5818), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10439), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7061), 1, - sym_comment, - [238076] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7062), 1, + STATE(6224), 1, sym_comment, - ACTIONS(11573), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238089] = 6, + [206794] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11575), 1, - anon_sym_COLON, - ACTIONS(11577), 1, - anon_sym_GT2, - STATE(5832), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10441), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7063), 1, - sym_comment, - [238108] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7064), 1, + STATE(6225), 1, sym_comment, - ACTIONS(11579), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238121] = 4, + [206813] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT, - STATE(7065), 1, + STATE(6226), 1, sym_comment, - ACTIONS(1022), 3, + ACTIONS(1771), 2, anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1773), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [238136] = 3, + [206828] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7066), 1, + STATE(6227), 1, sym_comment, - ACTIONS(11579), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238149] = 4, - ACTIONS(251), 1, + ACTIONS(10443), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [206841] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(7067), 1, + ACTIONS(10445), 1, + anon_sym_DQUOTE, + STATE(6228), 1, sym_comment, - ACTIONS(2294), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [238164] = 3, + STATE(6231), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206858] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6229), 1, + sym_comment, + [206877] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7068), 1, + STATE(6230), 1, sym_comment, - ACTIONS(11581), 4, + ACTIONS(10449), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238177] = 5, + [206890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11583), 1, + ACTIONS(10451), 1, anon_sym_DQUOTE, - STATE(7069), 1, + STATE(6231), 1, sym_comment, - STATE(7127), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [238194] = 3, + [206907] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7070), 1, + STATE(6232), 1, sym_comment, - ACTIONS(11581), 4, + ACTIONS(5644), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238207] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + [206920] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7071), 1, + ACTIONS(2253), 1, + anon_sym_PIPE, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(6233), 1, sym_comment, - ACTIONS(11581), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238220] = 3, + ACTIONS(2249), 2, + anon_sym_if, + anon_sym_EQ_GT, + [206937] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7072), 1, + STATE(6234), 1, sym_comment, - ACTIONS(11581), 4, + ACTIONS(5648), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238233] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + [206950] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7073), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + ACTIONS(2259), 1, + anon_sym_PIPE, + STATE(6235), 1, sym_comment, - ACTIONS(11581), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238246] = 3, - ACTIONS(251), 1, + ACTIONS(2257), 2, + anon_sym_if, + anon_sym_EQ_GT, + [206967] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7074), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10453), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6236), 1, sym_comment, - ACTIONS(11581), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238259] = 6, + [206986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11585), 1, + ACTIONS(10455), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7075), 1, + STATE(6237), 1, sym_comment, - [238278] = 6, - ACTIONS(251), 1, + [207005] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10887), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3332), 1, - sym_parameter_parens, - STATE(3333), 1, - sym_parameter_bracks, - STATE(7076), 1, + ACTIONS(10457), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6238), 1, sym_comment, - [238297] = 6, - ACTIONS(251), 1, + [207024] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10887), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3334), 1, - sym_parameter_parens, - STATE(3335), 1, - sym_parameter_bracks, - STATE(7077), 1, + ACTIONS(10459), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6239), 1, sym_comment, - [238316] = 3, - ACTIONS(251), 1, + [207043] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7078), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10461), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6240), 1, sym_comment, - ACTIONS(11587), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238329] = 4, + [207062] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7079), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10463), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6241), 1, sym_comment, - ACTIONS(8527), 2, - anon_sym_AT, + [207081] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8529), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10465), 1, anon_sym_RBRACK, - anon_sym_GT2, - [238344] = 4, - ACTIONS(251), 1, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6242), 1, + sym_comment, + [207100] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(7080), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6243), 1, sym_comment, - ACTIONS(1848), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [238359] = 3, + [207119] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7081), 1, + STATE(6244), 1, sym_comment, - ACTIONS(11589), 4, + ACTIONS(10469), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238372] = 3, + [207132] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7082), 1, + STATE(6245), 1, sym_comment, - ACTIONS(11581), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238385] = 3, + ACTIONS(10471), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207145] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10473), 1, + anon_sym_DQUOTE, + STATE(6246), 1, + sym_comment, + STATE(6250), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207162] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7083), 1, + STATE(6247), 1, sym_comment, - ACTIONS(11581), 4, + ACTIONS(10475), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238398] = 3, + [207175] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7084), 1, + STATE(6248), 1, sym_comment, - ACTIONS(11591), 4, + ACTIONS(10477), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238411] = 5, + [207188] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11593), 1, + ACTIONS(10479), 1, anon_sym_DQUOTE, - STATE(7085), 1, - sym_comment, - STATE(7292), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10481), 2, sym__escaped_str_content, sym_escape_sequence, - [238428] = 6, - ACTIONS(251), 1, + STATE(6249), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [207203] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10887), 1, - anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3336), 1, - sym_parameter_parens, - STATE(3337), 1, - sym_parameter_bracks, - STATE(7086), 1, + ACTIONS(10484), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6250), 1, sym_comment, - [238447] = 4, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7087), 1, + ACTIONS(10486), 1, + anon_sym_LPAREN, + STATE(6251), 1, sym_comment, - ACTIONS(8535), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8537), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [238462] = 3, + ACTIONS(10488), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [207235] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7088), 1, + STATE(6252), 1, sym_comment, - ACTIONS(11591), 4, + ACTIONS(10490), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238475] = 3, - ACTIONS(251), 1, + [207248] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7089), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10492), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6253), 1, sym_comment, - ACTIONS(11591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238488] = 6, + [207267] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_RBRACE, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - ACTIONS(2230), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(2232), 1, - aux_sym__unquoted_in_record_token2, - STATE(7090), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10494), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6254), 1, sym_comment, - [238507] = 3, - ACTIONS(251), 1, + [207286] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7091), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10496), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6255), 1, sym_comment, - ACTIONS(5840), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [238520] = 3, - ACTIONS(251), 1, + [207305] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7092), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10498), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6256), 1, sym_comment, - ACTIONS(11591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238533] = 3, - ACTIONS(251), 1, + [207324] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7093), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6257), 1, sym_comment, - ACTIONS(11591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238546] = 3, - ACTIONS(251), 1, + [207343] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7094), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10502), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6258), 1, sym_comment, - ACTIONS(11591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238559] = 3, - ACTIONS(251), 1, + [207362] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7095), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10504), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6259), 1, sym_comment, - ACTIONS(11595), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238572] = 3, - ACTIONS(251), 1, + [207381] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7096), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10506), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6260), 1, sym_comment, - ACTIONS(11595), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238585] = 3, + [207400] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7097), 1, + STATE(6261), 1, sym_comment, - ACTIONS(11591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [238598] = 3, + ACTIONS(10508), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207413] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10510), 1, + anon_sym_DQUOTE, + STATE(6262), 1, + sym_comment, + STATE(6264), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207430] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7098), 1, + STATE(6263), 1, sym_comment, - ACTIONS(11591), 4, + ACTIONS(10512), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238611] = 3, + [207443] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10514), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6264), 1, + sym_comment, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207460] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7099), 1, + STATE(6265), 1, sym_comment, - ACTIONS(11595), 4, + ACTIONS(10512), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238624] = 3, + [207473] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7100), 1, + STATE(6266), 1, sym_comment, - ACTIONS(11595), 4, + ACTIONS(10516), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [238637] = 6, + [207486] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11597), 1, + ACTIONS(10518), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7101), 1, + STATE(6267), 1, sym_comment, - [238656] = 6, + [207505] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11599), 1, + ACTIONS(10520), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7102), 1, + STATE(6268), 1, sym_comment, - [238675] = 6, + [207524] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2197), 1, - anon_sym_RBRACE, - ACTIONS(2199), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7103), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10522), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6269), 1, sym_comment, - STATE(8196), 1, - sym__expr_parenthesized_immediate, - [238694] = 4, + [207543] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7104), 1, - sym_comment, - ACTIONS(8549), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8551), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10524), 1, anon_sym_RBRACK, - anon_sym_GT2, - [238709] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6270), 1, + sym_comment, + [207562] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7105), 1, - sym_comment, - ACTIONS(8553), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8555), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10526), 1, anon_sym_RBRACK, - anon_sym_GT2, - [238724] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6271), 1, + sym_comment, + [207581] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7106), 1, - sym_comment, - ACTIONS(8557), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8559), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10528), 1, anon_sym_RBRACK, - anon_sym_GT2, - [238739] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6272), 1, + sym_comment, + [207600] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7107), 1, - sym_comment, - ACTIONS(8561), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8563), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10530), 1, anon_sym_RBRACK, - anon_sym_GT2, - [238754] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6273), 1, + sym_comment, + [207619] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7108), 1, - sym_comment, - ACTIONS(8565), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8567), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10532), 1, anon_sym_RBRACK, - anon_sym_GT2, - [238769] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6274), 1, + sym_comment, + [207638] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6275), 1, + sym_comment, + ACTIONS(10516), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207651] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6276), 1, + sym_comment, + ACTIONS(10534), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207664] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7109), 1, + STATE(6277), 1, sym_comment, - ACTIONS(8571), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8573), 2, + ACTIONS(1786), 2, anon_sym_RBRACK, - anon_sym_GT2, - [238784] = 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [207679] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7110), 1, + ACTIONS(10536), 1, + anon_sym_DQUOTE, + STATE(6278), 1, sym_comment, - ACTIONS(8575), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8577), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [238799] = 4, + STATE(6280), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207696] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7111), 1, + STATE(6279), 1, sym_comment, - ACTIONS(8579), 2, + ACTIONS(8109), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8581), 2, + ACTIONS(8111), 2, anon_sym_RBRACK, anon_sym_GT2, - [238814] = 6, + [207711] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2284), 1, - anon_sym_RBRACE, - ACTIONS(2286), 1, - sym__entry_separator, - STATE(7112), 1, + ACTIONS(10538), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6280), 1, sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - [238833] = 6, - ACTIONS(3), 1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207728] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2288), 1, - anon_sym_RBRACE, - ACTIONS(2290), 1, - sym__entry_separator, - STATE(7113), 1, + STATE(6281), 1, sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - [238852] = 6, + ACTIONS(10540), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11601), 1, + ACTIONS(10542), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7114), 1, + STATE(6282), 1, sym_comment, - [238871] = 6, + [207760] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - ACTIONS(11603), 1, - anon_sym_RBRACK, - ACTIONS(11605), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7115), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10544), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6283), 1, sym_comment, - STATE(8421), 1, - sym__expr_parenthesized_immediate, - [238890] = 6, + [207779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11607), 1, + ACTIONS(10546), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7116), 1, + STATE(6284), 1, sym_comment, - [238909] = 6, + [207798] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11609), 1, + ACTIONS(10548), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7117), 1, + STATE(6285), 1, sym_comment, - [238928] = 6, + [207817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11611), 1, + ACTIONS(10550), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7118), 1, + STATE(6286), 1, sym_comment, - [238947] = 6, + [207836] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11613), 1, + ACTIONS(10552), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7119), 1, + STATE(6287), 1, sym_comment, - [238966] = 6, + [207855] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11615), 1, + ACTIONS(10554), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7120), 1, - sym_comment, - [238985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7121), 1, + STATE(6288), 1, sym_comment, - ACTIONS(1779), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1781), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [239000] = 6, + [207874] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11617), 1, - anon_sym_COLON, - ACTIONS(11619), 1, - anon_sym_GT2, - STATE(5855), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10556), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7122), 1, - sym_comment, - [239019] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7123), 1, - sym_comment, - ACTIONS(11621), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239032] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7124), 1, - sym_comment, - ACTIONS(11623), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239045] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7125), 1, + STATE(6289), 1, sym_comment, - ACTIONS(6525), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [239058] = 3, - ACTIONS(251), 1, + [207893] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7126), 1, + STATE(6290), 1, sym_comment, - ACTIONS(6571), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [239071] = 4, + ACTIONS(8115), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8117), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [207908] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11625), 1, - anon_sym_DQUOTE, - ACTIONS(11627), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(7127), 2, + ACTIONS(1621), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2218), 1, + anon_sym_RBRACK, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + sym__entry_separator, + STATE(6291), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [239086] = 3, + [207927] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7128), 1, + STATE(6292), 1, sym_comment, - ACTIONS(11630), 4, + ACTIONS(10558), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [239099] = 5, + [207940] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11632), 1, + ACTIONS(10560), 1, anon_sym_DQUOTE, - STATE(7129), 1, + STATE(6293), 1, sym_comment, - STATE(7147), 1, + STATE(6295), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [239116] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_DASH2, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - STATE(7130), 1, - sym_comment, - ACTIONS(1699), 2, - sym_identifier, - anon_sym_DASH_DASH, - [239133] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7131), 1, - sym_comment, - ACTIONS(11634), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239146] = 6, + [207957] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11636), 1, - anon_sym_COLON, - ACTIONS(11638), 1, - anon_sym_GT2, - STATE(5900), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10562), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7132), 1, + STATE(6294), 1, sym_comment, - [239165] = 4, + [207976] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(7133), 1, + ACTIONS(10564), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6295), 1, sym_comment, - ACTIONS(2254), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [239180] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1830), 1, - anon_sym_RBRACK, - ACTIONS(1832), 1, + ACTIONS(5522), 1, anon_sym_LPAREN2, - ACTIONS(1838), 1, + ACTIONS(10566), 1, + anon_sym_RBRACK, + ACTIONS(10568), 1, sym__entry_separator, - STATE(7134), 1, + STATE(6296), 1, sym_comment, - [239199] = 4, + STATE(7656), 1, + sym__expr_parenthesized_immediate, + [208012] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7135), 1, - sym_comment, - ACTIONS(1779), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1781), 2, + ACTIONS(5522), 1, anon_sym_LPAREN2, + ACTIONS(5907), 1, + anon_sym_RBRACK, + ACTIONS(5913), 1, sym__entry_separator, - [239214] = 5, - ACTIONS(251), 1, + STATE(6297), 1, + sym_comment, + STATE(7267), 1, + sym__expr_parenthesized_immediate, + [208031] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11640), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10570), 1, anon_sym_RBRACK, - STATE(5530), 1, - aux_sym_parameter_repeat2, - STATE(7136), 1, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6298), 1, sym_comment, - ACTIONS(2571), 2, - sym__newline, - anon_sym_COMMA, - [239231] = 6, + [208050] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11642), 1, + ACTIONS(10572), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7137), 1, + STATE(6299), 1, sym_comment, - [239250] = 3, - ACTIONS(251), 1, + [208069] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7138), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10574), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6300), 1, sym_comment, - ACTIONS(11457), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239263] = 4, + [208088] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(7139), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10576), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6301), 1, sym_comment, - ACTIONS(2272), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [239278] = 3, - ACTIONS(251), 1, + [208107] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7140), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10578), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6302), 1, sym_comment, - ACTIONS(11621), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239291] = 4, + [208126] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7141), 1, - sym_comment, - ACTIONS(1018), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1020), 2, - anon_sym_DOT, + ACTIONS(6494), 1, sym__entry_separator, - [239306] = 4, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10580), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6303), 1, + sym_comment, + [208145] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7142), 1, - sym_comment, - ACTIONS(1014), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1016), 2, - anon_sym_DOT, + ACTIONS(6494), 1, sym__entry_separator, - [239321] = 4, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10582), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6304), 1, + sym_comment, + [208164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(7143), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10584), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6305), 1, sym_comment, - ACTIONS(2234), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [239336] = 6, + [208183] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11644), 1, - anon_sym_COLON, - ACTIONS(11646), 1, - anon_sym_GT2, - STATE(5901), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10586), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7144), 1, + STATE(6306), 1, sym_comment, - [239355] = 3, + [208202] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7145), 1, + STATE(6307), 1, sym_comment, - ACTIONS(11648), 4, + ACTIONS(10588), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [239368] = 3, + [208215] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7146), 1, + STATE(6308), 1, sym_comment, - ACTIONS(11457), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(10590), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [208228] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10592), 1, + anon_sym_DQUOTE, + STATE(6309), 1, + sym_comment, + STATE(6312), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208245] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(10594), 1, + anon_sym_RBRACK, + ACTIONS(10596), 1, + sym__entry_separator, + STATE(6310), 1, + sym_comment, + STATE(7656), 1, + sym__expr_parenthesized_immediate, + [208264] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2218), 1, anon_sym_RBRACE, - [239381] = 5, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + ACTIONS(2222), 1, + sym__entry_separator, + STATE(6311), 1, + sym_comment, + [208283] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11650), 1, + ACTIONS(10598), 1, anon_sym_DQUOTE, - STATE(7127), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - STATE(7147), 1, + STATE(6312), 1, sym_comment, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [239398] = 3, + [208300] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7148), 1, + STATE(6313), 1, sym_comment, - ACTIONS(6485), 4, + ACTIONS(6360), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [239411] = 3, + [208313] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7149), 1, + STATE(6314), 1, sym_comment, - ACTIONS(11652), 4, + ACTIONS(6362), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239424] = 4, + anon_sym_LBRACE, + [208326] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7150), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10600), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6315), 1, sym_comment, - ACTIONS(1771), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1773), 2, - anon_sym_LPAREN2, + [208345] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10602), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6316), 1, + sym_comment, + [208364] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10604), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6317), 1, + sym_comment, + [208383] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10606), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6318), 1, + sym_comment, + [208402] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10608), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6319), 1, + sym_comment, + [208421] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10610), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6320), 1, + sym_comment, + [208440] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10612), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6321), 1, + sym_comment, + [208459] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - [239439] = 3, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6322), 1, + sym_comment, + [208478] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7151), 1, + ACTIONS(10616), 1, + anon_sym_RBRACK, + STATE(5019), 1, + aux_sym_parameter_repeat2, + STATE(6323), 1, sym_comment, - ACTIONS(11654), 4, + ACTIONS(2554), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239452] = 3, + anon_sym_COMMA, + [208495] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7152), 1, + STATE(6324), 1, sym_comment, - ACTIONS(11621), 4, + ACTIONS(10512), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [239465] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7153), 1, - sym_comment, - ACTIONS(11656), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [239478] = 3, + [208508] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7154), 1, + STATE(6325), 1, sym_comment, - ACTIONS(11658), 4, + ACTIONS(10618), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [239491] = 3, - ACTIONS(251), 1, + [208521] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7155), 1, + ACTIONS(10620), 1, + anon_sym_DQUOTE, + STATE(6326), 1, sym_comment, - ACTIONS(11621), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239504] = 3, + STATE(6331), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208538] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7156), 1, + STATE(6327), 1, sym_comment, - ACTIONS(11621), 4, + ACTIONS(10512), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [239517] = 3, + [208551] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7157), 1, + STATE(6328), 1, sym_comment, - ACTIONS(11621), 4, + ACTIONS(10622), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [239530] = 3, + [208564] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7158), 1, + STATE(6329), 1, sym_comment, - ACTIONS(11621), 4, + ACTIONS(10624), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [239543] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11660), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7159), 1, - sym_comment, - [239562] = 3, + [208577] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7160), 1, + STATE(6330), 1, sym_comment, - ACTIONS(11621), 4, + ACTIONS(10626), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [239575] = 4, + [208590] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7161), 1, - sym_comment, - ACTIONS(8593), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8595), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [239590] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7162), 1, + ACTIONS(10628), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6331), 1, sym_comment, - ACTIONS(11662), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239603] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208607] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, + ACTIONS(3876), 1, sym__newline, - ACTIONS(6436), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(4911), 1, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4495), 1, sym_block, - STATE(7163), 1, + STATE(6332), 1, sym_comment, - STATE(7290), 1, - aux_sym_shebang_repeat1, - [239622] = 3, - ACTIONS(251), 1, + [208626] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7164), 1, + ACTIONS(2224), 1, + anon_sym_RBRACE, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + ACTIONS(2228), 1, + sym__entry_separator, + ACTIONS(2230), 1, + aux_sym__unquoted_in_record_token2, + STATE(6333), 1, sym_comment, - ACTIONS(6487), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [239635] = 6, - ACTIONS(251), 1, + [208645] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(11664), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(7165), 1, + ACTIONS(10630), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6334), 1, sym_comment, - STATE(8678), 1, - sym_val_list, - [239654] = 3, - ACTIONS(251), 1, + [208664] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7166), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10632), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6335), 1, sym_comment, - ACTIONS(11666), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [239667] = 4, + [208683] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7167), 1, - sym_comment, - ACTIONS(1799), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1801), 2, - anon_sym_LPAREN2, + ACTIONS(6494), 1, sym__entry_separator, - [239682] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10887), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(10889), 1, - anon_sym_LPAREN, - STATE(3319), 1, - sym_parameter_parens, - STATE(3329), 1, - sym_parameter_bracks, - STATE(7168), 1, + ACTIONS(10634), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6336), 1, sym_comment, - [239701] = 6, + [208702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11668), 1, + ACTIONS(10636), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7169), 1, + STATE(6337), 1, sym_comment, - [239720] = 5, - ACTIONS(251), 1, + [208721] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(10679), 1, - aux_sym__immediate_decimal_token2, - STATE(7170), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10638), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6338), 1, sym_comment, - ACTIONS(1781), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [239737] = 6, + [208740] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11670), 1, + ACTIONS(10640), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7171), 1, + STATE(6339), 1, sym_comment, - [239756] = 6, + [208759] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - STATE(6079), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10642), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7172), 1, + STATE(6340), 1, sym_comment, - STATE(8132), 1, - sym_param_cmd, - [239775] = 6, + [208778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10627), 1, - anon_sym_AT, - STATE(6080), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10644), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7173), 1, + STATE(6341), 1, sym_comment, - STATE(8069), 1, - sym_param_cmd, - [239794] = 5, + [208797] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(11672), 1, - anon_sym_DOT_DOT2, - STATE(7174), 1, + STATE(6342), 1, sym_comment, - ACTIONS(11674), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [239811] = 4, + ACTIONS(10646), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [208810] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10648), 1, + anon_sym_DQUOTE, + STATE(6343), 1, + sym_comment, + STATE(6344), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208827] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10650), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6344), 1, + sym_comment, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208844] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(11676), 2, + ACTIONS(595), 1, + ts_builtin_sym_end, + STATE(210), 1, + aux_sym__block_body_repeat1, + STATE(6345), 1, + sym_comment, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - STATE(7175), 2, + [208861] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4396), 1, + sym_block, + STATE(6346), 1, sym_comment, - aux_sym__block_body_repeat1, - [239826] = 4, - ACTIONS(3), 1, + STATE(6414), 1, + aux_sym_shebang_repeat1, + [208880] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(7176), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + STATE(6347), 1, sym_comment, - ACTIONS(1818), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1820), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [239841] = 6, + ACTIONS(1729), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11679), 1, + ACTIONS(10652), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7177), 1, + STATE(6348), 1, sym_comment, - [239860] = 4, + [208914] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7178), 1, - sym_comment, - ACTIONS(8607), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8609), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10654), 1, anon_sym_RBRACK, - anon_sym_GT2, - [239875] = 6, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6349), 1, + sym_comment, + [208933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11681), 1, + ACTIONS(10656), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7179), 1, + STATE(6350), 1, sym_comment, - [239894] = 6, + [208952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11683), 1, + ACTIONS(10658), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7180), 1, + STATE(6351), 1, sym_comment, - [239913] = 6, - ACTIONS(251), 1, + [208971] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5027), 1, - sym_block, - STATE(7050), 1, - aux_sym_shebang_repeat1, - STATE(7181), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10660), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6352), 1, sym_comment, - [239932] = 6, + [208990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11685), 1, + ACTIONS(10662), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7182), 1, + STATE(6353), 1, sym_comment, - [239951] = 6, + [209009] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11687), 1, + ACTIONS(10664), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7183), 1, + STATE(6354), 1, sym_comment, - [239970] = 6, + [209028] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11689), 1, + ACTIONS(10666), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7184), 1, + STATE(6355), 1, sym_comment, - [239989] = 6, + [209047] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6356), 1, + sym_comment, + ACTIONS(10668), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [209060] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10670), 1, + anon_sym_DQUOTE, + STATE(6357), 1, + sym_comment, + STATE(6359), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209077] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, + ACTIONS(1585), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(2266), 1, + ACTIONS(1819), 1, anon_sym_RBRACK, - ACTIONS(2268), 1, + ACTIONS(1821), 1, anon_sym_LPAREN2, - ACTIONS(2270), 1, + ACTIONS(1827), 1, sym__entry_separator, - STATE(7185), 1, + STATE(6358), 1, sym_comment, - [240008] = 6, + [209096] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11691), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7186), 1, + ACTIONS(10672), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6359), 1, sym_comment, - [240027] = 3, - ACTIONS(251), 1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209113] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7187), 1, + STATE(6360), 1, sym_comment, - ACTIONS(11693), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1727), 2, anon_sym_RBRACE, - [240040] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5715), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 2, anon_sym_LPAREN2, - ACTIONS(11695), 1, - anon_sym_RBRACK, - ACTIONS(11697), 1, sym__entry_separator, - STATE(7188), 1, - sym_comment, - STATE(8421), 1, - sym__expr_parenthesized_immediate, - [240059] = 6, + [209128] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(1655), 1, anon_sym_LPAREN2, - ACTIONS(11699), 1, - anon_sym_RBRACK, - ACTIONS(11701), 1, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(2140), 1, sym__entry_separator, - STATE(7189), 1, + STATE(6361), 1, sym_comment, - STATE(8421), 1, + STATE(7365), 1, sym__expr_parenthesized_immediate, - [240078] = 4, + [209147] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7190), 1, - sym_comment, - ACTIONS(8611), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8613), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10674), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240093] = 6, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6362), 1, + sym_comment, + [209166] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11703), 1, - anon_sym_COLON, - ACTIONS(11705), 1, - anon_sym_GT2, - STATE(5844), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10676), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7191), 1, + STATE(6363), 1, sym_comment, - [240112] = 4, + [209185] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7192), 1, - sym_comment, - ACTIONS(8617), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8619), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240127] = 6, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6364), 1, + sym_comment, + [209204] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11707), 1, + ACTIONS(10680), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7193), 1, + STATE(6365), 1, sym_comment, - [240146] = 4, + [209223] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7194), 1, - sym_comment, - ACTIONS(8621), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8623), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10682), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240161] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6366), 1, + sym_comment, + [209242] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7195), 1, - sym_comment, - ACTIONS(8625), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8627), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10684), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240176] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_DASH2, - ACTIONS(11709), 1, - anon_sym_EQ2, - STATE(7196), 1, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6367), 1, sym_comment, - ACTIONS(5112), 2, - sym_identifier, - anon_sym_DASH_DASH, - [240193] = 4, + [209261] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7197), 1, - sym_comment, - ACTIONS(8629), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8631), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10686), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240208] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6368), 1, + sym_comment, + [209280] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7198), 1, - sym_comment, - ACTIONS(8633), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8635), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10688), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240223] = 3, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6369), 1, + sym_comment, + [209299] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7199), 1, + STATE(6370), 1, sym_comment, - ACTIONS(11711), 4, + ACTIONS(10690), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [240236] = 3, - ACTIONS(251), 1, + [209312] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7200), 1, + ACTIONS(10692), 1, + anon_sym_DQUOTE, + STATE(6371), 1, sym_comment, - ACTIONS(11693), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240249] = 5, + STATE(6373), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209329] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5132), 1, - anon_sym_DASH2, - ACTIONS(11713), 1, - anon_sym_EQ2, - STATE(7201), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(6372), 1, sym_comment, - ACTIONS(5130), 2, - sym_identifier, - anon_sym_DASH_DASH, - [240266] = 6, - ACTIONS(251), 1, + ACTIONS(2228), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [209344] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(1781), 1, - anon_sym_LBRACE, - ACTIONS(11715), 1, - anon_sym_DOT, - ACTIONS(11717), 1, - aux_sym__immediate_decimal_token2, - STATE(7202), 1, + ACTIONS(10694), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6373), 1, sym_comment, - [240285] = 4, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209361] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7203), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10696), 1, + anon_sym_COLON, + ACTIONS(10698), 1, + anon_sym_GT2, + STATE(5304), 1, + aux_sym__multiple_types_repeat1, + STATE(6374), 1, sym_comment, - ACTIONS(8641), 2, - anon_sym_AT, + [209380] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(8643), 2, - anon_sym_RBRACK, + ACTIONS(10700), 1, + anon_sym_COLON, + ACTIONS(10702), 1, anon_sym_GT2, - [240300] = 4, + STATE(5307), 1, + aux_sym__multiple_types_repeat1, + STATE(6375), 1, + sym_comment, + [209399] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7204), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10704), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6376), 1, sym_comment, - ACTIONS(8645), 2, - anon_sym_AT, + [209418] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8647), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10706), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240315] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6377), 1, + sym_comment, + [209437] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7205), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6378), 1, sym_comment, - ACTIONS(8665), 2, - anon_sym_AT, + [209456] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8667), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10710), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240330] = 5, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6379), 1, + sym_comment, + [209475] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11719), 1, - anon_sym_DQUOTE, - STATE(7206), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10712), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6380), 1, sym_comment, - STATE(7222), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [240347] = 3, + [209494] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7207), 1, + STATE(6381), 1, sym_comment, - ACTIONS(10951), 4, + ACTIONS(10714), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [240360] = 4, + [209507] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7208), 1, - sym_comment, - ACTIONS(8669), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8671), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10716), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240375] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6382), 1, + sym_comment, + [209526] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7209), 1, - sym_comment, - ACTIONS(8673), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8675), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10718), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240390] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6383), 1, + sym_comment, + [209545] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6384), 1, + sym_comment, + ACTIONS(10720), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [209558] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7210), 1, + ACTIONS(10722), 1, + anon_sym_DQUOTE, + STATE(6385), 1, sym_comment, - ACTIONS(8677), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8679), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240405] = 3, + STATE(6387), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209575] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7211), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(10724), 1, + anon_sym_DOT_DOT2, + STATE(6386), 1, sym_comment, - ACTIONS(10951), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240418] = 6, - ACTIONS(251), 1, + ACTIONS(10726), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209592] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4923), 1, - sym_block, - STATE(7212), 1, + ACTIONS(10728), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6387), 1, sym_comment, - [240437] = 4, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209609] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7213), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + anon_sym_RBRACE, + ACTIONS(2188), 1, + sym__entry_separator, + STATE(6388), 1, sym_comment, - ACTIONS(8691), 2, - anon_sym_AT, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + [209628] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8693), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10730), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240452] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6389), 1, + sym_comment, + [209647] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7214), 1, - sym_comment, - ACTIONS(8699), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8701), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10732), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240467] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6390), 1, + sym_comment, + [209666] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7215), 1, - sym_comment, - ACTIONS(8703), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8705), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10734), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240482] = 6, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6391), 1, + sym_comment, + [209685] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_LPAREN2, - ACTIONS(1850), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2292), 1, - anon_sym_RBRACK, - ACTIONS(2294), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7216), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10736), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6392), 1, sym_comment, - [240501] = 3, - ACTIONS(251), 1, + [209704] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7217), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10738), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6393), 1, sym_comment, - ACTIONS(11721), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240514] = 4, + [209723] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7218), 1, - sym_comment, - ACTIONS(8717), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8719), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10740), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240529] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6394), 1, + sym_comment, + [209742] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7219), 1, - sym_comment, - ACTIONS(8721), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8723), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10742), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240544] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6395), 1, + sym_comment, + [209761] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7220), 1, - sym_comment, - ACTIONS(8725), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8727), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10744), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240559] = 3, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6396), 1, + sym_comment, + [209780] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7221), 1, + STATE(6397), 1, sym_comment, - ACTIONS(11723), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240572] = 5, + ACTIONS(10746), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [209793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11725), 1, + ACTIONS(10748), 1, anon_sym_DQUOTE, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - STATE(7222), 1, + STATE(6398), 1, sym_comment, - ACTIONS(10873), 2, + STATE(6400), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [240589] = 4, + [209810] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7223), 1, - sym_comment, - ACTIONS(8729), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8731), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10750), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240604] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6399), 1, + sym_comment, + [209829] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7224), 1, + ACTIONS(10752), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6400), 1, sym_comment, - ACTIONS(8733), 2, - anon_sym_AT, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209846] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8735), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10754), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240619] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6401), 1, + sym_comment, + [209865] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7225), 1, - sym_comment, - ACTIONS(8737), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8739), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10756), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240634] = 6, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6402), 1, + sym_comment, + [209884] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11727), 1, + ACTIONS(10758), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7226), 1, + STATE(6403), 1, sym_comment, - [240653] = 6, + [209903] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(11729), 1, + ACTIONS(10760), 1, anon_sym_RBRACK, - STATE(3591), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7227), 1, + STATE(6404), 1, sym_comment, - [240672] = 4, + [209922] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7228), 1, - sym_comment, - ACTIONS(8758), 2, - anon_sym_AT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8760), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10762), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240687] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6405), 1, + sym_comment, + [209941] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7229), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10764), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6406), 1, sym_comment, - ACTIONS(8773), 2, - anon_sym_AT, + [209960] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8775), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10766), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240702] = 4, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6407), 1, + sym_comment, + [209979] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(7230), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6408), 1, sym_comment, - ACTIONS(8777), 2, - anon_sym_AT, + [209998] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(8779), 2, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10770), 1, anon_sym_RBRACK, - anon_sym_GT2, - [240717] = 3, - ACTIONS(251), 1, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6409), 1, + sym_comment, + [210017] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7231), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10772), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6410), 1, sym_comment, - ACTIONS(11731), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240730] = 3, + [210036] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7232), 1, + STATE(6411), 1, sym_comment, - ACTIONS(11733), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240743] = 4, + ACTIONS(10774), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210049] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7233), 1, + ACTIONS(10776), 1, + anon_sym_DQUOTE, + STATE(6412), 1, sym_comment, - ACTIONS(8781), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8783), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240758] = 4, + STATE(6413), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210066] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7234), 1, + ACTIONS(10778), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6413), 1, sym_comment, - ACTIONS(8785), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8787), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240773] = 4, - ACTIONS(3), 1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210083] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(7235), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4427), 1, + sym_block, + STATE(6414), 1, sym_comment, - ACTIONS(8789), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8791), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240788] = 6, + [210102] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11047), 1, - anon_sym_LBRACK, - ACTIONS(11049), 1, - anon_sym_LPAREN, - STATE(6531), 1, - sym_parameter_parens, - STATE(6537), 1, - sym_parameter_bracks, - STATE(7236), 1, + STATE(6415), 1, + sym_comment, + ACTIONS(10780), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210115] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10782), 1, + anon_sym_DQUOTE, + STATE(6416), 1, + sym_comment, + STATE(6417), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210132] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10784), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6417), 1, sym_comment, - [240807] = 3, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210149] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7237), 1, + STATE(6418), 1, sym_comment, - ACTIONS(11735), 4, + ACTIONS(10786), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [240820] = 4, - ACTIONS(3), 1, + [210162] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(7238), 1, + STATE(6419), 1, sym_comment, - ACTIONS(8793), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8795), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240835] = 4, + ACTIONS(10788), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210175] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7239), 1, + ACTIONS(10790), 1, + anon_sym_DQUOTE, + STATE(6420), 1, sym_comment, - ACTIONS(8799), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8801), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240850] = 4, + STATE(6422), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210192] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6421), 1, + sym_comment, + ACTIONS(10792), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210205] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7240), 1, + ACTIONS(10794), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6422), 1, sym_comment, - ACTIONS(8803), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8805), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [240865] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(2241), 1, + anon_sym_RBRACE, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2245), 1, sym__entry_separator, - ACTIONS(11737), 1, - anon_sym_COLON, - ACTIONS(11739), 1, - anon_sym_GT2, - STATE(5856), 1, - aux_sym__multiple_types_repeat1, - STATE(7241), 1, + ACTIONS(2247), 1, + aux_sym__unquoted_in_record_token4, + STATE(6423), 1, sym_comment, - [240884] = 3, + [210241] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7242), 1, + STATE(6424), 1, sym_comment, - ACTIONS(11735), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [240897] = 3, - ACTIONS(251), 1, + ACTIONS(10796), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210254] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7243), 1, + ACTIONS(10798), 1, + anon_sym_DQUOTE, + STATE(6425), 1, sym_comment, - ACTIONS(5828), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [240910] = 3, + STATE(6427), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210271] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7244), 1, + STATE(6426), 1, sym_comment, - ACTIONS(11741), 4, + ACTIONS(10800), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [240923] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(7245), 1, - sym_comment, - ACTIONS(1699), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [240938] = 4, + [210284] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7246), 1, + ACTIONS(10802), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6427), 1, sym_comment, - ACTIONS(2242), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2244), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [240953] = 3, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210301] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7247), 1, + STATE(6428), 1, sym_comment, - ACTIONS(11743), 4, + ACTIONS(10804), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [240966] = 6, - ACTIONS(3), 1, + [210314] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11745), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7248), 1, + STATE(6429), 1, sym_comment, - [240985] = 6, + ACTIONS(10806), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11747), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7249), 1, + ACTIONS(10808), 1, + anon_sym_DQUOTE, + STATE(6430), 1, sym_comment, - [241004] = 6, + STATE(6431), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11749), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7250), 1, + ACTIONS(10810), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6431), 1, sym_comment, - [241023] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210361] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2190), 1, + anon_sym_RBRACE, + ACTIONS(2192), 1, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11751), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7251), 1, + STATE(6432), 1, + sym_comment, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + [210380] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6433), 1, sym_comment, - [241042] = 6, + ACTIONS(10812), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11753), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7252), 1, + ACTIONS(10814), 1, + anon_sym_DQUOTE, + STATE(6434), 1, sym_comment, - [241061] = 6, + STATE(6435), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11755), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7253), 1, + ACTIONS(10816), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6435), 1, sym_comment, - [241080] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11757), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7254), 1, + ACTIONS(10818), 1, + anon_sym_DQUOTE, + STATE(6167), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6436), 1, + sym_comment, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210444] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6437), 1, sym_comment, - [241099] = 6, + ACTIONS(10820), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11759), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7255), 1, + ACTIONS(10822), 1, + anon_sym_DQUOTE, + STATE(6438), 1, sym_comment, - [241118] = 6, + STATE(6439), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210474] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11761), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7256), 1, + ACTIONS(10824), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6439), 1, sym_comment, - [241137] = 3, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210491] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7257), 1, + STATE(6440), 1, sym_comment, - ACTIONS(11763), 4, + ACTIONS(10826), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [241150] = 3, - ACTIONS(251), 1, + [210504] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7258), 1, + ACTIONS(10828), 1, + anon_sym_DQUOTE, + STATE(6441), 1, sym_comment, - ACTIONS(11743), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [241163] = 3, + STATE(6442), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210521] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10830), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6442), 1, + sym_comment, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210538] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7259), 1, + STATE(6443), 1, sym_comment, - ACTIONS(11743), 4, + ACTIONS(10832), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [241176] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11765), 1, - anon_sym_COLON, - ACTIONS(11767), 1, - anon_sym_GT2, - STATE(5847), 1, - aux_sym__multiple_types_repeat1, - STATE(7260), 1, - sym_comment, - [241195] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11769), 1, - anon_sym_COLON, - ACTIONS(11771), 1, - anon_sym_GT2, - STATE(5848), 1, - aux_sym__multiple_types_repeat1, - STATE(7261), 1, - sym_comment, - [241214] = 3, + [210551] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7262), 1, + STATE(6444), 1, sym_comment, - ACTIONS(11773), 4, + ACTIONS(10834), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [241227] = 6, + [210564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11775), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7263), 1, + ACTIONS(10836), 1, + anon_sym_DQUOTE, + STATE(6445), 1, + sym_comment, + STATE(6446), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210581] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10838), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6446), 1, sym_comment, - [241246] = 3, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210598] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7264), 1, + STATE(6447), 1, sym_comment, - ACTIONS(11743), 4, + ACTIONS(10832), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [241259] = 5, + [210611] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6448), 1, + sym_comment, + ACTIONS(10840), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210624] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11777), 1, + ACTIONS(10842), 1, anon_sym_DQUOTE, - STATE(7265), 1, + STATE(6449), 1, sym_comment, - STATE(7283), 1, + STATE(6450), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [241276] = 6, + [210641] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - ACTIONS(11779), 1, - anon_sym_RBRACK, - ACTIONS(11781), 1, - sym__entry_separator, - STATE(7266), 1, + ACTIONS(10844), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6450), 1, sym_comment, - STATE(8421), 1, - sym__expr_parenthesized_immediate, - [241295] = 5, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210658] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10563), 1, - anon_sym_RPAREN, - STATE(7175), 1, - aux_sym__block_body_repeat1, - STATE(7267), 1, + STATE(6451), 1, sym_comment, - ACTIONS(11187), 2, - sym__newline, - anon_sym_SEMI, - [241312] = 6, + ACTIONS(10846), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11783), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7268), 1, + ACTIONS(10848), 1, + anon_sym_DQUOTE, + STATE(6452), 1, sym_comment, - [241331] = 6, + STATE(6453), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11785), 1, - anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7269), 1, + ACTIONS(10850), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6453), 1, sym_comment, - [241350] = 5, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210705] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_LBRACE, - ACTIONS(11787), 1, - anon_sym_DOT_DOT2, - STATE(7270), 1, + STATE(6454), 1, sym_comment, - ACTIONS(11789), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [241367] = 3, - ACTIONS(251), 1, + ACTIONS(10852), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210718] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7271), 1, + ACTIONS(10854), 1, + anon_sym_DQUOTE, + STATE(6455), 1, sym_comment, - ACTIONS(11791), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [241380] = 6, - ACTIONS(251), 1, + STATE(6456), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210735] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5412), 1, - sym_block, - STATE(7272), 1, + ACTIONS(10856), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6456), 1, sym_comment, - STATE(7275), 1, - aux_sym_shebang_repeat1, - [241399] = 5, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210752] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11793), 1, - anon_sym_RPAREN, - STATE(7175), 1, - aux_sym__block_body_repeat1, - STATE(7273), 1, + STATE(6457), 1, sym_comment, - ACTIONS(11187), 2, - sym__newline, - anon_sym_SEMI, - [241416] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9366), 1, + ACTIONS(10858), 4, sym_identifier, - ACTIONS(9548), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6596), 1, - sym__variable_name, - STATE(7274), 1, - sym_comment, - [241435] = 6, - ACTIONS(251), 1, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210765] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5417), 1, - sym_block, - STATE(7275), 1, + ACTIONS(10860), 1, + anon_sym_DQUOTE, + STATE(6458), 1, sym_comment, - [241454] = 6, - ACTIONS(251), 1, + STATE(6459), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210782] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5418), 1, - sym_block, - STATE(7276), 1, + ACTIONS(10862), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6459), 1, sym_comment, - STATE(7277), 1, - aux_sym_shebang_repeat1, - [241473] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210799] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5422), 1, - sym_block, - STATE(7277), 1, + STATE(6460), 1, sym_comment, - [241492] = 6, - ACTIONS(251), 1, + ACTIONS(10864), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210812] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(11664), 1, - anon_sym_LBRACK, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(7278), 1, + ACTIONS(10866), 1, + anon_sym_DQUOTE, + STATE(6461), 1, sym_comment, - STATE(8247), 1, - sym_val_list, - [241511] = 6, + STATE(6462), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210829] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11795), 1, - anon_sym_COLON, - ACTIONS(11797), 1, - anon_sym_GT2, - STATE(5846), 1, - aux_sym__multiple_types_repeat1, - STATE(7279), 1, + ACTIONS(10868), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6462), 1, sym_comment, - [241530] = 3, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210846] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7280), 1, + STATE(6463), 1, sym_comment, - ACTIONS(11799), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [241543] = 6, - ACTIONS(251), 1, + ACTIONS(10870), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210859] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5052), 1, - sym_block, - STATE(7212), 1, - aux_sym_shebang_repeat1, - STATE(7281), 1, + ACTIONS(10872), 1, + anon_sym_DQUOTE, + STATE(6464), 1, + sym_comment, + STATE(6465), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210876] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10874), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6465), 1, sym_comment, - [241562] = 5, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210893] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - ACTIONS(11801), 1, - aux_sym__immediate_decimal_token2, - STATE(7282), 1, + STATE(6466), 1, sym_comment, - ACTIONS(1801), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [241579] = 5, + ACTIONS(10876), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210906] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11803), 1, + ACTIONS(10878), 1, anon_sym_DQUOTE, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - STATE(7283), 1, + STATE(6467), 1, sym_comment, - ACTIONS(10873), 2, + STATE(6468), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [241596] = 4, + [210923] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7284), 1, + ACTIONS(10880), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6468), 1, sym_comment, - ACTIONS(1022), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1024), 2, - anon_sym_DOT, - sym__entry_separator, - [241611] = 5, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210940] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1480), 1, - ts_builtin_sym_end, - STATE(225), 1, - aux_sym__block_body_repeat1, - STATE(7285), 1, + STATE(6469), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [241628] = 6, - ACTIONS(251), 1, + ACTIONS(10882), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210953] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5281), 1, - sym_block, - STATE(7286), 1, + ACTIONS(10884), 1, + anon_sym_DQUOTE, + STATE(6470), 1, sym_comment, - STATE(7287), 1, - aux_sym_shebang_repeat1, - [241647] = 6, - ACTIONS(251), 1, + STATE(6471), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210970] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5283), 1, - sym_block, - STATE(7287), 1, + ACTIONS(10886), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6471), 1, sym_comment, - [241666] = 6, - ACTIONS(251), 1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210987] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5284), 1, - sym_block, - STATE(7288), 1, + ACTIONS(10888), 1, + anon_sym_DQUOTE, + STATE(6472), 1, sym_comment, - STATE(7289), 1, - aux_sym_shebang_repeat1, - [241685] = 6, - ACTIONS(251), 1, + STATE(6473), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211004] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(5288), 1, - sym_block, - STATE(7289), 1, + ACTIONS(10890), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6473), 1, sym_comment, - [241704] = 6, - ACTIONS(251), 1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211021] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(4913), 1, - sym_block, - STATE(7290), 1, + ACTIONS(10892), 1, + anon_sym_DQUOTE, + STATE(6474), 1, sym_comment, - [241723] = 3, - ACTIONS(251), 1, + STATE(6475), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211038] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7291), 1, + ACTIONS(10894), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6475), 1, sym_comment, - ACTIONS(11805), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [241736] = 5, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211055] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11807), 1, + ACTIONS(10896), 1, anon_sym_DQUOTE, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - STATE(7292), 1, + STATE(6476), 1, sym_comment, - ACTIONS(10873), 2, + STATE(6477), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [241753] = 6, - ACTIONS(251), 1, + [211072] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10767), 1, - anon_sym_use, - ACTIONS(10769), 1, - anon_sym_list, - ACTIONS(10771), 1, - anon_sym_hide, - ACTIONS(10773), 1, - anon_sym_new, - STATE(7293), 1, + ACTIONS(10898), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6477), 1, sym_comment, - [241772] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211089] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2266), 1, - anon_sym_RBRACE, - ACTIONS(2268), 1, - anon_sym_LPAREN2, - ACTIONS(2270), 1, - sym__entry_separator, - STATE(7294), 1, + ACTIONS(10900), 1, + anon_sym_DQUOTE, + STATE(6478), 1, sym_comment, - [241791] = 6, + STATE(6479), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211106] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2064), 1, - anon_sym_RBRACE, - ACTIONS(2070), 1, - sym__entry_separator, - STATE(7295), 1, + ACTIONS(10902), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6479), 1, sym_comment, - STATE(8196), 1, - sym__expr_parenthesized_immediate, - [241810] = 6, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211123] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2276), 1, - anon_sym_RBRACE, - ACTIONS(2278), 1, - sym__entry_separator, - STATE(7296), 1, + ACTIONS(10904), 1, + anon_sym_DQUOTE, + STATE(6480), 1, sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - [241829] = 5, + STATE(6481), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10208), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211140] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11809), 1, + ACTIONS(10906), 1, anon_sym_DQUOTE, - STATE(6736), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - STATE(7297), 1, + STATE(6481), 1, sym_comment, - ACTIONS(10873), 2, + ACTIONS(10208), 2, sym__escaped_str_content, sym_escape_sequence, - [241846] = 6, + [211157] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6482), 1, + sym_comment, + ACTIONS(10908), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211170] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6483), 1, + sym_comment, + ACTIONS(10910), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211183] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6484), 1, + sym_comment, + ACTIONS(10912), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6485), 1, + sym_comment, + ACTIONS(8215), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11811), 1, + ACTIONS(8217), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7298), 1, + anon_sym_GT2, + [211211] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3209), 1, + sym_parameter_parens, + STATE(3227), 1, + sym_parameter_bracks, + STATE(6486), 1, sym_comment, - [241865] = 6, + [211230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(2280), 1, - anon_sym_RBRACE, - ACTIONS(2282), 1, + STATE(6487), 1, + sym_comment, + ACTIONS(8219), 2, + anon_sym_AT, sym__entry_separator, - STATE(7299), 1, + ACTIONS(8221), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [211245] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10914), 1, + anon_sym_LBRACE, + ACTIONS(10916), 1, + anon_sym_DOT_DOT2, + STATE(6488), 1, sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - [241884] = 6, + ACTIONS(10918), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6489), 1, + sym_comment, + ACTIONS(8243), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11813), 1, + ACTIONS(8245), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7300), 1, - sym_comment, - [241903] = 6, + anon_sym_GT2, + [211277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6490), 1, + sym_comment, + ACTIONS(8247), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11815), 1, + ACTIONS(8249), 2, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7301), 1, - sym_comment, - [241922] = 3, + anon_sym_GT2, + [211292] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7302), 1, + STATE(6491), 1, sym_comment, - ACTIONS(5844), 4, - ts_builtin_sym_end, + ACTIONS(10920), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [241935] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211305] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11817), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(10922), 1, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7303), 1, + ACTIONS(10924), 1, + sym__entry_separator, + STATE(6492), 1, sym_comment, - [241954] = 6, - ACTIONS(251), 1, + STATE(7656), 1, + sym__expr_parenthesized_immediate, + [211324] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9548), 1, - anon_sym_DOLLAR, - STATE(5695), 1, - sym_val_variable, - STATE(6642), 1, - sym__variable_name, - STATE(7304), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2214), 1, + anon_sym_RBRACK, + ACTIONS(2216), 1, + sym__entry_separator, + STATE(6493), 1, sym_comment, - [241973] = 3, + [211343] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7305), 1, + STATE(6494), 1, sym_comment, - ACTIONS(5836), 4, - ts_builtin_sym_end, + ACTIONS(10926), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [241986] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11819), 1, + ACTIONS(1794), 1, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7306), 1, + ACTIONS(1796), 1, + anon_sym_LPAREN2, + ACTIONS(1802), 1, + sym__entry_separator, + ACTIONS(1804), 1, + aux_sym__unquoted_in_list_token2, + STATE(6495), 1, sym_comment, - [242005] = 6, + [211375] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6979), 1, + STATE(6496), 1, + sym_comment, + ACTIONS(10928), 4, sym__newline, - ACTIONS(11821), 1, - anon_sym_EQ, - ACTIONS(11823), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211388] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10930), 1, anon_sym_COLON, - STATE(4296), 1, - aux_sym_shebang_repeat1, - STATE(7307), 1, + ACTIONS(10932), 1, + anon_sym_GT2, + STATE(5409), 1, + aux_sym__multiple_types_repeat1, + STATE(6497), 1, + sym_comment, + [211407] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(10934), 1, + anon_sym_RBRACK, + ACTIONS(10936), 1, + sym__entry_separator, + STATE(6498), 1, sym_comment, - [242024] = 5, + STATE(7656), 1, + sym__expr_parenthesized_immediate, + [211426] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10897), 1, - anon_sym_DOT_DOT2, - ACTIONS(11825), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(1737), 1, anon_sym_LBRACE, - STATE(7308), 1, + ACTIONS(10938), 1, + anon_sym_DOT, + ACTIONS(10940), 1, + aux_sym__immediate_decimal_token2, + STATE(6499), 1, sym_comment, - ACTIONS(10899), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [242041] = 6, + [211445] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, - anon_sym_LBRACK, - ACTIONS(11827), 1, + ACTIONS(2249), 1, anon_sym_RBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7309), 1, - sym_comment, - [242060] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11829), 1, - anon_sym_DQUOTE, - STATE(7127), 1, - aux_sym__str_double_quotes_repeat1, - STATE(7310), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2253), 1, + sym__entry_separator, + ACTIONS(2255), 1, + aux_sym__unquoted_in_list_token4, + STATE(6500), 1, sym_comment, - ACTIONS(10873), 2, - sym__escaped_str_content, - sym_escape_sequence, - [242077] = 4, + [211464] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2506), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2257), 1, + anon_sym_RBRACK, + ACTIONS(2259), 1, sym__entry_separator, - STATE(7311), 1, + STATE(6501), 1, sym_comment, - ACTIONS(2504), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [242091] = 5, + [211483] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(8372), 1, - anon_sym_EQ, - STATE(5436), 1, - sym_param_cmd, - STATE(7312), 1, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3204), 1, + sym_parameter_bracks, + STATE(3226), 1, + sym_parameter_parens, + STATE(6502), 1, sym_comment, - [242107] = 3, + [211502] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7313), 1, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3205), 1, + sym_parameter_parens, + STATE(3206), 1, + sym_parameter_bracks, + STATE(6503), 1, sym_comment, - ACTIONS(11093), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242119] = 5, - ACTIONS(251), 1, + [211521] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1781), 1, - anon_sym_LBRACE, - ACTIONS(10251), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(11831), 1, - anon_sym_DOT, - STATE(7314), 1, + ACTIONS(2249), 1, + anon_sym_RBRACE, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2253), 1, + sym__entry_separator, + ACTIONS(2255), 1, + aux_sym__unquoted_in_record_token4, + STATE(6504), 1, sym_comment, - [242135] = 5, - ACTIONS(251), 1, + [211540] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11833), 1, - anon_sym_RBRACK, - ACTIONS(11835), 1, - sym_hex_digit, - STATE(7315), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN2, + ACTIONS(2255), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2257), 1, + anon_sym_RBRACE, + ACTIONS(2259), 1, + sym__entry_separator, + STATE(6505), 1, sym_comment, - STATE(7322), 1, - aux_sym_val_binary_repeat1, - [242151] = 3, - ACTIONS(251), 1, + [211559] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7316), 1, - sym_comment, - ACTIONS(11093), 3, - ts_builtin_sym_end, + ACTIONS(4898), 1, + sym__space, + ACTIONS(4900), 1, sym__newline, - anon_sym_SEMI, - [242163] = 5, - ACTIONS(3), 1, + ACTIONS(10942), 1, + anon_sym_EQ2, + ACTIONS(10944), 1, + sym_short_flag_identifier, + STATE(6506), 1, + sym_comment, + [211578] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(10859), 1, + ACTIONS(10222), 1, anon_sym_LBRACK, - STATE(3591), 1, - aux_sym__multiple_types_repeat1, - STATE(7317), 1, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3220), 1, + sym_parameter_parens, + STATE(3221), 1, + sym_parameter_bracks, + STATE(6507), 1, sym_comment, - [242179] = 4, - ACTIONS(3), 1, + [211597] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__entry_separator, - STATE(7318), 1, + ACTIONS(2121), 1, + anon_sym_LBRACE, + ACTIONS(10946), 1, + anon_sym_DOT_DOT2, + STATE(6508), 1, sym_comment, - ACTIONS(1957), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [242193] = 5, + ACTIONS(10948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211614] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(11837), 1, - anon_sym_RBRACK, - STATE(2996), 1, + ACTIONS(10950), 1, + anon_sym_COLON, + ACTIONS(10952), 1, + anon_sym_GT2, + STATE(5410), 1, aux_sym__multiple_types_repeat1, - STATE(7319), 1, + STATE(6509), 1, sym_comment, - [242209] = 5, + [211633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2272), 1, - anon_sym_EQ_GT, - ACTIONS(2274), 1, - anon_sym_PIPE, - STATE(7320), 1, + STATE(6510), 1, sym_comment, - [242225] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(1771), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1773), 2, anon_sym_LPAREN2, - ACTIONS(4159), 1, - aux_sym_unquoted_token4, - STATE(7321), 1, + sym__entry_separator, + [211648] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4458), 1, + sym_block, + STATE(6511), 1, sym_comment, - STATE(8148), 1, - sym__expr_parenthesized_immediate, - [242241] = 5, + [211667] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11839), 1, - anon_sym_RBRACK, - STATE(7322), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4460), 1, + sym_block, + STATE(6332), 1, + aux_sym_shebang_repeat1, + STATE(6512), 1, sym_comment, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - [242257] = 3, + [211686] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7323), 1, + ACTIONS(10954), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_LPAREN, + STATE(5873), 1, + sym_parameter_parens, + STATE(5992), 1, + sym_parameter_bracks, + STATE(6513), 1, sym_comment, - ACTIONS(11271), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242269] = 4, + [211705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2405), 1, + ACTIONS(9143), 1, sym__entry_separator, - STATE(7324), 1, + ACTIONS(10958), 1, + anon_sym_COLON, + ACTIONS(10960), 1, + anon_sym_GT2, + STATE(5338), 1, + aux_sym__multiple_types_repeat1, + STATE(6514), 1, sym_comment, - ACTIONS(2403), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [242283] = 5, + [211724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(11841), 1, - anon_sym_RBRACK, - STATE(7171), 1, + ACTIONS(10962), 1, + anon_sym_COLON, + ACTIONS(10964), 1, + anon_sym_GT2, + STATE(5340), 1, aux_sym__multiple_types_repeat1, - STATE(7325), 1, + STATE(6515), 1, sym_comment, - [242299] = 5, + [211743] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_EQ_GT, - ACTIONS(2238), 1, - anon_sym_PIPE, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(7326), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10966), 1, + anon_sym_COLON, + ACTIONS(10968), 1, + anon_sym_GT2, + STATE(5375), 1, + aux_sym__multiple_types_repeat1, + STATE(6516), 1, + sym_comment, + [211762] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10970), 1, + anon_sym_COLON, + ACTIONS(10972), 1, + anon_sym_GT2, + STATE(5397), 1, + aux_sym__multiple_types_repeat1, + STATE(6517), 1, sym_comment, - [242315] = 3, + [211781] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7327), 1, - sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, + ACTIONS(6589), 1, sym__newline, - anon_sym_SEMI, - [242327] = 5, + ACTIONS(10974), 1, + anon_sym_EQ, + ACTIONS(10976), 1, + anon_sym_COLON, + STATE(3828), 1, + aux_sym_shebang_repeat1, + STATE(6518), 1, + sym_comment, + [211800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11843), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10978), 1, anon_sym_RBRACK, - STATE(7177), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7328), 1, + STATE(6519), 1, sym_comment, - [242343] = 5, + [211819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11845), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10980), 1, anon_sym_RBRACK, - STATE(7179), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7329), 1, + STATE(6520), 1, sym_comment, - [242359] = 5, + [211838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11847), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(10982), 1, anon_sym_RBRACK, - STATE(7180), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7330), 1, + STATE(6521), 1, sym_comment, - [242375] = 3, + [211857] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7331), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(6522), 1, sym_comment, - ACTIONS(11573), 3, - ts_builtin_sym_end, + ACTIONS(2216), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211872] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10984), 1, + anon_sym_RPAREN, + STATE(6092), 1, + aux_sym__block_body_repeat1, + STATE(6523), 1, + sym_comment, + ACTIONS(10212), 2, + sym__newline, + anon_sym_SEMI, + [211889] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6524), 1, + sym_comment, + ACTIONS(10986), 4, sym__newline, anon_sym_SEMI, - [242387] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211902] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_DASH2, + ACTIONS(8731), 1, + aux_sym_unquoted_token2, + STATE(6525), 1, + sym_comment, + ACTIONS(1665), 2, + sym_identifier, + anon_sym_DASH_DASH, + [211919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6526), 1, + sym_comment, + ACTIONS(8013), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11849), 1, + ACTIONS(8015), 2, anon_sym_RBRACK, - STATE(7182), 1, - aux_sym__multiple_types_repeat1, - STATE(7332), 1, - sym_comment, - [242403] = 4, + anon_sym_GT2, + [211934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2397), 1, - sym__entry_separator, - STATE(7333), 1, + STATE(6527), 1, sym_comment, - ACTIONS(2395), 2, + ACTIONS(8047), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8049), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [242417] = 5, + anon_sym_GT2, + [211949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6528), 1, + sym_comment, + ACTIONS(8051), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11851), 1, + ACTIONS(8053), 2, anon_sym_RBRACK, - STATE(7183), 1, - aux_sym__multiple_types_repeat1, - STATE(7334), 1, - sym_comment, - [242433] = 5, + anon_sym_GT2, + [211964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6529), 1, + sym_comment, + ACTIONS(8099), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11853), 1, + ACTIONS(8101), 2, anon_sym_RBRACK, - STATE(7184), 1, - aux_sym__multiple_types_repeat1, - STATE(7335), 1, - sym_comment, - [242449] = 4, + anon_sym_GT2, + [211979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, - sym__entry_separator, - STATE(7336), 1, + STATE(6530), 1, sym_comment, - ACTIONS(2072), 2, + ACTIONS(8119), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8121), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [242463] = 4, + anon_sym_GT2, + [211994] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - sym__entry_separator, - STATE(7337), 1, + STATE(6531), 1, sym_comment, - ACTIONS(2090), 2, + ACTIONS(8135), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8137), 2, anon_sym_RBRACK, + anon_sym_GT2, + [212009] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(6532), 1, + sym_comment, + ACTIONS(2249), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [212024] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6533), 1, + sym_comment, + ACTIONS(10988), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [242477] = 5, + [212037] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(11855), 1, + STATE(6534), 1, + sym_comment, + ACTIONS(988), 4, anon_sym_RBRACK, - STATE(7186), 1, - aux_sym__multiple_types_repeat1, - STATE(7338), 1, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [212050] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(6535), 1, sym_comment, - [242493] = 4, + ACTIONS(2257), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [212065] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2104), 1, - sym__entry_separator, - STATE(7339), 1, + STATE(6536), 1, sym_comment, - ACTIONS(2098), 2, + ACTIONS(8139), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8141), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [242507] = 4, + anon_sym_GT2, + [212080] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, + STATE(6537), 1, + sym_comment, + ACTIONS(1786), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1788), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(7340), 1, + [212095] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6538), 1, sym_comment, - ACTIONS(1941), 2, - anon_sym_RBRACK, + ACTIONS(10990), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [242521] = 5, + [212108] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(11857), 1, + ACTIONS(10992), 1, + anon_sym_COLON, + ACTIONS(10994), 1, anon_sym_GT2, - STATE(5904), 1, + STATE(5404), 1, aux_sym__multiple_types_repeat1, - STATE(7341), 1, + STATE(6539), 1, sym_comment, - [242537] = 3, - ACTIONS(251), 1, + [212127] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7342), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(10996), 1, + anon_sym_COLON, + ACTIONS(10998), 1, + anon_sym_GT2, + STATE(5405), 1, + aux_sym__multiple_types_repeat1, + STATE(6540), 1, sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242549] = 5, + [212146] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11859), 1, - anon_sym_GT2, - STATE(5906), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(11000), 1, + anon_sym_RBRACK, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7343), 1, + STATE(6541), 1, sym_comment, - [242565] = 3, + [212165] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7344), 1, + STATE(6542), 1, sym_comment, - ACTIONS(11093), 3, - ts_builtin_sym_end, + ACTIONS(11002), 4, sym__newline, anon_sym_SEMI, - [242577] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212178] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11861), 1, - anon_sym_RBRACK, - STATE(7345), 1, + ACTIONS(4967), 1, + anon_sym_DASH2, + ACTIONS(11004), 1, + anon_sym_EQ2, + STATE(6543), 1, sym_comment, - STATE(7349), 1, - aux_sym_val_binary_repeat1, - [242593] = 3, + ACTIONS(4965), 2, + sym_identifier, + anon_sym_DASH_DASH, + [212195] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7346), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(6544), 1, sym_comment, - ACTIONS(11693), 3, - ts_builtin_sym_end, + ACTIONS(1802), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212210] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6545), 1, + sym_comment, + ACTIONS(11006), 4, sym__newline, anon_sym_SEMI, - [242605] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212223] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4690), 1, - aux_sym_unquoted_token4, - STATE(7347), 1, + STATE(6546), 1, sym_comment, - STATE(8062), 1, - sym__expr_parenthesized_immediate, - [242621] = 5, + ACTIONS(11008), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212236] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(6720), 1, - aux_sym_unquoted_token4, - STATE(7348), 1, + STATE(6547), 1, sym_comment, - STATE(8140), 1, - sym__expr_parenthesized_immediate, - [242637] = 5, + ACTIONS(2261), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [212249] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11863), 1, - anon_sym_RBRACK, - STATE(7349), 1, + STATE(6548), 1, sym_comment, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - [242653] = 5, - ACTIONS(3), 1, + ACTIONS(11010), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212262] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(11865), 1, - anon_sym_RBRACK, - STATE(7248), 1, - aux_sym__multiple_types_repeat1, - STATE(7350), 1, + STATE(6549), 1, sym_comment, - [242669] = 3, + ACTIONS(11012), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212275] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7351), 1, + STATE(6550), 1, sym_comment, - ACTIONS(11093), 3, - ts_builtin_sym_end, + ACTIONS(11014), 4, sym__newline, anon_sym_SEMI, - [242681] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212288] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11867), 1, - anon_sym_GT2, - STATE(5913), 1, - aux_sym__multiple_types_repeat1, - STATE(7352), 1, + ACTIONS(10916), 1, + anon_sym_DOT_DOT2, + ACTIONS(11016), 1, + anon_sym_LBRACE, + STATE(6551), 1, sym_comment, - [242697] = 5, - ACTIONS(3), 1, + ACTIONS(10918), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212305] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(11869), 1, - anon_sym_RBRACK, - STATE(7249), 1, - aux_sym__multiple_types_repeat1, - STATE(7353), 1, + ACTIONS(4989), 1, + anon_sym_DASH2, + ACTIONS(11018), 1, + anon_sym_EQ2, + STATE(6552), 1, sym_comment, - [242713] = 5, - ACTIONS(3), 1, + ACTIONS(4987), 2, + sym_identifier, + anon_sym_DASH_DASH, + [212322] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(11871), 1, - anon_sym_RBRACK, - STATE(7250), 1, - aux_sym__multiple_types_repeat1, - STATE(7354), 1, + ACTIONS(1396), 1, + ts_builtin_sym_end, + STATE(224), 1, + aux_sym__block_body_repeat1, + STATE(6553), 1, sym_comment, - [242729] = 5, - ACTIONS(3), 1, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [212339] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(11873), 1, - anon_sym_RBRACK, - STATE(7251), 1, - aux_sym__multiple_types_repeat1, - STATE(7355), 1, + ACTIONS(11020), 1, + anon_sym_use, + ACTIONS(11022), 1, + anon_sym_list, + ACTIONS(11024), 1, + anon_sym_hide, + ACTIONS(11026), 1, + anon_sym_new, + STATE(6554), 1, sym_comment, - [242745] = 5, + [212358] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(6555), 1, + sym_comment, + ACTIONS(8075), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11875), 1, + ACTIONS(8077), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5916), 1, - aux_sym__multiple_types_repeat1, - STATE(7356), 1, + [212373] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(11028), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6556), 1, sym_comment, - [242761] = 5, + STATE(7621), 1, + sym_val_list, + [212392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6557), 1, + sym_comment, + ACTIONS(8079), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11877), 1, + ACTIONS(8081), 2, anon_sym_RBRACK, - STATE(7252), 1, - aux_sym__multiple_types_repeat1, - STATE(7357), 1, - sym_comment, - [242777] = 5, + anon_sym_GT2, + [212407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6558), 1, + sym_comment, + ACTIONS(8085), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11879), 1, + ACTIONS(8087), 2, anon_sym_RBRACK, - STATE(7253), 1, - aux_sym__multiple_types_repeat1, - STATE(7358), 1, - sym_comment, - [242793] = 5, + anon_sym_GT2, + [212422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6559), 1, + sym_comment, + ACTIONS(8093), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11881), 1, + ACTIONS(8095), 2, anon_sym_RBRACK, - STATE(7254), 1, - aux_sym__multiple_types_repeat1, - STATE(7359), 1, - sym_comment, - [242809] = 5, + anon_sym_GT2, + [212437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(6560), 1, + sym_comment, + ACTIONS(8123), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11883), 1, + ACTIONS(8125), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5921), 1, - aux_sym__multiple_types_repeat1, - STATE(7360), 1, - sym_comment, - [242825] = 5, + [212452] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6561), 1, + sym_comment, + ACTIONS(8127), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11885), 1, + ACTIONS(8129), 2, anon_sym_RBRACK, - STATE(7255), 1, - aux_sym__multiple_types_repeat1, - STATE(7361), 1, - sym_comment, - [242841] = 5, + anon_sym_GT2, + [212467] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - ACTIONS(5725), 1, - aux_sym__unquoted_in_list_token4, - STATE(7362), 1, + STATE(6562), 1, sym_comment, - STATE(8167), 1, - sym__expr_parenthesized_immediate, - [242857] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(8131), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11887), 1, + ACTIONS(8133), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5922), 1, - aux_sym__multiple_types_repeat1, - STATE(7363), 1, - sym_comment, - [242873] = 3, + [212482] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7364), 1, + STATE(6563), 1, sym_comment, - ACTIONS(11129), 3, - ts_builtin_sym_end, + ACTIONS(11030), 4, sym__newline, anon_sym_SEMI, - [242885] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(11889), 1, - anon_sym_GT2, - STATE(5924), 1, - aux_sym__multiple_types_repeat1, - STATE(7365), 1, - sym_comment, - [242901] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212495] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7366), 1, + STATE(6564), 1, sym_comment, - ACTIONS(11891), 3, + ACTIONS(11032), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [242913] = 5, + anon_sym_RBRACE, + [212508] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + STATE(6565), 1, + sym_comment, + ACTIONS(7929), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11893), 1, + ACTIONS(7931), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5925), 1, - aux_sym__multiple_types_repeat1, - STATE(7367), 1, - sym_comment, - [242929] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7368), 1, - sym_comment, - ACTIONS(11129), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242941] = 3, - ACTIONS(251), 1, + [212523] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7369), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(11034), 1, + anon_sym_RBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(6566), 1, sym_comment, - ACTIONS(11141), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242953] = 3, - ACTIONS(251), 1, + [212542] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7370), 1, + STATE(6567), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [242965] = 5, + ACTIONS(8159), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8161), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212557] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11895), 1, - anon_sym_RBRACK, - STATE(7371), 1, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(10916), 1, + anon_sym_DOT_DOT2, + STATE(6568), 1, sym_comment, - STATE(7378), 1, - aux_sym_val_binary_repeat1, - [242981] = 4, + ACTIONS(10918), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212574] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2137), 1, - sym__entry_separator, - STATE(7372), 1, + STATE(6569), 1, sym_comment, - ACTIONS(2131), 2, + ACTIONS(8173), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8175), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [242995] = 3, + anon_sym_GT2, + [212589] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7373), 1, + STATE(6570), 1, sym_comment, - ACTIONS(10933), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243007] = 3, - ACTIONS(251), 1, + ACTIONS(11036), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [212602] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7374), 1, + STATE(6571), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243019] = 3, - ACTIONS(251), 1, + ACTIONS(8202), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8204), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7375), 1, + STATE(6572), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243031] = 3, - ACTIONS(251), 1, + ACTIONS(8211), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8213), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212632] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7376), 1, + STATE(6573), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243043] = 3, - ACTIONS(251), 1, + ACTIONS(8223), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8225), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212647] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7377), 1, + STATE(6574), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243055] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11897), 1, + ACTIONS(8229), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8231), 2, anon_sym_RBRACK, - STATE(7378), 1, - sym_comment, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - [243071] = 5, + anon_sym_GT2, + [212662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6575), 1, + sym_comment, + ACTIONS(8233), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11899), 1, + ACTIONS(8235), 2, anon_sym_RBRACK, - STATE(7011), 1, - aux_sym__multiple_types_repeat1, - STATE(7379), 1, - sym_comment, - [243087] = 5, + anon_sym_GT2, + [212677] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6576), 1, + sym_comment, + ACTIONS(8239), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11901), 1, + ACTIONS(8241), 2, anon_sym_RBRACK, - STATE(7298), 1, - aux_sym__multiple_types_repeat1, - STATE(7380), 1, - sym_comment, - [243103] = 3, - ACTIONS(251), 1, + anon_sym_GT2, + [212692] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7381), 1, + STATE(6577), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243115] = 5, + ACTIONS(8251), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8253), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6578), 1, + sym_comment, + ACTIONS(8255), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11903), 1, + ACTIONS(8257), 2, anon_sym_RBRACK, - STATE(7300), 1, - aux_sym__multiple_types_repeat1, - STATE(7382), 1, - sym_comment, - [243131] = 5, + anon_sym_GT2, + [212722] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6579), 1, + sym_comment, + ACTIONS(8267), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11905), 1, + ACTIONS(8269), 2, anon_sym_RBRACK, - STATE(7301), 1, - aux_sym__multiple_types_repeat1, - STATE(7383), 1, - sym_comment, - [243147] = 5, + anon_sym_GT2, + [212737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(2051), 1, + anon_sym_RBRACE, + ACTIONS(2053), 1, sym__entry_separator, - ACTIONS(11907), 1, - anon_sym_RBRACK, - STATE(7303), 1, - aux_sym__multiple_types_repeat1, - STATE(7384), 1, + STATE(6580), 1, sym_comment, - [243163] = 5, + STATE(7365), 1, + sym__expr_parenthesized_immediate, + [212756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6581), 1, + sym_comment, + ACTIONS(8279), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11909), 1, + ACTIONS(8281), 2, anon_sym_RBRACK, - STATE(7306), 1, - aux_sym__multiple_types_repeat1, - STATE(7385), 1, - sym_comment, - [243179] = 4, + anon_sym_GT2, + [212771] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2389), 1, - sym__entry_separator, - STATE(7386), 1, + STATE(6582), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(8297), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8299), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [243193] = 5, + anon_sym_GT2, + [212786] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6583), 1, + sym_comment, + ACTIONS(8301), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11911), 1, + ACTIONS(8303), 2, anon_sym_RBRACK, - STATE(7309), 1, - aux_sym__multiple_types_repeat1, - STATE(7387), 1, - sym_comment, - [243209] = 5, + anon_sym_GT2, + [212801] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6584), 1, + sym_comment, + ACTIONS(8307), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11913), 1, + ACTIONS(8309), 2, anon_sym_RBRACK, - STATE(7026), 1, - aux_sym__multiple_types_repeat1, - STATE(7388), 1, + anon_sym_GT2, + [212816] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10222), 1, + anon_sym_LBRACK, + ACTIONS(10224), 1, + anon_sym_LPAREN, + STATE(3217), 1, + sym_parameter_parens, + STATE(3219), 1, + sym_parameter_bracks, + STATE(6585), 1, sym_comment, - [243225] = 5, + [212835] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11915), 1, - anon_sym_RBRACK, - STATE(7389), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + STATE(6586), 1, sym_comment, - STATE(7452), 1, - aux_sym_val_binary_repeat1, - [243241] = 5, + ACTIONS(1827), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212850] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4422), 1, + sym_block, + STATE(6511), 1, + aux_sym_shebang_repeat1, + STATE(6587), 1, + sym_comment, + [212869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6588), 1, + sym_comment, + ACTIONS(8311), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11917), 1, + ACTIONS(8313), 2, anon_sym_RBRACK, - STATE(6659), 1, - aux_sym__multiple_types_repeat1, - STATE(7390), 1, - sym_comment, - [243257] = 3, - ACTIONS(251), 1, + anon_sym_GT2, + [212884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7391), 1, + STATE(6589), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243269] = 3, - ACTIONS(251), 1, + ACTIONS(8143), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8145), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212899] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7392), 1, + STATE(6590), 1, sym_comment, - ACTIONS(11621), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243281] = 3, + ACTIONS(7933), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7935), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212914] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7393), 1, + ACTIONS(10954), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_LPAREN, + STATE(5963), 1, + sym_parameter_parens, + STATE(5988), 1, + sym_parameter_bracks, + STATE(6591), 1, sym_comment, - ACTIONS(11141), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243293] = 4, + [212933] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(7394), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4947), 1, + sym_block, + STATE(6592), 1, sym_comment, - ACTIONS(2270), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [243307] = 3, + STATE(6593), 1, + aux_sym_shebang_repeat1, + [212952] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7395), 1, - sym_comment, - ACTIONS(11565), 3, - ts_builtin_sym_end, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - [243319] = 5, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4950), 1, + sym_block, + STATE(6593), 1, + sym_comment, + [212971] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11919), 1, - anon_sym_RBRACK, - STATE(7396), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4951), 1, + sym_block, + STATE(6594), 1, sym_comment, - STATE(7401), 1, - aux_sym_val_binary_repeat1, - [243335] = 4, + STATE(6595), 1, + aux_sym_shebang_repeat1, + [212990] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - STATE(7397), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4955), 1, + sym_block, + STATE(6595), 1, sym_comment, - ACTIONS(1781), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [243349] = 3, + [213009] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7398), 1, - sym_comment, - ACTIONS(11579), 3, - ts_builtin_sym_end, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - [243361] = 5, + ACTIONS(11028), 1, + anon_sym_LBRACK, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6596), 1, + sym_comment, + STATE(7412), 1, + sym_val_list, + [213028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - ACTIONS(6094), 1, - anon_sym_EQ_GT, - ACTIONS(6099), 1, - anon_sym_PIPE, - STATE(7399), 1, + STATE(6597), 1, sym_comment, - [243377] = 4, + ACTIONS(7937), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7939), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2401), 1, + STATE(6598), 1, + sym_comment, + ACTIONS(984), 4, + anon_sym_RBRACK, sym__entry_separator, - STATE(7400), 1, + sym__table_head_separator, + anon_sym_DOT2, + [213056] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6599), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(980), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - [243391] = 5, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [213069] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(6600), 1, + sym_comment, + ACTIONS(1004), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [213084] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11921), 1, - anon_sym_RBRACK, - STATE(7401), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4702), 1, + sym_block, + STATE(6601), 1, sym_comment, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - [243407] = 3, + STATE(6602), 1, + aux_sym_shebang_repeat1, + [213103] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7402), 1, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4704), 1, + sym_block, + STATE(6602), 1, sym_comment, - ACTIONS(11141), 3, - ts_builtin_sym_end, + [213122] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, sym__newline, - anon_sym_SEMI, - [243419] = 5, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4705), 1, + sym_block, + STATE(6603), 1, + sym_comment, + STATE(6604), 1, + aux_sym_shebang_repeat1, + [213141] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(4709), 1, + sym_block, + STATE(6604), 1, + sym_comment, + [213160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6605), 1, + sym_comment, + ACTIONS(7943), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11923), 1, + ACTIONS(7945), 2, anon_sym_RBRACK, - STATE(6683), 1, - aux_sym__multiple_types_repeat1, - STATE(7403), 1, - sym_comment, - [243435] = 5, + anon_sym_GT2, + [213175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6606), 1, + sym_comment, + ACTIONS(7949), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11925), 1, + ACTIONS(7951), 2, anon_sym_RBRACK, - STATE(6684), 1, - aux_sym__multiple_types_repeat1, - STATE(7404), 1, - sym_comment, - [243451] = 5, + anon_sym_GT2, + [213190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6607), 1, + sym_comment, + ACTIONS(7953), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11927), 1, + ACTIONS(7955), 2, anon_sym_RBRACK, - STATE(6685), 1, - aux_sym__multiple_types_repeat1, - STATE(7405), 1, - sym_comment, - [243467] = 5, + anon_sym_GT2, + [213205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6608), 1, + sym_comment, + ACTIONS(7957), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11929), 1, + ACTIONS(7959), 2, anon_sym_RBRACK, - STATE(6686), 1, - aux_sym__multiple_types_repeat1, - STATE(7406), 1, - sym_comment, - [243483] = 5, + anon_sym_GT2, + [213220] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6609), 1, + sym_comment, + ACTIONS(7971), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11931), 1, + ACTIONS(7973), 2, anon_sym_RBRACK, - STATE(6687), 1, - aux_sym__multiple_types_repeat1, - STATE(7407), 1, - sym_comment, - [243499] = 5, + anon_sym_GT2, + [213235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6610), 1, + sym_comment, + ACTIONS(7987), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11933), 1, + ACTIONS(7989), 2, anon_sym_RBRACK, - STATE(6688), 1, - aux_sym__multiple_types_repeat1, - STATE(7408), 1, - sym_comment, - [243515] = 5, + anon_sym_GT2, + [213250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6611), 1, + sym_comment, + ACTIONS(7991), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11935), 1, + ACTIONS(7993), 2, anon_sym_RBRACK, - STATE(6689), 1, - aux_sym__multiple_types_repeat1, - STATE(7409), 1, - sym_comment, - [243531] = 5, + anon_sym_GT2, + [213265] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + STATE(6612), 1, + sym_comment, + ACTIONS(8001), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(11937), 1, + ACTIONS(8003), 2, anon_sym_RBRACK, - STATE(6690), 1, - aux_sym__multiple_types_repeat1, - STATE(7410), 1, - sym_comment, - [243547] = 5, + anon_sym_GT2, + [213280] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - ACTIONS(11939), 1, - sym__space, - STATE(7411), 1, + STATE(6613), 1, sym_comment, - [243563] = 4, - ACTIONS(251), 1, + ACTIONS(8017), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8019), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213295] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(305), 1, - aux_sym__block_body_repeat1, - STATE(7412), 1, + STATE(6614), 1, sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - [243577] = 3, + ACTIONS(8023), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8025), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213310] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7413), 1, + ACTIONS(2148), 1, + anon_sym_LBRACE, + ACTIONS(11038), 1, + anon_sym_DOT_DOT2, + STATE(6615), 1, sym_comment, - ACTIONS(5937), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [243589] = 5, - ACTIONS(3), 1, + ACTIONS(11040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213327] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11941), 1, - anon_sym_POUND_BANG, - ACTIONS(11943), 1, - sym__newline, - STATE(7414), 1, + ACTIONS(2156), 1, + anon_sym_LBRACE, + ACTIONS(11042), 1, + anon_sym_DOT_DOT2, + STATE(6616), 1, sym_comment, - STATE(7618), 1, - aux_sym_shebang_repeat1, - [243605] = 4, + ACTIONS(11044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213344] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - STATE(7415), 1, + ACTIONS(2164), 1, + anon_sym_LBRACE, + ACTIONS(11046), 1, + anon_sym_DOT_DOT2, + STATE(6617), 1, sym_comment, - ACTIONS(1773), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [243619] = 3, + ACTIONS(11048), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213361] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(7416), 1, + ACTIONS(6897), 1, + anon_sym_DOLLAR, + ACTIONS(8733), 1, + sym_identifier, + STATE(5491), 1, + sym_val_variable, + STATE(6618), 1, sym_comment, - ACTIONS(11741), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243631] = 4, + STATE(7723), 1, + sym__variable_name, + [213380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6312), 1, - anon_sym_RBRACK, - STATE(7417), 1, + STATE(6619), 1, sym_comment, - ACTIONS(6314), 2, - anon_sym_LPAREN2, + ACTIONS(8031), 2, + anon_sym_AT, sym__entry_separator, - [243645] = 3, + ACTIONS(8033), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213395] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7418), 1, + STATE(6620), 1, sym_comment, - ACTIONS(10953), 3, - ts_builtin_sym_end, + ACTIONS(11050), 4, sym__newline, anon_sym_SEMI, - [243657] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11945), 1, - anon_sym_RBRACK, - STATE(7419), 1, - sym_comment, - STATE(7427), 1, - aux_sym_val_binary_repeat1, - [243673] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6257), 1, - anon_sym_RBRACK, - STATE(7420), 1, - sym_comment, - ACTIONS(6259), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [243687] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [213408] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11947), 1, - anon_sym_RBRACK, - ACTIONS(11949), 1, - sym_hex_digit, - STATE(7421), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [243701] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1951), 1, - sym__entry_separator, - STATE(7422), 1, + STATE(6621), 1, sym_comment, - ACTIONS(1949), 2, - anon_sym_RBRACK, + ACTIONS(11052), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [243715] = 5, + [213421] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11952), 1, + ACTIONS(10200), 1, + anon_sym_LBRACK, + ACTIONS(11054), 1, anon_sym_RBRACK, - STATE(7227), 1, + STATE(3438), 1, aux_sym__multiple_types_repeat1, - STATE(7423), 1, + STATE(6622), 1, sym_comment, - [243731] = 4, + [213440] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2456), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7424), 1, - sym_comment, - ACTIONS(2454), 2, + ACTIONS(11056), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [243745] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - STATE(7425), 1, + STATE(6184), 1, + aux_sym__multiple_types_repeat1, + STATE(6623), 1, sym_comment, - ACTIONS(1801), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [243759] = 4, + [213456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2498), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7426), 1, - sym_comment, - ACTIONS(2496), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [243773] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11954), 1, + ACTIONS(11058), 1, anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7427), 1, + STATE(6566), 1, + aux_sym__multiple_types_repeat1, + STATE(6624), 1, sym_comment, - [243789] = 4, - ACTIONS(251), 1, + [213472] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1818), 1, - aux_sym_unquoted_token2, - STATE(7428), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11060), 1, + anon_sym_RBRACK, + STATE(6218), 1, + aux_sym__multiple_types_repeat1, + STATE(6625), 1, sym_comment, - ACTIONS(1820), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [243803] = 4, + [213488] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7429), 1, - sym_comment, - ACTIONS(2439), 2, + ACTIONS(11062), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [243817] = 5, + STATE(6219), 1, + aux_sym__multiple_types_repeat1, + STATE(6626), 1, + sym_comment, + [213504] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11956), 1, + ACTIONS(11064), 1, anon_sym_RBRACK, - STATE(6715), 1, + STATE(6220), 1, aux_sym__multiple_types_repeat1, - STATE(7430), 1, + STATE(6627), 1, sym_comment, - [243833] = 3, - ACTIONS(251), 1, + [213520] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7431), 1, + ACTIONS(2285), 1, + sym__entry_separator, + ACTIONS(11066), 1, + anon_sym_RBRACE, + STATE(562), 1, + aux_sym__multiple_types_repeat1, + STATE(6628), 1, sym_comment, - ACTIONS(11195), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243845] = 3, - ACTIONS(251), 1, + [213536] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7432), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11068), 1, + anon_sym_RBRACK, + STATE(6221), 1, + aux_sym__multiple_types_repeat1, + STATE(6629), 1, sym_comment, - ACTIONS(11197), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243857] = 3, - ACTIONS(251), 1, + [213552] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7433), 1, + ACTIONS(2340), 1, + sym__entry_separator, + STATE(6630), 1, sym_comment, - ACTIONS(10987), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [243869] = 5, + ACTIONS(2338), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213566] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11958), 1, + ACTIONS(11070), 1, anon_sym_RBRACK, - STATE(6716), 1, + STATE(6222), 1, aux_sym__multiple_types_repeat1, - STATE(7434), 1, + STATE(6631), 1, sym_comment, - [243885] = 5, + [213582] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11960), 1, + ACTIONS(11072), 1, anon_sym_RBRACK, - STATE(6717), 1, + STATE(6223), 1, aux_sym__multiple_types_repeat1, - STATE(7435), 1, + STATE(6632), 1, + sym_comment, + [213598] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(1751), 1, + aux_sym__unquoted_in_record_token4, + STATE(6633), 1, sym_comment, - [243901] = 5, + STATE(7228), 1, + sym__expr_parenthesized_immediate, + [213614] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11962), 1, + ACTIONS(11074), 1, anon_sym_RBRACK, - STATE(6718), 1, + STATE(6224), 1, aux_sym__multiple_types_repeat1, - STATE(7436), 1, + STATE(6634), 1, sym_comment, - [243917] = 3, + [213630] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7437), 1, + STATE(6635), 1, sym_comment, - ACTIONS(11589), 3, + ACTIONS(10800), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [243929] = 5, + [213642] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2285), 1, sym__entry_separator, - ACTIONS(11964), 1, - anon_sym_RBRACK, - STATE(6719), 1, + ACTIONS(11076), 1, + anon_sym_RBRACE, + STATE(569), 1, aux_sym__multiple_types_repeat1, - STATE(7438), 1, + STATE(6636), 1, sym_comment, - [243945] = 5, + [213658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(11966), 1, + ACTIONS(11078), 1, anon_sym_RBRACK, - STATE(6720), 1, + STATE(2835), 1, aux_sym__multiple_types_repeat1, - STATE(7439), 1, + STATE(6637), 1, sym_comment, - [243961] = 5, + [213674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2340), 1, sym__entry_separator, - ACTIONS(11968), 1, - anon_sym_RBRACK, - STATE(6721), 1, - aux_sym__multiple_types_repeat1, - STATE(7440), 1, + STATE(6638), 1, sym_comment, - [243977] = 5, + ACTIONS(2338), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11970), 1, + ACTIONS(11080), 1, anon_sym_RBRACK, - STATE(6722), 1, + STATE(6116), 1, aux_sym__multiple_types_repeat1, - STATE(7441), 1, + STATE(6639), 1, sym_comment, - [243993] = 4, + [213704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11051), 1, - anon_sym_LPAREN, - STATE(7442), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11082), 1, + anon_sym_RBRACK, + STATE(6294), 1, + aux_sym__multiple_types_repeat1, + STATE(6640), 1, sym_comment, - ACTIONS(11053), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [244007] = 5, + [213720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(7551), 1, - aux_sym_unquoted_token4, - STATE(7443), 1, - sym_comment, - STATE(8184), 1, - sym__expr_parenthesized_immediate, - [244023] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - ACTIONS(1801), 1, - anon_sym_LBRACE, - ACTIONS(11972), 1, - aux_sym__immediate_decimal_token2, - STATE(7444), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11084), 1, + anon_sym_RBRACK, + STATE(6117), 1, + aux_sym__multiple_types_repeat1, + STATE(6641), 1, sym_comment, - [244039] = 3, - ACTIONS(251), 1, + [213736] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7445), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11086), 1, + anon_sym_RBRACK, + STATE(6118), 1, + aux_sym__multiple_types_repeat1, + STATE(6642), 1, sym_comment, - ACTIONS(11974), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [244051] = 3, + [213752] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7446), 1, + STATE(6643), 1, sym_comment, - ACTIONS(11976), 3, + ACTIONS(1279), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [244063] = 4, + [213764] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2510), 1, - sym__entry_separator, - STATE(7447), 1, - sym_comment, - ACTIONS(2508), 2, - anon_sym_RBRACK, + ACTIONS(2297), 1, anon_sym_RBRACE, - [244077] = 5, + STATE(6644), 1, + sym_comment, + ACTIONS(2299), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [213778] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11978), 1, + ACTIONS(11088), 1, anon_sym_RBRACK, - STATE(7448), 1, + ACTIONS(11090), 1, + sym_hex_digit, + STATE(6645), 1, sym_comment, - STATE(7454), 1, + STATE(6653), 1, aux_sym_val_binary_repeat1, - [244093] = 3, + [213794] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + anon_sym_RBRACK, + ACTIONS(1665), 1, + sym__entry_separator, + ACTIONS(8759), 1, + aux_sym__unquoted_in_list_token2, + STATE(6646), 1, + sym_comment, + [213810] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7449), 1, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(11092), 1, + anon_sym_GT2, + STATE(6647), 1, sym_comment, - ACTIONS(11581), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [244105] = 4, - ACTIONS(3), 1, + STATE(7617), 1, + sym_param_cmd, + [213826] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__entry_separator, - STATE(7450), 1, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(7856), 1, + anon_sym_EQ, + STATE(4804), 1, + sym_param_cmd, + STATE(6648), 1, sym_comment, - ACTIONS(1883), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [244119] = 3, + [213842] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7451), 1, + STATE(6649), 1, sym_comment, - ACTIONS(11980), 3, + ACTIONS(10255), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [244131] = 5, - ACTIONS(251), 1, + [213854] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11982), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11094), 1, anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7452), 1, + STATE(6215), 1, + aux_sym__multiple_types_repeat1, + STATE(6650), 1, sym_comment, - [244147] = 5, + [213870] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7453), 1, + STATE(6624), 1, + sym_val_list, + STATE(6651), 1, sym_comment, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7955), 1, - sym_val_list, - [244163] = 5, - ACTIONS(251), 1, + [213886] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(11984), 1, - anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7454), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4123), 1, + aux_sym_unquoted_token4, + STATE(6652), 1, sym_comment, - [244179] = 3, + STATE(7219), 1, + sym__expr_parenthesized_immediate, + [213902] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7455), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11096), 1, + anon_sym_RBRACK, + STATE(6653), 1, sym_comment, - ACTIONS(11581), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [244191] = 3, - ACTIONS(251), 1, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + [213918] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7456), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11098), 1, + anon_sym_RBRACK, + STATE(6236), 1, + aux_sym__multiple_types_repeat1, + STATE(6654), 1, sym_comment, - ACTIONS(11986), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [244203] = 5, + [213934] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11988), 1, + ACTIONS(11100), 1, anon_sym_RBRACK, - STATE(6743), 1, + STATE(6225), 1, aux_sym__multiple_types_repeat1, - STATE(7457), 1, + STATE(6655), 1, sym_comment, - [244219] = 3, + [213950] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7458), 1, + STATE(6656), 1, sym_comment, - ACTIONS(11990), 3, + ACTIONS(9577), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [244231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - STATE(7459), 1, - sym_comment, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [244245] = 5, + [213962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11992), 1, + ACTIONS(11102), 1, anon_sym_RBRACK, - STATE(6744), 1, + STATE(6238), 1, aux_sym__multiple_types_repeat1, - STATE(7460), 1, + STATE(6657), 1, sym_comment, - [244261] = 5, + [213978] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11994), 1, + ACTIONS(11104), 1, anon_sym_RBRACK, - STATE(6745), 1, + STATE(6239), 1, aux_sym__multiple_types_repeat1, - STATE(7461), 1, + STATE(6658), 1, sym_comment, - [244277] = 5, + [213994] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11996), 1, + ACTIONS(11106), 1, anon_sym_RBRACK, - STATE(6746), 1, + STATE(6240), 1, aux_sym__multiple_types_repeat1, - STATE(7462), 1, + STATE(6659), 1, sym_comment, - [244293] = 3, + [214010] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7463), 1, + STATE(6660), 1, + sym_comment, + ACTIONS(11050), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214022] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6661), 1, sym_comment, - ACTIONS(11581), 3, + ACTIONS(11052), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244305] = 5, + [214034] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11998), 1, + ACTIONS(11108), 1, anon_sym_RBRACK, - STATE(6747), 1, + STATE(6241), 1, aux_sym__multiple_types_repeat1, - STATE(7464), 1, + STATE(6662), 1, sym_comment, - [244321] = 5, + [214050] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12000), 1, + ACTIONS(11110), 1, anon_sym_RBRACK, - STATE(6748), 1, + STATE(6242), 1, aux_sym__multiple_types_repeat1, - STATE(7465), 1, + STATE(6663), 1, + sym_comment, + [214066] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6664), 1, sym_comment, - [244337] = 5, + ACTIONS(10714), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214078] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12002), 1, + ACTIONS(11112), 1, anon_sym_RBRACK, - STATE(6749), 1, + STATE(6243), 1, aux_sym__multiple_types_repeat1, - STATE(7466), 1, + STATE(6665), 1, sym_comment, - [244353] = 5, - ACTIONS(3), 1, + [214094] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12004), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(6666), 1, + sym_comment, + ACTIONS(2228), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [214108] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(7856), 1, + anon_sym_EQ, + STATE(4805), 1, + sym_param_cmd, + STATE(6667), 1, + sym_comment, + [214124] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11114), 1, anon_sym_RBRACK, - STATE(6750), 1, - aux_sym__multiple_types_repeat1, - STATE(7467), 1, + STATE(6668), 1, + sym_comment, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + [214140] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(298), 1, + aux_sym__block_body_repeat1, + STATE(6669), 1, + sym_comment, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + [214154] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6670), 1, sym_comment, - [244369] = 3, + ACTIONS(10333), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214166] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7468), 1, + STATE(6671), 1, sym_comment, - ACTIONS(11141), 3, + ACTIONS(9579), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244381] = 4, + [214178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5832), 1, + ACTIONS(2447), 1, sym__entry_separator, - STATE(7469), 1, + STATE(6672), 1, sym_comment, - ACTIONS(5830), 2, + ACTIONS(2445), 2, anon_sym_RBRACK, - anon_sym_GT2, - [244395] = 4, + anon_sym_RBRACE, + [214192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(2451), 1, sym__entry_separator, - STATE(7470), 1, + STATE(6673), 1, sym_comment, - ACTIONS(1895), 2, + ACTIONS(2449), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [244409] = 3, - ACTIONS(251), 1, + [214206] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7471), 1, + STATE(6674), 1, sym_comment, - ACTIONS(11733), 3, - ts_builtin_sym_end, + ACTIONS(1916), 3, sym__newline, - anon_sym_SEMI, - [244421] = 5, - ACTIONS(251), 1, + sym__space, + anon_sym_COLON2, + [214218] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12006), 1, - anon_sym_RBRACK, - STATE(7472), 1, + ACTIONS(2241), 1, + anon_sym_EQ_GT, + ACTIONS(2245), 1, + anon_sym_PIPE, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(6675), 1, sym_comment, - STATE(7476), 1, - aux_sym_val_binary_repeat1, - [244437] = 3, + [214234] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7473), 1, + STATE(6676), 1, sym_comment, - ACTIONS(11215), 3, + ACTIONS(10399), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244449] = 5, + [214246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2455), 1, sym__entry_separator, - ACTIONS(12008), 1, - anon_sym_RBRACK, - STATE(3634), 1, - aux_sym__multiple_types_repeat1, - STATE(7474), 1, + STATE(6677), 1, sym_comment, - [244465] = 5, + ACTIONS(2453), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214260] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(2459), 1, sym__entry_separator, - ACTIONS(12010), 1, - anon_sym_GT2, - STATE(5911), 1, - aux_sym__multiple_types_repeat1, - STATE(7475), 1, + STATE(6678), 1, sym_comment, - [244481] = 5, + ACTIONS(2457), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214274] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11090), 1, sym_hex_digit, - ACTIONS(12012), 1, + ACTIONS(11116), 1, anon_sym_RBRACK, - STATE(7421), 1, + STATE(6679), 1, + sym_comment, + STATE(6685), 1, aux_sym_val_binary_repeat1, - STATE(7476), 1, + [214290] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5630), 1, + sym__entry_separator, + STATE(6680), 1, sym_comment, - [244497] = 5, + ACTIONS(5628), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [214304] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1034), 1, + ACTIONS(2249), 1, sym__newline, - ACTIONS(1036), 1, + ACTIONS(2253), 1, sym__space, - ACTIONS(2222), 1, + ACTIONS(2255), 1, aux_sym_unquoted_token4, - STATE(7477), 1, + STATE(6681), 1, sym_comment, - [244513] = 5, + [214320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2463), 1, sym__entry_separator, - ACTIONS(12014), 1, + STATE(6682), 1, + sym_comment, + ACTIONS(2461), 2, anon_sym_RBRACK, - STATE(6773), 1, - aux_sym__multiple_types_repeat1, - STATE(7478), 1, + anon_sym_RBRACE, + [214334] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2469), 1, + sym__entry_separator, + STATE(6683), 1, sym_comment, - [244529] = 3, + ACTIONS(2467), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214348] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7479), 1, + ACTIONS(2473), 1, + sym__entry_separator, + STATE(6684), 1, + sym_comment, + ACTIONS(2471), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214362] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11118), 1, + anon_sym_RBRACK, + STATE(6685), 1, + sym_comment, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + [214378] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6686), 1, sym_comment, - ACTIONS(2520), 3, + ACTIONS(2485), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [244541] = 3, + [214390] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11120), 1, + anon_sym_RBRACK, + STATE(6253), 1, + aux_sym__multiple_types_repeat1, + STATE(6687), 1, + sym_comment, + [214406] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7480), 1, + STATE(6688), 1, sym_comment, - ACTIONS(11799), 3, - ts_builtin_sym_end, + ACTIONS(11122), 3, sym__newline, anon_sym_SEMI, - [244553] = 5, + anon_sym_RPAREN, + [214418] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1512), 1, + anon_sym_SEMI, + ACTIONS(3876), 1, + sym__newline, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6689), 1, + sym_comment, + [214434] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12016), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(6774), 1, + STATE(6254), 1, aux_sym__multiple_types_repeat1, - STATE(7481), 1, + STATE(6690), 1, sym_comment, - [244569] = 5, + [214450] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12018), 1, + ACTIONS(11126), 1, anon_sym_RBRACK, - STATE(6775), 1, + STATE(6255), 1, aux_sym__multiple_types_repeat1, - STATE(7482), 1, + STATE(6691), 1, sym_comment, - [244585] = 5, + [214466] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12020), 1, + ACTIONS(11128), 1, anon_sym_RBRACK, - STATE(6776), 1, + STATE(6256), 1, aux_sym__multiple_types_repeat1, - STATE(7483), 1, + STATE(6692), 1, sym_comment, - [244601] = 5, + [214482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2156), 1, sym__entry_separator, - ACTIONS(12022), 1, + STATE(6693), 1, + sym_comment, + ACTIONS(2150), 2, anon_sym_RBRACK, - STATE(6777), 1, + anon_sym_RBRACE, + [214496] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11130), 1, + anon_sym_RBRACK, + STATE(6257), 1, aux_sym__multiple_types_repeat1, - STATE(7484), 1, + STATE(6694), 1, + sym_comment, + [214512] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6695), 1, sym_comment, - [244617] = 5, + ACTIONS(10367), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214524] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12024), 1, + ACTIONS(11132), 1, anon_sym_RBRACK, - STATE(6778), 1, + STATE(6258), 1, aux_sym__multiple_types_repeat1, - STATE(7485), 1, + STATE(6696), 1, sym_comment, - [244633] = 5, + [214540] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12026), 1, + ACTIONS(11134), 1, anon_sym_RBRACK, - STATE(6779), 1, + STATE(6259), 1, aux_sym__multiple_types_repeat1, - STATE(7486), 1, + STATE(6697), 1, sym_comment, - [244649] = 5, + [214556] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3919), 1, - sym__newline, - ACTIONS(12028), 1, - anon_sym_COLON, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(7487), 1, + ACTIONS(1279), 1, + anon_sym_RPAREN, + STATE(6698), 1, sym_comment, - [244665] = 5, + ACTIONS(1272), 2, + sym__newline, + anon_sym_SEMI, + [214570] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12030), 1, + ACTIONS(11136), 1, anon_sym_RBRACK, - STATE(6780), 1, + STATE(6260), 1, aux_sym__multiple_types_repeat1, - STATE(7488), 1, + STATE(6699), 1, sym_comment, - [244681] = 3, + [214586] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7489), 1, + STATE(6700), 1, sym_comment, - ACTIONS(11581), 3, + ACTIONS(10339), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244693] = 3, + [214598] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7490), 1, + STATE(6701), 1, sym_comment, - ACTIONS(11581), 3, + ACTIONS(10401), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244705] = 5, + [214610] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10785), 1, - anon_sym_if, - ACTIONS(12032), 1, - anon_sym_EQ_GT, - STATE(7491), 1, + STATE(6702), 1, sym_comment, - STATE(8274), 1, - sym_match_guard, - [244721] = 3, + ACTIONS(10322), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214622] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + sym__entry_separator, + STATE(6703), 1, + sym_comment, + ACTIONS(2433), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214636] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11138), 1, + anon_sym_RBRACK, + STATE(3475), 1, + aux_sym__multiple_types_repeat1, + STATE(6704), 1, + sym_comment, + [214652] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7492), 1, + STATE(6705), 1, sym_comment, - ACTIONS(11648), 3, + ACTIONS(10405), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244733] = 5, + [214664] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12034), 1, - anon_sym_RBRACK, - STATE(7493), 1, + STATE(6706), 1, sym_comment, - STATE(7524), 1, - aux_sym_val_binary_repeat1, - [244749] = 5, + ACTIONS(11140), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [214676] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12036), 1, - anon_sym_RBRACK, - STATE(7494), 1, + STATE(6707), 1, sym_comment, - STATE(7498), 1, - aux_sym_val_binary_repeat1, - [244765] = 5, + ACTIONS(10278), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(12038), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + ACTIONS(11142), 1, + sym__space, + STATE(6708), 1, + sym_comment, + [214704] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11144), 1, anon_sym_RBRACK, - STATE(2988), 1, - aux_sym__multiple_types_repeat1, - STATE(7495), 1, + STATE(6709), 1, sym_comment, - [244781] = 5, + STATE(6712), 1, + aux_sym_val_binary_repeat1, + [214720] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7056), 1, - sym_block, - STATE(7496), 1, + STATE(6710), 1, sym_comment, - [244797] = 5, - ACTIONS(3), 1, + ACTIONS(10278), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214732] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12040), 1, - anon_sym_RBRACK, - STATE(7193), 1, - aux_sym__multiple_types_repeat1, - STATE(7497), 1, + STATE(6711), 1, sym_comment, - [244813] = 5, + ACTIONS(10249), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214744] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11090), 1, sym_hex_digit, - ACTIONS(12042), 1, + ACTIONS(11146), 1, anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7498), 1, + STATE(6712), 1, sym_comment, - [244829] = 3, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + [214760] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7499), 1, + STATE(6713), 1, sym_comment, - ACTIONS(11805), 3, + ACTIONS(10249), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [244841] = 5, + [214772] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12044), 1, + ACTIONS(11148), 1, anon_sym_RBRACK, - STATE(6804), 1, + STATE(6267), 1, aux_sym__multiple_types_repeat1, - STATE(7500), 1, + STATE(6714), 1, sym_comment, - [244857] = 3, + [214788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7501), 1, + ACTIONS(6073), 1, + anon_sym_RBRACK, + STATE(6715), 1, sym_comment, - ACTIONS(2242), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [244869] = 5, + ACTIONS(6075), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214802] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6716), 1, + sym_comment, + ACTIONS(11002), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12046), 1, + ACTIONS(11150), 1, anon_sym_RBRACK, - STATE(6805), 1, + STATE(6268), 1, aux_sym__multiple_types_repeat1, - STATE(7502), 1, + STATE(6717), 1, sym_comment, - [244885] = 5, + [214830] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12048), 1, + ACTIONS(11152), 1, anon_sym_RBRACK, - STATE(6806), 1, + STATE(6269), 1, aux_sym__multiple_types_repeat1, - STATE(7503), 1, + STATE(6718), 1, sym_comment, - [244901] = 5, + [214846] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12050), 1, + ACTIONS(11154), 1, anon_sym_RBRACK, - STATE(6807), 1, + STATE(6270), 1, aux_sym__multiple_types_repeat1, - STATE(7504), 1, + STATE(6719), 1, sym_comment, - [244917] = 5, + [214862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(12052), 1, - anon_sym_RBRACE, - STATE(3104), 1, - aux_sym__multiple_types_repeat1, - STATE(7505), 1, + ACTIONS(11156), 1, + anon_sym_POUND_BANG, + ACTIONS(11158), 1, + sym__newline, + STATE(6720), 1, sym_comment, - [244933] = 5, + STATE(7031), 1, + aux_sym_shebang_repeat1, + [214878] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12054), 1, + ACTIONS(11160), 1, anon_sym_RBRACK, - STATE(6808), 1, + STATE(6271), 1, aux_sym__multiple_types_repeat1, - STATE(7506), 1, + STATE(6721), 1, sym_comment, - [244949] = 3, + [214894] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7507), 1, + STATE(6722), 1, sym_comment, - ACTIONS(9560), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [244961] = 5, + ACTIONS(6177), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214906] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12056), 1, + ACTIONS(11162), 1, anon_sym_RBRACK, - STATE(6809), 1, + STATE(6272), 1, aux_sym__multiple_types_repeat1, - STATE(7508), 1, + STATE(6723), 1, sym_comment, - [244977] = 5, + [214922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12058), 1, + ACTIONS(11164), 1, anon_sym_RBRACK, - STATE(6810), 1, + STATE(6273), 1, aux_sym__multiple_types_repeat1, - STATE(7509), 1, - sym_comment, - [244993] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7510), 1, + STATE(6724), 1, sym_comment, - ACTIONS(12060), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245005] = 5, + [214938] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12062), 1, + ACTIONS(11166), 1, anon_sym_RBRACK, - STATE(6811), 1, + STATE(6274), 1, aux_sym__multiple_types_repeat1, - STATE(7511), 1, + STATE(6725), 1, sym_comment, - [245021] = 3, + [214954] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7512), 1, + STATE(6726), 1, sym_comment, - ACTIONS(6378), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245033] = 3, - ACTIONS(251), 1, + ACTIONS(11168), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [214966] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7513), 1, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(11170), 1, + anon_sym_RBRACE, + STATE(2956), 1, + aux_sym__multiple_types_repeat1, + STATE(6727), 1, sym_comment, - ACTIONS(6378), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245045] = 3, - ACTIONS(251), 1, + [214982] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7514), 1, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(11172), 1, + anon_sym_RBRACE, + STATE(2957), 1, + aux_sym__multiple_types_repeat1, + STATE(6728), 1, sym_comment, - ACTIONS(10951), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245057] = 3, + [214998] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7515), 1, + STATE(6729), 1, sym_comment, - ACTIONS(10931), 3, + ACTIONS(10622), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [245069] = 3, + [215010] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7516), 1, + STATE(6730), 1, sym_comment, - ACTIONS(10941), 3, + ACTIONS(10449), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [245081] = 3, + [215022] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2360), 1, + sym__entry_separator, + STATE(6731), 1, + sym_comment, + ACTIONS(2358), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215036] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + ACTIONS(7152), 1, + aux_sym__unquoted_in_record_token4, + STATE(6732), 1, + sym_comment, + STATE(7333), 1, + sym__expr_parenthesized_immediate, + [215052] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7517), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11174), 1, + anon_sym_RBRACK, + STATE(6733), 1, sym_comment, - ACTIONS(11735), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245093] = 3, + STATE(6739), 1, + aux_sym_val_binary_repeat1, + [215068] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7518), 1, + STATE(6734), 1, sym_comment, - ACTIONS(11735), 3, + ACTIONS(10318), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [245105] = 3, + [215080] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5619), 1, + sym__entry_separator, + STATE(6735), 1, + sym_comment, + ACTIONS(5617), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [215094] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7519), 1, + STATE(6736), 1, sym_comment, - ACTIONS(11581), 3, + ACTIONS(10322), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [245117] = 5, - ACTIONS(251), 1, + [215106] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12064), 1, + ACTIONS(6086), 1, anon_sym_RBRACK, - STATE(7520), 1, + STATE(6737), 1, sym_comment, - STATE(7522), 1, - aux_sym_val_binary_repeat1, - [245133] = 5, + ACTIONS(6088), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215120] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(5061), 1, - aux_sym_unquoted_token4, - STATE(7521), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(11176), 1, + anon_sym_RBRACK, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + STATE(6738), 1, sym_comment, - STATE(8150), 1, - sym__expr_parenthesized_immediate, - [245149] = 5, + [215136] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11090), 1, sym_hex_digit, - ACTIONS(12066), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, - STATE(7421), 1, + STATE(6739), 1, + sym_comment, + STATE(6795), 1, aux_sym_val_binary_repeat1, - STATE(7522), 1, + [215152] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11180), 1, + anon_sym_RBRACK, + STATE(6282), 1, + aux_sym__multiple_types_repeat1, + STATE(6740), 1, sym_comment, - [245165] = 5, + [215168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(12068), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, - STATE(6830), 1, + STATE(2874), 1, aux_sym__multiple_types_repeat1, - STATE(7523), 1, + STATE(6741), 1, sym_comment, - [245181] = 5, - ACTIONS(251), 1, + [215184] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12070), 1, + ACTIONS(11184), 1, + sym__table_head_separator, + STATE(6742), 1, + sym_comment, + ACTIONS(1004), 2, anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7524), 1, + sym__entry_separator, + [215198] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2364), 1, + sym__entry_separator, + STATE(6743), 1, sym_comment, - [245197] = 5, + ACTIONS(2362), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215212] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12072), 1, + ACTIONS(11186), 1, anon_sym_RBRACK, - STATE(6831), 1, + STATE(6283), 1, aux_sym__multiple_types_repeat1, - STATE(7525), 1, + STATE(6744), 1, sym_comment, - [245213] = 5, + [215228] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12074), 1, + ACTIONS(11188), 1, anon_sym_RBRACK, - STATE(6832), 1, + STATE(6284), 1, aux_sym__multiple_types_repeat1, - STATE(7526), 1, + STATE(6745), 1, sym_comment, - [245229] = 5, + [215244] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12076), 1, + ACTIONS(11190), 1, anon_sym_RBRACK, - STATE(6833), 1, + STATE(6285), 1, aux_sym__multiple_types_repeat1, - STATE(7527), 1, - sym_comment, - [245245] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7528), 1, + STATE(6746), 1, sym_comment, - ACTIONS(11743), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245257] = 5, + [215260] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12078), 1, + ACTIONS(11192), 1, anon_sym_RBRACK, - STATE(6834), 1, + STATE(6286), 1, aux_sym__multiple_types_repeat1, - STATE(7529), 1, + STATE(6747), 1, sym_comment, - [245273] = 4, + [215276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2522), 1, + ACTIONS(2439), 1, sym__entry_separator, - STATE(7530), 1, + STATE(6748), 1, sym_comment, - ACTIONS(2520), 2, + ACTIONS(2437), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [245287] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12080), 1, - anon_sym_RBRACK, - STATE(6835), 1, - aux_sym__multiple_types_repeat1, - STATE(7531), 1, - sym_comment, - [245303] = 5, + [215290] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12082), 1, + ACTIONS(11194), 1, anon_sym_RBRACK, - STATE(6836), 1, + STATE(6287), 1, aux_sym__multiple_types_repeat1, - STATE(7532), 1, + STATE(6749), 1, sym_comment, - [245319] = 5, + [215306] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12084), 1, + ACTIONS(11196), 1, anon_sym_RBRACK, - STATE(7137), 1, + STATE(6288), 1, aux_sym__multiple_types_repeat1, - STATE(7533), 1, + STATE(6750), 1, sym_comment, - [245335] = 5, + [215322] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6491), 1, + ACTIONS(6346), 1, anon_sym_AT, - ACTIONS(12086), 1, + ACTIONS(11198), 1, anon_sym_GT2, - STATE(7534), 1, + STATE(6751), 1, sym_comment, - STATE(8301), 1, + STATE(7578), 1, sym_param_cmd, - [245351] = 5, + [215338] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12088), 1, + ACTIONS(11200), 1, anon_sym_RBRACK, - STATE(6837), 1, + STATE(6289), 1, aux_sym__multiple_types_repeat1, - STATE(7535), 1, + STATE(6752), 1, + sym_comment, + [215354] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11202), 1, + anon_sym_RBRACK, + STATE(6135), 1, + aux_sym__multiple_types_repeat1, + STATE(6753), 1, sym_comment, - [245367] = 3, + [215370] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7536), 1, + STATE(6754), 1, sym_comment, - ACTIONS(11581), 3, + ACTIONS(10624), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [245379] = 4, + [215382] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2472), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7537), 1, - sym_comment, - ACTIONS(2470), 2, + ACTIONS(11204), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [245393] = 3, - ACTIONS(251), 1, + STATE(6136), 1, + aux_sym__multiple_types_repeat1, + STATE(6755), 1, + sym_comment, + [215398] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7538), 1, + ACTIONS(2491), 1, + sym__entry_separator, + STATE(6756), 1, sym_comment, - ACTIONS(6382), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245405] = 3, - ACTIONS(251), 1, + ACTIONS(2489), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215412] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7539), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(11206), 1, + anon_sym_RBRACK, + STATE(2837), 1, + aux_sym__multiple_types_repeat1, + STATE(6757), 1, sym_comment, - ACTIONS(6092), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245417] = 3, - ACTIONS(251), 1, + [215428] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7540), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(11208), 1, + anon_sym_RBRACK, + STATE(2838), 1, + aux_sym__multiple_types_repeat1, + STATE(6758), 1, sym_comment, - ACTIONS(6354), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245429] = 3, - ACTIONS(251), 1, + [215444] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7541), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11210), 1, + anon_sym_RBRACK, + STATE(6137), 1, + aux_sym__multiple_types_repeat1, + STATE(6759), 1, sym_comment, - ACTIONS(11743), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245441] = 5, + [215460] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11090), 1, sym_hex_digit, - ACTIONS(12090), 1, + ACTIONS(11212), 1, anon_sym_RBRACK, - STATE(7542), 1, + STATE(6760), 1, sym_comment, - STATE(7546), 1, + STATE(6766), 1, aux_sym_val_binary_repeat1, - [245457] = 3, - ACTIONS(251), 1, + [215476] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7543), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11214), 1, + anon_sym_RBRACK, + STATE(6399), 1, + aux_sym__multiple_types_repeat1, + STATE(6761), 1, sym_comment, - ACTIONS(6358), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245469] = 3, - ACTIONS(251), 1, + [215492] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7544), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11216), 1, + anon_sym_RBRACK, + STATE(6401), 1, + aux_sym__multiple_types_repeat1, + STATE(6762), 1, sym_comment, - ACTIONS(11581), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245481] = 3, - ACTIONS(251), 1, + [215508] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7545), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11218), 1, + anon_sym_RBRACK, + STATE(6402), 1, + aux_sym__multiple_types_repeat1, + STATE(6763), 1, sym_comment, - ACTIONS(11652), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245493] = 5, - ACTIONS(251), 1, + [215524] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12092), 1, - anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7546), 1, + ACTIONS(2344), 1, + sym__entry_separator, + STATE(6764), 1, sym_comment, - [245509] = 3, + ACTIONS(2342), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215538] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7547), 1, + STATE(6765), 1, sym_comment, - ACTIONS(6099), 3, + ACTIONS(6181), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [245521] = 5, - ACTIONS(3), 1, + [215550] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12094), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11220), 1, anon_sym_RBRACK, - STATE(6853), 1, - aux_sym__multiple_types_repeat1, - STATE(7548), 1, + STATE(6766), 1, sym_comment, - [245537] = 4, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + [215566] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2460), 1, - sym__entry_separator, - STATE(7549), 1, + ACTIONS(11222), 1, + anon_sym_GT2, + STATE(6767), 1, sym_comment, - ACTIONS(2458), 2, + ACTIONS(11224), 2, + anon_sym_AT, + sym__entry_separator, + [215580] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11226), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [245551] = 5, + STATE(6298), 1, + aux_sym__multiple_types_repeat1, + STATE(6768), 1, + sym_comment, + [215596] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5736), 1, sym__entry_separator, - ACTIONS(12096), 1, + ACTIONS(11228), 1, anon_sym_RBRACK, - STATE(6854), 1, + STATE(2717), 1, aux_sym__multiple_types_repeat1, - STATE(7550), 1, + STATE(6769), 1, sym_comment, - [245567] = 5, + [215612] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12098), 1, + ACTIONS(11230), 1, anon_sym_RBRACK, - STATE(6855), 1, + STATE(6299), 1, aux_sym__multiple_types_repeat1, - STATE(7551), 1, + STATE(6770), 1, sym_comment, - [245583] = 5, + [215628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12100), 1, + ACTIONS(11232), 1, anon_sym_RBRACK, - STATE(6856), 1, + STATE(6300), 1, aux_sym__multiple_types_repeat1, - STATE(7552), 1, + STATE(6771), 1, sym_comment, - [245599] = 4, + [215644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7553), 1, - sym_comment, - ACTIONS(5826), 2, + ACTIONS(11234), 1, anon_sym_RBRACK, - anon_sym_GT2, - [245613] = 5, + STATE(6301), 1, + aux_sym__multiple_types_repeat1, + STATE(6772), 1, + sym_comment, + [215660] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12102), 1, + ACTIONS(11236), 1, anon_sym_RBRACK, - STATE(6857), 1, + STATE(6302), 1, aux_sym__multiple_types_repeat1, - STATE(7554), 1, + STATE(6773), 1, sym_comment, - [245629] = 3, + [215676] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7555), 1, + STATE(6774), 1, sym_comment, - ACTIONS(12104), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [245641] = 5, + ACTIONS(10512), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215688] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12106), 1, + ACTIONS(11238), 1, anon_sym_RBRACK, - STATE(6858), 1, + STATE(6303), 1, aux_sym__multiple_types_repeat1, - STATE(7556), 1, + STATE(6775), 1, sym_comment, - [245657] = 5, + [215704] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12108), 1, + ACTIONS(11240), 1, anon_sym_RBRACK, - STATE(6859), 1, + STATE(6304), 1, aux_sym__multiple_types_repeat1, - STATE(7557), 1, + STATE(6776), 1, sym_comment, - [245673] = 3, - ACTIONS(251), 1, + [215720] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7558), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11242), 1, + anon_sym_GT2, + STATE(5342), 1, + aux_sym__multiple_types_repeat1, + STATE(6777), 1, sym_comment, - ACTIONS(11743), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245685] = 5, + [215736] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12110), 1, + ACTIONS(11244), 1, anon_sym_RBRACK, - STATE(6860), 1, + STATE(6305), 1, aux_sym__multiple_types_repeat1, - STATE(7559), 1, + STATE(6778), 1, sym_comment, - [245701] = 4, - ACTIONS(3), 1, + [215752] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2464), 1, - sym__entry_separator, - STATE(7560), 1, + STATE(6779), 1, sym_comment, - ACTIONS(2462), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [245715] = 4, + ACTIONS(6134), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215764] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, + ACTIONS(5652), 1, sym__entry_separator, - STATE(7561), 1, + STATE(6780), 1, sym_comment, - ACTIONS(2466), 2, + ACTIONS(5650), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [245729] = 5, - ACTIONS(3), 1, + anon_sym_GT2, + [215778] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3571), 1, - sym__newline, - ACTIONS(3573), 1, - sym__space, - STATE(1165), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7562), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11246), 1, + anon_sym_RBRACK, + STATE(6668), 1, + aux_sym_val_binary_repeat1, + STATE(6781), 1, sym_comment, - [245745] = 5, + [215794] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12112), 1, - anon_sym_GT2, - STATE(5889), 1, + ACTIONS(11248), 1, + anon_sym_RBRACK, + STATE(6069), 1, aux_sym__multiple_types_repeat1, - STATE(7563), 1, + STATE(6782), 1, sym_comment, - [245761] = 4, + [215810] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - STATE(7564), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6783), 1, sym_comment, - ACTIONS(1838), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [245775] = 4, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6947), 1, + sym_val_list, + [215826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(9143), 1, sym__entry_separator, - STATE(7565), 1, + ACTIONS(11250), 1, + anon_sym_GT2, + STATE(5344), 1, + aux_sym__multiple_types_repeat1, + STATE(6784), 1, sym_comment, - ACTIONS(2407), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [245789] = 4, + [215842] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11252), 1, + anon_sym_LBRACK, + STATE(7269), 1, + sym_val_list, + STATE(6785), 2, + sym_comment, + aux_sym_val_table_repeat1, + [215856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2413), 1, - sym__entry_separator, - STATE(7566), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(8759), 1, + aux_sym__unquoted_in_list_token4, + STATE(6786), 1, sym_comment, - ACTIONS(2411), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [245803] = 4, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + [215872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7567), 1, - sym_comment, - ACTIONS(2415), 2, + ACTIONS(11255), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [245817] = 5, + STATE(6229), 1, + aux_sym__multiple_types_repeat1, + STATE(6787), 1, + sym_comment, + [215888] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11090), 1, sym_hex_digit, - ACTIONS(12114), 1, + ACTIONS(11257), 1, anon_sym_RBRACK, - STATE(7568), 1, + STATE(6788), 1, sym_comment, - STATE(7572), 1, + STATE(6792), 1, aux_sym_val_binary_repeat1, - [245833] = 3, + [215904] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7569), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6655), 1, + sym_val_list, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6789), 1, sym_comment, - ACTIONS(11591), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245845] = 3, + [215920] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7570), 1, + STATE(6790), 1, sym_comment, - ACTIONS(11591), 3, + ACTIONS(10327), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [245857] = 3, + [215932] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7571), 1, + STATE(6791), 1, sym_comment, - ACTIONS(11591), 3, - ts_builtin_sym_end, + ACTIONS(11259), 3, sym__newline, anon_sym_SEMI, - [245869] = 5, + anon_sym_RPAREN, + [215944] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, + ACTIONS(11090), 1, sym_hex_digit, - ACTIONS(12116), 1, + ACTIONS(11261), 1, anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7572), 1, + STATE(6792), 1, sym_comment, - [245885] = 3, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + [215960] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7573), 1, + STATE(6793), 1, sym_comment, - ACTIONS(11591), 3, - ts_builtin_sym_end, + ACTIONS(11263), 3, sym__newline, anon_sym_SEMI, - [245897] = 5, + anon_sym_RPAREN, + [215972] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12118), 1, + ACTIONS(11265), 1, anon_sym_RBRACK, - STATE(6874), 1, + STATE(6315), 1, aux_sym__multiple_types_repeat1, - STATE(7574), 1, + STATE(6794), 1, sym_comment, - [245913] = 3, + [215988] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7575), 1, + ACTIONS(11267), 1, + anon_sym_RBRACK, + ACTIONS(11269), 1, + sym_hex_digit, + STATE(6795), 2, sym_comment, - ACTIONS(11591), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [245925] = 5, + aux_sym_val_binary_repeat1, + [216002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12120), 1, + ACTIONS(11272), 1, anon_sym_RBRACK, - STATE(6875), 1, + STATE(6316), 1, aux_sym__multiple_types_repeat1, - STATE(7576), 1, + STATE(6796), 1, sym_comment, - [245941] = 5, + [216018] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12122), 1, + ACTIONS(11274), 1, anon_sym_RBRACK, - STATE(6876), 1, + STATE(6317), 1, aux_sym__multiple_types_repeat1, - STATE(7577), 1, + STATE(6797), 1, sym_comment, - [245957] = 5, + [216034] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12124), 1, + ACTIONS(11276), 1, anon_sym_RBRACK, - STATE(6877), 1, + STATE(6318), 1, aux_sym__multiple_types_repeat1, - STATE(7578), 1, + STATE(6798), 1, sym_comment, - [245973] = 5, + [216050] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12126), 1, + ACTIONS(11278), 1, anon_sym_RBRACK, - STATE(6878), 1, + STATE(6319), 1, aux_sym__multiple_types_repeat1, - STATE(7579), 1, + STATE(6799), 1, sym_comment, - [245989] = 3, - ACTIONS(251), 1, + [216066] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7580), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11280), 1, + anon_sym_GT2, + STATE(5362), 1, + aux_sym__multiple_types_repeat1, + STATE(6800), 1, sym_comment, - ACTIONS(9564), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246001] = 5, + [216082] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12128), 1, + ACTIONS(11282), 1, anon_sym_RBRACK, - STATE(6879), 1, + STATE(6320), 1, aux_sym__multiple_types_repeat1, - STATE(7581), 1, + STATE(6801), 1, sym_comment, - [246017] = 5, + [216098] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12130), 1, + ACTIONS(11284), 1, anon_sym_RBRACK, - STATE(6880), 1, + STATE(6321), 1, aux_sym__multiple_types_repeat1, - STATE(7582), 1, + STATE(6802), 1, + sym_comment, + [216114] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2249), 1, + anon_sym_EQ_GT, + ACTIONS(2253), 1, + anon_sym_PIPE, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(6803), 1, + sym_comment, + [216130] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + ACTIONS(2257), 1, + anon_sym_EQ_GT, + ACTIONS(2259), 1, + anon_sym_PIPE, + STATE(6804), 1, sym_comment, - [246033] = 5, + [216146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12132), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, - STATE(6881), 1, + STATE(6322), 1, aux_sym__multiple_types_repeat1, - STATE(7583), 1, + STATE(6805), 1, sym_comment, - [246049] = 5, + [216162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(1795), 1, - aux_sym__unquoted_in_record_token4, - STATE(7584), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11288), 1, + anon_sym_GT2, + STATE(5384), 1, + aux_sym__multiple_types_repeat1, + STATE(6806), 1, sym_comment, - STATE(7982), 1, - sym__expr_parenthesized_immediate, - [246065] = 4, + [216178] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5644), 1, + sym__entry_separator, + STATE(6807), 1, + sym_comment, + ACTIONS(5642), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [216192] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(7585), 1, + STATE(6808), 1, sym_comment, - ACTIONS(1699), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [246079] = 3, + ACTIONS(10407), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216204] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7586), 1, + STATE(6809), 1, sym_comment, - ACTIONS(11591), 3, + ACTIONS(10327), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [246091] = 5, + [216216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5648), 1, sym__entry_separator, - ACTIONS(12134), 1, - anon_sym_RBRACK, - STATE(6900), 1, - aux_sym__multiple_types_repeat1, - STATE(7587), 1, + STATE(6810), 1, sym_comment, - [246107] = 3, + ACTIONS(5646), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [216230] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7588), 1, + STATE(6811), 1, sym_comment, - ACTIONS(11267), 3, + ACTIONS(10912), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [246119] = 5, - ACTIONS(3), 1, + [216242] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12136), 1, - anon_sym_RBRACK, - STATE(7263), 1, - aux_sym__multiple_types_repeat1, - STATE(7589), 1, + STATE(6812), 1, sym_comment, - [246135] = 5, + ACTIONS(10409), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2487), 1, sym__entry_separator, - ACTIONS(12138), 1, - anon_sym_RBRACK, - STATE(7268), 1, - aux_sym__multiple_types_repeat1, - STATE(7590), 1, + STATE(6813), 1, sym_comment, - [246151] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12140), 1, + ACTIONS(2485), 2, anon_sym_RBRACK, - STATE(7269), 1, - aux_sym__multiple_types_repeat1, - STATE(7591), 1, - sym_comment, - [246167] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [216268] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12142), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11290), 1, anon_sym_RBRACK, - STATE(6891), 1, - aux_sym__multiple_types_repeat1, - STATE(7592), 1, - sym_comment, - [246183] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(12144), 1, - anon_sym_GT2, - STATE(5987), 1, - aux_sym__multiple_types_repeat1, - STATE(7593), 1, + STATE(6814), 1, sym_comment, - [246199] = 3, + STATE(6819), 1, + aux_sym_val_binary_repeat1, + [216284] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7594), 1, + STATE(6815), 1, sym_comment, - ACTIONS(11595), 3, + ACTIONS(10477), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [246211] = 5, + [216296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1653), 1, + anon_sym_RBRACE, + ACTIONS(1665), 1, sym__entry_separator, - ACTIONS(12146), 1, - anon_sym_RBRACK, - STATE(6892), 1, - aux_sym__multiple_types_repeat1, - STATE(7595), 1, + ACTIONS(8921), 1, + aux_sym__unquoted_in_record_token2, + STATE(6816), 1, sym_comment, - [246227] = 5, + [216312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1979), 1, sym__entry_separator, - ACTIONS(12148), 1, - anon_sym_RBRACK, - STATE(6893), 1, - aux_sym__multiple_types_repeat1, - STATE(7596), 1, + STATE(6817), 1, sym_comment, - [246243] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12150), 1, + ACTIONS(1977), 2, anon_sym_RBRACK, - STATE(6894), 1, - aux_sym__multiple_types_repeat1, - STATE(7597), 1, - sym_comment, - [246259] = 5, + anon_sym_RBRACE, + [216326] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12152), 1, - anon_sym_RBRACK, - STATE(6895), 1, - aux_sym__multiple_types_repeat1, - STATE(7598), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + ACTIONS(2257), 1, + sym__newline, + ACTIONS(2259), 1, + sym__space, + STATE(6818), 1, sym_comment, - [246275] = 3, + [216342] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7599), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11292), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(6819), 1, sym_comment, - ACTIONS(11595), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246287] = 5, + [216358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12154), 1, + ACTIONS(11294), 1, anon_sym_RBRACK, - STATE(6896), 1, + STATE(6334), 1, aux_sym__multiple_types_repeat1, - STATE(7600), 1, + STATE(6820), 1, sym_comment, - [246303] = 5, + [216374] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12156), 1, + ACTIONS(11296), 1, anon_sym_RBRACK, - STATE(6897), 1, + STATE(6335), 1, aux_sym__multiple_types_repeat1, - STATE(7601), 1, - sym_comment, - [246319] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7602), 1, + STATE(6821), 1, sym_comment, - ACTIONS(10951), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246331] = 5, + [216390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12158), 1, + ACTIONS(11298), 1, anon_sym_RBRACK, - STATE(6898), 1, + STATE(6336), 1, aux_sym__multiple_types_repeat1, - STATE(7603), 1, - sym_comment, - [246347] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7604), 1, + STATE(6822), 1, sym_comment, - ACTIONS(11591), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246359] = 5, + [216406] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12160), 1, + ACTIONS(11300), 1, anon_sym_RBRACK, - STATE(6908), 1, + STATE(6337), 1, aux_sym__multiple_types_repeat1, - STATE(7605), 1, + STATE(6823), 1, sym_comment, - [246375] = 5, + [216422] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12162), 1, + ACTIONS(11302), 1, anon_sym_RBRACK, - STATE(6909), 1, + STATE(6338), 1, aux_sym__multiple_types_repeat1, - STATE(7606), 1, + STATE(6824), 1, sym_comment, - [246391] = 5, + [216438] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12164), 1, + ACTIONS(11304), 1, anon_sym_RBRACK, - STATE(6910), 1, + STATE(6339), 1, aux_sym__multiple_types_repeat1, - STATE(7607), 1, + STATE(6825), 1, sym_comment, - [246407] = 5, + [216454] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12166), 1, + ACTIONS(11306), 1, anon_sym_RBRACK, - STATE(6911), 1, + STATE(6340), 1, aux_sym__multiple_types_repeat1, - STATE(7608), 1, + STATE(6826), 1, + sym_comment, + [216470] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3876), 1, + sym__newline, + ACTIONS(11308), 1, + anon_sym_COLON, + STATE(1782), 1, + aux_sym_shebang_repeat1, + STATE(6827), 1, sym_comment, - [246423] = 5, + [216486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12168), 1, + ACTIONS(11310), 1, anon_sym_RBRACK, - STATE(6912), 1, + STATE(6341), 1, aux_sym__multiple_types_repeat1, - STATE(7609), 1, + STATE(6828), 1, sym_comment, - [246439] = 3, + [216502] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7610), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11312), 1, + anon_sym_RBRACK, + STATE(6829), 1, + sym_comment, + STATE(6946), 1, + aux_sym_val_binary_repeat1, + [216518] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6830), 1, sym_comment, - ACTIONS(11591), 3, + ACTIONS(10329), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [246451] = 5, - ACTIONS(3), 1, + [216530] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12170), 1, - anon_sym_RBRACK, - STATE(6913), 1, - aux_sym__multiple_types_repeat1, - STATE(7611), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + STATE(6831), 1, sym_comment, - [246467] = 5, + ACTIONS(1737), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [216544] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5885), 1, sym__entry_separator, - ACTIONS(12172), 1, + ACTIONS(11314), 1, anon_sym_RBRACK, - STATE(6914), 1, + STATE(2867), 1, aux_sym__multiple_types_repeat1, - STATE(7612), 1, + STATE(6832), 1, sym_comment, - [246483] = 3, + [216560] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7613), 1, + STATE(6833), 1, sym_comment, - ACTIONS(12174), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [246495] = 3, + ACTIONS(6149), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216572] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7614), 1, + STATE(6834), 1, sym_comment, - ACTIONS(10973), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246507] = 5, + ACTIONS(6149), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2376), 1, sym__entry_separator, - ACTIONS(12176), 1, + STATE(6835), 1, + sym_comment, + ACTIONS(2374), 2, anon_sym_RBRACK, - STATE(6915), 1, - aux_sym__multiple_types_repeat1, - STATE(7615), 1, + anon_sym_RBRACE, + [216598] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11316), 1, + anon_sym_RBRACK, + STATE(6836), 1, sym_comment, - [246523] = 3, + STATE(6840), 1, + aux_sym_val_binary_repeat1, + [216614] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7616), 1, + STATE(6837), 1, sym_comment, - ACTIONS(10937), 3, + ACTIONS(10512), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [246535] = 5, - ACTIONS(3), 1, + [216626] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__newline, - ACTIONS(2258), 1, - sym__space, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(7617), 1, + STATE(6838), 1, sym_comment, - [246551] = 4, + ACTIONS(6153), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1310), 1, - anon_sym_POUND_BANG, - ACTIONS(12178), 1, - sym__newline, - STATE(7618), 2, + ACTIONS(2311), 1, + anon_sym_RBRACE, + STATE(6839), 1, sym_comment, - aux_sym_shebang_repeat1, - [246565] = 3, + ACTIONS(2313), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216652] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7619), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11318), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(6840), 1, sym_comment, - ACTIONS(11595), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246577] = 5, + [216668] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12181), 1, + ACTIONS(11320), 1, anon_sym_RBRACK, - STATE(6924), 1, + STATE(6152), 1, aux_sym__multiple_types_repeat1, - STATE(7620), 1, + STATE(6841), 1, sym_comment, - [246593] = 3, - ACTIONS(251), 1, + [216684] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7621), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11322), 1, + anon_sym_RBRACK, + STATE(6348), 1, + aux_sym__multiple_types_repeat1, + STATE(6842), 1, sym_comment, - ACTIONS(11595), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246605] = 5, + [216700] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12183), 1, + ACTIONS(11324), 1, anon_sym_RBRACK, - STATE(6925), 1, + STATE(6349), 1, aux_sym__multiple_types_repeat1, - STATE(7622), 1, + STATE(6843), 1, sym_comment, - [246621] = 5, + [216716] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12185), 1, + ACTIONS(11326), 1, anon_sym_RBRACK, - STATE(6926), 1, + STATE(6350), 1, aux_sym__multiple_types_repeat1, - STATE(7623), 1, + STATE(6844), 1, sym_comment, - [246637] = 5, + [216732] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12187), 1, + ACTIONS(11328), 1, anon_sym_RBRACK, - STATE(6927), 1, + STATE(6351), 1, aux_sym__multiple_types_repeat1, - STATE(7624), 1, + STATE(6845), 1, sym_comment, - [246653] = 5, + [216748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12189), 1, + ACTIONS(11330), 1, anon_sym_RBRACK, - STATE(6928), 1, + STATE(6352), 1, aux_sym__multiple_types_repeat1, - STATE(7625), 1, + STATE(6846), 1, sym_comment, - [246669] = 3, - ACTIONS(251), 1, + [216764] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7626), 1, - sym_comment, - ACTIONS(11743), 3, - ts_builtin_sym_end, + ACTIONS(2241), 1, sym__newline, - anon_sym_SEMI, - [246681] = 5, + ACTIONS(2245), 1, + sym__space, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(6847), 1, + sym_comment, + [216780] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12191), 1, + ACTIONS(11332), 1, anon_sym_RBRACK, - STATE(6929), 1, + STATE(6353), 1, aux_sym__multiple_types_repeat1, - STATE(7627), 1, + STATE(6848), 1, sym_comment, - [246697] = 5, + [216796] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12193), 1, + ACTIONS(11334), 1, anon_sym_RBRACK, - STATE(6930), 1, + STATE(6354), 1, aux_sym__multiple_types_repeat1, - STATE(7628), 1, + STATE(6849), 1, sym_comment, - [246713] = 3, - ACTIONS(251), 1, + [216812] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7629), 1, + ACTIONS(2356), 1, + sym__entry_separator, + STATE(6850), 1, sym_comment, - ACTIONS(10951), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246725] = 5, + ACTIONS(2354), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216826] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12195), 1, + ACTIONS(11336), 1, anon_sym_RBRACK, - STATE(6931), 1, + STATE(6355), 1, aux_sym__multiple_types_repeat1, - STATE(7630), 1, + STATE(6851), 1, sym_comment, - [246741] = 5, - ACTIONS(3), 1, + [216842] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2272), 1, - sym__newline, - ACTIONS(2274), 1, - sym__space, - STATE(7631), 1, + ACTIONS(11338), 1, + anon_sym_PIPE, + ACTIONS(11341), 1, + anon_sym_EQ_GT, + STATE(6852), 2, sym_comment, - [246757] = 5, + aux_sym_match_pattern_repeat1, + [216856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__newline, - ACTIONS(2238), 1, - sym__space, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(7632), 1, + ACTIONS(10226), 1, + anon_sym_LPAREN, + STATE(6853), 1, sym_comment, - [246773] = 5, + ACTIONS(10228), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [216870] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(2285), 1, sym__entry_separator, - ACTIONS(12197), 1, + ACTIONS(11343), 1, anon_sym_RBRACE, - STATE(3126), 1, + STATE(565), 1, aux_sym__multiple_types_repeat1, - STATE(7633), 1, + STATE(6854), 1, sym_comment, - [246789] = 5, + [216886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(12199), 1, + ACTIONS(6065), 1, anon_sym_RBRACE, - STATE(3127), 1, + STATE(3001), 1, aux_sym__multiple_types_repeat1, - STATE(7634), 1, - sym_comment, - [246805] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7635), 1, - sym_comment, - ACTIONS(11791), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [246817] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(7636), 1, + STATE(6855), 1, sym_comment, - ACTIONS(2230), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [246831] = 5, + [216902] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7131), 1, - sym_block, - STATE(7637), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11345), 1, + anon_sym_RBRACK, + STATE(6856), 1, sym_comment, - [246847] = 5, + STATE(6857), 1, + aux_sym_val_binary_repeat1, + [216918] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(12201), 1, - anon_sym_GT2, - STATE(7638), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11347), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(6857), 1, sym_comment, - STATE(8249), 1, - sym_param_cmd, - [246863] = 5, + [216934] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1655), 1, anon_sym_LPAREN2, - ACTIONS(7625), 1, + ACTIONS(8921), 1, aux_sym__unquoted_in_record_token4, - STATE(7639), 1, + STATE(6858), 1, sym_comment, - STATE(8047), 1, + STATE(7359), 1, sym__expr_parenthesized_immediate, - [246879] = 5, + [216950] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12203), 1, + ACTIONS(11349), 1, anon_sym_RBRACK, - STATE(7256), 1, + STATE(6362), 1, aux_sym__multiple_types_repeat1, - STATE(7640), 1, + STATE(6859), 1, sym_comment, - [246895] = 5, + [216966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(2507), 1, sym__entry_separator, - ACTIONS(12205), 1, - anon_sym_RBRACK, - STATE(6660), 1, - aux_sym__multiple_types_repeat1, - STATE(7641), 1, + STATE(6860), 1, sym_comment, - [246911] = 5, + ACTIONS(2505), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216980] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12207), 1, + ACTIONS(11351), 1, anon_sym_RBRACK, - STATE(6663), 1, + STATE(6363), 1, aux_sym__multiple_types_repeat1, - STATE(7642), 1, + STATE(6861), 1, sym_comment, - [246927] = 5, + [216996] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12209), 1, - anon_sym_GT2, - STATE(5914), 1, + ACTIONS(11353), 1, + anon_sym_RBRACK, + STATE(6364), 1, aux_sym__multiple_types_repeat1, - STATE(7643), 1, + STATE(6862), 1, sym_comment, - [246943] = 5, + [217012] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12211), 1, - anon_sym_GT2, - STATE(5915), 1, + ACTIONS(11355), 1, + anon_sym_RBRACK, + STATE(6365), 1, aux_sym__multiple_types_repeat1, - STATE(7644), 1, + STATE(6863), 1, sym_comment, - [246959] = 3, + [217028] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7645), 1, + STATE(6864), 1, sym_comment, - ACTIONS(11623), 3, + ACTIONS(10210), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [246971] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(8378), 1, - anon_sym_EQ, - STATE(5369), 1, - sym_param_cmd, - STATE(7646), 1, - sym_comment, - [246987] = 4, + [217040] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7647), 1, - sym_comment, - ACTIONS(1687), 2, + ACTIONS(11357), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [247001] = 5, + STATE(6366), 1, + aux_sym__multiple_types_repeat1, + STATE(6865), 1, + sym_comment, + [217056] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + STATE(6866), 1, + sym_comment, + ACTIONS(1729), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217070] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12213), 1, + ACTIONS(11359), 1, anon_sym_RBRACK, - STATE(2990), 1, + STATE(6367), 1, aux_sym__multiple_types_repeat1, - STATE(7648), 1, + STATE(6867), 1, sym_comment, - [247017] = 5, + [217086] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12215), 1, + ACTIONS(11361), 1, anon_sym_RBRACK, - STATE(2991), 1, + STATE(6368), 1, aux_sym__multiple_types_repeat1, - STATE(7649), 1, + STATE(6868), 1, sym_comment, - [247033] = 3, + [217102] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7650), 1, - sym_comment, - ACTIONS(10951), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247045] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12217), 1, - anon_sym_RBRACK, - STATE(6979), 1, - aux_sym__multiple_types_repeat1, - STATE(7651), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(6869), 1, sym_comment, - [247061] = 5, + ACTIONS(2216), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217116] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12219), 1, + ACTIONS(11363), 1, anon_sym_RBRACK, - STATE(7049), 1, + STATE(6369), 1, aux_sym__multiple_types_repeat1, - STATE(7652), 1, - sym_comment, - [247077] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7653), 1, + STATE(6870), 1, sym_comment, - ACTIONS(10943), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247089] = 3, + [217132] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7654), 1, + STATE(6871), 1, sym_comment, - ACTIONS(10945), 3, + ACTIONS(10403), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [247101] = 5, + [217144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(12221), 1, - anon_sym_RBRACK, - STATE(7058), 1, + ACTIONS(6039), 1, + anon_sym_RBRACE, + STATE(2961), 1, aux_sym__multiple_types_repeat1, - STATE(7655), 1, + STATE(6872), 1, sym_comment, - [247117] = 5, + [217160] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12223), 1, - anon_sym_RBRACK, - STATE(7656), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_block, + STATE(6873), 1, sym_comment, - STATE(7724), 1, - aux_sym_val_binary_repeat1, - [247133] = 3, + [217176] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7657), 1, + STATE(6874), 1, sym_comment, - ACTIONS(11235), 3, + ACTIONS(10512), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [247145] = 5, + [217188] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2324), 1, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(12225), 1, + ACTIONS(6041), 1, anon_sym_RBRACE, - STATE(578), 1, + STATE(2962), 1, aux_sym__multiple_types_repeat1, - STATE(7658), 1, - sym_comment, - [247161] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12227), 1, - anon_sym_DQUOTE, - STATE(7659), 1, + STATE(6875), 1, sym_comment, - ACTIONS(12229), 2, - sym__escaped_str_content, - sym_escape_sequence, - [247175] = 3, + [217204] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7660), 1, - sym_comment, - ACTIONS(11731), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247187] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(7661), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11365), 1, + anon_sym_RBRACK, + STATE(6876), 1, sym_comment, - ACTIONS(2254), 2, - sym_identifier, - anon_sym_DOLLAR, - [247201] = 4, - ACTIONS(3), 1, + STATE(6877), 1, + aux_sym_val_binary_repeat1, + [217220] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12231), 1, - anon_sym_LPAREN, - STATE(7662), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11367), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(6877), 1, sym_comment, - ACTIONS(12233), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [247215] = 4, - ACTIONS(3), 1, + [217236] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(7663), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(6878), 1, sym_comment, - ACTIONS(1034), 2, - sym_identifier, - anon_sym_DOLLAR, - [247229] = 5, + ACTIONS(1802), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12235), 1, + ACTIONS(11369), 1, anon_sym_RBRACK, - STATE(3639), 1, + STATE(6376), 1, aux_sym__multiple_types_repeat1, - STATE(7664), 1, + STATE(6879), 1, sym_comment, - [247245] = 3, + [217266] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(7665), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + STATE(6880), 1, sym_comment, - ACTIONS(11021), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247257] = 5, + ACTIONS(1773), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12237), 1, - anon_sym_RBRACK, - STATE(3625), 1, + ACTIONS(11371), 1, + anon_sym_GT2, + STATE(5400), 1, aux_sym__multiple_types_repeat1, - STATE(7666), 1, + STATE(6881), 1, sym_comment, - [247273] = 4, + [217296] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12239), 1, - anon_sym_LPAREN, - STATE(7667), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11373), 1, + anon_sym_RBRACK, + STATE(6377), 1, + aux_sym__multiple_types_repeat1, + STATE(6882), 1, sym_comment, - ACTIONS(12241), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [247287] = 4, + [217312] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7668), 1, - sym_comment, - ACTIONS(5834), 2, + ACTIONS(11375), 1, anon_sym_RBRACK, - anon_sym_GT2, - [247301] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7669), 1, + STATE(6378), 1, + aux_sym__multiple_types_repeat1, + STATE(6883), 1, sym_comment, - ACTIONS(11237), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247313] = 5, + [217328] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12243), 1, + ACTIONS(11377), 1, anon_sym_RBRACK, - STATE(3643), 1, + STATE(6379), 1, aux_sym__multiple_types_repeat1, - STATE(7670), 1, - sym_comment, - [247329] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7671), 1, + STATE(6884), 1, sym_comment, - ACTIONS(11223), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247341] = 5, + [217344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12245), 1, + ACTIONS(11379), 1, anon_sym_RBRACK, - STATE(7075), 1, + STATE(6380), 1, aux_sym__multiple_types_repeat1, - STATE(7672), 1, + STATE(6885), 1, sym_comment, - [247357] = 3, + [217360] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7673), 1, + ACTIONS(4898), 1, + anon_sym_LBRACE, + ACTIONS(11381), 1, + anon_sym_EQ2, + ACTIONS(11383), 1, + sym_short_flag_identifier, + STATE(6886), 1, sym_comment, - ACTIONS(10865), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247369] = 5, + [217376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12247), 1, - anon_sym_COLON, - STATE(6029), 1, + ACTIONS(11385), 1, + anon_sym_GT2, + STATE(5413), 1, aux_sym__multiple_types_repeat1, - STATE(7674), 1, + STATE(6887), 1, sym_comment, - [247385] = 5, + [217392] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12249), 1, - anon_sym_COLON, - STATE(6033), 1, + ACTIONS(11387), 1, + anon_sym_RBRACK, + STATE(6622), 1, aux_sym__multiple_types_repeat1, - STATE(7675), 1, - sym_comment, - [247401] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2488), 1, - sym__entry_separator, - STATE(7676), 1, + STATE(6888), 1, sym_comment, - ACTIONS(2486), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [247415] = 4, + [217408] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5840), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7677), 1, - sym_comment, - ACTIONS(5838), 2, + ACTIONS(11389), 1, anon_sym_RBRACK, - anon_sym_GT2, - [247429] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7678), 1, - sym_comment, - ACTIONS(11457), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247441] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7679), 1, - sym_comment, - ACTIONS(11587), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247453] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7680), 1, - sym_comment, - ACTIONS(10975), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247465] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7681), 1, - sym_comment, - ACTIONS(11457), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247477] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7682), 1, - sym_comment, - ACTIONS(10971), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247489] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7683), 1, + STATE(6382), 1, + aux_sym__multiple_types_repeat1, + STATE(6889), 1, sym_comment, - ACTIONS(10971), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247501] = 4, + [217424] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1786), 1, aux_sym_unquoted_token2, - STATE(7684), 1, + STATE(6890), 1, sym_comment, - ACTIONS(2294), 2, + ACTIONS(1788), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [247515] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7685), 1, - sym_comment, - ACTIONS(11634), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247527] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7686), 1, - sym_comment, - ACTIONS(11025), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247539] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7687), 1, - sym_comment, - ACTIONS(11025), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247551] = 4, + [217438] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, + ACTIONS(6031), 1, sym__entry_separator, - STATE(7688), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, + ACTIONS(6067), 1, anon_sym_RBRACE, - [247565] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7689), 1, + STATE(2963), 1, + aux_sym__multiple_types_repeat1, + STATE(6891), 1, sym_comment, - ACTIONS(11033), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247577] = 5, + [217454] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12251), 1, + ACTIONS(11391), 1, anon_sym_RBRACK, - STATE(2969), 1, + STATE(6383), 1, aux_sym__multiple_types_repeat1, - STATE(7690), 1, + STATE(6892), 1, sym_comment, - [247593] = 5, + [217470] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10102), 1, + anon_sym_if, + ACTIONS(11393), 1, + anon_sym_EQ_GT, + STATE(6893), 1, + sym_comment, + STATE(7605), 1, + sym_match_guard, + [217486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2324), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12253), 1, - anon_sym_RBRACE, - STATE(579), 1, + ACTIONS(11395), 1, + anon_sym_GT2, + STATE(5377), 1, aux_sym__multiple_types_repeat1, - STATE(7691), 1, + STATE(6894), 1, sym_comment, - [247609] = 3, + [217502] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7692), 1, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(11397), 1, + anon_sym_GT2, + STATE(6895), 1, sym_comment, - ACTIONS(12255), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [247621] = 5, + STATE(7413), 1, + sym_param_cmd, + [217518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + sym__entry_separator, + STATE(6896), 1, + sym_comment, + ACTIONS(2158), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [217532] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12257), 1, + ACTIONS(11399), 1, anon_sym_GT2, - STATE(5863), 1, + STATE(5378), 1, aux_sym__multiple_types_repeat1, - STATE(7693), 1, - sym_comment, - [247637] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7694), 1, + STATE(6897), 1, sym_comment, - ACTIONS(11551), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247649] = 5, + [217548] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12259), 1, - anon_sym_GT2, - STATE(5864), 1, + ACTIONS(11401), 1, + anon_sym_RBRACK, + STATE(6389), 1, aux_sym__multiple_types_repeat1, - STATE(7695), 1, - sym_comment, - [247665] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(7696), 1, + STATE(6898), 1, sym_comment, - ACTIONS(1848), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [247679] = 3, - ACTIONS(251), 1, + [217564] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7697), 1, + ACTIONS(5885), 1, + sym__entry_separator, + ACTIONS(11403), 1, + anon_sym_RBRACK, + STATE(2840), 1, + aux_sym__multiple_types_repeat1, + STATE(6899), 1, sym_comment, - ACTIONS(11457), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247691] = 4, + [217580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5820), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7698), 1, - sym_comment, - ACTIONS(5818), 2, + ACTIONS(11405), 1, anon_sym_RBRACK, - anon_sym_GT2, - [247705] = 4, + STATE(6390), 1, + aux_sym__multiple_types_repeat1, + STATE(6900), 1, + sym_comment, + [217596] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7699), 1, - sym_comment, - ACTIONS(5822), 2, + ACTIONS(11407), 1, anon_sym_RBRACK, - anon_sym_GT2, - [247719] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7700), 1, + STATE(6391), 1, + aux_sym__multiple_types_repeat1, + STATE(6901), 1, sym_comment, - ACTIONS(11323), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247731] = 4, + [217612] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12261), 1, - sym__table_head_separator, - STATE(7701), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, + ACTIONS(6494), 1, sym__entry_separator, - [247745] = 4, + ACTIONS(11409), 1, + anon_sym_RBRACK, + STATE(6392), 1, + aux_sym__multiple_types_repeat1, + STATE(6902), 1, + sym_comment, + [217628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(6031), 1, sym__entry_separator, - STATE(7702), 1, - sym_comment, - ACTIONS(2359), 2, - anon_sym_RBRACK, + ACTIONS(11411), 1, anon_sym_RBRACE, - [247759] = 4, + STATE(2947), 1, + aux_sym__multiple_types_repeat1, + STATE(6903), 1, + sym_comment, + [217644] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1919), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7703), 1, - sym_comment, - ACTIONS(1917), 2, + ACTIONS(11413), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [247773] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_in2, - ACTIONS(12263), 1, - sym_long_flag_identifier, - ACTIONS(12265), 1, - anon_sym_EQ2, - STATE(7704), 1, + STATE(6393), 1, + aux_sym__multiple_types_repeat1, + STATE(6904), 1, sym_comment, - [247789] = 3, + [217660] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7705), 1, + STATE(6905), 1, sym_comment, - ACTIONS(10979), 3, + ACTIONS(10540), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [247801] = 4, - ACTIONS(251), 1, + [217672] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - STATE(7706), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11415), 1, + anon_sym_RBRACK, + STATE(6394), 1, + aux_sym__multiple_types_repeat1, + STATE(6906), 1, sym_comment, - ACTIONS(1699), 2, - sym_identifier, - anon_sym_DOLLAR, - [247815] = 3, - ACTIONS(251), 1, + [217688] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7707), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11417), 1, + anon_sym_RBRACK, + STATE(6395), 1, + aux_sym__multiple_types_repeat1, + STATE(6907), 1, sym_comment, - ACTIONS(10905), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247827] = 3, - ACTIONS(251), 1, + [217704] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7708), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11419), 1, + anon_sym_RBRACK, + STATE(6396), 1, + aux_sym__multiple_types_repeat1, + STATE(6908), 1, sym_comment, - ACTIONS(11457), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [247839] = 4, + [217720] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2365), 1, - sym__entry_separator, - STATE(7709), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + ACTIONS(5532), 1, + aux_sym__unquoted_in_list_token4, + STATE(6909), 1, sym_comment, - ACTIONS(2363), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [247853] = 5, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + [217736] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(6436), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7056), 1, + STATE(6307), 1, sym_block, - STATE(7710), 1, + STATE(6910), 1, sym_comment, - [247869] = 4, + [217752] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(9143), 1, sym__entry_separator, - STATE(7711), 1, + ACTIONS(11421), 1, + anon_sym_GT2, + STATE(5385), 1, + aux_sym__multiple_types_repeat1, + STATE(6911), 1, sym_comment, - ACTIONS(2367), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [247883] = 4, + [217768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(5885), 1, sym__entry_separator, - STATE(7712), 1, - sym_comment, - ACTIONS(1925), 2, + ACTIONS(11423), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [247897] = 5, + STATE(2854), 1, + aux_sym__multiple_types_repeat1, + STATE(6912), 1, + sym_comment, + [217784] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12267), 1, - anon_sym_GT2, - STATE(5869), 1, + ACTIONS(11425), 1, + anon_sym_RBRACK, + STATE(6519), 1, aux_sym__multiple_types_repeat1, - STATE(7713), 1, + STATE(6913), 1, sym_comment, - [247913] = 5, + [217800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12269), 1, + ACTIONS(11427), 1, anon_sym_GT2, - STATE(5870), 1, + STATE(5386), 1, aux_sym__multiple_types_repeat1, - STATE(7714), 1, + STATE(6914), 1, sym_comment, - [247929] = 5, - ACTIONS(251), 1, + [217816] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7131), 1, - sym_block, - STATE(7715), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11429), 1, + anon_sym_RBRACK, + STATE(6403), 1, + aux_sym__multiple_types_repeat1, + STATE(6915), 1, sym_comment, - [247945] = 4, + [217832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12271), 1, - sym__table_head_separator, - STATE(7716), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4890), 1, + aux_sym_unquoted_token4, + STATE(6916), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [247959] = 5, + STATE(7360), 1, + sym__expr_parenthesized_immediate, + [217848] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12273), 1, - anon_sym_GT2, - STATE(5873), 1, + ACTIONS(11431), 1, + anon_sym_RBRACK, + STATE(6404), 1, aux_sym__multiple_types_repeat1, - STATE(7717), 1, + STATE(6917), 1, sym_comment, - [247975] = 4, + [217864] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7718), 1, - sym_comment, - ACTIONS(1933), 2, + ACTIONS(11433), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [247989] = 5, - ACTIONS(251), 1, + STATE(6405), 1, + aux_sym__multiple_types_repeat1, + STATE(6918), 1, + sym_comment, + [217880] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5005), 1, - sym_block, - STATE(7719), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11435), 1, + anon_sym_RBRACK, + STATE(6406), 1, + aux_sym__multiple_types_repeat1, + STATE(6919), 1, sym_comment, - [248005] = 5, + [217896] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12275), 1, - anon_sym_GT2, - STATE(5874), 1, + ACTIONS(11437), 1, + anon_sym_RBRACK, + STATE(6407), 1, aux_sym__multiple_types_repeat1, - STATE(7720), 1, + STATE(6920), 1, sym_comment, - [248021] = 5, + [217912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12277), 1, + ACTIONS(11439), 1, anon_sym_GT2, - STATE(5968), 1, + STATE(5390), 1, aux_sym__multiple_types_repeat1, - STATE(7721), 1, + STATE(6921), 1, sym_comment, - [248037] = 4, - ACTIONS(251), 1, + [217928] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12281), 1, - anon_sym_COMMA, - STATE(7722), 1, + ACTIONS(2372), 1, + sym__entry_separator, + STATE(6922), 1, sym_comment, - ACTIONS(12279), 2, + ACTIONS(2370), 2, anon_sym_RBRACK, - sym_hex_digit, - [248051] = 5, + anon_sym_RBRACE, + [217942] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(6298), 1, - anon_sym_RBRACE, - STATE(3130), 1, - aux_sym__multiple_types_repeat1, - STATE(7723), 1, - sym_comment, - [248067] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12283), 1, + ACTIONS(11441), 1, anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7724), 1, + STATE(6408), 1, + aux_sym__multiple_types_repeat1, + STATE(6923), 1, sym_comment, - [248083] = 5, + [217958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12285), 1, + ACTIONS(11443), 1, anon_sym_RBRACK, - STATE(6937), 1, + STATE(6409), 1, aux_sym__multiple_types_repeat1, - STATE(7725), 1, + STATE(6924), 1, sym_comment, - [248099] = 5, + [217974] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(6300), 1, - anon_sym_RBRACE, - STATE(3131), 1, + ACTIONS(11445), 1, + anon_sym_GT2, + STATE(5391), 1, aux_sym__multiple_types_repeat1, - STATE(7726), 1, + STATE(6925), 1, sym_comment, - [248115] = 5, + [217990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12287), 1, - anon_sym_GT2, - STATE(5875), 1, + ACTIONS(11447), 1, + anon_sym_RBRACK, + STATE(6410), 1, aux_sym__multiple_types_repeat1, - STATE(7727), 1, + STATE(6926), 1, sym_comment, - [248131] = 5, + [218006] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12289), 1, - anon_sym_GT2, - STATE(5876), 1, + ACTIONS(11449), 1, + anon_sym_RBRACK, + STATE(6520), 1, aux_sym__multiple_types_repeat1, - STATE(7728), 1, + STATE(6927), 1, sym_comment, - [248147] = 4, + [218022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12291), 1, - sym__table_head_separator, - STATE(7729), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + ACTIONS(5917), 1, + anon_sym_EQ_GT, + ACTIONS(5922), 1, + anon_sym_PIPE, + STATE(6928), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [248161] = 5, + [218038] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - sym__space, - ACTIONS(5114), 1, - sym__newline, - ACTIONS(12293), 1, - anon_sym_EQ2, - STATE(7730), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11451), 1, + anon_sym_GT2, + STATE(5392), 1, + aux_sym__multiple_types_repeat1, + STATE(6929), 1, sym_comment, - [248177] = 5, - ACTIONS(251), 1, + [218054] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5005), 1, - sym_block, - STATE(7731), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11453), 1, + anon_sym_RBRACK, + STATE(6521), 1, + aux_sym__multiple_types_repeat1, + STATE(6930), 1, sym_comment, - [248193] = 5, - ACTIONS(251), 1, + [218070] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(12295), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11455), 1, anon_sym_GT2, - STATE(7732), 1, + STATE(5393), 1, + aux_sym__multiple_types_repeat1, + STATE(6931), 1, sym_comment, - STATE(8475), 1, - sym_param_cmd, - [248209] = 3, + [218086] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7733), 1, + STATE(6932), 1, sym_comment, - ACTIONS(11021), 3, + ACTIONS(10512), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248221] = 5, + [218098] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7587), 1, - sym_val_list, - STATE(7734), 1, + STATE(6933), 1, sym_comment, - STATE(7767), 1, - aux_sym_val_table_repeat1, - [248237] = 5, + ACTIONS(11457), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218110] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11459), 1, + anon_sym_RBRACK, + STATE(6934), 1, + sym_comment, + STATE(7041), 1, + aux_sym_val_binary_repeat1, + [218126] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12297), 1, - anon_sym_RBRACK, - STATE(2992), 1, + ACTIONS(11461), 1, + anon_sym_GT2, + STATE(5306), 1, aux_sym__multiple_types_repeat1, - STATE(7735), 1, + STATE(6935), 1, sym_comment, - [248253] = 3, + [218142] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7736), 1, + STATE(6936), 1, sym_comment, - ACTIONS(11405), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [248265] = 5, + ACTIONS(5915), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218154] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6937), 1, + sym_comment, + ACTIONS(6165), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218166] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - ACTIONS(12299), 1, - sym__space, - STATE(7737), 1, + ACTIONS(11463), 1, + anon_sym_DQUOTE, + STATE(6938), 1, sym_comment, - [248281] = 3, + ACTIONS(11465), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218180] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7738), 1, + STATE(6939), 1, + sym_comment, + ACTIONS(6169), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218192] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6940), 1, sym_comment, - ACTIONS(10909), 3, + ACTIONS(10786), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248293] = 5, - ACTIONS(3), 1, + [218204] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12301), 1, - anon_sym_RBRACK, - STATE(6790), 1, - aux_sym__multiple_types_repeat1, - STATE(7739), 1, + STATE(6941), 1, sym_comment, - [248309] = 3, + ACTIONS(10804), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218216] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7740), 1, + STATE(6942), 1, sym_comment, - ACTIONS(11389), 3, + ACTIONS(10832), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248321] = 3, + [218228] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7741), 1, + STATE(6943), 1, sym_comment, - ACTIONS(11693), 3, + ACTIONS(10832), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248333] = 5, + [218240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12303), 1, - anon_sym_RBRACK, - STATE(6794), 1, - aux_sym__multiple_types_repeat1, - STATE(7742), 1, + ACTIONS(11467), 1, + anon_sym_LPAREN, + STATE(6944), 1, sym_comment, - [248349] = 5, + ACTIONS(11469), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [218254] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7652), 1, - sym_val_list, - STATE(7743), 1, + STATE(6945), 1, sym_comment, - STATE(7767), 1, - aux_sym_val_table_repeat1, - [248365] = 5, - ACTIONS(3), 1, + ACTIONS(5922), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218266] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12305), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11471), 1, anon_sym_RBRACK, - STATE(6799), 1, - aux_sym__multiple_types_repeat1, - STATE(7744), 1, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(6946), 1, sym_comment, - [248381] = 5, + [218282] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12307), 1, - anon_sym_RBRACE, - STATE(3081), 1, + ACTIONS(11473), 1, + anon_sym_RBRACK, + STATE(6211), 1, aux_sym__multiple_types_repeat1, - STATE(7745), 1, + STATE(6947), 1, sym_comment, - [248397] = 5, + [218298] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1559), 1, - anon_sym_SEMI, - ACTIONS(3919), 1, - sym__newline, - STATE(1800), 1, - aux_sym_shebang_repeat1, - STATE(7746), 1, + STATE(6948), 1, sym_comment, - [248413] = 3, + ACTIONS(11475), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218310] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7747), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(1773), 1, + anon_sym_LBRACE, + ACTIONS(11477), 1, + aux_sym__immediate_decimal_token2, + STATE(6949), 1, sym_comment, - ACTIONS(11473), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [248425] = 5, - ACTIONS(3), 1, + [218326] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12309), 1, - anon_sym_RBRACK, - STATE(7023), 1, - aux_sym__multiple_types_repeat1, - STATE(7748), 1, + ACTIONS(1737), 1, + anon_sym_LBRACE, + ACTIONS(9605), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11479), 1, + anon_sym_DOT, + STATE(6950), 1, sym_comment, - [248441] = 4, + [218342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2494), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7749), 1, - sym_comment, - ACTIONS(2492), 2, + ACTIONS(11481), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [248455] = 3, + STATE(6095), 1, + aux_sym__multiple_types_repeat1, + STATE(6951), 1, + sym_comment, + [218358] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7750), 1, + STATE(6952), 1, sym_comment, - ACTIONS(11654), 3, + ACTIONS(10516), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248467] = 4, + [218370] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2043), 1, + ACTIONS(5609), 1, sym__entry_separator, - STATE(7751), 1, + STATE(6953), 1, sym_comment, - ACTIONS(2041), 2, + ACTIONS(5607), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [248481] = 3, - ACTIONS(251), 1, + anon_sym_GT2, + [218384] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7752), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4441), 1, + aux_sym_unquoted_token4, + STATE(6954), 1, sym_comment, - ACTIONS(11721), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [248493] = 5, + STATE(7289), 1, + sym__expr_parenthesized_immediate, + [218400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12311), 1, + ACTIONS(11483), 1, anon_sym_GT2, - STATE(5979), 1, + STATE(5312), 1, aux_sym__multiple_types_repeat1, - STATE(7753), 1, - sym_comment, - [248509] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7754), 1, + STATE(6955), 1, sym_comment, - ACTIONS(6370), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [248521] = 5, - ACTIONS(251), 1, + [218416] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7739), 1, - sym_val_list, - STATE(7755), 1, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(11485), 1, + anon_sym_RBRACE, + STATE(2950), 1, + aux_sym__multiple_types_repeat1, + STATE(6956), 1, sym_comment, - STATE(7767), 1, - aux_sym_val_table_repeat1, - [248537] = 5, + [218432] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7423), 1, - sym_val_list, - STATE(7756), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(1737), 1, + anon_sym_LBRACE, + ACTIONS(10940), 1, + aux_sym__immediate_decimal_token2, + STATE(6957), 1, sym_comment, - STATE(7767), 1, - aux_sym_val_table_repeat1, - [248553] = 5, - ACTIONS(251), 1, + [218448] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7744), 1, - sym_val_list, - STATE(7757), 1, + ACTIONS(5613), 1, + sym__entry_separator, + STATE(6958), 1, sym_comment, - STATE(7767), 1, - aux_sym_val_table_repeat1, - [248569] = 3, + ACTIONS(5611), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [218462] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7758), 1, + STATE(6959), 1, sym_comment, - ACTIONS(6374), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [248581] = 5, + ACTIONS(10235), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218474] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12313), 1, + ACTIONS(11487), 1, anon_sym_RBRACK, - STATE(7169), 1, + STATE(3481), 1, aux_sym__multiple_types_repeat1, - STATE(7759), 1, + STATE(6960), 1, sym_comment, - [248597] = 3, + [218490] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7760), 1, + STATE(6961), 1, sym_comment, - ACTIONS(12315), 3, + ACTIONS(10239), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [248609] = 3, + [218502] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7761), 1, + STATE(6962), 1, sym_comment, - ACTIONS(12317), 3, + ACTIONS(10247), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [248621] = 3, + [218514] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7762), 1, + STATE(6963), 1, sym_comment, - ACTIONS(11662), 3, + ACTIONS(10986), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248633] = 3, + [218526] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7763), 1, + STATE(6964), 1, sym_comment, - ACTIONS(11723), 3, + ACTIONS(10490), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248645] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2373), 1, - sym__entry_separator, - STATE(7764), 1, - sym_comment, - ACTIONS(2371), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [248659] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - sym__space, - STATE(7765), 1, - sym_comment, - ACTIONS(2242), 2, - sym__newline, - aux_sym_unquoted_token4, - [248673] = 5, + [218538] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7766), 1, + STATE(6965), 1, sym_comment, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7896), 1, - sym_val_list, - [248689] = 4, + ACTIONS(10241), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218550] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12319), 1, - anon_sym_LBRACK, - STATE(8009), 1, - sym_val_list, - STATE(7767), 2, - sym_comment, - aux_sym_val_table_repeat1, - [248703] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5882), 1, - sym__entry_separator, - ACTIONS(12322), 1, - anon_sym_RBRACK, - STATE(2803), 1, - aux_sym__multiple_types_repeat1, - STATE(7768), 1, + ACTIONS(4850), 1, + anon_sym_LBRACE, + ACTIONS(11489), 1, + sym_long_flag_identifier, + ACTIONS(11491), 1, + anon_sym_EQ2, + STATE(6966), 1, sym_comment, - [248719] = 4, + [218566] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - sym__entry_separator, - STATE(7769), 1, + ACTIONS(11493), 1, + sym__table_head_separator, + STATE(6967), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [248733] = 4, + sym__entry_separator, + [218580] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1939), 1, sym__entry_separator, - STATE(7770), 1, + STATE(6968), 1, sym_comment, ACTIONS(1937), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [248747] = 5, - ACTIONS(3), 1, + [218594] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(12324), 1, - anon_sym_RBRACK, - STATE(2983), 1, - aux_sym__multiple_types_repeat1, - STATE(7771), 1, + STATE(6969), 1, sym_comment, - [248763] = 4, + ACTIONS(10253), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(2483), 1, sym__entry_separator, - STATE(7772), 1, + STATE(6970), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2481), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [248777] = 5, - ACTIONS(3), 1, + [218620] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12326), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11495), 1, anon_sym_RBRACK, - STATE(7226), 1, - aux_sym__multiple_types_repeat1, - STATE(7773), 1, + STATE(6971), 1, sym_comment, - [248793] = 3, + STATE(6992), 1, + aux_sym_val_binary_repeat1, + [218636] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7774), 1, + STATE(6972), 1, sym_comment, - ACTIONS(11666), 3, + ACTIONS(11030), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248805] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(8340), 1, - anon_sym_EQ, - STATE(5432), 1, - sym_param_cmd, - STATE(7775), 1, - sym_comment, - [248821] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5029), 1, - anon_sym_in2, - ACTIONS(12328), 1, - anon_sym_EQ2, - ACTIONS(12330), 1, - sym_short_flag_identifier, - STATE(7776), 1, - sym_comment, - [248837] = 3, + [218648] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7777), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(6252), 1, + sym_block, + STATE(6973), 1, sym_comment, - ACTIONS(11229), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [248849] = 3, - ACTIONS(251), 1, + [218664] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7778), 1, + ACTIONS(2121), 1, + sym__entry_separator, + STATE(6974), 1, sym_comment, - ACTIONS(6332), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [248861] = 5, + ACTIONS(2115), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218678] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(6213), 1, anon_sym_LBRACE, - ACTIONS(12332), 1, - sym_long_flag_identifier, - ACTIONS(12334), 1, - anon_sym_EQ2, - STATE(7779), 1, + STATE(6252), 1, + sym_block, + STATE(6975), 1, sym_comment, - [248877] = 3, + [218694] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7780), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(6307), 1, + sym_block, + STATE(6976), 1, sym_comment, - ACTIONS(10911), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [248889] = 5, + [218710] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(2380), 1, sym__entry_separator, - ACTIONS(12336), 1, - anon_sym_RBRACK, - STATE(2867), 1, - aux_sym__multiple_types_repeat1, - STATE(7781), 1, + STATE(6977), 1, sym_comment, - [248905] = 4, + ACTIONS(2378), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218724] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5844), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7782), 1, - sym_comment, - ACTIONS(5842), 2, + ACTIONS(11497), 1, anon_sym_RBRACK, - anon_sym_GT2, - [248919] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6491), 1, - anon_sym_AT, - ACTIONS(8340), 1, - anon_sym_EQ, - STATE(5434), 1, - sym_param_cmd, - STATE(7783), 1, - sym_comment, - [248935] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12338), 1, - anon_sym_EQ2, - STATE(7784), 1, + STATE(6306), 1, + aux_sym__multiple_types_repeat1, + STATE(6978), 1, sym_comment, - ACTIONS(5130), 2, - sym_identifier, - anon_sym_DOLLAR, - [248949] = 3, + [218740] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7785), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_block, + STATE(6979), 1, sym_comment, - ACTIONS(12340), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [248961] = 5, + [218756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(1991), 1, sym__entry_separator, - ACTIONS(12342), 1, + STATE(6980), 1, + sym_comment, + ACTIONS(1989), 2, anon_sym_RBRACK, - STATE(2804), 1, - aux_sym__multiple_types_repeat1, - STATE(7786), 1, + anon_sym_RBRACE, + [218770] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6623), 1, + sym_val_list, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6981), 1, sym_comment, - [248977] = 3, + [218786] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7787), 1, + STATE(6982), 1, sym_comment, - ACTIONS(11579), 3, + ACTIONS(10626), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [248989] = 4, + [218798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2530), 1, + ACTIONS(1999), 1, sym__entry_separator, - STATE(7788), 1, + STATE(6983), 1, sym_comment, - ACTIONS(2528), 2, + ACTIONS(1997), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [249003] = 5, + [218812] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - ACTIONS(12344), 1, - anon_sym_GT2, - STATE(5983), 1, - aux_sym__multiple_types_repeat1, - STATE(7789), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(7124), 1, + aux_sym_unquoted_token4, + STATE(6984), 1, sym_comment, - [249019] = 5, - ACTIONS(251), 1, + STATE(7291), 1, + sym__expr_parenthesized_immediate, + [218828] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12346), 1, + ACTIONS(5736), 1, + sym__entry_separator, + ACTIONS(11499), 1, anon_sym_RBRACK, - STATE(7790), 1, + STATE(2727), 1, + aux_sym__multiple_types_repeat1, + STATE(6985), 1, sym_comment, - STATE(7804), 1, - aux_sym_val_binary_repeat1, - [249035] = 4, + [218844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12348), 1, + ACTIONS(11501), 1, sym__table_head_separator, - STATE(7791), 1, + STATE(6986), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [249049] = 4, - ACTIONS(3), 1, + [218858] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12350), 1, - sym__table_head_separator, - STATE(7792), 1, + STATE(6987), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [249063] = 4, + ACTIONS(11503), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [218870] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12352), 1, - anon_sym_PIPE, - ACTIONS(12355), 1, - anon_sym_EQ_GT, - STATE(7793), 2, + STATE(6988), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [249077] = 5, + ACTIONS(10920), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218882] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - sym__newline, - ACTIONS(1699), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + ACTIONS(11505), 1, sym__space, - ACTIONS(7487), 1, - aux_sym_unquoted_token2, - STATE(7794), 1, + STATE(6989), 1, sym_comment, - [249093] = 5, - ACTIONS(251), 1, + [218898] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7590), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7795), 1, + ACTIONS(2003), 1, + sym__entry_separator, + STATE(6990), 1, + sym_comment, + ACTIONS(2001), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218912] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(7045), 1, + aux_sym_unquoted_token4, + STATE(6991), 1, sym_comment, - [249109] = 5, + STATE(7280), 1, + sym__expr_parenthesized_immediate, + [218928] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7640), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7796), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11507), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(6992), 1, sym_comment, - [249125] = 5, + [218944] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7642), 1, + STATE(6762), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7797), 1, + STATE(6993), 1, sym_comment, - [249141] = 5, + [218960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(6248), 1, + ACTIONS(6047), 1, anon_sym_RBRACE, - STATE(3125), 1, + STATE(2966), 1, aux_sym__multiple_types_repeat1, - STATE(7798), 1, - sym_comment, - [249157] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(7487), 1, - aux_sym_unquoted_token4, - STATE(7799), 1, + STATE(6994), 1, sym_comment, - STATE(8102), 1, - sym__expr_parenthesized_immediate, - [249173] = 5, + [218976] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7672), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7800), 1, + STATE(6913), 1, + sym_val_list, + STATE(6995), 1, sym_comment, - [249189] = 5, + [218992] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10783), 1, - anon_sym_PIPE, - ACTIONS(12357), 1, - anon_sym_EQ_GT, - STATE(7793), 1, - aux_sym_match_pattern_repeat1, - STATE(7801), 1, + STATE(6996), 1, + sym_comment, + ACTIONS(11032), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219004] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6930), 1, + sym_val_list, + STATE(6997), 1, sym_comment, - [249205] = 5, + [219020] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(6273), 1, + ACTIONS(6049), 1, anon_sym_RBRACE, - STATE(3083), 1, + STATE(2967), 1, aux_sym__multiple_types_repeat1, - STATE(7802), 1, - sym_comment, - [249221] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_PIPE, - STATE(7803), 1, + STATE(6998), 1, sym_comment, - ACTIONS(2242), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [249235] = 5, + [219036] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12359), 1, - anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7804), 1, - sym_comment, - [249251] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(7805), 1, + STATE(6999), 1, sym_comment, - ACTIONS(2272), 2, - sym_identifier, - anon_sym_DOLLAR, - [249265] = 5, + ACTIONS(10475), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219048] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7759), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7806), 1, + STATE(7000), 1, sym_comment, - [249281] = 5, + STATE(7004), 1, + sym_val_list, + [219064] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12361), 1, + ACTIONS(11509), 1, anon_sym_RBRACK, - STATE(6819), 1, + STATE(6187), 1, aux_sym__multiple_types_repeat1, - STATE(7807), 1, + STATE(7001), 1, + sym_comment, + [219080] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1000), 1, + sym__space, + ACTIONS(1004), 1, + sym__newline, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(7002), 1, sym_comment, - [249297] = 5, + [219096] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(12363), 1, - anon_sym_EQ2, - ACTIONS(12365), 1, - sym_short_flag_identifier, - STATE(7808), 1, + STATE(7003), 1, sym_comment, - [249313] = 5, + ACTIONS(10926), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_RBRACK, - ACTIONS(1699), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9330), 1, - aux_sym__unquoted_in_list_token2, - STATE(7809), 1, + ACTIONS(11511), 1, + anon_sym_RBRACK, + STATE(6541), 1, + aux_sym__multiple_types_repeat1, + STATE(7004), 1, sym_comment, - [249329] = 5, - ACTIONS(251), 1, + [219124] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(1781), 1, - anon_sym_LBRACE, - ACTIONS(11717), 1, - aux_sym__immediate_decimal_token2, - STATE(7810), 1, + ACTIONS(11513), 1, + sym__table_head_separator, + STATE(7005), 1, sym_comment, - [249345] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [219138] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1655), 1, anon_sym_LPAREN2, - ACTIONS(1701), 1, + ACTIONS(1667), 1, aux_sym__unquoted_in_record_token4, - STATE(7811), 1, + STATE(7006), 1, sym_comment, - STATE(8112), 1, + STATE(7300), 1, sym__expr_parenthesized_immediate, - [249361] = 3, + [219154] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7812), 1, + STATE(7007), 1, sym_comment, - ACTIONS(10929), 3, + ACTIONS(10331), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [249373] = 5, + [219166] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7008), 1, + sym_comment, + ACTIONS(11515), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219178] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12367), 1, + ACTIONS(11517), 1, anon_sym_RBRACK, - STATE(6823), 1, + STATE(6188), 1, aux_sym__multiple_types_repeat1, - STATE(7813), 1, + STATE(7009), 1, sym_comment, - [249389] = 5, + [219194] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5736), 1, sym__entry_separator, - ACTIONS(12369), 1, + ACTIONS(11519), 1, anon_sym_RBRACK, - STATE(6824), 1, + STATE(2736), 1, aux_sym__multiple_types_repeat1, - STATE(7814), 1, + STATE(7010), 1, sym_comment, - [249405] = 5, + [219210] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12371), 1, + ACTIONS(11521), 1, anon_sym_RBRACK, - STATE(6828), 1, + STATE(6189), 1, aux_sym__multiple_types_repeat1, - STATE(7815), 1, - sym_comment, - [249421] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12373), 1, - sym__table_head_separator, - STATE(7816), 1, + STATE(7011), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [249435] = 5, + [219226] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12375), 1, + ACTIONS(11523), 1, anon_sym_RBRACK, - STATE(6829), 1, + STATE(6190), 1, aux_sym__multiple_types_repeat1, - STATE(7817), 1, + STATE(7012), 1, sym_comment, - [249451] = 4, + [219242] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12377), 1, - sym__table_head_separator, - STATE(7818), 1, + ACTIONS(4987), 1, + sym__space, + ACTIONS(4989), 1, + sym__newline, + ACTIONS(11525), 1, + anon_sym_EQ2, + STATE(7013), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [249465] = 5, + [219258] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12379), 1, - anon_sym_RBRACK, - STATE(6839), 1, + ACTIONS(11527), 1, + anon_sym_COLON, + STATE(5435), 1, aux_sym__multiple_types_repeat1, - STATE(7819), 1, + STATE(7014), 1, sym_comment, - [249481] = 5, + [219274] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12381), 1, - anon_sym_RBRACK, - STATE(6842), 1, + ACTIONS(11529), 1, + anon_sym_COLON, + STATE(5437), 1, aux_sym__multiple_types_repeat1, - STATE(7820), 1, + STATE(7015), 1, sym_comment, - [249497] = 5, + [219290] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7814), 1, - sym_val_list, - STATE(7821), 1, + STATE(7016), 1, sym_comment, - [249513] = 5, - ACTIONS(251), 1, + ACTIONS(960), 3, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [219302] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1959), 1, + sym__entry_separator, + STATE(7017), 1, + sym_comment, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219316] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7817), 1, - sym_val_list, - STATE(7822), 1, + ACTIONS(2348), 1, + sym__entry_separator, + STATE(7018), 1, sym_comment, - [249529] = 5, + ACTIONS(2346), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219330] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7820), 1, - sym_val_list, - STATE(7823), 1, + STATE(7019), 1, sym_comment, - [249545] = 5, + ACTIONS(11531), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219342] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7824), 1, + STATE(7020), 1, sym_comment, - STATE(7827), 1, - sym_val_list, - [249561] = 4, + ACTIONS(11533), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219354] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2476), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(7825), 1, - sym_comment, - ACTIONS(2474), 2, + ACTIONS(11535), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [249575] = 4, + STATE(6191), 1, + aux_sym__multiple_types_repeat1, + STATE(7021), 1, + sym_comment, + [219370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12383), 1, - sym__table_head_separator, - STATE(7826), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, + ACTIONS(6494), 1, sym__entry_separator, - [249589] = 5, + ACTIONS(11537), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym__multiple_types_repeat1, + STATE(7022), 1, + sym_comment, + [219386] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(12385), 1, + ACTIONS(11539), 1, anon_sym_RBRACK, - STATE(6844), 1, + STATE(6193), 1, aux_sym__multiple_types_repeat1, - STATE(7827), 1, + STATE(7023), 1, sym_comment, - [249605] = 4, + [219402] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2384), 1, sym__entry_separator, - STATE(7828), 1, + STATE(7024), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2382), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [249619] = 4, + [219416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12387), 1, + ACTIONS(11541), 1, sym__table_head_separator, - STATE(7829), 1, + STATE(7025), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [249633] = 5, + [219430] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7830), 1, + STATE(7026), 1, sym_comment, - STATE(7969), 1, - sym_val_list, - [249649] = 5, + ACTIONS(978), 3, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [219442] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7831), 1, + STATE(7027), 1, sym_comment, - STATE(7972), 1, - sym_val_list, - [249665] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5130), 1, - sym__space, - ACTIONS(5132), 1, + ACTIONS(10990), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(12389), 1, - anon_sym_EQ2, - STATE(7832), 1, - sym_comment, - [249681] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7833), 1, - sym_comment, - STATE(7975), 1, - sym_val_list, - [249697] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7834), 1, - sym_comment, - STATE(7976), 1, - sym_val_list, - [249713] = 4, + anon_sym_SEMI, + [219454] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12391), 1, + ACTIONS(11543), 1, sym__table_head_separator, - STATE(7835), 1, + STATE(7028), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [249727] = 5, + [219468] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2324), 1, + ACTIONS(2352), 1, sym__entry_separator, - ACTIONS(2344), 1, - anon_sym_RBRACE, - STATE(596), 1, - aux_sym__multiple_types_repeat1, - STATE(7836), 1, - sym_comment, - [249743] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12393), 1, - sym__table_head_separator, - STATE(7837), 1, + STATE(7029), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(2350), 2, anon_sym_RBRACK, - sym__entry_separator, - [249757] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [219482] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(7838), 1, + STATE(7030), 1, sym_comment, - ACTIONS(2234), 2, - sym_identifier, - anon_sym_DOLLAR, - [249771] = 4, + ACTIONS(11545), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2484), 1, - sym__entry_separator, - STATE(7839), 1, + ACTIONS(1264), 1, + anon_sym_POUND_BANG, + ACTIONS(11547), 1, + sym__newline, + STATE(7031), 2, sym_comment, - ACTIONS(2482), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [249785] = 5, + aux_sym_shebang_repeat1, + [219508] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7329), 1, + STATE(6641), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7840), 1, + STATE(7032), 1, sym_comment, - [249801] = 5, + [219524] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7332), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7841), 1, - sym_comment, - [249817] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(7842), 1, + STATE(7033), 1, sym_comment, - ACTIONS(1957), 3, - anon_sym_RBRACK, - sym__entry_separator, + ACTIONS(974), 3, + anon_sym_QMARK2, sym__table_head_separator, - [249829] = 5, + anon_sym_DOT2, + [219536] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7335), 1, + STATE(6753), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7843), 1, + STATE(7034), 1, + sym_comment, + [219552] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + sym__entry_separator, + STATE(7035), 1, sym_comment, - [249845] = 5, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219566] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7338), 1, + STATE(6759), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7844), 1, - sym_comment, - [249861] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12395), 1, - sym__table_head_separator, - STATE(7845), 1, + STATE(7036), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [249875] = 5, + [219582] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(6304), 1, - anon_sym_RBRACE, - STATE(3133), 1, + ACTIONS(11550), 1, + anon_sym_RBRACK, + STATE(6194), 1, aux_sym__multiple_types_repeat1, - STATE(7846), 1, - sym_comment, - [249891] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12397), 1, - sym__table_head_separator, - STATE(7847), 1, + STATE(7037), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [249905] = 5, + [219598] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(6306), 1, - anon_sym_RBRACE, - STATE(3134), 1, + ACTIONS(11552), 1, + anon_sym_GT2, + STATE(5412), 1, aux_sym__multiple_types_repeat1, - STATE(7848), 1, + STATE(7038), 1, sym_comment, - [249921] = 5, + [219614] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7354), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7849), 1, - sym_comment, - [249937] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7357), 1, + STATE(6841), 1, sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7850), 1, + STATE(7039), 1, sym_comment, - [249953] = 4, + [219630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2421), 1, + ACTIONS(2443), 1, sym__entry_separator, - STATE(7851), 1, + STATE(7040), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(2441), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [249967] = 5, + [219644] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7359), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7852), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11554), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(7041), 1, sym_comment, - [249983] = 5, - ACTIONS(251), 1, + [219660] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7361), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7853), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11556), 1, + anon_sym_GT2, + STATE(5414), 1, + aux_sym__multiple_types_repeat1, + STATE(7042), 1, sym_comment, - [249999] = 4, + [219676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12399), 1, - sym__table_head_separator, - STATE(7854), 1, + STATE(7043), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1957), 3, anon_sym_RBRACK, sym__entry_separator, - [250013] = 4, + sym__table_head_separator, + [219688] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, + ACTIONS(2388), 1, sym__entry_separator, - STATE(7855), 1, + STATE(7044), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2386), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [250027] = 4, + [219702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(5736), 1, sym__entry_separator, - STATE(7856), 1, - sym_comment, - ACTIONS(2427), 2, + ACTIONS(11558), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [250041] = 4, - ACTIONS(3), 1, + STATE(2737), 1, + aux_sym__multiple_types_repeat1, + STATE(7045), 1, + sym_comment, + [219718] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12401), 1, + STATE(7046), 1, + sym_comment, + ACTIONS(964), 3, + anon_sym_QMARK2, sym__table_head_separator, - STATE(7857), 1, + anon_sym_DOT2, + [219730] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7047), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [250055] = 4, + ACTIONS(5682), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [219742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, + ACTIONS(2392), 1, sym__entry_separator, - STATE(7858), 1, + STATE(7048), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2390), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [250069] = 4, + [219756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(2019), 1, sym__entry_separator, - STATE(7859), 1, + STATE(7049), 1, sym_comment, - ACTIONS(2435), 2, + ACTIONS(2017), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [250083] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7383), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7860), 1, - sym_comment, - [250099] = 5, + [219770] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7385), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7861), 1, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(4872), 1, + sym_param_cmd, + STATE(7050), 1, sym_comment, - [250115] = 5, + [219786] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7388), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7862), 1, + ACTIONS(6346), 1, + anon_sym_AT, + ACTIONS(7890), 1, + anon_sym_EQ, + STATE(4869), 1, + sym_param_cmd, + STATE(7051), 1, sym_comment, - [250131] = 5, - ACTIONS(251), 1, + [219802] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7390), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7863), 1, + ACTIONS(1665), 1, + sym__entry_separator, + STATE(7052), 1, sym_comment, - [250147] = 4, + ACTIONS(1653), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219816] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12403), 1, - sym__table_head_separator, - STATE(7864), 1, + ACTIONS(2027), 1, + sym__entry_separator, + STATE(7053), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(2025), 2, anon_sym_RBRACK, - sym__entry_separator, - [250161] = 3, + anon_sym_RBRACE, + [219830] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7865), 1, + STATE(7054), 1, sym_comment, - ACTIONS(11397), 3, + ACTIONS(10910), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [250173] = 4, + [219842] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12405), 1, - sym__table_head_separator, - STATE(7866), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, + ACTIONS(1000), 1, sym__entry_separator, - [250187] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12407), 1, - sym__table_head_separator, - STATE(7867), 1, + STATE(7055), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, - sym__entry_separator, - [250201] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7405), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7868), 1, - sym_comment, - [250217] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7407), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7869), 1, - sym_comment, - [250233] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + [219856] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7409), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7870), 1, + ACTIONS(1653), 1, + sym__newline, + ACTIONS(1665), 1, + sym__space, + ACTIONS(7045), 1, + aux_sym_unquoted_token2, + STATE(7056), 1, sym_comment, - [250249] = 5, - ACTIONS(251), 1, + [219872] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7410), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7871), 1, + ACTIONS(2368), 1, + sym__entry_separator, + STATE(7057), 1, sym_comment, - [250265] = 4, + ACTIONS(2366), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12409), 1, + ACTIONS(11560), 1, sym__table_head_separator, - STATE(7872), 1, + STATE(7058), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250279] = 4, + [219900] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2480), 1, + ACTIONS(9143), 1, sym__entry_separator, - STATE(7873), 1, + ACTIONS(11562), 1, + anon_sym_GT2, + STATE(5422), 1, + aux_sym__multiple_types_repeat1, + STATE(7059), 1, sym_comment, - ACTIONS(2478), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [250293] = 4, + [219916] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12411), 1, + ACTIONS(3500), 1, + sym__newline, + ACTIONS(3502), 1, + sym__space, + STATE(1144), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7060), 1, + sym_comment, + [219932] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11564), 1, sym__table_head_separator, - STATE(7874), 1, + STATE(7061), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250307] = 5, + [219946] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11566), 1, + anon_sym_GT2, + STATE(5423), 1, + aux_sym__multiple_types_repeat1, + STATE(7062), 1, + sym_comment, + [219962] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7435), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7875), 1, + STATE(7011), 1, + sym_val_list, + STATE(7063), 1, sym_comment, - [250323] = 5, + [219978] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7438), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7876), 1, + STATE(7021), 1, + sym_val_list, + STATE(7064), 1, sym_comment, - [250339] = 5, - ACTIONS(3), 1, + [219994] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2324), 1, - sym__entry_separator, - ACTIONS(12413), 1, - anon_sym_RBRACE, - STATE(582), 1, - aux_sym__multiple_types_repeat1, - STATE(7877), 1, + STATE(7065), 1, sym_comment, - [250355] = 5, + ACTIONS(10469), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220006] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7440), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7878), 1, + STATE(7023), 1, + sym_val_list, + STATE(7066), 1, sym_comment, - [250371] = 5, + [220022] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7441), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7879), 1, + STATE(7037), 1, + sym_val_list, + STATE(7067), 1, sym_comment, - [250387] = 4, + [220038] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12415), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11568), 1, + anon_sym_GT2, + STATE(5279), 1, + aux_sym__multiple_types_repeat1, + STATE(7068), 1, + sym_comment, + [220054] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7069), 1, + sym_comment, + ACTIONS(10792), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220066] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11570), 1, sym__table_head_separator, - STATE(7880), 1, + STATE(7070), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250401] = 5, + [220080] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12417), 1, - anon_sym_RBRACK, - STATE(2805), 1, + ACTIONS(11572), 1, + anon_sym_GT2, + STATE(5280), 1, aux_sym__multiple_types_repeat1, - STATE(7881), 1, + STATE(7071), 1, sym_comment, - [250417] = 4, + [220096] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12419), 1, + ACTIONS(11574), 1, sym__table_head_separator, - STATE(7882), 1, + STATE(7072), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250431] = 5, + [220110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_EQ_GT, - ACTIONS(2258), 1, - anon_sym_PIPE, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(7883), 1, + ACTIONS(4965), 1, + sym__space, + ACTIONS(4967), 1, + sym__newline, + ACTIONS(11576), 1, + anon_sym_EQ2, + STATE(7073), 1, sym_comment, - [250447] = 5, + [220126] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7461), 1, + STATE(6626), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7884), 1, + STATE(7074), 1, sym_comment, - [250463] = 5, + [220142] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7464), 1, + STATE(6629), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7885), 1, - sym_comment, - [250479] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - sym__entry_separator, - STATE(7886), 1, + STATE(7075), 1, sym_comment, - ACTIONS(2443), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [250493] = 5, + [220158] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7466), 1, + STATE(6632), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7887), 1, + STATE(7076), 1, sym_comment, - [250509] = 5, + [220174] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7467), 1, + STATE(6634), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7888), 1, + STATE(7077), 1, sym_comment, - [250525] = 4, + [220190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12421), 1, + ACTIONS(11578), 1, sym__table_head_separator, - STATE(7889), 1, + STATE(7078), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250539] = 4, + [220204] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, - sym__entry_separator, - STATE(7890), 1, + ACTIONS(2263), 1, + sym__space, + STATE(7079), 1, sym_comment, - ACTIONS(2447), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [250553] = 4, + ACTIONS(2261), 2, + sym__newline, + aux_sym_unquoted_token4, + [220218] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7080), 1, + sym_comment, + ACTIONS(11580), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12423), 1, + ACTIONS(11582), 1, sym__table_head_separator, - STATE(7891), 1, + STATE(7081), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250567] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7892), 1, - sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [250579] = 3, - ACTIONS(251), 1, + [220244] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7893), 1, + ACTIONS(9143), 1, + sym__entry_separator, + ACTIONS(11584), 1, + anon_sym_GT2, + STATE(5283), 1, + aux_sym__multiple_types_repeat1, + STATE(7082), 1, sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [250591] = 5, + [220260] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7482), 1, + STATE(6657), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7894), 1, + STATE(7083), 1, sym_comment, - [250607] = 5, + [220276] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7484), 1, + STATE(6659), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7895), 1, + STATE(7084), 1, sym_comment, - [250623] = 5, + [220292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(9143), 1, sym__entry_separator, - ACTIONS(12425), 1, - anon_sym_RBRACK, - STATE(7159), 1, + ACTIONS(11586), 1, + anon_sym_GT2, + STATE(5284), 1, aux_sym__multiple_types_repeat1, - STATE(7896), 1, + STATE(7085), 1, sym_comment, - [250639] = 5, + [220308] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7486), 1, + STATE(6663), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7897), 1, + STATE(7086), 1, sym_comment, - [250655] = 5, + [220324] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7488), 1, + STATE(6665), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7898), 1, + STATE(7087), 1, sym_comment, - [250671] = 4, + [220340] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12427), 1, + ACTIONS(11588), 1, sym__table_head_separator, - STATE(7899), 1, + STATE(7088), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250685] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7900), 1, - sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [250697] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1306), 1, - anon_sym_RPAREN, - STATE(7901), 1, - sym_comment, - ACTIONS(1299), 2, - sym__newline, - anon_sym_SEMI, - [250711] = 4, + [220354] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12429), 1, + ACTIONS(11590), 1, sym__table_head_separator, - STATE(7902), 1, + STATE(7089), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250725] = 3, + [220368] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7903), 1, + STATE(7090), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(10928), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [250737] = 3, + [220380] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7904), 1, + STATE(7091), 1, sym_comment, - ACTIONS(11429), 3, + ACTIONS(10249), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [250749] = 5, + [220392] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7503), 1, + STATE(6691), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7905), 1, + STATE(7092), 1, sym_comment, - [250765] = 5, + [220408] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7506), 1, + STATE(6694), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7906), 1, + STATE(7093), 1, sym_comment, - [250781] = 3, - ACTIONS(251), 1, + [220424] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7907), 1, + ACTIONS(2396), 1, + sym__entry_separator, + STATE(7094), 1, sym_comment, - ACTIONS(11465), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [250793] = 5, + ACTIONS(2394), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220438] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7509), 1, + STATE(6697), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7908), 1, + STATE(7095), 1, sym_comment, - [250809] = 5, + [220454] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7511), 1, + STATE(6699), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7909), 1, + STATE(7096), 1, sym_comment, - [250825] = 4, + [220470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12431), 1, + ACTIONS(11592), 1, sym__table_head_separator, - STATE(7910), 1, + STATE(7097), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250839] = 3, + [220484] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2400), 1, + sym__entry_separator, + STATE(7098), 1, + sym_comment, + ACTIONS(2398), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220498] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7911), 1, + STATE(7099), 1, sym_comment, - ACTIONS(11225), 3, - ts_builtin_sym_end, + ACTIONS(11594), 3, sym__newline, anon_sym_SEMI, - [250851] = 4, + anon_sym_RPAREN, + [220510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12433), 1, + ACTIONS(11596), 1, sym__table_head_separator, - STATE(7912), 1, + STATE(7100), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250865] = 5, + [220524] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2031), 1, + sym__entry_separator, + STATE(7101), 1, + sym_comment, + ACTIONS(2029), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220538] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7526), 1, + STATE(6718), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7913), 1, + STATE(7102), 1, sym_comment, - [250881] = 5, + [220554] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7529), 1, + STATE(6721), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7914), 1, + STATE(7103), 1, sym_comment, - [250897] = 5, + [220570] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7532), 1, + STATE(6724), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7915), 1, + STATE(7104), 1, sym_comment, - [250913] = 5, + [220586] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7535), 1, + STATE(6725), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7916), 1, + STATE(7105), 1, sym_comment, - [250929] = 4, + [220602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12435), 1, + ACTIONS(11598), 1, sym__table_head_separator, - STATE(7917), 1, + STATE(7106), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [250943] = 4, + [220616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12437), 1, - sym__table_head_separator, - STATE(7918), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, + ACTIONS(2404), 1, sym__entry_separator, - [250957] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7551), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7919), 1, - sym_comment, - [250973] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7554), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7920), 1, + STATE(7107), 1, sym_comment, - [250989] = 5, + ACTIONS(2402), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220630] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - ACTIONS(12439), 1, - anon_sym_RBRACK, - STATE(2995), 1, - aux_sym__multiple_types_repeat1, - STATE(7921), 1, + ACTIONS(11600), 1, + sym__table_head_separator, + STATE(7108), 1, sym_comment, - [251005] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [220644] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7557), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7922), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + STATE(7109), 1, sym_comment, - [251021] = 5, + ACTIONS(1827), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [220658] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7559), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7923), 1, - sym_comment, - [251037] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12441), 1, - sym__table_head_separator, - STATE(7924), 1, + ACTIONS(11602), 1, + anon_sym_QMARK2, + STATE(7110), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [251051] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12443), 1, + ACTIONS(954), 2, sym__table_head_separator, - STATE(7925), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [251065] = 5, + anon_sym_DOT2, + [220672] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7577), 1, + STATE(6745), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7926), 1, + STATE(7111), 1, sym_comment, - [251081] = 5, + [220688] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7579), 1, + STATE(6747), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7927), 1, + STATE(7112), 1, sym_comment, - [251097] = 5, + [220704] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7582), 1, + STATE(6750), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7928), 1, + STATE(7113), 1, sym_comment, - [251113] = 5, + [220720] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7583), 1, + STATE(6752), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7929), 1, + STATE(7114), 1, sym_comment, - [251129] = 4, + [220736] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12445), 1, + ACTIONS(11604), 1, sym__table_head_separator, - STATE(7930), 1, + STATE(7115), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [251143] = 4, + [220750] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7116), 1, + sym_comment, + ACTIONS(11606), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220762] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12447), 1, + ACTIONS(11608), 1, sym__table_head_separator, - STATE(7931), 1, + STATE(7117), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [251157] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7596), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7932), 1, - sym_comment, - [251173] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7598), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7933), 1, - sym_comment, - [251189] = 3, + [220776] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7934), 1, + STATE(7118), 1, sym_comment, - ACTIONS(10937), 3, + ACTIONS(10249), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [251201] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7601), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7935), 1, - sym_comment, - [251217] = 5, + [220788] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, - anon_sym_LBRACK, - STATE(7603), 1, - sym_val_list, - STATE(7767), 1, - aux_sym_val_table_repeat1, - STATE(7936), 1, - sym_comment, - [251233] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12449), 1, - sym__table_head_separator, - STATE(7937), 1, - sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [251247] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12451), 1, - sym__table_head_separator, - STATE(7938), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + STATE(7119), 1, sym_comment, - ACTIONS(1034), 2, - anon_sym_RBRACK, - sym__entry_separator, - [251261] = 5, + ACTIONS(2222), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [220802] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7607), 1, + STATE(6771), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7939), 1, + STATE(7120), 1, sym_comment, - [251277] = 5, + [220818] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7609), 1, + STATE(6773), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7940), 1, + STATE(7121), 1, sym_comment, - [251293] = 5, + [220834] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7612), 1, + STATE(6776), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7941), 1, + STATE(7122), 1, sym_comment, - [251309] = 5, + [220850] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7615), 1, + STATE(6778), 1, sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7942), 1, + STATE(7123), 1, sym_comment, - [251325] = 4, + [220866] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12453), 1, + ACTIONS(11610), 1, sym__table_head_separator, - STATE(7943), 1, + STATE(7124), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [251339] = 4, + [220880] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7125), 1, + sym_comment, + ACTIONS(11006), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220892] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12455), 1, + ACTIONS(11612), 1, sym__table_head_separator, - STATE(7944), 1, + STATE(7126), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [251353] = 5, + [220906] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7623), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7945), 1, + STATE(6797), 1, + sym_val_list, + STATE(7127), 1, sym_comment, - [251369] = 5, + [220922] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7625), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7946), 1, + STATE(6799), 1, + sym_val_list, + STATE(7128), 1, sym_comment, - [251385] = 5, + [220938] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7628), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7947), 1, + STATE(6802), 1, + sym_val_list, + STATE(7129), 1, sym_comment, - [251401] = 5, + [220954] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(9670), 1, anon_sym_LBRACK, - STATE(7630), 1, - sym_val_list, - STATE(7767), 1, + STATE(6785), 1, aux_sym_val_table_repeat1, - STATE(7948), 1, - sym_comment, - [251417] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1699), 1, - sym__entry_separator, - ACTIONS(9234), 1, - aux_sym__unquoted_in_record_token2, - STATE(7949), 1, - sym_comment, - [251433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2334), 1, - anon_sym_RBRACE, - STATE(7950), 1, - sym_comment, - ACTIONS(2336), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [251447] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12457), 1, - anon_sym_RBRACK, - STATE(7951), 1, - sym_comment, - STATE(7960), 1, - aux_sym_val_binary_repeat1, - [251463] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7952), 1, - sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [251475] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7953), 1, - sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [251487] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - ACTIONS(9330), 1, - aux_sym__unquoted_in_list_token4, - STATE(7954), 1, - sym_comment, - STATE(8167), 1, - sym__expr_parenthesized_immediate, - [251503] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12459), 1, - anon_sym_RBRACK, - STATE(6951), 1, - aux_sym__multiple_types_repeat1, - STATE(7955), 1, - sym_comment, - [251519] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7956), 1, - sym_comment, - ACTIONS(12461), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [251531] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6242), 1, - anon_sym_RBRACE, - ACTIONS(6244), 1, - sym__entry_separator, - STATE(3097), 1, - aux_sym__multiple_types_repeat1, - STATE(7957), 1, - sym_comment, - [251547] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - aux_sym_unquoted_token4, - STATE(7958), 1, - sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - [251563] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2300), 1, - anon_sym_RBRACE, - STATE(7959), 1, - sym_comment, - ACTIONS(2302), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [251577] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11835), 1, - sym_hex_digit, - ACTIONS(12463), 1, - anon_sym_RBRACK, - STATE(7421), 1, - aux_sym_val_binary_repeat1, - STATE(7960), 1, - sym_comment, - [251593] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12465), 1, - anon_sym_EQ2, - STATE(7961), 1, - sym_comment, - ACTIONS(5112), 2, - sym_identifier, - anon_sym_DOLLAR, - [251607] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12467), 1, - anon_sym_GT2, - STATE(7962), 1, - sym_comment, - ACTIONS(12469), 2, - anon_sym_AT, - sym__entry_separator, - [251621] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12471), 1, - anon_sym_RBRACK, - STATE(7101), 1, - aux_sym__multiple_types_repeat1, - STATE(7963), 1, - sym_comment, - [251637] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6244), 1, - sym__entry_separator, - ACTIONS(6255), 1, - anon_sym_RBRACE, - STATE(3128), 1, - aux_sym__multiple_types_repeat1, - STATE(7964), 1, - sym_comment, - [251653] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7965), 1, - sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [251665] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2393), 1, - sym__entry_separator, - STATE(7966), 1, - sym_comment, - ACTIONS(2391), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [251679] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2393), 1, - sym__entry_separator, - STATE(7967), 1, - sym_comment, - ACTIONS(2391), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [251693] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12473), 1, - anon_sym_RBRACK, - STATE(7102), 1, - aux_sym__multiple_types_repeat1, - STATE(7968), 1, + STATE(6805), 1, + sym_val_list, + STATE(7130), 1, sym_comment, - [251709] = 5, + [220970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12475), 1, - anon_sym_RBRACK, - STATE(7114), 1, - aux_sym__multiple_types_repeat1, - STATE(7969), 1, + ACTIONS(11614), 1, + sym__table_head_separator, + STATE(7131), 1, sym_comment, - [251725] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12477), 1, + ACTIONS(1004), 2, anon_sym_RBRACK, - STATE(7116), 1, - aux_sym__multiple_types_repeat1, - STATE(7970), 1, - sym_comment, - [251741] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - ACTIONS(9234), 1, - aux_sym__unquoted_in_record_token4, - STATE(7971), 1, - sym_comment, - STATE(8194), 1, - sym__expr_parenthesized_immediate, - [251757] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, sym__entry_separator, - ACTIONS(12479), 1, - anon_sym_RBRACK, - STATE(7117), 1, - aux_sym__multiple_types_repeat1, - STATE(7972), 1, - sym_comment, - [251773] = 3, + [220984] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7973), 1, - sym_comment, - ACTIONS(12481), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [251785] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12483), 1, - anon_sym_RBRACK, - STATE(7118), 1, - aux_sym__multiple_types_repeat1, - STATE(7974), 1, + ACTIONS(10100), 1, + anon_sym_PIPE, + ACTIONS(11616), 1, + anon_sym_EQ_GT, + STATE(6852), 1, + aux_sym_match_pattern_repeat1, + STATE(7132), 1, sym_comment, - [251801] = 5, + [221000] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, - sym__entry_separator, - ACTIONS(12485), 1, - anon_sym_RBRACK, - STATE(7119), 1, - aux_sym__multiple_types_repeat1, - STATE(7975), 1, + ACTIONS(11618), 1, + sym__table_head_separator, + STATE(7133), 1, sym_comment, - [251817] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221014] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(6029), 1, + anon_sym_RBRACE, + ACTIONS(6031), 1, sym__entry_separator, - ACTIONS(12487), 1, - anon_sym_RBRACK, - STATE(7120), 1, + STATE(2974), 1, aux_sym__multiple_types_repeat1, - STATE(7976), 1, + STATE(7134), 1, sym_comment, - [251833] = 3, + [221030] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7977), 1, + STATE(7135), 1, sym_comment, - ACTIONS(11221), 3, + ACTIONS(11008), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [251845] = 4, + [221042] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5480), 1, - sym_block, - STATE(7978), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6822), 1, + sym_val_list, + STATE(7136), 1, sym_comment, - [251858] = 4, + [221058] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7364), 1, - sym_block, - STATE(7979), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6824), 1, + sym_val_list, + STATE(7137), 1, sym_comment, - [251871] = 4, + [221074] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12489), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7980), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11620), 1, + anon_sym_RBRACK, + STATE(3472), 1, + aux_sym__multiple_types_repeat1, + STATE(7138), 1, sym_comment, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - [251884] = 4, - ACTIONS(3), 1, + [221090] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12491), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7981), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6826), 1, + sym_val_list, + STATE(7139), 1, sym_comment, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - [251897] = 4, - ACTIONS(3), 1, + [221106] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12493), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7982), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6828), 1, + sym_val_list, + STATE(7140), 1, sym_comment, - STATE(8011), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [251910] = 4, + [221122] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12495), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7983), 1, + ACTIONS(11622), 1, + sym__table_head_separator, + STATE(7141), 1, sym_comment, - STATE(8012), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [251923] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_RBRACE, - ACTIONS(2270), 1, + ACTIONS(2419), 1, sym__entry_separator, - STATE(7984), 1, - sym_comment, - [251936] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6999), 1, - sym_block, - STATE(7985), 1, + STATE(7142), 1, sym_comment, - [251949] = 4, + ACTIONS(2417), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221150] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7463), 1, - sym_block, - STATE(7986), 1, + STATE(7143), 1, sym_comment, - [251962] = 4, - ACTIONS(251), 1, + ACTIONS(11010), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221162] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7489), 1, - sym_block, - STATE(7987), 1, + ACTIONS(11624), 1, + sym__table_head_separator, + STATE(7144), 1, sym_comment, - [251975] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221176] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7059), 1, - sym_block, - STATE(7988), 1, + STATE(7145), 1, sym_comment, - [251988] = 4, + ACTIONS(11012), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221188] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1034), 1, - anon_sym_in2, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(7989), 1, + ACTIONS(2408), 1, + sym__entry_separator, + STATE(7146), 1, sym_comment, - [252001] = 4, + ACTIONS(2406), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221202] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1799), 1, - aux_sym_unquoted_token2, - ACTIONS(1801), 1, - anon_sym_LBRACE, - STATE(7990), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6844), 1, + sym_val_list, + STATE(7147), 1, sym_comment, - [252014] = 4, + [221218] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1699), 1, - anon_sym_in2, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(7991), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6846), 1, + sym_val_list, + STATE(7148), 1, sym_comment, - [252027] = 4, + [221234] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7569), 1, - sym_block, - STATE(7992), 1, + ACTIONS(11626), 1, + anon_sym_QMARK2, + STATE(7149), 1, sym_comment, - [252040] = 4, - ACTIONS(3), 1, + ACTIONS(968), 2, + sym__table_head_separator, + anon_sym_DOT2, + [221248] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12497), 1, - anon_sym_RBRACK, - ACTIONS(12499), 1, - sym__entry_separator, - STATE(7993), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6849), 1, + sym_val_list, + STATE(7150), 1, sym_comment, - [252053] = 4, + [221264] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(7994), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6851), 1, + sym_val_list, + STATE(7151), 1, sym_comment, - STATE(8062), 1, - sym__expr_parenthesized_immediate, - [252066] = 4, - ACTIONS(251), 1, + [221280] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7123), 1, - sym_block, - STATE(7995), 1, + ACTIONS(11628), 1, + sym__table_head_separator, + STATE(7152), 1, sym_comment, - [252079] = 3, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221294] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7996), 1, + ACTIONS(11630), 1, + sym__table_head_separator, + STATE(7153), 1, sym_comment, - ACTIONS(1302), 2, - anon_sym_POUND_BANG, - sym__newline, - [252090] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221308] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7138), 1, - sym_block, - STATE(7997), 1, + STATE(7154), 1, sym_comment, - [252103] = 4, + ACTIONS(11014), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221320] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7368), 1, - sym_block, - STATE(7998), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6862), 1, + sym_val_list, + STATE(7155), 1, sym_comment, - [252116] = 4, + [221336] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7146), 1, - sym_block, - STATE(7999), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6865), 1, + sym_val_list, + STATE(7156), 1, sym_comment, - [252129] = 4, + [221352] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7140), 1, - sym_block, - STATE(8000), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6868), 1, + sym_val_list, + STATE(7157), 1, sym_comment, - [252142] = 4, + [221368] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7152), 1, - sym_block, - STATE(8001), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6870), 1, + sym_val_list, + STATE(7158), 1, sym_comment, - [252155] = 4, + [221384] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, - anon_sym_RBRACE, - ACTIONS(2047), 1, + ACTIONS(11632), 1, + sym__table_head_separator, + STATE(7159), 1, + sym_comment, + ACTIONS(1004), 2, + anon_sym_RBRACK, sym__entry_separator, - STATE(8002), 1, + [221398] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11634), 1, + sym__table_head_separator, + STATE(7160), 1, sym_comment, - [252168] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221412] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7518), 1, - sym_block, - STATE(8003), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6883), 1, + sym_val_list, + STATE(7161), 1, sym_comment, - [252181] = 4, + [221428] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5715), 1, - anon_sym_LPAREN2, - STATE(8004), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6885), 1, + sym_val_list, + STATE(7162), 1, sym_comment, - STATE(8167), 1, - sym__expr_parenthesized_immediate, - [252194] = 4, - ACTIONS(251), 1, + [221444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7155), 1, - sym_block, - STATE(8005), 1, + ACTIONS(2148), 1, + sym__entry_separator, + STATE(7163), 1, sym_comment, - [252207] = 4, + ACTIONS(2142), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221458] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7346), 1, - sym_block, - STATE(8006), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6889), 1, + sym_val_list, + STATE(7164), 1, sym_comment, - [252220] = 4, + [221474] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7604), 1, - sym_block, - STATE(8007), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6892), 1, + sym_val_list, + STATE(7165), 1, sym_comment, - [252233] = 4, + [221490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym__unquoted_in_list_token4, - STATE(8008), 1, + ACTIONS(11636), 1, + sym__table_head_separator, + STATE(7166), 1, sym_comment, - [252246] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(1004), 2, + anon_sym_RBRACK, sym__entry_separator, - STATE(7317), 1, - aux_sym__multiple_types_repeat1, - STATE(8009), 1, - sym_comment, - [252259] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(8010), 1, - sym_comment, - ACTIONS(2242), 2, - anon_sym_in2, - aux_sym_unquoted_token4, - [252270] = 4, + [221504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12501), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8011), 1, + ACTIONS(11638), 1, + sym__table_head_separator, + STATE(7167), 1, sym_comment, - STATE(8141), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [252283] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12503), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8012), 1, + ACTIONS(11640), 1, + anon_sym_LPAREN, + STATE(7168), 1, sym_comment, - STATE(8141), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [252296] = 4, + ACTIONS(11642), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [221532] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7610), 1, - sym_block, - STATE(8013), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6901), 1, + sym_val_list, + STATE(7169), 1, sym_comment, - [252309] = 4, + [221548] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7678), 1, - sym_block, - STATE(8014), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6904), 1, + sym_val_list, + STATE(7170), 1, sym_comment, - [252322] = 4, + [221564] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(8015), 1, - sym_comment, - STATE(8466), 1, - sym__expr_parenthesized_immediate, - [252335] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2272), 1, - anon_sym_RBRACE, - ACTIONS(2274), 1, - sym__entry_separator, - STATE(8016), 1, - sym_comment, - [252348] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12505), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8017), 1, + STATE(7171), 1, sym_comment, - STATE(8141), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [252361] = 4, + ACTIONS(10988), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221576] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1771), 1, - aux_sym_unquoted_token2, - ACTIONS(1773), 1, - anon_sym_LBRACE, - STATE(8018), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6907), 1, + sym_val_list, + STATE(7172), 1, sym_comment, - [252374] = 4, + [221592] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7156), 1, - sym_block, - STATE(8019), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6908), 1, + sym_val_list, + STATE(7173), 1, sym_comment, - [252387] = 4, + [221608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - anon_sym_RBRACE, - ACTIONS(2230), 1, - sym__entry_separator, - STATE(8020), 1, + ACTIONS(11644), 1, + sym__table_head_separator, + STATE(7174), 1, sym_comment, - [252400] = 4, - ACTIONS(251), 1, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221622] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - aux_sym_unquoted_token2, - ACTIONS(1838), 1, - anon_sym_LBRACE, - STATE(8021), 1, + ACTIONS(11646), 1, + sym__table_head_separator, + STATE(7175), 1, sym_comment, - [252413] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221636] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_RBRACE, - ACTIONS(2238), 1, + ACTIONS(2285), 1, sym__entry_separator, - STATE(8022), 1, + ACTIONS(2307), 1, + anon_sym_RBRACE, + STATE(572), 1, + aux_sym__multiple_types_repeat1, + STATE(7176), 1, sym_comment, - [252426] = 4, - ACTIONS(3), 1, + [221652] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12507), 1, - sym__newline, - ACTIONS(12509), 1, - sym__space, - STATE(8023), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6918), 1, + sym_val_list, + STATE(7177), 1, sym_comment, - [252439] = 4, + [221668] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1818), 1, - aux_sym_unquoted_token2, - ACTIONS(1820), 1, - anon_sym_LBRACE, - STATE(8024), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6920), 1, + sym_val_list, + STATE(7178), 1, sym_comment, - [252452] = 4, + [221684] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7157), 1, - sym_block, - STATE(8025), 1, + STATE(7179), 1, sym_comment, - [252465] = 4, - ACTIONS(3), 1, + ACTIONS(10588), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221696] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_in2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(8026), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6924), 1, + sym_val_list, + STATE(7180), 1, sym_comment, - [252478] = 4, + [221712] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - ACTIONS(2294), 1, - anon_sym_LBRACE, - STATE(8027), 1, + ACTIONS(9670), 1, + anon_sym_LBRACK, + STATE(6785), 1, + aux_sym_val_table_repeat1, + STATE(6926), 1, + sym_val_list, + STATE(7181), 1, sym_comment, - [252491] = 4, + [221728] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7433), 1, - sym_block, - STATE(8028), 1, + STATE(7182), 1, sym_comment, - [252504] = 4, - ACTIONS(251), 1, + ACTIONS(10516), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221740] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7158), 1, - sym_block, - STATE(8029), 1, + ACTIONS(2263), 1, + anon_sym_PIPE, + STATE(7183), 1, sym_comment, - [252517] = 4, + ACTIONS(2261), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [221754] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_in2, - ACTIONS(12511), 1, - anon_sym_EQ2, - STATE(8030), 1, + STATE(7184), 1, sym_comment, - [252530] = 4, + ACTIONS(10397), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221766] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7160), 1, - sym_block, - STATE(8031), 1, + STATE(7185), 1, sym_comment, - [252543] = 4, + ACTIONS(10251), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2197), 1, - anon_sym_RBRACE, - ACTIONS(2199), 1, + ACTIONS(2423), 1, sym__entry_separator, - STATE(8032), 1, + STATE(7186), 1, sym_comment, - [252556] = 4, + ACTIONS(2421), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221792] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7237), 1, - sym_block, - STATE(8033), 1, + STATE(7187), 1, sym_comment, - [252569] = 4, - ACTIONS(251), 1, + ACTIONS(10251), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7242), 1, - sym_block, - STATE(8034), 1, + ACTIONS(2336), 1, + sym__entry_separator, + STATE(7188), 1, sym_comment, - [252582] = 4, + ACTIONS(2334), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221818] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7097), 1, - sym_block, - STATE(8035), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11648), 1, + anon_sym_RBRACK, + STATE(7189), 1, sym_comment, - [252595] = 4, + STATE(7200), 1, + aux_sym_val_binary_repeat1, + [221834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - anon_sym_LBRACE, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(8036), 1, - sym_comment, - [252608] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7187), 1, - sym_block, - STATE(8037), 1, + ACTIONS(1947), 1, + sym__entry_separator, + STATE(7190), 1, sym_comment, - [252621] = 4, + ACTIONS(1945), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221848] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7098), 1, - sym_block, - STATE(8038), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(7191), 1, sym_comment, - [252634] = 4, + ACTIONS(1665), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [221862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12513), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8039), 1, + ACTIONS(2427), 1, + sym__entry_separator, + STATE(7192), 1, sym_comment, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - [252647] = 4, + ACTIONS(2425), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12515), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8040), 1, - sym_comment, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - [252660] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12517), 1, - sym_identifier, - ACTIONS(12519), 1, - anon_sym_DOLLAR, - STATE(8041), 1, - sym_comment, - [252673] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - ACTIONS(12521), 1, - anon_sym_make, - STATE(8042), 1, + ACTIONS(6031), 1, + sym__entry_separator, + ACTIONS(6035), 1, + anon_sym_RBRACE, + STATE(2975), 1, + aux_sym__multiple_types_repeat1, + STATE(7193), 1, sym_comment, - [252686] = 4, + [221892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12523), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8043), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10200), 1, + anon_sym_LBRACK, + STATE(3438), 1, + aux_sym__multiple_types_repeat1, + STATE(7194), 1, sym_comment, - STATE(8065), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [252699] = 4, + [221908] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7200), 1, - sym_block, - STATE(8044), 1, + ACTIONS(11652), 1, + anon_sym_COMMA, + STATE(7195), 1, sym_comment, - [252712] = 4, + ACTIONS(11650), 2, + anon_sym_RBRACK, + sym_hex_digit, + [221922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12525), 1, - sym__newline, - ACTIONS(12527), 1, - sym__space, - STATE(8045), 1, - sym_comment, - [252725] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7570), 1, - sym_block, - STATE(8046), 1, + ACTIONS(2415), 1, + sym__entry_separator, + STATE(7196), 1, sym_comment, - [252738] = 4, + ACTIONS(2413), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12529), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8047), 1, + ACTIONS(2431), 1, + sym__entry_separator, + STATE(7197), 1, sym_comment, - STATE(8142), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [252751] = 4, + ACTIONS(2429), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221950] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12531), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8048), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + ACTIONS(4773), 1, + aux_sym_unquoted_token4, + STATE(7198), 1, sym_comment, - STATE(8143), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [252764] = 4, - ACTIONS(251), 1, + STATE(7290), 1, + sym__expr_parenthesized_immediate, + [221966] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6696), 1, - sym_block, - STATE(8049), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11654), 1, + anon_sym_RBRACK, + STATE(3477), 1, + aux_sym__multiple_types_repeat1, + STATE(7199), 1, sym_comment, - [252777] = 4, + [221982] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6702), 1, - sym_block, - STATE(8050), 1, + ACTIONS(11090), 1, + sym_hex_digit, + ACTIONS(11656), 1, + anon_sym_RBRACK, + STATE(6795), 1, + aux_sym_val_binary_repeat1, + STATE(7200), 1, sym_comment, - [252790] = 4, + [221998] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - aux_sym_unquoted_token4, - ACTIONS(2244), 1, - anon_sym_LBRACE, - STATE(8051), 1, - sym_comment, - [252803] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(8052), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11658), 1, + anon_sym_RBRACK, + STATE(6217), 1, + aux_sym__multiple_types_repeat1, + STATE(7201), 1, sym_comment, - STATE(8184), 1, - sym__expr_parenthesized_immediate, - [252816] = 4, + [222014] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2524), 1, - anon_sym_RBRACE, - ACTIONS(2526), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(8053), 1, + ACTIONS(11660), 1, + anon_sym_RBRACK, + STATE(6237), 1, + aux_sym__multiple_types_repeat1, + STATE(7202), 1, sym_comment, - [252829] = 4, - ACTIONS(251), 1, + [222030] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - anon_sym_LBRACE, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(8054), 1, + ACTIONS(11662), 1, + sym__newline, + ACTIONS(11664), 1, + sym__space, + STATE(7203), 1, sym_comment, - [252842] = 4, + [222043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - anon_sym_RBRACE, - ACTIONS(2258), 1, - sym__entry_separator, - STATE(8055), 1, + ACTIONS(11666), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7204), 1, sym_comment, - [252855] = 4, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + [222056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, + ACTIONS(10152), 1, + anon_sym_RBRACE, + ACTIONS(10154), 1, sym__entry_separator, - ACTIONS(8485), 1, - anon_sym_RBRACK, - STATE(8056), 1, + STATE(7205), 1, sym_comment, - [252868] = 4, - ACTIONS(251), 1, + [222069] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - STATE(8047), 1, - sym__expr_parenthesized_immediate, - STATE(8057), 1, + ACTIONS(11668), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7206), 1, sym_comment, - [252881] = 4, + STATE(7285), 1, + aux_sym__unquoted_with_expr_repeat1, + [222082] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7571), 1, + STATE(6707), 1, sym_block, - STATE(8058), 1, + STATE(7207), 1, sym_comment, - [252894] = 4, + [222095] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7517), 1, - sym_block, - STATE(8059), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(7208), 1, sym_comment, - [252907] = 4, + STATE(7280), 1, + sym__expr_parenthesized_immediate, + [222108] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(2270), 1, + ACTIONS(4987), 1, anon_sym_LBRACE, - STATE(8060), 1, + ACTIONS(11670), 1, + anon_sym_EQ2, + STATE(7209), 1, sym_comment, - [252920] = 4, - ACTIONS(3), 1, + [222121] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2272), 1, - anon_sym_in2, - STATE(8061), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + STATE(7210), 1, sym_comment, - [252933] = 4, - ACTIONS(3), 1, + STATE(7300), 1, + sym__expr_parenthesized_immediate, + [222134] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12533), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8062), 1, + STATE(7211), 1, sym_comment, - STATE(8071), 1, - aux_sym__unquoted_with_expr_repeat1, - [252946] = 4, + ACTIONS(11224), 2, + anon_sym_GT2, + anon_sym_AT, + [222145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - anon_sym_in2, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(8063), 1, + ACTIONS(2224), 1, + anon_sym_RBRACE, + ACTIONS(2228), 1, + sym__entry_separator, + STATE(7212), 1, sym_comment, - [252959] = 4, + [222158] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, - anon_sym_LBRACE, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(8064), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym__unquoted_in_record_token4, + STATE(7213), 1, sym_comment, - [252972] = 4, + [222171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12535), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8065), 1, + ACTIONS(7295), 1, + anon_sym_RBRACK, + ACTIONS(7297), 1, + sym__entry_separator, + STATE(7214), 1, sym_comment, - STATE(8173), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [252985] = 4, + [222184] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(4965), 1, anon_sym_LBRACE, - STATE(5005), 1, - sym_block, - STATE(8066), 1, + ACTIONS(11672), 1, + anon_sym_EQ2, + STATE(7215), 1, sym_comment, - [252998] = 4, + [222197] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7616), 1, + STATE(4965), 1, sym_block, - STATE(8067), 1, + STATE(7216), 1, sym_comment, - [253011] = 4, + [222210] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - ACTIONS(12521), 1, - anon_sym_make, - STATE(8068), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(6710), 1, + sym_block, + STATE(7217), 1, sym_comment, - [253024] = 4, + [222223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9699), 1, + ACTIONS(8089), 1, sym__entry_separator, - STATE(6032), 1, - aux_sym__multiple_types_repeat1, - STATE(8069), 1, - sym_comment, - [253037] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6084), 1, + ACTIONS(8091), 1, anon_sym_RBRACK, - ACTIONS(6090), 1, - sym__entry_separator, - STATE(8070), 1, + STATE(7218), 1, sym_comment, - [253050] = 4, + [222236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12537), 1, + ACTIONS(11674), 1, aux_sym__unquoted_with_expr_token1, - STATE(8071), 1, + STATE(7219), 1, sym_comment, - STATE(8192), 1, + STATE(7305), 1, aux_sym__unquoted_with_expr_repeat1, - [253063] = 4, - ACTIONS(251), 1, + [222249] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7490), 1, - sym_block, - STATE(8072), 1, + ACTIONS(11676), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7220), 1, sym_comment, - [253076] = 4, - ACTIONS(3), 1, + STATE(7317), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [222262] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2242), 1, - anon_sym_RBRACE, - ACTIONS(2244), 1, - sym__entry_separator, - STATE(8073), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(7221), 1, sym_comment, - [253089] = 4, + STATE(7290), 1, + sym__expr_parenthesized_immediate, + [222275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12539), 1, + ACTIONS(2051), 1, anon_sym_RBRACE, - ACTIONS(12541), 1, + ACTIONS(2053), 1, sym__entry_separator, - STATE(8074), 1, + STATE(7222), 1, sym_comment, - [253102] = 4, - ACTIONS(3), 1, + [222288] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - sym__entry_separator, - STATE(3034), 1, - aux_sym__multiple_types_repeat1, - STATE(8075), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + STATE(7223), 1, sym_comment, - [253115] = 4, + STATE(7656), 1, + sym__expr_parenthesized_immediate, + [222301] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7934), 1, - sym_block, - STATE(8076), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + ACTIONS(11678), 1, + anon_sym_make, + STATE(7224), 1, sym_comment, - [253128] = 4, - ACTIONS(3), 1, + [222314] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12543), 1, + ACTIONS(1655), 1, anon_sym_LPAREN2, - ACTIONS(12545), 1, - aux_sym__record_key_token1, - STATE(8077), 1, + STATE(7225), 1, sym_comment, - [253141] = 4, + STATE(7373), 1, + sym__expr_parenthesized_immediate, + [222327] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5882), 1, + ACTIONS(5885), 1, sym__entry_separator, - STATE(2920), 1, + STATE(2898), 1, aux_sym__multiple_types_repeat1, - STATE(8078), 1, + STATE(7226), 1, sym_comment, - [253154] = 4, + [222340] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10807), 1, - anon_sym_RBRACE, - ACTIONS(10809), 1, - sym__entry_separator, - STATE(8079), 1, + ACTIONS(11680), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7227), 2, sym_comment, - [253167] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [222351] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11683), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7228), 1, + sym_comment, + STATE(7362), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [222364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12547), 1, + ACTIONS(2501), 1, anon_sym_RBRACE, - ACTIONS(12549), 1, + ACTIONS(2503), 1, sym__entry_separator, - STATE(8080), 1, + STATE(7229), 1, sym_comment, - [253180] = 4, + [222377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2324), 1, - sym__entry_separator, - STATE(651), 1, - aux_sym__multiple_types_repeat1, - STATE(8081), 1, + ACTIONS(11685), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7220), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7230), 1, sym_comment, - [253193] = 4, + [222390] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12551), 1, + ACTIONS(11687), 1, aux_sym__unquoted_with_expr_token1, - STATE(8082), 1, + STATE(7231), 1, sym_comment, - STATE(8192), 1, + STATE(7309), 1, aux_sym__unquoted_with_expr_repeat1, - [253206] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(5267), 1, - sym_block, - STATE(8083), 1, - sym_comment, - [253219] = 4, + [222403] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_RBRACE, - ACTIONS(2294), 1, - sym__entry_separator, - STATE(8084), 1, + ACTIONS(11689), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7232), 1, sym_comment, - [253232] = 4, + STATE(7367), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [222416] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(8085), 1, - sym_comment, - STATE(8421), 1, + STATE(7219), 1, sym__expr_parenthesized_immediate, - [253245] = 4, + STATE(7233), 1, + sym_comment, + [222429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10811), 1, + ACTIONS(1794), 1, anon_sym_RBRACE, - ACTIONS(10813), 1, + ACTIONS(1802), 1, sym__entry_separator, - STATE(8086), 1, - sym_comment, - [253258] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12553), 1, - anon_sym_DASH2, - STATE(8087), 1, - sym_comment, - STATE(8348), 1, - sym_param_short_flag, - [253271] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(8088), 1, + STATE(7234), 1, sym_comment, - ACTIONS(12355), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [253282] = 4, + [222442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(2249), 1, anon_sym_RBRACE, - ACTIONS(1838), 1, + ACTIONS(2253), 1, sym__entry_separator, - STATE(8089), 1, - sym_comment, - [253295] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7573), 1, - sym_block, - STATE(8090), 1, - sym_comment, - [253308] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(8091), 1, - sym_comment, - STATE(8150), 1, - sym__expr_parenthesized_immediate, - [253321] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6767), 1, - sym_block, - STATE(8092), 1, + STATE(7235), 1, sym_comment, - [253334] = 4, + [222455] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(9710), 1, anon_sym_LBRACE, - STATE(6769), 1, - sym_block, - STATE(8093), 1, - sym_comment, - [253347] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - STATE(7982), 1, - sym__expr_parenthesized_immediate, - STATE(8094), 1, + STATE(6905), 1, + sym_val_record, + STATE(7236), 1, sym_comment, - [253360] = 4, + [222468] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6772), 1, - sym_block, - STATE(8095), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + ACTIONS(11678), 1, + anon_sym_make, + STATE(7237), 1, sym_comment, - [253373] = 4, + [222481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(2257), 1, + anon_sym_RBRACE, + ACTIONS(2259), 1, sym__entry_separator, - STATE(3205), 1, - aux_sym__multiple_types_repeat1, - STATE(8096), 1, - sym_comment, - [253386] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2230), 1, - anon_sym_LBRACE, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(8097), 1, - sym_comment, - [253399] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6783), 1, - sym_block, - STATE(8098), 1, - sym_comment, - [253412] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6784), 1, - sym_block, - STATE(8099), 1, - sym_comment, - [253425] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6786), 1, - sym_block, - STATE(8100), 1, + STATE(7238), 1, sym_comment, - [253438] = 4, + [222494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7739), 1, - anon_sym_RBRACK, - ACTIONS(7741), 1, + ACTIONS(7997), 1, sym__entry_separator, - STATE(8101), 1, - sym_comment, - [253451] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12555), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8102), 1, + ACTIONS(7999), 1, + anon_sym_GT2, + STATE(7239), 1, sym_comment, - STATE(8223), 1, - aux_sym__unquoted_with_expr_repeat1, - [253464] = 4, + [222507] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12557), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8103), 1, + STATE(7240), 1, sym_comment, - STATE(8111), 1, - aux_sym__unquoted_with_expr_repeat1, - [253477] = 4, + ACTIONS(1275), 2, + anon_sym_POUND_BANG, + sym__newline, + [222518] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(6798), 1, + STATE(6874), 1, sym_block, - STATE(8104), 1, + STATE(7241), 1, sym_comment, - [253490] = 4, + [222531] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5130), 1, + ACTIONS(9680), 1, anon_sym_LBRACE, - ACTIONS(12559), 1, - anon_sym_EQ2, - STATE(8105), 1, + STATE(6281), 1, + sym_val_record, + STATE(7242), 1, sym_comment, - [253503] = 4, - ACTIONS(251), 1, + [222544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7892), 1, - sym_block, - STATE(8106), 1, + ACTIONS(11691), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7243), 1, sym_comment, - [253516] = 4, + STATE(7317), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [222557] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(6800), 1, + STATE(6942), 1, sym_block, - STATE(8107), 1, + STATE(7244), 1, sym_comment, - [253529] = 4, + [222570] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + ACTIONS(1827), 1, anon_sym_LBRACE, - STATE(7893), 1, - sym_block, - STATE(8108), 1, + STATE(7245), 1, sym_comment, - [253542] = 4, - ACTIONS(251), 1, + [222583] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7088), 1, - sym_block, - STATE(8109), 1, + ACTIONS(6494), 1, + sym__entry_separator, + STATE(3490), 1, + aux_sym__multiple_types_repeat1, + STATE(7246), 1, sym_comment, - [253555] = 4, - ACTIONS(251), 1, + [222596] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - STATE(8110), 1, + ACTIONS(2261), 1, + aux_sym_unquoted_token4, + ACTIONS(2263), 1, + anon_sym_LBRACE, + STATE(7247), 1, sym_comment, - STATE(8427), 1, - sym__expr_parenthesized_immediate, - [253568] = 4, + [222609] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12561), 1, + ACTIONS(11693), 1, aux_sym__unquoted_with_expr_token1, - STATE(8111), 1, + STATE(7248), 2, sym_comment, - STATE(8192), 1, aux_sym__unquoted_with_expr_repeat1, - [253581] = 4, + [222620] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12563), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8112), 1, + ACTIONS(11696), 1, + anon_sym_LPAREN2, + ACTIONS(11698), 1, + aux_sym__record_key_token1, + STATE(7249), 1, sym_comment, - STATE(8121), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [253594] = 4, + [222633] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12565), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8113), 1, - sym_comment, - STATE(8123), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [253607] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1779), 1, - aux_sym_unquoted_token2, - ACTIONS(1781), 1, - anon_sym_LBRACE, - STATE(8114), 1, + ACTIONS(5736), 1, + sym__entry_separator, + STATE(2771), 1, + aux_sym__multiple_types_repeat1, + STATE(7250), 1, sym_comment, - [253620] = 4, - ACTIONS(251), 1, + [222646] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5130), 1, - anon_sym_in2, - ACTIONS(12567), 1, - anon_sym_EQ2, - STATE(8115), 1, + ACTIONS(1819), 1, + anon_sym_RBRACE, + ACTIONS(1827), 1, + sym__entry_separator, + STATE(7251), 1, sym_comment, - [253633] = 4, + [222659] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7449), 1, - sym_block, - STATE(8116), 1, + ACTIONS(11700), 1, + sym_identifier, + ACTIONS(11702), 1, + anon_sym_DOLLAR, + STATE(7252), 1, sym_comment, - [253646] = 4, + [222672] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7900), 1, - sym_block, - STATE(8117), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(7253), 1, sym_comment, - [253659] = 4, + STATE(7291), 1, + sym__expr_parenthesized_immediate, + [222685] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(6815), 1, + STATE(6307), 1, sym_block, - STATE(8118), 1, + STATE(7254), 1, sym_comment, - [253672] = 4, + [222698] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, + ACTIONS(4113), 1, anon_sym_LPAREN2, - STATE(8102), 1, - sym__expr_parenthesized_immediate, - STATE(8119), 1, + STATE(7255), 1, sym_comment, - [253685] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - STATE(8112), 1, + STATE(7289), 1, sym__expr_parenthesized_immediate, - STATE(8120), 1, - sym_comment, - [253698] = 4, + [222711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12569), 1, + ACTIONS(11704), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(8121), 1, - sym_comment, - STATE(8141), 1, + STATE(7227), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [253711] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7952), 1, - sym_block, - STATE(8122), 1, + STATE(7256), 1, sym_comment, - [253724] = 4, - ACTIONS(3), 1, + [222724] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12571), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8123), 1, + STATE(7257), 1, sym_comment, - STATE(8141), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [253737] = 4, + ACTIONS(986), 2, + sym__table_head_separator, + anon_sym_DOT2, + [222735] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(6817), 1, + STATE(6932), 1, sym_block, - STATE(8124), 1, + STATE(7258), 1, sym_comment, - [253750] = 4, + [222748] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(5453), 1, + STATE(4655), 1, sym_block, - STATE(8125), 1, + STATE(7259), 1, sym_comment, - [253763] = 4, + [222761] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7575), 1, - sym_block, - STATE(8126), 1, + STATE(7260), 1, sym_comment, - [253776] = 4, + ACTIONS(11341), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [222772] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_RBRACE, - ACTIONS(1848), 1, - sym__entry_separator, - STATE(8127), 1, + ACTIONS(11706), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7204), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7261), 1, sym_comment, - [253789] = 4, + [222785] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12573), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8082), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(8128), 1, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(2495), 1, + sym__entry_separator, + STATE(7262), 1, sym_comment, - [253802] = 3, + [222798] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(8129), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(6943), 1, + sym_block, + STATE(7263), 1, sym_comment, - ACTIONS(12469), 2, - anon_sym_GT2, - anon_sym_AT, - [253813] = 4, - ACTIONS(251), 1, + [222811] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(8130), 1, + ACTIONS(11708), 1, + sym__newline, + ACTIONS(11710), 1, + sym__space, + STATE(7264), 1, sym_comment, - STATE(8201), 1, - sym__expr_parenthesized_immediate, - [253826] = 4, + [222824] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(5102), 1, + STATE(6324), 1, sym_block, - STATE(8131), 1, + STATE(7265), 1, sym_comment, - [253839] = 4, - ACTIONS(3), 1, + [222837] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9699), 1, - sym__entry_separator, - STATE(6028), 1, - aux_sym__multiple_types_repeat1, - STATE(8132), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + STATE(7266), 1, sym_comment, - [253852] = 4, + STATE(7333), 1, + sym__expr_parenthesized_immediate, + [222850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3591), 1, - sym__space, - STATE(1169), 1, - aux_sym_pipe_element_repeat1, - STATE(8133), 1, + ACTIONS(11712), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7243), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7267), 1, sym_comment, - [253865] = 4, - ACTIONS(251), 1, + [222863] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(8134), 1, + ACTIONS(11714), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7268), 1, sym_comment, - STATE(8148), 1, - sym__expr_parenthesized_immediate, - [253878] = 4, + STATE(7320), 1, + aux_sym__unquoted_with_expr_repeat1, + [222876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2512), 1, - anon_sym_RBRACE, - ACTIONS(2514), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(8135), 1, + STATE(7194), 1, + aux_sym__multiple_types_repeat1, + STATE(7269), 1, sym_comment, - [253891] = 4, + [222889] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7519), 1, + STATE(6327), 1, sym_block, - STATE(8136), 1, + STATE(7270), 1, sym_comment, - [253904] = 4, + [222902] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7586), 1, + STATE(6564), 1, sym_block, - STATE(8137), 1, - sym_comment, - [253917] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5276), 1, - sym__entry_separator, - ACTIONS(5279), 1, - anon_sym_RBRACE, - STATE(8138), 1, + STATE(7271), 1, sym_comment, - [253930] = 4, + [222915] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_LPAREN2, - STATE(8139), 1, - sym_comment, - STATE(8140), 1, - sym__expr_parenthesized_immediate, - [253943] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12575), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8140), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4409), 1, + sym_block, + STATE(7272), 1, sym_comment, - STATE(8151), 1, - aux_sym__unquoted_with_expr_repeat1, - [253956] = 3, + [222928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12577), 1, + ACTIONS(11716), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(8141), 2, - sym_comment, + STATE(7227), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [253967] = 4, + STATE(7273), 1, + sym_comment, + [222941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12580), 1, + ACTIONS(11718), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(8141), 1, + STATE(7227), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(8142), 1, + STATE(7274), 1, sym_comment, - [253980] = 4, + [222954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12582), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8141), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(8143), 1, + ACTIONS(11720), 1, + anon_sym_RBRACE, + ACTIONS(11722), 1, + sym__entry_separator, + STATE(7275), 1, sym_comment, - [253993] = 4, - ACTIONS(251), 1, + [222967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7697), 1, - sym_block, - STATE(8144), 1, + ACTIONS(2497), 1, + anon_sym_RBRACE, + ACTIONS(2499), 1, + sym__entry_separator, + STATE(7276), 1, sym_comment, - [254006] = 4, + [222980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12584), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8145), 1, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(2140), 1, + sym__entry_separator, + STATE(7277), 1, sym_comment, - STATE(8153), 1, - aux_sym__unquoted_with_expr_repeat1, - [254019] = 4, + [222993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12586), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8146), 1, + ACTIONS(11724), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7227), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7278), 1, sym_comment, - STATE(8173), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [254032] = 4, - ACTIONS(251), 1, + [223006] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7681), 1, - sym_block, - STATE(8147), 1, + ACTIONS(11726), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7279), 1, sym_comment, - [254045] = 4, + [223019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12588), 1, + ACTIONS(11728), 1, aux_sym__unquoted_with_expr_token1, - STATE(8148), 1, + STATE(7280), 1, sym_comment, - STATE(8159), 1, + STATE(7296), 1, aux_sym__unquoted_with_expr_repeat1, - [254058] = 4, + [223032] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12590), 1, + ACTIONS(11730), 1, aux_sym__unquoted_with_expr_token1, - STATE(8149), 1, + STATE(7281), 1, sym_comment, - STATE(8160), 1, + STATE(7297), 1, aux_sym__unquoted_with_expr_repeat1, - [254071] = 4, + [223045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12592), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7980), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(8150), 1, + ACTIONS(2043), 1, + anon_sym_RBRACE, + ACTIONS(2049), 1, + sym__entry_separator, + STATE(7282), 1, sym_comment, - [254084] = 4, + [223058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12594), 1, + ACTIONS(11732), 1, aux_sym__unquoted_with_expr_token1, - STATE(8151), 1, - sym_comment, - STATE(8192), 1, + STATE(7248), 1, aux_sym__unquoted_with_expr_repeat1, - [254097] = 4, + STATE(7283), 1, + sym_comment, + [223071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12596), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7981), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(8152), 1, + ACTIONS(1922), 1, + anon_sym_RBRACE, + ACTIONS(1924), 1, + sym__entry_separator, + STATE(7284), 1, sym_comment, - [254110] = 4, + [223084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12598), 1, + ACTIONS(11734), 1, aux_sym__unquoted_with_expr_token1, - STATE(8153), 1, - sym_comment, - STATE(8192), 1, + STATE(7248), 1, aux_sym__unquoted_with_expr_repeat1, - [254123] = 4, + STATE(7285), 1, + sym_comment, + [223097] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7953), 1, - sym_block, - STATE(8154), 1, + ACTIONS(11736), 1, + anon_sym_DASH2, + STATE(7286), 1, sym_comment, - [254136] = 4, + STATE(7600), 1, + sym_param_short_flag, + [223110] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7965), 1, - sym_block, - STATE(8155), 1, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + STATE(7287), 1, sym_comment, - [254149] = 4, + STATE(7359), 1, + sym__expr_parenthesized_immediate, + [223123] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(1727), 1, + aux_sym_unquoted_token2, + ACTIONS(1729), 1, anon_sym_LBRACE, - STATE(7536), 1, - sym_block, - STATE(8156), 1, + STATE(7288), 1, sym_comment, - [254162] = 4, + [223136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12600), 1, - sym__newline, - ACTIONS(12602), 1, - sym__space, - STATE(8157), 1, + ACTIONS(11738), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7289), 1, sym_comment, - [254175] = 4, + STATE(7306), 1, + aux_sym__unquoted_with_expr_repeat1, + [223149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12604), 1, - anon_sym_RBRACK, - ACTIONS(12606), 1, - sym__entry_separator, - STATE(8158), 1, + ACTIONS(11740), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7283), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7290), 1, sym_comment, - [254188] = 4, + [223162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12608), 1, + ACTIONS(11742), 1, aux_sym__unquoted_with_expr_token1, - STATE(8159), 1, - sym_comment, - STATE(8192), 1, + STATE(7279), 1, aux_sym__unquoted_with_expr_repeat1, - [254201] = 4, + STATE(7291), 1, + sym_comment, + [223175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12610), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8160), 1, + ACTIONS(11744), 1, + anon_sym_RBRACK, + ACTIONS(11746), 1, + sym__entry_separator, + STATE(7292), 1, sym_comment, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - [254214] = 4, - ACTIONS(251), 1, + [223188] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7093), 1, - sym_block, - STATE(8161), 1, + ACTIONS(2285), 1, + sym__entry_separator, + STATE(650), 1, + aux_sym__multiple_types_repeat1, + STATE(7293), 1, sym_comment, - [254227] = 4, - ACTIONS(251), 1, + [223201] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7370), 1, - sym_block, - STATE(8162), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym__unquoted_in_list_token4, + STATE(7294), 1, sym_comment, - [254240] = 3, - ACTIONS(251), 1, + [223214] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(8163), 1, + ACTIONS(11748), 1, + sym__newline, + ACTIONS(11750), 1, + sym__space, + STATE(7295), 1, sym_comment, - ACTIONS(12612), 2, - anon_sym_RBRACK, - sym_hex_digit, - [254251] = 4, - ACTIONS(251), 1, + [223227] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7374), 1, - sym_block, - STATE(8164), 1, + ACTIONS(11752), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7296), 1, sym_comment, - [254264] = 4, - ACTIONS(251), 1, + [223240] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10510), 1, - anon_sym_LBRACE, - STATE(7747), 1, - sym_val_record, - STATE(8165), 1, + ACTIONS(11754), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7297), 1, sym_comment, - [254277] = 4, - ACTIONS(251), 1, + [223253] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - STATE(7544), 1, - sym_block, - STATE(8166), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(7298), 1, sym_comment, - [254290] = 4, + [223266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12614), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8146), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(8167), 1, + ACTIONS(10144), 1, + anon_sym_RBRACE, + ACTIONS(10146), 1, + sym__entry_separator, + STATE(7299), 1, sym_comment, - [254303] = 4, + [223279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - ACTIONS(2274), 1, - anon_sym_LBRACE, - STATE(8168), 1, + ACTIONS(11756), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7300), 1, sym_comment, - [254316] = 4, - ACTIONS(251), 1, + STATE(7315), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [223292] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(5307), 1, - sym_block, - STATE(8169), 1, + ACTIONS(11758), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7301), 1, sym_comment, - [254329] = 4, - ACTIONS(251), 1, + STATE(7319), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [223305] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7685), 1, - sym_block, - STATE(8170), 1, + ACTIONS(2261), 1, + anon_sym_RBRACE, + ACTIONS(2263), 1, + sym__entry_separator, + STATE(7302), 1, sym_comment, - [254342] = 4, - ACTIONS(251), 1, + [223318] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_LBRACE, - ACTIONS(12616), 1, - anon_sym_EQ2, - STATE(8171), 1, + ACTIONS(11760), 1, + anon_sym_RBRACK, + ACTIONS(11762), 1, + sym__entry_separator, + STATE(7303), 1, sym_comment, - [254355] = 4, + [223331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6760), 1, + ACTIONS(5907), 1, + anon_sym_RBRACK, + ACTIONS(5913), 1, sym__entry_separator, - STATE(3684), 1, - aux_sym__multiple_types_repeat1, - STATE(8172), 1, + STATE(7304), 1, sym_comment, - [254368] = 3, + [223344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12618), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8173), 2, + ACTIONS(11764), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7305), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [254379] = 4, + [223357] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2516), 1, - anon_sym_RBRACE, - ACTIONS(2518), 1, + ACTIONS(11766), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7306), 1, + sym_comment, + [223370] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7837), 1, + anon_sym_RBRACK, + ACTIONS(7839), 1, sym__entry_separator, - STATE(8174), 1, + STATE(7307), 1, sym_comment, - [254392] = 4, - ACTIONS(251), 1, + [223383] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7375), 1, - sym_block, - STATE(8175), 1, + ACTIONS(11768), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7308), 1, sym_comment, - [254405] = 4, - ACTIONS(251), 1, + [223396] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7376), 1, - sym_block, - STATE(8176), 1, + ACTIONS(11770), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7309), 1, + sym_comment, + [223409] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9143), 1, + sym__entry_separator, + STATE(5480), 1, + aux_sym__multiple_types_repeat1, + STATE(7310), 1, sym_comment, - [254418] = 4, + [223422] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(7455), 1, - sym_block, - STATE(8177), 1, + STATE(7311), 1, sym_comment, - [254431] = 4, + ACTIONS(990), 2, + sym__table_head_separator, + anon_sym_DOT2, + [223433] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7094), 1, + STATE(4683), 1, sym_block, - STATE(8178), 1, + STATE(7312), 1, sym_comment, - [254444] = 4, + [223446] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12621), 1, + ACTIONS(11772), 1, anon_sym_RBRACK, - ACTIONS(12623), 1, + ACTIONS(11774), 1, sym__entry_separator, - STATE(8179), 1, + STATE(7313), 1, sym_comment, - [254457] = 4, + [223459] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7092), 1, - sym_block, - STATE(8180), 1, + STATE(7314), 1, + sym_comment, + ACTIONS(982), 2, + sym__table_head_separator, + anon_sym_DOT2, + [223470] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11776), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7227), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7315), 1, sym_comment, - [254470] = 4, + [223483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACK, - ACTIONS(8361), 1, + ACTIONS(9143), 1, sym__entry_separator, - STATE(8181), 1, + STATE(5481), 1, + aux_sym__multiple_types_repeat1, + STATE(7316), 1, sym_comment, - [254483] = 4, - ACTIONS(251), 1, + [223496] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1699), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(8182), 1, + ACTIONS(11778), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7317), 2, sym_comment, - [254496] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [223507] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(6733), 1, - sym_block, - STATE(8183), 1, + ACTIONS(2241), 1, + anon_sym_RBRACE, + ACTIONS(2245), 1, + sym__entry_separator, + STATE(7318), 1, + sym_comment, + [223520] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11781), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7227), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7319), 1, sym_comment, - [254509] = 4, + [223533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12625), 1, + ACTIONS(11783), 1, aux_sym__unquoted_with_expr_token1, - STATE(8039), 1, + STATE(7248), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(8184), 1, + STATE(7320), 1, + sym_comment, + [223546] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6031), 1, + sym__entry_separator, + STATE(3070), 1, + aux_sym__multiple_types_repeat1, + STATE(7321), 1, sym_comment, - [254522] = 4, + [223559] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12627), 1, + ACTIONS(11785), 1, aux_sym__unquoted_with_expr_token1, - STATE(8040), 1, + STATE(7248), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(8185), 1, + STATE(7322), 1, sym_comment, - [254535] = 4, + [223572] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7708), 1, + STATE(4580), 1, sym_block, - STATE(8186), 1, + STATE(7323), 1, sym_comment, - [254548] = 4, + [223585] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7056), 1, + STATE(6774), 1, sym_block, - STATE(8187), 1, + STATE(7324), 1, sym_comment, - [254561] = 4, + [223598] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10287), 1, - anon_sym_LBRACE, - STATE(7007), 1, - sym_val_record, - STATE(8188), 1, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(7325), 1, sym_comment, - [254574] = 4, - ACTIONS(3), 1, + STATE(7360), 1, + sym__expr_parenthesized_immediate, + [223611] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(2228), 1, anon_sym_LBRACE, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(8189), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(7326), 1, sym_comment, - [254587] = 4, + [223624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym_unquoted_token4, - STATE(8190), 1, + ACTIONS(3515), 1, + sym__space, + STATE(1148), 1, + aux_sym_pipe_element_repeat1, + STATE(7327), 1, sym_comment, - [254600] = 4, + [223637] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7377), 1, + STATE(6252), 1, sym_block, - STATE(8191), 1, + STATE(7328), 1, sym_comment, - [254613] = 3, - ACTIONS(3), 1, + [223650] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12629), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8192), 2, + ACTIONS(1655), 1, + anon_sym_LPAREN2, + STATE(7228), 1, + sym__expr_parenthesized_immediate, + STATE(7329), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [254624] = 4, - ACTIONS(251), 1, + [223663] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - STATE(7381), 1, - sym_block, - STATE(8193), 1, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(7330), 1, sym_comment, - [254637] = 4, - ACTIONS(3), 1, + [223676] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12632), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8194), 1, + ACTIONS(5522), 1, + anon_sym_LPAREN2, + STATE(7230), 1, + sym__expr_parenthesized_immediate, + STATE(7331), 1, sym_comment, - STATE(8213), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [254650] = 4, + [223689] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(7131), 1, - sym_block, - STATE(8195), 1, + STATE(7332), 1, sym_comment, - [254663] = 4, + ACTIONS(11787), 2, + anon_sym_RBRACK, + sym_hex_digit, + [223700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12634), 1, + ACTIONS(11789), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(8017), 1, + STATE(7273), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(8196), 1, + STATE(7333), 1, + sym_comment, + [223713] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11791), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7308), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7334), 1, + sym_comment, + [223726] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4113), 1, + anon_sym_LPAREN2, + STATE(7335), 1, sym_comment, - [254676] = 4, + STATE(7642), 1, + sym__expr_parenthesized_immediate, + [223739] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(1771), 1, + aux_sym_unquoted_token2, + ACTIONS(1773), 1, anon_sym_LBRACE, - STATE(7089), 1, - sym_block, - STATE(8197), 1, + STATE(7336), 1, sym_comment, - [254689] = 4, + [223752] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7391), 1, + STATE(7007), 1, sym_block, - STATE(8198), 1, + STATE(7337), 1, sym_comment, - [254702] = 4, + [223765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2064), 1, - anon_sym_RBRACE, - ACTIONS(2070), 1, - sym__entry_separator, - STATE(8199), 1, + ACTIONS(11793), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7274), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7338), 1, sym_comment, - [254715] = 4, + [223778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, + ACTIONS(2218), 1, + anon_sym_RBRACE, + ACTIONS(2222), 1, sym__entry_separator, - ACTIONS(8501), 1, - anon_sym_GT2, - STATE(8200), 1, - sym_comment, - [254728] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12636), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8201), 1, - sym_comment, - STATE(8208), 1, - aux_sym__unquoted_with_expr_repeat1, - [254741] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12638), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8202), 1, + STATE(7339), 1, sym_comment, - STATE(8209), 1, - aux_sym__unquoted_with_expr_repeat1, - [254754] = 4, + [223791] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + ACTIONS(2216), 1, anon_sym_LBRACE, - STATE(7327), 1, - sym_block, - STATE(8203), 1, + STATE(7340), 1, sym_comment, - [254767] = 4, + [223804] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + ACTIONS(2222), 1, anon_sym_LBRACE, - STATE(5240), 1, - sym_block, - STATE(8204), 1, + STATE(7341), 1, sym_comment, - [254780] = 4, + [223817] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7741), 1, + STATE(6443), 1, sym_block, - STATE(8205), 1, - sym_comment, - [254793] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_LPAREN2, - ACTIONS(2260), 1, - aux_sym__unquoted_in_record_token4, - STATE(8206), 1, - sym_comment, - [254806] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LPAREN2, - STATE(8194), 1, - sym__expr_parenthesized_immediate, - STATE(8207), 1, + STATE(7342), 1, sym_comment, - [254819] = 4, + [223830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12640), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(8208), 1, + ACTIONS(5017), 1, + sym__entry_separator, + ACTIONS(5020), 1, + anon_sym_RBRACE, + STATE(7343), 1, sym_comment, - [254832] = 4, + [223843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12642), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8192), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(8209), 1, + ACTIONS(2243), 1, + anon_sym_LPAREN2, + ACTIONS(2247), 1, + aux_sym_unquoted_token4, + STATE(7344), 1, sym_comment, - [254845] = 4, + [223856] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(1802), 1, anon_sym_LBRACE, - STATE(7068), 1, - sym_block, - STATE(8210), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(7345), 1, sym_comment, - [254858] = 4, + [223869] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7395), 1, + STATE(6447), 1, sym_block, - STATE(8211), 1, + STATE(7346), 1, sym_comment, - [254871] = 4, + [223882] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7070), 1, + STATE(6263), 1, sym_block, - STATE(8212), 1, + STATE(7347), 1, sym_comment, - [254884] = 4, + [223895] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12644), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8141), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(8213), 1, + ACTIONS(11795), 1, + anon_sym_RBRACE, + ACTIONS(11797), 1, + sym__entry_separator, + STATE(7348), 1, sym_comment, - [254897] = 4, + [223908] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(1665), 1, anon_sym_LBRACE, - STATE(7071), 1, - sym_block, - STATE(8214), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(7349), 1, sym_comment, - [254910] = 4, + [223921] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(1735), 1, + aux_sym_unquoted_token2, + ACTIONS(1737), 1, anon_sym_LBRACE, - STATE(7392), 1, - sym_block, - STATE(8215), 1, + STATE(7350), 1, sym_comment, - [254923] = 4, + [223934] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6414), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7342), 1, + STATE(6164), 1, sym_block, - STATE(8216), 1, + STATE(7351), 1, sym_comment, - [254936] = 4, + [223947] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7072), 1, + STATE(6964), 1, sym_block, - STATE(8217), 1, + STATE(7352), 1, sym_comment, - [254949] = 4, + [223960] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(7073), 1, + STATE(6265), 1, sym_block, - STATE(8218), 1, + STATE(7353), 1, sym_comment, - [254962] = 4, + [223973] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7074), 1, + STATE(6837), 1, sym_block, - STATE(8219), 1, + STATE(7354), 1, sym_comment, - [254975] = 4, + [223986] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6231), 1, anon_sym_LBRACE, - STATE(7082), 1, + STATE(6996), 1, sym_block, - STATE(8220), 1, + STATE(7355), 1, sym_comment, - [254988] = 4, + [223999] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(1786), 1, + aux_sym_unquoted_token2, + ACTIONS(1788), 1, anon_sym_LBRACE, - STATE(7083), 1, - sym_block, - STATE(8221), 1, + STATE(7356), 1, sym_comment, - [255001] = 4, - ACTIONS(251), 1, + [224012] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(2253), 1, anon_sym_LBRACE, - STATE(7084), 1, - sym_block, - STATE(8222), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(7357), 1, + sym_comment, + [224025] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + ACTIONS(2259), 1, + anon_sym_LBRACE, + STATE(7358), 1, + sym_comment, + [224038] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11799), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7256), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7359), 1, sym_comment, - [255014] = 4, + [224051] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12646), 1, + ACTIONS(11801), 1, aux_sym__unquoted_with_expr_token1, - STATE(8192), 1, + STATE(7322), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(8223), 1, + STATE(7360), 1, sym_comment, - [255027] = 3, + [224064] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12648), 1, - anon_sym_RBRACE, - STATE(8224), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(6128), 1, + sym_block, + STATE(7361), 1, sym_comment, - [255037] = 3, - ACTIONS(251), 1, + [224077] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12650), 1, - sym_raw_string_end, - STATE(8225), 1, + ACTIONS(11803), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7227), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7362), 1, sym_comment, - [255047] = 3, + [224090] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5832), 1, - aux_sym_record_entry_token1, - STATE(8226), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(5023), 1, + sym_block, + STATE(7363), 1, sym_comment, - [255057] = 3, - ACTIONS(251), 1, + [224103] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9217), 1, - aux_sym_unquoted_token2, - STATE(8227), 1, + ACTIONS(2214), 1, + anon_sym_RBRACE, + ACTIONS(2216), 1, + sym__entry_separator, + STATE(7364), 1, sym_comment, - [255067] = 3, + [224116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7487), 1, - aux_sym_unquoted_token4, - STATE(8228), 1, + ACTIONS(11805), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7278), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7365), 1, sym_comment, - [255077] = 3, + [224129] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12652), 1, + ACTIONS(6213), 1, anon_sym_LBRACE, - STATE(8229), 1, + STATE(6143), 1, + sym_block, + STATE(7366), 1, sym_comment, - [255087] = 3, - ACTIONS(251), 1, + [224142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12654), 1, - anon_sym_RPAREN, - STATE(8230), 1, + ACTIONS(11807), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7227), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7367), 1, sym_comment, - [255097] = 3, + [224155] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12656), 1, - anon_sym_RBRACK, - STATE(8231), 1, + ACTIONS(6231), 1, + anon_sym_LBRACE, + STATE(7179), 1, + sym_block, + STATE(7368), 1, sym_comment, - [255107] = 3, + [224168] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12658), 1, - anon_sym_RBRACK, - STATE(8232), 1, + ACTIONS(6213), 1, + anon_sym_LBRACE, + STATE(4765), 1, + sym_block, + STATE(7369), 1, sym_comment, - [255117] = 3, + [224181] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12660), 1, - sym__table_head_separator, - STATE(8233), 1, + ACTIONS(11809), 1, + anon_sym_RBRACE, + STATE(7370), 1, sym_comment, - [255127] = 3, + [224191] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12662), 1, - anon_sym_RPAREN, - STATE(8234), 1, + ACTIONS(11811), 1, + anon_sym_EQ, + STATE(7371), 1, sym_comment, - [255137] = 3, + [224201] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12664), 1, - anon_sym_RPAREN, - STATE(8235), 1, + ACTIONS(11813), 1, + anon_sym_LBRACE, + STATE(7372), 1, + sym_comment, + [224211] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11815), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7373), 1, sym_comment, - [255147] = 3, + [224221] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12666), 1, - anon_sym_RPAREN, - STATE(8236), 1, + ACTIONS(11817), 1, + sym_raw_string_end, + STATE(7374), 1, sym_comment, - [255157] = 3, + [224231] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12668), 1, - anon_sym_RBRACE, - STATE(8237), 1, + ACTIONS(2289), 1, + anon_sym_COLON2, + STATE(7375), 1, sym_comment, - [255167] = 3, + [224241] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12670), 1, + ACTIONS(11819), 1, anon_sym_RBRACE, - STATE(8238), 1, + STATE(7376), 1, sym_comment, - [255177] = 3, + [224251] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12672), 1, - anon_sym_RPAREN2, - STATE(8239), 1, + ACTIONS(11821), 1, + anon_sym_EQ, + STATE(7377), 1, sym_comment, - [255187] = 3, + [224261] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12674), 1, - sym_param_short_flag_identifier, - STATE(8240), 1, + ACTIONS(11823), 1, + sym_identifier, + STATE(7378), 1, sym_comment, - [255197] = 3, + [224271] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12676), 1, - anon_sym_RBRACK, - STATE(8241), 1, + ACTIONS(5532), 1, + aux_sym__unquoted_in_list_token2, + STATE(7379), 1, sym_comment, - [255207] = 3, + [224281] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12678), 1, + ACTIONS(11825), 1, anon_sym_EQ, - STATE(8242), 1, + STATE(7380), 1, sym_comment, - [255217] = 3, + [224291] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12680), 1, - sym_raw_string_end, - STATE(8243), 1, + ACTIONS(11827), 1, + anon_sym_RBRACE, + STATE(7381), 1, sym_comment, - [255227] = 3, + [224301] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12682), 1, + ACTIONS(11829), 1, + anon_sym_RBRACE, + STATE(7382), 1, + sym_comment, + [224311] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11831), 1, anon_sym_RPAREN, - STATE(8244), 1, + STATE(7383), 1, sym_comment, - [255237] = 3, + [224321] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12684), 1, - sym_raw_string_end, - STATE(8245), 1, + ACTIONS(11833), 1, + sym_identifier, + STATE(7384), 1, sym_comment, - [255247] = 3, + [224331] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12686), 1, + ACTIONS(11835), 1, anon_sym_RBRACE, - STATE(8246), 1, + STATE(7385), 1, sym_comment, - [255257] = 3, + [224341] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12688), 1, - sym__table_head_separator, - STATE(8247), 1, + ACTIONS(3402), 1, + anon_sym_COLON2, + STATE(7386), 1, sym_comment, - [255267] = 3, + [224351] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12690), 1, - anon_sym_RPAREN, - STATE(8248), 1, + ACTIONS(11837), 1, + anon_sym_EQ, + STATE(7387), 1, sym_comment, - [255277] = 3, + [224361] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12692), 1, - anon_sym_GT2, - STATE(8249), 1, + ACTIONS(11839), 1, + anon_sym_EQ, + STATE(7388), 1, sym_comment, - [255287] = 3, + [224371] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12694), 1, - sym_raw_string_end, - STATE(8250), 1, + ACTIONS(11841), 1, + anon_sym_RPAREN, + STATE(7389), 1, sym_comment, - [255297] = 3, + [224381] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_unquoted_token2, - STATE(8251), 1, + ACTIONS(11843), 1, + anon_sym_RBRACK, + STATE(7390), 1, sym_comment, - [255307] = 3, + [224391] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12696), 1, - anon_sym_RBRACE, - STATE(8252), 1, + ACTIONS(11762), 1, + anon_sym_LBRACE, + STATE(7391), 1, sym_comment, - [255317] = 3, + [224401] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12698), 1, - anon_sym_RBRACK, - STATE(8253), 1, + ACTIONS(7152), 1, + aux_sym__unquoted_in_record_token2, + STATE(7392), 1, sym_comment, - [255327] = 3, + [224411] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12700), 1, - anon_sym_RPAREN, - STATE(8254), 1, + ACTIONS(11845), 1, + sym_raw_string_end, + STATE(7393), 1, sym_comment, - [255337] = 3, + [224421] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12702), 1, - anon_sym_RBRACE, - STATE(8255), 1, + ACTIONS(5555), 1, + aux_sym_unquoted_token2, + STATE(7394), 1, sym_comment, - [255347] = 3, + [224431] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12704), 1, - anon_sym_RBRACE, - STATE(8256), 1, + ACTIONS(11847), 1, + sym_raw_string_end, + STATE(7395), 1, sym_comment, - [255357] = 3, + [224441] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12706), 1, - anon_sym_EQ, - STATE(8257), 1, + ACTIONS(11849), 1, + sym_raw_string_end, + STATE(7396), 1, sym_comment, - [255367] = 3, + [224451] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12708), 1, + ACTIONS(11851), 1, anon_sym_RBRACE, - STATE(8258), 1, + STATE(7397), 1, sym_comment, - [255377] = 3, - ACTIONS(3), 1, + [224461] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12710), 1, - aux_sym_cmd_identifier_token41, - STATE(8259), 1, + ACTIONS(11853), 1, + anon_sym_GT2, + STATE(7398), 1, sym_comment, - [255387] = 3, + [224471] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12712), 1, - sym_raw_string_end, - STATE(8260), 1, + ACTIONS(1804), 1, + aux_sym_unquoted_token2, + STATE(7399), 1, sym_comment, - [255397] = 3, + [224481] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6728), 1, + ACTIONS(8731), 1, aux_sym_unquoted_token2, - STATE(8261), 1, + STATE(7400), 1, sym_comment, - [255407] = 3, - ACTIONS(3), 1, + [224491] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12714), 1, - aux_sym_cmd_identifier_token41, - STATE(8262), 1, + ACTIONS(4657), 1, + aux_sym_unquoted_token2, + STATE(7401), 1, sym_comment, - [255417] = 3, - ACTIONS(3), 1, + [224501] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12716), 1, - aux_sym_cmd_identifier_token41, - STATE(8263), 1, + ACTIONS(11855), 1, + sym__table_head_separator, + STATE(7402), 1, sym_comment, - [255427] = 3, - ACTIONS(251), 1, + [224511] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12718), 1, - anon_sym_EQ_GT, - STATE(8264), 1, + ACTIONS(11857), 1, + aux_sym_cmd_identifier_token41, + STATE(7403), 1, sym_comment, - [255437] = 3, + [224521] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(8470), 1, aux_sym_unquoted_token4, - STATE(8265), 1, + STATE(7404), 1, sym_comment, - [255447] = 3, + [224531] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12720), 1, + ACTIONS(11859), 1, anon_sym_RBRACK, - STATE(8266), 1, + STATE(7405), 1, sym_comment, - [255457] = 3, + [224541] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2232), 1, - aux_sym_unquoted_token2, - STATE(8267), 1, + ACTIONS(503), 1, + anon_sym_RPAREN2, + STATE(7406), 1, sym_comment, - [255467] = 3, + [224551] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12722), 1, + ACTIONS(11861), 1, anon_sym_RPAREN, - STATE(8268), 1, + STATE(7407), 1, sym_comment, - [255477] = 3, + [224561] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12724), 1, - sym_raw_string_end, - STATE(8269), 1, + ACTIONS(11863), 1, + anon_sym_RBRACE, + STATE(7408), 1, sym_comment, - [255487] = 3, + [224571] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12726), 1, + ACTIONS(11865), 1, sym_raw_string_end, - STATE(8270), 1, + STATE(7409), 1, sym_comment, - [255497] = 3, + [224581] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12728), 1, - anon_sym_EQ, - STATE(8271), 1, + ACTIONS(11867), 1, + anon_sym_RBRACK, + STATE(7410), 1, sym_comment, - [255507] = 3, + [224591] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12730), 1, + ACTIONS(11869), 1, anon_sym_RBRACE, - STATE(8272), 1, - sym_comment, - [255517] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12732), 1, - sym__space, - STATE(8273), 1, + STATE(7411), 1, sym_comment, - [255527] = 3, + [224601] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12357), 1, - anon_sym_EQ_GT, - STATE(8274), 1, + ACTIONS(11871), 1, + sym__table_head_separator, + STATE(7412), 1, sym_comment, - [255537] = 3, + [224611] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12734), 1, - sym_raw_string_end, - STATE(8275), 1, + ACTIONS(11873), 1, + anon_sym_GT2, + STATE(7413), 1, sym_comment, - [255547] = 3, + [224621] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12736), 1, - anon_sym_EQ, - STATE(8276), 1, + ACTIONS(11875), 1, + anon_sym_RPAREN, + STATE(7414), 1, sym_comment, - [255557] = 3, + [224631] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12738), 1, + ACTIONS(11877), 1, anon_sym_RBRACE, - STATE(8277), 1, - sym_comment, - [255567] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12606), 1, - anon_sym_LBRACE, - STATE(8278), 1, + STATE(7415), 1, sym_comment, - [255577] = 3, + [224641] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5844), 1, - aux_sym_record_entry_token1, - STATE(8279), 1, + ACTIONS(11879), 1, + anon_sym_RBRACE, + STATE(7416), 1, sym_comment, - [255587] = 3, + [224651] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12740), 1, + ACTIONS(11881), 1, anon_sym_RBRACE, - STATE(8280), 1, + STATE(7417), 1, sym_comment, - [255597] = 3, + [224661] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12742), 1, + ACTIONS(11883), 1, anon_sym_RBRACE, - STATE(8281), 1, + STATE(7418), 1, sym_comment, - [255607] = 3, + [224671] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12744), 1, - ts_builtin_sym_end, - STATE(8282), 1, + ACTIONS(11885), 1, + aux_sym_env_var_token2, + STATE(7419), 1, sym_comment, - [255617] = 3, + [224681] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12746), 1, - anon_sym_RBRACE, - STATE(8283), 1, + ACTIONS(11887), 1, + anon_sym_RPAREN, + STATE(7420), 1, sym_comment, - [255627] = 3, + [224691] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12748), 1, - sym_raw_string_end, - STATE(8284), 1, + ACTIONS(11889), 1, + anon_sym_EQ, + STATE(7421), 1, sym_comment, - [255637] = 3, + [224701] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10525), 1, - aux_sym_unquoted_token2, - STATE(8285), 1, + ACTIONS(1667), 1, + aux_sym__unquoted_in_record_token2, + STATE(7422), 1, sym_comment, - [255647] = 3, - ACTIONS(251), 1, + [224711] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12750), 1, - anon_sym_RBRACE, - STATE(8286), 1, + ACTIONS(2174), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7423), 1, sym_comment, - [255657] = 3, + [224721] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10525), 1, + ACTIONS(7045), 1, aux_sym_unquoted_token4, - STATE(8287), 1, + STATE(7424), 1, sym_comment, - [255667] = 3, + [224731] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12752), 1, - anon_sym_LPAREN2, - STATE(8288), 1, + ACTIONS(11891), 1, + anon_sym_RBRACK, + STATE(7425), 1, sym_comment, - [255677] = 3, + [224741] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12754), 1, - sym_identifier, - STATE(8289), 1, + ACTIONS(11893), 1, + anon_sym_RBRACE, + STATE(7426), 1, sym_comment, - [255687] = 3, + [224751] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12756), 1, - anon_sym_RBRACK, - STATE(8290), 1, + ACTIONS(11895), 1, + anon_sym_RPAREN, + STATE(7427), 1, sym_comment, - [255697] = 3, + [224761] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12758), 1, + ACTIONS(11897), 1, anon_sym_RPAREN, - STATE(8291), 1, + STATE(7428), 1, sym_comment, - [255707] = 3, + [224771] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12760), 1, - anon_sym_RBRACE, - STATE(8292), 1, + ACTIONS(11899), 1, + ts_builtin_sym_end, + STATE(7429), 1, sym_comment, - [255717] = 3, + [224781] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12762), 1, + ACTIONS(11901), 1, anon_sym_RBRACE, - STATE(8293), 1, + STATE(7430), 1, sym_comment, - [255727] = 3, + [224791] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12545), 1, - aux_sym__record_key_token1, - STATE(8294), 1, + ACTIONS(11903), 1, + sym__space, + STATE(7431), 1, sym_comment, - [255737] = 3, + [224801] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12764), 1, + ACTIONS(11905), 1, anon_sym_RBRACE, - STATE(8295), 1, + STATE(7432), 1, sym_comment, - [255747] = 3, + [224811] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12766), 1, - anon_sym_RPAREN, - STATE(8296), 1, + ACTIONS(1621), 1, + aux_sym_unquoted_token2, + STATE(7433), 1, sym_comment, - [255757] = 3, + [224821] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12768), 1, - anon_sym_RBRACK, - STATE(8297), 1, + ACTIONS(11907), 1, + anon_sym_RBRACE, + STATE(7434), 1, sym_comment, - [255767] = 3, + [224831] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9330), 1, - aux_sym__unquoted_in_list_token2, - STATE(8298), 1, + ACTIONS(11909), 1, + anon_sym_RBRACE, + STATE(7435), 1, sym_comment, - [255777] = 3, + [224841] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12770), 1, + ACTIONS(11911), 1, anon_sym_RPAREN, - STATE(8299), 1, + STATE(7436), 1, sym_comment, - [255787] = 3, + [224851] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12772), 1, + ACTIONS(11913), 1, anon_sym_LBRACE, - STATE(8300), 1, + STATE(7437), 1, sym_comment, - [255797] = 3, + [224861] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12774), 1, - anon_sym_GT2, - STATE(8301), 1, + ACTIONS(11913), 1, + anon_sym_LBRACE, + STATE(7438), 1, sym_comment, - [255807] = 3, + [224871] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12776), 1, - sym_raw_string_content, - STATE(8302), 1, + ACTIONS(11915), 1, + anon_sym_RBRACK, + STATE(7439), 1, sym_comment, - [255817] = 3, + [224881] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12778), 1, - sym_raw_string_end, - STATE(8303), 1, - sym_comment, - [255827] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12780), 1, - aux_sym_cmd_identifier_token41, - STATE(8304), 1, + ACTIONS(11917), 1, + anon_sym_LBRACE, + STATE(7440), 1, sym_comment, - [255837] = 3, + [224891] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_LBRACK2, - STATE(8305), 1, + ACTIONS(11919), 1, + anon_sym_LBRACE, + STATE(7441), 1, sym_comment, - [255847] = 3, + [224901] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12782), 1, - sym_raw_string_end, - STATE(8306), 1, + ACTIONS(11921), 1, + anon_sym_RPAREN, + STATE(7442), 1, sym_comment, - [255857] = 3, + [224911] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12784), 1, + ACTIONS(11923), 1, anon_sym_RBRACE, - STATE(8307), 1, + STATE(7443), 1, sym_comment, - [255867] = 3, + [224921] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12786), 1, + ACTIONS(11925), 1, anon_sym_LBRACE, - STATE(8308), 1, + STATE(7444), 1, sym_comment, - [255877] = 3, - ACTIONS(251), 1, + [224931] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12788), 1, - anon_sym_EQ, - STATE(8309), 1, + ACTIONS(4657), 1, + aux_sym_unquoted_token4, + STATE(7445), 1, sym_comment, - [255887] = 3, + [224941] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3499), 1, - aux_sym_record_entry_token1, - STATE(8310), 1, + ACTIONS(11927), 1, + anon_sym_RBRACK, + STATE(7446), 1, sym_comment, - [255897] = 3, + [224951] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12790), 1, + ACTIONS(11929), 1, anon_sym_RPAREN, - STATE(8311), 1, + STATE(7447), 1, sym_comment, - [255907] = 3, + [224961] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12792), 1, - anon_sym_EQ, - STATE(8312), 1, + ACTIONS(11931), 1, + anon_sym_LBRACE, + STATE(7448), 1, sym_comment, - [255917] = 3, + [224971] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12794), 1, - anon_sym_RPAREN, - STATE(8313), 1, - sym_comment, - [255927] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12796), 1, - aux_sym_cmd_identifier_token41, - STATE(8314), 1, + ACTIONS(11933), 1, + anon_sym_RBRACE, + STATE(7449), 1, sym_comment, - [255937] = 3, + [224981] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12798), 1, - anon_sym_RBRACE, - STATE(8315), 1, + ACTIONS(11935), 1, + anon_sym_EQ_GT, + STATE(7450), 1, sym_comment, - [255947] = 3, + [224991] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12800), 1, - anon_sym_RPAREN, - STATE(8316), 1, + ACTIONS(11937), 1, + anon_sym_GT2, + STATE(7451), 1, sym_comment, - [255957] = 3, + [225001] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12802), 1, - sym_raw_string_end, - STATE(8317), 1, + ACTIONS(11939), 1, + anon_sym_in2, + STATE(7452), 1, sym_comment, - [255967] = 3, + [225011] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12804), 1, + ACTIONS(11941), 1, sym_raw_string_end, - STATE(8318), 1, - sym_comment, - [255977] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10324), 1, - aux_sym_unquoted_token4, - STATE(8319), 1, + STATE(7453), 1, sym_comment, - [255987] = 3, + [225021] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12806), 1, + ACTIONS(11943), 1, anon_sym_RBRACE, - STATE(8320), 1, + STATE(7454), 1, sym_comment, - [255997] = 3, + [225031] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12808), 1, - anon_sym_RBRACE, - STATE(8321), 1, + ACTIONS(11945), 1, + sym_raw_string_content, + STATE(7455), 1, sym_comment, - [256007] = 3, + [225041] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12810), 1, - anon_sym_RBRACE, - STATE(8322), 1, - sym_comment, - [256017] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12812), 1, - aux_sym_cmd_identifier_token41, - STATE(8323), 1, + ACTIONS(11947), 1, + sym_raw_string_end, + STATE(7456), 1, sym_comment, - [256027] = 3, + [225051] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10324), 1, - aux_sym_unquoted_token2, - STATE(8324), 1, - sym_comment, - [256037] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12814), 1, - aux_sym_cmd_identifier_token41, - STATE(8325), 1, + ACTIONS(11949), 1, + anon_sym_RBRACK, + STATE(7457), 1, sym_comment, - [256047] = 3, + [225061] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12816), 1, - anon_sym_RBRACE, - STATE(8326), 1, + ACTIONS(5098), 1, + anon_sym_LBRACK2, + STATE(7458), 1, sym_comment, - [256057] = 3, + [225071] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(517), 1, - anon_sym_RPAREN2, - STATE(8327), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token2, + STATE(7459), 1, sym_comment, - [256067] = 3, + [225081] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12818), 1, - sym_raw_string_end, - STATE(8328), 1, + ACTIONS(11951), 1, + anon_sym_RBRACE, + STATE(7460), 1, sym_comment, - [256077] = 3, - ACTIONS(251), 1, + [225091] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7625), 1, - aux_sym__unquoted_in_record_token2, - STATE(8329), 1, + ACTIONS(4773), 1, + aux_sym_unquoted_token4, + STATE(7461), 1, sym_comment, - [256087] = 3, + [225101] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12820), 1, - anon_sym_RBRACE, - STATE(8330), 1, + ACTIONS(3404), 1, + anon_sym_COLON2, + STATE(7462), 1, sym_comment, - [256097] = 3, + [225111] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12822), 1, + ACTIONS(11953), 1, anon_sym_RPAREN, - STATE(8331), 1, - sym_comment, - [256107] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12824), 1, - anon_sym_RBRACE, - STATE(8332), 1, + STATE(7463), 1, sym_comment, - [256117] = 3, + [225121] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12826), 1, + ACTIONS(11955), 1, anon_sym_RBRACE, - STATE(8333), 1, - sym_comment, - [256127] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12828), 1, - anon_sym_LBRACE, - STATE(8334), 1, + STATE(7464), 1, sym_comment, - [256137] = 3, + [225131] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(497), 1, - anon_sym_RPAREN2, - STATE(8335), 1, - sym_comment, - [256147] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12830), 1, - aux_sym_cmd_identifier_token41, - STATE(8336), 1, + ACTIONS(11957), 1, + anon_sym_RPAREN, + STATE(7465), 1, sym_comment, - [256157] = 3, + [225141] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12832), 1, - anon_sym_RPAREN, - STATE(8337), 1, + ACTIONS(11959), 1, + sym_raw_string_end, + STATE(7466), 1, sym_comment, - [256167] = 3, + [225151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12834), 1, - anon_sym_RPAREN, - STATE(8338), 1, + ACTIONS(11961), 1, + anon_sym_RBRACE, + STATE(7467), 1, sym_comment, - [256177] = 3, + [225161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12836), 1, - aux_sym_cmd_identifier_token41, - STATE(8339), 1, - sym_comment, - [256187] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12838), 1, - anon_sym_RPAREN2, - STATE(8340), 1, + ACTIONS(11698), 1, + aux_sym__record_key_token1, + STATE(7468), 1, sym_comment, - [256197] = 3, + [225171] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(505), 1, + ACTIONS(11963), 1, anon_sym_RPAREN2, - STATE(8341), 1, + STATE(7469), 1, sym_comment, - [256207] = 3, + [225181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12840), 1, - aux_sym_cmd_identifier_token41, - STATE(8342), 1, - sym_comment, - [256217] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12842), 1, - anon_sym_LBRACE, - STATE(8343), 1, - sym_comment, - [256227] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token2, - STATE(8344), 1, + ACTIONS(11965), 1, + aux_sym_shebang_token1, + STATE(7470), 1, sym_comment, - [256237] = 3, + [225191] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12844), 1, - anon_sym_EQ, - STATE(8345), 1, + ACTIONS(11967), 1, + sym_raw_string_end, + STATE(7471), 1, sym_comment, - [256247] = 3, + [225201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12846), 1, + ACTIONS(11969), 1, aux_sym_cmd_identifier_token41, - STATE(8346), 1, - sym_comment, - [256257] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12848), 1, - sym_raw_string_end, - STATE(8347), 1, - sym_comment, - [256267] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12850), 1, - anon_sym_RPAREN, - STATE(8348), 1, - sym_comment, - [256277] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12852), 1, - anon_sym_make, - STATE(8349), 1, - sym_comment, - [256287] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12854), 1, - anon_sym_RBRACE, - STATE(8350), 1, - sym_comment, - [256297] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12856), 1, - anon_sym_LBRACE, - STATE(8351), 1, - sym_comment, - [256307] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12828), 1, - anon_sym_LBRACE, - STATE(8352), 1, - sym_comment, - [256317] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12858), 1, - anon_sym_RBRACE, - STATE(8353), 1, + STATE(7472), 1, sym_comment, - [256327] = 3, + [225211] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12860), 1, - sym_raw_string_end, - STATE(8354), 1, + ACTIONS(11971), 1, + anon_sym_EQ, + STATE(7473), 1, sym_comment, - [256337] = 3, + [225221] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1701), 1, - aux_sym__unquoted_in_record_token2, - STATE(8355), 1, + ACTIONS(11973), 1, + sym_identifier, + STATE(7474), 1, sym_comment, - [256347] = 3, + [225231] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(7045), 1, aux_sym_unquoted_token2, - STATE(8356), 1, + STATE(7475), 1, sym_comment, - [256357] = 3, + [225241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2082), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8357), 1, + ACTIONS(7124), 1, + aux_sym_unquoted_token4, + STATE(7476), 1, sym_comment, - [256367] = 3, + [225251] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12862), 1, - ts_builtin_sym_end, - STATE(8358), 1, + ACTIONS(11975), 1, + anon_sym_RBRACE, + STATE(7477), 1, sym_comment, - [256377] = 3, + [225261] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12864), 1, - anon_sym_RBRACE, - STATE(8359), 1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token2, + STATE(7478), 1, sym_comment, - [256387] = 3, + [225271] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12866), 1, - sym_raw_string_end, - STATE(8360), 1, + ACTIONS(9660), 1, + aux_sym_unquoted_token2, + STATE(7479), 1, sym_comment, - [256397] = 3, + [225281] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12868), 1, - anon_sym_LBRACE, - STATE(8361), 1, + ACTIONS(11977), 1, + anon_sym_RBRACK, + STATE(7480), 1, sym_comment, - [256407] = 3, + [225291] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12870), 1, - sym_identifier, - STATE(8362), 1, + ACTIONS(11979), 1, + anon_sym_RBRACE, + STATE(7481), 1, sym_comment, - [256417] = 3, + [225301] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12872), 1, - anon_sym_RPAREN, - STATE(8363), 1, + ACTIONS(11981), 1, + anon_sym_LBRACE, + STATE(7482), 1, sym_comment, - [256427] = 3, + [225311] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12874), 1, - sym_raw_string_end, - STATE(8364), 1, + ACTIONS(11983), 1, + anon_sym_RBRACK, + STATE(7483), 1, sym_comment, - [256437] = 3, + [225321] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(511), 1, - anon_sym_RPAREN2, - STATE(8365), 1, + ACTIONS(11985), 1, + anon_sym_RBRACE, + STATE(7484), 1, sym_comment, - [256447] = 3, + [225331] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12876), 1, + ACTIONS(11987), 1, anon_sym_RPAREN, - STATE(8366), 1, + STATE(7485), 1, sym_comment, - [256457] = 3, + [225341] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12878), 1, - sym_raw_string_content, - STATE(8367), 1, + ACTIONS(11989), 1, + anon_sym_RPAREN, + STATE(7486), 1, sym_comment, - [256467] = 3, + [225351] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12880), 1, - anon_sym_RBRACE, - STATE(8368), 1, + ACTIONS(11991), 1, + anon_sym_EQ_GT, + STATE(7487), 1, sym_comment, - [256477] = 3, + [225361] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12882), 1, + ACTIONS(11993), 1, anon_sym_RBRACE, - STATE(8369), 1, - sym_comment, - [256487] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5236), 1, - anon_sym_LBRACK2, - STATE(8370), 1, + STATE(7488), 1, sym_comment, - [256497] = 3, + [225371] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12884), 1, + ACTIONS(11995), 1, sym_raw_string_end, - STATE(8371), 1, + STATE(7489), 1, sym_comment, - [256507] = 3, + [225381] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12886), 1, - anon_sym_RPAREN, - STATE(8372), 1, + ACTIONS(11997), 1, + anon_sym_RBRACK, + STATE(7490), 1, sym_comment, - [256517] = 3, + [225391] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12888), 1, + ACTIONS(11999), 1, sym_raw_string_end, - STATE(8373), 1, + STATE(7491), 1, sym_comment, - [256527] = 3, + [225401] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12890), 1, - sym_raw_string_end, - STATE(8374), 1, + ACTIONS(12001), 1, + anon_sym_RBRACE, + STATE(7492), 1, sym_comment, - [256537] = 3, + [225411] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12892), 1, - anon_sym_RBRACE, - STATE(8375), 1, + ACTIONS(12003), 1, + anon_sym_RPAREN, + STATE(7493), 1, sym_comment, - [256547] = 3, + [225421] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12894), 1, + ACTIONS(12005), 1, anon_sym_RBRACE, - STATE(8376), 1, + STATE(7494), 1, sym_comment, - [256557] = 3, + [225431] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12896), 1, - anon_sym_RPAREN, - STATE(8377), 1, + ACTIONS(4548), 1, + aux_sym_unquoted_token2, + STATE(7495), 1, sym_comment, - [256567] = 3, + [225441] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12898), 1, - sym_raw_string_end, - STATE(8378), 1, + ACTIONS(12007), 1, + anon_sym_RBRACK, + STATE(7496), 1, sym_comment, - [256577] = 3, - ACTIONS(251), 1, + [225451] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12900), 1, - sym_raw_string_end, - STATE(8379), 1, + ACTIONS(8153), 1, + aux_sym_unquoted_token4, + STATE(7497), 1, sym_comment, - [256587] = 3, + [225461] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8941), 1, - aux_sym_unquoted_token2, - STATE(8380), 1, + ACTIONS(12009), 1, + sym__table_head_separator, + STATE(7498), 1, sym_comment, - [256597] = 3, + [225471] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12902), 1, + ACTIONS(12011), 1, anon_sym_RBRACK, - STATE(8381), 1, - sym_comment, - [256607] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12904), 1, - anon_sym_EQ, - STATE(8382), 1, + STATE(7499), 1, sym_comment, - [256617] = 3, + [225481] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12906), 1, + ACTIONS(12013), 1, anon_sym_RPAREN, - STATE(8383), 1, + STATE(7500), 1, sym_comment, - [256627] = 3, + [225491] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12908), 1, - anon_sym_GT2, - STATE(8384), 1, + ACTIONS(12015), 1, + anon_sym_RBRACE, + STATE(7501), 1, sym_comment, - [256637] = 3, + [225501] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12910), 1, + ACTIONS(12017), 1, anon_sym_RBRACE, - STATE(8385), 1, + STATE(7502), 1, sym_comment, - [256647] = 3, + [225511] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12912), 1, - sym_raw_string_end, - STATE(8386), 1, + ACTIONS(12019), 1, + anon_sym_RPAREN, + STATE(7503), 1, sym_comment, - [256657] = 3, - ACTIONS(251), 1, + [225521] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12914), 1, - anon_sym_LBRACE, - STATE(8387), 1, + ACTIONS(5700), 1, + aux_sym__unquoted_in_list_token4, + STATE(7504), 1, sym_comment, - [256667] = 3, + [225531] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12916), 1, - sym_raw_string_content, - STATE(8388), 1, + ACTIONS(11813), 1, + anon_sym_LBRACE, + STATE(7505), 1, sym_comment, - [256677] = 3, + [225541] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5836), 1, - aux_sym_record_entry_token1, - STATE(8389), 1, + ACTIONS(12021), 1, + anon_sym_RPAREN, + STATE(7506), 1, sym_comment, - [256687] = 3, - ACTIONS(251), 1, + [225551] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12918), 1, - sym_raw_string_content, - STATE(8390), 1, + ACTIONS(2239), 1, + aux_sym_unquoted_token4, + STATE(7507), 1, sym_comment, - [256697] = 3, - ACTIONS(251), 1, + [225561] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12920), 1, - aux_sym_record_entry_token1, - STATE(8391), 1, + ACTIONS(2170), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7508), 1, sym_comment, - [256707] = 3, - ACTIONS(251), 1, + [225571] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8310), 1, - anon_sym_LBRACK2, - STATE(8392), 1, + ACTIONS(9660), 1, + aux_sym_unquoted_token4, + STATE(7509), 1, sym_comment, - [256717] = 3, + [225581] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12922), 1, - anon_sym_RBRACE, - STATE(8393), 1, + ACTIONS(5386), 1, + anon_sym_LBRACK2, + STATE(7510), 1, sym_comment, - [256727] = 3, + [225591] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12924), 1, + ACTIONS(12023), 1, aux_sym_cmd_identifier_token41, - STATE(8394), 1, + STATE(7511), 1, sym_comment, - [256737] = 3, + [225601] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12521), 1, - anon_sym_make, - STATE(8395), 1, + ACTIONS(12025), 1, + sym_raw_string_content, + STATE(7512), 1, + sym_comment, + [225611] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12027), 1, + aux_sym_cmd_identifier_token41, + STATE(7513), 1, sym_comment, - [256747] = 3, + [225621] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12926), 1, - anon_sym_RBRACE, - STATE(8396), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token2, + STATE(7514), 1, sym_comment, - [256757] = 3, + [225631] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12928), 1, - sym_raw_string_end, - STATE(8397), 1, + ACTIONS(5011), 1, + anon_sym_LBRACK2, + STATE(7515), 1, sym_comment, - [256767] = 3, + [225641] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12930), 1, + ACTIONS(12029), 1, anon_sym_RBRACE, - STATE(8398), 1, + STATE(7516), 1, sym_comment, - [256777] = 3, + [225651] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10895), 1, - anon_sym_LBRACK2, - STATE(8399), 1, + ACTIONS(12031), 1, + anon_sym_RBRACE, + STATE(7517), 1, sym_comment, - [256787] = 3, + [225661] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12932), 1, + ACTIONS(12033), 1, anon_sym_RPAREN, - STATE(8400), 1, + STATE(7518), 1, sym_comment, - [256797] = 3, + [225671] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12934), 1, + ACTIONS(12035), 1, anon_sym_RBRACE, - STATE(8401), 1, + STATE(7519), 1, sym_comment, - [256807] = 3, - ACTIONS(251), 1, + [225681] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12936), 1, - anon_sym_RPAREN, - STATE(8402), 1, + ACTIONS(2174), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7520), 1, sym_comment, - [256817] = 3, + [225691] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12938), 1, + ACTIONS(12037), 1, sym_raw_string_end, - STATE(8403), 1, + STATE(7521), 1, sym_comment, - [256827] = 3, + [225701] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12940), 1, - anon_sym_EQ, - STATE(8404), 1, + ACTIONS(12039), 1, + anon_sym_GT2, + STATE(7522), 1, sym_comment, - [256837] = 3, + [225711] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12942), 1, - sym_raw_string_content, - STATE(8405), 1, + ACTIONS(12041), 1, + anon_sym_LBRACE, + STATE(7523), 1, sym_comment, - [256847] = 3, + [225721] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6206), 1, - anon_sym_LBRACK2, - STATE(8406), 1, + ACTIONS(1585), 1, + aux_sym_unquoted_token2, + STATE(7524), 1, sym_comment, - [256857] = 3, + [225731] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12944), 1, - anon_sym_GT2, - STATE(8407), 1, + ACTIONS(12043), 1, + sym_raw_string_end, + STATE(7525), 1, sym_comment, - [256867] = 3, + [225741] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(489), 1, - anon_sym_RPAREN2, - STATE(8408), 1, + ACTIONS(12045), 1, + anon_sym_RBRACE, + STATE(7526), 1, sym_comment, - [256877] = 3, + [225751] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12946), 1, - anon_sym_RBRACK, - STATE(8409), 1, + ACTIONS(12047), 1, + anon_sym_RBRACE, + STATE(7527), 1, sym_comment, - [256887] = 3, - ACTIONS(3), 1, + [225761] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12948), 1, - aux_sym_cmd_identifier_token41, - STATE(8410), 1, + ACTIONS(12049), 1, + anon_sym_RPAREN, + STATE(7528), 1, sym_comment, - [256897] = 3, + [225771] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12950), 1, + ACTIONS(12051), 1, anon_sym_RBRACE, - STATE(8411), 1, + STATE(7529), 1, sym_comment, - [256907] = 3, + [225781] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12952), 1, - anon_sym_LBRACE, - STATE(8412), 1, - sym_comment, - [256917] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_unquoted_token4, - STATE(8413), 1, + ACTIONS(12053), 1, + anon_sym_RPAREN, + STATE(7530), 1, sym_comment, - [256927] = 3, + [225791] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12954), 1, - anon_sym_RPAREN2, - STATE(8414), 1, - sym_comment, - [256937] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2240), 1, - aux_sym_unquoted_token4, - STATE(8415), 1, + ACTIONS(12055), 1, + anon_sym_RBRACE, + STATE(7531), 1, sym_comment, - [256947] = 3, + [225801] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12956), 1, - anon_sym_RPAREN, - STATE(8416), 1, + ACTIONS(12057), 1, + anon_sym_RBRACE, + STATE(7532), 1, sym_comment, - [256957] = 3, + [225811] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7551), 1, - aux_sym_unquoted_token2, - STATE(8417), 1, + ACTIONS(12059), 1, + sym_raw_string_content, + STATE(7533), 1, sym_comment, - [256967] = 3, + [225821] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12958), 1, + ACTIONS(12061), 1, sym_raw_string_end, - STATE(8418), 1, - sym_comment, - [256977] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12960), 1, - sym_raw_string_content, - STATE(8419), 1, + STATE(7534), 1, sym_comment, - [256987] = 3, + [225831] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8186), 1, + ACTIONS(7808), 1, anon_sym_LBRACK2, - STATE(8420), 1, + STATE(7535), 1, sym_comment, - [256997] = 3, - ACTIONS(3), 1, + [225841] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12962), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8421), 1, + ACTIONS(12063), 1, + sym_identifier, + STATE(7536), 1, sym_comment, - [257007] = 3, - ACTIONS(3), 1, + [225851] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9217), 1, - aux_sym_unquoted_token4, - STATE(8422), 1, + ACTIONS(12065), 1, + anon_sym_EQ, + STATE(7537), 1, sym_comment, - [257017] = 3, + [225861] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5840), 1, - aux_sym_record_entry_token1, - STATE(8423), 1, + ACTIONS(12067), 1, + ts_builtin_sym_end, + STATE(7538), 1, sym_comment, - [257027] = 3, - ACTIONS(3), 1, + [225871] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12964), 1, - aux_sym_comment_token1, - STATE(8424), 1, + ACTIONS(12069), 1, + anon_sym_RPAREN, + STATE(7539), 1, sym_comment, - [257037] = 3, + [225881] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12966), 1, - anon_sym_LBRACE, - STATE(8425), 1, + ACTIONS(12071), 1, + anon_sym_RBRACE, + STATE(7540), 1, sym_comment, - [257047] = 3, + [225891] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12968), 1, - anon_sym_EQ, - STATE(8426), 1, + ACTIONS(12073), 1, + anon_sym_RBRACK, + STATE(7541), 1, sym_comment, - [257057] = 3, + [225901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12970), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8427), 1, + ACTIONS(4890), 1, + aux_sym_unquoted_token4, + STATE(7542), 1, sym_comment, - [257067] = 3, + [225911] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12972), 1, - anon_sym_RBRACE, - STATE(8428), 1, + ACTIONS(12075), 1, + sym_raw_string_end, + STATE(7543), 1, sym_comment, - [257077] = 3, + [225921] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12974), 1, - sym_raw_string_end, - STATE(8429), 1, + ACTIONS(12077), 1, + sym_identifier, + STATE(7544), 1, sym_comment, - [257087] = 3, + [225931] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12976), 1, - sym_raw_string_end, - STATE(8430), 1, + ACTIONS(1751), 1, + aux_sym__unquoted_in_record_token2, + STATE(7545), 1, sym_comment, - [257097] = 3, + [225941] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12978), 1, - anon_sym_in2, - STATE(8431), 1, + ACTIONS(12079), 1, + anon_sym_RPAREN, + STATE(7546), 1, sym_comment, - [257107] = 3, + [225951] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12980), 1, - anon_sym_RPAREN, - STATE(8432), 1, + ACTIONS(12081), 1, + anon_sym_RBRACE, + STATE(7547), 1, sym_comment, - [257117] = 3, + [225961] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12982), 1, + ACTIONS(12083), 1, sym_raw_string_content, - STATE(8433), 1, + STATE(7548), 1, sym_comment, - [257127] = 3, + [225971] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8387), 1, + ACTIONS(5988), 1, anon_sym_LBRACK2, - STATE(8434), 1, + STATE(7549), 1, sym_comment, - [257137] = 3, + [225981] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12984), 1, - anon_sym_RBRACK, - STATE(8435), 1, + ACTIONS(12085), 1, + anon_sym_RBRACE, + STATE(7550), 1, sym_comment, - [257147] = 3, + [225991] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4159), 1, - aux_sym_unquoted_token2, - STATE(8436), 1, + ACTIONS(12087), 1, + anon_sym_RBRACE, + STATE(7551), 1, sym_comment, - [257157] = 3, + [226001] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(12089), 1, + sym_raw_string_end, + STATE(7552), 1, + sym_comment, + [226011] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6728), 1, - aux_sym_unquoted_token4, - STATE(8437), 1, + ACTIONS(12091), 1, + sym__space, + STATE(7553), 1, sym_comment, - [257167] = 3, + [226021] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12986), 1, - sym_raw_string_end, - STATE(8438), 1, + ACTIONS(12093), 1, + anon_sym_RPAREN, + STATE(7554), 1, sym_comment, - [257177] = 3, + [226031] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12988), 1, - anon_sym_RBRACK, - STATE(8439), 1, + ACTIONS(12095), 1, + anon_sym_RPAREN, + STATE(7555), 1, sym_comment, - [257187] = 3, + [226041] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12990), 1, - anon_sym_RPAREN, - STATE(8440), 1, + ACTIONS(2230), 1, + aux_sym_unquoted_token2, + STATE(7556), 1, sym_comment, - [257197] = 3, + [226051] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12992), 1, + ACTIONS(12097), 1, anon_sym_RBRACE, - STATE(8441), 1, + STATE(7557), 1, sym_comment, - [257207] = 3, + [226061] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12994), 1, - anon_sym_RBRACK, - STATE(8442), 1, + ACTIONS(12099), 1, + sym_raw_string_end, + STATE(7558), 1, sym_comment, - [257217] = 3, + [226071] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5061), 1, - aux_sym_unquoted_token2, - STATE(8443), 1, + ACTIONS(12101), 1, + anon_sym_RPAREN, + STATE(7559), 1, sym_comment, - [257227] = 3, + [226081] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12996), 1, - anon_sym_RPAREN, - STATE(8444), 1, + ACTIONS(12103), 1, + sym_raw_string_end, + STATE(7560), 1, sym_comment, - [257237] = 3, + [226091] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12998), 1, - sym_identifier, - STATE(8445), 1, + ACTIONS(12105), 1, + anon_sym_RBRACE, + STATE(7561), 1, sym_comment, - [257247] = 3, + [226101] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13000), 1, + ACTIONS(12107), 1, sym_raw_string_content, - STATE(8446), 1, + STATE(7562), 1, sym_comment, - [257257] = 3, + [226111] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6810), 1, + ACTIONS(7700), 1, anon_sym_LBRACK2, - STATE(8447), 1, + STATE(7563), 1, sym_comment, - [257267] = 3, - ACTIONS(251), 1, + [226121] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13002), 1, - anon_sym_RBRACE, - STATE(8448), 1, + ACTIONS(12109), 1, + aux_sym_cmd_identifier_token41, + STATE(7564), 1, sym_comment, - [257277] = 3, + [226131] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13004), 1, - anon_sym_DASH_GT, - STATE(8449), 1, + ACTIONS(8759), 1, + aux_sym__unquoted_in_list_token2, + STATE(7565), 1, sym_comment, - [257287] = 3, + [226141] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13006), 1, - anon_sym_RBRACE, - STATE(8450), 1, + ACTIONS(12111), 1, + anon_sym_COLON2, + STATE(7566), 1, sym_comment, - [257297] = 3, + [226151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11555), 1, - anon_sym_LBRACE, - STATE(8451), 1, + ACTIONS(12113), 1, + sym_raw_string_end, + STATE(7567), 1, sym_comment, - [257307] = 3, + [226161] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13008), 1, - anon_sym_LBRACE, - STATE(8452), 1, + ACTIONS(12115), 1, + anon_sym_RBRACE, + STATE(7568), 1, sym_comment, - [257317] = 3, + [226171] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13010), 1, - anon_sym_RPAREN, - STATE(8453), 1, + ACTIONS(4123), 1, + aux_sym_unquoted_token2, + STATE(7569), 1, sym_comment, - [257327] = 3, - ACTIONS(251), 1, + [226181] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13012), 1, - anon_sym_LBRACE, - STATE(8454), 1, + ACTIONS(4548), 1, + aux_sym_unquoted_token4, + STATE(7570), 1, sym_comment, - [257337] = 3, + [226191] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13014), 1, - anon_sym_RBRACE, - STATE(8455), 1, + ACTIONS(12117), 1, + anon_sym_RBRACK, + STATE(7571), 1, sym_comment, - [257347] = 3, + [226201] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13016), 1, - anon_sym_in2, - STATE(8456), 1, + ACTIONS(12119), 1, + sym_raw_string_end, + STATE(7572), 1, sym_comment, - [257357] = 3, + [226211] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13018), 1, - sym_identifier, - STATE(8457), 1, + ACTIONS(12121), 1, + anon_sym_RBRACK, + STATE(7573), 1, sym_comment, - [257367] = 3, + [226221] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13020), 1, - anon_sym_RBRACK, - STATE(8458), 1, + ACTIONS(12123), 1, + sym_raw_string_content, + STATE(7574), 1, sym_comment, - [257377] = 3, + [226231] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13022), 1, + ACTIONS(12125), 1, sym_raw_string_content, - STATE(8459), 1, + STATE(7575), 1, sym_comment, - [257387] = 3, + [226241] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(7702), 1, anon_sym_LBRACK2, - STATE(8460), 1, + STATE(7576), 1, sym_comment, - [257397] = 3, + [226251] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13024), 1, - anon_sym_RBRACE, - STATE(8461), 1, + ACTIONS(12127), 1, + anon_sym_RPAREN, + STATE(7577), 1, sym_comment, - [257407] = 3, + [226261] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13026), 1, - sym_raw_string_end, - STATE(8462), 1, + ACTIONS(12129), 1, + anon_sym_GT2, + STATE(7578), 1, sym_comment, - [257417] = 3, + [226271] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13028), 1, - anon_sym_RBRACK, - STATE(8463), 1, + ACTIONS(12131), 1, + sym_raw_string_end, + STATE(7579), 1, + sym_comment, + [226281] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12133), 1, + aux_sym_cmd_identifier_token41, + STATE(7580), 1, sym_comment, - [257427] = 3, + [226291] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13030), 1, - anon_sym_RBRACE, - STATE(8464), 1, + ACTIONS(12135), 1, + anon_sym_EQ, + STATE(7581), 1, sym_comment, - [257437] = 3, + [226301] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13032), 1, + ACTIONS(12137), 1, anon_sym_RBRACE, - STATE(8465), 1, + STATE(7582), 1, sym_comment, - [257447] = 3, + [226311] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13034), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8466), 1, + ACTIONS(12139), 1, + aux_sym_cmd_identifier_token41, + STATE(7583), 1, sym_comment, - [257457] = 3, + [226321] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2086), 1, - aux_sym__unquoted_with_expr_token1, - STATE(8467), 1, + ACTIONS(2174), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7584), 1, sym_comment, - [257467] = 3, - ACTIONS(3), 1, + [226331] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5061), 1, - aux_sym_unquoted_token4, - STATE(8468), 1, + ACTIONS(12141), 1, + sym_raw_string_end, + STATE(7585), 1, sym_comment, - [257477] = 3, + [226341] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13036), 1, + ACTIONS(12143), 1, anon_sym_RBRACE, - STATE(8469), 1, + STATE(7586), 1, sym_comment, - [257487] = 3, + [226351] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13038), 1, + ACTIONS(12145), 1, anon_sym_EQ, - STATE(8470), 1, - sym_comment, - [257497] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13040), 1, - sym_identifier, - STATE(8471), 1, + STATE(7587), 1, sym_comment, - [257507] = 3, + [226361] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13042), 1, + ACTIONS(12147), 1, sym_raw_string_content, - STATE(8472), 1, + STATE(7588), 1, sym_comment, - [257517] = 3, + [226371] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_LBRACK2, - STATE(8473), 1, + ACTIONS(12149), 1, + anon_sym_RBRACE, + STATE(7589), 1, sym_comment, - [257527] = 3, + [226381] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13044), 1, + ACTIONS(12151), 1, anon_sym_RBRACE, - STATE(8474), 1, + STATE(7590), 1, sym_comment, - [257537] = 3, + [226391] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13046), 1, - anon_sym_GT2, - STATE(8475), 1, + ACTIONS(12153), 1, + sym_raw_string_end, + STATE(7591), 1, sym_comment, - [257547] = 3, + [226401] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13048), 1, - anon_sym_RBRACE, - STATE(8476), 1, + ACTIONS(12155), 1, + sym_raw_string_end, + STATE(7592), 1, sym_comment, - [257557] = 3, + [226411] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13050), 1, - anon_sym_RBRACE, - STATE(8477), 1, + ACTIONS(479), 1, + anon_sym_RPAREN2, + STATE(7593), 1, sym_comment, - [257567] = 3, + [226421] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13052), 1, - aux_sym_env_var_token2, - STATE(8478), 1, + ACTIONS(8470), 1, + aux_sym_unquoted_token2, + STATE(7594), 1, sym_comment, - [257577] = 3, + [226431] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13054), 1, - sym_raw_string_end, - STATE(8479), 1, + ACTIONS(12157), 1, + sym_param_short_flag_identifier, + STATE(7595), 1, sym_comment, - [257587] = 3, + [226441] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13056), 1, - anon_sym_RPAREN, - STATE(8480), 1, + ACTIONS(12159), 1, + anon_sym_RBRACK, + STATE(7596), 1, sym_comment, - [257597] = 3, + [226451] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1795), 1, - aux_sym__unquoted_in_record_token2, - STATE(8481), 1, + ACTIONS(12161), 1, + sym_raw_string_end, + STATE(7597), 1, sym_comment, - [257607] = 3, + [226461] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13058), 1, + ACTIONS(12163), 1, anon_sym_RBRACE, - STATE(8482), 1, + STATE(7598), 1, sym_comment, - [257617] = 3, - ACTIONS(251), 1, + [226471] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13060), 1, - anon_sym_RBRACE, - STATE(8483), 1, + ACTIONS(12165), 1, + aux_sym_cmd_identifier_token41, + STATE(7599), 1, sym_comment, - [257627] = 3, + [226481] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13062), 1, + ACTIONS(12167), 1, anon_sym_RPAREN, - STATE(8484), 1, + STATE(7600), 1, sym_comment, - [257637] = 3, + [226491] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13064), 1, + ACTIONS(12169), 1, sym_raw_string_content, - STATE(8485), 1, + STATE(7601), 1, sym_comment, - [257647] = 3, + [226501] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6906), 1, + ACTIONS(6113), 1, anon_sym_LBRACK2, - STATE(8486), 1, + STATE(7602), 1, sym_comment, - [257657] = 3, + [226511] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(501), 1, - anon_sym_RPAREN2, - STATE(8487), 1, + ACTIONS(12171), 1, + anon_sym_RPAREN, + STATE(7603), 1, sym_comment, - [257667] = 3, + [226521] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13066), 1, + ACTIONS(12173), 1, sym_raw_string_end, - STATE(8488), 1, + STATE(7604), 1, sym_comment, - [257677] = 3, + [226531] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1850), 1, - aux_sym_unquoted_token2, - STATE(8489), 1, + ACTIONS(11616), 1, + anon_sym_EQ_GT, + STATE(7605), 1, sym_comment, - [257687] = 3, - ACTIONS(3), 1, + [226541] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2086), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8490), 1, + ACTIONS(12175), 1, + anon_sym_RBRACK, + STATE(7606), 1, sym_comment, - [257697] = 3, + [226551] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13068), 1, - sym_raw_string_end, - STATE(8491), 1, + ACTIONS(12177), 1, + anon_sym_RPAREN, + STATE(7607), 1, sym_comment, - [257707] = 3, + [226561] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13070), 1, - anon_sym_RBRACK, - STATE(8492), 1, + ACTIONS(523), 1, + ts_builtin_sym_end, + STATE(7608), 1, sym_comment, - [257717] = 3, + [226571] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13072), 1, - anon_sym_RPAREN, - STATE(8493), 1, + ACTIONS(12179), 1, + sym_raw_string_end, + STATE(7609), 1, sym_comment, - [257727] = 3, + [226581] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13074), 1, + ACTIONS(12181), 1, anon_sym_RBRACE, - STATE(8494), 1, + STATE(7610), 1, sym_comment, - [257737] = 3, + [226591] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token2, - STATE(8495), 1, + ACTIONS(12183), 1, + anon_sym_RBRACE, + STATE(7611), 1, sym_comment, - [257747] = 3, + [226601] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13076), 1, + ACTIONS(12185), 1, anon_sym_RBRACE, - STATE(8496), 1, + STATE(7612), 1, sym_comment, - [257757] = 3, + [226611] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13078), 1, - anon_sym_RBRACE, - STATE(8497), 1, + ACTIONS(12187), 1, + anon_sym_EQ, + STATE(7613), 1, sym_comment, - [257767] = 3, + [226621] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13080), 1, + ACTIONS(12189), 1, sym_raw_string_content, - STATE(8498), 1, + STATE(7614), 1, sym_comment, - [257777] = 3, + [226631] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6238), 1, + ACTIONS(6090), 1, anon_sym_LBRACK2, - STATE(8499), 1, + STATE(7615), 1, sym_comment, - [257787] = 3, + [226641] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13082), 1, - anon_sym_RPAREN, - STATE(8500), 1, + ACTIONS(12191), 1, + sym_raw_string_end, + STATE(7616), 1, sym_comment, - [257797] = 3, + [226651] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13084), 1, - anon_sym_RBRACE, - STATE(8501), 1, + ACTIONS(12193), 1, + anon_sym_GT2, + STATE(7617), 1, sym_comment, - [257807] = 3, + [226661] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13086), 1, - anon_sym_RBRACK, - STATE(8502), 1, + ACTIONS(11016), 1, + anon_sym_LBRACE, + STATE(7618), 1, sym_comment, - [257817] = 3, + [226671] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13088), 1, - anon_sym_RBRACK, - STATE(8503), 1, + ACTIONS(12195), 1, + anon_sym_RPAREN2, + STATE(7619), 1, sym_comment, - [257827] = 3, + [226681] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13090), 1, - sym_raw_string_end, - STATE(8504), 1, + ACTIONS(12197), 1, + anon_sym_RPAREN2, + STATE(7620), 1, sym_comment, - [257837] = 3, + [226691] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13092), 1, - aux_sym_record_entry_token1, - STATE(8505), 1, + ACTIONS(12199), 1, + sym__table_head_separator, + STATE(7621), 1, sym_comment, - [257847] = 3, + [226701] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13094), 1, - anon_sym_RPAREN, - STATE(8506), 1, + ACTIONS(12201), 1, + sym_raw_string_end, + STATE(7622), 1, sym_comment, - [257857] = 3, + [226711] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13096), 1, - anon_sym_RPAREN, - STATE(8507), 1, + ACTIONS(12203), 1, + anon_sym_RBRACE, + STATE(7623), 1, sym_comment, - [257867] = 3, - ACTIONS(251), 1, + [226721] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13098), 1, - anon_sym_RBRACK, - STATE(8508), 1, + ACTIONS(12205), 1, + aux_sym_cmd_identifier_token41, + STATE(7624), 1, sym_comment, - [257877] = 3, - ACTIONS(251), 1, + [226731] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, - aux_sym_unquoted_token2, - STATE(8509), 1, + ACTIONS(12207), 1, + aux_sym_cmd_identifier_token41, + STATE(7625), 1, sym_comment, - [257887] = 3, + [226741] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13100), 1, - anon_sym_RBRACE, - STATE(8510), 1, + ACTIONS(12209), 1, + anon_sym_RPAREN, + STATE(7626), 1, sym_comment, - [257897] = 3, + [226751] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13102), 1, + ACTIONS(12211), 1, sym_raw_string_content, - STATE(8511), 1, + STATE(7627), 1, sym_comment, - [257907] = 3, + [226761] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10272), 1, + ACTIONS(9569), 1, anon_sym_LBRACK2, - STATE(8512), 1, + STATE(7628), 1, sym_comment, - [257917] = 3, + [226771] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13104), 1, - anon_sym_RPAREN, - STATE(8513), 1, + ACTIONS(12213), 1, + sym_raw_string_end, + STATE(7629), 1, sym_comment, - [257927] = 3, + [226781] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13106), 1, + ACTIONS(12215), 1, anon_sym_RBRACE, - STATE(8514), 1, + STATE(7630), 1, sym_comment, - [257937] = 3, + [226791] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5593), 1, - anon_sym_LBRACK2, - STATE(8515), 1, + ACTIONS(12217), 1, + anon_sym_RBRACE, + STATE(7631), 1, sym_comment, - [257947] = 3, + [226801] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12914), 1, + ACTIONS(12219), 1, anon_sym_LBRACE, - STATE(8516), 1, + STATE(7632), 1, sym_comment, - [257957] = 3, + [226811] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13108), 1, + ACTIONS(12221), 1, sym_raw_string_end, - STATE(8517), 1, + STATE(7633), 1, sym_comment, - [257967] = 3, + [226821] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13110), 1, - sym_raw_string_end, - STATE(8518), 1, + ACTIONS(12223), 1, + anon_sym_LBRACE, + STATE(7634), 1, sym_comment, - [257977] = 3, + [226831] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13112), 1, - anon_sym_RBRACK, - STATE(8519), 1, + ACTIONS(12225), 1, + anon_sym_RPAREN, + STATE(7635), 1, sym_comment, - [257987] = 3, + [226841] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13114), 1, - anon_sym_RBRACE, - STATE(8520), 1, + ACTIONS(12227), 1, + sym_raw_string_end, + STATE(7636), 1, sym_comment, - [257997] = 3, + [226851] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13116), 1, - anon_sym_DASH_GT, - STATE(8521), 1, + ACTIONS(12229), 1, + sym_raw_string_end, + STATE(7637), 1, sym_comment, - [258007] = 3, + [226861] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13118), 1, - sym_raw_string_end, - STATE(8522), 1, + ACTIONS(12231), 1, + anon_sym_EQ, + STATE(7638), 1, sym_comment, - [258017] = 3, + [226871] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13120), 1, - anon_sym_RBRACE, - STATE(8523), 1, + ACTIONS(12233), 1, + sym_raw_string_end, + STATE(7639), 1, sym_comment, - [258027] = 3, + [226881] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13122), 1, + ACTIONS(12235), 1, sym_raw_string_content, - STATE(8524), 1, + STATE(7640), 1, sym_comment, - [258037] = 3, + [226891] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2490), 1, + ACTIONS(9155), 1, anon_sym_LBRACK2, - STATE(8525), 1, - sym_comment, - [258047] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - aux_sym_unquoted_token4, - STATE(8526), 1, - sym_comment, - [258057] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - aux_sym_record_entry_token1, - STATE(8527), 1, - sym_comment, - [258067] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13124), 1, - anon_sym_RBRACK, - STATE(8528), 1, - sym_comment, - [258077] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6720), 1, - aux_sym_unquoted_token2, - STATE(8529), 1, + STATE(7641), 1, sym_comment, - [258087] = 3, + [226901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - aux_sym_unquoted_token4, - STATE(8530), 1, + ACTIONS(12237), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7642), 1, sym_comment, - [258097] = 3, + [226911] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6720), 1, - aux_sym_unquoted_token4, - STATE(8531), 1, + ACTIONS(12239), 1, + aux_sym_cmd_identifier_token41, + STATE(7643), 1, sym_comment, - [258107] = 3, + [226921] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13126), 1, + ACTIONS(12241), 1, sym_raw_string_end, - STATE(8532), 1, + STATE(7644), 1, sym_comment, - [258117] = 3, + [226931] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13128), 1, - anon_sym_RBRACK, - STATE(8533), 1, + ACTIONS(12243), 1, + anon_sym_RBRACE, + STATE(7645), 1, sym_comment, - [258127] = 3, + [226941] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13130), 1, - sym_raw_string_content, - STATE(8534), 1, + ACTIONS(12245), 1, + anon_sym_LBRACE, + STATE(7646), 1, sym_comment, - [258137] = 3, + [226951] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2306), 1, - anon_sym_LBRACK2, - STATE(8535), 1, + ACTIONS(12247), 1, + sym_raw_string_end, + STATE(7647), 1, sym_comment, - [258147] = 3, + [226961] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13132), 1, + ACTIONS(12249), 1, anon_sym_RPAREN, - STATE(8536), 1, + STATE(7648), 1, sym_comment, - [258157] = 3, + [226971] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13134), 1, - anon_sym_RBRACK, - STATE(8537), 1, - sym_comment, - [258167] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2082), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8538), 1, + ACTIONS(9950), 1, + aux_sym_unquoted_token2, + STATE(7649), 1, sym_comment, - [258177] = 3, + [226981] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13136), 1, + ACTIONS(12251), 1, sym_raw_string_end, - STATE(8539), 1, + STATE(7650), 1, sym_comment, - [258187] = 3, + [226991] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13138), 1, - sym__table_head_separator, - STATE(8540), 1, + ACTIONS(12253), 1, + anon_sym_EQ, + STATE(7651), 1, sym_comment, - [258197] = 3, + [227001] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4690), 1, - aux_sym_unquoted_token2, - STATE(8541), 1, + ACTIONS(12255), 1, + sym_raw_string_content, + STATE(7652), 1, sym_comment, - [258207] = 3, + [227011] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13140), 1, - anon_sym_RPAREN, - STATE(8542), 1, - sym_comment, - [258217] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5913), 1, - aux_sym__unquoted_in_list_token4, - STATE(8543), 1, + ACTIONS(12257), 1, + sym_raw_string_content, + STATE(7653), 1, sym_comment, - [258227] = 3, + [227021] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13142), 1, - sym_raw_string_content, - STATE(8544), 1, + ACTIONS(2475), 1, + anon_sym_LBRACK2, + STATE(7654), 1, sym_comment, - [258237] = 3, + [227031] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13144), 1, + ACTIONS(12259), 1, anon_sym_RBRACE, - STATE(8545), 1, + STATE(7655), 1, sym_comment, - [258247] = 3, - ACTIONS(251), 1, + [227041] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13146), 1, - sym_raw_string_end, - STATE(8546), 1, + ACTIONS(12261), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7656), 1, sym_comment, - [258257] = 3, + [227051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5774), 1, + ACTIONS(9950), 1, aux_sym_unquoted_token4, - STATE(8547), 1, + STATE(7657), 1, sym_comment, - [258267] = 3, + [227061] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4855), 1, - aux_sym_record_entry_token1, - STATE(8548), 1, + ACTIONS(11678), 1, + anon_sym_make, + STATE(7658), 1, sym_comment, - [258277] = 3, - ACTIONS(3), 1, + [227071] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2086), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(8549), 1, + ACTIONS(12263), 1, + anon_sym_RBRACK, + STATE(7659), 1, sym_comment, - [258287] = 3, + [227081] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13148), 1, - anon_sym_RPAREN, - STATE(8550), 1, + ACTIONS(12265), 1, + anon_sym_make, + STATE(7660), 1, sym_comment, - [258297] = 3, + [227091] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13150), 1, - sym_raw_string_end, - STATE(8551), 1, + ACTIONS(12267), 1, + anon_sym_RBRACE, + STATE(7661), 1, sym_comment, - [258307] = 3, + [227101] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13152), 1, - anon_sym_RPAREN, - STATE(8552), 1, + ACTIONS(10391), 1, + anon_sym_LBRACK2, + STATE(7662), 1, sym_comment, - [258317] = 3, + [227111] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13154), 1, + ACTIONS(12269), 1, sym_raw_string_content, - STATE(8553), 1, + STATE(7663), 1, sym_comment, - [258327] = 3, + [227121] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13156), 1, - anon_sym_RBRACE, - STATE(8554), 1, + ACTIONS(2317), 1, + anon_sym_LBRACK2, + STATE(7664), 1, sym_comment, - [258337] = 3, - ACTIONS(3), 1, + [227131] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2082), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(8555), 1, + ACTIONS(12271), 1, + anon_sym_RBRACE, + STATE(7665), 1, sym_comment, - [258347] = 3, + [227141] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13158), 1, + ACTIONS(12273), 1, sym_identifier, - STATE(8556), 1, - sym_comment, - [258357] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13160), 1, - aux_sym_shebang_token1, - STATE(8557), 1, + STATE(7666), 1, sym_comment, - [258367] = 3, + [227151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13162), 1, - anon_sym_RBRACE, - STATE(8558), 1, + ACTIONS(12275), 1, + anon_sym_EQ, + STATE(7667), 1, sym_comment, - [258377] = 3, + [227161] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13164), 1, + ACTIONS(12277), 1, anon_sym_RBRACK, - STATE(8559), 1, + STATE(7668), 1, sym_comment, - [258387] = 3, + [227171] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13166), 1, - anon_sym_EQ, - STATE(8560), 1, + ACTIONS(12279), 1, + anon_sym_RPAREN, + STATE(7669), 1, sym_comment, - [258397] = 3, + [227181] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13168), 1, + ACTIONS(12281), 1, anon_sym_RBRACE, - STATE(8561), 1, + STATE(7670), 1, sym_comment, - [258407] = 3, + [227191] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13170), 1, - sym_raw_string_content, - STATE(8562), 1, + ACTIONS(12283), 1, + anon_sym_RPAREN, + STATE(7671), 1, sym_comment, - [258417] = 3, + [227201] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13172), 1, - anon_sym_RBRACE, - STATE(8563), 1, + ACTIONS(455), 1, + anon_sym_RPAREN2, + STATE(7672), 1, sym_comment, - [258427] = 3, + [227211] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13174), 1, - anon_sym_EQ, - STATE(8564), 1, + ACTIONS(12285), 1, + sym_raw_string_content, + STATE(7673), 1, + sym_comment, + [227221] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(12287), 1, + anon_sym_RBRACE, + STATE(7674), 1, sym_comment, - [258437] = 3, + [227231] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13176), 1, + ACTIONS(12289), 1, anon_sym_RPAREN, - STATE(8565), 1, + STATE(7675), 1, sym_comment, - [258447] = 3, + [227241] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13178), 1, + ACTIONS(12291), 1, anon_sym_RBRACE, - STATE(8566), 1, + STATE(7676), 1, sym_comment, - [258457] = 3, + [227251] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13180), 1, - anon_sym_RBRACK, - STATE(8567), 1, + ACTIONS(10914), 1, + anon_sym_LBRACE, + STATE(7677), 1, sym_comment, - [258467] = 3, + [227261] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13182), 1, - anon_sym_RBRACE, - STATE(8568), 1, + ACTIONS(12293), 1, + anon_sym_LBRACE, + STATE(7678), 1, sym_comment, - [258477] = 3, + [227271] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13184), 1, - sym_raw_string_end, - STATE(8569), 1, + ACTIONS(12295), 1, + anon_sym_RBRACE, + STATE(7679), 1, sym_comment, - [258487] = 3, + [227281] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13186), 1, - sym_long_flag_identifier, - STATE(8570), 1, + ACTIONS(7124), 1, + aux_sym_unquoted_token2, + STATE(7680), 1, sym_comment, - [258497] = 3, + [227291] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13188), 1, - sym_raw_string_content, - STATE(8571), 1, + ACTIONS(12297), 1, + anon_sym_DASH_GT, + STATE(7681), 1, sym_comment, - [258507] = 3, + [227301] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13190), 1, + ACTIONS(12299), 1, sym_raw_string_content, - STATE(8572), 1, + STATE(7682), 1, sym_comment, - [258517] = 3, + [227311] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13192), 1, - sym_raw_string_content, - STATE(8573), 1, + ACTIONS(12301), 1, + anon_sym_EQ, + STATE(7683), 1, sym_comment, - [258527] = 3, - ACTIONS(251), 1, + [227321] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13194), 1, - sym_raw_string_content, - STATE(8574), 1, + ACTIONS(12303), 1, + aux_sym_shebang_token1, + STATE(7684), 1, sym_comment, - [258537] = 3, + [227331] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13196), 1, - sym_raw_string_content, - STATE(8575), 1, + ACTIONS(12305), 1, + anon_sym_RBRACE, + STATE(7685), 1, sym_comment, - [258547] = 3, + [227341] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7686), 1, + sym_comment, + [227351] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13198), 1, - sym_raw_string_content, - STATE(8576), 1, + ACTIONS(12307), 1, + anon_sym_RBRACE, + STATE(7687), 1, sym_comment, - [258557] = 3, + [227361] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13200), 1, - sym_raw_string_content, - STATE(8577), 1, + ACTIONS(12309), 1, + anon_sym_RBRACK, + STATE(7688), 1, sym_comment, - [258567] = 3, + [227371] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13202), 1, - sym_raw_string_content, - STATE(8578), 1, + ACTIONS(12311), 1, + anon_sym_RBRACE, + STATE(7689), 1, sym_comment, - [258577] = 3, + [227381] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13204), 1, - sym_raw_string_content, - STATE(8579), 1, + ACTIONS(12313), 1, + anon_sym_RBRACE, + STATE(7690), 1, sym_comment, - [258587] = 3, + [227391] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13206), 1, + ACTIONS(12315), 1, sym_raw_string_content, - STATE(8580), 1, + STATE(7691), 1, sym_comment, - [258597] = 3, + [227401] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13208), 1, + ACTIONS(12317), 1, sym_raw_string_content, - STATE(8581), 1, + STATE(7692), 1, sym_comment, - [258607] = 3, + [227411] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13210), 1, + ACTIONS(12319), 1, sym_raw_string_content, - STATE(8582), 1, + STATE(7693), 1, sym_comment, - [258617] = 3, + [227421] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13212), 1, + ACTIONS(12321), 1, sym_raw_string_content, - STATE(8583), 1, + STATE(7694), 1, sym_comment, - [258627] = 3, + [227431] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13214), 1, + ACTIONS(12323), 1, sym_raw_string_content, - STATE(8584), 1, + STATE(7695), 1, sym_comment, - [258637] = 3, + [227441] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13216), 1, + ACTIONS(12325), 1, sym_raw_string_content, - STATE(8585), 1, + STATE(7696), 1, sym_comment, - [258647] = 3, + [227451] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13218), 1, + ACTIONS(12327), 1, sym_raw_string_content, - STATE(8586), 1, + STATE(7697), 1, sym_comment, - [258657] = 3, + [227461] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13220), 1, + ACTIONS(12329), 1, sym_raw_string_content, - STATE(8587), 1, + STATE(7698), 1, sym_comment, - [258667] = 3, + [227471] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13222), 1, + ACTIONS(12331), 1, sym_raw_string_content, - STATE(8588), 1, + STATE(7699), 1, sym_comment, - [258677] = 3, + [227481] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13224), 1, + ACTIONS(12333), 1, sym_raw_string_content, - STATE(8589), 1, + STATE(7700), 1, sym_comment, - [258687] = 3, + [227491] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13226), 1, + ACTIONS(12335), 1, sym_raw_string_content, - STATE(8590), 1, + STATE(7701), 1, sym_comment, - [258697] = 3, + [227501] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13228), 1, + ACTIONS(12337), 1, sym_raw_string_content, - STATE(8591), 1, + STATE(7702), 1, sym_comment, - [258707] = 3, + [227511] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13230), 1, + ACTIONS(12339), 1, sym_raw_string_content, - STATE(8592), 1, + STATE(7703), 1, sym_comment, - [258717] = 3, + [227521] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13232), 1, + ACTIONS(12341), 1, sym_raw_string_content, - STATE(8593), 1, + STATE(7704), 1, sym_comment, - [258727] = 3, + [227531] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13234), 1, + ACTIONS(12343), 1, sym_raw_string_content, - STATE(8594), 1, + STATE(7705), 1, sym_comment, - [258737] = 3, + [227541] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13236), 1, + ACTIONS(12345), 1, sym_raw_string_content, - STATE(8595), 1, + STATE(7706), 1, sym_comment, - [258747] = 3, + [227551] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13238), 1, + ACTIONS(12347), 1, sym_raw_string_content, - STATE(8596), 1, + STATE(7707), 1, sym_comment, - [258757] = 3, + [227561] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13240), 1, + ACTIONS(12349), 1, sym_raw_string_content, - STATE(8597), 1, + STATE(7708), 1, sym_comment, - [258767] = 3, + [227571] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13242), 1, + ACTIONS(12351), 1, sym_raw_string_content, - STATE(8598), 1, + STATE(7709), 1, sym_comment, - [258777] = 3, + [227581] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13244), 1, + ACTIONS(12353), 1, sym_raw_string_content, - STATE(8599), 1, + STATE(7710), 1, sym_comment, - [258787] = 3, + [227591] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13246), 1, + ACTIONS(12355), 1, sym_raw_string_content, - STATE(8600), 1, + STATE(7711), 1, sym_comment, - [258797] = 3, + [227601] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13248), 1, - anon_sym_RBRACE, - STATE(8601), 1, + ACTIONS(12357), 1, + sym_raw_string_content, + STATE(7712), 1, sym_comment, - [258807] = 3, - ACTIONS(251), 1, + [227611] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13250), 1, - anon_sym_GT2, - STATE(8602), 1, + ACTIONS(12359), 1, + aux_sym_cmd_identifier_token41, + STATE(7713), 1, sym_comment, - [258817] = 3, + [227621] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12543), 1, + ACTIONS(11696), 1, anon_sym_LPAREN2, - STATE(8603), 1, + STATE(7714), 1, sym_comment, - [258827] = 3, - ACTIONS(251), 1, + [227631] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5828), 1, - aux_sym_record_entry_token1, - STATE(8604), 1, + ACTIONS(12361), 1, + aux_sym_cmd_identifier_token41, + STATE(7715), 1, sym_comment, - [258837] = 3, + [227641] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13252), 1, + ACTIONS(12363), 1, sym_raw_string_end, - STATE(8605), 1, - sym_comment, - [258847] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13254), 1, - anon_sym_RBRACK, - STATE(8606), 1, - sym_comment, - [258857] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13256), 1, - anon_sym_RPAREN, - STATE(8607), 1, + STATE(7716), 1, sym_comment, - [258867] = 3, + [227651] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13258), 1, - anon_sym_RPAREN, - STATE(8608), 1, + ACTIONS(12365), 1, + anon_sym_EQ, + STATE(7717), 1, sym_comment, - [258877] = 3, + [227661] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13260), 1, - sym_raw_string_content, - STATE(8609), 1, + ACTIONS(12367), 1, + anon_sym_COLON2, + STATE(7718), 1, sym_comment, - [258887] = 3, + [227671] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13262), 1, - anon_sym_RPAREN, - STATE(8610), 1, + ACTIONS(8921), 1, + aux_sym__unquoted_in_record_token2, + STATE(7719), 1, sym_comment, - [258897] = 3, + [227681] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13264), 1, + ACTIONS(12369), 1, aux_sym_cmd_identifier_token41, - STATE(8611), 1, - sym_comment, - [258907] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13266), 1, - anon_sym_RPAREN, - STATE(8612), 1, + STATE(7720), 1, sym_comment, - [258917] = 3, - ACTIONS(251), 1, + [227691] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13268), 1, - sym_raw_string_end, - STATE(8613), 1, + ACTIONS(8731), 1, + aux_sym_unquoted_token4, + STATE(7721), 1, sym_comment, - [258927] = 3, + [227701] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13270), 1, + ACTIONS(12371), 1, anon_sym_RPAREN, - STATE(8614), 1, + STATE(7722), 1, sym_comment, - [258937] = 3, + [227711] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13272), 1, - anon_sym_RPAREN, - STATE(8615), 1, + ACTIONS(12373), 1, + anon_sym_in2, + STATE(7723), 1, sym_comment, - [258947] = 3, + [227721] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13274), 1, - anon_sym_RPAREN, - STATE(8616), 1, + ACTIONS(487), 1, + anon_sym_RPAREN2, + STATE(7724), 1, sym_comment, - [258957] = 3, + [227731] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4441), 1, aux_sym_unquoted_token2, - STATE(8617), 1, - sym_comment, - [258967] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13276), 1, - anon_sym_RBRACE, - STATE(8618), 1, - sym_comment, - [258977] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13278), 1, - anon_sym_in2, - STATE(8619), 1, + STATE(7725), 1, sym_comment, - [258987] = 3, - ACTIONS(251), 1, + [227741] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13280), 1, - anon_sym_in2, - STATE(8620), 1, + ACTIONS(5555), 1, + aux_sym_unquoted_token4, + STATE(7726), 1, sym_comment, - [258997] = 3, + [227751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13282), 1, - aux_sym_shebang_token1, - STATE(8621), 1, + ACTIONS(2255), 1, + aux_sym_unquoted_token4, + STATE(7727), 1, sym_comment, - [259007] = 3, + [227761] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13284), 1, - anon_sym_RPAREN, - STATE(8622), 1, + ACTIONS(12375), 1, + sym_identifier, + STATE(7728), 1, sym_comment, - [259017] = 3, + [227771] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2330), 1, - aux_sym_record_entry_token1, - STATE(8623), 1, + ACTIONS(12377), 1, + anon_sym_RBRACK, + STATE(7729), 1, sym_comment, - [259027] = 3, + [227781] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(8624), 1, - sym_comment, - [259037] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4728), 1, - aux_sym_unquoted_token4, - STATE(8625), 1, + ACTIONS(12379), 1, + anon_sym_RPAREN, + STATE(7730), 1, sym_comment, - [259047] = 3, + [227791] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13286), 1, + ACTIONS(12381), 1, anon_sym_RBRACE, - STATE(8626), 1, - sym_comment, - [259057] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13288), 1, - anon_sym_in2, - STATE(8627), 1, - sym_comment, - [259067] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13290), 1, - anon_sym_in2, - STATE(8628), 1, + STATE(7731), 1, sym_comment, - [259077] = 3, + [227801] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13292), 1, + ACTIONS(12383), 1, anon_sym_RBRACE, - STATE(8629), 1, + STATE(7732), 1, sym_comment, - [259087] = 3, + [227811] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13294), 1, + ACTIONS(12385), 1, anon_sym_RPAREN, - STATE(8630), 1, + STATE(7733), 1, sym_comment, - [259097] = 3, + [227821] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13296), 1, - aux_sym_cmd_identifier_token41, - STATE(8631), 1, + ACTIONS(2170), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7734), 1, sym_comment, - [259107] = 3, + [227831] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13298), 1, - anon_sym_RBRACK, - STATE(8632), 1, - sym_comment, - [259117] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13300), 1, - aux_sym_cmd_identifier_token41, - STATE(8633), 1, + ACTIONS(12387), 1, + anon_sym_LBRACE, + STATE(7735), 1, sym_comment, - [259127] = 3, + [227841] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13302), 1, - anon_sym_RPAREN, - STATE(8634), 1, + ACTIONS(12389), 1, + sym_identifier, + STATE(7736), 1, sym_comment, - [259137] = 3, + [227851] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13304), 1, - anon_sym_RBRACE, - STATE(8635), 1, + ACTIONS(4712), 1, + anon_sym_COLON2, + STATE(7737), 1, sym_comment, - [259147] = 3, + [227861] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(541), 1, - anon_sym_RPAREN2, - STATE(8636), 1, + ACTIONS(12391), 1, + sym_raw_string_end, + STATE(7738), 1, sym_comment, - [259157] = 3, + [227871] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13306), 1, - anon_sym_EQ, - STATE(8637), 1, - sym_comment, - [259167] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(13308), 1, - sym__space, - STATE(8638), 1, + ACTIONS(8153), 1, + aux_sym_unquoted_token2, + STATE(7739), 1, sym_comment, - [259177] = 3, + [227881] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13310), 1, - anon_sym_EQ, - STATE(8639), 1, + ACTIONS(12393), 1, + anon_sym_RBRACK, + STATE(7740), 1, sym_comment, - [259187] = 3, + [227891] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13312), 1, - anon_sym_RBRACE, - STATE(8640), 1, + ACTIONS(12395), 1, + anon_sym_RPAREN, + STATE(7741), 1, sym_comment, - [259197] = 3, + [227901] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13314), 1, + ACTIONS(12397), 1, aux_sym_cmd_identifier_token41, - STATE(8641), 1, - sym_comment, - [259207] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13316), 1, - anon_sym_RBRACE, - STATE(8642), 1, + STATE(7742), 1, sym_comment, - [259217] = 3, + [227911] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6814), 1, - anon_sym_LPAREN2, - STATE(8643), 1, + ACTIONS(513), 1, + anon_sym_RPAREN2, + STATE(7743), 1, sym_comment, - [259227] = 3, + [227921] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13318), 1, - anon_sym_RPAREN, - STATE(8644), 1, + ACTIONS(12399), 1, + anon_sym_RBRACE, + STATE(7744), 1, sym_comment, - [259237] = 3, + [227931] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13320), 1, + ACTIONS(12401), 1, anon_sym_RPAREN, - STATE(8645), 1, - sym_comment, - [259247] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13322), 1, - anon_sym_EQ, - STATE(8646), 1, - sym_comment, - [259257] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13324), 1, - anon_sym_EQ, - STATE(8647), 1, + STATE(7745), 1, sym_comment, - [259267] = 3, + [227941] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13326), 1, + ACTIONS(12403), 1, anon_sym_RBRACE, - STATE(8648), 1, - sym_comment, - [259277] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9234), 1, - aux_sym__unquoted_in_record_token2, - STATE(8649), 1, + STATE(7746), 1, sym_comment, - [259287] = 3, + [227951] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13328), 1, - sym_raw_string_end, - STATE(8650), 1, + ACTIONS(12405), 1, + anon_sym_RBRACK, + STATE(7747), 1, sym_comment, - [259297] = 3, + [227961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13330), 1, - aux_sym_cmd_identifier_token41, - STATE(8651), 1, - sym_comment, - [259307] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13332), 1, - anon_sym_RBRACE, - STATE(8652), 1, - sym_comment, - [259317] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13334), 1, - anon_sym_RBRACE, - STATE(8653), 1, - sym_comment, - [259327] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13336), 1, - anon_sym_RBRACE, - STATE(8654), 1, + ACTIONS(12407), 1, + aux_sym_comment_token1, + STATE(7748), 1, sym_comment, - [259337] = 3, + [227971] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13338), 1, - anon_sym_LBRACE, - STATE(8655), 1, + ACTIONS(12409), 1, + anon_sym_EQ, + STATE(7749), 1, sym_comment, - [259347] = 3, + [227981] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13340), 1, + ACTIONS(12411), 1, anon_sym_RPAREN, - STATE(8656), 1, - sym_comment, - [259357] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13342), 1, - anon_sym_RBRACE, - STATE(8657), 1, - sym_comment, - [259367] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13344), 1, - anon_sym_RBRACK, - STATE(8658), 1, + STATE(7750), 1, sym_comment, - [259377] = 3, + [227991] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13346), 1, + ACTIONS(12413), 1, anon_sym_RPAREN, - STATE(8659), 1, + STATE(7751), 1, sym_comment, - [259387] = 3, + [228001] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13348), 1, - anon_sym_RBRACE, - STATE(8660), 1, + ACTIONS(12415), 1, + anon_sym_LPAREN2, + STATE(7752), 1, sym_comment, - [259397] = 3, + [228011] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13350), 1, + ACTIONS(12417), 1, anon_sym_RPAREN, - STATE(8661), 1, + STATE(7753), 1, sym_comment, - [259407] = 3, + [228021] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(553), 1, - ts_builtin_sym_end, - STATE(8662), 1, + ACTIONS(12419), 1, + anon_sym_RBRACK, + STATE(7754), 1, sym_comment, - [259417] = 3, + [228031] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13352), 1, - anon_sym_EQ, - STATE(8663), 1, + ACTIONS(12421), 1, + anon_sym_RBRACE, + STATE(7755), 1, sym_comment, - [259427] = 3, + [228041] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13354), 1, - sym_raw_string_end, - STATE(8664), 1, + ACTIONS(12423), 1, + sym_long_flag_identifier, + STATE(7756), 1, sym_comment, - [259437] = 3, + [228051] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13356), 1, + ACTIONS(12425), 1, anon_sym_RBRACE, - STATE(8665), 1, - sym_comment, - [259447] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13358), 1, - anon_sym_in2, - STATE(8666), 1, + STATE(7757), 1, sym_comment, - [259457] = 3, + [228061] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13360), 1, + ACTIONS(12427), 1, anon_sym_RPAREN, - STATE(8667), 1, + STATE(7758), 1, sym_comment, - [259467] = 3, + [228071] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11825), 1, - anon_sym_LBRACE, - STATE(8668), 1, + ACTIONS(12429), 1, + anon_sym_RBRACK, + STATE(7759), 1, sym_comment, - [259477] = 3, - ACTIONS(251), 1, + [228081] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(13362), 1, - sym_raw_string_end, - STATE(8669), 1, + ACTIONS(12431), 1, + aux_sym_cmd_identifier_token41, + STATE(7760), 1, sym_comment, - [259487] = 3, + [228091] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13364), 1, - sym_raw_string_end, - STATE(8670), 1, + ACTIONS(12433), 1, + anon_sym_DASH_GT, + STATE(7761), 1, sym_comment, - [259497] = 3, + [228101] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7487), 1, - aux_sym_unquoted_token2, - STATE(8671), 1, + ACTIONS(471), 1, + anon_sym_RPAREN2, + STATE(7762), 1, sym_comment, - [259507] = 3, + [228111] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13366), 1, - anon_sym_EQ_GT, - STATE(8672), 1, + ACTIONS(12435), 1, + anon_sym_RBRACE, + STATE(7763), 1, sym_comment, - [259517] = 3, + [228121] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13368), 1, + ACTIONS(12437), 1, anon_sym_RPAREN, - STATE(8673), 1, - sym_comment, - [259527] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7551), 1, - aux_sym_unquoted_token4, - STATE(8674), 1, + STATE(7764), 1, sym_comment, - [259537] = 3, + [228131] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13370), 1, - sym_identifier, - STATE(8675), 1, + ACTIONS(12439), 1, + anon_sym_EQ, + STATE(7765), 1, sym_comment, - [259547] = 3, + [228141] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(13372), 1, + ACTIONS(12441), 1, anon_sym_RBRACE, - STATE(8676), 1, - sym_comment, - [259557] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13374), 1, - anon_sym_in2, - STATE(8677), 1, - sym_comment, - [259567] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13376), 1, - sym__table_head_separator, - STATE(8678), 1, - sym_comment, - [259577] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(13378), 1, - sym_identifier, - STATE(8679), 1, + STATE(7766), 1, sym_comment, - [259587] = 3, + [228151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5725), 1, - aux_sym__unquoted_in_list_token2, - STATE(8680), 1, + ACTIONS(4977), 1, + anon_sym_LBRACK2, + STATE(7767), 1, sym_comment, - [259597] = 1, - ACTIONS(13380), 1, + [228161] = 1, + ACTIONS(12443), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1759)] = 0, - [SMALL_STATE(1760)] = 73, - [SMALL_STATE(1761)] = 146, - [SMALL_STATE(1762)] = 219, - [SMALL_STATE(1763)] = 300, - [SMALL_STATE(1764)] = 373, - [SMALL_STATE(1765)] = 446, - [SMALL_STATE(1766)] = 519, - [SMALL_STATE(1767)] = 592, - [SMALL_STATE(1768)] = 665, - [SMALL_STATE(1769)] = 810, - [SMALL_STATE(1770)] = 955, - [SMALL_STATE(1771)] = 1062, - [SMALL_STATE(1772)] = 1135, - [SMALL_STATE(1773)] = 1208, - [SMALL_STATE(1774)] = 1283, - [SMALL_STATE(1775)] = 1358, - [SMALL_STATE(1776)] = 1431, - [SMALL_STATE(1777)] = 1504, - [SMALL_STATE(1778)] = 1577, - [SMALL_STATE(1779)] = 1650, - [SMALL_STATE(1780)] = 1723, - [SMALL_STATE(1781)] = 1796, - [SMALL_STATE(1782)] = 1869, - [SMALL_STATE(1783)] = 1942, - [SMALL_STATE(1784)] = 2017, - [SMALL_STATE(1785)] = 2090, - [SMALL_STATE(1786)] = 2163, - [SMALL_STATE(1787)] = 2236, - [SMALL_STATE(1788)] = 2309, - [SMALL_STATE(1789)] = 2382, - [SMALL_STATE(1790)] = 2455, - [SMALL_STATE(1791)] = 2528, - [SMALL_STATE(1792)] = 2601, - [SMALL_STATE(1793)] = 2674, - [SMALL_STATE(1794)] = 2747, - [SMALL_STATE(1795)] = 2820, - [SMALL_STATE(1796)] = 2893, - [SMALL_STATE(1797)] = 2966, - [SMALL_STATE(1798)] = 3039, - [SMALL_STATE(1799)] = 3114, - [SMALL_STATE(1800)] = 3189, - [SMALL_STATE(1801)] = 3264, - [SMALL_STATE(1802)] = 3337, - [SMALL_STATE(1803)] = 3412, - [SMALL_STATE(1804)] = 3485, - [SMALL_STATE(1805)] = 3558, - [SMALL_STATE(1806)] = 3631, - [SMALL_STATE(1807)] = 3706, - [SMALL_STATE(1808)] = 3781, - [SMALL_STATE(1809)] = 3854, - [SMALL_STATE(1810)] = 3927, - [SMALL_STATE(1811)] = 4000, - [SMALL_STATE(1812)] = 4073, - [SMALL_STATE(1813)] = 4146, - [SMALL_STATE(1814)] = 4219, - [SMALL_STATE(1815)] = 4292, - [SMALL_STATE(1816)] = 4365, - [SMALL_STATE(1817)] = 4438, - [SMALL_STATE(1818)] = 4511, - [SMALL_STATE(1819)] = 4586, - [SMALL_STATE(1820)] = 4661, - [SMALL_STATE(1821)] = 4734, - [SMALL_STATE(1822)] = 4809, - [SMALL_STATE(1823)] = 4882, - [SMALL_STATE(1824)] = 4955, - [SMALL_STATE(1825)] = 5028, - [SMALL_STATE(1826)] = 5101, - [SMALL_STATE(1827)] = 5174, - [SMALL_STATE(1828)] = 5247, - [SMALL_STATE(1829)] = 5320, - [SMALL_STATE(1830)] = 5393, - [SMALL_STATE(1831)] = 5466, - [SMALL_STATE(1832)] = 5547, - [SMALL_STATE(1833)] = 5620, - [SMALL_STATE(1834)] = 5693, - [SMALL_STATE(1835)] = 5766, - [SMALL_STATE(1836)] = 5839, - [SMALL_STATE(1837)] = 5912, - [SMALL_STATE(1838)] = 5985, - [SMALL_STATE(1839)] = 6058, - [SMALL_STATE(1840)] = 6131, - [SMALL_STATE(1841)] = 6204, - [SMALL_STATE(1842)] = 6277, - [SMALL_STATE(1843)] = 6350, - [SMALL_STATE(1844)] = 6423, - [SMALL_STATE(1845)] = 6530, - [SMALL_STATE(1846)] = 6633, - [SMALL_STATE(1847)] = 6706, - [SMALL_STATE(1848)] = 6779, - [SMALL_STATE(1849)] = 6882, - [SMALL_STATE(1850)] = 6955, - [SMALL_STATE(1851)] = 7028, - [SMALL_STATE(1852)] = 7101, - [SMALL_STATE(1853)] = 7174, - [SMALL_STATE(1854)] = 7249, - [SMALL_STATE(1855)] = 7322, - [SMALL_STATE(1856)] = 7397, - [SMALL_STATE(1857)] = 7500, - [SMALL_STATE(1858)] = 7573, - [SMALL_STATE(1859)] = 7648, - [SMALL_STATE(1860)] = 7723, - [SMALL_STATE(1861)] = 7796, - [SMALL_STATE(1862)] = 7869, - [SMALL_STATE(1863)] = 7942, - [SMALL_STATE(1864)] = 8015, - [SMALL_STATE(1865)] = 8088, - [SMALL_STATE(1866)] = 8167, - [SMALL_STATE(1867)] = 8240, - [SMALL_STATE(1868)] = 8313, - [SMALL_STATE(1869)] = 8386, - [SMALL_STATE(1870)] = 8459, - [SMALL_STATE(1871)] = 8532, - [SMALL_STATE(1872)] = 8605, - [SMALL_STATE(1873)] = 8750, - [SMALL_STATE(1874)] = 8895, - [SMALL_STATE(1875)] = 9040, - [SMALL_STATE(1876)] = 9185, - [SMALL_STATE(1877)] = 9330, - [SMALL_STATE(1878)] = 9475, - [SMALL_STATE(1879)] = 9550, - [SMALL_STATE(1880)] = 9627, - [SMALL_STATE(1881)] = 9700, - [SMALL_STATE(1882)] = 9773, - [SMALL_STATE(1883)] = 9918, - [SMALL_STATE(1884)] = 9991, - [SMALL_STATE(1885)] = 10066, - [SMALL_STATE(1886)] = 10139, - [SMALL_STATE(1887)] = 10284, - [SMALL_STATE(1888)] = 10429, - [SMALL_STATE(1889)] = 10574, - [SMALL_STATE(1890)] = 10681, - [SMALL_STATE(1891)] = 10754, - [SMALL_STATE(1892)] = 10830, - [SMALL_STATE(1893)] = 10902, - [SMALL_STATE(1894)] = 10974, - [SMALL_STATE(1895)] = 11046, - [SMALL_STATE(1896)] = 11118, - [SMALL_STATE(1897)] = 11190, - [SMALL_STATE(1898)] = 11262, - [SMALL_STATE(1899)] = 11334, - [SMALL_STATE(1900)] = 11406, - [SMALL_STATE(1901)] = 11486, - [SMALL_STATE(1902)] = 11558, - [SMALL_STATE(1903)] = 11630, - [SMALL_STATE(1904)] = 11702, - [SMALL_STATE(1905)] = 11774, - [SMALL_STATE(1906)] = 11846, - [SMALL_STATE(1907)] = 11918, - [SMALL_STATE(1908)] = 11990, - [SMALL_STATE(1909)] = 12062, - [SMALL_STATE(1910)] = 12134, - [SMALL_STATE(1911)] = 12206, - [SMALL_STATE(1912)] = 12278, - [SMALL_STATE(1913)] = 12350, - [SMALL_STATE(1914)] = 12426, - [SMALL_STATE(1915)] = 12502, - [SMALL_STATE(1916)] = 12578, - [SMALL_STATE(1917)] = 12654, - [SMALL_STATE(1918)] = 12726, - [SMALL_STATE(1919)] = 12798, - [SMALL_STATE(1920)] = 12870, - [SMALL_STATE(1921)] = 12942, - [SMALL_STATE(1922)] = 13014, - [SMALL_STATE(1923)] = 13086, - [SMALL_STATE(1924)] = 13158, - [SMALL_STATE(1925)] = 13232, - [SMALL_STATE(1926)] = 13304, - [SMALL_STATE(1927)] = 13376, - [SMALL_STATE(1928)] = 13518, - [SMALL_STATE(1929)] = 13590, - [SMALL_STATE(1930)] = 13670, - [SMALL_STATE(1931)] = 13742, - [SMALL_STATE(1932)] = 13814, - [SMALL_STATE(1933)] = 13886, - [SMALL_STATE(1934)] = 13958, - [SMALL_STATE(1935)] = 14030, - [SMALL_STATE(1936)] = 14102, - [SMALL_STATE(1937)] = 14174, - [SMALL_STATE(1938)] = 14246, - [SMALL_STATE(1939)] = 14318, - [SMALL_STATE(1940)] = 14390, - [SMALL_STATE(1941)] = 14462, - [SMALL_STATE(1942)] = 14534, - [SMALL_STATE(1943)] = 14606, - [SMALL_STATE(1944)] = 14678, - [SMALL_STATE(1945)] = 14750, - [SMALL_STATE(1946)] = 14826, - [SMALL_STATE(1947)] = 14898, - [SMALL_STATE(1948)] = 14970, - [SMALL_STATE(1949)] = 15042, - [SMALL_STATE(1950)] = 15114, - [SMALL_STATE(1951)] = 15186, - [SMALL_STATE(1952)] = 15262, - [SMALL_STATE(1953)] = 15334, - [SMALL_STATE(1954)] = 15406, - [SMALL_STATE(1955)] = 15478, - [SMALL_STATE(1956)] = 15550, - [SMALL_STATE(1957)] = 15622, - [SMALL_STATE(1958)] = 15694, - [SMALL_STATE(1959)] = 15766, - [SMALL_STATE(1960)] = 15838, - [SMALL_STATE(1961)] = 15980, - [SMALL_STATE(1962)] = 16052, - [SMALL_STATE(1963)] = 16124, - [SMALL_STATE(1964)] = 16196, - [SMALL_STATE(1965)] = 16268, - [SMALL_STATE(1966)] = 16340, - [SMALL_STATE(1967)] = 16412, - [SMALL_STATE(1968)] = 16554, - [SMALL_STATE(1969)] = 16626, - [SMALL_STATE(1970)] = 16698, - [SMALL_STATE(1971)] = 16770, - [SMALL_STATE(1972)] = 16842, - [SMALL_STATE(1973)] = 16914, - [SMALL_STATE(1974)] = 16990, - [SMALL_STATE(1975)] = 17062, - [SMALL_STATE(1976)] = 17134, - [SMALL_STATE(1977)] = 17206, - [SMALL_STATE(1978)] = 17278, - [SMALL_STATE(1979)] = 17350, - [SMALL_STATE(1980)] = 17422, - [SMALL_STATE(1981)] = 17494, - [SMALL_STATE(1982)] = 17566, - [SMALL_STATE(1983)] = 17638, - [SMALL_STATE(1984)] = 17710, - [SMALL_STATE(1985)] = 17782, - [SMALL_STATE(1986)] = 17854, - [SMALL_STATE(1987)] = 17926, - [SMALL_STATE(1988)] = 17998, - [SMALL_STATE(1989)] = 18070, - [SMALL_STATE(1990)] = 18142, - [SMALL_STATE(1991)] = 18214, - [SMALL_STATE(1992)] = 18286, - [SMALL_STATE(1993)] = 18358, - [SMALL_STATE(1994)] = 18430, - [SMALL_STATE(1995)] = 18502, - [SMALL_STATE(1996)] = 18578, - [SMALL_STATE(1997)] = 18650, - [SMALL_STATE(1998)] = 18722, - [SMALL_STATE(1999)] = 18798, - [SMALL_STATE(2000)] = 18874, - [SMALL_STATE(2001)] = 18950, - [SMALL_STATE(2002)] = 19022, - [SMALL_STATE(2003)] = 19098, - [SMALL_STATE(2004)] = 19174, - [SMALL_STATE(2005)] = 19250, - [SMALL_STATE(2006)] = 19322, - [SMALL_STATE(2007)] = 19398, - [SMALL_STATE(2008)] = 19470, - [SMALL_STATE(2009)] = 19546, - [SMALL_STATE(2010)] = 19622, - [SMALL_STATE(2011)] = 19698, - [SMALL_STATE(2012)] = 19774, - [SMALL_STATE(2013)] = 19850, - [SMALL_STATE(2014)] = 19926, - [SMALL_STATE(2015)] = 20002, - [SMALL_STATE(2016)] = 20078, - [SMALL_STATE(2017)] = 20152, - [SMALL_STATE(2018)] = 20226, - [SMALL_STATE(2019)] = 20298, - [SMALL_STATE(2020)] = 20374, - [SMALL_STATE(2021)] = 20446, - [SMALL_STATE(2022)] = 20518, - [SMALL_STATE(2023)] = 20590, - [SMALL_STATE(2024)] = 20662, - [SMALL_STATE(2025)] = 20734, - [SMALL_STATE(2026)] = 20876, - [SMALL_STATE(2027)] = 21018, - [SMALL_STATE(2028)] = 21094, - [SMALL_STATE(2029)] = 21236, - [SMALL_STATE(2030)] = 21313, - [SMALL_STATE(2031)] = 21390, - [SMALL_STATE(2032)] = 21467, - [SMALL_STATE(2033)] = 21546, - [SMALL_STATE(2034)] = 21617, - [SMALL_STATE(2035)] = 21692, - [SMALL_STATE(2036)] = 21763, - [SMALL_STATE(2037)] = 21902, - [SMALL_STATE(2038)] = 21981, - [SMALL_STATE(2039)] = 22058, - [SMALL_STATE(2040)] = 22197, - [SMALL_STATE(2041)] = 22274, - [SMALL_STATE(2042)] = 22355, - [SMALL_STATE(2043)] = 22434, - [SMALL_STATE(2044)] = 22511, - [SMALL_STATE(2045)] = 22590, - [SMALL_STATE(2046)] = 22667, - [SMALL_STATE(2047)] = 22744, - [SMALL_STATE(2048)] = 22821, - [SMALL_STATE(2049)] = 22892, - [SMALL_STATE(2050)] = 22969, - [SMALL_STATE(2051)] = 23046, - [SMALL_STATE(2052)] = 23117, - [SMALL_STATE(2053)] = 23196, - [SMALL_STATE(2054)] = 23273, - [SMALL_STATE(2055)] = 23348, - [SMALL_STATE(2056)] = 23425, - [SMALL_STATE(2057)] = 23502, - [SMALL_STATE(2058)] = 23579, - [SMALL_STATE(2059)] = 23650, - [SMALL_STATE(2060)] = 23729, - [SMALL_STATE(2061)] = 23800, - [SMALL_STATE(2062)] = 23879, - [SMALL_STATE(2063)] = 23950, - [SMALL_STATE(2064)] = 24027, - [SMALL_STATE(2065)] = 24106, - [SMALL_STATE(2066)] = 24177, - [SMALL_STATE(2067)] = 24254, - [SMALL_STATE(2068)] = 24325, - [SMALL_STATE(2069)] = 24402, - [SMALL_STATE(2070)] = 24481, - [SMALL_STATE(2071)] = 24558, - [SMALL_STATE(2072)] = 24629, - [SMALL_STATE(2073)] = 24706, - [SMALL_STATE(2074)] = 24783, - [SMALL_STATE(2075)] = 24860, - [SMALL_STATE(2076)] = 24939, - [SMALL_STATE(2077)] = 25016, - [SMALL_STATE(2078)] = 25093, - [SMALL_STATE(2079)] = 25170, - [SMALL_STATE(2080)] = 25243, - [SMALL_STATE(2081)] = 25314, - [SMALL_STATE(2082)] = 25385, - [SMALL_STATE(2083)] = 25462, - [SMALL_STATE(2084)] = 25539, - [SMALL_STATE(2085)] = 25610, - [SMALL_STATE(2086)] = 25681, - [SMALL_STATE(2087)] = 25752, - [SMALL_STATE(2088)] = 25827, - [SMALL_STATE(2089)] = 25898, - [SMALL_STATE(2090)] = 25975, - [SMALL_STATE(2091)] = 26046, - [SMALL_STATE(2092)] = 26117, - [SMALL_STATE(2093)] = 26188, - [SMALL_STATE(2094)] = 26259, - [SMALL_STATE(2095)] = 26336, - [SMALL_STATE(2096)] = 26415, - [SMALL_STATE(2097)] = 26486, - [SMALL_STATE(2098)] = 26557, - [SMALL_STATE(2099)] = 26628, - [SMALL_STATE(2100)] = 26705, - [SMALL_STATE(2101)] = 26782, - [SMALL_STATE(2102)] = 26859, - [SMALL_STATE(2103)] = 26930, - [SMALL_STATE(2104)] = 27003, - [SMALL_STATE(2105)] = 27074, - [SMALL_STATE(2106)] = 27151, - [SMALL_STATE(2107)] = 27230, - [SMALL_STATE(2108)] = 27309, - [SMALL_STATE(2109)] = 27386, - [SMALL_STATE(2110)] = 27525, - [SMALL_STATE(2111)] = 27664, - [SMALL_STATE(2112)] = 27743, - [SMALL_STATE(2113)] = 27824, - [SMALL_STATE(2114)] = 27895, - [SMALL_STATE(2115)] = 27974, - [SMALL_STATE(2116)] = 28053, - [SMALL_STATE(2117)] = 28130, - [SMALL_STATE(2118)] = 28201, - [SMALL_STATE(2119)] = 28278, - [SMALL_STATE(2120)] = 28355, - [SMALL_STATE(2121)] = 28434, - [SMALL_STATE(2122)] = 28511, - [SMALL_STATE(2123)] = 28590, - [SMALL_STATE(2124)] = 28661, - [SMALL_STATE(2125)] = 28740, - [SMALL_STATE(2126)] = 28811, - [SMALL_STATE(2127)] = 28882, - [SMALL_STATE(2128)] = 28959, - [SMALL_STATE(2129)] = 29030, - [SMALL_STATE(2130)] = 29109, - [SMALL_STATE(2131)] = 29186, - [SMALL_STATE(2132)] = 29261, - [SMALL_STATE(2133)] = 29338, - [SMALL_STATE(2134)] = 29409, - [SMALL_STATE(2135)] = 29488, - [SMALL_STATE(2136)] = 29567, - [SMALL_STATE(2137)] = 29644, - [SMALL_STATE(2138)] = 29721, - [SMALL_STATE(2139)] = 29792, - [SMALL_STATE(2140)] = 29863, - [SMALL_STATE(2141)] = 29934, - [SMALL_STATE(2142)] = 30005, - [SMALL_STATE(2143)] = 30080, - [SMALL_STATE(2144)] = 30157, - [SMALL_STATE(2145)] = 30228, - [SMALL_STATE(2146)] = 30307, - [SMALL_STATE(2147)] = 30384, - [SMALL_STATE(2148)] = 30461, - [SMALL_STATE(2149)] = 30538, - [SMALL_STATE(2150)] = 30615, - [SMALL_STATE(2151)] = 30686, - [SMALL_STATE(2152)] = 30763, - [SMALL_STATE(2153)] = 30840, - [SMALL_STATE(2154)] = 30917, - [SMALL_STATE(2155)] = 30996, - [SMALL_STATE(2156)] = 31073, - [SMALL_STATE(2157)] = 31144, - [SMALL_STATE(2158)] = 31221, - [SMALL_STATE(2159)] = 31292, - [SMALL_STATE(2160)] = 31371, - [SMALL_STATE(2161)] = 31452, - [SMALL_STATE(2162)] = 31527, - [SMALL_STATE(2163)] = 31606, - [SMALL_STATE(2164)] = 31677, - [SMALL_STATE(2165)] = 31747, - [SMALL_STATE(2166)] = 31883, - [SMALL_STATE(2167)] = 32019, - [SMALL_STATE(2168)] = 32155, - [SMALL_STATE(2169)] = 32291, - [SMALL_STATE(2170)] = 32427, - [SMALL_STATE(2171)] = 32497, - [SMALL_STATE(2172)] = 32567, - [SMALL_STATE(2173)] = 32637, - [SMALL_STATE(2174)] = 32707, - [SMALL_STATE(2175)] = 32777, - [SMALL_STATE(2176)] = 32851, - [SMALL_STATE(2177)] = 32921, - [SMALL_STATE(2178)] = 32995, - [SMALL_STATE(2179)] = 33065, - [SMALL_STATE(2180)] = 33139, - [SMALL_STATE(2181)] = 33209, - [SMALL_STATE(2182)] = 33283, - [SMALL_STATE(2183)] = 33357, - [SMALL_STATE(2184)] = 33431, - [SMALL_STATE(2185)] = 33505, - [SMALL_STATE(2186)] = 33579, - [SMALL_STATE(2187)] = 33649, - [SMALL_STATE(2188)] = 33719, - [SMALL_STATE(2189)] = 33793, - [SMALL_STATE(2190)] = 33863, - [SMALL_STATE(2191)] = 33933, - [SMALL_STATE(2192)] = 34007, - [SMALL_STATE(2193)] = 34077, - [SMALL_STATE(2194)] = 34147, - [SMALL_STATE(2195)] = 34283, - [SMALL_STATE(2196)] = 34355, - [SMALL_STATE(2197)] = 34491, - [SMALL_STATE(2198)] = 34627, - [SMALL_STATE(2199)] = 34763, - [SMALL_STATE(2200)] = 34899, - [SMALL_STATE(2201)] = 35035, - [SMALL_STATE(2202)] = 35107, - [SMALL_STATE(2203)] = 35177, - [SMALL_STATE(2204)] = 35247, - [SMALL_STATE(2205)] = 35383, - [SMALL_STATE(2206)] = 35453, - [SMALL_STATE(2207)] = 35527, - [SMALL_STATE(2208)] = 35601, - [SMALL_STATE(2209)] = 35671, - [SMALL_STATE(2210)] = 35741, - [SMALL_STATE(2211)] = 35813, - [SMALL_STATE(2212)] = 35885, - [SMALL_STATE(2213)] = 35959, - [SMALL_STATE(2214)] = 36029, - [SMALL_STATE(2215)] = 36099, - [SMALL_STATE(2216)] = 36169, - [SMALL_STATE(2217)] = 36243, - [SMALL_STATE(2218)] = 36317, - [SMALL_STATE(2219)] = 36391, - [SMALL_STATE(2220)] = 36465, - [SMALL_STATE(2221)] = 36539, - [SMALL_STATE(2222)] = 36609, - [SMALL_STATE(2223)] = 36679, - [SMALL_STATE(2224)] = 36749, - [SMALL_STATE(2225)] = 36819, - [SMALL_STATE(2226)] = 36889, - [SMALL_STATE(2227)] = 36959, - [SMALL_STATE(2228)] = 37029, - [SMALL_STATE(2229)] = 37099, - [SMALL_STATE(2230)] = 37169, - [SMALL_STATE(2231)] = 37305, - [SMALL_STATE(2232)] = 37441, - [SMALL_STATE(2233)] = 37511, - [SMALL_STATE(2234)] = 37581, - [SMALL_STATE(2235)] = 37651, - [SMALL_STATE(2236)] = 37721, - [SMALL_STATE(2237)] = 37791, - [SMALL_STATE(2238)] = 37927, - [SMALL_STATE(2239)] = 38063, - [SMALL_STATE(2240)] = 38133, - [SMALL_STATE(2241)] = 38269, - [SMALL_STATE(2242)] = 38405, - [SMALL_STATE(2243)] = 38541, - [SMALL_STATE(2244)] = 38677, - [SMALL_STATE(2245)] = 38813, - [SMALL_STATE(2246)] = 38949, - [SMALL_STATE(2247)] = 39085, - [SMALL_STATE(2248)] = 39221, - [SMALL_STATE(2249)] = 39357, - [SMALL_STATE(2250)] = 39493, - [SMALL_STATE(2251)] = 39563, - [SMALL_STATE(2252)] = 39699, - [SMALL_STATE(2253)] = 39769, - [SMALL_STATE(2254)] = 39839, - [SMALL_STATE(2255)] = 39909, - [SMALL_STATE(2256)] = 40045, - [SMALL_STATE(2257)] = 40115, - [SMALL_STATE(2258)] = 40185, - [SMALL_STATE(2259)] = 40321, - [SMALL_STATE(2260)] = 40391, - [SMALL_STATE(2261)] = 40461, - [SMALL_STATE(2262)] = 40531, - [SMALL_STATE(2263)] = 40601, - [SMALL_STATE(2264)] = 40671, - [SMALL_STATE(2265)] = 40741, - [SMALL_STATE(2266)] = 40811, - [SMALL_STATE(2267)] = 40881, - [SMALL_STATE(2268)] = 40959, - [SMALL_STATE(2269)] = 41029, - [SMALL_STATE(2270)] = 41165, - [SMALL_STATE(2271)] = 41301, - [SMALL_STATE(2272)] = 41437, - [SMALL_STATE(2273)] = 41507, - [SMALL_STATE(2274)] = 41578, - [SMALL_STATE(2275)] = 41647, - [SMALL_STATE(2276)] = 41720, - [SMALL_STATE(2277)] = 41789, - [SMALL_STATE(2278)] = 41862, - [SMALL_STATE(2279)] = 41933, - [SMALL_STATE(2280)] = 42002, - [SMALL_STATE(2281)] = 42075, - [SMALL_STATE(2282)] = 42146, - [SMALL_STATE(2283)] = 42215, - [SMALL_STATE(2284)] = 42284, - [SMALL_STATE(2285)] = 42355, - [SMALL_STATE(2286)] = 42426, - [SMALL_STATE(2287)] = 42497, - [SMALL_STATE(2288)] = 42570, - [SMALL_STATE(2289)] = 42641, - [SMALL_STATE(2290)] = 42718, - [SMALL_STATE(2291)] = 42789, - [SMALL_STATE(2292)] = 42860, - [SMALL_STATE(2293)] = 42959, - [SMALL_STATE(2294)] = 43028, - [SMALL_STATE(2295)] = 43099, - [SMALL_STATE(2296)] = 43170, - [SMALL_STATE(2297)] = 43243, - [SMALL_STATE(2298)] = 43316, - [SMALL_STATE(2299)] = 43387, - [SMALL_STATE(2300)] = 43458, - [SMALL_STATE(2301)] = 43529, - [SMALL_STATE(2302)] = 43600, - [SMALL_STATE(2303)] = 43673, - [SMALL_STATE(2304)] = 43744, - [SMALL_STATE(2305)] = 43815, - [SMALL_STATE(2306)] = 43886, - [SMALL_STATE(2307)] = 43957, - [SMALL_STATE(2308)] = 44026, - [SMALL_STATE(2309)] = 44097, - [SMALL_STATE(2310)] = 44174, - [SMALL_STATE(2311)] = 44247, - [SMALL_STATE(2312)] = 44320, - [SMALL_STATE(2313)] = 44391, - [SMALL_STATE(2314)] = 44462, - [SMALL_STATE(2315)] = 44531, - [SMALL_STATE(2316)] = 44602, - [SMALL_STATE(2317)] = 44673, - [SMALL_STATE(2318)] = 44744, - [SMALL_STATE(2319)] = 44815, - [SMALL_STATE(2320)] = 44886, - [SMALL_STATE(2321)] = 44957, - [SMALL_STATE(2322)] = 45028, - [SMALL_STATE(2323)] = 45101, - [SMALL_STATE(2324)] = 45172, - [SMALL_STATE(2325)] = 45243, - [SMALL_STATE(2326)] = 45314, - [SMALL_STATE(2327)] = 45385, - [SMALL_STATE(2328)] = 45456, - [SMALL_STATE(2329)] = 45527, - [SMALL_STATE(2330)] = 45598, - [SMALL_STATE(2331)] = 45675, - [SMALL_STATE(2332)] = 45746, - [SMALL_STATE(2333)] = 45817, - [SMALL_STATE(2334)] = 45888, - [SMALL_STATE(2335)] = 45959, - [SMALL_STATE(2336)] = 46030, - [SMALL_STATE(2337)] = 46101, - [SMALL_STATE(2338)] = 46172, - [SMALL_STATE(2339)] = 46243, - [SMALL_STATE(2340)] = 46314, - [SMALL_STATE(2341)] = 46387, - [SMALL_STATE(2342)] = 46458, - [SMALL_STATE(2343)] = 46529, - [SMALL_STATE(2344)] = 46600, - [SMALL_STATE(2345)] = 46671, - [SMALL_STATE(2346)] = 46742, - [SMALL_STATE(2347)] = 46815, - [SMALL_STATE(2348)] = 46888, - [SMALL_STATE(2349)] = 46959, - [SMALL_STATE(2350)] = 47030, - [SMALL_STATE(2351)] = 47101, - [SMALL_STATE(2352)] = 47172, - [SMALL_STATE(2353)] = 47243, - [SMALL_STATE(2354)] = 47314, - [SMALL_STATE(2355)] = 47385, - [SMALL_STATE(2356)] = 47456, - [SMALL_STATE(2357)] = 47527, - [SMALL_STATE(2358)] = 47598, - [SMALL_STATE(2359)] = 47671, - [SMALL_STATE(2360)] = 47742, - [SMALL_STATE(2361)] = 47841, - [SMALL_STATE(2362)] = 47912, - [SMALL_STATE(2363)] = 47985, - [SMALL_STATE(2364)] = 48058, - [SMALL_STATE(2365)] = 48129, - [SMALL_STATE(2366)] = 48200, - [SMALL_STATE(2367)] = 48273, - [SMALL_STATE(2368)] = 48344, - [SMALL_STATE(2369)] = 48415, - [SMALL_STATE(2370)] = 48486, - [SMALL_STATE(2371)] = 48557, - [SMALL_STATE(2372)] = 48630, - [SMALL_STATE(2373)] = 48701, - [SMALL_STATE(2374)] = 48772, - [SMALL_STATE(2375)] = 48843, - [SMALL_STATE(2376)] = 48914, - [SMALL_STATE(2377)] = 48985, - [SMALL_STATE(2378)] = 49056, - [SMALL_STATE(2379)] = 49127, - [SMALL_STATE(2380)] = 49198, - [SMALL_STATE(2381)] = 49269, - [SMALL_STATE(2382)] = 49340, - [SMALL_STATE(2383)] = 49413, - [SMALL_STATE(2384)] = 49484, - [SMALL_STATE(2385)] = 49557, - [SMALL_STATE(2386)] = 49628, - [SMALL_STATE(2387)] = 49699, - [SMALL_STATE(2388)] = 49770, - [SMALL_STATE(2389)] = 49841, - [SMALL_STATE(2390)] = 49912, - [SMALL_STATE(2391)] = 49983, - [SMALL_STATE(2392)] = 50054, - [SMALL_STATE(2393)] = 50125, - [SMALL_STATE(2394)] = 50196, - [SMALL_STATE(2395)] = 50267, - [SMALL_STATE(2396)] = 50338, - [SMALL_STATE(2397)] = 50425, - [SMALL_STATE(2398)] = 50496, - [SMALL_STATE(2399)] = 50567, - [SMALL_STATE(2400)] = 50638, - [SMALL_STATE(2401)] = 50737, - [SMALL_STATE(2402)] = 50808, - [SMALL_STATE(2403)] = 50879, - [SMALL_STATE(2404)] = 50952, - [SMALL_STATE(2405)] = 51051, - [SMALL_STATE(2406)] = 51122, - [SMALL_STATE(2407)] = 51195, - [SMALL_STATE(2408)] = 51266, - [SMALL_STATE(2409)] = 51337, - [SMALL_STATE(2410)] = 51408, - [SMALL_STATE(2411)] = 51479, - [SMALL_STATE(2412)] = 51548, - [SMALL_STATE(2413)] = 51619, - [SMALL_STATE(2414)] = 51690, - [SMALL_STATE(2415)] = 51761, - [SMALL_STATE(2416)] = 51832, - [SMALL_STATE(2417)] = 51903, - [SMALL_STATE(2418)] = 51974, - [SMALL_STATE(2419)] = 52047, - [SMALL_STATE(2420)] = 52118, - [SMALL_STATE(2421)] = 52189, - [SMALL_STATE(2422)] = 52260, - [SMALL_STATE(2423)] = 52333, - [SMALL_STATE(2424)] = 52406, - [SMALL_STATE(2425)] = 52479, - [SMALL_STATE(2426)] = 52552, - [SMALL_STATE(2427)] = 52623, - [SMALL_STATE(2428)] = 52694, - [SMALL_STATE(2429)] = 52765, - [SMALL_STATE(2430)] = 52836, - [SMALL_STATE(2431)] = 52905, - [SMALL_STATE(2432)] = 52973, - [SMALL_STATE(2433)] = 53055, - [SMALL_STATE(2434)] = 53147, - [SMALL_STATE(2435)] = 53229, - [SMALL_STATE(2436)] = 53325, - [SMALL_STATE(2437)] = 53415, - [SMALL_STATE(2438)] = 53509, - [SMALL_STATE(2439)] = 53607, - [SMALL_STATE(2440)] = 53701, - [SMALL_STATE(2441)] = 53791, - [SMALL_STATE(2442)] = 53865, - [SMALL_STATE(2443)] = 53947, - [SMALL_STATE(2444)] = 54043, - [SMALL_STATE(2445)] = 54119, - [SMALL_STATE(2446)] = 54201, - [SMALL_STATE(2447)] = 54277, - [SMALL_STATE(2448)] = 54347, - [SMALL_STATE(2449)] = 54441, - [SMALL_STATE(2450)] = 54529, - [SMALL_STATE(2451)] = 54615, - [SMALL_STATE(2452)] = 54687, - [SMALL_STATE(2453)] = 54755, - [SMALL_STATE(2454)] = 54851, - [SMALL_STATE(2455)] = 54947, - [SMALL_STATE(2456)] = 55019, - [SMALL_STATE(2457)] = 55119, - [SMALL_STATE(2458)] = 55189, - [SMALL_STATE(2459)] = 55287, - [SMALL_STATE(2460)] = 55371, - [SMALL_STATE(2461)] = 55455, - [SMALL_STATE(2462)] = 55555, - [SMALL_STATE(2463)] = 55637, - [SMALL_STATE(2464)] = 55725, - [SMALL_STATE(2465)] = 55803, - [SMALL_STATE(2466)] = 55887, - [SMALL_STATE(2467)] = 55975, - [SMALL_STATE(2468)] = 56051, - [SMALL_STATE(2469)] = 56143, - [SMALL_STATE(2470)] = 56217, - [SMALL_STATE(2471)] = 56305, - [SMALL_STATE(2472)] = 56403, - [SMALL_STATE(2473)] = 56481, - [SMALL_STATE(2474)] = 56557, - [SMALL_STATE(2475)] = 56625, - [SMALL_STATE(2476)] = 56725, - [SMALL_STATE(2477)] = 56817, - [SMALL_STATE(2478)] = 56895, - [SMALL_STATE(2479)] = 56997, - [SMALL_STATE(2480)] = 57071, - [SMALL_STATE(2481)] = 57161, - [SMALL_STATE(2482)] = 57231, - [SMALL_STATE(2483)] = 57313, - [SMALL_STATE(2484)] = 57403, - [SMALL_STATE(2485)] = 57505, - [SMALL_STATE(2486)] = 57585, - [SMALL_STATE(2487)] = 57661, - [SMALL_STATE(2488)] = 57741, - [SMALL_STATE(2489)] = 57815, - [SMALL_STATE(2490)] = 57903, - [SMALL_STATE(2491)] = 57987, - [SMALL_STATE(2492)] = 58073, - [SMALL_STATE(2493)] = 58143, - [SMALL_STATE(2494)] = 58229, - [SMALL_STATE(2495)] = 58323, - [SMALL_STATE(2496)] = 58395, - [SMALL_STATE(2497)] = 58491, - [SMALL_STATE(2498)] = 58587, - [SMALL_STATE(2499)] = 58685, - [SMALL_STATE(2500)] = 58771, - [SMALL_STATE(2501)] = 58869, - [SMALL_STATE(2502)] = 58951, - [SMALL_STATE(2503)] = 59029, - [SMALL_STATE(2504)] = 59117, - [SMALL_STATE(2505)] = 59207, - [SMALL_STATE(2506)] = 59299, - [SMALL_STATE(2507)] = 59391, - [SMALL_STATE(2508)] = 59491, - [SMALL_STATE(2509)] = 59567, - [SMALL_STATE(2510)] = 59661, - [SMALL_STATE(2511)] = 59751, - [SMALL_STATE(2512)] = 59839, - [SMALL_STATE(2513)] = 59931, - [SMALL_STATE(2514)] = 60025, - [SMALL_STATE(2515)] = 60097, - [SMALL_STATE(2516)] = 60171, - [SMALL_STATE(2517)] = 60265, - [SMALL_STATE(2518)] = 60359, - [SMALL_STATE(2519)] = 60461, - [SMALL_STATE(2520)] = 60557, - [SMALL_STATE(2521)] = 60641, - [SMALL_STATE(2522)] = 60741, - [SMALL_STATE(2523)] = 60837, - [SMALL_STATE(2524)] = 60933, - [SMALL_STATE(2525)] = 61007, - [SMALL_STATE(2526)] = 61105, - [SMALL_STATE(2527)] = 61175, - [SMALL_STATE(2528)] = 61271, - [SMALL_STATE(2529)] = 61361, - [SMALL_STATE(2530)] = 61461, - [SMALL_STATE(2531)] = 61557, - [SMALL_STATE(2532)] = 61645, - [SMALL_STATE(2533)] = 61735, - [SMALL_STATE(2534)] = 61831, - [SMALL_STATE(2535)] = 61923, - [SMALL_STATE(2536)] = 62023, - [SMALL_STATE(2537)] = 62103, - [SMALL_STATE(2538)] = 62193, - [SMALL_STATE(2539)] = 62273, - [SMALL_STATE(2540)] = 62365, - [SMALL_STATE(2541)] = 62459, - [SMALL_STATE(2542)] = 62531, - [SMALL_STATE(2543)] = 62633, - [SMALL_STATE(2544)] = 62705, - [SMALL_STATE(2545)] = 62787, - [SMALL_STATE(2546)] = 62871, - [SMALL_STATE(2547)] = 62943, - [SMALL_STATE(2548)] = 63039, - [SMALL_STATE(2549)] = 63115, - [SMALL_STATE(2550)] = 63195, - [SMALL_STATE(2551)] = 63273, - [SMALL_STATE(2552)] = 63345, - [SMALL_STATE(2553)] = 63431, - [SMALL_STATE(2554)] = 63519, - [SMALL_STATE(2555)] = 63603, - [SMALL_STATE(2556)] = 63699, - [SMALL_STATE(2557)] = 63771, - [SMALL_STATE(2558)] = 63867, - [SMALL_STATE(2559)] = 63963, - [SMALL_STATE(2560)] = 64059, - [SMALL_STATE(2561)] = 64133, - [SMALL_STATE(2562)] = 64225, - [SMALL_STATE(2563)] = 64321, - [SMALL_STATE(2564)] = 64419, - [SMALL_STATE(2565)] = 64517, - [SMALL_STATE(2566)] = 64601, - [SMALL_STATE(2567)] = 64699, - [SMALL_STATE(2568)] = 64799, - [SMALL_STATE(2569)] = 64895, - [SMALL_STATE(2570)] = 64983, - [SMALL_STATE(2571)] = 65050, - [SMALL_STATE(2572)] = 65117, - [SMALL_STATE(2573)] = 65184, - [SMALL_STATE(2574)] = 65251, - [SMALL_STATE(2575)] = 65332, - [SMALL_STATE(2576)] = 65399, - [SMALL_STATE(2577)] = 65492, - [SMALL_STATE(2578)] = 65559, - [SMALL_STATE(2579)] = 65640, - [SMALL_STATE(2580)] = 65725, - [SMALL_STATE(2581)] = 65792, - [SMALL_STATE(2582)] = 65889, - [SMALL_STATE(2583)] = 65956, - [SMALL_STATE(2584)] = 66025, - [SMALL_STATE(2585)] = 66092, - [SMALL_STATE(2586)] = 66159, - [SMALL_STATE(2587)] = 66238, - [SMALL_STATE(2588)] = 66305, - [SMALL_STATE(2589)] = 66372, - [SMALL_STATE(2590)] = 66439, - [SMALL_STATE(2591)] = 66506, - [SMALL_STATE(2592)] = 66573, - [SMALL_STATE(2593)] = 66640, - [SMALL_STATE(2594)] = 66707, - [SMALL_STATE(2595)] = 66774, - [SMALL_STATE(2596)] = 66841, - [SMALL_STATE(2597)] = 66922, - [SMALL_STATE(2598)] = 66989, - [SMALL_STATE(2599)] = 67056, - [SMALL_STATE(2600)] = 67123, - [SMALL_STATE(2601)] = 67190, - [SMALL_STATE(2602)] = 67271, - [SMALL_STATE(2603)] = 67342, - [SMALL_STATE(2604)] = 67409, - [SMALL_STATE(2605)] = 67476, - [SMALL_STATE(2606)] = 67565, - [SMALL_STATE(2607)] = 67632, - [SMALL_STATE(2608)] = 67699, - [SMALL_STATE(2609)] = 67766, - [SMALL_STATE(2610)] = 67833, - [SMALL_STATE(2611)] = 67900, - [SMALL_STATE(2612)] = 67967, - [SMALL_STATE(2613)] = 68036, - [SMALL_STATE(2614)] = 68103, - [SMALL_STATE(2615)] = 68170, - [SMALL_STATE(2616)] = 68237, - [SMALL_STATE(2617)] = 68304, - [SMALL_STATE(2618)] = 68371, - [SMALL_STATE(2619)] = 68438, - [SMALL_STATE(2620)] = 68505, - [SMALL_STATE(2621)] = 68572, - [SMALL_STATE(2622)] = 68639, - [SMALL_STATE(2623)] = 68706, - [SMALL_STATE(2624)] = 68779, - [SMALL_STATE(2625)] = 68846, - [SMALL_STATE(2626)] = 68913, - [SMALL_STATE(2627)] = 68982, - [SMALL_STATE(2628)] = 69051, - [SMALL_STATE(2629)] = 69128, - [SMALL_STATE(2630)] = 69195, - [SMALL_STATE(2631)] = 69262, - [SMALL_STATE(2632)] = 69329, - [SMALL_STATE(2633)] = 69396, - [SMALL_STATE(2634)] = 69463, - [SMALL_STATE(2635)] = 69530, - [SMALL_STATE(2636)] = 69597, - [SMALL_STATE(2637)] = 69664, - [SMALL_STATE(2638)] = 69731, - [SMALL_STATE(2639)] = 69798, - [SMALL_STATE(2640)] = 69865, - [SMALL_STATE(2641)] = 69948, - [SMALL_STATE(2642)] = 70019, - [SMALL_STATE(2643)] = 70086, - [SMALL_STATE(2644)] = 70171, - [SMALL_STATE(2645)] = 70240, - [SMALL_STATE(2646)] = 70307, - [SMALL_STATE(2647)] = 70392, - [SMALL_STATE(2648)] = 70459, - [SMALL_STATE(2649)] = 70526, - [SMALL_STATE(2650)] = 70593, - [SMALL_STATE(2651)] = 70660, - [SMALL_STATE(2652)] = 70727, - [SMALL_STATE(2653)] = 70800, - [SMALL_STATE(2654)] = 70881, - [SMALL_STATE(2655)] = 70948, - [SMALL_STATE(2656)] = 71015, - [SMALL_STATE(2657)] = 71082, - [SMALL_STATE(2658)] = 71149, - [SMALL_STATE(2659)] = 71216, - [SMALL_STATE(2660)] = 71285, - [SMALL_STATE(2661)] = 71352, - [SMALL_STATE(2662)] = 71421, - [SMALL_STATE(2663)] = 71488, - [SMALL_STATE(2664)] = 71555, - [SMALL_STATE(2665)] = 71622, - [SMALL_STATE(2666)] = 71689, - [SMALL_STATE(2667)] = 71756, - [SMALL_STATE(2668)] = 71823, - [SMALL_STATE(2669)] = 71918, - [SMALL_STATE(2670)] = 71985, - [SMALL_STATE(2671)] = 72052, - [SMALL_STATE(2672)] = 72139, - [SMALL_STATE(2673)] = 72206, - [SMALL_STATE(2674)] = 72273, - [SMALL_STATE(2675)] = 72340, - [SMALL_STATE(2676)] = 72431, - [SMALL_STATE(2677)] = 72516, - [SMALL_STATE(2678)] = 72583, - [SMALL_STATE(2679)] = 72650, - [SMALL_STATE(2680)] = 72717, - [SMALL_STATE(2681)] = 72784, - [SMALL_STATE(2682)] = 72850, - [SMALL_STATE(2683)] = 72920, - [SMALL_STATE(2684)] = 72986, - [SMALL_STATE(2685)] = 73052, - [SMALL_STATE(2686)] = 73126, - [SMALL_STATE(2687)] = 73216, - [SMALL_STATE(2688)] = 73306, - [SMALL_STATE(2689)] = 73396, - [SMALL_STATE(2690)] = 73486, - [SMALL_STATE(2691)] = 73556, - [SMALL_STATE(2692)] = 73624, - [SMALL_STATE(2693)] = 73690, - [SMALL_STATE(2694)] = 73780, - [SMALL_STATE(2695)] = 73862, - [SMALL_STATE(2696)] = 73928, - [SMALL_STATE(2697)] = 74018, - [SMALL_STATE(2698)] = 74086, - [SMALL_STATE(2699)] = 74176, - [SMALL_STATE(2700)] = 74242, - [SMALL_STATE(2701)] = 74318, - [SMALL_STATE(2702)] = 74392, - [SMALL_STATE(2703)] = 74462, - [SMALL_STATE(2704)] = 74528, - [SMALL_STATE(2705)] = 74594, - [SMALL_STATE(2706)] = 74684, - [SMALL_STATE(2707)] = 74766, - [SMALL_STATE(2708)] = 74832, - [SMALL_STATE(2709)] = 74902, - [SMALL_STATE(2710)] = 74968, - [SMALL_STATE(2711)] = 75034, - [SMALL_STATE(2712)] = 75116, - [SMALL_STATE(2713)] = 75182, - [SMALL_STATE(2714)] = 75264, - [SMALL_STATE(2715)] = 75354, - [SMALL_STATE(2716)] = 75442, - [SMALL_STATE(2717)] = 75516, - [SMALL_STATE(2718)] = 75606, - [SMALL_STATE(2719)] = 75672, - [SMALL_STATE(2720)] = 75762, - [SMALL_STATE(2721)] = 75852, - [SMALL_STATE(2722)] = 75918, - [SMALL_STATE(2723)] = 75984, - [SMALL_STATE(2724)] = 76071, - [SMALL_STATE(2725)] = 76158, - [SMALL_STATE(2726)] = 76245, - [SMALL_STATE(2727)] = 76332, - [SMALL_STATE(2728)] = 76397, - [SMALL_STATE(2729)] = 76462, - [SMALL_STATE(2730)] = 76527, - [SMALL_STATE(2731)] = 76592, - [SMALL_STATE(2732)] = 76679, - [SMALL_STATE(2733)] = 76766, - [SMALL_STATE(2734)] = 76853, - [SMALL_STATE(2735)] = 76940, - [SMALL_STATE(2736)] = 77027, - [SMALL_STATE(2737)] = 77092, - [SMALL_STATE(2738)] = 77157, - [SMALL_STATE(2739)] = 77222, - [SMALL_STATE(2740)] = 77287, - [SMALL_STATE(2741)] = 77352, - [SMALL_STATE(2742)] = 77417, - [SMALL_STATE(2743)] = 77482, - [SMALL_STATE(2744)] = 77547, - [SMALL_STATE(2745)] = 77612, - [SMALL_STATE(2746)] = 77677, - [SMALL_STATE(2747)] = 77742, - [SMALL_STATE(2748)] = 77807, - [SMALL_STATE(2749)] = 77872, - [SMALL_STATE(2750)] = 77937, - [SMALL_STATE(2751)] = 78002, - [SMALL_STATE(2752)] = 78067, - [SMALL_STATE(2753)] = 78154, - [SMALL_STATE(2754)] = 78241, - [SMALL_STATE(2755)] = 78306, - [SMALL_STATE(2756)] = 78371, - [SMALL_STATE(2757)] = 78436, - [SMALL_STATE(2758)] = 78501, - [SMALL_STATE(2759)] = 78588, - [SMALL_STATE(2760)] = 78661, - [SMALL_STATE(2761)] = 78734, - [SMALL_STATE(2762)] = 78821, - [SMALL_STATE(2763)] = 78894, - [SMALL_STATE(2764)] = 78981, - [SMALL_STATE(2765)] = 79048, - [SMALL_STATE(2766)] = 79115, - [SMALL_STATE(2767)] = 79186, - [SMALL_STATE(2768)] = 79255, - [SMALL_STATE(2769)] = 79342, - [SMALL_STATE(2770)] = 79409, - [SMALL_STATE(2771)] = 79476, - [SMALL_STATE(2772)] = 79563, - [SMALL_STATE(2773)] = 79650, - [SMALL_STATE(2774)] = 79737, - [SMALL_STATE(2775)] = 79824, - [SMALL_STATE(2776)] = 79911, - [SMALL_STATE(2777)] = 79998, - [SMALL_STATE(2778)] = 80085, - [SMALL_STATE(2779)] = 80172, - [SMALL_STATE(2780)] = 80259, - [SMALL_STATE(2781)] = 80346, - [SMALL_STATE(2782)] = 80433, - [SMALL_STATE(2783)] = 80520, - [SMALL_STATE(2784)] = 80607, - [SMALL_STATE(2785)] = 80694, - [SMALL_STATE(2786)] = 80781, - [SMALL_STATE(2787)] = 80868, - [SMALL_STATE(2788)] = 80955, - [SMALL_STATE(2789)] = 81042, - [SMALL_STATE(2790)] = 81129, - [SMALL_STATE(2791)] = 81216, - [SMALL_STATE(2792)] = 81303, - [SMALL_STATE(2793)] = 81390, - [SMALL_STATE(2794)] = 81455, - [SMALL_STATE(2795)] = 81519, - [SMALL_STATE(2796)] = 81583, - [SMALL_STATE(2797)] = 81647, - [SMALL_STATE(2798)] = 81719, - [SMALL_STATE(2799)] = 81791, - [SMALL_STATE(2800)] = 81863, - [SMALL_STATE(2801)] = 81927, - [SMALL_STATE(2802)] = 81999, - [SMALL_STATE(2803)] = 82065, - [SMALL_STATE(2804)] = 82135, - [SMALL_STATE(2805)] = 82205, - [SMALL_STATE(2806)] = 82275, - [SMALL_STATE(2807)] = 82347, - [SMALL_STATE(2808)] = 82417, - [SMALL_STATE(2809)] = 82485, - [SMALL_STATE(2810)] = 82549, - [SMALL_STATE(2811)] = 82613, - [SMALL_STATE(2812)] = 82677, - [SMALL_STATE(2813)] = 82741, - [SMALL_STATE(2814)] = 82813, - [SMALL_STATE(2815)] = 82877, - [SMALL_STATE(2816)] = 82941, - [SMALL_STATE(2817)] = 83005, - [SMALL_STATE(2818)] = 83071, - [SMALL_STATE(2819)] = 83137, - [SMALL_STATE(2820)] = 83201, - [SMALL_STATE(2821)] = 83265, - [SMALL_STATE(2822)] = 83329, - [SMALL_STATE(2823)] = 83393, - [SMALL_STATE(2824)] = 83461, - [SMALL_STATE(2825)] = 83525, - [SMALL_STATE(2826)] = 83589, - [SMALL_STATE(2827)] = 83653, - [SMALL_STATE(2828)] = 83725, - [SMALL_STATE(2829)] = 83793, - [SMALL_STATE(2830)] = 83857, - [SMALL_STATE(2831)] = 83929, - [SMALL_STATE(2832)] = 83993, - [SMALL_STATE(2833)] = 84067, - [SMALL_STATE(2834)] = 84131, - [SMALL_STATE(2835)] = 84195, - [SMALL_STATE(2836)] = 84267, - [SMALL_STATE(2837)] = 84339, - [SMALL_STATE(2838)] = 84403, - [SMALL_STATE(2839)] = 84521, - [SMALL_STATE(2840)] = 84585, - [SMALL_STATE(2841)] = 84657, - [SMALL_STATE(2842)] = 84721, - [SMALL_STATE(2843)] = 84793, - [SMALL_STATE(2844)] = 84865, - [SMALL_STATE(2845)] = 84933, - [SMALL_STATE(2846)] = 85005, - [SMALL_STATE(2847)] = 85077, - [SMALL_STATE(2848)] = 85141, - [SMALL_STATE(2849)] = 85213, - [SMALL_STATE(2850)] = 85277, - [SMALL_STATE(2851)] = 85341, - [SMALL_STATE(2852)] = 85405, - [SMALL_STATE(2853)] = 85477, - [SMALL_STATE(2854)] = 85545, - [SMALL_STATE(2855)] = 85609, - [SMALL_STATE(2856)] = 85681, - [SMALL_STATE(2857)] = 85753, - [SMALL_STATE(2858)] = 85825, - [SMALL_STATE(2859)] = 85897, - [SMALL_STATE(2860)] = 85973, - [SMALL_STATE(2861)] = 86045, - [SMALL_STATE(2862)] = 86117, - [SMALL_STATE(2863)] = 86181, - [SMALL_STATE(2864)] = 86245, - [SMALL_STATE(2865)] = 86317, - [SMALL_STATE(2866)] = 86433, - [SMALL_STATE(2867)] = 86551, - [SMALL_STATE(2868)] = 86621, - [SMALL_STATE(2869)] = 86743, - [SMALL_STATE(2870)] = 86815, - [SMALL_STATE(2871)] = 86937, - [SMALL_STATE(2872)] = 87001, - [SMALL_STATE(2873)] = 87117, - [SMALL_STATE(2874)] = 87181, - [SMALL_STATE(2875)] = 87249, - [SMALL_STATE(2876)] = 87316, - [SMALL_STATE(2877)] = 87397, - [SMALL_STATE(2878)] = 87470, - [SMALL_STATE(2879)] = 87541, - [SMALL_STATE(2880)] = 87612, - [SMALL_STATE(2881)] = 87683, - [SMALL_STATE(2882)] = 87754, - [SMALL_STATE(2883)] = 87825, - [SMALL_STATE(2884)] = 87896, - [SMALL_STATE(2885)] = 87967, - [SMALL_STATE(2886)] = 88038, - [SMALL_STATE(2887)] = 88109, - [SMALL_STATE(2888)] = 88180, - [SMALL_STATE(2889)] = 88251, - [SMALL_STATE(2890)] = 88322, - [SMALL_STATE(2891)] = 88393, - [SMALL_STATE(2892)] = 88464, - [SMALL_STATE(2893)] = 88535, - [SMALL_STATE(2894)] = 88606, - [SMALL_STATE(2895)] = 88677, - [SMALL_STATE(2896)] = 88748, - [SMALL_STATE(2897)] = 88823, - [SMALL_STATE(2898)] = 88892, - [SMALL_STATE(2899)] = 88959, - [SMALL_STATE(2900)] = 89022, - [SMALL_STATE(2901)] = 89087, - [SMALL_STATE(2902)] = 89150, - [SMALL_STATE(2903)] = 89263, - [SMALL_STATE(2904)] = 89326, - [SMALL_STATE(2905)] = 89389, - [SMALL_STATE(2906)] = 89452, - [SMALL_STATE(2907)] = 89523, - [SMALL_STATE(2908)] = 89586, - [SMALL_STATE(2909)] = 89649, - [SMALL_STATE(2910)] = 89712, - [SMALL_STATE(2911)] = 89777, - [SMALL_STATE(2912)] = 89842, - [SMALL_STATE(2913)] = 89909, - [SMALL_STATE(2914)] = 89976, - [SMALL_STATE(2915)] = 90041, - [SMALL_STATE(2916)] = 90106, - [SMALL_STATE(2917)] = 90221, - [SMALL_STATE(2918)] = 90288, - [SMALL_STATE(2919)] = 90353, - [SMALL_STATE(2920)] = 90466, - [SMALL_STATE(2921)] = 90533, - [SMALL_STATE(2922)] = 90646, - [SMALL_STATE(2923)] = 90761, - [SMALL_STATE(2924)] = 90874, - [SMALL_STATE(2925)] = 90939, - [SMALL_STATE(2926)] = 91005, - [SMALL_STATE(2927)] = 91075, - [SMALL_STATE(2928)] = 91145, - [SMALL_STATE(2929)] = 91215, - [SMALL_STATE(2930)] = 91285, - [SMALL_STATE(2931)] = 91355, - [SMALL_STATE(2932)] = 91425, - [SMALL_STATE(2933)] = 91495, - [SMALL_STATE(2934)] = 91565, - [SMALL_STATE(2935)] = 91635, - [SMALL_STATE(2936)] = 91705, - [SMALL_STATE(2937)] = 91775, - [SMALL_STATE(2938)] = 91845, - [SMALL_STATE(2939)] = 91915, - [SMALL_STATE(2940)] = 91977, - [SMALL_STATE(2941)] = 92039, - [SMALL_STATE(2942)] = 92109, - [SMALL_STATE(2943)] = 92171, - [SMALL_STATE(2944)] = 92235, - [SMALL_STATE(2945)] = 92299, - [SMALL_STATE(2946)] = 92369, - [SMALL_STATE(2947)] = 92431, - [SMALL_STATE(2948)] = 92501, - [SMALL_STATE(2949)] = 92571, - [SMALL_STATE(2950)] = 92633, - [SMALL_STATE(2951)] = 92695, - [SMALL_STATE(2952)] = 92757, - [SMALL_STATE(2953)] = 92819, - [SMALL_STATE(2954)] = 92881, - [SMALL_STATE(2955)] = 92943, - [SMALL_STATE(2956)] = 93013, - [SMALL_STATE(2957)] = 93079, - [SMALL_STATE(2958)] = 93159, - [SMALL_STATE(2959)] = 93237, - [SMALL_STATE(2960)] = 93315, - [SMALL_STATE(2961)] = 93379, - [SMALL_STATE(2962)] = 93447, - [SMALL_STATE(2963)] = 93513, - [SMALL_STATE(2964)] = 93575, - [SMALL_STATE(2965)] = 93645, - [SMALL_STATE(2966)] = 93715, - [SMALL_STATE(2967)] = 93785, - [SMALL_STATE(2968)] = 93847, - [SMALL_STATE(2969)] = 93909, - [SMALL_STATE(2970)] = 93977, - [SMALL_STATE(2971)] = 94041, - [SMALL_STATE(2972)] = 94105, - [SMALL_STATE(2973)] = 94169, - [SMALL_STATE(2974)] = 94233, - [SMALL_STATE(2975)] = 94297, - [SMALL_STATE(2976)] = 94365, - [SMALL_STATE(2977)] = 94427, - [SMALL_STATE(2978)] = 94489, - [SMALL_STATE(2979)] = 94555, - [SMALL_STATE(2980)] = 94617, - [SMALL_STATE(2981)] = 94679, - [SMALL_STATE(2982)] = 94741, - [SMALL_STATE(2983)] = 94803, - [SMALL_STATE(2984)] = 94871, - [SMALL_STATE(2985)] = 94937, - [SMALL_STATE(2986)] = 95003, - [SMALL_STATE(2987)] = 95067, - [SMALL_STATE(2988)] = 95133, - [SMALL_STATE(2989)] = 95201, - [SMALL_STATE(2990)] = 95269, - [SMALL_STATE(2991)] = 95337, - [SMALL_STATE(2992)] = 95405, - [SMALL_STATE(2993)] = 95473, - [SMALL_STATE(2994)] = 95543, - [SMALL_STATE(2995)] = 95613, - [SMALL_STATE(2996)] = 95681, - [SMALL_STATE(2997)] = 95749, - [SMALL_STATE(2998)] = 95811, - [SMALL_STATE(2999)] = 95873, - [SMALL_STATE(3000)] = 95934, - [SMALL_STATE(3001)] = 95997, - [SMALL_STATE(3002)] = 96062, - [SMALL_STATE(3003)] = 96123, - [SMALL_STATE(3004)] = 96184, - [SMALL_STATE(3005)] = 96255, - [SMALL_STATE(3006)] = 96316, - [SMALL_STATE(3007)] = 96377, - [SMALL_STATE(3008)] = 96438, - [SMALL_STATE(3009)] = 96499, - [SMALL_STATE(3010)] = 96560, - [SMALL_STATE(3011)] = 96625, - [SMALL_STATE(3012)] = 96690, - [SMALL_STATE(3013)] = 96751, - [SMALL_STATE(3014)] = 96812, - [SMALL_STATE(3015)] = 96873, - [SMALL_STATE(3016)] = 96934, - [SMALL_STATE(3017)] = 96995, - [SMALL_STATE(3018)] = 97056, - [SMALL_STATE(3019)] = 97121, - [SMALL_STATE(3020)] = 97182, - [SMALL_STATE(3021)] = 97249, - [SMALL_STATE(3022)] = 97326, - [SMALL_STATE(3023)] = 97387, - [SMALL_STATE(3024)] = 97456, - [SMALL_STATE(3025)] = 97521, - [SMALL_STATE(3026)] = 97586, - [SMALL_STATE(3027)] = 97651, - [SMALL_STATE(3028)] = 97714, - [SMALL_STATE(3029)] = 97777, - [SMALL_STATE(3030)] = 97854, - [SMALL_STATE(3031)] = 97917, - [SMALL_STATE(3032)] = 97980, - [SMALL_STATE(3033)] = 98041, - [SMALL_STATE(3034)] = 98104, - [SMALL_STATE(3035)] = 98169, - [SMALL_STATE(3036)] = 98234, - [SMALL_STATE(3037)] = 98295, - [SMALL_STATE(3038)] = 98358, - [SMALL_STATE(3039)] = 98423, - [SMALL_STATE(3040)] = 98488, - [SMALL_STATE(3041)] = 98553, - [SMALL_STATE(3042)] = 98614, - [SMALL_STATE(3043)] = 98679, - [SMALL_STATE(3044)] = 98740, - [SMALL_STATE(3045)] = 98803, - [SMALL_STATE(3046)] = 98868, - [SMALL_STATE(3047)] = 98933, - [SMALL_STATE(3048)] = 98994, - [SMALL_STATE(3049)] = 99059, - [SMALL_STATE(3050)] = 99124, - [SMALL_STATE(3051)] = 99189, - [SMALL_STATE(3052)] = 99252, - [SMALL_STATE(3053)] = 99313, - [SMALL_STATE(3054)] = 99376, - [SMALL_STATE(3055)] = 99437, - [SMALL_STATE(3056)] = 99498, - [SMALL_STATE(3057)] = 99563, - [SMALL_STATE(3058)] = 99624, - [SMALL_STATE(3059)] = 99689, - [SMALL_STATE(3060)] = 99754, - [SMALL_STATE(3061)] = 99819, - [SMALL_STATE(3062)] = 99879, - [SMALL_STATE(3063)] = 99939, - [SMALL_STATE(3064)] = 99999, - [SMALL_STATE(3065)] = 100059, - [SMALL_STATE(3066)] = 100119, - [SMALL_STATE(3067)] = 100179, - [SMALL_STATE(3068)] = 100239, - [SMALL_STATE(3069)] = 100301, - [SMALL_STATE(3070)] = 100363, - [SMALL_STATE(3071)] = 100425, - [SMALL_STATE(3072)] = 100485, - [SMALL_STATE(3073)] = 100545, - [SMALL_STATE(3074)] = 100605, - [SMALL_STATE(3075)] = 100665, - [SMALL_STATE(3076)] = 100725, - [SMALL_STATE(3077)] = 100785, - [SMALL_STATE(3078)] = 100845, - [SMALL_STATE(3079)] = 100905, - [SMALL_STATE(3080)] = 100965, - [SMALL_STATE(3081)] = 101025, - [SMALL_STATE(3082)] = 101091, - [SMALL_STATE(3083)] = 101151, - [SMALL_STATE(3084)] = 101217, - [SMALL_STATE(3085)] = 101277, - [SMALL_STATE(3086)] = 101337, - [SMALL_STATE(3087)] = 101397, - [SMALL_STATE(3088)] = 101457, - [SMALL_STATE(3089)] = 101519, - [SMALL_STATE(3090)] = 101579, - [SMALL_STATE(3091)] = 101639, - [SMALL_STATE(3092)] = 101701, - [SMALL_STATE(3093)] = 101763, - [SMALL_STATE(3094)] = 101823, - [SMALL_STATE(3095)] = 101883, - [SMALL_STATE(3096)] = 101943, - [SMALL_STATE(3097)] = 102003, - [SMALL_STATE(3098)] = 102069, - [SMALL_STATE(3099)] = 102129, - [SMALL_STATE(3100)] = 102189, - [SMALL_STATE(3101)] = 102249, - [SMALL_STATE(3102)] = 102309, - [SMALL_STATE(3103)] = 102373, - [SMALL_STATE(3104)] = 102447, - [SMALL_STATE(3105)] = 102513, - [SMALL_STATE(3106)] = 102575, - [SMALL_STATE(3107)] = 102637, - [SMALL_STATE(3108)] = 102697, - [SMALL_STATE(3109)] = 102759, - [SMALL_STATE(3110)] = 102819, - [SMALL_STATE(3111)] = 102883, - [SMALL_STATE(3112)] = 102947, - [SMALL_STATE(3113)] = 103007, - [SMALL_STATE(3114)] = 103069, - [SMALL_STATE(3115)] = 103129, - [SMALL_STATE(3116)] = 103189, - [SMALL_STATE(3117)] = 103249, - [SMALL_STATE(3118)] = 103313, - [SMALL_STATE(3119)] = 103373, - [SMALL_STATE(3120)] = 103433, - [SMALL_STATE(3121)] = 103493, - [SMALL_STATE(3122)] = 103553, - [SMALL_STATE(3123)] = 103613, - [SMALL_STATE(3124)] = 103673, - [SMALL_STATE(3125)] = 103733, - [SMALL_STATE(3126)] = 103799, - [SMALL_STATE(3127)] = 103865, - [SMALL_STATE(3128)] = 103931, - [SMALL_STATE(3129)] = 103997, - [SMALL_STATE(3130)] = 104057, - [SMALL_STATE(3131)] = 104123, - [SMALL_STATE(3132)] = 104189, - [SMALL_STATE(3133)] = 104249, - [SMALL_STATE(3134)] = 104315, - [SMALL_STATE(3135)] = 104381, - [SMALL_STATE(3136)] = 104441, - [SMALL_STATE(3137)] = 104501, - [SMALL_STATE(3138)] = 104561, - [SMALL_STATE(3139)] = 104621, - [SMALL_STATE(3140)] = 104681, - [SMALL_STATE(3141)] = 104741, - [SMALL_STATE(3142)] = 104801, - [SMALL_STATE(3143)] = 104861, - [SMALL_STATE(3144)] = 104921, - [SMALL_STATE(3145)] = 104981, - [SMALL_STATE(3146)] = 105041, - [SMALL_STATE(3147)] = 105101, - [SMALL_STATE(3148)] = 105163, - [SMALL_STATE(3149)] = 105223, - [SMALL_STATE(3150)] = 105285, - [SMALL_STATE(3151)] = 105344, - [SMALL_STATE(3152)] = 105403, - [SMALL_STATE(3153)] = 105462, - [SMALL_STATE(3154)] = 105521, - [SMALL_STATE(3155)] = 105580, - [SMALL_STATE(3156)] = 105639, - [SMALL_STATE(3157)] = 105698, - [SMALL_STATE(3158)] = 105757, - [SMALL_STATE(3159)] = 105816, - [SMALL_STATE(3160)] = 105877, - [SMALL_STATE(3161)] = 105936, - [SMALL_STATE(3162)] = 105995, - [SMALL_STATE(3163)] = 106054, - [SMALL_STATE(3164)] = 106113, - [SMALL_STATE(3165)] = 106172, - [SMALL_STATE(3166)] = 106233, - [SMALL_STATE(3167)] = 106292, - [SMALL_STATE(3168)] = 106353, - [SMALL_STATE(3169)] = 106414, - [SMALL_STATE(3170)] = 106473, - [SMALL_STATE(3171)] = 106532, - [SMALL_STATE(3172)] = 106593, - [SMALL_STATE(3173)] = 106652, - [SMALL_STATE(3174)] = 106711, - [SMALL_STATE(3175)] = 106770, - [SMALL_STATE(3176)] = 106829, - [SMALL_STATE(3177)] = 106888, - [SMALL_STATE(3178)] = 106947, - [SMALL_STATE(3179)] = 107006, - [SMALL_STATE(3180)] = 107065, - [SMALL_STATE(3181)] = 107124, - [SMALL_STATE(3182)] = 107183, - [SMALL_STATE(3183)] = 107242, - [SMALL_STATE(3184)] = 107301, - [SMALL_STATE(3185)] = 107360, - [SMALL_STATE(3186)] = 107419, - [SMALL_STATE(3187)] = 107480, - [SMALL_STATE(3188)] = 107539, - [SMALL_STATE(3189)] = 107598, - [SMALL_STATE(3190)] = 107659, - [SMALL_STATE(3191)] = 107718, - [SMALL_STATE(3192)] = 107777, - [SMALL_STATE(3193)] = 107836, - [SMALL_STATE(3194)] = 107895, - [SMALL_STATE(3195)] = 107954, - [SMALL_STATE(3196)] = 108013, - [SMALL_STATE(3197)] = 108074, - [SMALL_STATE(3198)] = 108133, - [SMALL_STATE(3199)] = 108192, - [SMALL_STATE(3200)] = 108251, - [SMALL_STATE(3201)] = 108314, - [SMALL_STATE(3202)] = 108375, - [SMALL_STATE(3203)] = 108434, - [SMALL_STATE(3204)] = 108493, - [SMALL_STATE(3205)] = 108552, - [SMALL_STATE(3206)] = 108615, - [SMALL_STATE(3207)] = 108674, - [SMALL_STATE(3208)] = 108733, - [SMALL_STATE(3209)] = 108792, - [SMALL_STATE(3210)] = 108851, - [SMALL_STATE(3211)] = 108910, - [SMALL_STATE(3212)] = 108971, - [SMALL_STATE(3213)] = 109030, - [SMALL_STATE(3214)] = 109089, - [SMALL_STATE(3215)] = 109148, - [SMALL_STATE(3216)] = 109209, - [SMALL_STATE(3217)] = 109270, - [SMALL_STATE(3218)] = 109329, - [SMALL_STATE(3219)] = 109388, - [SMALL_STATE(3220)] = 109447, - [SMALL_STATE(3221)] = 109508, - [SMALL_STATE(3222)] = 109567, - [SMALL_STATE(3223)] = 109640, - [SMALL_STATE(3224)] = 109699, - [SMALL_STATE(3225)] = 109762, - [SMALL_STATE(3226)] = 109821, - [SMALL_STATE(3227)] = 109880, - [SMALL_STATE(3228)] = 109939, - [SMALL_STATE(3229)] = 110002, - [SMALL_STATE(3230)] = 110065, - [SMALL_STATE(3231)] = 110126, - [SMALL_STATE(3232)] = 110187, - [SMALL_STATE(3233)] = 110250, - [SMALL_STATE(3234)] = 110309, - [SMALL_STATE(3235)] = 110370, - [SMALL_STATE(3236)] = 110429, - [SMALL_STATE(3237)] = 110487, - [SMALL_STATE(3238)] = 110545, - [SMALL_STATE(3239)] = 110603, - [SMALL_STATE(3240)] = 110661, - [SMALL_STATE(3241)] = 110719, - [SMALL_STATE(3242)] = 110777, - [SMALL_STATE(3243)] = 110835, - [SMALL_STATE(3244)] = 110893, - [SMALL_STATE(3245)] = 110951, - [SMALL_STATE(3246)] = 111009, - [SMALL_STATE(3247)] = 111067, - [SMALL_STATE(3248)] = 111125, - [SMALL_STATE(3249)] = 111183, - [SMALL_STATE(3250)] = 111241, - [SMALL_STATE(3251)] = 111299, - [SMALL_STATE(3252)] = 111359, - [SMALL_STATE(3253)] = 111417, - [SMALL_STATE(3254)] = 111475, - [SMALL_STATE(3255)] = 111533, - [SMALL_STATE(3256)] = 111591, - [SMALL_STATE(3257)] = 111649, - [SMALL_STATE(3258)] = 111707, - [SMALL_STATE(3259)] = 111765, - [SMALL_STATE(3260)] = 111823, - [SMALL_STATE(3261)] = 111881, - [SMALL_STATE(3262)] = 111939, - [SMALL_STATE(3263)] = 111999, - [SMALL_STATE(3264)] = 112057, - [SMALL_STATE(3265)] = 112115, - [SMALL_STATE(3266)] = 112173, - [SMALL_STATE(3267)] = 112231, - [SMALL_STATE(3268)] = 112289, - [SMALL_STATE(3269)] = 112347, - [SMALL_STATE(3270)] = 112405, - [SMALL_STATE(3271)] = 112463, - [SMALL_STATE(3272)] = 112521, - [SMALL_STATE(3273)] = 112579, - [SMALL_STATE(3274)] = 112637, - [SMALL_STATE(3275)] = 112695, - [SMALL_STATE(3276)] = 112757, - [SMALL_STATE(3277)] = 112817, - [SMALL_STATE(3278)] = 112875, - [SMALL_STATE(3279)] = 112933, - [SMALL_STATE(3280)] = 112991, - [SMALL_STATE(3281)] = 113049, - [SMALL_STATE(3282)] = 113107, - [SMALL_STATE(3283)] = 113169, - [SMALL_STATE(3284)] = 113227, - [SMALL_STATE(3285)] = 113285, - [SMALL_STATE(3286)] = 113343, - [SMALL_STATE(3287)] = 113401, - [SMALL_STATE(3288)] = 113459, - [SMALL_STATE(3289)] = 113517, - [SMALL_STATE(3290)] = 113575, - [SMALL_STATE(3291)] = 113633, - [SMALL_STATE(3292)] = 113691, - [SMALL_STATE(3293)] = 113749, - [SMALL_STATE(3294)] = 113807, - [SMALL_STATE(3295)] = 113865, - [SMALL_STATE(3296)] = 113923, - [SMALL_STATE(3297)] = 113981, - [SMALL_STATE(3298)] = 114039, - [SMALL_STATE(3299)] = 114097, - [SMALL_STATE(3300)] = 114155, - [SMALL_STATE(3301)] = 114213, - [SMALL_STATE(3302)] = 114271, - [SMALL_STATE(3303)] = 114329, - [SMALL_STATE(3304)] = 114387, - [SMALL_STATE(3305)] = 114445, - [SMALL_STATE(3306)] = 114503, - [SMALL_STATE(3307)] = 114561, - [SMALL_STATE(3308)] = 114627, - [SMALL_STATE(3309)] = 114685, - [SMALL_STATE(3310)] = 114744, - [SMALL_STATE(3311)] = 114803, - [SMALL_STATE(3312)] = 114860, - [SMALL_STATE(3313)] = 114917, - [SMALL_STATE(3314)] = 114974, - [SMALL_STATE(3315)] = 115031, - [SMALL_STATE(3316)] = 115096, - [SMALL_STATE(3317)] = 115161, - [SMALL_STATE(3318)] = 115218, - [SMALL_STATE(3319)] = 115274, - [SMALL_STATE(3320)] = 115350, - [SMALL_STATE(3321)] = 115410, - [SMALL_STATE(3322)] = 115486, - [SMALL_STATE(3323)] = 115562, - [SMALL_STATE(3324)] = 115622, - [SMALL_STATE(3325)] = 115686, - [SMALL_STATE(3326)] = 115762, - [SMALL_STATE(3327)] = 115826, - [SMALL_STATE(3328)] = 115902, - [SMALL_STATE(3329)] = 115966, - [SMALL_STATE(3330)] = 116042, - [SMALL_STATE(3331)] = 116118, - [SMALL_STATE(3332)] = 116194, - [SMALL_STATE(3333)] = 116270, - [SMALL_STATE(3334)] = 116346, - [SMALL_STATE(3335)] = 116422, - [SMALL_STATE(3336)] = 116498, - [SMALL_STATE(3337)] = 116574, - [SMALL_STATE(3338)] = 116650, - [SMALL_STATE(3339)] = 116706, - [SMALL_STATE(3340)] = 116772, - [SMALL_STATE(3341)] = 116828, - [SMALL_STATE(3342)] = 116904, - [SMALL_STATE(3343)] = 116960, - [SMALL_STATE(3344)] = 117036, - [SMALL_STATE(3345)] = 117093, - [SMALL_STATE(3346)] = 117152, - [SMALL_STATE(3347)] = 117209, - [SMALL_STATE(3348)] = 117274, - [SMALL_STATE(3349)] = 117333, - [SMALL_STATE(3350)] = 117391, - [SMALL_STATE(3351)] = 117445, - [SMALL_STATE(3352)] = 117503, - [SMALL_STATE(3353)] = 117561, - [SMALL_STATE(3354)] = 117615, - [SMALL_STATE(3355)] = 117673, - [SMALL_STATE(3356)] = 117727, - [SMALL_STATE(3357)] = 117785, - [SMALL_STATE(3358)] = 117843, - [SMALL_STATE(3359)] = 117897, - [SMALL_STATE(3360)] = 117951, - [SMALL_STATE(3361)] = 118005, - [SMALL_STATE(3362)] = 118063, - [SMALL_STATE(3363)] = 118121, - [SMALL_STATE(3364)] = 118175, - [SMALL_STATE(3365)] = 118233, - [SMALL_STATE(3366)] = 118289, - [SMALL_STATE(3367)] = 118345, - [SMALL_STATE(3368)] = 118415, - [SMALL_STATE(3369)] = 118472, - [SMALL_STATE(3370)] = 118529, - [SMALL_STATE(3371)] = 118596, - [SMALL_STATE(3372)] = 118653, - [SMALL_STATE(3373)] = 118706, - [SMALL_STATE(3374)] = 118763, - [SMALL_STATE(3375)] = 118816, - [SMALL_STATE(3376)] = 118871, - [SMALL_STATE(3377)] = 118924, - [SMALL_STATE(3378)] = 118977, - [SMALL_STATE(3379)] = 119034, - [SMALL_STATE(3380)] = 119091, - [SMALL_STATE(3381)] = 119148, - [SMALL_STATE(3382)] = 119201, - [SMALL_STATE(3383)] = 119258, - [SMALL_STATE(3384)] = 119315, - [SMALL_STATE(3385)] = 119383, - [SMALL_STATE(3386)] = 119453, - [SMALL_STATE(3387)] = 119507, - [SMALL_STATE(3388)] = 119557, - [SMALL_STATE(3389)] = 119607, - [SMALL_STATE(3390)] = 119671, - [SMALL_STATE(3391)] = 119725, - [SMALL_STATE(3392)] = 119793, - [SMALL_STATE(3393)] = 119855, - [SMALL_STATE(3394)] = 119925, - [SMALL_STATE(3395)] = 119983, - [SMALL_STATE(3396)] = 120063, - [SMALL_STATE(3397)] = 120145, - [SMALL_STATE(3398)] = 120229, - [SMALL_STATE(3399)] = 120301, - [SMALL_STATE(3400)] = 120367, - [SMALL_STATE(3401)] = 120441, - [SMALL_STATE(3402)] = 120517, - [SMALL_STATE(3403)] = 120595, - [SMALL_STATE(3404)] = 120659, - [SMALL_STATE(3405)] = 120725, - [SMALL_STATE(3406)] = 120793, - [SMALL_STATE(3407)] = 120853, - [SMALL_STATE(3408)] = 120915, - [SMALL_STATE(3409)] = 120965, - [SMALL_STATE(3410)] = 121035, - [SMALL_STATE(3411)] = 121091, - [SMALL_STATE(3412)] = 121149, - [SMALL_STATE(3413)] = 121227, - [SMALL_STATE(3414)] = 121307, - [SMALL_STATE(3415)] = 121387, - [SMALL_STATE(3416)] = 121469, - [SMALL_STATE(3417)] = 121551, - [SMALL_STATE(3418)] = 121635, - [SMALL_STATE(3419)] = 121705, - [SMALL_STATE(3420)] = 121777, - [SMALL_STATE(3421)] = 121841, - [SMALL_STATE(3422)] = 121907, - [SMALL_STATE(3423)] = 121979, - [SMALL_STATE(3424)] = 122053, - [SMALL_STATE(3425)] = 122127, - [SMALL_STATE(3426)] = 122203, - [SMALL_STATE(3427)] = 122279, - [SMALL_STATE(3428)] = 122357, - [SMALL_STATE(3429)] = 122425, - [SMALL_STATE(3430)] = 122487, - [SMALL_STATE(3431)] = 122557, - [SMALL_STATE(3432)] = 122615, - [SMALL_STATE(3433)] = 122695, - [SMALL_STATE(3434)] = 122777, - [SMALL_STATE(3435)] = 122861, - [SMALL_STATE(3436)] = 122933, - [SMALL_STATE(3437)] = 122999, - [SMALL_STATE(3438)] = 123073, - [SMALL_STATE(3439)] = 123149, - [SMALL_STATE(3440)] = 123227, - [SMALL_STATE(3441)] = 123293, - [SMALL_STATE(3442)] = 123353, - [SMALL_STATE(3443)] = 123421, - [SMALL_STATE(3444)] = 123477, - [SMALL_STATE(3445)] = 123555, - [SMALL_STATE(3446)] = 123635, - [SMALL_STATE(3447)] = 123717, - [SMALL_STATE(3448)] = 123787, - [SMALL_STATE(3449)] = 123851, - [SMALL_STATE(3450)] = 123923, - [SMALL_STATE(3451)] = 123997, - [SMALL_STATE(3452)] = 124073, - [SMALL_STATE(3453)] = 124139, - [SMALL_STATE(3454)] = 124207, - [SMALL_STATE(3455)] = 124267, - [SMALL_STATE(3456)] = 124329, - [SMALL_STATE(3457)] = 124397, - [SMALL_STATE(3458)] = 124467, - [SMALL_STATE(3459)] = 124523, - [SMALL_STATE(3460)] = 124581, - [SMALL_STATE(3461)] = 124659, - [SMALL_STATE(3462)] = 124739, - [SMALL_STATE(3463)] = 124819, - [SMALL_STATE(3464)] = 124901, - [SMALL_STATE(3465)] = 124983, - [SMALL_STATE(3466)] = 125067, - [SMALL_STATE(3467)] = 125137, - [SMALL_STATE(3468)] = 125209, - [SMALL_STATE(3469)] = 125273, - [SMALL_STATE(3470)] = 125339, - [SMALL_STATE(3471)] = 125411, - [SMALL_STATE(3472)] = 125485, - [SMALL_STATE(3473)] = 125559, - [SMALL_STATE(3474)] = 125635, - [SMALL_STATE(3475)] = 125711, - [SMALL_STATE(3476)] = 125789, - [SMALL_STATE(3477)] = 125855, - [SMALL_STATE(3478)] = 125915, - [SMALL_STATE(3479)] = 125983, - [SMALL_STATE(3480)] = 126039, - [SMALL_STATE(3481)] = 126117, - [SMALL_STATE(3482)] = 126197, - [SMALL_STATE(3483)] = 126279, - [SMALL_STATE(3484)] = 126349, - [SMALL_STATE(3485)] = 126413, - [SMALL_STATE(3486)] = 126485, - [SMALL_STATE(3487)] = 126559, - [SMALL_STATE(3488)] = 126635, - [SMALL_STATE(3489)] = 126699, - [SMALL_STATE(3490)] = 126757, - [SMALL_STATE(3491)] = 126823, - [SMALL_STATE(3492)] = 126877, - [SMALL_STATE(3493)] = 126953, - [SMALL_STATE(3494)] = 127031, - [SMALL_STATE(3495)] = 127111, - [SMALL_STATE(3496)] = 127179, - [SMALL_STATE(3497)] = 127241, - [SMALL_STATE(3498)] = 127311, - [SMALL_STATE(3499)] = 127383, - [SMALL_STATE(3500)] = 127457, - [SMALL_STATE(3501)] = 127507, - [SMALL_STATE(3502)] = 127557, - [SMALL_STATE(3503)] = 127607, - [SMALL_STATE(3504)] = 127671, - [SMALL_STATE(3505)] = 127741, - [SMALL_STATE(3506)] = 127805, - [SMALL_STATE(3507)] = 127860, - [SMALL_STATE(3508)] = 127927, - [SMALL_STATE(3509)] = 127978, - [SMALL_STATE(3510)] = 128045, - [SMALL_STATE(3511)] = 128106, - [SMALL_STATE(3512)] = 128165, - [SMALL_STATE(3513)] = 128216, - [SMALL_STATE(3514)] = 128277, - [SMALL_STATE(3515)] = 128338, - [SMALL_STATE(3516)] = 128399, - [SMALL_STATE(3517)] = 128460, - [SMALL_STATE(3518)] = 128527, - [SMALL_STATE(3519)] = 128594, - [SMALL_STATE(3520)] = 128661, - [SMALL_STATE(3521)] = 128730, - [SMALL_STATE(3522)] = 128781, - [SMALL_STATE(3523)] = 128832, - [SMALL_STATE(3524)] = 128893, - [SMALL_STATE(3525)] = 128954, - [SMALL_STATE(3526)] = 129017, - [SMALL_STATE(3527)] = 129074, - [SMALL_STATE(3528)] = 129135, - [SMALL_STATE(3529)] = 129200, - [SMALL_STATE(3530)] = 129253, - [SMALL_STATE(3531)] = 129328, - [SMALL_STATE(3532)] = 129405, - [SMALL_STATE(3533)] = 129484, - [SMALL_STATE(3534)] = 129551, - [SMALL_STATE(3535)] = 129612, - [SMALL_STATE(3536)] = 129681, - [SMALL_STATE(3537)] = 129742, - [SMALL_STATE(3538)] = 129793, - [SMALL_STATE(3539)] = 129848, - [SMALL_STATE(3540)] = 129901, - [SMALL_STATE(3541)] = 129970, - [SMALL_STATE(3542)] = 130041, - [SMALL_STATE(3543)] = 130114, - [SMALL_STATE(3544)] = 130181, - [SMALL_STATE(3545)] = 130242, - [SMALL_STATE(3546)] = 130293, - [SMALL_STATE(3547)] = 130347, - [SMALL_STATE(3548)] = 130413, - [SMALL_STATE(3549)] = 130477, - [SMALL_STATE(3550)] = 130541, - [SMALL_STATE(3551)] = 130607, - [SMALL_STATE(3552)] = 130671, - [SMALL_STATE(3553)] = 130723, - [SMALL_STATE(3554)] = 130789, - [SMALL_STATE(3555)] = 130853, - [SMALL_STATE(3556)] = 130939, - [SMALL_STATE(3557)] = 130997, - [SMALL_STATE(3558)] = 131083, - [SMALL_STATE(3559)] = 131135, - [SMALL_STATE(3560)] = 131193, - [SMALL_STATE(3561)] = 131251, - [SMALL_STATE(3562)] = 131305, - [SMALL_STATE(3563)] = 131369, - [SMALL_STATE(3564)] = 131435, - [SMALL_STATE(3565)] = 131499, - [SMALL_STATE(3566)] = 131565, - [SMALL_STATE(3567)] = 131631, - [SMALL_STATE(3568)] = 131685, - [SMALL_STATE(3569)] = 131739, - [SMALL_STATE(3570)] = 131794, - [SMALL_STATE(3571)] = 131845, - [SMALL_STATE(3572)] = 131896, - [SMALL_STATE(3573)] = 131949, - [SMALL_STATE(3574)] = 132002, - [SMALL_STATE(3575)] = 132051, - [SMALL_STATE(3576)] = 132106, - [SMALL_STATE(3577)] = 132155, - [SMALL_STATE(3578)] = 132210, - [SMALL_STATE(3579)] = 132265, - [SMALL_STATE(3580)] = 132314, - [SMALL_STATE(3581)] = 132369, - [SMALL_STATE(3582)] = 132418, - [SMALL_STATE(3583)] = 132469, - [SMALL_STATE(3584)] = 132532, - [SMALL_STATE(3585)] = 132615, - [SMALL_STATE(3586)] = 132674, - [SMALL_STATE(3587)] = 132725, - [SMALL_STATE(3588)] = 132808, - [SMALL_STATE(3589)] = 132863, - [SMALL_STATE(3590)] = 132918, - [SMALL_STATE(3591)] = 132973, - [SMALL_STATE(3592)] = 133022, - [SMALL_STATE(3593)] = 133085, - [SMALL_STATE(3594)] = 133140, - [SMALL_STATE(3595)] = 133203, - [SMALL_STATE(3596)] = 133266, - [SMALL_STATE(3597)] = 133321, - [SMALL_STATE(3598)] = 133384, - [SMALL_STATE(3599)] = 133439, - [SMALL_STATE(3600)] = 133502, - [SMALL_STATE(3601)] = 133557, - [SMALL_STATE(3602)] = 133612, - [SMALL_STATE(3603)] = 133667, - [SMALL_STATE(3604)] = 133722, - [SMALL_STATE(3605)] = 133777, - [SMALL_STATE(3606)] = 133832, - [SMALL_STATE(3607)] = 133895, - [SMALL_STATE(3608)] = 133950, - [SMALL_STATE(3609)] = 134003, - [SMALL_STATE(3610)] = 134058, - [SMALL_STATE(3611)] = 134113, - [SMALL_STATE(3612)] = 134168, - [SMALL_STATE(3613)] = 134223, - [SMALL_STATE(3614)] = 134278, - [SMALL_STATE(3615)] = 134333, - [SMALL_STATE(3616)] = 134388, - [SMALL_STATE(3617)] = 134443, - [SMALL_STATE(3618)] = 134498, - [SMALL_STATE(3619)] = 134553, - [SMALL_STATE(3620)] = 134608, - [SMALL_STATE(3621)] = 134671, - [SMALL_STATE(3622)] = 134719, - [SMALL_STATE(3623)] = 134771, - [SMALL_STATE(3624)] = 134819, - [SMALL_STATE(3625)] = 134871, - [SMALL_STATE(3626)] = 134923, - [SMALL_STATE(3627)] = 134971, - [SMALL_STATE(3628)] = 135027, - [SMALL_STATE(3629)] = 135075, - [SMALL_STATE(3630)] = 135137, - [SMALL_STATE(3631)] = 135199, - [SMALL_STATE(3632)] = 135249, - [SMALL_STATE(3633)] = 135305, - [SMALL_STATE(3634)] = 135357, - [SMALL_STATE(3635)] = 135409, - [SMALL_STATE(3636)] = 135457, - [SMALL_STATE(3637)] = 135505, - [SMALL_STATE(3638)] = 135557, - [SMALL_STATE(3639)] = 135605, - [SMALL_STATE(3640)] = 135657, - [SMALL_STATE(3641)] = 135707, - [SMALL_STATE(3642)] = 135755, - [SMALL_STATE(3643)] = 135803, - [SMALL_STATE(3644)] = 135855, - [SMALL_STATE(3645)] = 135911, - [SMALL_STATE(3646)] = 135966, - [SMALL_STATE(3647)] = 136021, - [SMALL_STATE(3648)] = 136074, - [SMALL_STATE(3649)] = 136129, - [SMALL_STATE(3650)] = 136184, - [SMALL_STATE(3651)] = 136239, - [SMALL_STATE(3652)] = 136294, - [SMALL_STATE(3653)] = 136345, - [SMALL_STATE(3654)] = 136400, - [SMALL_STATE(3655)] = 136447, - [SMALL_STATE(3656)] = 136502, - [SMALL_STATE(3657)] = 136549, - [SMALL_STATE(3658)] = 136598, - [SMALL_STATE(3659)] = 136647, - [SMALL_STATE(3660)] = 136696, - [SMALL_STATE(3661)] = 136751, - [SMALL_STATE(3662)] = 136806, - [SMALL_STATE(3663)] = 136853, - [SMALL_STATE(3664)] = 136900, - [SMALL_STATE(3665)] = 136955, - [SMALL_STATE(3666)] = 137010, - [SMALL_STATE(3667)] = 137065, - [SMALL_STATE(3668)] = 137120, - [SMALL_STATE(3669)] = 137167, - [SMALL_STATE(3670)] = 137218, - [SMALL_STATE(3671)] = 137269, - [SMALL_STATE(3672)] = 137324, - [SMALL_STATE(3673)] = 137379, - [SMALL_STATE(3674)] = 137434, - [SMALL_STATE(3675)] = 137483, - [SMALL_STATE(3676)] = 137538, - [SMALL_STATE(3677)] = 137585, - [SMALL_STATE(3678)] = 137640, - [SMALL_STATE(3679)] = 137687, - [SMALL_STATE(3680)] = 137736, - [SMALL_STATE(3681)] = 137791, - [SMALL_STATE(3682)] = 137846, - [SMALL_STATE(3683)] = 137901, - [SMALL_STATE(3684)] = 137956, - [SMALL_STATE(3685)] = 138005, - [SMALL_STATE(3686)] = 138051, - [SMALL_STATE(3687)] = 138097, - [SMALL_STATE(3688)] = 138143, - [SMALL_STATE(3689)] = 138189, - [SMALL_STATE(3690)] = 138235, - [SMALL_STATE(3691)] = 138279, - [SMALL_STATE(3692)] = 138325, - [SMALL_STATE(3693)] = 138371, - [SMALL_STATE(3694)] = 138417, - [SMALL_STATE(3695)] = 138469, - [SMALL_STATE(3696)] = 138515, - [SMALL_STATE(3697)] = 138561, - [SMALL_STATE(3698)] = 138609, - [SMALL_STATE(3699)] = 138655, - [SMALL_STATE(3700)] = 138707, - [SMALL_STATE(3701)] = 138753, - [SMALL_STATE(3702)] = 138799, - [SMALL_STATE(3703)] = 138847, - [SMALL_STATE(3704)] = 138893, - [SMALL_STATE(3705)] = 138939, - [SMALL_STATE(3706)] = 138993, - [SMALL_STATE(3707)] = 139045, - [SMALL_STATE(3708)] = 139095, - [SMALL_STATE(3709)] = 139141, - [SMALL_STATE(3710)] = 139195, - [SMALL_STATE(3711)] = 139241, - [SMALL_STATE(3712)] = 139295, - [SMALL_STATE(3713)] = 139341, - [SMALL_STATE(3714)] = 139387, - [SMALL_STATE(3715)] = 139433, - [SMALL_STATE(3716)] = 139479, - [SMALL_STATE(3717)] = 139525, - [SMALL_STATE(3718)] = 139571, - [SMALL_STATE(3719)] = 139617, - [SMALL_STATE(3720)] = 139663, - [SMALL_STATE(3721)] = 139713, - [SMALL_STATE(3722)] = 139759, - [SMALL_STATE(3723)] = 139813, - [SMALL_STATE(3724)] = 139859, - [SMALL_STATE(3725)] = 139905, - [SMALL_STATE(3726)] = 139951, - [SMALL_STATE(3727)] = 139997, - [SMALL_STATE(3728)] = 140043, - [SMALL_STATE(3729)] = 140089, - [SMALL_STATE(3730)] = 140135, - [SMALL_STATE(3731)] = 140181, - [SMALL_STATE(3732)] = 140227, - [SMALL_STATE(3733)] = 140273, - [SMALL_STATE(3734)] = 140319, - [SMALL_STATE(3735)] = 140367, - [SMALL_STATE(3736)] = 140413, - [SMALL_STATE(3737)] = 140459, - [SMALL_STATE(3738)] = 140505, - [SMALL_STATE(3739)] = 140551, - [SMALL_STATE(3740)] = 140597, - [SMALL_STATE(3741)] = 140643, - [SMALL_STATE(3742)] = 140689, - [SMALL_STATE(3743)] = 140737, - [SMALL_STATE(3744)] = 140791, - [SMALL_STATE(3745)] = 140837, - [SMALL_STATE(3746)] = 140883, - [SMALL_STATE(3747)] = 140930, - [SMALL_STATE(3748)] = 140975, - [SMALL_STATE(3749)] = 141024, - [SMALL_STATE(3750)] = 141071, - [SMALL_STATE(3751)] = 141120, - [SMALL_STATE(3752)] = 141167, - [SMALL_STATE(3753)] = 141214, - [SMALL_STATE(3754)] = 141259, - [SMALL_STATE(3755)] = 141308, - [SMALL_STATE(3756)] = 141353, - [SMALL_STATE(3757)] = 141398, - [SMALL_STATE(3758)] = 141443, - [SMALL_STATE(3759)] = 141496, - [SMALL_STATE(3760)] = 141545, - [SMALL_STATE(3761)] = 141598, - [SMALL_STATE(3762)] = 141651, - [SMALL_STATE(3763)] = 141696, - [SMALL_STATE(3764)] = 141741, - [SMALL_STATE(3765)] = 141786, - [SMALL_STATE(3766)] = 141831, - [SMALL_STATE(3767)] = 141884, - [SMALL_STATE(3768)] = 141937, - [SMALL_STATE(3769)] = 141990, - [SMALL_STATE(3770)] = 142043, - [SMALL_STATE(3771)] = 142096, - [SMALL_STATE(3772)] = 142149, - [SMALL_STATE(3773)] = 142202, - [SMALL_STATE(3774)] = 142255, - [SMALL_STATE(3775)] = 142308, - [SMALL_STATE(3776)] = 142361, - [SMALL_STATE(3777)] = 142414, - [SMALL_STATE(3778)] = 142467, - [SMALL_STATE(3779)] = 142520, - [SMALL_STATE(3780)] = 142573, - [SMALL_STATE(3781)] = 142626, - [SMALL_STATE(3782)] = 142679, - [SMALL_STATE(3783)] = 142732, - [SMALL_STATE(3784)] = 142785, - [SMALL_STATE(3785)] = 142838, - [SMALL_STATE(3786)] = 142891, - [SMALL_STATE(3787)] = 142940, - [SMALL_STATE(3788)] = 142993, - [SMALL_STATE(3789)] = 143046, - [SMALL_STATE(3790)] = 143095, - [SMALL_STATE(3791)] = 143148, - [SMALL_STATE(3792)] = 143201, - [SMALL_STATE(3793)] = 143246, - [SMALL_STATE(3794)] = 143295, - [SMALL_STATE(3795)] = 143340, - [SMALL_STATE(3796)] = 143385, - [SMALL_STATE(3797)] = 143430, - [SMALL_STATE(3798)] = 143483, - [SMALL_STATE(3799)] = 143528, - [SMALL_STATE(3800)] = 143573, - [SMALL_STATE(3801)] = 143626, - [SMALL_STATE(3802)] = 143670, - [SMALL_STATE(3803)] = 143716, - [SMALL_STATE(3804)] = 143764, - [SMALL_STATE(3805)] = 143812, - [SMALL_STATE(3806)] = 143858, - [SMALL_STATE(3807)] = 143902, - [SMALL_STATE(3808)] = 143946, - [SMALL_STATE(3809)] = 143992, - [SMALL_STATE(3810)] = 144040, - [SMALL_STATE(3811)] = 144086, - [SMALL_STATE(3812)] = 144130, - [SMALL_STATE(3813)] = 144176, - [SMALL_STATE(3814)] = 144220, - [SMALL_STATE(3815)] = 144266, - [SMALL_STATE(3816)] = 144310, - [SMALL_STATE(3817)] = 144354, - [SMALL_STATE(3818)] = 144398, - [SMALL_STATE(3819)] = 144442, - [SMALL_STATE(3820)] = 144490, - [SMALL_STATE(3821)] = 144538, - [SMALL_STATE(3822)] = 144584, - [SMALL_STATE(3823)] = 144632, - [SMALL_STATE(3824)] = 144680, - [SMALL_STATE(3825)] = 144728, - [SMALL_STATE(3826)] = 144772, - [SMALL_STATE(3827)] = 144818, - [SMALL_STATE(3828)] = 144862, - [SMALL_STATE(3829)] = 144908, - [SMALL_STATE(3830)] = 144954, - [SMALL_STATE(3831)] = 145000, - [SMALL_STATE(3832)] = 145044, - [SMALL_STATE(3833)] = 145092, - [SMALL_STATE(3834)] = 145140, - [SMALL_STATE(3835)] = 145186, - [SMALL_STATE(3836)] = 145234, - [SMALL_STATE(3837)] = 145286, - [SMALL_STATE(3838)] = 145332, - [SMALL_STATE(3839)] = 145378, - [SMALL_STATE(3840)] = 145426, - [SMALL_STATE(3841)] = 145473, - [SMALL_STATE(3842)] = 145520, - [SMALL_STATE(3843)] = 145563, - [SMALL_STATE(3844)] = 145606, - [SMALL_STATE(3845)] = 145653, - [SMALL_STATE(3846)] = 145700, - [SMALL_STATE(3847)] = 145751, - [SMALL_STATE(3848)] = 145798, - [SMALL_STATE(3849)] = 145841, - [SMALL_STATE(3850)] = 145884, - [SMALL_STATE(3851)] = 145927, - [SMALL_STATE(3852)] = 145970, - [SMALL_STATE(3853)] = 146013, - [SMALL_STATE(3854)] = 146056, - [SMALL_STATE(3855)] = 146099, - [SMALL_STATE(3856)] = 146146, - [SMALL_STATE(3857)] = 146193, - [SMALL_STATE(3858)] = 146236, - [SMALL_STATE(3859)] = 146283, - [SMALL_STATE(3860)] = 146330, - [SMALL_STATE(3861)] = 146373, - [SMALL_STATE(3862)] = 146418, - [SMALL_STATE(3863)] = 146461, - [SMALL_STATE(3864)] = 146506, - [SMALL_STATE(3865)] = 146553, - [SMALL_STATE(3866)] = 146596, - [SMALL_STATE(3867)] = 146639, - [SMALL_STATE(3868)] = 146682, - [SMALL_STATE(3869)] = 146725, - [SMALL_STATE(3870)] = 146814, - [SMALL_STATE(3871)] = 146859, - [SMALL_STATE(3872)] = 146902, - [SMALL_STATE(3873)] = 146945, - [SMALL_STATE(3874)] = 146992, - [SMALL_STATE(3875)] = 147039, - [SMALL_STATE(3876)] = 147086, - [SMALL_STATE(3877)] = 147129, - [SMALL_STATE(3878)] = 147172, - [SMALL_STATE(3879)] = 147219, - [SMALL_STATE(3880)] = 147262, - [SMALL_STATE(3881)] = 147309, - [SMALL_STATE(3882)] = 147352, - [SMALL_STATE(3883)] = 147395, - [SMALL_STATE(3884)] = 147442, - [SMALL_STATE(3885)] = 147485, - [SMALL_STATE(3886)] = 147528, - [SMALL_STATE(3887)] = 147571, - [SMALL_STATE(3888)] = 147618, - [SMALL_STATE(3889)] = 147661, - [SMALL_STATE(3890)] = 147704, - [SMALL_STATE(3891)] = 147751, - [SMALL_STATE(3892)] = 147794, - [SMALL_STATE(3893)] = 147841, - [SMALL_STATE(3894)] = 147884, - [SMALL_STATE(3895)] = 147927, - [SMALL_STATE(3896)] = 147970, - [SMALL_STATE(3897)] = 148013, - [SMALL_STATE(3898)] = 148060, - [SMALL_STATE(3899)] = 148107, - [SMALL_STATE(3900)] = 148150, - [SMALL_STATE(3901)] = 148197, - [SMALL_STATE(3902)] = 148240, - [SMALL_STATE(3903)] = 148283, - [SMALL_STATE(3904)] = 148330, - [SMALL_STATE(3905)] = 148377, - [SMALL_STATE(3906)] = 148424, - [SMALL_STATE(3907)] = 148467, - [SMALL_STATE(3908)] = 148510, - [SMALL_STATE(3909)] = 148553, - [SMALL_STATE(3910)] = 148596, - [SMALL_STATE(3911)] = 148639, - [SMALL_STATE(3912)] = 148682, - [SMALL_STATE(3913)] = 148725, - [SMALL_STATE(3914)] = 148772, - [SMALL_STATE(3915)] = 148815, - [SMALL_STATE(3916)] = 148860, - [SMALL_STATE(3917)] = 148909, - [SMALL_STATE(3918)] = 148956, - [SMALL_STATE(3919)] = 149003, - [SMALL_STATE(3920)] = 149046, - [SMALL_STATE(3921)] = 149089, - [SMALL_STATE(3922)] = 149132, - [SMALL_STATE(3923)] = 149179, - [SMALL_STATE(3924)] = 149222, - [SMALL_STATE(3925)] = 149265, - [SMALL_STATE(3926)] = 149308, - [SMALL_STATE(3927)] = 149355, - [SMALL_STATE(3928)] = 149398, - [SMALL_STATE(3929)] = 149441, - [SMALL_STATE(3930)] = 149488, - [SMALL_STATE(3931)] = 149535, - [SMALL_STATE(3932)] = 149578, - [SMALL_STATE(3933)] = 149625, - [SMALL_STATE(3934)] = 149668, - [SMALL_STATE(3935)] = 149711, - [SMALL_STATE(3936)] = 149754, - [SMALL_STATE(3937)] = 149803, - [SMALL_STATE(3938)] = 149850, - [SMALL_STATE(3939)] = 149897, - [SMALL_STATE(3940)] = 149944, - [SMALL_STATE(3941)] = 149991, - [SMALL_STATE(3942)] = 150038, - [SMALL_STATE(3943)] = 150085, - [SMALL_STATE(3944)] = 150132, - [SMALL_STATE(3945)] = 150179, - [SMALL_STATE(3946)] = 150222, - [SMALL_STATE(3947)] = 150311, - [SMALL_STATE(3948)] = 150358, - [SMALL_STATE(3949)] = 150405, - [SMALL_STATE(3950)] = 150452, - [SMALL_STATE(3951)] = 150499, - [SMALL_STATE(3952)] = 150542, - [SMALL_STATE(3953)] = 150585, - [SMALL_STATE(3954)] = 150628, - [SMALL_STATE(3955)] = 150671, - [SMALL_STATE(3956)] = 150714, - [SMALL_STATE(3957)] = 150757, - [SMALL_STATE(3958)] = 150804, - [SMALL_STATE(3959)] = 150874, - [SMALL_STATE(3960)] = 150942, - [SMALL_STATE(3961)] = 151012, - [SMALL_STATE(3962)] = 151082, - [SMALL_STATE(3963)] = 151154, - [SMALL_STATE(3964)] = 151226, - [SMALL_STATE(3965)] = 151300, - [SMALL_STATE(3966)] = 151360, - [SMALL_STATE(3967)] = 151422, - [SMALL_STATE(3968)] = 151476, - [SMALL_STATE(3969)] = 151532, - [SMALL_STATE(3970)] = 151594, - [SMALL_STATE(3971)] = 151658, - [SMALL_STATE(3972)] = 151722, - [SMALL_STATE(3973)] = 151788, - [SMALL_STATE(3974)] = 151854, - [SMALL_STATE(3975)] = 151922, - [SMALL_STATE(3976)] = 151966, - [SMALL_STATE(3977)] = 152008, - [SMALL_STATE(3978)] = 152054, - [SMALL_STATE(3979)] = 152110, - [SMALL_STATE(3980)] = 152160, - [SMALL_STATE(3981)] = 152218, - [SMALL_STATE(3982)] = 152264, - [SMALL_STATE(3983)] = 152332, - [SMALL_STATE(3984)] = 152402, - [SMALL_STATE(3985)] = 152474, - [SMALL_STATE(3986)] = 152534, - [SMALL_STATE(3987)] = 152588, - [SMALL_STATE(3988)] = 152650, - [SMALL_STATE(3989)] = 152714, - [SMALL_STATE(3990)] = 152780, - [SMALL_STATE(3991)] = 152822, - [SMALL_STATE(3992)] = 152880, - [SMALL_STATE(3993)] = 152932, - [SMALL_STATE(3994)] = 152992, - [SMALL_STATE(3995)] = 153040, - [SMALL_STATE(3996)] = 153082, - [SMALL_STATE(3997)] = 153130, - [SMALL_STATE(3998)] = 153200, - [SMALL_STATE(3999)] = 153242, - [SMALL_STATE(4000)] = 153314, - [SMALL_STATE(4001)] = 153388, - [SMALL_STATE(4002)] = 153450, - [SMALL_STATE(4003)] = 153498, - [SMALL_STATE(4004)] = 153540, - [SMALL_STATE(4005)] = 153596, - [SMALL_STATE(4006)] = 153660, - [SMALL_STATE(4007)] = 153726, - [SMALL_STATE(4008)] = 153794, - [SMALL_STATE(4009)] = 153836, - [SMALL_STATE(4010)] = 153880, - [SMALL_STATE(4011)] = 153936, - [SMALL_STATE(4012)] = 153994, - [SMALL_STATE(4013)] = 154044, - [SMALL_STATE(4014)] = 154096, - [SMALL_STATE(4015)] = 154154, - [SMALL_STATE(4016)] = 154214, - [SMALL_STATE(4017)] = 154260, - [SMALL_STATE(4018)] = 154308, - [SMALL_STATE(4019)] = 154376, - [SMALL_STATE(4020)] = 154446, - [SMALL_STATE(4021)] = 154488, - [SMALL_STATE(4022)] = 154534, - [SMALL_STATE(4023)] = 154582, - [SMALL_STATE(4024)] = 154654, - [SMALL_STATE(4025)] = 154728, - [SMALL_STATE(4026)] = 154788, - [SMALL_STATE(4027)] = 154830, - [SMALL_STATE(4028)] = 154876, - [SMALL_STATE(4029)] = 154938, - [SMALL_STATE(4030)] = 154984, - [SMALL_STATE(4031)] = 155038, - [SMALL_STATE(4032)] = 155084, - [SMALL_STATE(4033)] = 155140, - [SMALL_STATE(4034)] = 155186, - [SMALL_STATE(4035)] = 155232, - [SMALL_STATE(4036)] = 155294, - [SMALL_STATE(4037)] = 155358, - [SMALL_STATE(4038)] = 155400, - [SMALL_STATE(4039)] = 155464, - [SMALL_STATE(4040)] = 155530, - [SMALL_STATE(4041)] = 155596, - [SMALL_STATE(4042)] = 155664, - [SMALL_STATE(4043)] = 155722, - [SMALL_STATE(4044)] = 155774, - [SMALL_STATE(4045)] = 155822, - [SMALL_STATE(4046)] = 155870, - [SMALL_STATE(4047)] = 155918, - [SMALL_STATE(4048)] = 155966, - [SMALL_STATE(4049)] = 156026, - [SMALL_STATE(4050)] = 156074, - [SMALL_STATE(4051)] = 156144, - [SMALL_STATE(4052)] = 156216, - [SMALL_STATE(4053)] = 156260, - [SMALL_STATE(4054)] = 156334, - [SMALL_STATE(4055)] = 156396, - [SMALL_STATE(4056)] = 156452, - [SMALL_STATE(4057)] = 156516, - [SMALL_STATE(4058)] = 156560, - [SMALL_STATE(4059)] = 156626, - [SMALL_STATE(4060)] = 156694, - [SMALL_STATE(4061)] = 156742, - [SMALL_STATE(4062)] = 156786, - [SMALL_STATE(4063)] = 156830, - [SMALL_STATE(4064)] = 156886, - [SMALL_STATE(4065)] = 156936, - [SMALL_STATE(4066)] = 156994, - [SMALL_STATE(4067)] = 157040, - [SMALL_STATE(4068)] = 157108, - [SMALL_STATE(4069)] = 157178, - [SMALL_STATE(4070)] = 157250, - [SMALL_STATE(4071)] = 157310, - [SMALL_STATE(4072)] = 157364, - [SMALL_STATE(4073)] = 157426, - [SMALL_STATE(4074)] = 157490, - [SMALL_STATE(4075)] = 157556, - [SMALL_STATE(4076)] = 157612, - [SMALL_STATE(4077)] = 157670, - [SMALL_STATE(4078)] = 157720, - [SMALL_STATE(4079)] = 157772, - [SMALL_STATE(4080)] = 157830, - [SMALL_STATE(4081)] = 157890, - [SMALL_STATE(4082)] = 157962, - [SMALL_STATE(4083)] = 158003, - [SMALL_STATE(4084)] = 158044, - [SMALL_STATE(4085)] = 158085, - [SMALL_STATE(4086)] = 158134, - [SMALL_STATE(4087)] = 158175, - [SMALL_STATE(4088)] = 158220, - [SMALL_STATE(4089)] = 158293, - [SMALL_STATE(4090)] = 158376, - [SMALL_STATE(4091)] = 158417, - [SMALL_STATE(4092)] = 158458, - [SMALL_STATE(4093)] = 158499, - [SMALL_STATE(4094)] = 158540, - [SMALL_STATE(4095)] = 158581, - [SMALL_STATE(4096)] = 158622, - [SMALL_STATE(4097)] = 158679, - [SMALL_STATE(4098)] = 158720, - [SMALL_STATE(4099)] = 158793, - [SMALL_STATE(4100)] = 158876, - [SMALL_STATE(4101)] = 158931, - [SMALL_STATE(4102)] = 158972, - [SMALL_STATE(4103)] = 159031, - [SMALL_STATE(4104)] = 159072, - [SMALL_STATE(4105)] = 159113, - [SMALL_STATE(4106)] = 159196, - [SMALL_STATE(4107)] = 159279, - [SMALL_STATE(4108)] = 159320, - [SMALL_STATE(4109)] = 159361, - [SMALL_STATE(4110)] = 159402, - [SMALL_STATE(4111)] = 159485, - [SMALL_STATE(4112)] = 159530, - [SMALL_STATE(4113)] = 159613, - [SMALL_STATE(4114)] = 159654, - [SMALL_STATE(4115)] = 159737, - [SMALL_STATE(4116)] = 159820, - [SMALL_STATE(4117)] = 159861, - [SMALL_STATE(4118)] = 159902, - [SMALL_STATE(4119)] = 159943, - [SMALL_STATE(4120)] = 159984, - [SMALL_STATE(4121)] = 160067, - [SMALL_STATE(4122)] = 160108, - [SMALL_STATE(4123)] = 160191, - [SMALL_STATE(4124)] = 160252, - [SMALL_STATE(4125)] = 160335, - [SMALL_STATE(4126)] = 160376, - [SMALL_STATE(4127)] = 160417, - [SMALL_STATE(4128)] = 160458, - [SMALL_STATE(4129)] = 160499, - [SMALL_STATE(4130)] = 160540, - [SMALL_STATE(4131)] = 160591, - [SMALL_STATE(4132)] = 160658, - [SMALL_STATE(4133)] = 160741, - [SMALL_STATE(4134)] = 160824, - [SMALL_STATE(4135)] = 160865, - [SMALL_STATE(4136)] = 160906, - [SMALL_STATE(4137)] = 160953, - [SMALL_STATE(4138)] = 160994, - [SMALL_STATE(4139)] = 161035, - [SMALL_STATE(4140)] = 161088, - [SMALL_STATE(4141)] = 161129, - [SMALL_STATE(4142)] = 161212, - [SMALL_STATE(4143)] = 161295, - [SMALL_STATE(4144)] = 161378, - [SMALL_STATE(4145)] = 161421, - [SMALL_STATE(4146)] = 161464, - [SMALL_STATE(4147)] = 161505, - [SMALL_STATE(4148)] = 161568, - [SMALL_STATE(4149)] = 161651, - [SMALL_STATE(4150)] = 161734, - [SMALL_STATE(4151)] = 161775, - [SMALL_STATE(4152)] = 161858, - [SMALL_STATE(4153)] = 161941, - [SMALL_STATE(4154)] = 162024, - [SMALL_STATE(4155)] = 162107, - [SMALL_STATE(4156)] = 162190, - [SMALL_STATE(4157)] = 162231, - [SMALL_STATE(4158)] = 162314, - [SMALL_STATE(4159)] = 162387, - [SMALL_STATE(4160)] = 162460, - [SMALL_STATE(4161)] = 162501, - [SMALL_STATE(4162)] = 162566, - [SMALL_STATE(4163)] = 162607, - [SMALL_STATE(4164)] = 162648, - [SMALL_STATE(4165)] = 162721, - [SMALL_STATE(4166)] = 162794, - [SMALL_STATE(4167)] = 162835, - [SMALL_STATE(4168)] = 162880, - [SMALL_STATE(4169)] = 162921, - [SMALL_STATE(4170)] = 163004, - [SMALL_STATE(4171)] = 163045, - [SMALL_STATE(4172)] = 163128, - [SMALL_STATE(4173)] = 163184, - [SMALL_STATE(4174)] = 163230, - [SMALL_STATE(4175)] = 163274, - [SMALL_STATE(4176)] = 163316, - [SMALL_STATE(4177)] = 163380, - [SMALL_STATE(4178)] = 163424, - [SMALL_STATE(4179)] = 163490, - [SMALL_STATE(4180)] = 163548, - [SMALL_STATE(4181)] = 163608, - [SMALL_STATE(4182)] = 163670, - [SMALL_STATE(4183)] = 163738, - [SMALL_STATE(4184)] = 163780, - [SMALL_STATE(4185)] = 163832, - [SMALL_STATE(4186)] = 163878, - [SMALL_STATE(4187)] = 163932, - [SMALL_STATE(4188)] = 163974, - [SMALL_STATE(4189)] = 164038, - [SMALL_STATE(4190)] = 164104, - [SMALL_STATE(4191)] = 164172, - [SMALL_STATE(4192)] = 164226, - [SMALL_STATE(4193)] = 164284, - [SMALL_STATE(4194)] = 164344, - [SMALL_STATE(4195)] = 164406, - [SMALL_STATE(4196)] = 164448, - [SMALL_STATE(4197)] = 164490, - [SMALL_STATE(4198)] = 164532, - [SMALL_STATE(4199)] = 164574, - [SMALL_STATE(4200)] = 164630, - [SMALL_STATE(4201)] = 164672, - [SMALL_STATE(4202)] = 164722, - [SMALL_STATE(4203)] = 164764, - [SMALL_STATE(4204)] = 164806, - [SMALL_STATE(4205)] = 164858, - [SMALL_STATE(4206)] = 164902, - [SMALL_STATE(4207)] = 164946, - [SMALL_STATE(4208)] = 164996, - [SMALL_STATE(4209)] = 165073, - [SMALL_STATE(4210)] = 165140, - [SMALL_STATE(4211)] = 165217, - [SMALL_STATE(4212)] = 165284, - [SMALL_STATE(4213)] = 165351, - [SMALL_STATE(4214)] = 165418, - [SMALL_STATE(4215)] = 165495, - [SMALL_STATE(4216)] = 165572, - [SMALL_STATE(4217)] = 165639, - [SMALL_STATE(4218)] = 165716, - [SMALL_STATE(4219)] = 165783, - [SMALL_STATE(4220)] = 165860, - [SMALL_STATE(4221)] = 165937, - [SMALL_STATE(4222)] = 166014, - [SMALL_STATE(4223)] = 166081, - [SMALL_STATE(4224)] = 166158, - [SMALL_STATE(4225)] = 166235, - [SMALL_STATE(4226)] = 166280, - [SMALL_STATE(4227)] = 166357, - [SMALL_STATE(4228)] = 166434, - [SMALL_STATE(4229)] = 166478, - [SMALL_STATE(4230)] = 166532, - [SMALL_STATE(4231)] = 166570, - [SMALL_STATE(4232)] = 166621, - [SMALL_STATE(4233)] = 166674, - [SMALL_STATE(4234)] = 166725, - [SMALL_STATE(4235)] = 166776, - [SMALL_STATE(4236)] = 166824, - [SMALL_STATE(4237)] = 166880, - [SMALL_STATE(4238)] = 166928, - [SMALL_STATE(4239)] = 166976, - [SMALL_STATE(4240)] = 167024, - [SMALL_STATE(4241)] = 167074, - [SMALL_STATE(4242)] = 167114, - [SMALL_STATE(4243)] = 167164, - [SMALL_STATE(4244)] = 167204, - [SMALL_STATE(4245)] = 167254, - [SMALL_STATE(4246)] = 167301, - [SMALL_STATE(4247)] = 167340, - [SMALL_STATE(4248)] = 167377, - [SMALL_STATE(4249)] = 167432, - [SMALL_STATE(4250)] = 167485, - [SMALL_STATE(4251)] = 167522, - [SMALL_STATE(4252)] = 167569, - [SMALL_STATE(4253)] = 167616, - [SMALL_STATE(4254)] = 167663, - [SMALL_STATE(4255)] = 167710, - [SMALL_STATE(4256)] = 167763, - [SMALL_STATE(4257)] = 167802, - [SMALL_STATE(4258)] = 167855, - [SMALL_STATE(4259)] = 167889, - [SMALL_STATE(4260)] = 167927, - [SMALL_STATE(4261)] = 167965, - [SMALL_STATE(4262)] = 168015, - [SMALL_STATE(4263)] = 168067, - [SMALL_STATE(4264)] = 168117, - [SMALL_STATE(4265)] = 168169, - [SMALL_STATE(4266)] = 168203, - [SMALL_STATE(4267)] = 168253, - [SMALL_STATE(4268)] = 168305, - [SMALL_STATE(4269)] = 168339, - [SMALL_STATE(4270)] = 168377, - [SMALL_STATE(4271)] = 168427, - [SMALL_STATE(4272)] = 168469, - [SMALL_STATE(4273)] = 168503, - [SMALL_STATE(4274)] = 168539, - [SMALL_STATE(4275)] = 168585, - [SMALL_STATE(4276)] = 168627, - [SMALL_STATE(4277)] = 168669, - [SMALL_STATE(4278)] = 168707, - [SMALL_STATE(4279)] = 168743, - [SMALL_STATE(4280)] = 168776, - [SMALL_STATE(4281)] = 168813, - [SMALL_STATE(4282)] = 168848, - [SMALL_STATE(4283)] = 168889, - [SMALL_STATE(4284)] = 168936, - [SMALL_STATE(4285)] = 168977, - [SMALL_STATE(4286)] = 169026, - [SMALL_STATE(4287)] = 169061, - [SMALL_STATE(4288)] = 169098, - [SMALL_STATE(4289)] = 169147, - [SMALL_STATE(4290)] = 169184, - [SMALL_STATE(4291)] = 169233, - [SMALL_STATE(4292)] = 169270, - [SMALL_STATE(4293)] = 169319, - [SMALL_STATE(4294)] = 169352, - [SMALL_STATE(4295)] = 169385, - [SMALL_STATE(4296)] = 169420, - [SMALL_STATE(4297)] = 169455, - [SMALL_STATE(4298)] = 169496, - [SMALL_STATE(4299)] = 169535, - [SMALL_STATE(4300)] = 169572, - [SMALL_STATE(4301)] = 169607, - [SMALL_STATE(4302)] = 169640, - [SMALL_STATE(4303)] = 169693, - [SMALL_STATE(4304)] = 169725, - [SMALL_STATE(4305)] = 169757, - [SMALL_STATE(4306)] = 169793, - [SMALL_STATE(4307)] = 169833, - [SMALL_STATE(4308)] = 169865, - [SMALL_STATE(4309)] = 169899, - [SMALL_STATE(4310)] = 169937, - [SMALL_STATE(4311)] = 169973, - [SMALL_STATE(4312)] = 170005, - [SMALL_STATE(4313)] = 170041, - [SMALL_STATE(4314)] = 170073, - [SMALL_STATE(4315)] = 170113, - [SMALL_STATE(4316)] = 170159, - [SMALL_STATE(4317)] = 170191, - [SMALL_STATE(4318)] = 170229, - [SMALL_STATE(4319)] = 170265, - [SMALL_STATE(4320)] = 170315, - [SMALL_STATE(4321)] = 170347, - [SMALL_STATE(4322)] = 170397, - [SMALL_STATE(4323)] = 170437, - [SMALL_STATE(4324)] = 170475, - [SMALL_STATE(4325)] = 170513, - [SMALL_STATE(4326)] = 170549, - [SMALL_STATE(4327)] = 170581, - [SMALL_STATE(4328)] = 170615, - [SMALL_STATE(4329)] = 170647, - [SMALL_STATE(4330)] = 170681, - [SMALL_STATE(4331)] = 170715, - [SMALL_STATE(4332)] = 170765, - [SMALL_STATE(4333)] = 170812, - [SMALL_STATE(4334)] = 170847, - [SMALL_STATE(4335)] = 170894, - [SMALL_STATE(4336)] = 170925, - [SMALL_STATE(4337)] = 170964, - [SMALL_STATE(4338)] = 170999, - [SMALL_STATE(4339)] = 171046, - [SMALL_STATE(4340)] = 171079, - [SMALL_STATE(4341)] = 171114, - [SMALL_STATE(4342)] = 171145, - [SMALL_STATE(4343)] = 171176, - [SMALL_STATE(4344)] = 171213, - [SMALL_STATE(4345)] = 171244, - [SMALL_STATE(4346)] = 171277, - [SMALL_STATE(4347)] = 171310, - [SMALL_STATE(4348)] = 171347, - [SMALL_STATE(4349)] = 171386, - [SMALL_STATE(4350)] = 171427, - [SMALL_STATE(4351)] = 171458, - [SMALL_STATE(4352)] = 171505, - [SMALL_STATE(4353)] = 171540, - [SMALL_STATE(4354)] = 171571, - [SMALL_STATE(4355)] = 171610, - [SMALL_STATE(4356)] = 171641, - [SMALL_STATE(4357)] = 171678, - [SMALL_STATE(4358)] = 171723, - [SMALL_STATE(4359)] = 171756, - [SMALL_STATE(4360)] = 171791, - [SMALL_STATE(4361)] = 171822, - [SMALL_STATE(4362)] = 171859, - [SMALL_STATE(4363)] = 171891, - [SMALL_STATE(4364)] = 171921, - [SMALL_STATE(4365)] = 171951, - [SMALL_STATE(4366)] = 171983, - [SMALL_STATE(4367)] = 172015, - [SMALL_STATE(4368)] = 172045, - [SMALL_STATE(4369)] = 172075, - [SMALL_STATE(4370)] = 172107, - [SMALL_STATE(4371)] = 172137, - [SMALL_STATE(4372)] = 172169, - [SMALL_STATE(4373)] = 172201, - [SMALL_STATE(4374)] = 172231, - [SMALL_STATE(4375)] = 172281, - [SMALL_STATE(4376)] = 172313, - [SMALL_STATE(4377)] = 172347, - [SMALL_STATE(4378)] = 172381, - [SMALL_STATE(4379)] = 172419, - [SMALL_STATE(4380)] = 172453, - [SMALL_STATE(4381)] = 172491, - [SMALL_STATE(4382)] = 172523, - [SMALL_STATE(4383)] = 172553, - [SMALL_STATE(4384)] = 172591, - [SMALL_STATE(4385)] = 172629, - [SMALL_STATE(4386)] = 172665, - [SMALL_STATE(4387)] = 172699, - [SMALL_STATE(4388)] = 172731, - [SMALL_STATE(4389)] = 172771, - [SMALL_STATE(4390)] = 172803, - [SMALL_STATE(4391)] = 172833, - [SMALL_STATE(4392)] = 172865, - [SMALL_STATE(4393)] = 172897, - [SMALL_STATE(4394)] = 172929, - [SMALL_STATE(4395)] = 172963, - [SMALL_STATE(4396)] = 172993, - [SMALL_STATE(4397)] = 173023, - [SMALL_STATE(4398)] = 173053, - [SMALL_STATE(4399)] = 173085, - [SMALL_STATE(4400)] = 173123, - [SMALL_STATE(4401)] = 173153, - [SMALL_STATE(4402)] = 173184, - [SMALL_STATE(4403)] = 173213, - [SMALL_STATE(4404)] = 173244, - [SMALL_STATE(4405)] = 173273, - [SMALL_STATE(4406)] = 173302, - [SMALL_STATE(4407)] = 173339, - [SMALL_STATE(4408)] = 173376, - [SMALL_STATE(4409)] = 173413, - [SMALL_STATE(4410)] = 173444, - [SMALL_STATE(4411)] = 173481, - [SMALL_STATE(4412)] = 173518, - [SMALL_STATE(4413)] = 173555, - [SMALL_STATE(4414)] = 173584, - [SMALL_STATE(4415)] = 173615, - [SMALL_STATE(4416)] = 173646, - [SMALL_STATE(4417)] = 173675, - [SMALL_STATE(4418)] = 173712, - [SMALL_STATE(4419)] = 173749, - [SMALL_STATE(4420)] = 173786, - [SMALL_STATE(4421)] = 173817, - [SMALL_STATE(4422)] = 173848, - [SMALL_STATE(4423)] = 173877, - [SMALL_STATE(4424)] = 173914, - [SMALL_STATE(4425)] = 173945, - [SMALL_STATE(4426)] = 173982, - [SMALL_STATE(4427)] = 174011, - [SMALL_STATE(4428)] = 174048, - [SMALL_STATE(4429)] = 174085, - [SMALL_STATE(4430)] = 174122, - [SMALL_STATE(4431)] = 174155, - [SMALL_STATE(4432)] = 174192, - [SMALL_STATE(4433)] = 174229, - [SMALL_STATE(4434)] = 174258, - [SMALL_STATE(4435)] = 174287, - [SMALL_STATE(4436)] = 174324, - [SMALL_STATE(4437)] = 174361, - [SMALL_STATE(4438)] = 174396, - [SMALL_STATE(4439)] = 174433, - [SMALL_STATE(4440)] = 174462, - [SMALL_STATE(4441)] = 174493, - [SMALL_STATE(4442)] = 174530, - [SMALL_STATE(4443)] = 174567, - [SMALL_STATE(4444)] = 174596, - [SMALL_STATE(4445)] = 174633, - [SMALL_STATE(4446)] = 174664, - [SMALL_STATE(4447)] = 174693, - [SMALL_STATE(4448)] = 174722, - [SMALL_STATE(4449)] = 174751, - [SMALL_STATE(4450)] = 174780, - [SMALL_STATE(4451)] = 174817, - [SMALL_STATE(4452)] = 174850, - [SMALL_STATE(4453)] = 174881, - [SMALL_STATE(4454)] = 174914, - [SMALL_STATE(4455)] = 174947, - [SMALL_STATE(4456)] = 174976, - [SMALL_STATE(4457)] = 175005, - [SMALL_STATE(4458)] = 175034, - [SMALL_STATE(4459)] = 175071, - [SMALL_STATE(4460)] = 175100, - [SMALL_STATE(4461)] = 175131, - [SMALL_STATE(4462)] = 175160, - [SMALL_STATE(4463)] = 175191, - [SMALL_STATE(4464)] = 175228, - [SMALL_STATE(4465)] = 175259, - [SMALL_STATE(4466)] = 175290, - [SMALL_STATE(4467)] = 175327, - [SMALL_STATE(4468)] = 175364, - [SMALL_STATE(4469)] = 175395, - [SMALL_STATE(4470)] = 175432, - [SMALL_STATE(4471)] = 175463, - [SMALL_STATE(4472)] = 175496, - [SMALL_STATE(4473)] = 175527, - [SMALL_STATE(4474)] = 175556, - [SMALL_STATE(4475)] = 175585, - [SMALL_STATE(4476)] = 175616, - [SMALL_STATE(4477)] = 175647, - [SMALL_STATE(4478)] = 175678, - [SMALL_STATE(4479)] = 175715, - [SMALL_STATE(4480)] = 175752, - [SMALL_STATE(4481)] = 175789, - [SMALL_STATE(4482)] = 175822, - [SMALL_STATE(4483)] = 175855, - [SMALL_STATE(4484)] = 175886, - [SMALL_STATE(4485)] = 175915, - [SMALL_STATE(4486)] = 175952, - [SMALL_STATE(4487)] = 175980, - [SMALL_STATE(4488)] = 176012, - [SMALL_STATE(4489)] = 176048, - [SMALL_STATE(4490)] = 176092, - [SMALL_STATE(4491)] = 176122, - [SMALL_STATE(4492)] = 176166, - [SMALL_STATE(4493)] = 176202, - [SMALL_STATE(4494)] = 176232, - [SMALL_STATE(4495)] = 176268, - [SMALL_STATE(4496)] = 176304, - [SMALL_STATE(4497)] = 176340, - [SMALL_STATE(4498)] = 176370, - [SMALL_STATE(4499)] = 176400, - [SMALL_STATE(4500)] = 176436, - [SMALL_STATE(4501)] = 176464, - [SMALL_STATE(4502)] = 176494, - [SMALL_STATE(4503)] = 176522, - [SMALL_STATE(4504)] = 176550, - [SMALL_STATE(4505)] = 176586, - [SMALL_STATE(4506)] = 176622, - [SMALL_STATE(4507)] = 176652, - [SMALL_STATE(4508)] = 176690, - [SMALL_STATE(4509)] = 176738, - [SMALL_STATE(4510)] = 176774, - [SMALL_STATE(4511)] = 176806, - [SMALL_STATE(4512)] = 176834, - [SMALL_STATE(4513)] = 176870, - [SMALL_STATE(4514)] = 176906, - [SMALL_STATE(4515)] = 176934, - [SMALL_STATE(4516)] = 176964, - [SMALL_STATE(4517)] = 176996, - [SMALL_STATE(4518)] = 177030, - [SMALL_STATE(4519)] = 177058, - [SMALL_STATE(4520)] = 177094, - [SMALL_STATE(4521)] = 177126, - [SMALL_STATE(4522)] = 177154, - [SMALL_STATE(4523)] = 177190, - [SMALL_STATE(4524)] = 177218, - [SMALL_STATE(4525)] = 177262, - [SMALL_STATE(4526)] = 177306, - [SMALL_STATE(4527)] = 177342, - [SMALL_STATE(4528)] = 177370, - [SMALL_STATE(4529)] = 177402, - [SMALL_STATE(4530)] = 177438, - [SMALL_STATE(4531)] = 177466, - [SMALL_STATE(4532)] = 177502, - [SMALL_STATE(4533)] = 177534, - [SMALL_STATE(4534)] = 177570, - [SMALL_STATE(4535)] = 177598, - [SMALL_STATE(4536)] = 177634, - [SMALL_STATE(4537)] = 177670, - [SMALL_STATE(4538)] = 177698, - [SMALL_STATE(4539)] = 177746, - [SMALL_STATE(4540)] = 177782, - [SMALL_STATE(4541)] = 177826, - [SMALL_STATE(4542)] = 177856, - [SMALL_STATE(4543)] = 177892, - [SMALL_STATE(4544)] = 177920, - [SMALL_STATE(4545)] = 177956, - [SMALL_STATE(4546)] = 177992, - [SMALL_STATE(4547)] = 178020, - [SMALL_STATE(4548)] = 178052, - [SMALL_STATE(4549)] = 178084, - [SMALL_STATE(4550)] = 178120, - [SMALL_STATE(4551)] = 178150, - [SMALL_STATE(4552)] = 178182, - [SMALL_STATE(4553)] = 178218, - [SMALL_STATE(4554)] = 178250, - [SMALL_STATE(4555)] = 178286, - [SMALL_STATE(4556)] = 178318, - [SMALL_STATE(4557)] = 178346, - [SMALL_STATE(4558)] = 178382, - [SMALL_STATE(4559)] = 178430, - [SMALL_STATE(4560)] = 178466, - [SMALL_STATE(4561)] = 178496, - [SMALL_STATE(4562)] = 178524, - [SMALL_STATE(4563)] = 178560, - [SMALL_STATE(4564)] = 178608, - [SMALL_STATE(4565)] = 178638, - [SMALL_STATE(4566)] = 178674, - [SMALL_STATE(4567)] = 178710, - [SMALL_STATE(4568)] = 178738, - [SMALL_STATE(4569)] = 178768, - [SMALL_STATE(4570)] = 178796, - [SMALL_STATE(4571)] = 178824, - [SMALL_STATE(4572)] = 178852, - [SMALL_STATE(4573)] = 178880, - [SMALL_STATE(4574)] = 178918, - [SMALL_STATE(4575)] = 178950, - [SMALL_STATE(4576)] = 178986, - [SMALL_STATE(4577)] = 179018, - [SMALL_STATE(4578)] = 179049, - [SMALL_STATE(4579)] = 179084, - [SMALL_STATE(4580)] = 179111, - [SMALL_STATE(4581)] = 179138, - [SMALL_STATE(4582)] = 179165, - [SMALL_STATE(4583)] = 179196, - [SMALL_STATE(4584)] = 179227, - [SMALL_STATE(4585)] = 179254, - [SMALL_STATE(4586)] = 179281, - [SMALL_STATE(4587)] = 179312, - [SMALL_STATE(4588)] = 179343, - [SMALL_STATE(4589)] = 179374, - [SMALL_STATE(4590)] = 179405, - [SMALL_STATE(4591)] = 179438, - [SMALL_STATE(4592)] = 179471, - [SMALL_STATE(4593)] = 179508, - [SMALL_STATE(4594)] = 179543, - [SMALL_STATE(4595)] = 179570, - [SMALL_STATE(4596)] = 179597, - [SMALL_STATE(4597)] = 179628, - [SMALL_STATE(4598)] = 179659, - [SMALL_STATE(4599)] = 179694, - [SMALL_STATE(4600)] = 179727, - [SMALL_STATE(4601)] = 179760, - [SMALL_STATE(4602)] = 179793, - [SMALL_STATE(4603)] = 179826, - [SMALL_STATE(4604)] = 179861, - [SMALL_STATE(4605)] = 179896, - [SMALL_STATE(4606)] = 179931, - [SMALL_STATE(4607)] = 179962, - [SMALL_STATE(4608)] = 179997, - [SMALL_STATE(4609)] = 180024, - [SMALL_STATE(4610)] = 180059, - [SMALL_STATE(4611)] = 180094, - [SMALL_STATE(4612)] = 180127, - [SMALL_STATE(4613)] = 180162, - [SMALL_STATE(4614)] = 180193, - [SMALL_STATE(4615)] = 180228, - [SMALL_STATE(4616)] = 180263, - [SMALL_STATE(4617)] = 180294, - [SMALL_STATE(4618)] = 180327, - [SMALL_STATE(4619)] = 180362, - [SMALL_STATE(4620)] = 180397, - [SMALL_STATE(4621)] = 180432, - [SMALL_STATE(4622)] = 180467, - [SMALL_STATE(4623)] = 180502, - [SMALL_STATE(4624)] = 180537, - [SMALL_STATE(4625)] = 180572, - [SMALL_STATE(4626)] = 180603, - [SMALL_STATE(4627)] = 180634, - [SMALL_STATE(4628)] = 180665, - [SMALL_STATE(4629)] = 180700, - [SMALL_STATE(4630)] = 180735, - [SMALL_STATE(4631)] = 180770, - [SMALL_STATE(4632)] = 180805, - [SMALL_STATE(4633)] = 180840, - [SMALL_STATE(4634)] = 180875, - [SMALL_STATE(4635)] = 180902, - [SMALL_STATE(4636)] = 180933, - [SMALL_STATE(4637)] = 180964, - [SMALL_STATE(4638)] = 180995, - [SMALL_STATE(4639)] = 181020, - [SMALL_STATE(4640)] = 181051, - [SMALL_STATE(4641)] = 181078, - [SMALL_STATE(4642)] = 181105, - [SMALL_STATE(4643)] = 181140, - [SMALL_STATE(4644)] = 181167, - [SMALL_STATE(4645)] = 181194, - [SMALL_STATE(4646)] = 181221, - [SMALL_STATE(4647)] = 181252, - [SMALL_STATE(4648)] = 181279, - [SMALL_STATE(4649)] = 181310, - [SMALL_STATE(4650)] = 181341, - [SMALL_STATE(4651)] = 181372, - [SMALL_STATE(4652)] = 181399, - [SMALL_STATE(4653)] = 181430, - [SMALL_STATE(4654)] = 181461, - [SMALL_STATE(4655)] = 181488, - [SMALL_STATE(4656)] = 181515, - [SMALL_STATE(4657)] = 181546, - [SMALL_STATE(4658)] = 181577, - [SMALL_STATE(4659)] = 181604, - [SMALL_STATE(4660)] = 181635, - [SMALL_STATE(4661)] = 181668, - [SMALL_STATE(4662)] = 181695, - [SMALL_STATE(4663)] = 181722, - [SMALL_STATE(4664)] = 181749, - [SMALL_STATE(4665)] = 181780, - [SMALL_STATE(4666)] = 181815, - [SMALL_STATE(4667)] = 181846, - [SMALL_STATE(4668)] = 181877, - [SMALL_STATE(4669)] = 181904, - [SMALL_STATE(4670)] = 181931, - [SMALL_STATE(4671)] = 181960, - [SMALL_STATE(4672)] = 181989, - [SMALL_STATE(4673)] = 182020, - [SMALL_STATE(4674)] = 182051, - [SMALL_STATE(4675)] = 182078, - [SMALL_STATE(4676)] = 182105, - [SMALL_STATE(4677)] = 182132, - [SMALL_STATE(4678)] = 182161, - [SMALL_STATE(4679)] = 182190, - [SMALL_STATE(4680)] = 182221, - [SMALL_STATE(4681)] = 182252, - [SMALL_STATE(4682)] = 182283, - [SMALL_STATE(4683)] = 182314, - [SMALL_STATE(4684)] = 182347, - [SMALL_STATE(4685)] = 182380, - [SMALL_STATE(4686)] = 182407, - [SMALL_STATE(4687)] = 182434, - [SMALL_STATE(4688)] = 182463, - [SMALL_STATE(4689)] = 182492, - [SMALL_STATE(4690)] = 182523, - [SMALL_STATE(4691)] = 182554, - [SMALL_STATE(4692)] = 182581, - [SMALL_STATE(4693)] = 182608, - [SMALL_STATE(4694)] = 182635, - [SMALL_STATE(4695)] = 182662, - [SMALL_STATE(4696)] = 182689, - [SMALL_STATE(4697)] = 182718, - [SMALL_STATE(4698)] = 182747, - [SMALL_STATE(4699)] = 182778, - [SMALL_STATE(4700)] = 182809, - [SMALL_STATE(4701)] = 182840, - [SMALL_STATE(4702)] = 182871, - [SMALL_STATE(4703)] = 182902, - [SMALL_STATE(4704)] = 182935, - [SMALL_STATE(4705)] = 182968, - [SMALL_STATE(4706)] = 182997, - [SMALL_STATE(4707)] = 183026, - [SMALL_STATE(4708)] = 183057, - [SMALL_STATE(4709)] = 183082, - [SMALL_STATE(4710)] = 183109, - [SMALL_STATE(4711)] = 183136, - [SMALL_STATE(4712)] = 183163, - [SMALL_STATE(4713)] = 183190, - [SMALL_STATE(4714)] = 183217, - [SMALL_STATE(4715)] = 183246, - [SMALL_STATE(4716)] = 183275, - [SMALL_STATE(4717)] = 183306, - [SMALL_STATE(4718)] = 183337, - [SMALL_STATE(4719)] = 183368, - [SMALL_STATE(4720)] = 183393, - [SMALL_STATE(4721)] = 183424, - [SMALL_STATE(4722)] = 183449, - [SMALL_STATE(4723)] = 183478, - [SMALL_STATE(4724)] = 183511, - [SMALL_STATE(4725)] = 183536, - [SMALL_STATE(4726)] = 183561, - [SMALL_STATE(4727)] = 183594, - [SMALL_STATE(4728)] = 183619, - [SMALL_STATE(4729)] = 183646, - [SMALL_STATE(4730)] = 183671, - [SMALL_STATE(4731)] = 183696, - [SMALL_STATE(4732)] = 183723, - [SMALL_STATE(4733)] = 183750, - [SMALL_STATE(4734)] = 183779, - [SMALL_STATE(4735)] = 183808, - [SMALL_STATE(4736)] = 183833, - [SMALL_STATE(4737)] = 183858, - [SMALL_STATE(4738)] = 183885, - [SMALL_STATE(4739)] = 183912, - [SMALL_STATE(4740)] = 183943, - [SMALL_STATE(4741)] = 183970, - [SMALL_STATE(4742)] = 184001, - [SMALL_STATE(4743)] = 184028, - [SMALL_STATE(4744)] = 184057, - [SMALL_STATE(4745)] = 184086, - [SMALL_STATE(4746)] = 184117, - [SMALL_STATE(4747)] = 184150, - [SMALL_STATE(4748)] = 184183, - [SMALL_STATE(4749)] = 184210, - [SMALL_STATE(4750)] = 184237, - [SMALL_STATE(4751)] = 184264, - [SMALL_STATE(4752)] = 184293, - [SMALL_STATE(4753)] = 184322, - [SMALL_STATE(4754)] = 184349, - [SMALL_STATE(4755)] = 184378, - [SMALL_STATE(4756)] = 184407, - [SMALL_STATE(4757)] = 184438, - [SMALL_STATE(4758)] = 184465, - [SMALL_STATE(4759)] = 184496, - [SMALL_STATE(4760)] = 184523, - [SMALL_STATE(4761)] = 184550, - [SMALL_STATE(4762)] = 184577, - [SMALL_STATE(4763)] = 184606, - [SMALL_STATE(4764)] = 184635, - [SMALL_STATE(4765)] = 184666, - [SMALL_STATE(4766)] = 184697, - [SMALL_STATE(4767)] = 184728, - [SMALL_STATE(4768)] = 184759, - [SMALL_STATE(4769)] = 184792, - [SMALL_STATE(4770)] = 184825, - [SMALL_STATE(4771)] = 184852, - [SMALL_STATE(4772)] = 184879, - [SMALL_STATE(4773)] = 184906, - [SMALL_STATE(4774)] = 184935, - [SMALL_STATE(4775)] = 184966, - [SMALL_STATE(4776)] = 184997, - [SMALL_STATE(4777)] = 185030, - [SMALL_STATE(4778)] = 185063, - [SMALL_STATE(4779)] = 185094, - [SMALL_STATE(4780)] = 185129, - [SMALL_STATE(4781)] = 185164, - [SMALL_STATE(4782)] = 185199, - [SMALL_STATE(4783)] = 185226, - [SMALL_STATE(4784)] = 185252, - [SMALL_STATE(4785)] = 185278, - [SMALL_STATE(4786)] = 185304, - [SMALL_STATE(4787)] = 185334, - [SMALL_STATE(4788)] = 185362, - [SMALL_STATE(4789)] = 185386, - [SMALL_STATE(4790)] = 185416, - [SMALL_STATE(4791)] = 185442, - [SMALL_STATE(4792)] = 185468, - [SMALL_STATE(4793)] = 185498, - [SMALL_STATE(4794)] = 185526, - [SMALL_STATE(4795)] = 185578, - [SMALL_STATE(4796)] = 185630, - [SMALL_STATE(4797)] = 185658, - [SMALL_STATE(4798)] = 185686, - [SMALL_STATE(4799)] = 185716, - [SMALL_STATE(4800)] = 185768, - [SMALL_STATE(4801)] = 185820, - [SMALL_STATE(4802)] = 185846, - [SMALL_STATE(4803)] = 185898, - [SMALL_STATE(4804)] = 185950, - [SMALL_STATE(4805)] = 185976, - [SMALL_STATE(4806)] = 186006, - [SMALL_STATE(4807)] = 186030, - [SMALL_STATE(4808)] = 186076, - [SMALL_STATE(4809)] = 186100, - [SMALL_STATE(4810)] = 186124, - [SMALL_STATE(4811)] = 186154, - [SMALL_STATE(4812)] = 186180, - [SMALL_STATE(4813)] = 186210, - [SMALL_STATE(4814)] = 186238, - [SMALL_STATE(4815)] = 186268, - [SMALL_STATE(4816)] = 186294, - [SMALL_STATE(4817)] = 186322, - [SMALL_STATE(4818)] = 186350, - [SMALL_STATE(4819)] = 186376, - [SMALL_STATE(4820)] = 186404, - [SMALL_STATE(4821)] = 186430, - [SMALL_STATE(4822)] = 186458, - [SMALL_STATE(4823)] = 186486, - [SMALL_STATE(4824)] = 186516, - [SMALL_STATE(4825)] = 186546, - [SMALL_STATE(4826)] = 186576, - [SMALL_STATE(4827)] = 186606, - [SMALL_STATE(4828)] = 186636, - [SMALL_STATE(4829)] = 186668, - [SMALL_STATE(4830)] = 186692, - [SMALL_STATE(4831)] = 186716, - [SMALL_STATE(4832)] = 186746, - [SMALL_STATE(4833)] = 186772, - [SMALL_STATE(4834)] = 186798, - [SMALL_STATE(4835)] = 186828, - [SMALL_STATE(4836)] = 186858, - [SMALL_STATE(4837)] = 186882, - [SMALL_STATE(4838)] = 186906, - [SMALL_STATE(4839)] = 186932, - [SMALL_STATE(4840)] = 186956, - [SMALL_STATE(4841)] = 186984, - [SMALL_STATE(4842)] = 187010, - [SMALL_STATE(4843)] = 187034, - [SMALL_STATE(4844)] = 187086, - [SMALL_STATE(4845)] = 187112, - [SMALL_STATE(4846)] = 187142, - [SMALL_STATE(4847)] = 187170, - [SMALL_STATE(4848)] = 187196, - [SMALL_STATE(4849)] = 187226, - [SMALL_STATE(4850)] = 187256, - [SMALL_STATE(4851)] = 187288, - [SMALL_STATE(4852)] = 187316, - [SMALL_STATE(4853)] = 187346, - [SMALL_STATE(4854)] = 187376, - [SMALL_STATE(4855)] = 187406, - [SMALL_STATE(4856)] = 187436, - [SMALL_STATE(4857)] = 187488, - [SMALL_STATE(4858)] = 187518, - [SMALL_STATE(4859)] = 187548, - [SMALL_STATE(4860)] = 187572, - [SMALL_STATE(4861)] = 187600, - [SMALL_STATE(4862)] = 187630, - [SMALL_STATE(4863)] = 187660, - [SMALL_STATE(4864)] = 187684, - [SMALL_STATE(4865)] = 187714, - [SMALL_STATE(4866)] = 187744, - [SMALL_STATE(4867)] = 187774, - [SMALL_STATE(4868)] = 187800, - [SMALL_STATE(4869)] = 187832, - [SMALL_STATE(4870)] = 187858, - [SMALL_STATE(4871)] = 187884, - [SMALL_STATE(4872)] = 187936, - [SMALL_STATE(4873)] = 187962, - [SMALL_STATE(4874)] = 187992, - [SMALL_STATE(4875)] = 188018, - [SMALL_STATE(4876)] = 188048, - [SMALL_STATE(4877)] = 188100, - [SMALL_STATE(4878)] = 188128, - [SMALL_STATE(4879)] = 188156, - [SMALL_STATE(4880)] = 188180, - [SMALL_STATE(4881)] = 188206, - [SMALL_STATE(4882)] = 188236, - [SMALL_STATE(4883)] = 188262, - [SMALL_STATE(4884)] = 188290, - [SMALL_STATE(4885)] = 188318, - [SMALL_STATE(4886)] = 188343, - [SMALL_STATE(4887)] = 188368, - [SMALL_STATE(4888)] = 188393, - [SMALL_STATE(4889)] = 188416, - [SMALL_STATE(4890)] = 188441, - [SMALL_STATE(4891)] = 188466, - [SMALL_STATE(4892)] = 188491, - [SMALL_STATE(4893)] = 188520, - [SMALL_STATE(4894)] = 188545, - [SMALL_STATE(4895)] = 188574, - [SMALL_STATE(4896)] = 188603, - [SMALL_STATE(4897)] = 188628, - [SMALL_STATE(4898)] = 188653, - [SMALL_STATE(4899)] = 188682, - [SMALL_STATE(4900)] = 188707, - [SMALL_STATE(4901)] = 188730, - [SMALL_STATE(4902)] = 188755, - [SMALL_STATE(4903)] = 188780, - [SMALL_STATE(4904)] = 188805, - [SMALL_STATE(4905)] = 188834, - [SMALL_STATE(4906)] = 188863, - [SMALL_STATE(4907)] = 188892, - [SMALL_STATE(4908)] = 188917, - [SMALL_STATE(4909)] = 188942, - [SMALL_STATE(4910)] = 188971, - [SMALL_STATE(4911)] = 189000, - [SMALL_STATE(4912)] = 189029, - [SMALL_STATE(4913)] = 189054, - [SMALL_STATE(4914)] = 189083, - [SMALL_STATE(4915)] = 189108, - [SMALL_STATE(4916)] = 189131, - [SMALL_STATE(4917)] = 189160, - [SMALL_STATE(4918)] = 189183, - [SMALL_STATE(4919)] = 189208, - [SMALL_STATE(4920)] = 189237, - [SMALL_STATE(4921)] = 189266, - [SMALL_STATE(4922)] = 189289, - [SMALL_STATE(4923)] = 189314, - [SMALL_STATE(4924)] = 189343, - [SMALL_STATE(4925)] = 189372, - [SMALL_STATE(4926)] = 189399, - [SMALL_STATE(4927)] = 189424, - [SMALL_STATE(4928)] = 189451, - [SMALL_STATE(4929)] = 189480, - [SMALL_STATE(4930)] = 189509, - [SMALL_STATE(4931)] = 189538, - [SMALL_STATE(4932)] = 189563, - [SMALL_STATE(4933)] = 189592, - [SMALL_STATE(4934)] = 189621, - [SMALL_STATE(4935)] = 189650, - [SMALL_STATE(4936)] = 189675, - [SMALL_STATE(4937)] = 189700, - [SMALL_STATE(4938)] = 189727, - [SMALL_STATE(4939)] = 189756, - [SMALL_STATE(4940)] = 189785, - [SMALL_STATE(4941)] = 189810, - [SMALL_STATE(4942)] = 189835, - [SMALL_STATE(4943)] = 189860, - [SMALL_STATE(4944)] = 189885, - [SMALL_STATE(4945)] = 189912, - [SMALL_STATE(4946)] = 189939, - [SMALL_STATE(4947)] = 189968, - [SMALL_STATE(4948)] = 189993, - [SMALL_STATE(4949)] = 190034, - [SMALL_STATE(4950)] = 190059, - [SMALL_STATE(4951)] = 190084, - [SMALL_STATE(4952)] = 190115, - [SMALL_STATE(4953)] = 190140, - [SMALL_STATE(4954)] = 190169, - [SMALL_STATE(4955)] = 190196, - [SMALL_STATE(4956)] = 190221, - [SMALL_STATE(4957)] = 190246, - [SMALL_STATE(4958)] = 190275, - [SMALL_STATE(4959)] = 190300, - [SMALL_STATE(4960)] = 190323, - [SMALL_STATE(4961)] = 190352, - [SMALL_STATE(4962)] = 190381, - [SMALL_STATE(4963)] = 190404, - [SMALL_STATE(4964)] = 190431, - [SMALL_STATE(4965)] = 190456, - [SMALL_STATE(4966)] = 190481, - [SMALL_STATE(4967)] = 190506, - [SMALL_STATE(4968)] = 190531, - [SMALL_STATE(4969)] = 190556, - [SMALL_STATE(4970)] = 190581, - [SMALL_STATE(4971)] = 190606, - [SMALL_STATE(4972)] = 190631, - [SMALL_STATE(4973)] = 190656, - [SMALL_STATE(4974)] = 190685, - [SMALL_STATE(4975)] = 190710, - [SMALL_STATE(4976)] = 190735, - [SMALL_STATE(4977)] = 190760, - [SMALL_STATE(4978)] = 190787, - [SMALL_STATE(4979)] = 190812, - [SMALL_STATE(4980)] = 190837, - [SMALL_STATE(4981)] = 190862, - [SMALL_STATE(4982)] = 190887, - [SMALL_STATE(4983)] = 190912, - [SMALL_STATE(4984)] = 190937, - [SMALL_STATE(4985)] = 190962, - [SMALL_STATE(4986)] = 190987, - [SMALL_STATE(4987)] = 191016, - [SMALL_STATE(4988)] = 191047, - [SMALL_STATE(4989)] = 191072, - [SMALL_STATE(4990)] = 191097, - [SMALL_STATE(4991)] = 191122, - [SMALL_STATE(4992)] = 191151, - [SMALL_STATE(4993)] = 191176, - [SMALL_STATE(4994)] = 191205, - [SMALL_STATE(4995)] = 191234, - [SMALL_STATE(4996)] = 191259, - [SMALL_STATE(4997)] = 191284, - [SMALL_STATE(4998)] = 191313, - [SMALL_STATE(4999)] = 191342, - [SMALL_STATE(5000)] = 191371, - [SMALL_STATE(5001)] = 191396, - [SMALL_STATE(5002)] = 191421, - [SMALL_STATE(5003)] = 191446, - [SMALL_STATE(5004)] = 191471, - [SMALL_STATE(5005)] = 191496, - [SMALL_STATE(5006)] = 191521, - [SMALL_STATE(5007)] = 191546, - [SMALL_STATE(5008)] = 191571, - [SMALL_STATE(5009)] = 191596, - [SMALL_STATE(5010)] = 191621, - [SMALL_STATE(5011)] = 191648, - [SMALL_STATE(5012)] = 191673, - [SMALL_STATE(5013)] = 191698, - [SMALL_STATE(5014)] = 191723, - [SMALL_STATE(5015)] = 191748, - [SMALL_STATE(5016)] = 191773, - [SMALL_STATE(5017)] = 191800, - [SMALL_STATE(5018)] = 191825, - [SMALL_STATE(5019)] = 191854, - [SMALL_STATE(5020)] = 191883, - [SMALL_STATE(5021)] = 191912, - [SMALL_STATE(5022)] = 191941, - [SMALL_STATE(5023)] = 191966, - [SMALL_STATE(5024)] = 191991, - [SMALL_STATE(5025)] = 192016, - [SMALL_STATE(5026)] = 192041, - [SMALL_STATE(5027)] = 192066, - [SMALL_STATE(5028)] = 192095, - [SMALL_STATE(5029)] = 192120, - [SMALL_STATE(5030)] = 192149, - [SMALL_STATE(5031)] = 192174, - [SMALL_STATE(5032)] = 192203, - [SMALL_STATE(5033)] = 192232, - [SMALL_STATE(5034)] = 192257, - [SMALL_STATE(5035)] = 192284, - [SMALL_STATE(5036)] = 192309, - [SMALL_STATE(5037)] = 192336, - [SMALL_STATE(5038)] = 192365, - [SMALL_STATE(5039)] = 192390, - [SMALL_STATE(5040)] = 192415, - [SMALL_STATE(5041)] = 192440, - [SMALL_STATE(5042)] = 192469, - [SMALL_STATE(5043)] = 192494, - [SMALL_STATE(5044)] = 192519, - [SMALL_STATE(5045)] = 192548, - [SMALL_STATE(5046)] = 192579, - [SMALL_STATE(5047)] = 192606, - [SMALL_STATE(5048)] = 192631, - [SMALL_STATE(5049)] = 192656, - [SMALL_STATE(5050)] = 192681, - [SMALL_STATE(5051)] = 192706, - [SMALL_STATE(5052)] = 192731, - [SMALL_STATE(5053)] = 192760, - [SMALL_STATE(5054)] = 192785, - [SMALL_STATE(5055)] = 192810, - [SMALL_STATE(5056)] = 192841, - [SMALL_STATE(5057)] = 192868, - [SMALL_STATE(5058)] = 192893, - [SMALL_STATE(5059)] = 192917, - [SMALL_STATE(5060)] = 192939, - [SMALL_STATE(5061)] = 192963, - [SMALL_STATE(5062)] = 192987, - [SMALL_STATE(5063)] = 193011, - [SMALL_STATE(5064)] = 193035, - [SMALL_STATE(5065)] = 193059, - [SMALL_STATE(5066)] = 193105, - [SMALL_STATE(5067)] = 193129, - [SMALL_STATE(5068)] = 193153, - [SMALL_STATE(5069)] = 193177, - [SMALL_STATE(5070)] = 193199, - [SMALL_STATE(5071)] = 193233, - [SMALL_STATE(5072)] = 193255, - [SMALL_STATE(5073)] = 193279, - [SMALL_STATE(5074)] = 193325, - [SMALL_STATE(5075)] = 193371, - [SMALL_STATE(5076)] = 193393, - [SMALL_STATE(5077)] = 193417, - [SMALL_STATE(5078)] = 193463, - [SMALL_STATE(5079)] = 193487, - [SMALL_STATE(5080)] = 193511, - [SMALL_STATE(5081)] = 193535, - [SMALL_STATE(5082)] = 193559, - [SMALL_STATE(5083)] = 193581, - [SMALL_STATE(5084)] = 193627, - [SMALL_STATE(5085)] = 193667, - [SMALL_STATE(5086)] = 193691, - [SMALL_STATE(5087)] = 193713, - [SMALL_STATE(5088)] = 193735, - [SMALL_STATE(5089)] = 193759, - [SMALL_STATE(5090)] = 193781, - [SMALL_STATE(5091)] = 193805, - [SMALL_STATE(5092)] = 193829, - [SMALL_STATE(5093)] = 193853, - [SMALL_STATE(5094)] = 193877, - [SMALL_STATE(5095)] = 193901, - [SMALL_STATE(5096)] = 193925, - [SMALL_STATE(5097)] = 193949, - [SMALL_STATE(5098)] = 193973, - [SMALL_STATE(5099)] = 193997, - [SMALL_STATE(5100)] = 194021, - [SMALL_STATE(5101)] = 194045, - [SMALL_STATE(5102)] = 194069, - [SMALL_STATE(5103)] = 194093, - [SMALL_STATE(5104)] = 194117, - [SMALL_STATE(5105)] = 194143, - [SMALL_STATE(5106)] = 194167, - [SMALL_STATE(5107)] = 194191, - [SMALL_STATE(5108)] = 194215, - [SMALL_STATE(5109)] = 194239, - [SMALL_STATE(5110)] = 194263, - [SMALL_STATE(5111)] = 194307, - [SMALL_STATE(5112)] = 194331, - [SMALL_STATE(5113)] = 194355, - [SMALL_STATE(5114)] = 194379, - [SMALL_STATE(5115)] = 194403, - [SMALL_STATE(5116)] = 194427, - [SMALL_STATE(5117)] = 194451, - [SMALL_STATE(5118)] = 194475, - [SMALL_STATE(5119)] = 194499, - [SMALL_STATE(5120)] = 194523, - [SMALL_STATE(5121)] = 194547, - [SMALL_STATE(5122)] = 194571, - [SMALL_STATE(5123)] = 194593, - [SMALL_STATE(5124)] = 194639, - [SMALL_STATE(5125)] = 194663, - [SMALL_STATE(5126)] = 194687, - [SMALL_STATE(5127)] = 194711, - [SMALL_STATE(5128)] = 194735, - [SMALL_STATE(5129)] = 194759, - [SMALL_STATE(5130)] = 194783, - [SMALL_STATE(5131)] = 194807, - [SMALL_STATE(5132)] = 194831, - [SMALL_STATE(5133)] = 194855, - [SMALL_STATE(5134)] = 194879, - [SMALL_STATE(5135)] = 194917, - [SMALL_STATE(5136)] = 194941, - [SMALL_STATE(5137)] = 194965, - [SMALL_STATE(5138)] = 194989, - [SMALL_STATE(5139)] = 195013, - [SMALL_STATE(5140)] = 195037, - [SMALL_STATE(5141)] = 195061, - [SMALL_STATE(5142)] = 195085, - [SMALL_STATE(5143)] = 195107, - [SMALL_STATE(5144)] = 195131, - [SMALL_STATE(5145)] = 195155, - [SMALL_STATE(5146)] = 195179, - [SMALL_STATE(5147)] = 195201, - [SMALL_STATE(5148)] = 195227, - [SMALL_STATE(5149)] = 195251, - [SMALL_STATE(5150)] = 195275, - [SMALL_STATE(5151)] = 195299, - [SMALL_STATE(5152)] = 195323, - [SMALL_STATE(5153)] = 195347, - [SMALL_STATE(5154)] = 195371, - [SMALL_STATE(5155)] = 195395, - [SMALL_STATE(5156)] = 195419, - [SMALL_STATE(5157)] = 195443, - [SMALL_STATE(5158)] = 195465, - [SMALL_STATE(5159)] = 195489, - [SMALL_STATE(5160)] = 195513, - [SMALL_STATE(5161)] = 195537, - [SMALL_STATE(5162)] = 195561, - [SMALL_STATE(5163)] = 195585, - [SMALL_STATE(5164)] = 195609, - [SMALL_STATE(5165)] = 195633, - [SMALL_STATE(5166)] = 195657, - [SMALL_STATE(5167)] = 195681, - [SMALL_STATE(5168)] = 195705, - [SMALL_STATE(5169)] = 195729, - [SMALL_STATE(5170)] = 195753, - [SMALL_STATE(5171)] = 195777, - [SMALL_STATE(5172)] = 195801, - [SMALL_STATE(5173)] = 195825, - [SMALL_STATE(5174)] = 195849, - [SMALL_STATE(5175)] = 195873, - [SMALL_STATE(5176)] = 195897, - [SMALL_STATE(5177)] = 195921, - [SMALL_STATE(5178)] = 195945, - [SMALL_STATE(5179)] = 195967, - [SMALL_STATE(5180)] = 195991, - [SMALL_STATE(5181)] = 196033, - [SMALL_STATE(5182)] = 196057, - [SMALL_STATE(5183)] = 196081, - [SMALL_STATE(5184)] = 196105, - [SMALL_STATE(5185)] = 196147, - [SMALL_STATE(5186)] = 196171, - [SMALL_STATE(5187)] = 196197, - [SMALL_STATE(5188)] = 196221, - [SMALL_STATE(5189)] = 196245, - [SMALL_STATE(5190)] = 196269, - [SMALL_STATE(5191)] = 196293, - [SMALL_STATE(5192)] = 196317, - [SMALL_STATE(5193)] = 196341, - [SMALL_STATE(5194)] = 196365, - [SMALL_STATE(5195)] = 196389, - [SMALL_STATE(5196)] = 196413, - [SMALL_STATE(5197)] = 196437, - [SMALL_STATE(5198)] = 196461, - [SMALL_STATE(5199)] = 196505, - [SMALL_STATE(5200)] = 196529, - [SMALL_STATE(5201)] = 196553, - [SMALL_STATE(5202)] = 196575, - [SMALL_STATE(5203)] = 196599, - [SMALL_STATE(5204)] = 196623, - [SMALL_STATE(5205)] = 196647, - [SMALL_STATE(5206)] = 196671, - [SMALL_STATE(5207)] = 196695, - [SMALL_STATE(5208)] = 196719, - [SMALL_STATE(5209)] = 196743, - [SMALL_STATE(5210)] = 196767, - [SMALL_STATE(5211)] = 196791, - [SMALL_STATE(5212)] = 196815, - [SMALL_STATE(5213)] = 196839, - [SMALL_STATE(5214)] = 196863, - [SMALL_STATE(5215)] = 196887, - [SMALL_STATE(5216)] = 196911, - [SMALL_STATE(5217)] = 196937, - [SMALL_STATE(5218)] = 196961, - [SMALL_STATE(5219)] = 196985, - [SMALL_STATE(5220)] = 197009, - [SMALL_STATE(5221)] = 197033, - [SMALL_STATE(5222)] = 197057, - [SMALL_STATE(5223)] = 197081, - [SMALL_STATE(5224)] = 197103, - [SMALL_STATE(5225)] = 197125, - [SMALL_STATE(5226)] = 197149, - [SMALL_STATE(5227)] = 197171, - [SMALL_STATE(5228)] = 197209, - [SMALL_STATE(5229)] = 197231, - [SMALL_STATE(5230)] = 197255, - [SMALL_STATE(5231)] = 197279, - [SMALL_STATE(5232)] = 197303, - [SMALL_STATE(5233)] = 197327, - [SMALL_STATE(5234)] = 197351, - [SMALL_STATE(5235)] = 197375, - [SMALL_STATE(5236)] = 197399, - [SMALL_STATE(5237)] = 197423, - [SMALL_STATE(5238)] = 197447, - [SMALL_STATE(5239)] = 197471, - [SMALL_STATE(5240)] = 197495, - [SMALL_STATE(5241)] = 197519, - [SMALL_STATE(5242)] = 197543, - [SMALL_STATE(5243)] = 197565, - [SMALL_STATE(5244)] = 197587, - [SMALL_STATE(5245)] = 197611, - [SMALL_STATE(5246)] = 197635, - [SMALL_STATE(5247)] = 197657, - [SMALL_STATE(5248)] = 197679, - [SMALL_STATE(5249)] = 197703, - [SMALL_STATE(5250)] = 197741, - [SMALL_STATE(5251)] = 197765, - [SMALL_STATE(5252)] = 197789, - [SMALL_STATE(5253)] = 197813, - [SMALL_STATE(5254)] = 197837, - [SMALL_STATE(5255)] = 197863, - [SMALL_STATE(5256)] = 197889, - [SMALL_STATE(5257)] = 197913, - [SMALL_STATE(5258)] = 197935, - [SMALL_STATE(5259)] = 197957, - [SMALL_STATE(5260)] = 197981, - [SMALL_STATE(5261)] = 198005, - [SMALL_STATE(5262)] = 198029, - [SMALL_STATE(5263)] = 198053, - [SMALL_STATE(5264)] = 198077, - [SMALL_STATE(5265)] = 198101, - [SMALL_STATE(5266)] = 198125, - [SMALL_STATE(5267)] = 198149, - [SMALL_STATE(5268)] = 198173, - [SMALL_STATE(5269)] = 198197, - [SMALL_STATE(5270)] = 198243, - [SMALL_STATE(5271)] = 198267, - [SMALL_STATE(5272)] = 198291, - [SMALL_STATE(5273)] = 198315, - [SMALL_STATE(5274)] = 198339, - [SMALL_STATE(5275)] = 198363, - [SMALL_STATE(5276)] = 198389, - [SMALL_STATE(5277)] = 198415, - [SMALL_STATE(5278)] = 198439, - [SMALL_STATE(5279)] = 198463, - [SMALL_STATE(5280)] = 198487, - [SMALL_STATE(5281)] = 198511, - [SMALL_STATE(5282)] = 198539, - [SMALL_STATE(5283)] = 198567, - [SMALL_STATE(5284)] = 198595, - [SMALL_STATE(5285)] = 198623, - [SMALL_STATE(5286)] = 198651, - [SMALL_STATE(5287)] = 198679, - [SMALL_STATE(5288)] = 198707, - [SMALL_STATE(5289)] = 198735, - [SMALL_STATE(5290)] = 198759, - [SMALL_STATE(5291)] = 198787, - [SMALL_STATE(5292)] = 198815, - [SMALL_STATE(5293)] = 198843, - [SMALL_STATE(5294)] = 198889, - [SMALL_STATE(5295)] = 198917, - [SMALL_STATE(5296)] = 198963, - [SMALL_STATE(5297)] = 198987, - [SMALL_STATE(5298)] = 199011, - [SMALL_STATE(5299)] = 199035, - [SMALL_STATE(5300)] = 199059, - [SMALL_STATE(5301)] = 199083, - [SMALL_STATE(5302)] = 199107, - [SMALL_STATE(5303)] = 199131, - [SMALL_STATE(5304)] = 199155, - [SMALL_STATE(5305)] = 199197, - [SMALL_STATE(5306)] = 199243, - [SMALL_STATE(5307)] = 199267, - [SMALL_STATE(5308)] = 199291, - [SMALL_STATE(5309)] = 199315, - [SMALL_STATE(5310)] = 199339, - [SMALL_STATE(5311)] = 199363, - [SMALL_STATE(5312)] = 199385, - [SMALL_STATE(5313)] = 199409, - [SMALL_STATE(5314)] = 199430, - [SMALL_STATE(5315)] = 199471, - [SMALL_STATE(5316)] = 199492, - [SMALL_STATE(5317)] = 199519, - [SMALL_STATE(5318)] = 199540, - [SMALL_STATE(5319)] = 199567, - [SMALL_STATE(5320)] = 199588, - [SMALL_STATE(5321)] = 199609, - [SMALL_STATE(5322)] = 199630, - [SMALL_STATE(5323)] = 199653, - [SMALL_STATE(5324)] = 199694, - [SMALL_STATE(5325)] = 199735, - [SMALL_STATE(5326)] = 199774, - [SMALL_STATE(5327)] = 199795, - [SMALL_STATE(5328)] = 199822, - [SMALL_STATE(5329)] = 199843, - [SMALL_STATE(5330)] = 199866, - [SMALL_STATE(5331)] = 199903, - [SMALL_STATE(5332)] = 199924, - [SMALL_STATE(5333)] = 199963, - [SMALL_STATE(5334)] = 199984, - [SMALL_STATE(5335)] = 200023, - [SMALL_STATE(5336)] = 200044, - [SMALL_STATE(5337)] = 200065, - [SMALL_STATE(5338)] = 200086, - [SMALL_STATE(5339)] = 200107, - [SMALL_STATE(5340)] = 200130, - [SMALL_STATE(5341)] = 200151, - [SMALL_STATE(5342)] = 200172, - [SMALL_STATE(5343)] = 200193, - [SMALL_STATE(5344)] = 200216, - [SMALL_STATE(5345)] = 200237, - [SMALL_STATE(5346)] = 200258, - [SMALL_STATE(5347)] = 200279, - [SMALL_STATE(5348)] = 200306, - [SMALL_STATE(5349)] = 200327, - [SMALL_STATE(5350)] = 200348, - [SMALL_STATE(5351)] = 200371, - [SMALL_STATE(5352)] = 200392, - [SMALL_STATE(5353)] = 200413, - [SMALL_STATE(5354)] = 200440, - [SMALL_STATE(5355)] = 200481, - [SMALL_STATE(5356)] = 200502, - [SMALL_STATE(5357)] = 200525, - [SMALL_STATE(5358)] = 200548, - [SMALL_STATE(5359)] = 200569, - [SMALL_STATE(5360)] = 200592, - [SMALL_STATE(5361)] = 200615, - [SMALL_STATE(5362)] = 200636, - [SMALL_STATE(5363)] = 200677, - [SMALL_STATE(5364)] = 200718, - [SMALL_STATE(5365)] = 200741, - [SMALL_STATE(5366)] = 200764, - [SMALL_STATE(5367)] = 200785, - [SMALL_STATE(5368)] = 200806, - [SMALL_STATE(5369)] = 200839, - [SMALL_STATE(5370)] = 200862, - [SMALL_STATE(5371)] = 200901, - [SMALL_STATE(5372)] = 200940, - [SMALL_STATE(5373)] = 200979, - [SMALL_STATE(5374)] = 201000, - [SMALL_STATE(5375)] = 201021, - [SMALL_STATE(5376)] = 201044, - [SMALL_STATE(5377)] = 201067, - [SMALL_STATE(5378)] = 201090, - [SMALL_STATE(5379)] = 201111, - [SMALL_STATE(5380)] = 201134, - [SMALL_STATE(5381)] = 201155, - [SMALL_STATE(5382)] = 201176, - [SMALL_STATE(5383)] = 201199, - [SMALL_STATE(5384)] = 201222, - [SMALL_STATE(5385)] = 201245, - [SMALL_STATE(5386)] = 201266, - [SMALL_STATE(5387)] = 201289, - [SMALL_STATE(5388)] = 201316, - [SMALL_STATE(5389)] = 201337, - [SMALL_STATE(5390)] = 201372, - [SMALL_STATE(5391)] = 201393, - [SMALL_STATE(5392)] = 201434, - [SMALL_STATE(5393)] = 201461, - [SMALL_STATE(5394)] = 201496, - [SMALL_STATE(5395)] = 201523, - [SMALL_STATE(5396)] = 201558, - [SMALL_STATE(5397)] = 201593, - [SMALL_STATE(5398)] = 201614, - [SMALL_STATE(5399)] = 201637, - [SMALL_STATE(5400)] = 201658, - [SMALL_STATE(5401)] = 201679, - [SMALL_STATE(5402)] = 201700, - [SMALL_STATE(5403)] = 201723, - [SMALL_STATE(5404)] = 201746, - [SMALL_STATE(5405)] = 201767, - [SMALL_STATE(5406)] = 201788, - [SMALL_STATE(5407)] = 201827, - [SMALL_STATE(5408)] = 201868, - [SMALL_STATE(5409)] = 201891, - [SMALL_STATE(5410)] = 201914, - [SMALL_STATE(5411)] = 201937, - [SMALL_STATE(5412)] = 201960, - [SMALL_STATE(5413)] = 201987, - [SMALL_STATE(5414)] = 202010, - [SMALL_STATE(5415)] = 202033, - [SMALL_STATE(5416)] = 202056, - [SMALL_STATE(5417)] = 202083, - [SMALL_STATE(5418)] = 202110, - [SMALL_STATE(5419)] = 202137, - [SMALL_STATE(5420)] = 202164, - [SMALL_STATE(5421)] = 202191, - [SMALL_STATE(5422)] = 202218, - [SMALL_STATE(5423)] = 202245, - [SMALL_STATE(5424)] = 202268, - [SMALL_STATE(5425)] = 202295, - [SMALL_STATE(5426)] = 202322, - [SMALL_STATE(5427)] = 202349, - [SMALL_STATE(5428)] = 202370, - [SMALL_STATE(5429)] = 202397, - [SMALL_STATE(5430)] = 202418, - [SMALL_STATE(5431)] = 202439, - [SMALL_STATE(5432)] = 202460, - [SMALL_STATE(5433)] = 202483, - [SMALL_STATE(5434)] = 202504, - [SMALL_STATE(5435)] = 202527, - [SMALL_STATE(5436)] = 202548, - [SMALL_STATE(5437)] = 202571, - [SMALL_STATE(5438)] = 202598, - [SMALL_STATE(5439)] = 202619, - [SMALL_STATE(5440)] = 202640, - [SMALL_STATE(5441)] = 202681, - [SMALL_STATE(5442)] = 202702, - [SMALL_STATE(5443)] = 202725, - [SMALL_STATE(5444)] = 202746, - [SMALL_STATE(5445)] = 202787, - [SMALL_STATE(5446)] = 202808, - [SMALL_STATE(5447)] = 202847, - [SMALL_STATE(5448)] = 202868, - [SMALL_STATE(5449)] = 202891, - [SMALL_STATE(5450)] = 202912, - [SMALL_STATE(5451)] = 202949, - [SMALL_STATE(5452)] = 202970, - [SMALL_STATE(5453)] = 202993, - [SMALL_STATE(5454)] = 203016, - [SMALL_STATE(5455)] = 203039, - [SMALL_STATE(5456)] = 203060, - [SMALL_STATE(5457)] = 203081, - [SMALL_STATE(5458)] = 203102, - [SMALL_STATE(5459)] = 203123, - [SMALL_STATE(5460)] = 203144, - [SMALL_STATE(5461)] = 203165, - [SMALL_STATE(5462)] = 203186, - [SMALL_STATE(5463)] = 203207, - [SMALL_STATE(5464)] = 203228, - [SMALL_STATE(5465)] = 203249, - [SMALL_STATE(5466)] = 203288, - [SMALL_STATE(5467)] = 203309, - [SMALL_STATE(5468)] = 203330, - [SMALL_STATE(5469)] = 203351, - [SMALL_STATE(5470)] = 203390, - [SMALL_STATE(5471)] = 203417, - [SMALL_STATE(5472)] = 203440, - [SMALL_STATE(5473)] = 203463, - [SMALL_STATE(5474)] = 203486, - [SMALL_STATE(5475)] = 203507, - [SMALL_STATE(5476)] = 203528, - [SMALL_STATE(5477)] = 203549, - [SMALL_STATE(5478)] = 203570, - [SMALL_STATE(5479)] = 203597, - [SMALL_STATE(5480)] = 203620, - [SMALL_STATE(5481)] = 203642, - [SMALL_STATE(5482)] = 203672, - [SMALL_STATE(5483)] = 203698, - [SMALL_STATE(5484)] = 203728, - [SMALL_STATE(5485)] = 203758, - [SMALL_STATE(5486)] = 203784, - [SMALL_STATE(5487)] = 203808, - [SMALL_STATE(5488)] = 203834, - [SMALL_STATE(5489)] = 203864, - [SMALL_STATE(5490)] = 203894, - [SMALL_STATE(5491)] = 203924, - [SMALL_STATE(5492)] = 203954, - [SMALL_STATE(5493)] = 203978, - [SMALL_STATE(5494)] = 204008, - [SMALL_STATE(5495)] = 204038, - [SMALL_STATE(5496)] = 204068, - [SMALL_STATE(5497)] = 204098, - [SMALL_STATE(5498)] = 204128, - [SMALL_STATE(5499)] = 204160, - [SMALL_STATE(5500)] = 204190, - [SMALL_STATE(5501)] = 204220, - [SMALL_STATE(5502)] = 204250, - [SMALL_STATE(5503)] = 204280, - [SMALL_STATE(5504)] = 204310, - [SMALL_STATE(5505)] = 204340, - [SMALL_STATE(5506)] = 204366, - [SMALL_STATE(5507)] = 204402, - [SMALL_STATE(5508)] = 204428, - [SMALL_STATE(5509)] = 204452, - [SMALL_STATE(5510)] = 204478, - [SMALL_STATE(5511)] = 204516, - [SMALL_STATE(5512)] = 204546, - [SMALL_STATE(5513)] = 204570, - [SMALL_STATE(5514)] = 204600, - [SMALL_STATE(5515)] = 204636, - [SMALL_STATE(5516)] = 204662, - [SMALL_STATE(5517)] = 204692, - [SMALL_STATE(5518)] = 204728, - [SMALL_STATE(5519)] = 204764, - [SMALL_STATE(5520)] = 204796, - [SMALL_STATE(5521)] = 204822, - [SMALL_STATE(5522)] = 204854, - [SMALL_STATE(5523)] = 204884, - [SMALL_STATE(5524)] = 204920, - [SMALL_STATE(5525)] = 204946, - [SMALL_STATE(5526)] = 204972, - [SMALL_STATE(5527)] = 205000, - [SMALL_STATE(5528)] = 205032, - [SMALL_STATE(5529)] = 205070, - [SMALL_STATE(5530)] = 205096, - [SMALL_STATE(5531)] = 205120, - [SMALL_STATE(5532)] = 205156, - [SMALL_STATE(5533)] = 205188, - [SMALL_STATE(5534)] = 205224, - [SMALL_STATE(5535)] = 205250, - [SMALL_STATE(5536)] = 205286, - [SMALL_STATE(5537)] = 205310, - [SMALL_STATE(5538)] = 205334, - [SMALL_STATE(5539)] = 205364, - [SMALL_STATE(5540)] = 205390, - [SMALL_STATE(5541)] = 205426, - [SMALL_STATE(5542)] = 205462, - [SMALL_STATE(5543)] = 205486, - [SMALL_STATE(5544)] = 205516, - [SMALL_STATE(5545)] = 205551, - [SMALL_STATE(5546)] = 205586, - [SMALL_STATE(5547)] = 205619, - [SMALL_STATE(5548)] = 205640, - [SMALL_STATE(5549)] = 205675, - [SMALL_STATE(5550)] = 205698, - [SMALL_STATE(5551)] = 205733, - [SMALL_STATE(5552)] = 205764, - [SMALL_STATE(5553)] = 205799, - [SMALL_STATE(5554)] = 205822, - [SMALL_STATE(5555)] = 205857, - [SMALL_STATE(5556)] = 205878, - [SMALL_STATE(5557)] = 205913, - [SMALL_STATE(5558)] = 205938, - [SMALL_STATE(5559)] = 205963, - [SMALL_STATE(5560)] = 205998, - [SMALL_STATE(5561)] = 206033, - [SMALL_STATE(5562)] = 206054, - [SMALL_STATE(5563)] = 206089, - [SMALL_STATE(5564)] = 206112, - [SMALL_STATE(5565)] = 206147, - [SMALL_STATE(5566)] = 206182, - [SMALL_STATE(5567)] = 206211, - [SMALL_STATE(5568)] = 206234, - [SMALL_STATE(5569)] = 206261, - [SMALL_STATE(5570)] = 206290, - [SMALL_STATE(5571)] = 206319, - [SMALL_STATE(5572)] = 206348, - [SMALL_STATE(5573)] = 206383, - [SMALL_STATE(5574)] = 206418, - [SMALL_STATE(5575)] = 206439, - [SMALL_STATE(5576)] = 206468, - [SMALL_STATE(5577)] = 206503, - [SMALL_STATE(5578)] = 206536, - [SMALL_STATE(5579)] = 206565, - [SMALL_STATE(5580)] = 206594, - [SMALL_STATE(5581)] = 206619, - [SMALL_STATE(5582)] = 206654, - [SMALL_STATE(5583)] = 206689, - [SMALL_STATE(5584)] = 206724, - [SMALL_STATE(5585)] = 206759, - [SMALL_STATE(5586)] = 206792, - [SMALL_STATE(5587)] = 206827, - [SMALL_STATE(5588)] = 206862, - [SMALL_STATE(5589)] = 206891, - [SMALL_STATE(5590)] = 206914, - [SMALL_STATE(5591)] = 206949, - [SMALL_STATE(5592)] = 206984, - [SMALL_STATE(5593)] = 207013, - [SMALL_STATE(5594)] = 207034, - [SMALL_STATE(5595)] = 207063, - [SMALL_STATE(5596)] = 207084, - [SMALL_STATE(5597)] = 207113, - [SMALL_STATE(5598)] = 207148, - [SMALL_STATE(5599)] = 207183, - [SMALL_STATE(5600)] = 207218, - [SMALL_STATE(5601)] = 207253, - [SMALL_STATE(5602)] = 207276, - [SMALL_STATE(5603)] = 207305, - [SMALL_STATE(5604)] = 207328, - [SMALL_STATE(5605)] = 207357, - [SMALL_STATE(5606)] = 207392, - [SMALL_STATE(5607)] = 207413, - [SMALL_STATE(5608)] = 207442, - [SMALL_STATE(5609)] = 207477, - [SMALL_STATE(5610)] = 207512, - [SMALL_STATE(5611)] = 207547, - [SMALL_STATE(5612)] = 207582, - [SMALL_STATE(5613)] = 207607, - [SMALL_STATE(5614)] = 207628, - [SMALL_STATE(5615)] = 207657, - [SMALL_STATE(5616)] = 207692, - [SMALL_STATE(5617)] = 207715, - [SMALL_STATE(5618)] = 207740, - [SMALL_STATE(5619)] = 207765, - [SMALL_STATE(5620)] = 207794, - [SMALL_STATE(5621)] = 207815, - [SMALL_STATE(5622)] = 207840, - [SMALL_STATE(5623)] = 207865, - [SMALL_STATE(5624)] = 207896, - [SMALL_STATE(5625)] = 207931, - [SMALL_STATE(5626)] = 207966, - [SMALL_STATE(5627)] = 207995, - [SMALL_STATE(5628)] = 208024, - [SMALL_STATE(5629)] = 208059, - [SMALL_STATE(5630)] = 208088, - [SMALL_STATE(5631)] = 208123, - [SMALL_STATE(5632)] = 208152, - [SMALL_STATE(5633)] = 208181, - [SMALL_STATE(5634)] = 208216, - [SMALL_STATE(5635)] = 208251, - [SMALL_STATE(5636)] = 208286, - [SMALL_STATE(5637)] = 208307, - [SMALL_STATE(5638)] = 208336, - [SMALL_STATE(5639)] = 208371, - [SMALL_STATE(5640)] = 208406, - [SMALL_STATE(5641)] = 208441, - [SMALL_STATE(5642)] = 208470, - [SMALL_STATE(5643)] = 208491, - [SMALL_STATE(5644)] = 208512, - [SMALL_STATE(5645)] = 208537, - [SMALL_STATE(5646)] = 208560, - [SMALL_STATE(5647)] = 208589, - [SMALL_STATE(5648)] = 208610, - [SMALL_STATE(5649)] = 208639, - [SMALL_STATE(5650)] = 208668, - [SMALL_STATE(5651)] = 208703, - [SMALL_STATE(5652)] = 208738, - [SMALL_STATE(5653)] = 208773, - [SMALL_STATE(5654)] = 208808, - [SMALL_STATE(5655)] = 208843, - [SMALL_STATE(5656)] = 208864, - [SMALL_STATE(5657)] = 208893, - [SMALL_STATE(5658)] = 208922, - [SMALL_STATE(5659)] = 208957, - [SMALL_STATE(5660)] = 208978, - [SMALL_STATE(5661)] = 209007, - [SMALL_STATE(5662)] = 209036, - [SMALL_STATE(5663)] = 209057, - [SMALL_STATE(5664)] = 209090, - [SMALL_STATE(5665)] = 209111, - [SMALL_STATE(5666)] = 209146, - [SMALL_STATE(5667)] = 209171, - [SMALL_STATE(5668)] = 209193, - [SMALL_STATE(5669)] = 209219, - [SMALL_STATE(5670)] = 209243, - [SMALL_STATE(5671)] = 209273, - [SMALL_STATE(5672)] = 209301, - [SMALL_STATE(5673)] = 209331, - [SMALL_STATE(5674)] = 209361, - [SMALL_STATE(5675)] = 209383, - [SMALL_STATE(5676)] = 209411, - [SMALL_STATE(5677)] = 209441, - [SMALL_STATE(5678)] = 209463, - [SMALL_STATE(5679)] = 209485, - [SMALL_STATE(5680)] = 209515, - [SMALL_STATE(5681)] = 209535, - [SMALL_STATE(5682)] = 209555, - [SMALL_STATE(5683)] = 209583, - [SMALL_STATE(5684)] = 209609, - [SMALL_STATE(5685)] = 209637, - [SMALL_STATE(5686)] = 209669, - [SMALL_STATE(5687)] = 209689, - [SMALL_STATE(5688)] = 209709, - [SMALL_STATE(5689)] = 209729, - [SMALL_STATE(5690)] = 209749, - [SMALL_STATE(5691)] = 209777, - [SMALL_STATE(5692)] = 209805, - [SMALL_STATE(5693)] = 209837, - [SMALL_STATE(5694)] = 209867, - [SMALL_STATE(5695)] = 209887, - [SMALL_STATE(5696)] = 209907, - [SMALL_STATE(5697)] = 209937, - [SMALL_STATE(5698)] = 209969, - [SMALL_STATE(5699)] = 209999, - [SMALL_STATE(5700)] = 210031, - [SMALL_STATE(5701)] = 210055, - [SMALL_STATE(5702)] = 210085, - [SMALL_STATE(5703)] = 210115, - [SMALL_STATE(5704)] = 210145, - [SMALL_STATE(5705)] = 210175, - [SMALL_STATE(5706)] = 210201, - [SMALL_STATE(5707)] = 210223, - [SMALL_STATE(5708)] = 210253, - [SMALL_STATE(5709)] = 210275, - [SMALL_STATE(5710)] = 210295, - [SMALL_STATE(5711)] = 210317, - [SMALL_STATE(5712)] = 210347, - [SMALL_STATE(5713)] = 210371, - [SMALL_STATE(5714)] = 210403, - [SMALL_STATE(5715)] = 210427, - [SMALL_STATE(5716)] = 210451, - [SMALL_STATE(5717)] = 210481, - [SMALL_STATE(5718)] = 210501, - [SMALL_STATE(5719)] = 210531, - [SMALL_STATE(5720)] = 210561, - [SMALL_STATE(5721)] = 210581, - [SMALL_STATE(5722)] = 210609, - [SMALL_STATE(5723)] = 210637, - [SMALL_STATE(5724)] = 210665, - [SMALL_STATE(5725)] = 210693, - [SMALL_STATE(5726)] = 210721, - [SMALL_STATE(5727)] = 210749, - [SMALL_STATE(5728)] = 210777, - [SMALL_STATE(5729)] = 210805, - [SMALL_STATE(5730)] = 210833, - [SMALL_STATE(5731)] = 210861, - [SMALL_STATE(5732)] = 210889, - [SMALL_STATE(5733)] = 210917, - [SMALL_STATE(5734)] = 210945, - [SMALL_STATE(5735)] = 210973, - [SMALL_STATE(5736)] = 211001, - [SMALL_STATE(5737)] = 211029, - [SMALL_STATE(5738)] = 211057, - [SMALL_STATE(5739)] = 211085, - [SMALL_STATE(5740)] = 211113, - [SMALL_STATE(5741)] = 211141, - [SMALL_STATE(5742)] = 211169, - [SMALL_STATE(5743)] = 211197, - [SMALL_STATE(5744)] = 211217, - [SMALL_STATE(5745)] = 211237, - [SMALL_STATE(5746)] = 211257, - [SMALL_STATE(5747)] = 211287, - [SMALL_STATE(5748)] = 211309, - [SMALL_STATE(5749)] = 211339, - [SMALL_STATE(5750)] = 211359, - [SMALL_STATE(5751)] = 211389, - [SMALL_STATE(5752)] = 211413, - [SMALL_STATE(5753)] = 211433, - [SMALL_STATE(5754)] = 211453, - [SMALL_STATE(5755)] = 211483, - [SMALL_STATE(5756)] = 211507, - [SMALL_STATE(5757)] = 211533, - [SMALL_STATE(5758)] = 211563, - [SMALL_STATE(5759)] = 211593, - [SMALL_STATE(5760)] = 211617, - [SMALL_STATE(5761)] = 211647, - [SMALL_STATE(5762)] = 211677, - [SMALL_STATE(5763)] = 211701, - [SMALL_STATE(5764)] = 211725, - [SMALL_STATE(5765)] = 211749, - [SMALL_STATE(5766)] = 211779, - [SMALL_STATE(5767)] = 211809, - [SMALL_STATE(5768)] = 211839, - [SMALL_STATE(5769)] = 211869, - [SMALL_STATE(5770)] = 211899, - [SMALL_STATE(5771)] = 211929, - [SMALL_STATE(5772)] = 211959, - [SMALL_STATE(5773)] = 211989, - [SMALL_STATE(5774)] = 212019, - [SMALL_STATE(5775)] = 212049, - [SMALL_STATE(5776)] = 212079, - [SMALL_STATE(5777)] = 212109, - [SMALL_STATE(5778)] = 212133, - [SMALL_STATE(5779)] = 212163, - [SMALL_STATE(5780)] = 212193, - [SMALL_STATE(5781)] = 212223, - [SMALL_STATE(5782)] = 212253, - [SMALL_STATE(5783)] = 212283, - [SMALL_STATE(5784)] = 212313, - [SMALL_STATE(5785)] = 212343, - [SMALL_STATE(5786)] = 212373, - [SMALL_STATE(5787)] = 212403, - [SMALL_STATE(5788)] = 212433, - [SMALL_STATE(5789)] = 212463, - [SMALL_STATE(5790)] = 212493, - [SMALL_STATE(5791)] = 212523, - [SMALL_STATE(5792)] = 212553, - [SMALL_STATE(5793)] = 212583, - [SMALL_STATE(5794)] = 212613, - [SMALL_STATE(5795)] = 212643, - [SMALL_STATE(5796)] = 212673, - [SMALL_STATE(5797)] = 212703, - [SMALL_STATE(5798)] = 212735, - [SMALL_STATE(5799)] = 212765, - [SMALL_STATE(5800)] = 212795, - [SMALL_STATE(5801)] = 212825, - [SMALL_STATE(5802)] = 212855, - [SMALL_STATE(5803)] = 212885, - [SMALL_STATE(5804)] = 212915, - [SMALL_STATE(5805)] = 212935, - [SMALL_STATE(5806)] = 212955, - [SMALL_STATE(5807)] = 212975, - [SMALL_STATE(5808)] = 212995, - [SMALL_STATE(5809)] = 213021, - [SMALL_STATE(5810)] = 213045, - [SMALL_STATE(5811)] = 213067, - [SMALL_STATE(5812)] = 213087, - [SMALL_STATE(5813)] = 213109, - [SMALL_STATE(5814)] = 213139, - [SMALL_STATE(5815)] = 213169, - [SMALL_STATE(5816)] = 213188, - [SMALL_STATE(5817)] = 213215, - [SMALL_STATE(5818)] = 213240, - [SMALL_STATE(5819)] = 213265, - [SMALL_STATE(5820)] = 213292, - [SMALL_STATE(5821)] = 213315, - [SMALL_STATE(5822)] = 213336, - [SMALL_STATE(5823)] = 213355, - [SMALL_STATE(5824)] = 213374, - [SMALL_STATE(5825)] = 213395, - [SMALL_STATE(5826)] = 213414, - [SMALL_STATE(5827)] = 213439, - [SMALL_STATE(5828)] = 213466, - [SMALL_STATE(5829)] = 213485, - [SMALL_STATE(5830)] = 213504, - [SMALL_STATE(5831)] = 213523, - [SMALL_STATE(5832)] = 213544, - [SMALL_STATE(5833)] = 213569, - [SMALL_STATE(5834)] = 213588, - [SMALL_STATE(5835)] = 213607, - [SMALL_STATE(5836)] = 213630, - [SMALL_STATE(5837)] = 213651, - [SMALL_STATE(5838)] = 213672, - [SMALL_STATE(5839)] = 213693, - [SMALL_STATE(5840)] = 213714, - [SMALL_STATE(5841)] = 213739, - [SMALL_STATE(5842)] = 213764, - [SMALL_STATE(5843)] = 213783, - [SMALL_STATE(5844)] = 213802, - [SMALL_STATE(5845)] = 213827, - [SMALL_STATE(5846)] = 213846, - [SMALL_STATE(5847)] = 213871, - [SMALL_STATE(5848)] = 213896, - [SMALL_STATE(5849)] = 213921, - [SMALL_STATE(5850)] = 213946, - [SMALL_STATE(5851)] = 213965, - [SMALL_STATE(5852)] = 213984, - [SMALL_STATE(5853)] = 214005, - [SMALL_STATE(5854)] = 214030, - [SMALL_STATE(5855)] = 214055, - [SMALL_STATE(5856)] = 214080, - [SMALL_STATE(5857)] = 214105, - [SMALL_STATE(5858)] = 214124, - [SMALL_STATE(5859)] = 214143, - [SMALL_STATE(5860)] = 214168, - [SMALL_STATE(5861)] = 214193, - [SMALL_STATE(5862)] = 214218, - [SMALL_STATE(5863)] = 214243, - [SMALL_STATE(5864)] = 214268, - [SMALL_STATE(5865)] = 214293, - [SMALL_STATE(5866)] = 214318, - [SMALL_STATE(5867)] = 214343, - [SMALL_STATE(5868)] = 214368, - [SMALL_STATE(5869)] = 214393, - [SMALL_STATE(5870)] = 214418, - [SMALL_STATE(5871)] = 214443, - [SMALL_STATE(5872)] = 214468, - [SMALL_STATE(5873)] = 214493, - [SMALL_STATE(5874)] = 214518, - [SMALL_STATE(5875)] = 214543, - [SMALL_STATE(5876)] = 214568, - [SMALL_STATE(5877)] = 214593, - [SMALL_STATE(5878)] = 214612, - [SMALL_STATE(5879)] = 214639, - [SMALL_STATE(5880)] = 214660, - [SMALL_STATE(5881)] = 214685, - [SMALL_STATE(5882)] = 214704, - [SMALL_STATE(5883)] = 214729, - [SMALL_STATE(5884)] = 214748, - [SMALL_STATE(5885)] = 214769, - [SMALL_STATE(5886)] = 214790, - [SMALL_STATE(5887)] = 214809, - [SMALL_STATE(5888)] = 214838, - [SMALL_STATE(5889)] = 214861, - [SMALL_STATE(5890)] = 214886, - [SMALL_STATE(5891)] = 214913, - [SMALL_STATE(5892)] = 214938, - [SMALL_STATE(5893)] = 214963, - [SMALL_STATE(5894)] = 214988, - [SMALL_STATE(5895)] = 215009, - [SMALL_STATE(5896)] = 215036, - [SMALL_STATE(5897)] = 215061, - [SMALL_STATE(5898)] = 215086, - [SMALL_STATE(5899)] = 215111, - [SMALL_STATE(5900)] = 215136, - [SMALL_STATE(5901)] = 215161, - [SMALL_STATE(5902)] = 215186, - [SMALL_STATE(5903)] = 215213, - [SMALL_STATE(5904)] = 215234, - [SMALL_STATE(5905)] = 215259, - [SMALL_STATE(5906)] = 215286, - [SMALL_STATE(5907)] = 215311, - [SMALL_STATE(5908)] = 215336, - [SMALL_STATE(5909)] = 215363, - [SMALL_STATE(5910)] = 215388, - [SMALL_STATE(5911)] = 215413, - [SMALL_STATE(5912)] = 215438, - [SMALL_STATE(5913)] = 215465, - [SMALL_STATE(5914)] = 215490, - [SMALL_STATE(5915)] = 215515, - [SMALL_STATE(5916)] = 215540, - [SMALL_STATE(5917)] = 215565, - [SMALL_STATE(5918)] = 215592, - [SMALL_STATE(5919)] = 215617, - [SMALL_STATE(5920)] = 215642, - [SMALL_STATE(5921)] = 215669, - [SMALL_STATE(5922)] = 215694, - [SMALL_STATE(5923)] = 215719, - [SMALL_STATE(5924)] = 215746, - [SMALL_STATE(5925)] = 215771, - [SMALL_STATE(5926)] = 215796, - [SMALL_STATE(5927)] = 215823, - [SMALL_STATE(5928)] = 215842, - [SMALL_STATE(5929)] = 215867, - [SMALL_STATE(5930)] = 215894, - [SMALL_STATE(5931)] = 215921, - [SMALL_STATE(5932)] = 215948, - [SMALL_STATE(5933)] = 215967, - [SMALL_STATE(5934)] = 215994, - [SMALL_STATE(5935)] = 216013, - [SMALL_STATE(5936)] = 216032, - [SMALL_STATE(5937)] = 216059, - [SMALL_STATE(5938)] = 216084, - [SMALL_STATE(5939)] = 216113, - [SMALL_STATE(5940)] = 216140, - [SMALL_STATE(5941)] = 216163, - [SMALL_STATE(5942)] = 216190, - [SMALL_STATE(5943)] = 216217, - [SMALL_STATE(5944)] = 216244, - [SMALL_STATE(5945)] = 216267, - [SMALL_STATE(5946)] = 216294, - [SMALL_STATE(5947)] = 216321, - [SMALL_STATE(5948)] = 216348, - [SMALL_STATE(5949)] = 216375, - [SMALL_STATE(5950)] = 216402, - [SMALL_STATE(5951)] = 216429, - [SMALL_STATE(5952)] = 216456, - [SMALL_STATE(5953)] = 216483, - [SMALL_STATE(5954)] = 216510, - [SMALL_STATE(5955)] = 216537, - [SMALL_STATE(5956)] = 216564, - [SMALL_STATE(5957)] = 216591, - [SMALL_STATE(5958)] = 216618, - [SMALL_STATE(5959)] = 216645, - [SMALL_STATE(5960)] = 216672, - [SMALL_STATE(5961)] = 216699, - [SMALL_STATE(5962)] = 216726, - [SMALL_STATE(5963)] = 216753, - [SMALL_STATE(5964)] = 216780, - [SMALL_STATE(5965)] = 216807, - [SMALL_STATE(5966)] = 216834, - [SMALL_STATE(5967)] = 216861, - [SMALL_STATE(5968)] = 216888, - [SMALL_STATE(5969)] = 216913, - [SMALL_STATE(5970)] = 216938, - [SMALL_STATE(5971)] = 216965, - [SMALL_STATE(5972)] = 216984, - [SMALL_STATE(5973)] = 217005, - [SMALL_STATE(5974)] = 217026, - [SMALL_STATE(5975)] = 217047, - [SMALL_STATE(5976)] = 217072, - [SMALL_STATE(5977)] = 217093, - [SMALL_STATE(5978)] = 217114, - [SMALL_STATE(5979)] = 217135, - [SMALL_STATE(5980)] = 217160, - [SMALL_STATE(5981)] = 217185, - [SMALL_STATE(5982)] = 217204, - [SMALL_STATE(5983)] = 217223, - [SMALL_STATE(5984)] = 217248, - [SMALL_STATE(5985)] = 217273, - [SMALL_STATE(5986)] = 217302, - [SMALL_STATE(5987)] = 217327, - [SMALL_STATE(5988)] = 217352, - [SMALL_STATE(5989)] = 217373, - [SMALL_STATE(5990)] = 217392, - [SMALL_STATE(5991)] = 217417, - [SMALL_STATE(5992)] = 217436, - [SMALL_STATE(5993)] = 217455, - [SMALL_STATE(5994)] = 217474, - [SMALL_STATE(5995)] = 217493, - [SMALL_STATE(5996)] = 217512, - [SMALL_STATE(5997)] = 217541, - [SMALL_STATE(5998)] = 217562, - [SMALL_STATE(5999)] = 217587, - [SMALL_STATE(6000)] = 217611, - [SMALL_STATE(6001)] = 217635, - [SMALL_STATE(6002)] = 217661, - [SMALL_STATE(6003)] = 217679, - [SMALL_STATE(6004)] = 217705, - [SMALL_STATE(6005)] = 217727, - [SMALL_STATE(6006)] = 217745, - [SMALL_STATE(6007)] = 217767, - [SMALL_STATE(6008)] = 217785, - [SMALL_STATE(6009)] = 217803, - [SMALL_STATE(6010)] = 217829, - [SMALL_STATE(6011)] = 217849, - [SMALL_STATE(6012)] = 217871, - [SMALL_STATE(6013)] = 217895, - [SMALL_STATE(6014)] = 217917, - [SMALL_STATE(6015)] = 217937, - [SMALL_STATE(6016)] = 217955, - [SMALL_STATE(6017)] = 217981, - [SMALL_STATE(6018)] = 217999, - [SMALL_STATE(6019)] = 218025, - [SMALL_STATE(6020)] = 218045, - [SMALL_STATE(6021)] = 218071, - [SMALL_STATE(6022)] = 218097, - [SMALL_STATE(6023)] = 218115, - [SMALL_STATE(6024)] = 218141, - [SMALL_STATE(6025)] = 218159, - [SMALL_STATE(6026)] = 218185, - [SMALL_STATE(6027)] = 218211, - [SMALL_STATE(6028)] = 218229, - [SMALL_STATE(6029)] = 218251, - [SMALL_STATE(6030)] = 218273, - [SMALL_STATE(6031)] = 218295, - [SMALL_STATE(6032)] = 218313, - [SMALL_STATE(6033)] = 218335, - [SMALL_STATE(6034)] = 218357, - [SMALL_STATE(6035)] = 218383, - [SMALL_STATE(6036)] = 218401, - [SMALL_STATE(6037)] = 218427, - [SMALL_STATE(6038)] = 218445, - [SMALL_STATE(6039)] = 218465, - [SMALL_STATE(6040)] = 218491, - [SMALL_STATE(6041)] = 218517, - [SMALL_STATE(6042)] = 218543, - [SMALL_STATE(6043)] = 218569, - [SMALL_STATE(6044)] = 218587, - [SMALL_STATE(6045)] = 218605, - [SMALL_STATE(6046)] = 218623, - [SMALL_STATE(6047)] = 218649, - [SMALL_STATE(6048)] = 218667, - [SMALL_STATE(6049)] = 218685, - [SMALL_STATE(6050)] = 218711, - [SMALL_STATE(6051)] = 218737, - [SMALL_STATE(6052)] = 218763, - [SMALL_STATE(6053)] = 218789, - [SMALL_STATE(6054)] = 218815, - [SMALL_STATE(6055)] = 218833, - [SMALL_STATE(6056)] = 218851, - [SMALL_STATE(6057)] = 218869, - [SMALL_STATE(6058)] = 218887, - [SMALL_STATE(6059)] = 218913, - [SMALL_STATE(6060)] = 218933, - [SMALL_STATE(6061)] = 218959, - [SMALL_STATE(6062)] = 218979, - [SMALL_STATE(6063)] = 218997, - [SMALL_STATE(6064)] = 219023, - [SMALL_STATE(6065)] = 219051, - [SMALL_STATE(6066)] = 219077, - [SMALL_STATE(6067)] = 219103, - [SMALL_STATE(6068)] = 219129, - [SMALL_STATE(6069)] = 219155, - [SMALL_STATE(6070)] = 219175, - [SMALL_STATE(6071)] = 219193, - [SMALL_STATE(6072)] = 219219, - [SMALL_STATE(6073)] = 219239, - [SMALL_STATE(6074)] = 219261, - [SMALL_STATE(6075)] = 219281, - [SMALL_STATE(6076)] = 219307, - [SMALL_STATE(6077)] = 219333, - [SMALL_STATE(6078)] = 219357, - [SMALL_STATE(6079)] = 219385, - [SMALL_STATE(6080)] = 219407, - [SMALL_STATE(6081)] = 219429, - [SMALL_STATE(6082)] = 219447, - [SMALL_STATE(6083)] = 219473, - [SMALL_STATE(6084)] = 219499, - [SMALL_STATE(6085)] = 219517, - [SMALL_STATE(6086)] = 219535, - [SMALL_STATE(6087)] = 219561, - [SMALL_STATE(6088)] = 219587, - [SMALL_STATE(6089)] = 219607, - [SMALL_STATE(6090)] = 219627, - [SMALL_STATE(6091)] = 219653, - [SMALL_STATE(6092)] = 219678, - [SMALL_STATE(6093)] = 219697, - [SMALL_STATE(6094)] = 219722, - [SMALL_STATE(6095)] = 219739, - [SMALL_STATE(6096)] = 219756, - [SMALL_STATE(6097)] = 219773, - [SMALL_STATE(6098)] = 219798, - [SMALL_STATE(6099)] = 219815, - [SMALL_STATE(6100)] = 219832, - [SMALL_STATE(6101)] = 219855, - [SMALL_STATE(6102)] = 219880, - [SMALL_STATE(6103)] = 219905, - [SMALL_STATE(6104)] = 219922, - [SMALL_STATE(6105)] = 219945, - [SMALL_STATE(6106)] = 219962, - [SMALL_STATE(6107)] = 219987, - [SMALL_STATE(6108)] = 220008, - [SMALL_STATE(6109)] = 220027, - [SMALL_STATE(6110)] = 220044, - [SMALL_STATE(6111)] = 220067, - [SMALL_STATE(6112)] = 220084, - [SMALL_STATE(6113)] = 220107, - [SMALL_STATE(6114)] = 220132, - [SMALL_STATE(6115)] = 220149, - [SMALL_STATE(6116)] = 220166, - [SMALL_STATE(6117)] = 220187, - [SMALL_STATE(6118)] = 220202, - [SMALL_STATE(6119)] = 220225, - [SMALL_STATE(6120)] = 220246, - [SMALL_STATE(6121)] = 220271, - [SMALL_STATE(6122)] = 220296, - [SMALL_STATE(6123)] = 220317, - [SMALL_STATE(6124)] = 220334, - [SMALL_STATE(6125)] = 220357, - [SMALL_STATE(6126)] = 220374, - [SMALL_STATE(6127)] = 220399, - [SMALL_STATE(6128)] = 220418, - [SMALL_STATE(6129)] = 220437, - [SMALL_STATE(6130)] = 220454, - [SMALL_STATE(6131)] = 220479, - [SMALL_STATE(6132)] = 220496, - [SMALL_STATE(6133)] = 220513, - [SMALL_STATE(6134)] = 220538, - [SMALL_STATE(6135)] = 220557, - [SMALL_STATE(6136)] = 220576, - [SMALL_STATE(6137)] = 220599, - [SMALL_STATE(6138)] = 220616, - [SMALL_STATE(6139)] = 220633, - [SMALL_STATE(6140)] = 220650, - [SMALL_STATE(6141)] = 220671, - [SMALL_STATE(6142)] = 220688, - [SMALL_STATE(6143)] = 220713, - [SMALL_STATE(6144)] = 220738, - [SMALL_STATE(6145)] = 220761, - [SMALL_STATE(6146)] = 220778, - [SMALL_STATE(6147)] = 220799, - [SMALL_STATE(6148)] = 220824, - [SMALL_STATE(6149)] = 220849, - [SMALL_STATE(6150)] = 220872, - [SMALL_STATE(6151)] = 220897, - [SMALL_STATE(6152)] = 220922, - [SMALL_STATE(6153)] = 220947, - [SMALL_STATE(6154)] = 220972, - [SMALL_STATE(6155)] = 220997, - [SMALL_STATE(6156)] = 221020, - [SMALL_STATE(6157)] = 221037, - [SMALL_STATE(6158)] = 221062, - [SMALL_STATE(6159)] = 221087, - [SMALL_STATE(6160)] = 221110, - [SMALL_STATE(6161)] = 221135, - [SMALL_STATE(6162)] = 221160, - [SMALL_STATE(6163)] = 221185, - [SMALL_STATE(6164)] = 221208, - [SMALL_STATE(6165)] = 221233, - [SMALL_STATE(6166)] = 221252, - [SMALL_STATE(6167)] = 221277, - [SMALL_STATE(6168)] = 221300, - [SMALL_STATE(6169)] = 221317, - [SMALL_STATE(6170)] = 221342, - [SMALL_STATE(6171)] = 221367, - [SMALL_STATE(6172)] = 221390, - [SMALL_STATE(6173)] = 221407, - [SMALL_STATE(6174)] = 221428, - [SMALL_STATE(6175)] = 221453, - [SMALL_STATE(6176)] = 221478, - [SMALL_STATE(6177)] = 221501, - [SMALL_STATE(6178)] = 221526, - [SMALL_STATE(6179)] = 221543, - [SMALL_STATE(6180)] = 221560, - [SMALL_STATE(6181)] = 221583, - [SMALL_STATE(6182)] = 221608, - [SMALL_STATE(6183)] = 221633, - [SMALL_STATE(6184)] = 221656, - [SMALL_STATE(6185)] = 221681, - [SMALL_STATE(6186)] = 221698, - [SMALL_STATE(6187)] = 221715, - [SMALL_STATE(6188)] = 221740, - [SMALL_STATE(6189)] = 221757, - [SMALL_STATE(6190)] = 221774, - [SMALL_STATE(6191)] = 221797, - [SMALL_STATE(6192)] = 221822, - [SMALL_STATE(6193)] = 221847, - [SMALL_STATE(6194)] = 221870, - [SMALL_STATE(6195)] = 221895, - [SMALL_STATE(6196)] = 221920, - [SMALL_STATE(6197)] = 221945, - [SMALL_STATE(6198)] = 221970, - [SMALL_STATE(6199)] = 221995, - [SMALL_STATE(6200)] = 222020, - [SMALL_STATE(6201)] = 222045, - [SMALL_STATE(6202)] = 222068, - [SMALL_STATE(6203)] = 222093, - [SMALL_STATE(6204)] = 222118, - [SMALL_STATE(6205)] = 222141, - [SMALL_STATE(6206)] = 222166, - [SMALL_STATE(6207)] = 222191, - [SMALL_STATE(6208)] = 222208, - [SMALL_STATE(6209)] = 222233, - [SMALL_STATE(6210)] = 222258, - [SMALL_STATE(6211)] = 222281, - [SMALL_STATE(6212)] = 222306, - [SMALL_STATE(6213)] = 222331, - [SMALL_STATE(6214)] = 222354, - [SMALL_STATE(6215)] = 222379, - [SMALL_STATE(6216)] = 222404, - [SMALL_STATE(6217)] = 222429, - [SMALL_STATE(6218)] = 222454, - [SMALL_STATE(6219)] = 222479, - [SMALL_STATE(6220)] = 222496, - [SMALL_STATE(6221)] = 222513, - [SMALL_STATE(6222)] = 222538, - [SMALL_STATE(6223)] = 222563, - [SMALL_STATE(6224)] = 222586, - [SMALL_STATE(6225)] = 222611, - [SMALL_STATE(6226)] = 222636, - [SMALL_STATE(6227)] = 222661, - [SMALL_STATE(6228)] = 222684, - [SMALL_STATE(6229)] = 222701, - [SMALL_STATE(6230)] = 222726, - [SMALL_STATE(6231)] = 222743, - [SMALL_STATE(6232)] = 222768, - [SMALL_STATE(6233)] = 222785, - [SMALL_STATE(6234)] = 222810, - [SMALL_STATE(6235)] = 222833, - [SMALL_STATE(6236)] = 222858, - [SMALL_STATE(6237)] = 222883, - [SMALL_STATE(6238)] = 222906, - [SMALL_STATE(6239)] = 222931, - [SMALL_STATE(6240)] = 222956, - [SMALL_STATE(6241)] = 222981, - [SMALL_STATE(6242)] = 223006, - [SMALL_STATE(6243)] = 223023, - [SMALL_STATE(6244)] = 223040, - [SMALL_STATE(6245)] = 223063, - [SMALL_STATE(6246)] = 223086, - [SMALL_STATE(6247)] = 223111, - [SMALL_STATE(6248)] = 223128, - [SMALL_STATE(6249)] = 223153, - [SMALL_STATE(6250)] = 223178, - [SMALL_STATE(6251)] = 223203, - [SMALL_STATE(6252)] = 223226, - [SMALL_STATE(6253)] = 223249, - [SMALL_STATE(6254)] = 223274, - [SMALL_STATE(6255)] = 223299, - [SMALL_STATE(6256)] = 223324, - [SMALL_STATE(6257)] = 223349, - [SMALL_STATE(6258)] = 223372, - [SMALL_STATE(6259)] = 223393, - [SMALL_STATE(6260)] = 223416, - [SMALL_STATE(6261)] = 223441, - [SMALL_STATE(6262)] = 223460, - [SMALL_STATE(6263)] = 223485, - [SMALL_STATE(6264)] = 223506, - [SMALL_STATE(6265)] = 223531, - [SMALL_STATE(6266)] = 223556, - [SMALL_STATE(6267)] = 223581, - [SMALL_STATE(6268)] = 223602, - [SMALL_STATE(6269)] = 223627, - [SMALL_STATE(6270)] = 223648, - [SMALL_STATE(6271)] = 223673, - [SMALL_STATE(6272)] = 223696, - [SMALL_STATE(6273)] = 223721, - [SMALL_STATE(6274)] = 223746, - [SMALL_STATE(6275)] = 223771, - [SMALL_STATE(6276)] = 223796, - [SMALL_STATE(6277)] = 223815, - [SMALL_STATE(6278)] = 223834, - [SMALL_STATE(6279)] = 223855, - [SMALL_STATE(6280)] = 223880, - [SMALL_STATE(6281)] = 223905, - [SMALL_STATE(6282)] = 223930, - [SMALL_STATE(6283)] = 223955, - [SMALL_STATE(6284)] = 223976, - [SMALL_STATE(6285)] = 224001, - [SMALL_STATE(6286)] = 224018, - [SMALL_STATE(6287)] = 224043, - [SMALL_STATE(6288)] = 224068, - [SMALL_STATE(6289)] = 224085, - [SMALL_STATE(6290)] = 224110, - [SMALL_STATE(6291)] = 224135, - [SMALL_STATE(6292)] = 224152, - [SMALL_STATE(6293)] = 224169, - [SMALL_STATE(6294)] = 224194, - [SMALL_STATE(6295)] = 224211, - [SMALL_STATE(6296)] = 224236, - [SMALL_STATE(6297)] = 224255, - [SMALL_STATE(6298)] = 224274, - [SMALL_STATE(6299)] = 224291, - [SMALL_STATE(6300)] = 224316, - [SMALL_STATE(6301)] = 224339, - [SMALL_STATE(6302)] = 224364, - [SMALL_STATE(6303)] = 224389, - [SMALL_STATE(6304)] = 224414, - [SMALL_STATE(6305)] = 224431, - [SMALL_STATE(6306)] = 224454, - [SMALL_STATE(6307)] = 224477, - [SMALL_STATE(6308)] = 224502, - [SMALL_STATE(6309)] = 224527, - [SMALL_STATE(6310)] = 224548, - [SMALL_STATE(6311)] = 224573, - [SMALL_STATE(6312)] = 224596, - [SMALL_STATE(6313)] = 224617, - [SMALL_STATE(6314)] = 224642, - [SMALL_STATE(6315)] = 224659, - [SMALL_STATE(6316)] = 224680, - [SMALL_STATE(6317)] = 224697, - [SMALL_STATE(6318)] = 224722, - [SMALL_STATE(6319)] = 224747, - [SMALL_STATE(6320)] = 224772, - [SMALL_STATE(6321)] = 224789, - [SMALL_STATE(6322)] = 224806, - [SMALL_STATE(6323)] = 224827, - [SMALL_STATE(6324)] = 224852, - [SMALL_STATE(6325)] = 224877, - [SMALL_STATE(6326)] = 224896, - [SMALL_STATE(6327)] = 224921, - [SMALL_STATE(6328)] = 224940, - [SMALL_STATE(6329)] = 224959, - [SMALL_STATE(6330)] = 224978, - [SMALL_STATE(6331)] = 225003, - [SMALL_STATE(6332)] = 225020, - [SMALL_STATE(6333)] = 225037, - [SMALL_STATE(6334)] = 225058, - [SMALL_STATE(6335)] = 225075, - [SMALL_STATE(6336)] = 225096, - [SMALL_STATE(6337)] = 225121, - [SMALL_STATE(6338)] = 225146, - [SMALL_STATE(6339)] = 225163, - [SMALL_STATE(6340)] = 225184, - [SMALL_STATE(6341)] = 225201, - [SMALL_STATE(6342)] = 225218, - [SMALL_STATE(6343)] = 225243, - [SMALL_STATE(6344)] = 225260, - [SMALL_STATE(6345)] = 225281, - [SMALL_STATE(6346)] = 225306, - [SMALL_STATE(6347)] = 225331, - [SMALL_STATE(6348)] = 225350, - [SMALL_STATE(6349)] = 225367, - [SMALL_STATE(6350)] = 225386, - [SMALL_STATE(6351)] = 225409, - [SMALL_STATE(6352)] = 225426, - [SMALL_STATE(6353)] = 225443, - [SMALL_STATE(6354)] = 225466, - [SMALL_STATE(6355)] = 225487, - [SMALL_STATE(6356)] = 225504, - [SMALL_STATE(6357)] = 225521, - [SMALL_STATE(6358)] = 225540, - [SMALL_STATE(6359)] = 225565, - [SMALL_STATE(6360)] = 225590, - [SMALL_STATE(6361)] = 225607, - [SMALL_STATE(6362)] = 225632, - [SMALL_STATE(6363)] = 225655, - [SMALL_STATE(6364)] = 225680, - [SMALL_STATE(6365)] = 225699, - [SMALL_STATE(6366)] = 225720, - [SMALL_STATE(6367)] = 225745, - [SMALL_STATE(6368)] = 225766, - [SMALL_STATE(6369)] = 225785, - [SMALL_STATE(6370)] = 225810, - [SMALL_STATE(6371)] = 225835, - [SMALL_STATE(6372)] = 225856, - [SMALL_STATE(6373)] = 225873, - [SMALL_STATE(6374)] = 225898, - [SMALL_STATE(6375)] = 225915, - [SMALL_STATE(6376)] = 225940, - [SMALL_STATE(6377)] = 225960, - [SMALL_STATE(6378)] = 225974, - [SMALL_STATE(6379)] = 225988, - [SMALL_STATE(6380)] = 226010, - [SMALL_STATE(6381)] = 226032, - [SMALL_STATE(6382)] = 226054, - [SMALL_STATE(6383)] = 226068, - [SMALL_STATE(6384)] = 226090, - [SMALL_STATE(6385)] = 226104, - [SMALL_STATE(6386)] = 226118, - [SMALL_STATE(6387)] = 226132, - [SMALL_STATE(6388)] = 226146, - [SMALL_STATE(6389)] = 226168, - [SMALL_STATE(6390)] = 226182, - [SMALL_STATE(6391)] = 226204, - [SMALL_STATE(6392)] = 226222, - [SMALL_STATE(6393)] = 226244, - [SMALL_STATE(6394)] = 226260, - [SMALL_STATE(6395)] = 226282, - [SMALL_STATE(6396)] = 226302, - [SMALL_STATE(6397)] = 226324, - [SMALL_STATE(6398)] = 226346, - [SMALL_STATE(6399)] = 226364, - [SMALL_STATE(6400)] = 226386, - [SMALL_STATE(6401)] = 226408, - [SMALL_STATE(6402)] = 226428, - [SMALL_STATE(6403)] = 226442, - [SMALL_STATE(6404)] = 226464, - [SMALL_STATE(6405)] = 226486, - [SMALL_STATE(6406)] = 226500, - [SMALL_STATE(6407)] = 226522, - [SMALL_STATE(6408)] = 226544, - [SMALL_STATE(6409)] = 226560, - [SMALL_STATE(6410)] = 226574, - [SMALL_STATE(6411)] = 226588, - [SMALL_STATE(6412)] = 226604, - [SMALL_STATE(6413)] = 226626, - [SMALL_STATE(6414)] = 226648, - [SMALL_STATE(6415)] = 226662, - [SMALL_STATE(6416)] = 226676, - [SMALL_STATE(6417)] = 226698, - [SMALL_STATE(6418)] = 226720, - [SMALL_STATE(6419)] = 226736, - [SMALL_STATE(6420)] = 226752, - [SMALL_STATE(6421)] = 226768, - [SMALL_STATE(6422)] = 226786, - [SMALL_STATE(6423)] = 226808, - [SMALL_STATE(6424)] = 226830, - [SMALL_STATE(6425)] = 226852, - [SMALL_STATE(6426)] = 226874, - [SMALL_STATE(6427)] = 226896, - [SMALL_STATE(6428)] = 226910, - [SMALL_STATE(6429)] = 226926, - [SMALL_STATE(6430)] = 226942, - [SMALL_STATE(6431)] = 226956, - [SMALL_STATE(6432)] = 226978, - [SMALL_STATE(6433)] = 226994, - [SMALL_STATE(6434)] = 227014, - [SMALL_STATE(6435)] = 227036, - [SMALL_STATE(6436)] = 227054, - [SMALL_STATE(6437)] = 227072, - [SMALL_STATE(6438)] = 227094, - [SMALL_STATE(6439)] = 227110, - [SMALL_STATE(6440)] = 227128, - [SMALL_STATE(6441)] = 227150, - [SMALL_STATE(6442)] = 227166, - [SMALL_STATE(6443)] = 227182, - [SMALL_STATE(6444)] = 227202, - [SMALL_STATE(6445)] = 227222, - [SMALL_STATE(6446)] = 227244, - [SMALL_STATE(6447)] = 227266, - [SMALL_STATE(6448)] = 227288, - [SMALL_STATE(6449)] = 227310, - [SMALL_STATE(6450)] = 227332, - [SMALL_STATE(6451)] = 227354, - [SMALL_STATE(6452)] = 227372, - [SMALL_STATE(6453)] = 227394, - [SMALL_STATE(6454)] = 227416, - [SMALL_STATE(6455)] = 227438, - [SMALL_STATE(6456)] = 227460, - [SMALL_STATE(6457)] = 227482, - [SMALL_STATE(6458)] = 227498, - [SMALL_STATE(6459)] = 227516, - [SMALL_STATE(6460)] = 227538, - [SMALL_STATE(6461)] = 227560, - [SMALL_STATE(6462)] = 227582, - [SMALL_STATE(6463)] = 227604, - [SMALL_STATE(6464)] = 227626, - [SMALL_STATE(6465)] = 227648, - [SMALL_STATE(6466)] = 227670, - [SMALL_STATE(6467)] = 227692, - [SMALL_STATE(6468)] = 227714, - [SMALL_STATE(6469)] = 227736, - [SMALL_STATE(6470)] = 227758, - [SMALL_STATE(6471)] = 227780, - [SMALL_STATE(6472)] = 227802, - [SMALL_STATE(6473)] = 227824, - [SMALL_STATE(6474)] = 227846, - [SMALL_STATE(6475)] = 227864, - [SMALL_STATE(6476)] = 227878, - [SMALL_STATE(6477)] = 227900, - [SMALL_STATE(6478)] = 227922, - [SMALL_STATE(6479)] = 227944, - [SMALL_STATE(6480)] = 227966, - [SMALL_STATE(6481)] = 227988, - [SMALL_STATE(6482)] = 228010, - [SMALL_STATE(6483)] = 228024, - [SMALL_STATE(6484)] = 228038, - [SMALL_STATE(6485)] = 228052, - [SMALL_STATE(6486)] = 228070, - [SMALL_STATE(6487)] = 228092, - [SMALL_STATE(6488)] = 228114, - [SMALL_STATE(6489)] = 228132, - [SMALL_STATE(6490)] = 228146, - [SMALL_STATE(6491)] = 228164, - [SMALL_STATE(6492)] = 228184, - [SMALL_STATE(6493)] = 228206, - [SMALL_STATE(6494)] = 228228, - [SMALL_STATE(6495)] = 228244, - [SMALL_STATE(6496)] = 228264, - [SMALL_STATE(6497)] = 228286, - [SMALL_STATE(6498)] = 228308, - [SMALL_STATE(6499)] = 228330, - [SMALL_STATE(6500)] = 228352, - [SMALL_STATE(6501)] = 228366, - [SMALL_STATE(6502)] = 228382, - [SMALL_STATE(6503)] = 228404, - [SMALL_STATE(6504)] = 228426, - [SMALL_STATE(6505)] = 228444, - [SMALL_STATE(6506)] = 228458, - [SMALL_STATE(6507)] = 228476, - [SMALL_STATE(6508)] = 228498, - [SMALL_STATE(6509)] = 228520, - [SMALL_STATE(6510)] = 228542, - [SMALL_STATE(6511)] = 228558, - [SMALL_STATE(6512)] = 228574, - [SMALL_STATE(6513)] = 228592, - [SMALL_STATE(6514)] = 228614, - [SMALL_STATE(6515)] = 228636, - [SMALL_STATE(6516)] = 228650, - [SMALL_STATE(6517)] = 228666, - [SMALL_STATE(6518)] = 228682, - [SMALL_STATE(6519)] = 228698, - [SMALL_STATE(6520)] = 228712, - [SMALL_STATE(6521)] = 228734, - [SMALL_STATE(6522)] = 228750, - [SMALL_STATE(6523)] = 228772, - [SMALL_STATE(6524)] = 228794, - [SMALL_STATE(6525)] = 228808, - [SMALL_STATE(6526)] = 228830, - [SMALL_STATE(6527)] = 228844, - [SMALL_STATE(6528)] = 228866, - [SMALL_STATE(6529)] = 228880, - [SMALL_STATE(6530)] = 228902, - [SMALL_STATE(6531)] = 228924, - [SMALL_STATE(6532)] = 228942, - [SMALL_STATE(6533)] = 228956, - [SMALL_STATE(6534)] = 228978, - [SMALL_STATE(6535)] = 229000, - [SMALL_STATE(6536)] = 229022, - [SMALL_STATE(6537)] = 229044, - [SMALL_STATE(6538)] = 229062, - [SMALL_STATE(6539)] = 229084, - [SMALL_STATE(6540)] = 229102, - [SMALL_STATE(6541)] = 229124, - [SMALL_STATE(6542)] = 229146, - [SMALL_STATE(6543)] = 229160, - [SMALL_STATE(6544)] = 229182, - [SMALL_STATE(6545)] = 229196, - [SMALL_STATE(6546)] = 229212, - [SMALL_STATE(6547)] = 229234, - [SMALL_STATE(6548)] = 229248, - [SMALL_STATE(6549)] = 229266, - [SMALL_STATE(6550)] = 229288, - [SMALL_STATE(6551)] = 229306, - [SMALL_STATE(6552)] = 229328, - [SMALL_STATE(6553)] = 229350, - [SMALL_STATE(6554)] = 229372, - [SMALL_STATE(6555)] = 229394, - [SMALL_STATE(6556)] = 229408, - [SMALL_STATE(6557)] = 229426, - [SMALL_STATE(6558)] = 229440, - [SMALL_STATE(6559)] = 229462, - [SMALL_STATE(6560)] = 229476, - [SMALL_STATE(6561)] = 229490, - [SMALL_STATE(6562)] = 229512, - [SMALL_STATE(6563)] = 229526, - [SMALL_STATE(6564)] = 229540, - [SMALL_STATE(6565)] = 229562, - [SMALL_STATE(6566)] = 229576, - [SMALL_STATE(6567)] = 229598, - [SMALL_STATE(6568)] = 229620, - [SMALL_STATE(6569)] = 229638, - [SMALL_STATE(6570)] = 229660, - [SMALL_STATE(6571)] = 229678, - [SMALL_STATE(6572)] = 229692, - [SMALL_STATE(6573)] = 229706, - [SMALL_STATE(6574)] = 229724, - [SMALL_STATE(6575)] = 229738, - [SMALL_STATE(6576)] = 229754, - [SMALL_STATE(6577)] = 229774, - [SMALL_STATE(6578)] = 229794, - [SMALL_STATE(6579)] = 229812, - [SMALL_STATE(6580)] = 229834, - [SMALL_STATE(6581)] = 229856, - [SMALL_STATE(6582)] = 229878, - [SMALL_STATE(6583)] = 229898, - [SMALL_STATE(6584)] = 229920, - [SMALL_STATE(6585)] = 229934, - [SMALL_STATE(6586)] = 229956, - [SMALL_STATE(6587)] = 229974, - [SMALL_STATE(6588)] = 229996, - [SMALL_STATE(6589)] = 230018, - [SMALL_STATE(6590)] = 230036, - [SMALL_STATE(6591)] = 230058, - [SMALL_STATE(6592)] = 230080, - [SMALL_STATE(6593)] = 230102, - [SMALL_STATE(6594)] = 230120, - [SMALL_STATE(6595)] = 230140, - [SMALL_STATE(6596)] = 230158, - [SMALL_STATE(6597)] = 230180, - [SMALL_STATE(6598)] = 230194, - [SMALL_STATE(6599)] = 230214, - [SMALL_STATE(6600)] = 230236, - [SMALL_STATE(6601)] = 230258, - [SMALL_STATE(6602)] = 230280, - [SMALL_STATE(6603)] = 230302, - [SMALL_STATE(6604)] = 230324, - [SMALL_STATE(6605)] = 230346, - [SMALL_STATE(6606)] = 230368, - [SMALL_STATE(6607)] = 230390, - [SMALL_STATE(6608)] = 230412, - [SMALL_STATE(6609)] = 230434, - [SMALL_STATE(6610)] = 230456, - [SMALL_STATE(6611)] = 230478, - [SMALL_STATE(6612)] = 230500, - [SMALL_STATE(6613)] = 230522, - [SMALL_STATE(6614)] = 230544, - [SMALL_STATE(6615)] = 230566, - [SMALL_STATE(6616)] = 230588, - [SMALL_STATE(6617)] = 230610, - [SMALL_STATE(6618)] = 230632, - [SMALL_STATE(6619)] = 230654, - [SMALL_STATE(6620)] = 230676, - [SMALL_STATE(6621)] = 230698, - [SMALL_STATE(6622)] = 230720, - [SMALL_STATE(6623)] = 230742, - [SMALL_STATE(6624)] = 230756, - [SMALL_STATE(6625)] = 230778, - [SMALL_STATE(6626)] = 230800, - [SMALL_STATE(6627)] = 230822, - [SMALL_STATE(6628)] = 230844, - [SMALL_STATE(6629)] = 230866, - [SMALL_STATE(6630)] = 230888, - [SMALL_STATE(6631)] = 230910, - [SMALL_STATE(6632)] = 230932, - [SMALL_STATE(6633)] = 230954, - [SMALL_STATE(6634)] = 230976, - [SMALL_STATE(6635)] = 230998, - [SMALL_STATE(6636)] = 231020, - [SMALL_STATE(6637)] = 231040, - [SMALL_STATE(6638)] = 231062, - [SMALL_STATE(6639)] = 231084, - [SMALL_STATE(6640)] = 231106, - [SMALL_STATE(6641)] = 231128, - [SMALL_STATE(6642)] = 231150, - [SMALL_STATE(6643)] = 231172, - [SMALL_STATE(6644)] = 231186, - [SMALL_STATE(6645)] = 231208, - [SMALL_STATE(6646)] = 231222, - [SMALL_STATE(6647)] = 231236, - [SMALL_STATE(6648)] = 231250, - [SMALL_STATE(6649)] = 231272, - [SMALL_STATE(6650)] = 231286, - [SMALL_STATE(6651)] = 231306, - [SMALL_STATE(6652)] = 231320, - [SMALL_STATE(6653)] = 231340, - [SMALL_STATE(6654)] = 231358, - [SMALL_STATE(6655)] = 231372, - [SMALL_STATE(6656)] = 231386, - [SMALL_STATE(6657)] = 231400, - [SMALL_STATE(6658)] = 231418, - [SMALL_STATE(6659)] = 231433, - [SMALL_STATE(6660)] = 231452, - [SMALL_STATE(6661)] = 231471, - [SMALL_STATE(6662)] = 231484, - [SMALL_STATE(6663)] = 231497, - [SMALL_STATE(6664)] = 231516, - [SMALL_STATE(6665)] = 231533, - [SMALL_STATE(6666)] = 231548, - [SMALL_STATE(6667)] = 231567, - [SMALL_STATE(6668)] = 231586, - [SMALL_STATE(6669)] = 231601, - [SMALL_STATE(6670)] = 231620, - [SMALL_STATE(6671)] = 231635, - [SMALL_STATE(6672)] = 231652, - [SMALL_STATE(6673)] = 231665, - [SMALL_STATE(6674)] = 231684, - [SMALL_STATE(6675)] = 231701, - [SMALL_STATE(6676)] = 231716, - [SMALL_STATE(6677)] = 231733, - [SMALL_STATE(6678)] = 231752, - [SMALL_STATE(6679)] = 231765, - [SMALL_STATE(6680)] = 231780, - [SMALL_STATE(6681)] = 231793, - [SMALL_STATE(6682)] = 231806, - [SMALL_STATE(6683)] = 231819, - [SMALL_STATE(6684)] = 231838, - [SMALL_STATE(6685)] = 231857, - [SMALL_STATE(6686)] = 231876, - [SMALL_STATE(6687)] = 231895, - [SMALL_STATE(6688)] = 231914, - [SMALL_STATE(6689)] = 231933, - [SMALL_STATE(6690)] = 231952, - [SMALL_STATE(6691)] = 231971, - [SMALL_STATE(6692)] = 231984, - [SMALL_STATE(6693)] = 231997, - [SMALL_STATE(6694)] = 232010, - [SMALL_STATE(6695)] = 232029, - [SMALL_STATE(6696)] = 232042, - [SMALL_STATE(6697)] = 232055, - [SMALL_STATE(6698)] = 232072, - [SMALL_STATE(6699)] = 232087, - [SMALL_STATE(6700)] = 232100, - [SMALL_STATE(6701)] = 232113, - [SMALL_STATE(6702)] = 232126, - [SMALL_STATE(6703)] = 232139, - [SMALL_STATE(6704)] = 232156, - [SMALL_STATE(6705)] = 232171, - [SMALL_STATE(6706)] = 232186, - [SMALL_STATE(6707)] = 232201, - [SMALL_STATE(6708)] = 232220, - [SMALL_STATE(6709)] = 232235, - [SMALL_STATE(6710)] = 232254, - [SMALL_STATE(6711)] = 232271, - [SMALL_STATE(6712)] = 232286, - [SMALL_STATE(6713)] = 232299, - [SMALL_STATE(6714)] = 232312, - [SMALL_STATE(6715)] = 232327, - [SMALL_STATE(6716)] = 232346, - [SMALL_STATE(6717)] = 232365, - [SMALL_STATE(6718)] = 232384, - [SMALL_STATE(6719)] = 232403, - [SMALL_STATE(6720)] = 232422, - [SMALL_STATE(6721)] = 232441, - [SMALL_STATE(6722)] = 232460, - [SMALL_STATE(6723)] = 232479, - [SMALL_STATE(6724)] = 232492, - [SMALL_STATE(6725)] = 232505, - [SMALL_STATE(6726)] = 232518, - [SMALL_STATE(6727)] = 232531, - [SMALL_STATE(6728)] = 232544, - [SMALL_STATE(6729)] = 232557, - [SMALL_STATE(6730)] = 232574, - [SMALL_STATE(6731)] = 232587, - [SMALL_STATE(6732)] = 232606, - [SMALL_STATE(6733)] = 232619, - [SMALL_STATE(6734)] = 232632, - [SMALL_STATE(6735)] = 232649, - [SMALL_STATE(6736)] = 232666, - [SMALL_STATE(6737)] = 232683, - [SMALL_STATE(6738)] = 232702, - [SMALL_STATE(6739)] = 232717, - [SMALL_STATE(6740)] = 232734, - [SMALL_STATE(6741)] = 232747, - [SMALL_STATE(6742)] = 232766, - [SMALL_STATE(6743)] = 232779, - [SMALL_STATE(6744)] = 232798, - [SMALL_STATE(6745)] = 232817, - [SMALL_STATE(6746)] = 232836, - [SMALL_STATE(6747)] = 232855, - [SMALL_STATE(6748)] = 232874, - [SMALL_STATE(6749)] = 232893, - [SMALL_STATE(6750)] = 232912, - [SMALL_STATE(6751)] = 232931, - [SMALL_STATE(6752)] = 232944, - [SMALL_STATE(6753)] = 232957, - [SMALL_STATE(6754)] = 232970, - [SMALL_STATE(6755)] = 232983, - [SMALL_STATE(6756)] = 232996, - [SMALL_STATE(6757)] = 233013, - [SMALL_STATE(6758)] = 233032, - [SMALL_STATE(6759)] = 233045, - [SMALL_STATE(6760)] = 233058, - [SMALL_STATE(6761)] = 233077, - [SMALL_STATE(6762)] = 233092, - [SMALL_STATE(6763)] = 233109, - [SMALL_STATE(6764)] = 233126, - [SMALL_STATE(6765)] = 233143, - [SMALL_STATE(6766)] = 233158, - [SMALL_STATE(6767)] = 233177, - [SMALL_STATE(6768)] = 233190, - [SMALL_STATE(6769)] = 233209, - [SMALL_STATE(6770)] = 233222, - [SMALL_STATE(6771)] = 233241, - [SMALL_STATE(6772)] = 233256, - [SMALL_STATE(6773)] = 233269, - [SMALL_STATE(6774)] = 233288, - [SMALL_STATE(6775)] = 233307, - [SMALL_STATE(6776)] = 233326, - [SMALL_STATE(6777)] = 233345, - [SMALL_STATE(6778)] = 233364, - [SMALL_STATE(6779)] = 233383, - [SMALL_STATE(6780)] = 233402, - [SMALL_STATE(6781)] = 233421, - [SMALL_STATE(6782)] = 233438, - [SMALL_STATE(6783)] = 233455, - [SMALL_STATE(6784)] = 233468, - [SMALL_STATE(6785)] = 233481, - [SMALL_STATE(6786)] = 233494, - [SMALL_STATE(6787)] = 233507, - [SMALL_STATE(6788)] = 233524, - [SMALL_STATE(6789)] = 233543, - [SMALL_STATE(6790)] = 233560, - [SMALL_STATE(6791)] = 233579, - [SMALL_STATE(6792)] = 233598, - [SMALL_STATE(6793)] = 233611, - [SMALL_STATE(6794)] = 233628, - [SMALL_STATE(6795)] = 233647, - [SMALL_STATE(6796)] = 233666, - [SMALL_STATE(6797)] = 233679, - [SMALL_STATE(6798)] = 233698, - [SMALL_STATE(6799)] = 233711, - [SMALL_STATE(6800)] = 233730, - [SMALL_STATE(6801)] = 233743, - [SMALL_STATE(6802)] = 233762, - [SMALL_STATE(6803)] = 233781, - [SMALL_STATE(6804)] = 233794, - [SMALL_STATE(6805)] = 233813, - [SMALL_STATE(6806)] = 233832, - [SMALL_STATE(6807)] = 233851, - [SMALL_STATE(6808)] = 233870, - [SMALL_STATE(6809)] = 233889, - [SMALL_STATE(6810)] = 233908, - [SMALL_STATE(6811)] = 233927, - [SMALL_STATE(6812)] = 233946, - [SMALL_STATE(6813)] = 233961, - [SMALL_STATE(6814)] = 233980, - [SMALL_STATE(6815)] = 233993, - [SMALL_STATE(6816)] = 234006, - [SMALL_STATE(6817)] = 234019, - [SMALL_STATE(6818)] = 234032, - [SMALL_STATE(6819)] = 234049, - [SMALL_STATE(6820)] = 234068, - [SMALL_STATE(6821)] = 234087, - [SMALL_STATE(6822)] = 234100, - [SMALL_STATE(6823)] = 234117, - [SMALL_STATE(6824)] = 234136, - [SMALL_STATE(6825)] = 234155, - [SMALL_STATE(6826)] = 234168, - [SMALL_STATE(6827)] = 234183, - [SMALL_STATE(6828)] = 234196, - [SMALL_STATE(6829)] = 234215, - [SMALL_STATE(6830)] = 234234, - [SMALL_STATE(6831)] = 234253, - [SMALL_STATE(6832)] = 234272, - [SMALL_STATE(6833)] = 234291, - [SMALL_STATE(6834)] = 234310, - [SMALL_STATE(6835)] = 234329, - [SMALL_STATE(6836)] = 234348, - [SMALL_STATE(6837)] = 234367, - [SMALL_STATE(6838)] = 234386, - [SMALL_STATE(6839)] = 234405, - [SMALL_STATE(6840)] = 234424, - [SMALL_STATE(6841)] = 234437, - [SMALL_STATE(6842)] = 234450, - [SMALL_STATE(6843)] = 234469, - [SMALL_STATE(6844)] = 234486, - [SMALL_STATE(6845)] = 234505, - [SMALL_STATE(6846)] = 234524, - [SMALL_STATE(6847)] = 234541, - [SMALL_STATE(6848)] = 234558, - [SMALL_STATE(6849)] = 234573, - [SMALL_STATE(6850)] = 234592, - [SMALL_STATE(6851)] = 234611, - [SMALL_STATE(6852)] = 234624, - [SMALL_STATE(6853)] = 234637, - [SMALL_STATE(6854)] = 234656, - [SMALL_STATE(6855)] = 234675, - [SMALL_STATE(6856)] = 234694, - [SMALL_STATE(6857)] = 234713, - [SMALL_STATE(6858)] = 234732, - [SMALL_STATE(6859)] = 234751, - [SMALL_STATE(6860)] = 234770, - [SMALL_STATE(6861)] = 234789, - [SMALL_STATE(6862)] = 234802, - [SMALL_STATE(6863)] = 234815, - [SMALL_STATE(6864)] = 234828, - [SMALL_STATE(6865)] = 234845, - [SMALL_STATE(6866)] = 234858, - [SMALL_STATE(6867)] = 234871, - [SMALL_STATE(6868)] = 234884, - [SMALL_STATE(6869)] = 234901, - [SMALL_STATE(6870)] = 234914, - [SMALL_STATE(6871)] = 234933, - [SMALL_STATE(6872)] = 234952, - [SMALL_STATE(6873)] = 234965, - [SMALL_STATE(6874)] = 234978, - [SMALL_STATE(6875)] = 234997, - [SMALL_STATE(6876)] = 235016, - [SMALL_STATE(6877)] = 235035, - [SMALL_STATE(6878)] = 235054, - [SMALL_STATE(6879)] = 235073, - [SMALL_STATE(6880)] = 235092, - [SMALL_STATE(6881)] = 235111, - [SMALL_STATE(6882)] = 235130, - [SMALL_STATE(6883)] = 235149, - [SMALL_STATE(6884)] = 235168, - [SMALL_STATE(6885)] = 235181, - [SMALL_STATE(6886)] = 235198, - [SMALL_STATE(6887)] = 235211, - [SMALL_STATE(6888)] = 235228, - [SMALL_STATE(6889)] = 235245, - [SMALL_STATE(6890)] = 235258, - [SMALL_STATE(6891)] = 235273, - [SMALL_STATE(6892)] = 235292, - [SMALL_STATE(6893)] = 235311, - [SMALL_STATE(6894)] = 235330, - [SMALL_STATE(6895)] = 235349, - [SMALL_STATE(6896)] = 235368, - [SMALL_STATE(6897)] = 235387, - [SMALL_STATE(6898)] = 235406, - [SMALL_STATE(6899)] = 235425, - [SMALL_STATE(6900)] = 235442, - [SMALL_STATE(6901)] = 235461, - [SMALL_STATE(6902)] = 235474, - [SMALL_STATE(6903)] = 235491, - [SMALL_STATE(6904)] = 235506, - [SMALL_STATE(6905)] = 235523, - [SMALL_STATE(6906)] = 235542, - [SMALL_STATE(6907)] = 235561, - [SMALL_STATE(6908)] = 235578, - [SMALL_STATE(6909)] = 235597, - [SMALL_STATE(6910)] = 235616, - [SMALL_STATE(6911)] = 235635, - [SMALL_STATE(6912)] = 235654, - [SMALL_STATE(6913)] = 235673, - [SMALL_STATE(6914)] = 235692, - [SMALL_STATE(6915)] = 235711, - [SMALL_STATE(6916)] = 235730, - [SMALL_STATE(6917)] = 235745, - [SMALL_STATE(6918)] = 235758, - [SMALL_STATE(6919)] = 235775, - [SMALL_STATE(6920)] = 235790, - [SMALL_STATE(6921)] = 235807, - [SMALL_STATE(6922)] = 235820, - [SMALL_STATE(6923)] = 235833, - [SMALL_STATE(6924)] = 235852, - [SMALL_STATE(6925)] = 235871, - [SMALL_STATE(6926)] = 235890, - [SMALL_STATE(6927)] = 235909, - [SMALL_STATE(6928)] = 235928, - [SMALL_STATE(6929)] = 235947, - [SMALL_STATE(6930)] = 235966, - [SMALL_STATE(6931)] = 235985, - [SMALL_STATE(6932)] = 236004, - [SMALL_STATE(6933)] = 236019, - [SMALL_STATE(6934)] = 236032, - [SMALL_STATE(6935)] = 236049, - [SMALL_STATE(6936)] = 236064, - [SMALL_STATE(6937)] = 236081, - [SMALL_STATE(6938)] = 236100, - [SMALL_STATE(6939)] = 236113, - [SMALL_STATE(6940)] = 236130, - [SMALL_STATE(6941)] = 236145, - [SMALL_STATE(6942)] = 236162, - [SMALL_STATE(6943)] = 236175, - [SMALL_STATE(6944)] = 236188, - [SMALL_STATE(6945)] = 236205, - [SMALL_STATE(6946)] = 236220, - [SMALL_STATE(6947)] = 236237, - [SMALL_STATE(6948)] = 236252, - [SMALL_STATE(6949)] = 236265, - [SMALL_STATE(6950)] = 236282, - [SMALL_STATE(6951)] = 236299, - [SMALL_STATE(6952)] = 236318, - [SMALL_STATE(6953)] = 236331, - [SMALL_STATE(6954)] = 236348, - [SMALL_STATE(6955)] = 236365, - [SMALL_STATE(6956)] = 236384, - [SMALL_STATE(6957)] = 236397, - [SMALL_STATE(6958)] = 236414, - [SMALL_STATE(6959)] = 236431, - [SMALL_STATE(6960)] = 236444, - [SMALL_STATE(6961)] = 236457, - [SMALL_STATE(6962)] = 236474, - [SMALL_STATE(6963)] = 236491, - [SMALL_STATE(6964)] = 236504, - [SMALL_STATE(6965)] = 236517, - [SMALL_STATE(6966)] = 236534, - [SMALL_STATE(6967)] = 236551, - [SMALL_STATE(6968)] = 236564, - [SMALL_STATE(6969)] = 236577, - [SMALL_STATE(6970)] = 236594, - [SMALL_STATE(6971)] = 236611, - [SMALL_STATE(6972)] = 236624, - [SMALL_STATE(6973)] = 236637, - [SMALL_STATE(6974)] = 236654, - [SMALL_STATE(6975)] = 236671, - [SMALL_STATE(6976)] = 236688, - [SMALL_STATE(6977)] = 236701, - [SMALL_STATE(6978)] = 236718, - [SMALL_STATE(6979)] = 236735, - [SMALL_STATE(6980)] = 236754, - [SMALL_STATE(6981)] = 236767, - [SMALL_STATE(6982)] = 236784, - [SMALL_STATE(6983)] = 236801, - [SMALL_STATE(6984)] = 236814, - [SMALL_STATE(6985)] = 236827, - [SMALL_STATE(6986)] = 236844, - [SMALL_STATE(6987)] = 236861, - [SMALL_STATE(6988)] = 236880, - [SMALL_STATE(6989)] = 236893, - [SMALL_STATE(6990)] = 236910, - [SMALL_STATE(6991)] = 236927, - [SMALL_STATE(6992)] = 236940, - [SMALL_STATE(6993)] = 236953, - [SMALL_STATE(6994)] = 236970, - [SMALL_STATE(6995)] = 236987, - [SMALL_STATE(6996)] = 237006, - [SMALL_STATE(6997)] = 237019, - [SMALL_STATE(6998)] = 237036, - [SMALL_STATE(6999)] = 237053, - [SMALL_STATE(7000)] = 237066, - [SMALL_STATE(7001)] = 237079, - [SMALL_STATE(7002)] = 237096, - [SMALL_STATE(7003)] = 237113, - [SMALL_STATE(7004)] = 237126, - [SMALL_STATE(7005)] = 237139, - [SMALL_STATE(7006)] = 237156, - [SMALL_STATE(7007)] = 237173, - [SMALL_STATE(7008)] = 237186, - [SMALL_STATE(7009)] = 237199, - [SMALL_STATE(7010)] = 237216, - [SMALL_STATE(7011)] = 237233, - [SMALL_STATE(7012)] = 237252, - [SMALL_STATE(7013)] = 237265, - [SMALL_STATE(7014)] = 237282, - [SMALL_STATE(7015)] = 237299, - [SMALL_STATE(7016)] = 237318, - [SMALL_STATE(7017)] = 237331, - [SMALL_STATE(7018)] = 237348, - [SMALL_STATE(7019)] = 237365, - [SMALL_STATE(7020)] = 237382, - [SMALL_STATE(7021)] = 237395, - [SMALL_STATE(7022)] = 237412, - [SMALL_STATE(7023)] = 237429, - [SMALL_STATE(7024)] = 237448, - [SMALL_STATE(7025)] = 237461, - [SMALL_STATE(7026)] = 237478, - [SMALL_STATE(7027)] = 237497, - [SMALL_STATE(7028)] = 237510, - [SMALL_STATE(7029)] = 237527, - [SMALL_STATE(7030)] = 237544, - [SMALL_STATE(7031)] = 237557, - [SMALL_STATE(7032)] = 237574, - [SMALL_STATE(7033)] = 237591, - [SMALL_STATE(7034)] = 237604, - [SMALL_STATE(7035)] = 237621, - [SMALL_STATE(7036)] = 237638, - [SMALL_STATE(7037)] = 237651, - [SMALL_STATE(7038)] = 237668, - [SMALL_STATE(7039)] = 237685, - [SMALL_STATE(7040)] = 237702, - [SMALL_STATE(7041)] = 237719, - [SMALL_STATE(7042)] = 237736, - [SMALL_STATE(7043)] = 237753, - [SMALL_STATE(7044)] = 237770, - [SMALL_STATE(7045)] = 237787, - [SMALL_STATE(7046)] = 237804, - [SMALL_STATE(7047)] = 237817, - [SMALL_STATE(7048)] = 237832, - [SMALL_STATE(7049)] = 237845, - [SMALL_STATE(7050)] = 237864, - [SMALL_STATE(7051)] = 237883, - [SMALL_STATE(7052)] = 237902, - [SMALL_STATE(7053)] = 237921, - [SMALL_STATE(7054)] = 237938, - [SMALL_STATE(7055)] = 237957, - [SMALL_STATE(7056)] = 237976, - [SMALL_STATE(7057)] = 237989, - [SMALL_STATE(7058)] = 238006, - [SMALL_STATE(7059)] = 238025, - [SMALL_STATE(7060)] = 238038, - [SMALL_STATE(7061)] = 238057, - [SMALL_STATE(7062)] = 238076, - [SMALL_STATE(7063)] = 238089, - [SMALL_STATE(7064)] = 238108, - [SMALL_STATE(7065)] = 238121, - [SMALL_STATE(7066)] = 238136, - [SMALL_STATE(7067)] = 238149, - [SMALL_STATE(7068)] = 238164, - [SMALL_STATE(7069)] = 238177, - [SMALL_STATE(7070)] = 238194, - [SMALL_STATE(7071)] = 238207, - [SMALL_STATE(7072)] = 238220, - [SMALL_STATE(7073)] = 238233, - [SMALL_STATE(7074)] = 238246, - [SMALL_STATE(7075)] = 238259, - [SMALL_STATE(7076)] = 238278, - [SMALL_STATE(7077)] = 238297, - [SMALL_STATE(7078)] = 238316, - [SMALL_STATE(7079)] = 238329, - [SMALL_STATE(7080)] = 238344, - [SMALL_STATE(7081)] = 238359, - [SMALL_STATE(7082)] = 238372, - [SMALL_STATE(7083)] = 238385, - [SMALL_STATE(7084)] = 238398, - [SMALL_STATE(7085)] = 238411, - [SMALL_STATE(7086)] = 238428, - [SMALL_STATE(7087)] = 238447, - [SMALL_STATE(7088)] = 238462, - [SMALL_STATE(7089)] = 238475, - [SMALL_STATE(7090)] = 238488, - [SMALL_STATE(7091)] = 238507, - [SMALL_STATE(7092)] = 238520, - [SMALL_STATE(7093)] = 238533, - [SMALL_STATE(7094)] = 238546, - [SMALL_STATE(7095)] = 238559, - [SMALL_STATE(7096)] = 238572, - [SMALL_STATE(7097)] = 238585, - [SMALL_STATE(7098)] = 238598, - [SMALL_STATE(7099)] = 238611, - [SMALL_STATE(7100)] = 238624, - [SMALL_STATE(7101)] = 238637, - [SMALL_STATE(7102)] = 238656, - [SMALL_STATE(7103)] = 238675, - [SMALL_STATE(7104)] = 238694, - [SMALL_STATE(7105)] = 238709, - [SMALL_STATE(7106)] = 238724, - [SMALL_STATE(7107)] = 238739, - [SMALL_STATE(7108)] = 238754, - [SMALL_STATE(7109)] = 238769, - [SMALL_STATE(7110)] = 238784, - [SMALL_STATE(7111)] = 238799, - [SMALL_STATE(7112)] = 238814, - [SMALL_STATE(7113)] = 238833, - [SMALL_STATE(7114)] = 238852, - [SMALL_STATE(7115)] = 238871, - [SMALL_STATE(7116)] = 238890, - [SMALL_STATE(7117)] = 238909, - [SMALL_STATE(7118)] = 238928, - [SMALL_STATE(7119)] = 238947, - [SMALL_STATE(7120)] = 238966, - [SMALL_STATE(7121)] = 238985, - [SMALL_STATE(7122)] = 239000, - [SMALL_STATE(7123)] = 239019, - [SMALL_STATE(7124)] = 239032, - [SMALL_STATE(7125)] = 239045, - [SMALL_STATE(7126)] = 239058, - [SMALL_STATE(7127)] = 239071, - [SMALL_STATE(7128)] = 239086, - [SMALL_STATE(7129)] = 239099, - [SMALL_STATE(7130)] = 239116, - [SMALL_STATE(7131)] = 239133, - [SMALL_STATE(7132)] = 239146, - [SMALL_STATE(7133)] = 239165, - [SMALL_STATE(7134)] = 239180, - [SMALL_STATE(7135)] = 239199, - [SMALL_STATE(7136)] = 239214, - [SMALL_STATE(7137)] = 239231, - [SMALL_STATE(7138)] = 239250, - [SMALL_STATE(7139)] = 239263, - [SMALL_STATE(7140)] = 239278, - [SMALL_STATE(7141)] = 239291, - [SMALL_STATE(7142)] = 239306, - [SMALL_STATE(7143)] = 239321, - [SMALL_STATE(7144)] = 239336, - [SMALL_STATE(7145)] = 239355, - [SMALL_STATE(7146)] = 239368, - [SMALL_STATE(7147)] = 239381, - [SMALL_STATE(7148)] = 239398, - [SMALL_STATE(7149)] = 239411, - [SMALL_STATE(7150)] = 239424, - [SMALL_STATE(7151)] = 239439, - [SMALL_STATE(7152)] = 239452, - [SMALL_STATE(7153)] = 239465, - [SMALL_STATE(7154)] = 239478, - [SMALL_STATE(7155)] = 239491, - [SMALL_STATE(7156)] = 239504, - [SMALL_STATE(7157)] = 239517, - [SMALL_STATE(7158)] = 239530, - [SMALL_STATE(7159)] = 239543, - [SMALL_STATE(7160)] = 239562, - [SMALL_STATE(7161)] = 239575, - [SMALL_STATE(7162)] = 239590, - [SMALL_STATE(7163)] = 239603, - [SMALL_STATE(7164)] = 239622, - [SMALL_STATE(7165)] = 239635, - [SMALL_STATE(7166)] = 239654, - [SMALL_STATE(7167)] = 239667, - [SMALL_STATE(7168)] = 239682, - [SMALL_STATE(7169)] = 239701, - [SMALL_STATE(7170)] = 239720, - [SMALL_STATE(7171)] = 239737, - [SMALL_STATE(7172)] = 239756, - [SMALL_STATE(7173)] = 239775, - [SMALL_STATE(7174)] = 239794, - [SMALL_STATE(7175)] = 239811, - [SMALL_STATE(7176)] = 239826, - [SMALL_STATE(7177)] = 239841, - [SMALL_STATE(7178)] = 239860, - [SMALL_STATE(7179)] = 239875, - [SMALL_STATE(7180)] = 239894, - [SMALL_STATE(7181)] = 239913, - [SMALL_STATE(7182)] = 239932, - [SMALL_STATE(7183)] = 239951, - [SMALL_STATE(7184)] = 239970, - [SMALL_STATE(7185)] = 239989, - [SMALL_STATE(7186)] = 240008, - [SMALL_STATE(7187)] = 240027, - [SMALL_STATE(7188)] = 240040, - [SMALL_STATE(7189)] = 240059, - [SMALL_STATE(7190)] = 240078, - [SMALL_STATE(7191)] = 240093, - [SMALL_STATE(7192)] = 240112, - [SMALL_STATE(7193)] = 240127, - [SMALL_STATE(7194)] = 240146, - [SMALL_STATE(7195)] = 240161, - [SMALL_STATE(7196)] = 240176, - [SMALL_STATE(7197)] = 240193, - [SMALL_STATE(7198)] = 240208, - [SMALL_STATE(7199)] = 240223, - [SMALL_STATE(7200)] = 240236, - [SMALL_STATE(7201)] = 240249, - [SMALL_STATE(7202)] = 240266, - [SMALL_STATE(7203)] = 240285, - [SMALL_STATE(7204)] = 240300, - [SMALL_STATE(7205)] = 240315, - [SMALL_STATE(7206)] = 240330, - [SMALL_STATE(7207)] = 240347, - [SMALL_STATE(7208)] = 240360, - [SMALL_STATE(7209)] = 240375, - [SMALL_STATE(7210)] = 240390, - [SMALL_STATE(7211)] = 240405, - [SMALL_STATE(7212)] = 240418, - [SMALL_STATE(7213)] = 240437, - [SMALL_STATE(7214)] = 240452, - [SMALL_STATE(7215)] = 240467, - [SMALL_STATE(7216)] = 240482, - [SMALL_STATE(7217)] = 240501, - [SMALL_STATE(7218)] = 240514, - [SMALL_STATE(7219)] = 240529, - [SMALL_STATE(7220)] = 240544, - [SMALL_STATE(7221)] = 240559, - [SMALL_STATE(7222)] = 240572, - [SMALL_STATE(7223)] = 240589, - [SMALL_STATE(7224)] = 240604, - [SMALL_STATE(7225)] = 240619, - [SMALL_STATE(7226)] = 240634, - [SMALL_STATE(7227)] = 240653, - [SMALL_STATE(7228)] = 240672, - [SMALL_STATE(7229)] = 240687, - [SMALL_STATE(7230)] = 240702, - [SMALL_STATE(7231)] = 240717, - [SMALL_STATE(7232)] = 240730, - [SMALL_STATE(7233)] = 240743, - [SMALL_STATE(7234)] = 240758, - [SMALL_STATE(7235)] = 240773, - [SMALL_STATE(7236)] = 240788, - [SMALL_STATE(7237)] = 240807, - [SMALL_STATE(7238)] = 240820, - [SMALL_STATE(7239)] = 240835, - [SMALL_STATE(7240)] = 240850, - [SMALL_STATE(7241)] = 240865, - [SMALL_STATE(7242)] = 240884, - [SMALL_STATE(7243)] = 240897, - [SMALL_STATE(7244)] = 240910, - [SMALL_STATE(7245)] = 240923, - [SMALL_STATE(7246)] = 240938, - [SMALL_STATE(7247)] = 240953, - [SMALL_STATE(7248)] = 240966, - [SMALL_STATE(7249)] = 240985, - [SMALL_STATE(7250)] = 241004, - [SMALL_STATE(7251)] = 241023, - [SMALL_STATE(7252)] = 241042, - [SMALL_STATE(7253)] = 241061, - [SMALL_STATE(7254)] = 241080, - [SMALL_STATE(7255)] = 241099, - [SMALL_STATE(7256)] = 241118, - [SMALL_STATE(7257)] = 241137, - [SMALL_STATE(7258)] = 241150, - [SMALL_STATE(7259)] = 241163, - [SMALL_STATE(7260)] = 241176, - [SMALL_STATE(7261)] = 241195, - [SMALL_STATE(7262)] = 241214, - [SMALL_STATE(7263)] = 241227, - [SMALL_STATE(7264)] = 241246, - [SMALL_STATE(7265)] = 241259, - [SMALL_STATE(7266)] = 241276, - [SMALL_STATE(7267)] = 241295, - [SMALL_STATE(7268)] = 241312, - [SMALL_STATE(7269)] = 241331, - [SMALL_STATE(7270)] = 241350, - [SMALL_STATE(7271)] = 241367, - [SMALL_STATE(7272)] = 241380, - [SMALL_STATE(7273)] = 241399, - [SMALL_STATE(7274)] = 241416, - [SMALL_STATE(7275)] = 241435, - [SMALL_STATE(7276)] = 241454, - [SMALL_STATE(7277)] = 241473, - [SMALL_STATE(7278)] = 241492, - [SMALL_STATE(7279)] = 241511, - [SMALL_STATE(7280)] = 241530, - [SMALL_STATE(7281)] = 241543, - [SMALL_STATE(7282)] = 241562, - [SMALL_STATE(7283)] = 241579, - [SMALL_STATE(7284)] = 241596, - [SMALL_STATE(7285)] = 241611, - [SMALL_STATE(7286)] = 241628, - [SMALL_STATE(7287)] = 241647, - [SMALL_STATE(7288)] = 241666, - [SMALL_STATE(7289)] = 241685, - [SMALL_STATE(7290)] = 241704, - [SMALL_STATE(7291)] = 241723, - [SMALL_STATE(7292)] = 241736, - [SMALL_STATE(7293)] = 241753, - [SMALL_STATE(7294)] = 241772, - [SMALL_STATE(7295)] = 241791, - [SMALL_STATE(7296)] = 241810, - [SMALL_STATE(7297)] = 241829, - [SMALL_STATE(7298)] = 241846, - [SMALL_STATE(7299)] = 241865, - [SMALL_STATE(7300)] = 241884, - [SMALL_STATE(7301)] = 241903, - [SMALL_STATE(7302)] = 241922, - [SMALL_STATE(7303)] = 241935, - [SMALL_STATE(7304)] = 241954, - [SMALL_STATE(7305)] = 241973, - [SMALL_STATE(7306)] = 241986, - [SMALL_STATE(7307)] = 242005, - [SMALL_STATE(7308)] = 242024, - [SMALL_STATE(7309)] = 242041, - [SMALL_STATE(7310)] = 242060, - [SMALL_STATE(7311)] = 242077, - [SMALL_STATE(7312)] = 242091, - [SMALL_STATE(7313)] = 242107, - [SMALL_STATE(7314)] = 242119, - [SMALL_STATE(7315)] = 242135, - [SMALL_STATE(7316)] = 242151, - [SMALL_STATE(7317)] = 242163, - [SMALL_STATE(7318)] = 242179, - [SMALL_STATE(7319)] = 242193, - [SMALL_STATE(7320)] = 242209, - [SMALL_STATE(7321)] = 242225, - [SMALL_STATE(7322)] = 242241, - [SMALL_STATE(7323)] = 242257, - [SMALL_STATE(7324)] = 242269, - [SMALL_STATE(7325)] = 242283, - [SMALL_STATE(7326)] = 242299, - [SMALL_STATE(7327)] = 242315, - [SMALL_STATE(7328)] = 242327, - [SMALL_STATE(7329)] = 242343, - [SMALL_STATE(7330)] = 242359, - [SMALL_STATE(7331)] = 242375, - [SMALL_STATE(7332)] = 242387, - [SMALL_STATE(7333)] = 242403, - [SMALL_STATE(7334)] = 242417, - [SMALL_STATE(7335)] = 242433, - [SMALL_STATE(7336)] = 242449, - [SMALL_STATE(7337)] = 242463, - [SMALL_STATE(7338)] = 242477, - [SMALL_STATE(7339)] = 242493, - [SMALL_STATE(7340)] = 242507, - [SMALL_STATE(7341)] = 242521, - [SMALL_STATE(7342)] = 242537, - [SMALL_STATE(7343)] = 242549, - [SMALL_STATE(7344)] = 242565, - [SMALL_STATE(7345)] = 242577, - [SMALL_STATE(7346)] = 242593, - [SMALL_STATE(7347)] = 242605, - [SMALL_STATE(7348)] = 242621, - [SMALL_STATE(7349)] = 242637, - [SMALL_STATE(7350)] = 242653, - [SMALL_STATE(7351)] = 242669, - [SMALL_STATE(7352)] = 242681, - [SMALL_STATE(7353)] = 242697, - [SMALL_STATE(7354)] = 242713, - [SMALL_STATE(7355)] = 242729, - [SMALL_STATE(7356)] = 242745, - [SMALL_STATE(7357)] = 242761, - [SMALL_STATE(7358)] = 242777, - [SMALL_STATE(7359)] = 242793, - [SMALL_STATE(7360)] = 242809, - [SMALL_STATE(7361)] = 242825, - [SMALL_STATE(7362)] = 242841, - [SMALL_STATE(7363)] = 242857, - [SMALL_STATE(7364)] = 242873, - [SMALL_STATE(7365)] = 242885, - [SMALL_STATE(7366)] = 242901, - [SMALL_STATE(7367)] = 242913, - [SMALL_STATE(7368)] = 242929, - [SMALL_STATE(7369)] = 242941, - [SMALL_STATE(7370)] = 242953, - [SMALL_STATE(7371)] = 242965, - [SMALL_STATE(7372)] = 242981, - [SMALL_STATE(7373)] = 242995, - [SMALL_STATE(7374)] = 243007, - [SMALL_STATE(7375)] = 243019, - [SMALL_STATE(7376)] = 243031, - [SMALL_STATE(7377)] = 243043, - [SMALL_STATE(7378)] = 243055, - [SMALL_STATE(7379)] = 243071, - [SMALL_STATE(7380)] = 243087, - [SMALL_STATE(7381)] = 243103, - [SMALL_STATE(7382)] = 243115, - [SMALL_STATE(7383)] = 243131, - [SMALL_STATE(7384)] = 243147, - [SMALL_STATE(7385)] = 243163, - [SMALL_STATE(7386)] = 243179, - [SMALL_STATE(7387)] = 243193, - [SMALL_STATE(7388)] = 243209, - [SMALL_STATE(7389)] = 243225, - [SMALL_STATE(7390)] = 243241, - [SMALL_STATE(7391)] = 243257, - [SMALL_STATE(7392)] = 243269, - [SMALL_STATE(7393)] = 243281, - [SMALL_STATE(7394)] = 243293, - [SMALL_STATE(7395)] = 243307, - [SMALL_STATE(7396)] = 243319, - [SMALL_STATE(7397)] = 243335, - [SMALL_STATE(7398)] = 243349, - [SMALL_STATE(7399)] = 243361, - [SMALL_STATE(7400)] = 243377, - [SMALL_STATE(7401)] = 243391, - [SMALL_STATE(7402)] = 243407, - [SMALL_STATE(7403)] = 243419, - [SMALL_STATE(7404)] = 243435, - [SMALL_STATE(7405)] = 243451, - [SMALL_STATE(7406)] = 243467, - [SMALL_STATE(7407)] = 243483, - [SMALL_STATE(7408)] = 243499, - [SMALL_STATE(7409)] = 243515, - [SMALL_STATE(7410)] = 243531, - [SMALL_STATE(7411)] = 243547, - [SMALL_STATE(7412)] = 243563, - [SMALL_STATE(7413)] = 243577, - [SMALL_STATE(7414)] = 243589, - [SMALL_STATE(7415)] = 243605, - [SMALL_STATE(7416)] = 243619, - [SMALL_STATE(7417)] = 243631, - [SMALL_STATE(7418)] = 243645, - [SMALL_STATE(7419)] = 243657, - [SMALL_STATE(7420)] = 243673, - [SMALL_STATE(7421)] = 243687, - [SMALL_STATE(7422)] = 243701, - [SMALL_STATE(7423)] = 243715, - [SMALL_STATE(7424)] = 243731, - [SMALL_STATE(7425)] = 243745, - [SMALL_STATE(7426)] = 243759, - [SMALL_STATE(7427)] = 243773, - [SMALL_STATE(7428)] = 243789, - [SMALL_STATE(7429)] = 243803, - [SMALL_STATE(7430)] = 243817, - [SMALL_STATE(7431)] = 243833, - [SMALL_STATE(7432)] = 243845, - [SMALL_STATE(7433)] = 243857, - [SMALL_STATE(7434)] = 243869, - [SMALL_STATE(7435)] = 243885, - [SMALL_STATE(7436)] = 243901, - [SMALL_STATE(7437)] = 243917, - [SMALL_STATE(7438)] = 243929, - [SMALL_STATE(7439)] = 243945, - [SMALL_STATE(7440)] = 243961, - [SMALL_STATE(7441)] = 243977, - [SMALL_STATE(7442)] = 243993, - [SMALL_STATE(7443)] = 244007, - [SMALL_STATE(7444)] = 244023, - [SMALL_STATE(7445)] = 244039, - [SMALL_STATE(7446)] = 244051, - [SMALL_STATE(7447)] = 244063, - [SMALL_STATE(7448)] = 244077, - [SMALL_STATE(7449)] = 244093, - [SMALL_STATE(7450)] = 244105, - [SMALL_STATE(7451)] = 244119, - [SMALL_STATE(7452)] = 244131, - [SMALL_STATE(7453)] = 244147, - [SMALL_STATE(7454)] = 244163, - [SMALL_STATE(7455)] = 244179, - [SMALL_STATE(7456)] = 244191, - [SMALL_STATE(7457)] = 244203, - [SMALL_STATE(7458)] = 244219, - [SMALL_STATE(7459)] = 244231, - [SMALL_STATE(7460)] = 244245, - [SMALL_STATE(7461)] = 244261, - [SMALL_STATE(7462)] = 244277, - [SMALL_STATE(7463)] = 244293, - [SMALL_STATE(7464)] = 244305, - [SMALL_STATE(7465)] = 244321, - [SMALL_STATE(7466)] = 244337, - [SMALL_STATE(7467)] = 244353, - [SMALL_STATE(7468)] = 244369, - [SMALL_STATE(7469)] = 244381, - [SMALL_STATE(7470)] = 244395, - [SMALL_STATE(7471)] = 244409, - [SMALL_STATE(7472)] = 244421, - [SMALL_STATE(7473)] = 244437, - [SMALL_STATE(7474)] = 244449, - [SMALL_STATE(7475)] = 244465, - [SMALL_STATE(7476)] = 244481, - [SMALL_STATE(7477)] = 244497, - [SMALL_STATE(7478)] = 244513, - [SMALL_STATE(7479)] = 244529, - [SMALL_STATE(7480)] = 244541, - [SMALL_STATE(7481)] = 244553, - [SMALL_STATE(7482)] = 244569, - [SMALL_STATE(7483)] = 244585, - [SMALL_STATE(7484)] = 244601, - [SMALL_STATE(7485)] = 244617, - [SMALL_STATE(7486)] = 244633, - [SMALL_STATE(7487)] = 244649, - [SMALL_STATE(7488)] = 244665, - [SMALL_STATE(7489)] = 244681, - [SMALL_STATE(7490)] = 244693, - [SMALL_STATE(7491)] = 244705, - [SMALL_STATE(7492)] = 244721, - [SMALL_STATE(7493)] = 244733, - [SMALL_STATE(7494)] = 244749, - [SMALL_STATE(7495)] = 244765, - [SMALL_STATE(7496)] = 244781, - [SMALL_STATE(7497)] = 244797, - [SMALL_STATE(7498)] = 244813, - [SMALL_STATE(7499)] = 244829, - [SMALL_STATE(7500)] = 244841, - [SMALL_STATE(7501)] = 244857, - [SMALL_STATE(7502)] = 244869, - [SMALL_STATE(7503)] = 244885, - [SMALL_STATE(7504)] = 244901, - [SMALL_STATE(7505)] = 244917, - [SMALL_STATE(7506)] = 244933, - [SMALL_STATE(7507)] = 244949, - [SMALL_STATE(7508)] = 244961, - [SMALL_STATE(7509)] = 244977, - [SMALL_STATE(7510)] = 244993, - [SMALL_STATE(7511)] = 245005, - [SMALL_STATE(7512)] = 245021, - [SMALL_STATE(7513)] = 245033, - [SMALL_STATE(7514)] = 245045, - [SMALL_STATE(7515)] = 245057, - [SMALL_STATE(7516)] = 245069, - [SMALL_STATE(7517)] = 245081, - [SMALL_STATE(7518)] = 245093, - [SMALL_STATE(7519)] = 245105, - [SMALL_STATE(7520)] = 245117, - [SMALL_STATE(7521)] = 245133, - [SMALL_STATE(7522)] = 245149, - [SMALL_STATE(7523)] = 245165, - [SMALL_STATE(7524)] = 245181, - [SMALL_STATE(7525)] = 245197, - [SMALL_STATE(7526)] = 245213, - [SMALL_STATE(7527)] = 245229, - [SMALL_STATE(7528)] = 245245, - [SMALL_STATE(7529)] = 245257, - [SMALL_STATE(7530)] = 245273, - [SMALL_STATE(7531)] = 245287, - [SMALL_STATE(7532)] = 245303, - [SMALL_STATE(7533)] = 245319, - [SMALL_STATE(7534)] = 245335, - [SMALL_STATE(7535)] = 245351, - [SMALL_STATE(7536)] = 245367, - [SMALL_STATE(7537)] = 245379, - [SMALL_STATE(7538)] = 245393, - [SMALL_STATE(7539)] = 245405, - [SMALL_STATE(7540)] = 245417, - [SMALL_STATE(7541)] = 245429, - [SMALL_STATE(7542)] = 245441, - [SMALL_STATE(7543)] = 245457, - [SMALL_STATE(7544)] = 245469, - [SMALL_STATE(7545)] = 245481, - [SMALL_STATE(7546)] = 245493, - [SMALL_STATE(7547)] = 245509, - [SMALL_STATE(7548)] = 245521, - [SMALL_STATE(7549)] = 245537, - [SMALL_STATE(7550)] = 245551, - [SMALL_STATE(7551)] = 245567, - [SMALL_STATE(7552)] = 245583, - [SMALL_STATE(7553)] = 245599, - [SMALL_STATE(7554)] = 245613, - [SMALL_STATE(7555)] = 245629, - [SMALL_STATE(7556)] = 245641, - [SMALL_STATE(7557)] = 245657, - [SMALL_STATE(7558)] = 245673, - [SMALL_STATE(7559)] = 245685, - [SMALL_STATE(7560)] = 245701, - [SMALL_STATE(7561)] = 245715, - [SMALL_STATE(7562)] = 245729, - [SMALL_STATE(7563)] = 245745, - [SMALL_STATE(7564)] = 245761, - [SMALL_STATE(7565)] = 245775, - [SMALL_STATE(7566)] = 245789, - [SMALL_STATE(7567)] = 245803, - [SMALL_STATE(7568)] = 245817, - [SMALL_STATE(7569)] = 245833, - [SMALL_STATE(7570)] = 245845, - [SMALL_STATE(7571)] = 245857, - [SMALL_STATE(7572)] = 245869, - [SMALL_STATE(7573)] = 245885, - [SMALL_STATE(7574)] = 245897, - [SMALL_STATE(7575)] = 245913, - [SMALL_STATE(7576)] = 245925, - [SMALL_STATE(7577)] = 245941, - [SMALL_STATE(7578)] = 245957, - [SMALL_STATE(7579)] = 245973, - [SMALL_STATE(7580)] = 245989, - [SMALL_STATE(7581)] = 246001, - [SMALL_STATE(7582)] = 246017, - [SMALL_STATE(7583)] = 246033, - [SMALL_STATE(7584)] = 246049, - [SMALL_STATE(7585)] = 246065, - [SMALL_STATE(7586)] = 246079, - [SMALL_STATE(7587)] = 246091, - [SMALL_STATE(7588)] = 246107, - [SMALL_STATE(7589)] = 246119, - [SMALL_STATE(7590)] = 246135, - [SMALL_STATE(7591)] = 246151, - [SMALL_STATE(7592)] = 246167, - [SMALL_STATE(7593)] = 246183, - [SMALL_STATE(7594)] = 246199, - [SMALL_STATE(7595)] = 246211, - [SMALL_STATE(7596)] = 246227, - [SMALL_STATE(7597)] = 246243, - [SMALL_STATE(7598)] = 246259, - [SMALL_STATE(7599)] = 246275, - [SMALL_STATE(7600)] = 246287, - [SMALL_STATE(7601)] = 246303, - [SMALL_STATE(7602)] = 246319, - [SMALL_STATE(7603)] = 246331, - [SMALL_STATE(7604)] = 246347, - [SMALL_STATE(7605)] = 246359, - [SMALL_STATE(7606)] = 246375, - [SMALL_STATE(7607)] = 246391, - [SMALL_STATE(7608)] = 246407, - [SMALL_STATE(7609)] = 246423, - [SMALL_STATE(7610)] = 246439, - [SMALL_STATE(7611)] = 246451, - [SMALL_STATE(7612)] = 246467, - [SMALL_STATE(7613)] = 246483, - [SMALL_STATE(7614)] = 246495, - [SMALL_STATE(7615)] = 246507, - [SMALL_STATE(7616)] = 246523, - [SMALL_STATE(7617)] = 246535, - [SMALL_STATE(7618)] = 246551, - [SMALL_STATE(7619)] = 246565, - [SMALL_STATE(7620)] = 246577, - [SMALL_STATE(7621)] = 246593, - [SMALL_STATE(7622)] = 246605, - [SMALL_STATE(7623)] = 246621, - [SMALL_STATE(7624)] = 246637, - [SMALL_STATE(7625)] = 246653, - [SMALL_STATE(7626)] = 246669, - [SMALL_STATE(7627)] = 246681, - [SMALL_STATE(7628)] = 246697, - [SMALL_STATE(7629)] = 246713, - [SMALL_STATE(7630)] = 246725, - [SMALL_STATE(7631)] = 246741, - [SMALL_STATE(7632)] = 246757, - [SMALL_STATE(7633)] = 246773, - [SMALL_STATE(7634)] = 246789, - [SMALL_STATE(7635)] = 246805, - [SMALL_STATE(7636)] = 246817, - [SMALL_STATE(7637)] = 246831, - [SMALL_STATE(7638)] = 246847, - [SMALL_STATE(7639)] = 246863, - [SMALL_STATE(7640)] = 246879, - [SMALL_STATE(7641)] = 246895, - [SMALL_STATE(7642)] = 246911, - [SMALL_STATE(7643)] = 246927, - [SMALL_STATE(7644)] = 246943, - [SMALL_STATE(7645)] = 246959, - [SMALL_STATE(7646)] = 246971, - [SMALL_STATE(7647)] = 246987, - [SMALL_STATE(7648)] = 247001, - [SMALL_STATE(7649)] = 247017, - [SMALL_STATE(7650)] = 247033, - [SMALL_STATE(7651)] = 247045, - [SMALL_STATE(7652)] = 247061, - [SMALL_STATE(7653)] = 247077, - [SMALL_STATE(7654)] = 247089, - [SMALL_STATE(7655)] = 247101, - [SMALL_STATE(7656)] = 247117, - [SMALL_STATE(7657)] = 247133, - [SMALL_STATE(7658)] = 247145, - [SMALL_STATE(7659)] = 247161, - [SMALL_STATE(7660)] = 247175, - [SMALL_STATE(7661)] = 247187, - [SMALL_STATE(7662)] = 247201, - [SMALL_STATE(7663)] = 247215, - [SMALL_STATE(7664)] = 247229, - [SMALL_STATE(7665)] = 247245, - [SMALL_STATE(7666)] = 247257, - [SMALL_STATE(7667)] = 247273, - [SMALL_STATE(7668)] = 247287, - [SMALL_STATE(7669)] = 247301, - [SMALL_STATE(7670)] = 247313, - [SMALL_STATE(7671)] = 247329, - [SMALL_STATE(7672)] = 247341, - [SMALL_STATE(7673)] = 247357, - [SMALL_STATE(7674)] = 247369, - [SMALL_STATE(7675)] = 247385, - [SMALL_STATE(7676)] = 247401, - [SMALL_STATE(7677)] = 247415, - [SMALL_STATE(7678)] = 247429, - [SMALL_STATE(7679)] = 247441, - [SMALL_STATE(7680)] = 247453, - [SMALL_STATE(7681)] = 247465, - [SMALL_STATE(7682)] = 247477, - [SMALL_STATE(7683)] = 247489, - [SMALL_STATE(7684)] = 247501, - [SMALL_STATE(7685)] = 247515, - [SMALL_STATE(7686)] = 247527, - [SMALL_STATE(7687)] = 247539, - [SMALL_STATE(7688)] = 247551, - [SMALL_STATE(7689)] = 247565, - [SMALL_STATE(7690)] = 247577, - [SMALL_STATE(7691)] = 247593, - [SMALL_STATE(7692)] = 247609, - [SMALL_STATE(7693)] = 247621, - [SMALL_STATE(7694)] = 247637, - [SMALL_STATE(7695)] = 247649, - [SMALL_STATE(7696)] = 247665, - [SMALL_STATE(7697)] = 247679, - [SMALL_STATE(7698)] = 247691, - [SMALL_STATE(7699)] = 247705, - [SMALL_STATE(7700)] = 247719, - [SMALL_STATE(7701)] = 247731, - [SMALL_STATE(7702)] = 247745, - [SMALL_STATE(7703)] = 247759, - [SMALL_STATE(7704)] = 247773, - [SMALL_STATE(7705)] = 247789, - [SMALL_STATE(7706)] = 247801, - [SMALL_STATE(7707)] = 247815, - [SMALL_STATE(7708)] = 247827, - [SMALL_STATE(7709)] = 247839, - [SMALL_STATE(7710)] = 247853, - [SMALL_STATE(7711)] = 247869, - [SMALL_STATE(7712)] = 247883, - [SMALL_STATE(7713)] = 247897, - [SMALL_STATE(7714)] = 247913, - [SMALL_STATE(7715)] = 247929, - [SMALL_STATE(7716)] = 247945, - [SMALL_STATE(7717)] = 247959, - [SMALL_STATE(7718)] = 247975, - [SMALL_STATE(7719)] = 247989, - [SMALL_STATE(7720)] = 248005, - [SMALL_STATE(7721)] = 248021, - [SMALL_STATE(7722)] = 248037, - [SMALL_STATE(7723)] = 248051, - [SMALL_STATE(7724)] = 248067, - [SMALL_STATE(7725)] = 248083, - [SMALL_STATE(7726)] = 248099, - [SMALL_STATE(7727)] = 248115, - [SMALL_STATE(7728)] = 248131, - [SMALL_STATE(7729)] = 248147, - [SMALL_STATE(7730)] = 248161, - [SMALL_STATE(7731)] = 248177, - [SMALL_STATE(7732)] = 248193, - [SMALL_STATE(7733)] = 248209, - [SMALL_STATE(7734)] = 248221, - [SMALL_STATE(7735)] = 248237, - [SMALL_STATE(7736)] = 248253, - [SMALL_STATE(7737)] = 248265, - [SMALL_STATE(7738)] = 248281, - [SMALL_STATE(7739)] = 248293, - [SMALL_STATE(7740)] = 248309, - [SMALL_STATE(7741)] = 248321, - [SMALL_STATE(7742)] = 248333, - [SMALL_STATE(7743)] = 248349, - [SMALL_STATE(7744)] = 248365, - [SMALL_STATE(7745)] = 248381, - [SMALL_STATE(7746)] = 248397, - [SMALL_STATE(7747)] = 248413, - [SMALL_STATE(7748)] = 248425, - [SMALL_STATE(7749)] = 248441, - [SMALL_STATE(7750)] = 248455, - [SMALL_STATE(7751)] = 248467, - [SMALL_STATE(7752)] = 248481, - [SMALL_STATE(7753)] = 248493, - [SMALL_STATE(7754)] = 248509, - [SMALL_STATE(7755)] = 248521, - [SMALL_STATE(7756)] = 248537, - [SMALL_STATE(7757)] = 248553, - [SMALL_STATE(7758)] = 248569, - [SMALL_STATE(7759)] = 248581, - [SMALL_STATE(7760)] = 248597, - [SMALL_STATE(7761)] = 248609, - [SMALL_STATE(7762)] = 248621, - [SMALL_STATE(7763)] = 248633, - [SMALL_STATE(7764)] = 248645, - [SMALL_STATE(7765)] = 248659, - [SMALL_STATE(7766)] = 248673, - [SMALL_STATE(7767)] = 248689, - [SMALL_STATE(7768)] = 248703, - [SMALL_STATE(7769)] = 248719, - [SMALL_STATE(7770)] = 248733, - [SMALL_STATE(7771)] = 248747, - [SMALL_STATE(7772)] = 248763, - [SMALL_STATE(7773)] = 248777, - [SMALL_STATE(7774)] = 248793, - [SMALL_STATE(7775)] = 248805, - [SMALL_STATE(7776)] = 248821, - [SMALL_STATE(7777)] = 248837, - [SMALL_STATE(7778)] = 248849, - [SMALL_STATE(7779)] = 248861, - [SMALL_STATE(7780)] = 248877, - [SMALL_STATE(7781)] = 248889, - [SMALL_STATE(7782)] = 248905, - [SMALL_STATE(7783)] = 248919, - [SMALL_STATE(7784)] = 248935, - [SMALL_STATE(7785)] = 248949, - [SMALL_STATE(7786)] = 248961, - [SMALL_STATE(7787)] = 248977, - [SMALL_STATE(7788)] = 248989, - [SMALL_STATE(7789)] = 249003, - [SMALL_STATE(7790)] = 249019, - [SMALL_STATE(7791)] = 249035, - [SMALL_STATE(7792)] = 249049, - [SMALL_STATE(7793)] = 249063, - [SMALL_STATE(7794)] = 249077, - [SMALL_STATE(7795)] = 249093, - [SMALL_STATE(7796)] = 249109, - [SMALL_STATE(7797)] = 249125, - [SMALL_STATE(7798)] = 249141, - [SMALL_STATE(7799)] = 249157, - [SMALL_STATE(7800)] = 249173, - [SMALL_STATE(7801)] = 249189, - [SMALL_STATE(7802)] = 249205, - [SMALL_STATE(7803)] = 249221, - [SMALL_STATE(7804)] = 249235, - [SMALL_STATE(7805)] = 249251, - [SMALL_STATE(7806)] = 249265, - [SMALL_STATE(7807)] = 249281, - [SMALL_STATE(7808)] = 249297, - [SMALL_STATE(7809)] = 249313, - [SMALL_STATE(7810)] = 249329, - [SMALL_STATE(7811)] = 249345, - [SMALL_STATE(7812)] = 249361, - [SMALL_STATE(7813)] = 249373, - [SMALL_STATE(7814)] = 249389, - [SMALL_STATE(7815)] = 249405, - [SMALL_STATE(7816)] = 249421, - [SMALL_STATE(7817)] = 249435, - [SMALL_STATE(7818)] = 249451, - [SMALL_STATE(7819)] = 249465, - [SMALL_STATE(7820)] = 249481, - [SMALL_STATE(7821)] = 249497, - [SMALL_STATE(7822)] = 249513, - [SMALL_STATE(7823)] = 249529, - [SMALL_STATE(7824)] = 249545, - [SMALL_STATE(7825)] = 249561, - [SMALL_STATE(7826)] = 249575, - [SMALL_STATE(7827)] = 249589, - [SMALL_STATE(7828)] = 249605, - [SMALL_STATE(7829)] = 249619, - [SMALL_STATE(7830)] = 249633, - [SMALL_STATE(7831)] = 249649, - [SMALL_STATE(7832)] = 249665, - [SMALL_STATE(7833)] = 249681, - [SMALL_STATE(7834)] = 249697, - [SMALL_STATE(7835)] = 249713, - [SMALL_STATE(7836)] = 249727, - [SMALL_STATE(7837)] = 249743, - [SMALL_STATE(7838)] = 249757, - [SMALL_STATE(7839)] = 249771, - [SMALL_STATE(7840)] = 249785, - [SMALL_STATE(7841)] = 249801, - [SMALL_STATE(7842)] = 249817, - [SMALL_STATE(7843)] = 249829, - [SMALL_STATE(7844)] = 249845, - [SMALL_STATE(7845)] = 249861, - [SMALL_STATE(7846)] = 249875, - [SMALL_STATE(7847)] = 249891, - [SMALL_STATE(7848)] = 249905, - [SMALL_STATE(7849)] = 249921, - [SMALL_STATE(7850)] = 249937, - [SMALL_STATE(7851)] = 249953, - [SMALL_STATE(7852)] = 249967, - [SMALL_STATE(7853)] = 249983, - [SMALL_STATE(7854)] = 249999, - [SMALL_STATE(7855)] = 250013, - [SMALL_STATE(7856)] = 250027, - [SMALL_STATE(7857)] = 250041, - [SMALL_STATE(7858)] = 250055, - [SMALL_STATE(7859)] = 250069, - [SMALL_STATE(7860)] = 250083, - [SMALL_STATE(7861)] = 250099, - [SMALL_STATE(7862)] = 250115, - [SMALL_STATE(7863)] = 250131, - [SMALL_STATE(7864)] = 250147, - [SMALL_STATE(7865)] = 250161, - [SMALL_STATE(7866)] = 250173, - [SMALL_STATE(7867)] = 250187, - [SMALL_STATE(7868)] = 250201, - [SMALL_STATE(7869)] = 250217, - [SMALL_STATE(7870)] = 250233, - [SMALL_STATE(7871)] = 250249, - [SMALL_STATE(7872)] = 250265, - [SMALL_STATE(7873)] = 250279, - [SMALL_STATE(7874)] = 250293, - [SMALL_STATE(7875)] = 250307, - [SMALL_STATE(7876)] = 250323, - [SMALL_STATE(7877)] = 250339, - [SMALL_STATE(7878)] = 250355, - [SMALL_STATE(7879)] = 250371, - [SMALL_STATE(7880)] = 250387, - [SMALL_STATE(7881)] = 250401, - [SMALL_STATE(7882)] = 250417, - [SMALL_STATE(7883)] = 250431, - [SMALL_STATE(7884)] = 250447, - [SMALL_STATE(7885)] = 250463, - [SMALL_STATE(7886)] = 250479, - [SMALL_STATE(7887)] = 250493, - [SMALL_STATE(7888)] = 250509, - [SMALL_STATE(7889)] = 250525, - [SMALL_STATE(7890)] = 250539, - [SMALL_STATE(7891)] = 250553, - [SMALL_STATE(7892)] = 250567, - [SMALL_STATE(7893)] = 250579, - [SMALL_STATE(7894)] = 250591, - [SMALL_STATE(7895)] = 250607, - [SMALL_STATE(7896)] = 250623, - [SMALL_STATE(7897)] = 250639, - [SMALL_STATE(7898)] = 250655, - [SMALL_STATE(7899)] = 250671, - [SMALL_STATE(7900)] = 250685, - [SMALL_STATE(7901)] = 250697, - [SMALL_STATE(7902)] = 250711, - [SMALL_STATE(7903)] = 250725, - [SMALL_STATE(7904)] = 250737, - [SMALL_STATE(7905)] = 250749, - [SMALL_STATE(7906)] = 250765, - [SMALL_STATE(7907)] = 250781, - [SMALL_STATE(7908)] = 250793, - [SMALL_STATE(7909)] = 250809, - [SMALL_STATE(7910)] = 250825, - [SMALL_STATE(7911)] = 250839, - [SMALL_STATE(7912)] = 250851, - [SMALL_STATE(7913)] = 250865, - [SMALL_STATE(7914)] = 250881, - [SMALL_STATE(7915)] = 250897, - [SMALL_STATE(7916)] = 250913, - [SMALL_STATE(7917)] = 250929, - [SMALL_STATE(7918)] = 250943, - [SMALL_STATE(7919)] = 250957, - [SMALL_STATE(7920)] = 250973, - [SMALL_STATE(7921)] = 250989, - [SMALL_STATE(7922)] = 251005, - [SMALL_STATE(7923)] = 251021, - [SMALL_STATE(7924)] = 251037, - [SMALL_STATE(7925)] = 251051, - [SMALL_STATE(7926)] = 251065, - [SMALL_STATE(7927)] = 251081, - [SMALL_STATE(7928)] = 251097, - [SMALL_STATE(7929)] = 251113, - [SMALL_STATE(7930)] = 251129, - [SMALL_STATE(7931)] = 251143, - [SMALL_STATE(7932)] = 251157, - [SMALL_STATE(7933)] = 251173, - [SMALL_STATE(7934)] = 251189, - [SMALL_STATE(7935)] = 251201, - [SMALL_STATE(7936)] = 251217, - [SMALL_STATE(7937)] = 251233, - [SMALL_STATE(7938)] = 251247, - [SMALL_STATE(7939)] = 251261, - [SMALL_STATE(7940)] = 251277, - [SMALL_STATE(7941)] = 251293, - [SMALL_STATE(7942)] = 251309, - [SMALL_STATE(7943)] = 251325, - [SMALL_STATE(7944)] = 251339, - [SMALL_STATE(7945)] = 251353, - [SMALL_STATE(7946)] = 251369, - [SMALL_STATE(7947)] = 251385, - [SMALL_STATE(7948)] = 251401, - [SMALL_STATE(7949)] = 251417, - [SMALL_STATE(7950)] = 251433, - [SMALL_STATE(7951)] = 251447, - [SMALL_STATE(7952)] = 251463, - [SMALL_STATE(7953)] = 251475, - [SMALL_STATE(7954)] = 251487, - [SMALL_STATE(7955)] = 251503, - [SMALL_STATE(7956)] = 251519, - [SMALL_STATE(7957)] = 251531, - [SMALL_STATE(7958)] = 251547, - [SMALL_STATE(7959)] = 251563, - [SMALL_STATE(7960)] = 251577, - [SMALL_STATE(7961)] = 251593, - [SMALL_STATE(7962)] = 251607, - [SMALL_STATE(7963)] = 251621, - [SMALL_STATE(7964)] = 251637, - [SMALL_STATE(7965)] = 251653, - [SMALL_STATE(7966)] = 251665, - [SMALL_STATE(7967)] = 251679, - [SMALL_STATE(7968)] = 251693, - [SMALL_STATE(7969)] = 251709, - [SMALL_STATE(7970)] = 251725, - [SMALL_STATE(7971)] = 251741, - [SMALL_STATE(7972)] = 251757, - [SMALL_STATE(7973)] = 251773, - [SMALL_STATE(7974)] = 251785, - [SMALL_STATE(7975)] = 251801, - [SMALL_STATE(7976)] = 251817, - [SMALL_STATE(7977)] = 251833, - [SMALL_STATE(7978)] = 251845, - [SMALL_STATE(7979)] = 251858, - [SMALL_STATE(7980)] = 251871, - [SMALL_STATE(7981)] = 251884, - [SMALL_STATE(7982)] = 251897, - [SMALL_STATE(7983)] = 251910, - [SMALL_STATE(7984)] = 251923, - [SMALL_STATE(7985)] = 251936, - [SMALL_STATE(7986)] = 251949, - [SMALL_STATE(7987)] = 251962, - [SMALL_STATE(7988)] = 251975, - [SMALL_STATE(7989)] = 251988, - [SMALL_STATE(7990)] = 252001, - [SMALL_STATE(7991)] = 252014, - [SMALL_STATE(7992)] = 252027, - [SMALL_STATE(7993)] = 252040, - [SMALL_STATE(7994)] = 252053, - [SMALL_STATE(7995)] = 252066, - [SMALL_STATE(7996)] = 252079, - [SMALL_STATE(7997)] = 252090, - [SMALL_STATE(7998)] = 252103, - [SMALL_STATE(7999)] = 252116, - [SMALL_STATE(8000)] = 252129, - [SMALL_STATE(8001)] = 252142, - [SMALL_STATE(8002)] = 252155, - [SMALL_STATE(8003)] = 252168, - [SMALL_STATE(8004)] = 252181, - [SMALL_STATE(8005)] = 252194, - [SMALL_STATE(8006)] = 252207, - [SMALL_STATE(8007)] = 252220, - [SMALL_STATE(8008)] = 252233, - [SMALL_STATE(8009)] = 252246, - [SMALL_STATE(8010)] = 252259, - [SMALL_STATE(8011)] = 252270, - [SMALL_STATE(8012)] = 252283, - [SMALL_STATE(8013)] = 252296, - [SMALL_STATE(8014)] = 252309, - [SMALL_STATE(8015)] = 252322, - [SMALL_STATE(8016)] = 252335, - [SMALL_STATE(8017)] = 252348, - [SMALL_STATE(8018)] = 252361, - [SMALL_STATE(8019)] = 252374, - [SMALL_STATE(8020)] = 252387, - [SMALL_STATE(8021)] = 252400, - [SMALL_STATE(8022)] = 252413, - [SMALL_STATE(8023)] = 252426, - [SMALL_STATE(8024)] = 252439, - [SMALL_STATE(8025)] = 252452, - [SMALL_STATE(8026)] = 252465, - [SMALL_STATE(8027)] = 252478, - [SMALL_STATE(8028)] = 252491, - [SMALL_STATE(8029)] = 252504, - [SMALL_STATE(8030)] = 252517, - [SMALL_STATE(8031)] = 252530, - [SMALL_STATE(8032)] = 252543, - [SMALL_STATE(8033)] = 252556, - [SMALL_STATE(8034)] = 252569, - [SMALL_STATE(8035)] = 252582, - [SMALL_STATE(8036)] = 252595, - [SMALL_STATE(8037)] = 252608, - [SMALL_STATE(8038)] = 252621, - [SMALL_STATE(8039)] = 252634, - [SMALL_STATE(8040)] = 252647, - [SMALL_STATE(8041)] = 252660, - [SMALL_STATE(8042)] = 252673, - [SMALL_STATE(8043)] = 252686, - [SMALL_STATE(8044)] = 252699, - [SMALL_STATE(8045)] = 252712, - [SMALL_STATE(8046)] = 252725, - [SMALL_STATE(8047)] = 252738, - [SMALL_STATE(8048)] = 252751, - [SMALL_STATE(8049)] = 252764, - [SMALL_STATE(8050)] = 252777, - [SMALL_STATE(8051)] = 252790, - [SMALL_STATE(8052)] = 252803, - [SMALL_STATE(8053)] = 252816, - [SMALL_STATE(8054)] = 252829, - [SMALL_STATE(8055)] = 252842, - [SMALL_STATE(8056)] = 252855, - [SMALL_STATE(8057)] = 252868, - [SMALL_STATE(8058)] = 252881, - [SMALL_STATE(8059)] = 252894, - [SMALL_STATE(8060)] = 252907, - [SMALL_STATE(8061)] = 252920, - [SMALL_STATE(8062)] = 252933, - [SMALL_STATE(8063)] = 252946, - [SMALL_STATE(8064)] = 252959, - [SMALL_STATE(8065)] = 252972, - [SMALL_STATE(8066)] = 252985, - [SMALL_STATE(8067)] = 252998, - [SMALL_STATE(8068)] = 253011, - [SMALL_STATE(8069)] = 253024, - [SMALL_STATE(8070)] = 253037, - [SMALL_STATE(8071)] = 253050, - [SMALL_STATE(8072)] = 253063, - [SMALL_STATE(8073)] = 253076, - [SMALL_STATE(8074)] = 253089, - [SMALL_STATE(8075)] = 253102, - [SMALL_STATE(8076)] = 253115, - [SMALL_STATE(8077)] = 253128, - [SMALL_STATE(8078)] = 253141, - [SMALL_STATE(8079)] = 253154, - [SMALL_STATE(8080)] = 253167, - [SMALL_STATE(8081)] = 253180, - [SMALL_STATE(8082)] = 253193, - [SMALL_STATE(8083)] = 253206, - [SMALL_STATE(8084)] = 253219, - [SMALL_STATE(8085)] = 253232, - [SMALL_STATE(8086)] = 253245, - [SMALL_STATE(8087)] = 253258, - [SMALL_STATE(8088)] = 253271, - [SMALL_STATE(8089)] = 253282, - [SMALL_STATE(8090)] = 253295, - [SMALL_STATE(8091)] = 253308, - [SMALL_STATE(8092)] = 253321, - [SMALL_STATE(8093)] = 253334, - [SMALL_STATE(8094)] = 253347, - [SMALL_STATE(8095)] = 253360, - [SMALL_STATE(8096)] = 253373, - [SMALL_STATE(8097)] = 253386, - [SMALL_STATE(8098)] = 253399, - [SMALL_STATE(8099)] = 253412, - [SMALL_STATE(8100)] = 253425, - [SMALL_STATE(8101)] = 253438, - [SMALL_STATE(8102)] = 253451, - [SMALL_STATE(8103)] = 253464, - [SMALL_STATE(8104)] = 253477, - [SMALL_STATE(8105)] = 253490, - [SMALL_STATE(8106)] = 253503, - [SMALL_STATE(8107)] = 253516, - [SMALL_STATE(8108)] = 253529, - [SMALL_STATE(8109)] = 253542, - [SMALL_STATE(8110)] = 253555, - [SMALL_STATE(8111)] = 253568, - [SMALL_STATE(8112)] = 253581, - [SMALL_STATE(8113)] = 253594, - [SMALL_STATE(8114)] = 253607, - [SMALL_STATE(8115)] = 253620, - [SMALL_STATE(8116)] = 253633, - [SMALL_STATE(8117)] = 253646, - [SMALL_STATE(8118)] = 253659, - [SMALL_STATE(8119)] = 253672, - [SMALL_STATE(8120)] = 253685, - [SMALL_STATE(8121)] = 253698, - [SMALL_STATE(8122)] = 253711, - [SMALL_STATE(8123)] = 253724, - [SMALL_STATE(8124)] = 253737, - [SMALL_STATE(8125)] = 253750, - [SMALL_STATE(8126)] = 253763, - [SMALL_STATE(8127)] = 253776, - [SMALL_STATE(8128)] = 253789, - [SMALL_STATE(8129)] = 253802, - [SMALL_STATE(8130)] = 253813, - [SMALL_STATE(8131)] = 253826, - [SMALL_STATE(8132)] = 253839, - [SMALL_STATE(8133)] = 253852, - [SMALL_STATE(8134)] = 253865, - [SMALL_STATE(8135)] = 253878, - [SMALL_STATE(8136)] = 253891, - [SMALL_STATE(8137)] = 253904, - [SMALL_STATE(8138)] = 253917, - [SMALL_STATE(8139)] = 253930, - [SMALL_STATE(8140)] = 253943, - [SMALL_STATE(8141)] = 253956, - [SMALL_STATE(8142)] = 253967, - [SMALL_STATE(8143)] = 253980, - [SMALL_STATE(8144)] = 253993, - [SMALL_STATE(8145)] = 254006, - [SMALL_STATE(8146)] = 254019, - [SMALL_STATE(8147)] = 254032, - [SMALL_STATE(8148)] = 254045, - [SMALL_STATE(8149)] = 254058, - [SMALL_STATE(8150)] = 254071, - [SMALL_STATE(8151)] = 254084, - [SMALL_STATE(8152)] = 254097, - [SMALL_STATE(8153)] = 254110, - [SMALL_STATE(8154)] = 254123, - [SMALL_STATE(8155)] = 254136, - [SMALL_STATE(8156)] = 254149, - [SMALL_STATE(8157)] = 254162, - [SMALL_STATE(8158)] = 254175, - [SMALL_STATE(8159)] = 254188, - [SMALL_STATE(8160)] = 254201, - [SMALL_STATE(8161)] = 254214, - [SMALL_STATE(8162)] = 254227, - [SMALL_STATE(8163)] = 254240, - [SMALL_STATE(8164)] = 254251, - [SMALL_STATE(8165)] = 254264, - [SMALL_STATE(8166)] = 254277, - [SMALL_STATE(8167)] = 254290, - [SMALL_STATE(8168)] = 254303, - [SMALL_STATE(8169)] = 254316, - [SMALL_STATE(8170)] = 254329, - [SMALL_STATE(8171)] = 254342, - [SMALL_STATE(8172)] = 254355, - [SMALL_STATE(8173)] = 254368, - [SMALL_STATE(8174)] = 254379, - [SMALL_STATE(8175)] = 254392, - [SMALL_STATE(8176)] = 254405, - [SMALL_STATE(8177)] = 254418, - [SMALL_STATE(8178)] = 254431, - [SMALL_STATE(8179)] = 254444, - [SMALL_STATE(8180)] = 254457, - [SMALL_STATE(8181)] = 254470, - [SMALL_STATE(8182)] = 254483, - [SMALL_STATE(8183)] = 254496, - [SMALL_STATE(8184)] = 254509, - [SMALL_STATE(8185)] = 254522, - [SMALL_STATE(8186)] = 254535, - [SMALL_STATE(8187)] = 254548, - [SMALL_STATE(8188)] = 254561, - [SMALL_STATE(8189)] = 254574, - [SMALL_STATE(8190)] = 254587, - [SMALL_STATE(8191)] = 254600, - [SMALL_STATE(8192)] = 254613, - [SMALL_STATE(8193)] = 254624, - [SMALL_STATE(8194)] = 254637, - [SMALL_STATE(8195)] = 254650, - [SMALL_STATE(8196)] = 254663, - [SMALL_STATE(8197)] = 254676, - [SMALL_STATE(8198)] = 254689, - [SMALL_STATE(8199)] = 254702, - [SMALL_STATE(8200)] = 254715, - [SMALL_STATE(8201)] = 254728, - [SMALL_STATE(8202)] = 254741, - [SMALL_STATE(8203)] = 254754, - [SMALL_STATE(8204)] = 254767, - [SMALL_STATE(8205)] = 254780, - [SMALL_STATE(8206)] = 254793, - [SMALL_STATE(8207)] = 254806, - [SMALL_STATE(8208)] = 254819, - [SMALL_STATE(8209)] = 254832, - [SMALL_STATE(8210)] = 254845, - [SMALL_STATE(8211)] = 254858, - [SMALL_STATE(8212)] = 254871, - [SMALL_STATE(8213)] = 254884, - [SMALL_STATE(8214)] = 254897, - [SMALL_STATE(8215)] = 254910, - [SMALL_STATE(8216)] = 254923, - [SMALL_STATE(8217)] = 254936, - [SMALL_STATE(8218)] = 254949, - [SMALL_STATE(8219)] = 254962, - [SMALL_STATE(8220)] = 254975, - [SMALL_STATE(8221)] = 254988, - [SMALL_STATE(8222)] = 255001, - [SMALL_STATE(8223)] = 255014, - [SMALL_STATE(8224)] = 255027, - [SMALL_STATE(8225)] = 255037, - [SMALL_STATE(8226)] = 255047, - [SMALL_STATE(8227)] = 255057, - [SMALL_STATE(8228)] = 255067, - [SMALL_STATE(8229)] = 255077, - [SMALL_STATE(8230)] = 255087, - [SMALL_STATE(8231)] = 255097, - [SMALL_STATE(8232)] = 255107, - [SMALL_STATE(8233)] = 255117, - [SMALL_STATE(8234)] = 255127, - [SMALL_STATE(8235)] = 255137, - [SMALL_STATE(8236)] = 255147, - [SMALL_STATE(8237)] = 255157, - [SMALL_STATE(8238)] = 255167, - [SMALL_STATE(8239)] = 255177, - [SMALL_STATE(8240)] = 255187, - [SMALL_STATE(8241)] = 255197, - [SMALL_STATE(8242)] = 255207, - [SMALL_STATE(8243)] = 255217, - [SMALL_STATE(8244)] = 255227, - [SMALL_STATE(8245)] = 255237, - [SMALL_STATE(8246)] = 255247, - [SMALL_STATE(8247)] = 255257, - [SMALL_STATE(8248)] = 255267, - [SMALL_STATE(8249)] = 255277, - [SMALL_STATE(8250)] = 255287, - [SMALL_STATE(8251)] = 255297, - [SMALL_STATE(8252)] = 255307, - [SMALL_STATE(8253)] = 255317, - [SMALL_STATE(8254)] = 255327, - [SMALL_STATE(8255)] = 255337, - [SMALL_STATE(8256)] = 255347, - [SMALL_STATE(8257)] = 255357, - [SMALL_STATE(8258)] = 255367, - [SMALL_STATE(8259)] = 255377, - [SMALL_STATE(8260)] = 255387, - [SMALL_STATE(8261)] = 255397, - [SMALL_STATE(8262)] = 255407, - [SMALL_STATE(8263)] = 255417, - [SMALL_STATE(8264)] = 255427, - [SMALL_STATE(8265)] = 255437, - [SMALL_STATE(8266)] = 255447, - [SMALL_STATE(8267)] = 255457, - [SMALL_STATE(8268)] = 255467, - [SMALL_STATE(8269)] = 255477, - [SMALL_STATE(8270)] = 255487, - [SMALL_STATE(8271)] = 255497, - [SMALL_STATE(8272)] = 255507, - [SMALL_STATE(8273)] = 255517, - [SMALL_STATE(8274)] = 255527, - [SMALL_STATE(8275)] = 255537, - [SMALL_STATE(8276)] = 255547, - [SMALL_STATE(8277)] = 255557, - [SMALL_STATE(8278)] = 255567, - [SMALL_STATE(8279)] = 255577, - [SMALL_STATE(8280)] = 255587, - [SMALL_STATE(8281)] = 255597, - [SMALL_STATE(8282)] = 255607, - [SMALL_STATE(8283)] = 255617, - [SMALL_STATE(8284)] = 255627, - [SMALL_STATE(8285)] = 255637, - [SMALL_STATE(8286)] = 255647, - [SMALL_STATE(8287)] = 255657, - [SMALL_STATE(8288)] = 255667, - [SMALL_STATE(8289)] = 255677, - [SMALL_STATE(8290)] = 255687, - [SMALL_STATE(8291)] = 255697, - [SMALL_STATE(8292)] = 255707, - [SMALL_STATE(8293)] = 255717, - [SMALL_STATE(8294)] = 255727, - [SMALL_STATE(8295)] = 255737, - [SMALL_STATE(8296)] = 255747, - [SMALL_STATE(8297)] = 255757, - [SMALL_STATE(8298)] = 255767, - [SMALL_STATE(8299)] = 255777, - [SMALL_STATE(8300)] = 255787, - [SMALL_STATE(8301)] = 255797, - [SMALL_STATE(8302)] = 255807, - [SMALL_STATE(8303)] = 255817, - [SMALL_STATE(8304)] = 255827, - [SMALL_STATE(8305)] = 255837, - [SMALL_STATE(8306)] = 255847, - [SMALL_STATE(8307)] = 255857, - [SMALL_STATE(8308)] = 255867, - [SMALL_STATE(8309)] = 255877, - [SMALL_STATE(8310)] = 255887, - [SMALL_STATE(8311)] = 255897, - [SMALL_STATE(8312)] = 255907, - [SMALL_STATE(8313)] = 255917, - [SMALL_STATE(8314)] = 255927, - [SMALL_STATE(8315)] = 255937, - [SMALL_STATE(8316)] = 255947, - [SMALL_STATE(8317)] = 255957, - [SMALL_STATE(8318)] = 255967, - [SMALL_STATE(8319)] = 255977, - [SMALL_STATE(8320)] = 255987, - [SMALL_STATE(8321)] = 255997, - [SMALL_STATE(8322)] = 256007, - [SMALL_STATE(8323)] = 256017, - [SMALL_STATE(8324)] = 256027, - [SMALL_STATE(8325)] = 256037, - [SMALL_STATE(8326)] = 256047, - [SMALL_STATE(8327)] = 256057, - [SMALL_STATE(8328)] = 256067, - [SMALL_STATE(8329)] = 256077, - [SMALL_STATE(8330)] = 256087, - [SMALL_STATE(8331)] = 256097, - [SMALL_STATE(8332)] = 256107, - [SMALL_STATE(8333)] = 256117, - [SMALL_STATE(8334)] = 256127, - [SMALL_STATE(8335)] = 256137, - [SMALL_STATE(8336)] = 256147, - [SMALL_STATE(8337)] = 256157, - [SMALL_STATE(8338)] = 256167, - [SMALL_STATE(8339)] = 256177, - [SMALL_STATE(8340)] = 256187, - [SMALL_STATE(8341)] = 256197, - [SMALL_STATE(8342)] = 256207, - [SMALL_STATE(8343)] = 256217, - [SMALL_STATE(8344)] = 256227, - [SMALL_STATE(8345)] = 256237, - [SMALL_STATE(8346)] = 256247, - [SMALL_STATE(8347)] = 256257, - [SMALL_STATE(8348)] = 256267, - [SMALL_STATE(8349)] = 256277, - [SMALL_STATE(8350)] = 256287, - [SMALL_STATE(8351)] = 256297, - [SMALL_STATE(8352)] = 256307, - [SMALL_STATE(8353)] = 256317, - [SMALL_STATE(8354)] = 256327, - [SMALL_STATE(8355)] = 256337, - [SMALL_STATE(8356)] = 256347, - [SMALL_STATE(8357)] = 256357, - [SMALL_STATE(8358)] = 256367, - [SMALL_STATE(8359)] = 256377, - [SMALL_STATE(8360)] = 256387, - [SMALL_STATE(8361)] = 256397, - [SMALL_STATE(8362)] = 256407, - [SMALL_STATE(8363)] = 256417, - [SMALL_STATE(8364)] = 256427, - [SMALL_STATE(8365)] = 256437, - [SMALL_STATE(8366)] = 256447, - [SMALL_STATE(8367)] = 256457, - [SMALL_STATE(8368)] = 256467, - [SMALL_STATE(8369)] = 256477, - [SMALL_STATE(8370)] = 256487, - [SMALL_STATE(8371)] = 256497, - [SMALL_STATE(8372)] = 256507, - [SMALL_STATE(8373)] = 256517, - [SMALL_STATE(8374)] = 256527, - [SMALL_STATE(8375)] = 256537, - [SMALL_STATE(8376)] = 256547, - [SMALL_STATE(8377)] = 256557, - [SMALL_STATE(8378)] = 256567, - [SMALL_STATE(8379)] = 256577, - [SMALL_STATE(8380)] = 256587, - [SMALL_STATE(8381)] = 256597, - [SMALL_STATE(8382)] = 256607, - [SMALL_STATE(8383)] = 256617, - [SMALL_STATE(8384)] = 256627, - [SMALL_STATE(8385)] = 256637, - [SMALL_STATE(8386)] = 256647, - [SMALL_STATE(8387)] = 256657, - [SMALL_STATE(8388)] = 256667, - [SMALL_STATE(8389)] = 256677, - [SMALL_STATE(8390)] = 256687, - [SMALL_STATE(8391)] = 256697, - [SMALL_STATE(8392)] = 256707, - [SMALL_STATE(8393)] = 256717, - [SMALL_STATE(8394)] = 256727, - [SMALL_STATE(8395)] = 256737, - [SMALL_STATE(8396)] = 256747, - [SMALL_STATE(8397)] = 256757, - [SMALL_STATE(8398)] = 256767, - [SMALL_STATE(8399)] = 256777, - [SMALL_STATE(8400)] = 256787, - [SMALL_STATE(8401)] = 256797, - [SMALL_STATE(8402)] = 256807, - [SMALL_STATE(8403)] = 256817, - [SMALL_STATE(8404)] = 256827, - [SMALL_STATE(8405)] = 256837, - [SMALL_STATE(8406)] = 256847, - [SMALL_STATE(8407)] = 256857, - [SMALL_STATE(8408)] = 256867, - [SMALL_STATE(8409)] = 256877, - [SMALL_STATE(8410)] = 256887, - [SMALL_STATE(8411)] = 256897, - [SMALL_STATE(8412)] = 256907, - [SMALL_STATE(8413)] = 256917, - [SMALL_STATE(8414)] = 256927, - [SMALL_STATE(8415)] = 256937, - [SMALL_STATE(8416)] = 256947, - [SMALL_STATE(8417)] = 256957, - [SMALL_STATE(8418)] = 256967, - [SMALL_STATE(8419)] = 256977, - [SMALL_STATE(8420)] = 256987, - [SMALL_STATE(8421)] = 256997, - [SMALL_STATE(8422)] = 257007, - [SMALL_STATE(8423)] = 257017, - [SMALL_STATE(8424)] = 257027, - [SMALL_STATE(8425)] = 257037, - [SMALL_STATE(8426)] = 257047, - [SMALL_STATE(8427)] = 257057, - [SMALL_STATE(8428)] = 257067, - [SMALL_STATE(8429)] = 257077, - [SMALL_STATE(8430)] = 257087, - [SMALL_STATE(8431)] = 257097, - [SMALL_STATE(8432)] = 257107, - [SMALL_STATE(8433)] = 257117, - [SMALL_STATE(8434)] = 257127, - [SMALL_STATE(8435)] = 257137, - [SMALL_STATE(8436)] = 257147, - [SMALL_STATE(8437)] = 257157, - [SMALL_STATE(8438)] = 257167, - [SMALL_STATE(8439)] = 257177, - [SMALL_STATE(8440)] = 257187, - [SMALL_STATE(8441)] = 257197, - [SMALL_STATE(8442)] = 257207, - [SMALL_STATE(8443)] = 257217, - [SMALL_STATE(8444)] = 257227, - [SMALL_STATE(8445)] = 257237, - [SMALL_STATE(8446)] = 257247, - [SMALL_STATE(8447)] = 257257, - [SMALL_STATE(8448)] = 257267, - [SMALL_STATE(8449)] = 257277, - [SMALL_STATE(8450)] = 257287, - [SMALL_STATE(8451)] = 257297, - [SMALL_STATE(8452)] = 257307, - [SMALL_STATE(8453)] = 257317, - [SMALL_STATE(8454)] = 257327, - [SMALL_STATE(8455)] = 257337, - [SMALL_STATE(8456)] = 257347, - [SMALL_STATE(8457)] = 257357, - [SMALL_STATE(8458)] = 257367, - [SMALL_STATE(8459)] = 257377, - [SMALL_STATE(8460)] = 257387, - [SMALL_STATE(8461)] = 257397, - [SMALL_STATE(8462)] = 257407, - [SMALL_STATE(8463)] = 257417, - [SMALL_STATE(8464)] = 257427, - [SMALL_STATE(8465)] = 257437, - [SMALL_STATE(8466)] = 257447, - [SMALL_STATE(8467)] = 257457, - [SMALL_STATE(8468)] = 257467, - [SMALL_STATE(8469)] = 257477, - [SMALL_STATE(8470)] = 257487, - [SMALL_STATE(8471)] = 257497, - [SMALL_STATE(8472)] = 257507, - [SMALL_STATE(8473)] = 257517, - [SMALL_STATE(8474)] = 257527, - [SMALL_STATE(8475)] = 257537, - [SMALL_STATE(8476)] = 257547, - [SMALL_STATE(8477)] = 257557, - [SMALL_STATE(8478)] = 257567, - [SMALL_STATE(8479)] = 257577, - [SMALL_STATE(8480)] = 257587, - [SMALL_STATE(8481)] = 257597, - [SMALL_STATE(8482)] = 257607, - [SMALL_STATE(8483)] = 257617, - [SMALL_STATE(8484)] = 257627, - [SMALL_STATE(8485)] = 257637, - [SMALL_STATE(8486)] = 257647, - [SMALL_STATE(8487)] = 257657, - [SMALL_STATE(8488)] = 257667, - [SMALL_STATE(8489)] = 257677, - [SMALL_STATE(8490)] = 257687, - [SMALL_STATE(8491)] = 257697, - [SMALL_STATE(8492)] = 257707, - [SMALL_STATE(8493)] = 257717, - [SMALL_STATE(8494)] = 257727, - [SMALL_STATE(8495)] = 257737, - [SMALL_STATE(8496)] = 257747, - [SMALL_STATE(8497)] = 257757, - [SMALL_STATE(8498)] = 257767, - [SMALL_STATE(8499)] = 257777, - [SMALL_STATE(8500)] = 257787, - [SMALL_STATE(8501)] = 257797, - [SMALL_STATE(8502)] = 257807, - [SMALL_STATE(8503)] = 257817, - [SMALL_STATE(8504)] = 257827, - [SMALL_STATE(8505)] = 257837, - [SMALL_STATE(8506)] = 257847, - [SMALL_STATE(8507)] = 257857, - [SMALL_STATE(8508)] = 257867, - [SMALL_STATE(8509)] = 257877, - [SMALL_STATE(8510)] = 257887, - [SMALL_STATE(8511)] = 257897, - [SMALL_STATE(8512)] = 257907, - [SMALL_STATE(8513)] = 257917, - [SMALL_STATE(8514)] = 257927, - [SMALL_STATE(8515)] = 257937, - [SMALL_STATE(8516)] = 257947, - [SMALL_STATE(8517)] = 257957, - [SMALL_STATE(8518)] = 257967, - [SMALL_STATE(8519)] = 257977, - [SMALL_STATE(8520)] = 257987, - [SMALL_STATE(8521)] = 257997, - [SMALL_STATE(8522)] = 258007, - [SMALL_STATE(8523)] = 258017, - [SMALL_STATE(8524)] = 258027, - [SMALL_STATE(8525)] = 258037, - [SMALL_STATE(8526)] = 258047, - [SMALL_STATE(8527)] = 258057, - [SMALL_STATE(8528)] = 258067, - [SMALL_STATE(8529)] = 258077, - [SMALL_STATE(8530)] = 258087, - [SMALL_STATE(8531)] = 258097, - [SMALL_STATE(8532)] = 258107, - [SMALL_STATE(8533)] = 258117, - [SMALL_STATE(8534)] = 258127, - [SMALL_STATE(8535)] = 258137, - [SMALL_STATE(8536)] = 258147, - [SMALL_STATE(8537)] = 258157, - [SMALL_STATE(8538)] = 258167, - [SMALL_STATE(8539)] = 258177, - [SMALL_STATE(8540)] = 258187, - [SMALL_STATE(8541)] = 258197, - [SMALL_STATE(8542)] = 258207, - [SMALL_STATE(8543)] = 258217, - [SMALL_STATE(8544)] = 258227, - [SMALL_STATE(8545)] = 258237, - [SMALL_STATE(8546)] = 258247, - [SMALL_STATE(8547)] = 258257, - [SMALL_STATE(8548)] = 258267, - [SMALL_STATE(8549)] = 258277, - [SMALL_STATE(8550)] = 258287, - [SMALL_STATE(8551)] = 258297, - [SMALL_STATE(8552)] = 258307, - [SMALL_STATE(8553)] = 258317, - [SMALL_STATE(8554)] = 258327, - [SMALL_STATE(8555)] = 258337, - [SMALL_STATE(8556)] = 258347, - [SMALL_STATE(8557)] = 258357, - [SMALL_STATE(8558)] = 258367, - [SMALL_STATE(8559)] = 258377, - [SMALL_STATE(8560)] = 258387, - [SMALL_STATE(8561)] = 258397, - [SMALL_STATE(8562)] = 258407, - [SMALL_STATE(8563)] = 258417, - [SMALL_STATE(8564)] = 258427, - [SMALL_STATE(8565)] = 258437, - [SMALL_STATE(8566)] = 258447, - [SMALL_STATE(8567)] = 258457, - [SMALL_STATE(8568)] = 258467, - [SMALL_STATE(8569)] = 258477, - [SMALL_STATE(8570)] = 258487, - [SMALL_STATE(8571)] = 258497, - [SMALL_STATE(8572)] = 258507, - [SMALL_STATE(8573)] = 258517, - [SMALL_STATE(8574)] = 258527, - [SMALL_STATE(8575)] = 258537, - [SMALL_STATE(8576)] = 258547, - [SMALL_STATE(8577)] = 258557, - [SMALL_STATE(8578)] = 258567, - [SMALL_STATE(8579)] = 258577, - [SMALL_STATE(8580)] = 258587, - [SMALL_STATE(8581)] = 258597, - [SMALL_STATE(8582)] = 258607, - [SMALL_STATE(8583)] = 258617, - [SMALL_STATE(8584)] = 258627, - [SMALL_STATE(8585)] = 258637, - [SMALL_STATE(8586)] = 258647, - [SMALL_STATE(8587)] = 258657, - [SMALL_STATE(8588)] = 258667, - [SMALL_STATE(8589)] = 258677, - [SMALL_STATE(8590)] = 258687, - [SMALL_STATE(8591)] = 258697, - [SMALL_STATE(8592)] = 258707, - [SMALL_STATE(8593)] = 258717, - [SMALL_STATE(8594)] = 258727, - [SMALL_STATE(8595)] = 258737, - [SMALL_STATE(8596)] = 258747, - [SMALL_STATE(8597)] = 258757, - [SMALL_STATE(8598)] = 258767, - [SMALL_STATE(8599)] = 258777, - [SMALL_STATE(8600)] = 258787, - [SMALL_STATE(8601)] = 258797, - [SMALL_STATE(8602)] = 258807, - [SMALL_STATE(8603)] = 258817, - [SMALL_STATE(8604)] = 258827, - [SMALL_STATE(8605)] = 258837, - [SMALL_STATE(8606)] = 258847, - [SMALL_STATE(8607)] = 258857, - [SMALL_STATE(8608)] = 258867, - [SMALL_STATE(8609)] = 258877, - [SMALL_STATE(8610)] = 258887, - [SMALL_STATE(8611)] = 258897, - [SMALL_STATE(8612)] = 258907, - [SMALL_STATE(8613)] = 258917, - [SMALL_STATE(8614)] = 258927, - [SMALL_STATE(8615)] = 258937, - [SMALL_STATE(8616)] = 258947, - [SMALL_STATE(8617)] = 258957, - [SMALL_STATE(8618)] = 258967, - [SMALL_STATE(8619)] = 258977, - [SMALL_STATE(8620)] = 258987, - [SMALL_STATE(8621)] = 258997, - [SMALL_STATE(8622)] = 259007, - [SMALL_STATE(8623)] = 259017, - [SMALL_STATE(8624)] = 259027, - [SMALL_STATE(8625)] = 259037, - [SMALL_STATE(8626)] = 259047, - [SMALL_STATE(8627)] = 259057, - [SMALL_STATE(8628)] = 259067, - [SMALL_STATE(8629)] = 259077, - [SMALL_STATE(8630)] = 259087, - [SMALL_STATE(8631)] = 259097, - [SMALL_STATE(8632)] = 259107, - [SMALL_STATE(8633)] = 259117, - [SMALL_STATE(8634)] = 259127, - [SMALL_STATE(8635)] = 259137, - [SMALL_STATE(8636)] = 259147, - [SMALL_STATE(8637)] = 259157, - [SMALL_STATE(8638)] = 259167, - [SMALL_STATE(8639)] = 259177, - [SMALL_STATE(8640)] = 259187, - [SMALL_STATE(8641)] = 259197, - [SMALL_STATE(8642)] = 259207, - [SMALL_STATE(8643)] = 259217, - [SMALL_STATE(8644)] = 259227, - [SMALL_STATE(8645)] = 259237, - [SMALL_STATE(8646)] = 259247, - [SMALL_STATE(8647)] = 259257, - [SMALL_STATE(8648)] = 259267, - [SMALL_STATE(8649)] = 259277, - [SMALL_STATE(8650)] = 259287, - [SMALL_STATE(8651)] = 259297, - [SMALL_STATE(8652)] = 259307, - [SMALL_STATE(8653)] = 259317, - [SMALL_STATE(8654)] = 259327, - [SMALL_STATE(8655)] = 259337, - [SMALL_STATE(8656)] = 259347, - [SMALL_STATE(8657)] = 259357, - [SMALL_STATE(8658)] = 259367, - [SMALL_STATE(8659)] = 259377, - [SMALL_STATE(8660)] = 259387, - [SMALL_STATE(8661)] = 259397, - [SMALL_STATE(8662)] = 259407, - [SMALL_STATE(8663)] = 259417, - [SMALL_STATE(8664)] = 259427, - [SMALL_STATE(8665)] = 259437, - [SMALL_STATE(8666)] = 259447, - [SMALL_STATE(8667)] = 259457, - [SMALL_STATE(8668)] = 259467, - [SMALL_STATE(8669)] = 259477, - [SMALL_STATE(8670)] = 259487, - [SMALL_STATE(8671)] = 259497, - [SMALL_STATE(8672)] = 259507, - [SMALL_STATE(8673)] = 259517, - [SMALL_STATE(8674)] = 259527, - [SMALL_STATE(8675)] = 259537, - [SMALL_STATE(8676)] = 259547, - [SMALL_STATE(8677)] = 259557, - [SMALL_STATE(8678)] = 259567, - [SMALL_STATE(8679)] = 259577, - [SMALL_STATE(8680)] = 259587, - [SMALL_STATE(8681)] = 259597, + [SMALL_STATE(1705)] = 0, + [SMALL_STATE(1706)] = 73, + [SMALL_STATE(1707)] = 146, + [SMALL_STATE(1708)] = 219, + [SMALL_STATE(1709)] = 292, + [SMALL_STATE(1710)] = 365, + [SMALL_STATE(1711)] = 438, + [SMALL_STATE(1712)] = 511, + [SMALL_STATE(1713)] = 584, + [SMALL_STATE(1714)] = 657, + [SMALL_STATE(1715)] = 764, + [SMALL_STATE(1716)] = 839, + [SMALL_STATE(1717)] = 912, + [SMALL_STATE(1718)] = 985, + [SMALL_STATE(1719)] = 1058, + [SMALL_STATE(1720)] = 1131, + [SMALL_STATE(1721)] = 1204, + [SMALL_STATE(1722)] = 1285, + [SMALL_STATE(1723)] = 1358, + [SMALL_STATE(1724)] = 1431, + [SMALL_STATE(1725)] = 1504, + [SMALL_STATE(1726)] = 1577, + [SMALL_STATE(1727)] = 1650, + [SMALL_STATE(1728)] = 1725, + [SMALL_STATE(1729)] = 1800, + [SMALL_STATE(1730)] = 1873, + [SMALL_STATE(1731)] = 1946, + [SMALL_STATE(1732)] = 2021, + [SMALL_STATE(1733)] = 2094, + [SMALL_STATE(1734)] = 2169, + [SMALL_STATE(1735)] = 2242, + [SMALL_STATE(1736)] = 2315, + [SMALL_STATE(1737)] = 2396, + [SMALL_STATE(1738)] = 2469, + [SMALL_STATE(1739)] = 2542, + [SMALL_STATE(1740)] = 2615, + [SMALL_STATE(1741)] = 2688, + [SMALL_STATE(1742)] = 2761, + [SMALL_STATE(1743)] = 2834, + [SMALL_STATE(1744)] = 2909, + [SMALL_STATE(1745)] = 3016, + [SMALL_STATE(1746)] = 3089, + [SMALL_STATE(1747)] = 3162, + [SMALL_STATE(1748)] = 3235, + [SMALL_STATE(1749)] = 3308, + [SMALL_STATE(1750)] = 3381, + [SMALL_STATE(1751)] = 3484, + [SMALL_STATE(1752)] = 3559, + [SMALL_STATE(1753)] = 3632, + [SMALL_STATE(1754)] = 3705, + [SMALL_STATE(1755)] = 3778, + [SMALL_STATE(1756)] = 3851, + [SMALL_STATE(1757)] = 3924, + [SMALL_STATE(1758)] = 4031, + [SMALL_STATE(1759)] = 4104, + [SMALL_STATE(1760)] = 4207, + [SMALL_STATE(1761)] = 4280, + [SMALL_STATE(1762)] = 4353, + [SMALL_STATE(1763)] = 4426, + [SMALL_STATE(1764)] = 4499, + [SMALL_STATE(1765)] = 4572, + [SMALL_STATE(1766)] = 4645, + [SMALL_STATE(1767)] = 4720, + [SMALL_STATE(1768)] = 4793, + [SMALL_STATE(1769)] = 4866, + [SMALL_STATE(1770)] = 4941, + [SMALL_STATE(1771)] = 5014, + [SMALL_STATE(1772)] = 5117, + [SMALL_STATE(1773)] = 5192, + [SMALL_STATE(1774)] = 5265, + [SMALL_STATE(1775)] = 5340, + [SMALL_STATE(1776)] = 5413, + [SMALL_STATE(1777)] = 5486, + [SMALL_STATE(1778)] = 5559, + [SMALL_STATE(1779)] = 5632, + [SMALL_STATE(1780)] = 5705, + [SMALL_STATE(1781)] = 5778, + [SMALL_STATE(1782)] = 5851, + [SMALL_STATE(1783)] = 5926, + [SMALL_STATE(1784)] = 6001, + [SMALL_STATE(1785)] = 6074, + [SMALL_STATE(1786)] = 6147, + [SMALL_STATE(1787)] = 6220, + [SMALL_STATE(1788)] = 6295, + [SMALL_STATE(1789)] = 6368, + [SMALL_STATE(1790)] = 6441, + [SMALL_STATE(1791)] = 6514, + [SMALL_STATE(1792)] = 6587, + [SMALL_STATE(1793)] = 6660, + [SMALL_STATE(1794)] = 6733, + [SMALL_STATE(1795)] = 6806, + [SMALL_STATE(1796)] = 6879, + [SMALL_STATE(1797)] = 6952, + [SMALL_STATE(1798)] = 7025, + [SMALL_STATE(1799)] = 7098, + [SMALL_STATE(1800)] = 7171, + [SMALL_STATE(1801)] = 7244, + [SMALL_STATE(1802)] = 7317, + [SMALL_STATE(1803)] = 7390, + [SMALL_STATE(1804)] = 7463, + [SMALL_STATE(1805)] = 7536, + [SMALL_STATE(1806)] = 7609, + [SMALL_STATE(1807)] = 7682, + [SMALL_STATE(1808)] = 7757, + [SMALL_STATE(1809)] = 7830, + [SMALL_STATE(1810)] = 7903, + [SMALL_STATE(1811)] = 7976, + [SMALL_STATE(1812)] = 8051, + [SMALL_STATE(1813)] = 8124, + [SMALL_STATE(1814)] = 8197, + [SMALL_STATE(1815)] = 8270, + [SMALL_STATE(1816)] = 8343, + [SMALL_STATE(1817)] = 8416, + [SMALL_STATE(1818)] = 8489, + [SMALL_STATE(1819)] = 8562, + [SMALL_STATE(1820)] = 8642, + [SMALL_STATE(1821)] = 8718, + [SMALL_STATE(1822)] = 8794, + [SMALL_STATE(1823)] = 8866, + [SMALL_STATE(1824)] = 8938, + [SMALL_STATE(1825)] = 9080, + [SMALL_STATE(1826)] = 9152, + [SMALL_STATE(1827)] = 9224, + [SMALL_STATE(1828)] = 9296, + [SMALL_STATE(1829)] = 9368, + [SMALL_STATE(1830)] = 9444, + [SMALL_STATE(1831)] = 9516, + [SMALL_STATE(1832)] = 9588, + [SMALL_STATE(1833)] = 9660, + [SMALL_STATE(1834)] = 9732, + [SMALL_STATE(1835)] = 9804, + [SMALL_STATE(1836)] = 9876, + [SMALL_STATE(1837)] = 9948, + [SMALL_STATE(1838)] = 10024, + [SMALL_STATE(1839)] = 10096, + [SMALL_STATE(1840)] = 10172, + [SMALL_STATE(1841)] = 10246, + [SMALL_STATE(1842)] = 10318, + [SMALL_STATE(1843)] = 10394, + [SMALL_STATE(1844)] = 10466, + [SMALL_STATE(1845)] = 10538, + [SMALL_STATE(1846)] = 10614, + [SMALL_STATE(1847)] = 10686, + [SMALL_STATE(1848)] = 10758, + [SMALL_STATE(1849)] = 10830, + [SMALL_STATE(1850)] = 10902, + [SMALL_STATE(1851)] = 10974, + [SMALL_STATE(1852)] = 11050, + [SMALL_STATE(1853)] = 11122, + [SMALL_STATE(1854)] = 11198, + [SMALL_STATE(1855)] = 11270, + [SMALL_STATE(1856)] = 11342, + [SMALL_STATE(1857)] = 11414, + [SMALL_STATE(1858)] = 11490, + [SMALL_STATE(1859)] = 11566, + [SMALL_STATE(1860)] = 11708, + [SMALL_STATE(1861)] = 11784, + [SMALL_STATE(1862)] = 11860, + [SMALL_STATE(1863)] = 11932, + [SMALL_STATE(1864)] = 12008, + [SMALL_STATE(1865)] = 12080, + [SMALL_STATE(1866)] = 12152, + [SMALL_STATE(1867)] = 12224, + [SMALL_STATE(1868)] = 12296, + [SMALL_STATE(1869)] = 12372, + [SMALL_STATE(1870)] = 12444, + [SMALL_STATE(1871)] = 12520, + [SMALL_STATE(1872)] = 12596, + [SMALL_STATE(1873)] = 12668, + [SMALL_STATE(1874)] = 12744, + [SMALL_STATE(1875)] = 12816, + [SMALL_STATE(1876)] = 12888, + [SMALL_STATE(1877)] = 12964, + [SMALL_STATE(1878)] = 13036, + [SMALL_STATE(1879)] = 13112, + [SMALL_STATE(1880)] = 13188, + [SMALL_STATE(1881)] = 13264, + [SMALL_STATE(1882)] = 13336, + [SMALL_STATE(1883)] = 13408, + [SMALL_STATE(1884)] = 13484, + [SMALL_STATE(1885)] = 13560, + [SMALL_STATE(1886)] = 13632, + [SMALL_STATE(1887)] = 13704, + [SMALL_STATE(1888)] = 13776, + [SMALL_STATE(1889)] = 13848, + [SMALL_STATE(1890)] = 13920, + [SMALL_STATE(1891)] = 13992, + [SMALL_STATE(1892)] = 14064, + [SMALL_STATE(1893)] = 14144, + [SMALL_STATE(1894)] = 14216, + [SMALL_STATE(1895)] = 14288, + [SMALL_STATE(1896)] = 14360, + [SMALL_STATE(1897)] = 14436, + [SMALL_STATE(1898)] = 14508, + [SMALL_STATE(1899)] = 14580, + [SMALL_STATE(1900)] = 14652, + [SMALL_STATE(1901)] = 14724, + [SMALL_STATE(1902)] = 14796, + [SMALL_STATE(1903)] = 14868, + [SMALL_STATE(1904)] = 14940, + [SMALL_STATE(1905)] = 15012, + [SMALL_STATE(1906)] = 15154, + [SMALL_STATE(1907)] = 15226, + [SMALL_STATE(1908)] = 15298, + [SMALL_STATE(1909)] = 15370, + [SMALL_STATE(1910)] = 15442, + [SMALL_STATE(1911)] = 15514, + [SMALL_STATE(1912)] = 15586, + [SMALL_STATE(1913)] = 15658, + [SMALL_STATE(1914)] = 15730, + [SMALL_STATE(1915)] = 15810, + [SMALL_STATE(1916)] = 15882, + [SMALL_STATE(1917)] = 15954, + [SMALL_STATE(1918)] = 16026, + [SMALL_STATE(1919)] = 16098, + [SMALL_STATE(1920)] = 16170, + [SMALL_STATE(1921)] = 16246, + [SMALL_STATE(1922)] = 16318, + [SMALL_STATE(1923)] = 16390, + [SMALL_STATE(1924)] = 16462, + [SMALL_STATE(1925)] = 16534, + [SMALL_STATE(1926)] = 16606, + [SMALL_STATE(1927)] = 16678, + [SMALL_STATE(1928)] = 16750, + [SMALL_STATE(1929)] = 16822, + [SMALL_STATE(1930)] = 16894, + [SMALL_STATE(1931)] = 16966, + [SMALL_STATE(1932)] = 17038, + [SMALL_STATE(1933)] = 17110, + [SMALL_STATE(1934)] = 17182, + [SMALL_STATE(1935)] = 17258, + [SMALL_STATE(1936)] = 17330, + [SMALL_STATE(1937)] = 17402, + [SMALL_STATE(1938)] = 17474, + [SMALL_STATE(1939)] = 17546, + [SMALL_STATE(1940)] = 17618, + [SMALL_STATE(1941)] = 17690, + [SMALL_STATE(1942)] = 17762, + [SMALL_STATE(1943)] = 17834, + [SMALL_STATE(1944)] = 17906, + [SMALL_STATE(1945)] = 17978, + [SMALL_STATE(1946)] = 18050, + [SMALL_STATE(1947)] = 18192, + [SMALL_STATE(1948)] = 18334, + [SMALL_STATE(1949)] = 18476, + [SMALL_STATE(1950)] = 18548, + [SMALL_STATE(1951)] = 18627, + [SMALL_STATE(1952)] = 18704, + [SMALL_STATE(1953)] = 18781, + [SMALL_STATE(1954)] = 18858, + [SMALL_STATE(1955)] = 18935, + [SMALL_STATE(1956)] = 19012, + [SMALL_STATE(1957)] = 19089, + [SMALL_STATE(1958)] = 19166, + [SMALL_STATE(1959)] = 19243, + [SMALL_STATE(1960)] = 19320, + [SMALL_STATE(1961)] = 19397, + [SMALL_STATE(1962)] = 19474, + [SMALL_STATE(1963)] = 19551, + [SMALL_STATE(1964)] = 19628, + [SMALL_STATE(1965)] = 19705, + [SMALL_STATE(1966)] = 19782, + [SMALL_STATE(1967)] = 19859, + [SMALL_STATE(1968)] = 19936, + [SMALL_STATE(1969)] = 20013, + [SMALL_STATE(1970)] = 20090, + [SMALL_STATE(1971)] = 20167, + [SMALL_STATE(1972)] = 20244, + [SMALL_STATE(1973)] = 20321, + [SMALL_STATE(1974)] = 20396, + [SMALL_STATE(1975)] = 20475, + [SMALL_STATE(1976)] = 20554, + [SMALL_STATE(1977)] = 20633, + [SMALL_STATE(1978)] = 20712, + [SMALL_STATE(1979)] = 20791, + [SMALL_STATE(1980)] = 20870, + [SMALL_STATE(1981)] = 20947, + [SMALL_STATE(1982)] = 21024, + [SMALL_STATE(1983)] = 21101, + [SMALL_STATE(1984)] = 21178, + [SMALL_STATE(1985)] = 21253, + [SMALL_STATE(1986)] = 21330, + [SMALL_STATE(1987)] = 21407, + [SMALL_STATE(1988)] = 21484, + [SMALL_STATE(1989)] = 21561, + [SMALL_STATE(1990)] = 21638, + [SMALL_STATE(1991)] = 21715, + [SMALL_STATE(1992)] = 21792, + [SMALL_STATE(1993)] = 21869, + [SMALL_STATE(1994)] = 21946, + [SMALL_STATE(1995)] = 22025, + [SMALL_STATE(1996)] = 22104, + [SMALL_STATE(1997)] = 22183, + [SMALL_STATE(1998)] = 22262, + [SMALL_STATE(1999)] = 22341, + [SMALL_STATE(2000)] = 22420, + [SMALL_STATE(2001)] = 22493, + [SMALL_STATE(2002)] = 22566, + [SMALL_STATE(2003)] = 22645, + [SMALL_STATE(2004)] = 22724, + [SMALL_STATE(2005)] = 22803, + [SMALL_STATE(2006)] = 22882, + [SMALL_STATE(2007)] = 22957, + [SMALL_STATE(2008)] = 23036, + [SMALL_STATE(2009)] = 23117, + [SMALL_STATE(2010)] = 23194, + [SMALL_STATE(2011)] = 23273, + [SMALL_STATE(2012)] = 23348, + [SMALL_STATE(2013)] = 23425, + [SMALL_STATE(2014)] = 23502, + [SMALL_STATE(2015)] = 23579, + [SMALL_STATE(2016)] = 23650, + [SMALL_STATE(2017)] = 23727, + [SMALL_STATE(2018)] = 23798, + [SMALL_STATE(2019)] = 23875, + [SMALL_STATE(2020)] = 23952, + [SMALL_STATE(2021)] = 24029, + [SMALL_STATE(2022)] = 24100, + [SMALL_STATE(2023)] = 24171, + [SMALL_STATE(2024)] = 24248, + [SMALL_STATE(2025)] = 24319, + [SMALL_STATE(2026)] = 24390, + [SMALL_STATE(2027)] = 24461, + [SMALL_STATE(2028)] = 24538, + [SMALL_STATE(2029)] = 24615, + [SMALL_STATE(2030)] = 24692, + [SMALL_STATE(2031)] = 24769, + [SMALL_STATE(2032)] = 24840, + [SMALL_STATE(2033)] = 24911, + [SMALL_STATE(2034)] = 24982, + [SMALL_STATE(2035)] = 25053, + [SMALL_STATE(2036)] = 25130, + [SMALL_STATE(2037)] = 25201, + [SMALL_STATE(2038)] = 25272, + [SMALL_STATE(2039)] = 25343, + [SMALL_STATE(2040)] = 25414, + [SMALL_STATE(2041)] = 25485, + [SMALL_STATE(2042)] = 25556, + [SMALL_STATE(2043)] = 25627, + [SMALL_STATE(2044)] = 25698, + [SMALL_STATE(2045)] = 25769, + [SMALL_STATE(2046)] = 25848, + [SMALL_STATE(2047)] = 25919, + [SMALL_STATE(2048)] = 25990, + [SMALL_STATE(2049)] = 26061, + [SMALL_STATE(2050)] = 26200, + [SMALL_STATE(2051)] = 26271, + [SMALL_STATE(2052)] = 26342, + [SMALL_STATE(2053)] = 26481, + [SMALL_STATE(2054)] = 26552, + [SMALL_STATE(2055)] = 26623, + [SMALL_STATE(2056)] = 26694, + [SMALL_STATE(2057)] = 26765, + [SMALL_STATE(2058)] = 26836, + [SMALL_STATE(2059)] = 26907, + [SMALL_STATE(2060)] = 26978, + [SMALL_STATE(2061)] = 27049, + [SMALL_STATE(2062)] = 27120, + [SMALL_STATE(2063)] = 27191, + [SMALL_STATE(2064)] = 27262, + [SMALL_STATE(2065)] = 27341, + [SMALL_STATE(2066)] = 27422, + [SMALL_STATE(2067)] = 27501, + [SMALL_STATE(2068)] = 27640, + [SMALL_STATE(2069)] = 27779, + [SMALL_STATE(2070)] = 27860, + [SMALL_STATE(2071)] = 27937, + [SMALL_STATE(2072)] = 28014, + [SMALL_STATE(2073)] = 28091, + [SMALL_STATE(2074)] = 28161, + [SMALL_STATE(2075)] = 28297, + [SMALL_STATE(2076)] = 28367, + [SMALL_STATE(2077)] = 28437, + [SMALL_STATE(2078)] = 28573, + [SMALL_STATE(2079)] = 28643, + [SMALL_STATE(2080)] = 28713, + [SMALL_STATE(2081)] = 28787, + [SMALL_STATE(2082)] = 28857, + [SMALL_STATE(2083)] = 28931, + [SMALL_STATE(2084)] = 29001, + [SMALL_STATE(2085)] = 29075, + [SMALL_STATE(2086)] = 29145, + [SMALL_STATE(2087)] = 29215, + [SMALL_STATE(2088)] = 29289, + [SMALL_STATE(2089)] = 29363, + [SMALL_STATE(2090)] = 29437, + [SMALL_STATE(2091)] = 29511, + [SMALL_STATE(2092)] = 29581, + [SMALL_STATE(2093)] = 29651, + [SMALL_STATE(2094)] = 29721, + [SMALL_STATE(2095)] = 29791, + [SMALL_STATE(2096)] = 29861, + [SMALL_STATE(2097)] = 29931, + [SMALL_STATE(2098)] = 30001, + [SMALL_STATE(2099)] = 30071, + [SMALL_STATE(2100)] = 30141, + [SMALL_STATE(2101)] = 30211, + [SMALL_STATE(2102)] = 30281, + [SMALL_STATE(2103)] = 30351, + [SMALL_STATE(2104)] = 30421, + [SMALL_STATE(2105)] = 30491, + [SMALL_STATE(2106)] = 30561, + [SMALL_STATE(2107)] = 30631, + [SMALL_STATE(2108)] = 30709, + [SMALL_STATE(2109)] = 30779, + [SMALL_STATE(2110)] = 30849, + [SMALL_STATE(2111)] = 30919, + [SMALL_STATE(2112)] = 30989, + [SMALL_STATE(2113)] = 31063, + [SMALL_STATE(2114)] = 31137, + [SMALL_STATE(2115)] = 31211, + [SMALL_STATE(2116)] = 31281, + [SMALL_STATE(2117)] = 31417, + [SMALL_STATE(2118)] = 31489, + [SMALL_STATE(2119)] = 31559, + [SMALL_STATE(2120)] = 31633, + [SMALL_STATE(2121)] = 31707, + [SMALL_STATE(2122)] = 31777, + [SMALL_STATE(2123)] = 31851, + [SMALL_STATE(2124)] = 31925, + [SMALL_STATE(2125)] = 32061, + [SMALL_STATE(2126)] = 32131, + [SMALL_STATE(2127)] = 32201, + [SMALL_STATE(2128)] = 32271, + [SMALL_STATE(2129)] = 32341, + [SMALL_STATE(2130)] = 32411, + [SMALL_STATE(2131)] = 32481, + [SMALL_STATE(2132)] = 32551, + [SMALL_STATE(2133)] = 32621, + [SMALL_STATE(2134)] = 32695, + [SMALL_STATE(2135)] = 32765, + [SMALL_STATE(2136)] = 32837, + [SMALL_STATE(2137)] = 32911, + [SMALL_STATE(2138)] = 32981, + [SMALL_STATE(2139)] = 33051, + [SMALL_STATE(2140)] = 33121, + [SMALL_STATE(2141)] = 33191, + [SMALL_STATE(2142)] = 33261, + [SMALL_STATE(2143)] = 33331, + [SMALL_STATE(2144)] = 33401, + [SMALL_STATE(2145)] = 33471, + [SMALL_STATE(2146)] = 33545, + [SMALL_STATE(2147)] = 33619, + [SMALL_STATE(2148)] = 33755, + [SMALL_STATE(2149)] = 33891, + [SMALL_STATE(2150)] = 34027, + [SMALL_STATE(2151)] = 34163, + [SMALL_STATE(2152)] = 34299, + [SMALL_STATE(2153)] = 34435, + [SMALL_STATE(2154)] = 34505, + [SMALL_STATE(2155)] = 34576, + [SMALL_STATE(2156)] = 34647, + [SMALL_STATE(2157)] = 34718, + [SMALL_STATE(2158)] = 34789, + [SMALL_STATE(2159)] = 34860, + [SMALL_STATE(2160)] = 34931, + [SMALL_STATE(2161)] = 35002, + [SMALL_STATE(2162)] = 35073, + [SMALL_STATE(2163)] = 35144, + [SMALL_STATE(2164)] = 35215, + [SMALL_STATE(2165)] = 35286, + [SMALL_STATE(2166)] = 35357, + [SMALL_STATE(2167)] = 35434, + [SMALL_STATE(2168)] = 35505, + [SMALL_STATE(2169)] = 35576, + [SMALL_STATE(2170)] = 35647, + [SMALL_STATE(2171)] = 35718, + [SMALL_STATE(2172)] = 35789, + [SMALL_STATE(2173)] = 35860, + [SMALL_STATE(2174)] = 35931, + [SMALL_STATE(2175)] = 36002, + [SMALL_STATE(2176)] = 36073, + [SMALL_STATE(2177)] = 36144, + [SMALL_STATE(2178)] = 36215, + [SMALL_STATE(2179)] = 36286, + [SMALL_STATE(2180)] = 36357, + [SMALL_STATE(2181)] = 36428, + [SMALL_STATE(2182)] = 36499, + [SMALL_STATE(2183)] = 36570, + [SMALL_STATE(2184)] = 36641, + [SMALL_STATE(2185)] = 36710, + [SMALL_STATE(2186)] = 36781, + [SMALL_STATE(2187)] = 36852, + [SMALL_STATE(2188)] = 36923, + [SMALL_STATE(2189)] = 36994, + [SMALL_STATE(2190)] = 37065, + [SMALL_STATE(2191)] = 37136, + [SMALL_STATE(2192)] = 37207, + [SMALL_STATE(2193)] = 37278, + [SMALL_STATE(2194)] = 37349, + [SMALL_STATE(2195)] = 37418, + [SMALL_STATE(2196)] = 37489, + [SMALL_STATE(2197)] = 37560, + [SMALL_STATE(2198)] = 37631, + [SMALL_STATE(2199)] = 37702, + [SMALL_STATE(2200)] = 37773, + [SMALL_STATE(2201)] = 37844, + [SMALL_STATE(2202)] = 37915, + [SMALL_STATE(2203)] = 37984, + [SMALL_STATE(2204)] = 38055, + [SMALL_STATE(2205)] = 38126, + [SMALL_STATE(2206)] = 38197, + [SMALL_STATE(2207)] = 38268, + [SMALL_STATE(2208)] = 38339, + [SMALL_STATE(2209)] = 38438, + [SMALL_STATE(2210)] = 38509, + [SMALL_STATE(2211)] = 38580, + [SMALL_STATE(2212)] = 38651, + [SMALL_STATE(2213)] = 38722, + [SMALL_STATE(2214)] = 38821, + [SMALL_STATE(2215)] = 38892, + [SMALL_STATE(2216)] = 38963, + [SMALL_STATE(2217)] = 39034, + [SMALL_STATE(2218)] = 39105, + [SMALL_STATE(2219)] = 39176, + [SMALL_STATE(2220)] = 39247, + [SMALL_STATE(2221)] = 39318, + [SMALL_STATE(2222)] = 39389, + [SMALL_STATE(2223)] = 39476, + [SMALL_STATE(2224)] = 39547, + [SMALL_STATE(2225)] = 39618, + [SMALL_STATE(2226)] = 39689, + [SMALL_STATE(2227)] = 39760, + [SMALL_STATE(2228)] = 39831, + [SMALL_STATE(2229)] = 39902, + [SMALL_STATE(2230)] = 39973, + [SMALL_STATE(2231)] = 40044, + [SMALL_STATE(2232)] = 40143, + [SMALL_STATE(2233)] = 40216, + [SMALL_STATE(2234)] = 40289, + [SMALL_STATE(2235)] = 40366, + [SMALL_STATE(2236)] = 40437, + [SMALL_STATE(2237)] = 40508, + [SMALL_STATE(2238)] = 40585, + [SMALL_STATE(2239)] = 40654, + [SMALL_STATE(2240)] = 40725, + [SMALL_STATE(2241)] = 40796, + [SMALL_STATE(2242)] = 40867, + [SMALL_STATE(2243)] = 40938, + [SMALL_STATE(2244)] = 41009, + [SMALL_STATE(2245)] = 41080, + [SMALL_STATE(2246)] = 41151, + [SMALL_STATE(2247)] = 41224, + [SMALL_STATE(2248)] = 41297, + [SMALL_STATE(2249)] = 41368, + [SMALL_STATE(2250)] = 41439, + [SMALL_STATE(2251)] = 41510, + [SMALL_STATE(2252)] = 41581, + [SMALL_STATE(2253)] = 41654, + [SMALL_STATE(2254)] = 41725, + [SMALL_STATE(2255)] = 41796, + [SMALL_STATE(2256)] = 41867, + [SMALL_STATE(2257)] = 41936, + [SMALL_STATE(2258)] = 42009, + [SMALL_STATE(2259)] = 42080, + [SMALL_STATE(2260)] = 42151, + [SMALL_STATE(2261)] = 42222, + [SMALL_STATE(2262)] = 42293, + [SMALL_STATE(2263)] = 42366, + [SMALL_STATE(2264)] = 42437, + [SMALL_STATE(2265)] = 42508, + [SMALL_STATE(2266)] = 42577, + [SMALL_STATE(2267)] = 42650, + [SMALL_STATE(2268)] = 42723, + [SMALL_STATE(2269)] = 42796, + [SMALL_STATE(2270)] = 42867, + [SMALL_STATE(2271)] = 42938, + [SMALL_STATE(2272)] = 43009, + [SMALL_STATE(2273)] = 43082, + [SMALL_STATE(2274)] = 43155, + [SMALL_STATE(2275)] = 43228, + [SMALL_STATE(2276)] = 43301, + [SMALL_STATE(2277)] = 43374, + [SMALL_STATE(2278)] = 43447, + [SMALL_STATE(2279)] = 43516, + [SMALL_STATE(2280)] = 43589, + [SMALL_STATE(2281)] = 43662, + [SMALL_STATE(2282)] = 43733, + [SMALL_STATE(2283)] = 43804, + [SMALL_STATE(2284)] = 43877, + [SMALL_STATE(2285)] = 43950, + [SMALL_STATE(2286)] = 44023, + [SMALL_STATE(2287)] = 44096, + [SMALL_STATE(2288)] = 44169, + [SMALL_STATE(2289)] = 44242, + [SMALL_STATE(2290)] = 44341, + [SMALL_STATE(2291)] = 44412, + [SMALL_STATE(2292)] = 44483, + [SMALL_STATE(2293)] = 44554, + [SMALL_STATE(2294)] = 44627, + [SMALL_STATE(2295)] = 44700, + [SMALL_STATE(2296)] = 44773, + [SMALL_STATE(2297)] = 44844, + [SMALL_STATE(2298)] = 44915, + [SMALL_STATE(2299)] = 44986, + [SMALL_STATE(2300)] = 45057, + [SMALL_STATE(2301)] = 45128, + [SMALL_STATE(2302)] = 45199, + [SMALL_STATE(2303)] = 45270, + [SMALL_STATE(2304)] = 45341, + [SMALL_STATE(2305)] = 45412, + [SMALL_STATE(2306)] = 45483, + [SMALL_STATE(2307)] = 45554, + [SMALL_STATE(2308)] = 45625, + [SMALL_STATE(2309)] = 45696, + [SMALL_STATE(2310)] = 45784, + [SMALL_STATE(2311)] = 45858, + [SMALL_STATE(2312)] = 45954, + [SMALL_STATE(2313)] = 46052, + [SMALL_STATE(2314)] = 46150, + [SMALL_STATE(2315)] = 46250, + [SMALL_STATE(2316)] = 46326, + [SMALL_STATE(2317)] = 46400, + [SMALL_STATE(2318)] = 46472, + [SMALL_STATE(2319)] = 46572, + [SMALL_STATE(2320)] = 46674, + [SMALL_STATE(2321)] = 46776, + [SMALL_STATE(2322)] = 46874, + [SMALL_STATE(2323)] = 46962, + [SMALL_STATE(2324)] = 47050, + [SMALL_STATE(2325)] = 47146, + [SMALL_STATE(2326)] = 47236, + [SMALL_STATE(2327)] = 47326, + [SMALL_STATE(2328)] = 47424, + [SMALL_STATE(2329)] = 47502, + [SMALL_STATE(2330)] = 47574, + [SMALL_STATE(2331)] = 47646, + [SMALL_STATE(2332)] = 47736, + [SMALL_STATE(2333)] = 47804, + [SMALL_STATE(2334)] = 47888, + [SMALL_STATE(2335)] = 47980, + [SMALL_STATE(2336)] = 48060, + [SMALL_STATE(2337)] = 48138, + [SMALL_STATE(2338)] = 48220, + [SMALL_STATE(2339)] = 48302, + [SMALL_STATE(2340)] = 48390, + [SMALL_STATE(2341)] = 48480, + [SMALL_STATE(2342)] = 48560, + [SMALL_STATE(2343)] = 48652, + [SMALL_STATE(2344)] = 48728, + [SMALL_STATE(2345)] = 48810, + [SMALL_STATE(2346)] = 48886, + [SMALL_STATE(2347)] = 48960, + [SMALL_STATE(2348)] = 49052, + [SMALL_STATE(2349)] = 49138, + [SMALL_STATE(2350)] = 49234, + [SMALL_STATE(2351)] = 49328, + [SMALL_STATE(2352)] = 49426, + [SMALL_STATE(2353)] = 49520, + [SMALL_STATE(2354)] = 49608, + [SMALL_STATE(2355)] = 49708, + [SMALL_STATE(2356)] = 49802, + [SMALL_STATE(2357)] = 49874, + [SMALL_STATE(2358)] = 49970, + [SMALL_STATE(2359)] = 50062, + [SMALL_STATE(2360)] = 50164, + [SMALL_STATE(2361)] = 50260, + [SMALL_STATE(2362)] = 50330, + [SMALL_STATE(2363)] = 50418, + [SMALL_STATE(2364)] = 50518, + [SMALL_STATE(2365)] = 50608, + [SMALL_STATE(2366)] = 50706, + [SMALL_STATE(2367)] = 50788, + [SMALL_STATE(2368)] = 50888, + [SMALL_STATE(2369)] = 50982, + [SMALL_STATE(2370)] = 51056, + [SMALL_STATE(2371)] = 51144, + [SMALL_STATE(2372)] = 51226, + [SMALL_STATE(2373)] = 51318, + [SMALL_STATE(2374)] = 51400, + [SMALL_STATE(2375)] = 51494, + [SMALL_STATE(2376)] = 51590, + [SMALL_STATE(2377)] = 51666, + [SMALL_STATE(2378)] = 51762, + [SMALL_STATE(2379)] = 51858, + [SMALL_STATE(2380)] = 51944, + [SMALL_STATE(2381)] = 52038, + [SMALL_STATE(2382)] = 52110, + [SMALL_STATE(2383)] = 52190, + [SMALL_STATE(2384)] = 52286, + [SMALL_STATE(2385)] = 52384, + [SMALL_STATE(2386)] = 52482, + [SMALL_STATE(2387)] = 52572, + [SMALL_STATE(2388)] = 52672, + [SMALL_STATE(2389)] = 52760, + [SMALL_STATE(2390)] = 52862, + [SMALL_STATE(2391)] = 52954, + [SMALL_STATE(2392)] = 53050, + [SMALL_STATE(2393)] = 53144, + [SMALL_STATE(2394)] = 53224, + [SMALL_STATE(2395)] = 53314, + [SMALL_STATE(2396)] = 53406, + [SMALL_STATE(2397)] = 53488, + [SMALL_STATE(2398)] = 53582, + [SMALL_STATE(2399)] = 53672, + [SMALL_STATE(2400)] = 53756, + [SMALL_STATE(2401)] = 53832, + [SMALL_STATE(2402)] = 53928, + [SMALL_STATE(2403)] = 54006, + [SMALL_STATE(2404)] = 54086, + [SMALL_STATE(2405)] = 54160, + [SMALL_STATE(2406)] = 54244, + [SMALL_STATE(2407)] = 54314, + [SMALL_STATE(2408)] = 54408, + [SMALL_STATE(2409)] = 54504, + [SMALL_STATE(2410)] = 54602, + [SMALL_STATE(2411)] = 54688, + [SMALL_STATE(2412)] = 54766, + [SMALL_STATE(2413)] = 54854, + [SMALL_STATE(2414)] = 54944, + [SMALL_STATE(2415)] = 55036, + [SMALL_STATE(2416)] = 55132, + [SMALL_STATE(2417)] = 55204, + [SMALL_STATE(2418)] = 55304, + [SMALL_STATE(2419)] = 55388, + [SMALL_STATE(2420)] = 55458, + [SMALL_STATE(2421)] = 55542, + [SMALL_STATE(2422)] = 55628, + [SMALL_STATE(2423)] = 55700, + [SMALL_STATE(2424)] = 55770, + [SMALL_STATE(2425)] = 55866, + [SMALL_STATE(2426)] = 55966, + [SMALL_STATE(2427)] = 56058, + [SMALL_STATE(2428)] = 56142, + [SMALL_STATE(2429)] = 56230, + [SMALL_STATE(2430)] = 56300, + [SMALL_STATE(2431)] = 56376, + [SMALL_STATE(2432)] = 56472, + [SMALL_STATE(2433)] = 56556, + [SMALL_STATE(2434)] = 56638, + [SMALL_STATE(2435)] = 56722, + [SMALL_STATE(2436)] = 56818, + [SMALL_STATE(2437)] = 56894, + [SMALL_STATE(2438)] = 56990, + [SMALL_STATE(2439)] = 57086, + [SMALL_STATE(2440)] = 57182, + [SMALL_STATE(2441)] = 57254, + [SMALL_STATE(2442)] = 57332, + [SMALL_STATE(2443)] = 57418, + [SMALL_STATE(2444)] = 57492, + [SMALL_STATE(2445)] = 57564, + [SMALL_STATE(2446)] = 57638, + [SMALL_STATE(2447)] = 57705, + [SMALL_STATE(2448)] = 57776, + [SMALL_STATE(2449)] = 57843, + [SMALL_STATE(2450)] = 57910, + [SMALL_STATE(2451)] = 57977, + [SMALL_STATE(2452)] = 58064, + [SMALL_STATE(2453)] = 58131, + [SMALL_STATE(2454)] = 58200, + [SMALL_STATE(2455)] = 58267, + [SMALL_STATE(2456)] = 58336, + [SMALL_STATE(2457)] = 58403, + [SMALL_STATE(2458)] = 58492, + [SMALL_STATE(2459)] = 58559, + [SMALL_STATE(2460)] = 58626, + [SMALL_STATE(2461)] = 58693, + [SMALL_STATE(2462)] = 58778, + [SMALL_STATE(2463)] = 58845, + [SMALL_STATE(2464)] = 58936, + [SMALL_STATE(2465)] = 59003, + [SMALL_STATE(2466)] = 59070, + [SMALL_STATE(2467)] = 59139, + [SMALL_STATE(2468)] = 59208, + [SMALL_STATE(2469)] = 59275, + [SMALL_STATE(2470)] = 59342, + [SMALL_STATE(2471)] = 59409, + [SMALL_STATE(2472)] = 59476, + [SMALL_STATE(2473)] = 59543, + [SMALL_STATE(2474)] = 59610, + [SMALL_STATE(2475)] = 59677, + [SMALL_STATE(2476)] = 59744, + [SMALL_STATE(2477)] = 59811, + [SMALL_STATE(2478)] = 59878, + [SMALL_STATE(2479)] = 59945, + [SMALL_STATE(2480)] = 60012, + [SMALL_STATE(2481)] = 60079, + [SMALL_STATE(2482)] = 60146, + [SMALL_STATE(2483)] = 60213, + [SMALL_STATE(2484)] = 60280, + [SMALL_STATE(2485)] = 60347, + [SMALL_STATE(2486)] = 60414, + [SMALL_STATE(2487)] = 60481, + [SMALL_STATE(2488)] = 60548, + [SMALL_STATE(2489)] = 60615, + [SMALL_STATE(2490)] = 60682, + [SMALL_STATE(2491)] = 60749, + [SMALL_STATE(2492)] = 60846, + [SMALL_STATE(2493)] = 60913, + [SMALL_STATE(2494)] = 60980, + [SMALL_STATE(2495)] = 61047, + [SMALL_STATE(2496)] = 61114, + [SMALL_STATE(2497)] = 61181, + [SMALL_STATE(2498)] = 61250, + [SMALL_STATE(2499)] = 61317, + [SMALL_STATE(2500)] = 61402, + [SMALL_STATE(2501)] = 61469, + [SMALL_STATE(2502)] = 61536, + [SMALL_STATE(2503)] = 61603, + [SMALL_STATE(2504)] = 61670, + [SMALL_STATE(2505)] = 61737, + [SMALL_STATE(2506)] = 61806, + [SMALL_STATE(2507)] = 61873, + [SMALL_STATE(2508)] = 61940, + [SMALL_STATE(2509)] = 62007, + [SMALL_STATE(2510)] = 62074, + [SMALL_STATE(2511)] = 62141, + [SMALL_STATE(2512)] = 62208, + [SMALL_STATE(2513)] = 62275, + [SMALL_STATE(2514)] = 62342, + [SMALL_STATE(2515)] = 62409, + [SMALL_STATE(2516)] = 62476, + [SMALL_STATE(2517)] = 62543, + [SMALL_STATE(2518)] = 62610, + [SMALL_STATE(2519)] = 62677, + [SMALL_STATE(2520)] = 62762, + [SMALL_STATE(2521)] = 62829, + [SMALL_STATE(2522)] = 62896, + [SMALL_STATE(2523)] = 62963, + [SMALL_STATE(2524)] = 63048, + [SMALL_STATE(2525)] = 63115, + [SMALL_STATE(2526)] = 63194, + [SMALL_STATE(2527)] = 63261, + [SMALL_STATE(2528)] = 63328, + [SMALL_STATE(2529)] = 63401, + [SMALL_STATE(2530)] = 63468, + [SMALL_STATE(2531)] = 63541, + [SMALL_STATE(2532)] = 63608, + [SMALL_STATE(2533)] = 63675, + [SMALL_STATE(2534)] = 63756, + [SMALL_STATE(2535)] = 63839, + [SMALL_STATE(2536)] = 63920, + [SMALL_STATE(2537)] = 63997, + [SMALL_STATE(2538)] = 64064, + [SMALL_STATE(2539)] = 64131, + [SMALL_STATE(2540)] = 64198, + [SMALL_STATE(2541)] = 64267, + [SMALL_STATE(2542)] = 64338, + [SMALL_STATE(2543)] = 64419, + [SMALL_STATE(2544)] = 64500, + [SMALL_STATE(2545)] = 64567, + [SMALL_STATE(2546)] = 64660, + [SMALL_STATE(2547)] = 64727, + [SMALL_STATE(2548)] = 64794, + [SMALL_STATE(2549)] = 64875, + [SMALL_STATE(2550)] = 64970, + [SMALL_STATE(2551)] = 65037, + [SMALL_STATE(2552)] = 65104, + [SMALL_STATE(2553)] = 65171, + [SMALL_STATE(2554)] = 65238, + [SMALL_STATE(2555)] = 65305, + [SMALL_STATE(2556)] = 65372, + [SMALL_STATE(2557)] = 65439, + [SMALL_STATE(2558)] = 65507, + [SMALL_STATE(2559)] = 65573, + [SMALL_STATE(2560)] = 65663, + [SMALL_STATE(2561)] = 65753, + [SMALL_STATE(2562)] = 65827, + [SMALL_STATE(2563)] = 65893, + [SMALL_STATE(2564)] = 65983, + [SMALL_STATE(2565)] = 66059, + [SMALL_STATE(2566)] = 66125, + [SMALL_STATE(2567)] = 66195, + [SMALL_STATE(2568)] = 66261, + [SMALL_STATE(2569)] = 66327, + [SMALL_STATE(2570)] = 66417, + [SMALL_STATE(2571)] = 66507, + [SMALL_STATE(2572)] = 66597, + [SMALL_STATE(2573)] = 66679, + [SMALL_STATE(2574)] = 66769, + [SMALL_STATE(2575)] = 66835, + [SMALL_STATE(2576)] = 66903, + [SMALL_STATE(2577)] = 66985, + [SMALL_STATE(2578)] = 67075, + [SMALL_STATE(2579)] = 67141, + [SMALL_STATE(2580)] = 67231, + [SMALL_STATE(2581)] = 67301, + [SMALL_STATE(2582)] = 67389, + [SMALL_STATE(2583)] = 67479, + [SMALL_STATE(2584)] = 67545, + [SMALL_STATE(2585)] = 67635, + [SMALL_STATE(2586)] = 67701, + [SMALL_STATE(2587)] = 67791, + [SMALL_STATE(2588)] = 67873, + [SMALL_STATE(2589)] = 67943, + [SMALL_STATE(2590)] = 68025, + [SMALL_STATE(2591)] = 68091, + [SMALL_STATE(2592)] = 68157, + [SMALL_STATE(2593)] = 68231, + [SMALL_STATE(2594)] = 68297, + [SMALL_STATE(2595)] = 68371, + [SMALL_STATE(2596)] = 68437, + [SMALL_STATE(2597)] = 68503, + [SMALL_STATE(2598)] = 68569, + [SMALL_STATE(2599)] = 68639, + [SMALL_STATE(2600)] = 68726, + [SMALL_STATE(2601)] = 68791, + [SMALL_STATE(2602)] = 68856, + [SMALL_STATE(2603)] = 68921, + [SMALL_STATE(2604)] = 68986, + [SMALL_STATE(2605)] = 69051, + [SMALL_STATE(2606)] = 69116, + [SMALL_STATE(2607)] = 69203, + [SMALL_STATE(2608)] = 69268, + [SMALL_STATE(2609)] = 69341, + [SMALL_STATE(2610)] = 69428, + [SMALL_STATE(2611)] = 69515, + [SMALL_STATE(2612)] = 69580, + [SMALL_STATE(2613)] = 69645, + [SMALL_STATE(2614)] = 69710, + [SMALL_STATE(2615)] = 69781, + [SMALL_STATE(2616)] = 69850, + [SMALL_STATE(2617)] = 69937, + [SMALL_STATE(2618)] = 70004, + [SMALL_STATE(2619)] = 70071, + [SMALL_STATE(2620)] = 70144, + [SMALL_STATE(2621)] = 70209, + [SMALL_STATE(2622)] = 70296, + [SMALL_STATE(2623)] = 70363, + [SMALL_STATE(2624)] = 70430, + [SMALL_STATE(2625)] = 70517, + [SMALL_STATE(2626)] = 70604, + [SMALL_STATE(2627)] = 70691, + [SMALL_STATE(2628)] = 70764, + [SMALL_STATE(2629)] = 70851, + [SMALL_STATE(2630)] = 70938, + [SMALL_STATE(2631)] = 71003, + [SMALL_STATE(2632)] = 71090, + [SMALL_STATE(2633)] = 71155, + [SMALL_STATE(2634)] = 71242, + [SMALL_STATE(2635)] = 71329, + [SMALL_STATE(2636)] = 71416, + [SMALL_STATE(2637)] = 71503, + [SMALL_STATE(2638)] = 71590, + [SMALL_STATE(2639)] = 71677, + [SMALL_STATE(2640)] = 71742, + [SMALL_STATE(2641)] = 71807, + [SMALL_STATE(2642)] = 71872, + [SMALL_STATE(2643)] = 71959, + [SMALL_STATE(2644)] = 72024, + [SMALL_STATE(2645)] = 72111, + [SMALL_STATE(2646)] = 72198, + [SMALL_STATE(2647)] = 72285, + [SMALL_STATE(2648)] = 72372, + [SMALL_STATE(2649)] = 72459, + [SMALL_STATE(2650)] = 72524, + [SMALL_STATE(2651)] = 72611, + [SMALL_STATE(2652)] = 72698, + [SMALL_STATE(2653)] = 72785, + [SMALL_STATE(2654)] = 72872, + [SMALL_STATE(2655)] = 72959, + [SMALL_STATE(2656)] = 73024, + [SMALL_STATE(2657)] = 73111, + [SMALL_STATE(2658)] = 73176, + [SMALL_STATE(2659)] = 73263, + [SMALL_STATE(2660)] = 73350, + [SMALL_STATE(2661)] = 73437, + [SMALL_STATE(2662)] = 73524, + [SMALL_STATE(2663)] = 73589, + [SMALL_STATE(2664)] = 73654, + [SMALL_STATE(2665)] = 73719, + [SMALL_STATE(2666)] = 73806, + [SMALL_STATE(2667)] = 73893, + [SMALL_STATE(2668)] = 73958, + [SMALL_STATE(2669)] = 74023, + [SMALL_STATE(2670)] = 74110, + [SMALL_STATE(2671)] = 74182, + [SMALL_STATE(2672)] = 74250, + [SMALL_STATE(2673)] = 74322, + [SMALL_STATE(2674)] = 74394, + [SMALL_STATE(2675)] = 74466, + [SMALL_STATE(2676)] = 74534, + [SMALL_STATE(2677)] = 74598, + [SMALL_STATE(2678)] = 74670, + [SMALL_STATE(2679)] = 74734, + [SMALL_STATE(2680)] = 74798, + [SMALL_STATE(2681)] = 74870, + [SMALL_STATE(2682)] = 74942, + [SMALL_STATE(2683)] = 75014, + [SMALL_STATE(2684)] = 75084, + [SMALL_STATE(2685)] = 75152, + [SMALL_STATE(2686)] = 75224, + [SMALL_STATE(2687)] = 75300, + [SMALL_STATE(2688)] = 75368, + [SMALL_STATE(2689)] = 75440, + [SMALL_STATE(2690)] = 75512, + [SMALL_STATE(2691)] = 75584, + [SMALL_STATE(2692)] = 75648, + [SMALL_STATE(2693)] = 75720, + [SMALL_STATE(2694)] = 75784, + [SMALL_STATE(2695)] = 75848, + [SMALL_STATE(2696)] = 75920, + [SMALL_STATE(2697)] = 75992, + [SMALL_STATE(2698)] = 76064, + [SMALL_STATE(2699)] = 76136, + [SMALL_STATE(2700)] = 76200, + [SMALL_STATE(2701)] = 76272, + [SMALL_STATE(2702)] = 76340, + [SMALL_STATE(2703)] = 76404, + [SMALL_STATE(2704)] = 76468, + [SMALL_STATE(2705)] = 76532, + [SMALL_STATE(2706)] = 76596, + [SMALL_STATE(2707)] = 76670, + [SMALL_STATE(2708)] = 76734, + [SMALL_STATE(2709)] = 76856, + [SMALL_STATE(2710)] = 76978, + [SMALL_STATE(2711)] = 77050, + [SMALL_STATE(2712)] = 77114, + [SMALL_STATE(2713)] = 77178, + [SMALL_STATE(2714)] = 77242, + [SMALL_STATE(2715)] = 77358, + [SMALL_STATE(2716)] = 77422, + [SMALL_STATE(2717)] = 77494, + [SMALL_STATE(2718)] = 77564, + [SMALL_STATE(2719)] = 77630, + [SMALL_STATE(2720)] = 77696, + [SMALL_STATE(2721)] = 77768, + [SMALL_STATE(2722)] = 77832, + [SMALL_STATE(2723)] = 77950, + [SMALL_STATE(2724)] = 78014, + [SMALL_STATE(2725)] = 78078, + [SMALL_STATE(2726)] = 78150, + [SMALL_STATE(2727)] = 78214, + [SMALL_STATE(2728)] = 78284, + [SMALL_STATE(2729)] = 78348, + [SMALL_STATE(2730)] = 78420, + [SMALL_STATE(2731)] = 78484, + [SMALL_STATE(2732)] = 78600, + [SMALL_STATE(2733)] = 78718, + [SMALL_STATE(2734)] = 78782, + [SMALL_STATE(2735)] = 78854, + [SMALL_STATE(2736)] = 78920, + [SMALL_STATE(2737)] = 78990, + [SMALL_STATE(2738)] = 79060, + [SMALL_STATE(2739)] = 79124, + [SMALL_STATE(2740)] = 79188, + [SMALL_STATE(2741)] = 79252, + [SMALL_STATE(2742)] = 79316, + [SMALL_STATE(2743)] = 79380, + [SMALL_STATE(2744)] = 79444, + [SMALL_STATE(2745)] = 79508, + [SMALL_STATE(2746)] = 79572, + [SMALL_STATE(2747)] = 79640, + [SMALL_STATE(2748)] = 79704, + [SMALL_STATE(2749)] = 79768, + [SMALL_STATE(2750)] = 79840, + [SMALL_STATE(2751)] = 79904, + [SMALL_STATE(2752)] = 79967, + [SMALL_STATE(2753)] = 80038, + [SMALL_STATE(2754)] = 80103, + [SMALL_STATE(2755)] = 80174, + [SMALL_STATE(2756)] = 80245, + [SMALL_STATE(2757)] = 80316, + [SMALL_STATE(2758)] = 80387, + [SMALL_STATE(2759)] = 80458, + [SMALL_STATE(2760)] = 80529, + [SMALL_STATE(2761)] = 80600, + [SMALL_STATE(2762)] = 80671, + [SMALL_STATE(2763)] = 80742, + [SMALL_STATE(2764)] = 80813, + [SMALL_STATE(2765)] = 80884, + [SMALL_STATE(2766)] = 80955, + [SMALL_STATE(2767)] = 81024, + [SMALL_STATE(2768)] = 81091, + [SMALL_STATE(2769)] = 81158, + [SMALL_STATE(2770)] = 81225, + [SMALL_STATE(2771)] = 81290, + [SMALL_STATE(2772)] = 81357, + [SMALL_STATE(2773)] = 81422, + [SMALL_STATE(2774)] = 81535, + [SMALL_STATE(2775)] = 81606, + [SMALL_STATE(2776)] = 81677, + [SMALL_STATE(2777)] = 81740, + [SMALL_STATE(2778)] = 81803, + [SMALL_STATE(2779)] = 81870, + [SMALL_STATE(2780)] = 81951, + [SMALL_STATE(2781)] = 82014, + [SMALL_STATE(2782)] = 82081, + [SMALL_STATE(2783)] = 82144, + [SMALL_STATE(2784)] = 82219, + [SMALL_STATE(2785)] = 82332, + [SMALL_STATE(2786)] = 82397, + [SMALL_STATE(2787)] = 82460, + [SMALL_STATE(2788)] = 82533, + [SMALL_STATE(2789)] = 82604, + [SMALL_STATE(2790)] = 82719, + [SMALL_STATE(2791)] = 82784, + [SMALL_STATE(2792)] = 82855, + [SMALL_STATE(2793)] = 82926, + [SMALL_STATE(2794)] = 82989, + [SMALL_STATE(2795)] = 83052, + [SMALL_STATE(2796)] = 83165, + [SMALL_STATE(2797)] = 83230, + [SMALL_STATE(2798)] = 83343, + [SMALL_STATE(2799)] = 83410, + [SMALL_STATE(2800)] = 83481, + [SMALL_STATE(2801)] = 83546, + [SMALL_STATE(2802)] = 83661, + [SMALL_STATE(2803)] = 83731, + [SMALL_STATE(2804)] = 83793, + [SMALL_STATE(2805)] = 83855, + [SMALL_STATE(2806)] = 83917, + [SMALL_STATE(2807)] = 83979, + [SMALL_STATE(2808)] = 84045, + [SMALL_STATE(2809)] = 84111, + [SMALL_STATE(2810)] = 84181, + [SMALL_STATE(2811)] = 84245, + [SMALL_STATE(2812)] = 84309, + [SMALL_STATE(2813)] = 84371, + [SMALL_STATE(2814)] = 84435, + [SMALL_STATE(2815)] = 84505, + [SMALL_STATE(2816)] = 84569, + [SMALL_STATE(2817)] = 84631, + [SMALL_STATE(2818)] = 84695, + [SMALL_STATE(2819)] = 84757, + [SMALL_STATE(2820)] = 84819, + [SMALL_STATE(2821)] = 84881, + [SMALL_STATE(2822)] = 84951, + [SMALL_STATE(2823)] = 85021, + [SMALL_STATE(2824)] = 85083, + [SMALL_STATE(2825)] = 85149, + [SMALL_STATE(2826)] = 85219, + [SMALL_STATE(2827)] = 85289, + [SMALL_STATE(2828)] = 85359, + [SMALL_STATE(2829)] = 85427, + [SMALL_STATE(2830)] = 85497, + [SMALL_STATE(2831)] = 85567, + [SMALL_STATE(2832)] = 85631, + [SMALL_STATE(2833)] = 85695, + [SMALL_STATE(2834)] = 85763, + [SMALL_STATE(2835)] = 85829, + [SMALL_STATE(2836)] = 85897, + [SMALL_STATE(2837)] = 85967, + [SMALL_STATE(2838)] = 86035, + [SMALL_STATE(2839)] = 86103, + [SMALL_STATE(2840)] = 86173, + [SMALL_STATE(2841)] = 86241, + [SMALL_STATE(2842)] = 86319, + [SMALL_STATE(2843)] = 86385, + [SMALL_STATE(2844)] = 86447, + [SMALL_STATE(2845)] = 86517, + [SMALL_STATE(2846)] = 86587, + [SMALL_STATE(2847)] = 86649, + [SMALL_STATE(2848)] = 86711, + [SMALL_STATE(2849)] = 86781, + [SMALL_STATE(2850)] = 86859, + [SMALL_STATE(2851)] = 86927, + [SMALL_STATE(2852)] = 86993, + [SMALL_STATE(2853)] = 87055, + [SMALL_STATE(2854)] = 87117, + [SMALL_STATE(2855)] = 87185, + [SMALL_STATE(2856)] = 87247, + [SMALL_STATE(2857)] = 87309, + [SMALL_STATE(2858)] = 87379, + [SMALL_STATE(2859)] = 87449, + [SMALL_STATE(2860)] = 87519, + [SMALL_STATE(2861)] = 87589, + [SMALL_STATE(2862)] = 87659, + [SMALL_STATE(2863)] = 87729, + [SMALL_STATE(2864)] = 87791, + [SMALL_STATE(2865)] = 87853, + [SMALL_STATE(2866)] = 87915, + [SMALL_STATE(2867)] = 87985, + [SMALL_STATE(2868)] = 88053, + [SMALL_STATE(2869)] = 88117, + [SMALL_STATE(2870)] = 88197, + [SMALL_STATE(2871)] = 88261, + [SMALL_STATE(2872)] = 88331, + [SMALL_STATE(2873)] = 88397, + [SMALL_STATE(2874)] = 88465, + [SMALL_STATE(2875)] = 88533, + [SMALL_STATE(2876)] = 88597, + [SMALL_STATE(2877)] = 88661, + [SMALL_STATE(2878)] = 88723, + [SMALL_STATE(2879)] = 88792, + [SMALL_STATE(2880)] = 88857, + [SMALL_STATE(2881)] = 88920, + [SMALL_STATE(2882)] = 88983, + [SMALL_STATE(2883)] = 89046, + [SMALL_STATE(2884)] = 89107, + [SMALL_STATE(2885)] = 89168, + [SMALL_STATE(2886)] = 89231, + [SMALL_STATE(2887)] = 89308, + [SMALL_STATE(2888)] = 89375, + [SMALL_STATE(2889)] = 89440, + [SMALL_STATE(2890)] = 89511, + [SMALL_STATE(2891)] = 89572, + [SMALL_STATE(2892)] = 89635, + [SMALL_STATE(2893)] = 89696, + [SMALL_STATE(2894)] = 89761, + [SMALL_STATE(2895)] = 89826, + [SMALL_STATE(2896)] = 89887, + [SMALL_STATE(2897)] = 89948, + [SMALL_STATE(2898)] = 90009, + [SMALL_STATE(2899)] = 90074, + [SMALL_STATE(2900)] = 90139, + [SMALL_STATE(2901)] = 90200, + [SMALL_STATE(2902)] = 90265, + [SMALL_STATE(2903)] = 90330, + [SMALL_STATE(2904)] = 90391, + [SMALL_STATE(2905)] = 90452, + [SMALL_STATE(2906)] = 90517, + [SMALL_STATE(2907)] = 90578, + [SMALL_STATE(2908)] = 90641, + [SMALL_STATE(2909)] = 90702, + [SMALL_STATE(2910)] = 90763, + [SMALL_STATE(2911)] = 90824, + [SMALL_STATE(2912)] = 90889, + [SMALL_STATE(2913)] = 90950, + [SMALL_STATE(2914)] = 91011, + [SMALL_STATE(2915)] = 91072, + [SMALL_STATE(2916)] = 91137, + [SMALL_STATE(2917)] = 91202, + [SMALL_STATE(2918)] = 91267, + [SMALL_STATE(2919)] = 91328, + [SMALL_STATE(2920)] = 91393, + [SMALL_STATE(2921)] = 91454, + [SMALL_STATE(2922)] = 91515, + [SMALL_STATE(2923)] = 91580, + [SMALL_STATE(2924)] = 91657, + [SMALL_STATE(2925)] = 91720, + [SMALL_STATE(2926)] = 91785, + [SMALL_STATE(2927)] = 91850, + [SMALL_STATE(2928)] = 91911, + [SMALL_STATE(2929)] = 91972, + [SMALL_STATE(2930)] = 92033, + [SMALL_STATE(2931)] = 92094, + [SMALL_STATE(2932)] = 92155, + [SMALL_STATE(2933)] = 92220, + [SMALL_STATE(2934)] = 92281, + [SMALL_STATE(2935)] = 92346, + [SMALL_STATE(2936)] = 92411, + [SMALL_STATE(2937)] = 92474, + [SMALL_STATE(2938)] = 92537, + [SMALL_STATE(2939)] = 92602, + [SMALL_STATE(2940)] = 92663, + [SMALL_STATE(2941)] = 92724, + [SMALL_STATE(2942)] = 92785, + [SMALL_STATE(2943)] = 92850, + [SMALL_STATE(2944)] = 92913, + [SMALL_STATE(2945)] = 92973, + [SMALL_STATE(2946)] = 93033, + [SMALL_STATE(2947)] = 93093, + [SMALL_STATE(2948)] = 93159, + [SMALL_STATE(2949)] = 93219, + [SMALL_STATE(2950)] = 93279, + [SMALL_STATE(2951)] = 93345, + [SMALL_STATE(2952)] = 93407, + [SMALL_STATE(2953)] = 93469, + [SMALL_STATE(2954)] = 93529, + [SMALL_STATE(2955)] = 93589, + [SMALL_STATE(2956)] = 93649, + [SMALL_STATE(2957)] = 93715, + [SMALL_STATE(2958)] = 93781, + [SMALL_STATE(2959)] = 93843, + [SMALL_STATE(2960)] = 93907, + [SMALL_STATE(2961)] = 93967, + [SMALL_STATE(2962)] = 94033, + [SMALL_STATE(2963)] = 94099, + [SMALL_STATE(2964)] = 94165, + [SMALL_STATE(2965)] = 94225, + [SMALL_STATE(2966)] = 94285, + [SMALL_STATE(2967)] = 94351, + [SMALL_STATE(2968)] = 94417, + [SMALL_STATE(2969)] = 94481, + [SMALL_STATE(2970)] = 94541, + [SMALL_STATE(2971)] = 94603, + [SMALL_STATE(2972)] = 94665, + [SMALL_STATE(2973)] = 94727, + [SMALL_STATE(2974)] = 94787, + [SMALL_STATE(2975)] = 94853, + [SMALL_STATE(2976)] = 94919, + [SMALL_STATE(2977)] = 94979, + [SMALL_STATE(2978)] = 95039, + [SMALL_STATE(2979)] = 95103, + [SMALL_STATE(2980)] = 95163, + [SMALL_STATE(2981)] = 95223, + [SMALL_STATE(2982)] = 95285, + [SMALL_STATE(2983)] = 95345, + [SMALL_STATE(2984)] = 95405, + [SMALL_STATE(2985)] = 95467, + [SMALL_STATE(2986)] = 95527, + [SMALL_STATE(2987)] = 95587, + [SMALL_STATE(2988)] = 95647, + [SMALL_STATE(2989)] = 95709, + [SMALL_STATE(2990)] = 95769, + [SMALL_STATE(2991)] = 95829, + [SMALL_STATE(2992)] = 95889, + [SMALL_STATE(2993)] = 95949, + [SMALL_STATE(2994)] = 96009, + [SMALL_STATE(2995)] = 96069, + [SMALL_STATE(2996)] = 96129, + [SMALL_STATE(2997)] = 96191, + [SMALL_STATE(2998)] = 96251, + [SMALL_STATE(2999)] = 96311, + [SMALL_STATE(3000)] = 96371, + [SMALL_STATE(3001)] = 96431, + [SMALL_STATE(3002)] = 96497, + [SMALL_STATE(3003)] = 96557, + [SMALL_STATE(3004)] = 96617, + [SMALL_STATE(3005)] = 96677, + [SMALL_STATE(3006)] = 96737, + [SMALL_STATE(3007)] = 96797, + [SMALL_STATE(3008)] = 96857, + [SMALL_STATE(3009)] = 96917, + [SMALL_STATE(3010)] = 96979, + [SMALL_STATE(3011)] = 97039, + [SMALL_STATE(3012)] = 97099, + [SMALL_STATE(3013)] = 97159, + [SMALL_STATE(3014)] = 97219, + [SMALL_STATE(3015)] = 97279, + [SMALL_STATE(3016)] = 97353, + [SMALL_STATE(3017)] = 97413, + [SMALL_STATE(3018)] = 97473, + [SMALL_STATE(3019)] = 97533, + [SMALL_STATE(3020)] = 97593, + [SMALL_STATE(3021)] = 97653, + [SMALL_STATE(3022)] = 97715, + [SMALL_STATE(3023)] = 97779, + [SMALL_STATE(3024)] = 97839, + [SMALL_STATE(3025)] = 97899, + [SMALL_STATE(3026)] = 97963, + [SMALL_STATE(3027)] = 98023, + [SMALL_STATE(3028)] = 98083, + [SMALL_STATE(3029)] = 98143, + [SMALL_STATE(3030)] = 98203, + [SMALL_STATE(3031)] = 98263, + [SMALL_STATE(3032)] = 98323, + [SMALL_STATE(3033)] = 98383, + [SMALL_STATE(3034)] = 98443, + [SMALL_STATE(3035)] = 98502, + [SMALL_STATE(3036)] = 98563, + [SMALL_STATE(3037)] = 98624, + [SMALL_STATE(3038)] = 98683, + [SMALL_STATE(3039)] = 98742, + [SMALL_STATE(3040)] = 98801, + [SMALL_STATE(3041)] = 98860, + [SMALL_STATE(3042)] = 98919, + [SMALL_STATE(3043)] = 98978, + [SMALL_STATE(3044)] = 99037, + [SMALL_STATE(3045)] = 99096, + [SMALL_STATE(3046)] = 99155, + [SMALL_STATE(3047)] = 99214, + [SMALL_STATE(3048)] = 99273, + [SMALL_STATE(3049)] = 99334, + [SMALL_STATE(3050)] = 99395, + [SMALL_STATE(3051)] = 99454, + [SMALL_STATE(3052)] = 99513, + [SMALL_STATE(3053)] = 99574, + [SMALL_STATE(3054)] = 99647, + [SMALL_STATE(3055)] = 99706, + [SMALL_STATE(3056)] = 99765, + [SMALL_STATE(3057)] = 99824, + [SMALL_STATE(3058)] = 99883, + [SMALL_STATE(3059)] = 99942, + [SMALL_STATE(3060)] = 100003, + [SMALL_STATE(3061)] = 100064, + [SMALL_STATE(3062)] = 100127, + [SMALL_STATE(3063)] = 100188, + [SMALL_STATE(3064)] = 100247, + [SMALL_STATE(3065)] = 100306, + [SMALL_STATE(3066)] = 100365, + [SMALL_STATE(3067)] = 100426, + [SMALL_STATE(3068)] = 100485, + [SMALL_STATE(3069)] = 100544, + [SMALL_STATE(3070)] = 100603, + [SMALL_STATE(3071)] = 100666, + [SMALL_STATE(3072)] = 100727, + [SMALL_STATE(3073)] = 100786, + [SMALL_STATE(3074)] = 100845, + [SMALL_STATE(3075)] = 100904, + [SMALL_STATE(3076)] = 100963, + [SMALL_STATE(3077)] = 101022, + [SMALL_STATE(3078)] = 101085, + [SMALL_STATE(3079)] = 101144, + [SMALL_STATE(3080)] = 101205, + [SMALL_STATE(3081)] = 101264, + [SMALL_STATE(3082)] = 101323, + [SMALL_STATE(3083)] = 101382, + [SMALL_STATE(3084)] = 101441, + [SMALL_STATE(3085)] = 101500, + [SMALL_STATE(3086)] = 101561, + [SMALL_STATE(3087)] = 101620, + [SMALL_STATE(3088)] = 101679, + [SMALL_STATE(3089)] = 101738, + [SMALL_STATE(3090)] = 101797, + [SMALL_STATE(3091)] = 101856, + [SMALL_STATE(3092)] = 101917, + [SMALL_STATE(3093)] = 101976, + [SMALL_STATE(3094)] = 102039, + [SMALL_STATE(3095)] = 102102, + [SMALL_STATE(3096)] = 102161, + [SMALL_STATE(3097)] = 102224, + [SMALL_STATE(3098)] = 102283, + [SMALL_STATE(3099)] = 102342, + [SMALL_STATE(3100)] = 102401, + [SMALL_STATE(3101)] = 102462, + [SMALL_STATE(3102)] = 102521, + [SMALL_STATE(3103)] = 102580, + [SMALL_STATE(3104)] = 102639, + [SMALL_STATE(3105)] = 102698, + [SMALL_STATE(3106)] = 102757, + [SMALL_STATE(3107)] = 102816, + [SMALL_STATE(3108)] = 102875, + [SMALL_STATE(3109)] = 102934, + [SMALL_STATE(3110)] = 102993, + [SMALL_STATE(3111)] = 103052, + [SMALL_STATE(3112)] = 103111, + [SMALL_STATE(3113)] = 103170, + [SMALL_STATE(3114)] = 103229, + [SMALL_STATE(3115)] = 103290, + [SMALL_STATE(3116)] = 103351, + [SMALL_STATE(3117)] = 103410, + [SMALL_STATE(3118)] = 103469, + [SMALL_STATE(3119)] = 103528, + [SMALL_STATE(3120)] = 103587, + [SMALL_STATE(3121)] = 103645, + [SMALL_STATE(3122)] = 103703, + [SMALL_STATE(3123)] = 103765, + [SMALL_STATE(3124)] = 103823, + [SMALL_STATE(3125)] = 103881, + [SMALL_STATE(3126)] = 103939, + [SMALL_STATE(3127)] = 103997, + [SMALL_STATE(3128)] = 104055, + [SMALL_STATE(3129)] = 104113, + [SMALL_STATE(3130)] = 104171, + [SMALL_STATE(3131)] = 104229, + [SMALL_STATE(3132)] = 104287, + [SMALL_STATE(3133)] = 104345, + [SMALL_STATE(3134)] = 104403, + [SMALL_STATE(3135)] = 104463, + [SMALL_STATE(3136)] = 104521, + [SMALL_STATE(3137)] = 104579, + [SMALL_STATE(3138)] = 104641, + [SMALL_STATE(3139)] = 104701, + [SMALL_STATE(3140)] = 104759, + [SMALL_STATE(3141)] = 104819, + [SMALL_STATE(3142)] = 104877, + [SMALL_STATE(3143)] = 104935, + [SMALL_STATE(3144)] = 104993, + [SMALL_STATE(3145)] = 105051, + [SMALL_STATE(3146)] = 105109, + [SMALL_STATE(3147)] = 105167, + [SMALL_STATE(3148)] = 105225, + [SMALL_STATE(3149)] = 105283, + [SMALL_STATE(3150)] = 105341, + [SMALL_STATE(3151)] = 105399, + [SMALL_STATE(3152)] = 105457, + [SMALL_STATE(3153)] = 105515, + [SMALL_STATE(3154)] = 105573, + [SMALL_STATE(3155)] = 105631, + [SMALL_STATE(3156)] = 105689, + [SMALL_STATE(3157)] = 105747, + [SMALL_STATE(3158)] = 105805, + [SMALL_STATE(3159)] = 105863, + [SMALL_STATE(3160)] = 105921, + [SMALL_STATE(3161)] = 105979, + [SMALL_STATE(3162)] = 106037, + [SMALL_STATE(3163)] = 106095, + [SMALL_STATE(3164)] = 106153, + [SMALL_STATE(3165)] = 106211, + [SMALL_STATE(3166)] = 106269, + [SMALL_STATE(3167)] = 106327, + [SMALL_STATE(3168)] = 106385, + [SMALL_STATE(3169)] = 106451, + [SMALL_STATE(3170)] = 106509, + [SMALL_STATE(3171)] = 106567, + [SMALL_STATE(3172)] = 106625, + [SMALL_STATE(3173)] = 106683, + [SMALL_STATE(3174)] = 106741, + [SMALL_STATE(3175)] = 106799, + [SMALL_STATE(3176)] = 106857, + [SMALL_STATE(3177)] = 106915, + [SMALL_STATE(3178)] = 106973, + [SMALL_STATE(3179)] = 107031, + [SMALL_STATE(3180)] = 107089, + [SMALL_STATE(3181)] = 107147, + [SMALL_STATE(3182)] = 107205, + [SMALL_STATE(3183)] = 107263, + [SMALL_STATE(3184)] = 107321, + [SMALL_STATE(3185)] = 107379, + [SMALL_STATE(3186)] = 107437, + [SMALL_STATE(3187)] = 107495, + [SMALL_STATE(3188)] = 107553, + [SMALL_STATE(3189)] = 107611, + [SMALL_STATE(3190)] = 107669, + [SMALL_STATE(3191)] = 107727, + [SMALL_STATE(3192)] = 107785, + [SMALL_STATE(3193)] = 107843, + [SMALL_STATE(3194)] = 107900, + [SMALL_STATE(3195)] = 107957, + [SMALL_STATE(3196)] = 108014, + [SMALL_STATE(3197)] = 108071, + [SMALL_STATE(3198)] = 108136, + [SMALL_STATE(3199)] = 108193, + [SMALL_STATE(3200)] = 108252, + [SMALL_STATE(3201)] = 108311, + [SMALL_STATE(3202)] = 108376, + [SMALL_STATE(3203)] = 108440, + [SMALL_STATE(3204)] = 108496, + [SMALL_STATE(3205)] = 108572, + [SMALL_STATE(3206)] = 108648, + [SMALL_STATE(3207)] = 108724, + [SMALL_STATE(3208)] = 108784, + [SMALL_STATE(3209)] = 108844, + [SMALL_STATE(3210)] = 108920, + [SMALL_STATE(3211)] = 108984, + [SMALL_STATE(3212)] = 109048, + [SMALL_STATE(3213)] = 109104, + [SMALL_STATE(3214)] = 109180, + [SMALL_STATE(3215)] = 109256, + [SMALL_STATE(3216)] = 109332, + [SMALL_STATE(3217)] = 109408, + [SMALL_STATE(3218)] = 109484, + [SMALL_STATE(3219)] = 109550, + [SMALL_STATE(3220)] = 109626, + [SMALL_STATE(3221)] = 109702, + [SMALL_STATE(3222)] = 109778, + [SMALL_STATE(3223)] = 109854, + [SMALL_STATE(3224)] = 109910, + [SMALL_STATE(3225)] = 109966, + [SMALL_STATE(3226)] = 110042, + [SMALL_STATE(3227)] = 110118, + [SMALL_STATE(3228)] = 110194, + [SMALL_STATE(3229)] = 110259, + [SMALL_STATE(3230)] = 110318, + [SMALL_STATE(3231)] = 110377, + [SMALL_STATE(3232)] = 110434, + [SMALL_STATE(3233)] = 110491, + [SMALL_STATE(3234)] = 110545, + [SMALL_STATE(3235)] = 110603, + [SMALL_STATE(3236)] = 110661, + [SMALL_STATE(3237)] = 110715, + [SMALL_STATE(3238)] = 110773, + [SMALL_STATE(3239)] = 110827, + [SMALL_STATE(3240)] = 110885, + [SMALL_STATE(3241)] = 110941, + [SMALL_STATE(3242)] = 110999, + [SMALL_STATE(3243)] = 111057, + [SMALL_STATE(3244)] = 111111, + [SMALL_STATE(3245)] = 111169, + [SMALL_STATE(3246)] = 111239, + [SMALL_STATE(3247)] = 111293, + [SMALL_STATE(3248)] = 111347, + [SMALL_STATE(3249)] = 111405, + [SMALL_STATE(3250)] = 111463, + [SMALL_STATE(3251)] = 111519, + [SMALL_STATE(3252)] = 111573, + [SMALL_STATE(3253)] = 111640, + [SMALL_STATE(3254)] = 111697, + [SMALL_STATE(3255)] = 111754, + [SMALL_STATE(3256)] = 111811, + [SMALL_STATE(3257)] = 111864, + [SMALL_STATE(3258)] = 111919, + [SMALL_STATE(3259)] = 111976, + [SMALL_STATE(3260)] = 112029, + [SMALL_STATE(3261)] = 112082, + [SMALL_STATE(3262)] = 112139, + [SMALL_STATE(3263)] = 112192, + [SMALL_STATE(3264)] = 112245, + [SMALL_STATE(3265)] = 112302, + [SMALL_STATE(3266)] = 112359, + [SMALL_STATE(3267)] = 112416, + [SMALL_STATE(3268)] = 112473, + [SMALL_STATE(3269)] = 112539, + [SMALL_STATE(3270)] = 112607, + [SMALL_STATE(3271)] = 112667, + [SMALL_STATE(3272)] = 112729, + [SMALL_STATE(3273)] = 112797, + [SMALL_STATE(3274)] = 112867, + [SMALL_STATE(3275)] = 112923, + [SMALL_STATE(3276)] = 112981, + [SMALL_STATE(3277)] = 113043, + [SMALL_STATE(3278)] = 113123, + [SMALL_STATE(3279)] = 113203, + [SMALL_STATE(3280)] = 113285, + [SMALL_STATE(3281)] = 113367, + [SMALL_STATE(3282)] = 113451, + [SMALL_STATE(3283)] = 113521, + [SMALL_STATE(3284)] = 113593, + [SMALL_STATE(3285)] = 113657, + [SMALL_STATE(3286)] = 113723, + [SMALL_STATE(3287)] = 113795, + [SMALL_STATE(3288)] = 113869, + [SMALL_STATE(3289)] = 113943, + [SMALL_STATE(3290)] = 114019, + [SMALL_STATE(3291)] = 114095, + [SMALL_STATE(3292)] = 114173, + [SMALL_STATE(3293)] = 114241, + [SMALL_STATE(3294)] = 114303, + [SMALL_STATE(3295)] = 114373, + [SMALL_STATE(3296)] = 114431, + [SMALL_STATE(3297)] = 114511, + [SMALL_STATE(3298)] = 114581, + [SMALL_STATE(3299)] = 114663, + [SMALL_STATE(3300)] = 114721, + [SMALL_STATE(3301)] = 114805, + [SMALL_STATE(3302)] = 114885, + [SMALL_STATE(3303)] = 114957, + [SMALL_STATE(3304)] = 115039, + [SMALL_STATE(3305)] = 115105, + [SMALL_STATE(3306)] = 115179, + [SMALL_STATE(3307)] = 115255, + [SMALL_STATE(3308)] = 115333, + [SMALL_STATE(3309)] = 115417, + [SMALL_STATE(3310)] = 115483, + [SMALL_STATE(3311)] = 115543, + [SMALL_STATE(3312)] = 115611, + [SMALL_STATE(3313)] = 115667, + [SMALL_STATE(3314)] = 115745, + [SMALL_STATE(3315)] = 115825, + [SMALL_STATE(3316)] = 115907, + [SMALL_STATE(3317)] = 115977, + [SMALL_STATE(3318)] = 116041, + [SMALL_STATE(3319)] = 116113, + [SMALL_STATE(3320)] = 116187, + [SMALL_STATE(3321)] = 116263, + [SMALL_STATE(3322)] = 116329, + [SMALL_STATE(3323)] = 116397, + [SMALL_STATE(3324)] = 116457, + [SMALL_STATE(3325)] = 116519, + [SMALL_STATE(3326)] = 116587, + [SMALL_STATE(3327)] = 116657, + [SMALL_STATE(3328)] = 116713, + [SMALL_STATE(3329)] = 116771, + [SMALL_STATE(3330)] = 116849, + [SMALL_STATE(3331)] = 116929, + [SMALL_STATE(3332)] = 117009, + [SMALL_STATE(3333)] = 117091, + [SMALL_STATE(3334)] = 117173, + [SMALL_STATE(3335)] = 117257, + [SMALL_STATE(3336)] = 117327, + [SMALL_STATE(3337)] = 117399, + [SMALL_STATE(3338)] = 117463, + [SMALL_STATE(3339)] = 117529, + [SMALL_STATE(3340)] = 117601, + [SMALL_STATE(3341)] = 117675, + [SMALL_STATE(3342)] = 117749, + [SMALL_STATE(3343)] = 117825, + [SMALL_STATE(3344)] = 117901, + [SMALL_STATE(3345)] = 117979, + [SMALL_STATE(3346)] = 118045, + [SMALL_STATE(3347)] = 118105, + [SMALL_STATE(3348)] = 118173, + [SMALL_STATE(3349)] = 118229, + [SMALL_STATE(3350)] = 118307, + [SMALL_STATE(3351)] = 118387, + [SMALL_STATE(3352)] = 118469, + [SMALL_STATE(3353)] = 118539, + [SMALL_STATE(3354)] = 118603, + [SMALL_STATE(3355)] = 118675, + [SMALL_STATE(3356)] = 118749, + [SMALL_STATE(3357)] = 118825, + [SMALL_STATE(3358)] = 118889, + [SMALL_STATE(3359)] = 118947, + [SMALL_STATE(3360)] = 119013, + [SMALL_STATE(3361)] = 119067, + [SMALL_STATE(3362)] = 119143, + [SMALL_STATE(3363)] = 119221, + [SMALL_STATE(3364)] = 119301, + [SMALL_STATE(3365)] = 119369, + [SMALL_STATE(3366)] = 119431, + [SMALL_STATE(3367)] = 119501, + [SMALL_STATE(3368)] = 119573, + [SMALL_STATE(3369)] = 119647, + [SMALL_STATE(3370)] = 119719, + [SMALL_STATE(3371)] = 119773, + [SMALL_STATE(3372)] = 119823, + [SMALL_STATE(3373)] = 119897, + [SMALL_STATE(3374)] = 119961, + [SMALL_STATE(3375)] = 120011, + [SMALL_STATE(3376)] = 120061, + [SMALL_STATE(3377)] = 120137, + [SMALL_STATE(3378)] = 120201, + [SMALL_STATE(3379)] = 120271, + [SMALL_STATE(3380)] = 120321, + [SMALL_STATE(3381)] = 120399, + [SMALL_STATE(3382)] = 120449, + [SMALL_STATE(3383)] = 120513, + [SMALL_STATE(3384)] = 120577, + [SMALL_STATE(3385)] = 120631, + [SMALL_STATE(3386)] = 120681, + [SMALL_STATE(3387)] = 120747, + [SMALL_STATE(3388)] = 120815, + [SMALL_STATE(3389)] = 120893, + [SMALL_STATE(3390)] = 120946, + [SMALL_STATE(3391)] = 121007, + [SMALL_STATE(3392)] = 121074, + [SMALL_STATE(3393)] = 121135, + [SMALL_STATE(3394)] = 121196, + [SMALL_STATE(3395)] = 121263, + [SMALL_STATE(3396)] = 121324, + [SMALL_STATE(3397)] = 121387, + [SMALL_STATE(3398)] = 121448, + [SMALL_STATE(3399)] = 121519, + [SMALL_STATE(3400)] = 121576, + [SMALL_STATE(3401)] = 121645, + [SMALL_STATE(3402)] = 121710, + [SMALL_STATE(3403)] = 121763, + [SMALL_STATE(3404)] = 121824, + [SMALL_STATE(3405)] = 121883, + [SMALL_STATE(3406)] = 121958, + [SMALL_STATE(3407)] = 122031, + [SMALL_STATE(3408)] = 122108, + [SMALL_STATE(3409)] = 122159, + [SMALL_STATE(3410)] = 122220, + [SMALL_STATE(3411)] = 122299, + [SMALL_STATE(3412)] = 122366, + [SMALL_STATE(3413)] = 122427, + [SMALL_STATE(3414)] = 122496, + [SMALL_STATE(3415)] = 122557, + [SMALL_STATE(3416)] = 122618, + [SMALL_STATE(3417)] = 122669, + [SMALL_STATE(3418)] = 122730, + [SMALL_STATE(3419)] = 122796, + [SMALL_STATE(3420)] = 122882, + [SMALL_STATE(3421)] = 122936, + [SMALL_STATE(3422)] = 122990, + [SMALL_STATE(3423)] = 123076, + [SMALL_STATE(3424)] = 123142, + [SMALL_STATE(3425)] = 123208, + [SMALL_STATE(3426)] = 123274, + [SMALL_STATE(3427)] = 123329, + [SMALL_STATE(3428)] = 123384, + [SMALL_STATE(3429)] = 123439, + [SMALL_STATE(3430)] = 123494, + [SMALL_STATE(3431)] = 123557, + [SMALL_STATE(3432)] = 123612, + [SMALL_STATE(3433)] = 123667, + [SMALL_STATE(3434)] = 123722, + [SMALL_STATE(3435)] = 123805, + [SMALL_STATE(3436)] = 123888, + [SMALL_STATE(3437)] = 123943, + [SMALL_STATE(3438)] = 123998, + [SMALL_STATE(3439)] = 124047, + [SMALL_STATE(3440)] = 124110, + [SMALL_STATE(3441)] = 124173, + [SMALL_STATE(3442)] = 124236, + [SMALL_STATE(3443)] = 124299, + [SMALL_STATE(3444)] = 124354, + [SMALL_STATE(3445)] = 124409, + [SMALL_STATE(3446)] = 124472, + [SMALL_STATE(3447)] = 124535, + [SMALL_STATE(3448)] = 124586, + [SMALL_STATE(3449)] = 124639, + [SMALL_STATE(3450)] = 124694, + [SMALL_STATE(3451)] = 124749, + [SMALL_STATE(3452)] = 124804, + [SMALL_STATE(3453)] = 124859, + [SMALL_STATE(3454)] = 124914, + [SMALL_STATE(3455)] = 124969, + [SMALL_STATE(3456)] = 125024, + [SMALL_STATE(3457)] = 125079, + [SMALL_STATE(3458)] = 125134, + [SMALL_STATE(3459)] = 125189, + [SMALL_STATE(3460)] = 125244, + [SMALL_STATE(3461)] = 125299, + [SMALL_STATE(3462)] = 125354, + [SMALL_STATE(3463)] = 125409, + [SMALL_STATE(3464)] = 125464, + [SMALL_STATE(3465)] = 125517, + [SMALL_STATE(3466)] = 125572, + [SMALL_STATE(3467)] = 125627, + [SMALL_STATE(3468)] = 125678, + [SMALL_STATE(3469)] = 125728, + [SMALL_STATE(3470)] = 125780, + [SMALL_STATE(3471)] = 125842, + [SMALL_STATE(3472)] = 125890, + [SMALL_STATE(3473)] = 125942, + [SMALL_STATE(3474)] = 125990, + [SMALL_STATE(3475)] = 126038, + [SMALL_STATE(3476)] = 126090, + [SMALL_STATE(3477)] = 126138, + [SMALL_STATE(3478)] = 126190, + [SMALL_STATE(3479)] = 126238, + [SMALL_STATE(3480)] = 126290, + [SMALL_STATE(3481)] = 126340, + [SMALL_STATE(3482)] = 126392, + [SMALL_STATE(3483)] = 126441, + [SMALL_STATE(3484)] = 126488, + [SMALL_STATE(3485)] = 126535, + [SMALL_STATE(3486)] = 126586, + [SMALL_STATE(3487)] = 126633, + [SMALL_STATE(3488)] = 126684, + [SMALL_STATE(3489)] = 126731, + [SMALL_STATE(3490)] = 126778, + [SMALL_STATE(3491)] = 126827, + [SMALL_STATE(3492)] = 126878, + [SMALL_STATE(3493)] = 126927, + [SMALL_STATE(3494)] = 126971, + [SMALL_STATE(3495)] = 127025, + [SMALL_STATE(3496)] = 127079, + [SMALL_STATE(3497)] = 127125, + [SMALL_STATE(3498)] = 127173, + [SMALL_STATE(3499)] = 127221, + [SMALL_STATE(3500)] = 127267, + [SMALL_STATE(3501)] = 127313, + [SMALL_STATE(3502)] = 127359, + [SMALL_STATE(3503)] = 127404, + [SMALL_STATE(3504)] = 127457, + [SMALL_STATE(3505)] = 127506, + [SMALL_STATE(3506)] = 127559, + [SMALL_STATE(3507)] = 127604, + [SMALL_STATE(3508)] = 127653, + [SMALL_STATE(3509)] = 127706, + [SMALL_STATE(3510)] = 127751, + [SMALL_STATE(3511)] = 127800, + [SMALL_STATE(3512)] = 127849, + [SMALL_STATE(3513)] = 127894, + [SMALL_STATE(3514)] = 127942, + [SMALL_STATE(3515)] = 127988, + [SMALL_STATE(3516)] = 128036, + [SMALL_STATE(3517)] = 128082, + [SMALL_STATE(3518)] = 128128, + [SMALL_STATE(3519)] = 128176, + [SMALL_STATE(3520)] = 128222, + [SMALL_STATE(3521)] = 128270, + [SMALL_STATE(3522)] = 128317, + [SMALL_STATE(3523)] = 128364, + [SMALL_STATE(3524)] = 128409, + [SMALL_STATE(3525)] = 128454, + [SMALL_STATE(3526)] = 128501, + [SMALL_STATE(3527)] = 128544, + [SMALL_STATE(3528)] = 128595, + [SMALL_STATE(3529)] = 128684, + [SMALL_STATE(3530)] = 128727, + [SMALL_STATE(3531)] = 128774, + [SMALL_STATE(3532)] = 128821, + [SMALL_STATE(3533)] = 128868, + [SMALL_STATE(3534)] = 128915, + [SMALL_STATE(3535)] = 128962, + [SMALL_STATE(3536)] = 129009, + [SMALL_STATE(3537)] = 129056, + [SMALL_STATE(3538)] = 129103, + [SMALL_STATE(3539)] = 129150, + [SMALL_STATE(3540)] = 129193, + [SMALL_STATE(3541)] = 129236, + [SMALL_STATE(3542)] = 129279, + [SMALL_STATE(3543)] = 129322, + [SMALL_STATE(3544)] = 129365, + [SMALL_STATE(3545)] = 129412, + [SMALL_STATE(3546)] = 129459, + [SMALL_STATE(3547)] = 129548, + [SMALL_STATE(3548)] = 129595, + [SMALL_STATE(3549)] = 129640, + [SMALL_STATE(3550)] = 129685, + [SMALL_STATE(3551)] = 129728, + [SMALL_STATE(3552)] = 129777, + [SMALL_STATE(3553)] = 129824, + [SMALL_STATE(3554)] = 129871, + [SMALL_STATE(3555)] = 129914, + [SMALL_STATE(3556)] = 129962, + [SMALL_STATE(3557)] = 130004, + [SMALL_STATE(3558)] = 130056, + [SMALL_STATE(3559)] = 130118, + [SMALL_STATE(3560)] = 130174, + [SMALL_STATE(3561)] = 130224, + [SMALL_STATE(3562)] = 130282, + [SMALL_STATE(3563)] = 130328, + [SMALL_STATE(3564)] = 130396, + [SMALL_STATE(3565)] = 130466, + [SMALL_STATE(3566)] = 130538, + [SMALL_STATE(3567)] = 130598, + [SMALL_STATE(3568)] = 130652, + [SMALL_STATE(3569)] = 130708, + [SMALL_STATE(3570)] = 130770, + [SMALL_STATE(3571)] = 130834, + [SMALL_STATE(3572)] = 130900, + [SMALL_STATE(3573)] = 130956, + [SMALL_STATE(3574)] = 131014, + [SMALL_STATE(3575)] = 131064, + [SMALL_STATE(3576)] = 131116, + [SMALL_STATE(3577)] = 131174, + [SMALL_STATE(3578)] = 131234, + [SMALL_STATE(3579)] = 131280, + [SMALL_STATE(3580)] = 131328, + [SMALL_STATE(3581)] = 131396, + [SMALL_STATE(3582)] = 131466, + [SMALL_STATE(3583)] = 131536, + [SMALL_STATE(3584)] = 131608, + [SMALL_STATE(3585)] = 131672, + [SMALL_STATE(3586)] = 131744, + [SMALL_STATE(3587)] = 131792, + [SMALL_STATE(3588)] = 131858, + [SMALL_STATE(3589)] = 131926, + [SMALL_STATE(3590)] = 131974, + [SMALL_STATE(3591)] = 132048, + [SMALL_STATE(3592)] = 132108, + [SMALL_STATE(3593)] = 132168, + [SMALL_STATE(3594)] = 132214, + [SMALL_STATE(3595)] = 132276, + [SMALL_STATE(3596)] = 132330, + [SMALL_STATE(3597)] = 132386, + [SMALL_STATE(3598)] = 132434, + [SMALL_STATE(3599)] = 132496, + [SMALL_STATE(3600)] = 132560, + [SMALL_STATE(3601)] = 132624, + [SMALL_STATE(3602)] = 132670, + [SMALL_STATE(3603)] = 132736, + [SMALL_STATE(3604)] = 132802, + [SMALL_STATE(3605)] = 132850, + [SMALL_STATE(3606)] = 132918, + [SMALL_STATE(3607)] = 132966, + [SMALL_STATE(3608)] = 133008, + [SMALL_STATE(3609)] = 133056, + [SMALL_STATE(3610)] = 133098, + [SMALL_STATE(3611)] = 133140, + [SMALL_STATE(3612)] = 133184, + [SMALL_STATE(3613)] = 133228, + [SMALL_STATE(3614)] = 133284, + [SMALL_STATE(3615)] = 133334, + [SMALL_STATE(3616)] = 133392, + [SMALL_STATE(3617)] = 133440, + [SMALL_STATE(3618)] = 133486, + [SMALL_STATE(3619)] = 133528, + [SMALL_STATE(3620)] = 133602, + [SMALL_STATE(3621)] = 133644, + [SMALL_STATE(3622)] = 133690, + [SMALL_STATE(3623)] = 133760, + [SMALL_STATE(3624)] = 133816, + [SMALL_STATE(3625)] = 133888, + [SMALL_STATE(3626)] = 133946, + [SMALL_STATE(3627)] = 133996, + [SMALL_STATE(3628)] = 134048, + [SMALL_STATE(3629)] = 134108, + [SMALL_STATE(3630)] = 134166, + [SMALL_STATE(3631)] = 134220, + [SMALL_STATE(3632)] = 134280, + [SMALL_STATE(3633)] = 134342, + [SMALL_STATE(3634)] = 134388, + [SMALL_STATE(3635)] = 134452, + [SMALL_STATE(3636)] = 134518, + [SMALL_STATE(3637)] = 134566, + [SMALL_STATE(3638)] = 134634, + [SMALL_STATE(3639)] = 134704, + [SMALL_STATE(3640)] = 134774, + [SMALL_STATE(3641)] = 134846, + [SMALL_STATE(3642)] = 134918, + [SMALL_STATE(3643)] = 134992, + [SMALL_STATE(3644)] = 135062, + [SMALL_STATE(3645)] = 135122, + [SMALL_STATE(3646)] = 135168, + [SMALL_STATE(3647)] = 135230, + [SMALL_STATE(3648)] = 135284, + [SMALL_STATE(3649)] = 135340, + [SMALL_STATE(3650)] = 135402, + [SMALL_STATE(3651)] = 135466, + [SMALL_STATE(3652)] = 135530, + [SMALL_STATE(3653)] = 135596, + [SMALL_STATE(3654)] = 135662, + [SMALL_STATE(3655)] = 135730, + [SMALL_STATE(3656)] = 135788, + [SMALL_STATE(3657)] = 135840, + [SMALL_STATE(3658)] = 135900, + [SMALL_STATE(3659)] = 135948, + [SMALL_STATE(3660)] = 136018, + [SMALL_STATE(3661)] = 136090, + [SMALL_STATE(3662)] = 136162, + [SMALL_STATE(3663)] = 136236, + [SMALL_STATE(3664)] = 136298, + [SMALL_STATE(3665)] = 136354, + [SMALL_STATE(3666)] = 136396, + [SMALL_STATE(3667)] = 136442, + [SMALL_STATE(3668)] = 136484, + [SMALL_STATE(3669)] = 136548, + [SMALL_STATE(3670)] = 136592, + [SMALL_STATE(3671)] = 136658, + [SMALL_STATE(3672)] = 136700, + [SMALL_STATE(3673)] = 136768, + [SMALL_STATE(3674)] = 136812, + [SMALL_STATE(3675)] = 136870, + [SMALL_STATE(3676)] = 136916, + [SMALL_STATE(3677)] = 136960, + [SMALL_STATE(3678)] = 137028, + [SMALL_STATE(3679)] = 137111, + [SMALL_STATE(3680)] = 137156, + [SMALL_STATE(3681)] = 137239, + [SMALL_STATE(3682)] = 137282, + [SMALL_STATE(3683)] = 137355, + [SMALL_STATE(3684)] = 137438, + [SMALL_STATE(3685)] = 137521, + [SMALL_STATE(3686)] = 137604, + [SMALL_STATE(3687)] = 137649, + [SMALL_STATE(3688)] = 137732, + [SMALL_STATE(3689)] = 137805, + [SMALL_STATE(3690)] = 137878, + [SMALL_STATE(3691)] = 137961, + [SMALL_STATE(3692)] = 138044, + [SMALL_STATE(3693)] = 138117, + [SMALL_STATE(3694)] = 138190, + [SMALL_STATE(3695)] = 138263, + [SMALL_STATE(3696)] = 138346, + [SMALL_STATE(3697)] = 138429, + [SMALL_STATE(3698)] = 138512, + [SMALL_STATE(3699)] = 138595, + [SMALL_STATE(3700)] = 138678, + [SMALL_STATE(3701)] = 138761, + [SMALL_STATE(3702)] = 138844, + [SMALL_STATE(3703)] = 138927, + [SMALL_STATE(3704)] = 139010, + [SMALL_STATE(3705)] = 139093, + [SMALL_STATE(3706)] = 139176, + [SMALL_STATE(3707)] = 139259, + [SMALL_STATE(3708)] = 139342, + [SMALL_STATE(3709)] = 139425, + [SMALL_STATE(3710)] = 139508, + [SMALL_STATE(3711)] = 139591, + [SMALL_STATE(3712)] = 139674, + [SMALL_STATE(3713)] = 139757, + [SMALL_STATE(3714)] = 139809, + [SMALL_STATE(3715)] = 139853, + [SMALL_STATE(3716)] = 139907, + [SMALL_STATE(3717)] = 139961, + [SMALL_STATE(3718)] = 140023, + [SMALL_STATE(3719)] = 140065, + [SMALL_STATE(3720)] = 140131, + [SMALL_STATE(3721)] = 140173, + [SMALL_STATE(3722)] = 140237, + [SMALL_STATE(3723)] = 140279, + [SMALL_STATE(3724)] = 140321, + [SMALL_STATE(3725)] = 140387, + [SMALL_STATE(3726)] = 140455, + [SMALL_STATE(3727)] = 140511, + [SMALL_STATE(3728)] = 140553, + [SMALL_STATE(3729)] = 140609, + [SMALL_STATE(3730)] = 140651, + [SMALL_STATE(3731)] = 140695, + [SMALL_STATE(3732)] = 140755, + [SMALL_STATE(3733)] = 140799, + [SMALL_STATE(3734)] = 140867, + [SMALL_STATE(3735)] = 140917, + [SMALL_STATE(3736)] = 140959, + [SMALL_STATE(3737)] = 141003, + [SMALL_STATE(3738)] = 141053, + [SMALL_STATE(3739)] = 141111, + [SMALL_STATE(3740)] = 141171, + [SMALL_STATE(3741)] = 141213, + [SMALL_STATE(3742)] = 141265, + [SMALL_STATE(3743)] = 141311, + [SMALL_STATE(3744)] = 141369, + [SMALL_STATE(3745)] = 141431, + [SMALL_STATE(3746)] = 141495, + [SMALL_STATE(3747)] = 141541, + [SMALL_STATE(3748)] = 141583, + [SMALL_STATE(3749)] = 141625, + [SMALL_STATE(3750)] = 141702, + [SMALL_STATE(3751)] = 141779, + [SMALL_STATE(3752)] = 141846, + [SMALL_STATE(3753)] = 141913, + [SMALL_STATE(3754)] = 141990, + [SMALL_STATE(3755)] = 142067, + [SMALL_STATE(3756)] = 142144, + [SMALL_STATE(3757)] = 142221, + [SMALL_STATE(3758)] = 142288, + [SMALL_STATE(3759)] = 142355, + [SMALL_STATE(3760)] = 142400, + [SMALL_STATE(3761)] = 142477, + [SMALL_STATE(3762)] = 142554, + [SMALL_STATE(3763)] = 142621, + [SMALL_STATE(3764)] = 142688, + [SMALL_STATE(3765)] = 142765, + [SMALL_STATE(3766)] = 142842, + [SMALL_STATE(3767)] = 142919, + [SMALL_STATE(3768)] = 142996, + [SMALL_STATE(3769)] = 143034, + [SMALL_STATE(3770)] = 143078, + [SMALL_STATE(3771)] = 143132, + [SMALL_STATE(3772)] = 143183, + [SMALL_STATE(3773)] = 143234, + [SMALL_STATE(3774)] = 143287, + [SMALL_STATE(3775)] = 143338, + [SMALL_STATE(3776)] = 143388, + [SMALL_STATE(3777)] = 143438, + [SMALL_STATE(3778)] = 143478, + [SMALL_STATE(3779)] = 143528, + [SMALL_STATE(3780)] = 143568, + [SMALL_STATE(3781)] = 143624, + [SMALL_STATE(3782)] = 143672, + [SMALL_STATE(3783)] = 143720, + [SMALL_STATE(3784)] = 143768, + [SMALL_STATE(3785)] = 143816, + [SMALL_STATE(3786)] = 143871, + [SMALL_STATE(3787)] = 143918, + [SMALL_STATE(3788)] = 143965, + [SMALL_STATE(3789)] = 144012, + [SMALL_STATE(3790)] = 144059, + [SMALL_STATE(3791)] = 144106, + [SMALL_STATE(3792)] = 144145, + [SMALL_STATE(3793)] = 144184, + [SMALL_STATE(3794)] = 144221, + [SMALL_STATE(3795)] = 144258, + [SMALL_STATE(3796)] = 144301, + [SMALL_STATE(3797)] = 144354, + [SMALL_STATE(3798)] = 144407, + [SMALL_STATE(3799)] = 144460, + [SMALL_STATE(3800)] = 144498, + [SMALL_STATE(3801)] = 144534, + [SMALL_STATE(3802)] = 144570, + [SMALL_STATE(3803)] = 144622, + [SMALL_STATE(3804)] = 144656, + [SMALL_STATE(3805)] = 144706, + [SMALL_STATE(3806)] = 144740, + [SMALL_STATE(3807)] = 144790, + [SMALL_STATE(3808)] = 144824, + [SMALL_STATE(3809)] = 144858, + [SMALL_STATE(3810)] = 144910, + [SMALL_STATE(3811)] = 144960, + [SMALL_STATE(3812)] = 144998, + [SMALL_STATE(3813)] = 145048, + [SMALL_STATE(3814)] = 145094, + [SMALL_STATE(3815)] = 145136, + [SMALL_STATE(3816)] = 145174, + [SMALL_STATE(3817)] = 145226, + [SMALL_STATE(3818)] = 145264, + [SMALL_STATE(3819)] = 145297, + [SMALL_STATE(3820)] = 145334, + [SMALL_STATE(3821)] = 145383, + [SMALL_STATE(3822)] = 145418, + [SMALL_STATE(3823)] = 145465, + [SMALL_STATE(3824)] = 145502, + [SMALL_STATE(3825)] = 145537, + [SMALL_STATE(3826)] = 145570, + [SMALL_STATE(3827)] = 145619, + [SMALL_STATE(3828)] = 145654, + [SMALL_STATE(3829)] = 145689, + [SMALL_STATE(3830)] = 145738, + [SMALL_STATE(3831)] = 145787, + [SMALL_STATE(3832)] = 145820, + [SMALL_STATE(3833)] = 145855, + [SMALL_STATE(3834)] = 145888, + [SMALL_STATE(3835)] = 145925, + [SMALL_STATE(3836)] = 145962, + [SMALL_STATE(3837)] = 146015, + [SMALL_STATE(3838)] = 146055, + [SMALL_STATE(3839)] = 146105, + [SMALL_STATE(3840)] = 146137, + [SMALL_STATE(3841)] = 146177, + [SMALL_STATE(3842)] = 146211, + [SMALL_STATE(3843)] = 146247, + [SMALL_STATE(3844)] = 146283, + [SMALL_STATE(3845)] = 146317, + [SMALL_STATE(3846)] = 146353, + [SMALL_STATE(3847)] = 146391, + [SMALL_STATE(3848)] = 146429, + [SMALL_STATE(3849)] = 146461, + [SMALL_STATE(3850)] = 146495, + [SMALL_STATE(3851)] = 146527, + [SMALL_STATE(3852)] = 146559, + [SMALL_STATE(3853)] = 146591, + [SMALL_STATE(3854)] = 146623, + [SMALL_STATE(3855)] = 146673, + [SMALL_STATE(3856)] = 146705, + [SMALL_STATE(3857)] = 146737, + [SMALL_STATE(3858)] = 146773, + [SMALL_STATE(3859)] = 146823, + [SMALL_STATE(3860)] = 146869, + [SMALL_STATE(3861)] = 146909, + [SMALL_STATE(3862)] = 146943, + [SMALL_STATE(3863)] = 146975, + [SMALL_STATE(3864)] = 147012, + [SMALL_STATE(3865)] = 147053, + [SMALL_STATE(3866)] = 147084, + [SMALL_STATE(3867)] = 147115, + [SMALL_STATE(3868)] = 147148, + [SMALL_STATE(3869)] = 147187, + [SMALL_STATE(3870)] = 147220, + [SMALL_STATE(3871)] = 147255, + [SMALL_STATE(3872)] = 147286, + [SMALL_STATE(3873)] = 147317, + [SMALL_STATE(3874)] = 147352, + [SMALL_STATE(3875)] = 147397, + [SMALL_STATE(3876)] = 147430, + [SMALL_STATE(3877)] = 147477, + [SMALL_STATE(3878)] = 147524, + [SMALL_STATE(3879)] = 147555, + [SMALL_STATE(3880)] = 147586, + [SMALL_STATE(3881)] = 147621, + [SMALL_STATE(3882)] = 147654, + [SMALL_STATE(3883)] = 147689, + [SMALL_STATE(3884)] = 147726, + [SMALL_STATE(3885)] = 147757, + [SMALL_STATE(3886)] = 147804, + [SMALL_STATE(3887)] = 147851, + [SMALL_STATE(3888)] = 147882, + [SMALL_STATE(3889)] = 147921, + [SMALL_STATE(3890)] = 147956, + [SMALL_STATE(3891)] = 147995, + [SMALL_STATE(3892)] = 148032, + [SMALL_STATE(3893)] = 148064, + [SMALL_STATE(3894)] = 148098, + [SMALL_STATE(3895)] = 148148, + [SMALL_STATE(3896)] = 148178, + [SMALL_STATE(3897)] = 148208, + [SMALL_STATE(3898)] = 148238, + [SMALL_STATE(3899)] = 148278, + [SMALL_STATE(3900)] = 148310, + [SMALL_STATE(3901)] = 148344, + [SMALL_STATE(3902)] = 148376, + [SMALL_STATE(3903)] = 148408, + [SMALL_STATE(3904)] = 148440, + [SMALL_STATE(3905)] = 148470, + [SMALL_STATE(3906)] = 148500, + [SMALL_STATE(3907)] = 148532, + [SMALL_STATE(3908)] = 148566, + [SMALL_STATE(3909)] = 148598, + [SMALL_STATE(3910)] = 148632, + [SMALL_STATE(3911)] = 148670, + [SMALL_STATE(3912)] = 148702, + [SMALL_STATE(3913)] = 148732, + [SMALL_STATE(3914)] = 148770, + [SMALL_STATE(3915)] = 148800, + [SMALL_STATE(3916)] = 148830, + [SMALL_STATE(3917)] = 148860, + [SMALL_STATE(3918)] = 148890, + [SMALL_STATE(3919)] = 148920, + [SMALL_STATE(3920)] = 148958, + [SMALL_STATE(3921)] = 148992, + [SMALL_STATE(3922)] = 149022, + [SMALL_STATE(3923)] = 149054, + [SMALL_STATE(3924)] = 149084, + [SMALL_STATE(3925)] = 149120, + [SMALL_STATE(3926)] = 149158, + [SMALL_STATE(3927)] = 149188, + [SMALL_STATE(3928)] = 149218, + [SMALL_STATE(3929)] = 149256, + [SMALL_STATE(3930)] = 149288, + [SMALL_STATE(3931)] = 149320, + [SMALL_STATE(3932)] = 149352, + [SMALL_STATE(3933)] = 149384, + [SMALL_STATE(3934)] = 149416, + [SMALL_STATE(3935)] = 149446, + [SMALL_STATE(3936)] = 149477, + [SMALL_STATE(3937)] = 149510, + [SMALL_STATE(3938)] = 149539, + [SMALL_STATE(3939)] = 149576, + [SMALL_STATE(3940)] = 149613, + [SMALL_STATE(3941)] = 149644, + [SMALL_STATE(3942)] = 149681, + [SMALL_STATE(3943)] = 149712, + [SMALL_STATE(3944)] = 149749, + [SMALL_STATE(3945)] = 149780, + [SMALL_STATE(3946)] = 149817, + [SMALL_STATE(3947)] = 149846, + [SMALL_STATE(3948)] = 149877, + [SMALL_STATE(3949)] = 149910, + [SMALL_STATE(3950)] = 149947, + [SMALL_STATE(3951)] = 149978, + [SMALL_STATE(3952)] = 150009, + [SMALL_STATE(3953)] = 150040, + [SMALL_STATE(3954)] = 150071, + [SMALL_STATE(3955)] = 150104, + [SMALL_STATE(3956)] = 150135, + [SMALL_STATE(3957)] = 150172, + [SMALL_STATE(3958)] = 150203, + [SMALL_STATE(3959)] = 150240, + [SMALL_STATE(3960)] = 150269, + [SMALL_STATE(3961)] = 150298, + [SMALL_STATE(3962)] = 150335, + [SMALL_STATE(3963)] = 150364, + [SMALL_STATE(3964)] = 150395, + [SMALL_STATE(3965)] = 150424, + [SMALL_STATE(3966)] = 150461, + [SMALL_STATE(3967)] = 150498, + [SMALL_STATE(3968)] = 150535, + [SMALL_STATE(3969)] = 150566, + [SMALL_STATE(3970)] = 150603, + [SMALL_STATE(3971)] = 150632, + [SMALL_STATE(3972)] = 150669, + [SMALL_STATE(3973)] = 150700, + [SMALL_STATE(3974)] = 150729, + [SMALL_STATE(3975)] = 150760, + [SMALL_STATE(3976)] = 150789, + [SMALL_STATE(3977)] = 150818, + [SMALL_STATE(3978)] = 150847, + [SMALL_STATE(3979)] = 150876, + [SMALL_STATE(3980)] = 150909, + [SMALL_STATE(3981)] = 150938, + [SMALL_STATE(3982)] = 150969, + [SMALL_STATE(3983)] = 150998, + [SMALL_STATE(3984)] = 151027, + [SMALL_STATE(3985)] = 151058, + [SMALL_STATE(3986)] = 151089, + [SMALL_STATE(3987)] = 151118, + [SMALL_STATE(3988)] = 151147, + [SMALL_STATE(3989)] = 151178, + [SMALL_STATE(3990)] = 151207, + [SMALL_STATE(3991)] = 151244, + [SMALL_STATE(3992)] = 151281, + [SMALL_STATE(3993)] = 151312, + [SMALL_STATE(3994)] = 151349, + [SMALL_STATE(3995)] = 151380, + [SMALL_STATE(3996)] = 151411, + [SMALL_STATE(3997)] = 151442, + [SMALL_STATE(3998)] = 151471, + [SMALL_STATE(3999)] = 151500, + [SMALL_STATE(4000)] = 151531, + [SMALL_STATE(4001)] = 151568, + [SMALL_STATE(4002)] = 151605, + [SMALL_STATE(4003)] = 151642, + [SMALL_STATE(4004)] = 151675, + [SMALL_STATE(4005)] = 151708, + [SMALL_STATE(4006)] = 151745, + [SMALL_STATE(4007)] = 151774, + [SMALL_STATE(4008)] = 151807, + [SMALL_STATE(4009)] = 151844, + [SMALL_STATE(4010)] = 151881, + [SMALL_STATE(4011)] = 151918, + [SMALL_STATE(4012)] = 151955, + [SMALL_STATE(4013)] = 151990, + [SMALL_STATE(4014)] = 152027, + [SMALL_STATE(4015)] = 152064, + [SMALL_STATE(4016)] = 152093, + [SMALL_STATE(4017)] = 152130, + [SMALL_STATE(4018)] = 152167, + [SMALL_STATE(4019)] = 152196, + [SMALL_STATE(4020)] = 152232, + [SMALL_STATE(4021)] = 152260, + [SMALL_STATE(4022)] = 152308, + [SMALL_STATE(4023)] = 152344, + [SMALL_STATE(4024)] = 152380, + [SMALL_STATE(4025)] = 152416, + [SMALL_STATE(4026)] = 152446, + [SMALL_STATE(4027)] = 152482, + [SMALL_STATE(4028)] = 152510, + [SMALL_STATE(4029)] = 152538, + [SMALL_STATE(4030)] = 152582, + [SMALL_STATE(4031)] = 152612, + [SMALL_STATE(4032)] = 152640, + [SMALL_STATE(4033)] = 152668, + [SMALL_STATE(4034)] = 152698, + [SMALL_STATE(4035)] = 152730, + [SMALL_STATE(4036)] = 152766, + [SMALL_STATE(4037)] = 152802, + [SMALL_STATE(4038)] = 152830, + [SMALL_STATE(4039)] = 152866, + [SMALL_STATE(4040)] = 152902, + [SMALL_STATE(4041)] = 152940, + [SMALL_STATE(4042)] = 152968, + [SMALL_STATE(4043)] = 153000, + [SMALL_STATE(4044)] = 153032, + [SMALL_STATE(4045)] = 153080, + [SMALL_STATE(4046)] = 153110, + [SMALL_STATE(4047)] = 153138, + [SMALL_STATE(4048)] = 153174, + [SMALL_STATE(4049)] = 153210, + [SMALL_STATE(4050)] = 153240, + [SMALL_STATE(4051)] = 153276, + [SMALL_STATE(4052)] = 153308, + [SMALL_STATE(4053)] = 153344, + [SMALL_STATE(4054)] = 153380, + [SMALL_STATE(4055)] = 153408, + [SMALL_STATE(4056)] = 153444, + [SMALL_STATE(4057)] = 153472, + [SMALL_STATE(4058)] = 153508, + [SMALL_STATE(4059)] = 153544, + [SMALL_STATE(4060)] = 153574, + [SMALL_STATE(4061)] = 153602, + [SMALL_STATE(4062)] = 153630, + [SMALL_STATE(4063)] = 153666, + [SMALL_STATE(4064)] = 153702, + [SMALL_STATE(4065)] = 153730, + [SMALL_STATE(4066)] = 153762, + [SMALL_STATE(4067)] = 153798, + [SMALL_STATE(4068)] = 153834, + [SMALL_STATE(4069)] = 153862, + [SMALL_STATE(4070)] = 153898, + [SMALL_STATE(4071)] = 153936, + [SMALL_STATE(4072)] = 153964, + [SMALL_STATE(4073)] = 154000, + [SMALL_STATE(4074)] = 154044, + [SMALL_STATE(4075)] = 154072, + [SMALL_STATE(4076)] = 154100, + [SMALL_STATE(4077)] = 154128, + [SMALL_STATE(4078)] = 154156, + [SMALL_STATE(4079)] = 154188, + [SMALL_STATE(4080)] = 154232, + [SMALL_STATE(4081)] = 154280, + [SMALL_STATE(4082)] = 154312, + [SMALL_STATE(4083)] = 154344, + [SMALL_STATE(4084)] = 154372, + [SMALL_STATE(4085)] = 154408, + [SMALL_STATE(4086)] = 154436, + [SMALL_STATE(4087)] = 154464, + [SMALL_STATE(4088)] = 154496, + [SMALL_STATE(4089)] = 154524, + [SMALL_STATE(4090)] = 154568, + [SMALL_STATE(4091)] = 154598, + [SMALL_STATE(4092)] = 154646, + [SMALL_STATE(4093)] = 154682, + [SMALL_STATE(4094)] = 154718, + [SMALL_STATE(4095)] = 154746, + [SMALL_STATE(4096)] = 154778, + [SMALL_STATE(4097)] = 154810, + [SMALL_STATE(4098)] = 154840, + [SMALL_STATE(4099)] = 154870, + [SMALL_STATE(4100)] = 154906, + [SMALL_STATE(4101)] = 154942, + [SMALL_STATE(4102)] = 154972, + [SMALL_STATE(4103)] = 155016, + [SMALL_STATE(4104)] = 155048, + [SMALL_STATE(4105)] = 155084, + [SMALL_STATE(4106)] = 155112, + [SMALL_STATE(4107)] = 155137, + [SMALL_STATE(4108)] = 155172, + [SMALL_STATE(4109)] = 155203, + [SMALL_STATE(4110)] = 155240, + [SMALL_STATE(4111)] = 155275, + [SMALL_STATE(4112)] = 155310, + [SMALL_STATE(4113)] = 155345, + [SMALL_STATE(4114)] = 155376, + [SMALL_STATE(4115)] = 155411, + [SMALL_STATE(4116)] = 155442, + [SMALL_STATE(4117)] = 155473, + [SMALL_STATE(4118)] = 155500, + [SMALL_STATE(4119)] = 155527, + [SMALL_STATE(4120)] = 155554, + [SMALL_STATE(4121)] = 155589, + [SMALL_STATE(4122)] = 155616, + [SMALL_STATE(4123)] = 155647, + [SMALL_STATE(4124)] = 155678, + [SMALL_STATE(4125)] = 155709, + [SMALL_STATE(4126)] = 155744, + [SMALL_STATE(4127)] = 155779, + [SMALL_STATE(4128)] = 155814, + [SMALL_STATE(4129)] = 155849, + [SMALL_STATE(4130)] = 155876, + [SMALL_STATE(4131)] = 155903, + [SMALL_STATE(4132)] = 155930, + [SMALL_STATE(4133)] = 155957, + [SMALL_STATE(4134)] = 155986, + [SMALL_STATE(4135)] = 156015, + [SMALL_STATE(4136)] = 156044, + [SMALL_STATE(4137)] = 156075, + [SMALL_STATE(4138)] = 156104, + [SMALL_STATE(4139)] = 156135, + [SMALL_STATE(4140)] = 156170, + [SMALL_STATE(4141)] = 156201, + [SMALL_STATE(4142)] = 156232, + [SMALL_STATE(4143)] = 156263, + [SMALL_STATE(4144)] = 156294, + [SMALL_STATE(4145)] = 156327, + [SMALL_STATE(4146)] = 156360, + [SMALL_STATE(4147)] = 156387, + [SMALL_STATE(4148)] = 156414, + [SMALL_STATE(4149)] = 156445, + [SMALL_STATE(4150)] = 156476, + [SMALL_STATE(4151)] = 156507, + [SMALL_STATE(4152)] = 156540, + [SMALL_STATE(4153)] = 156573, + [SMALL_STATE(4154)] = 156600, + [SMALL_STATE(4155)] = 156627, + [SMALL_STATE(4156)] = 156654, + [SMALL_STATE(4157)] = 156681, + [SMALL_STATE(4158)] = 156710, + [SMALL_STATE(4159)] = 156739, + [SMALL_STATE(4160)] = 156770, + [SMALL_STATE(4161)] = 156801, + [SMALL_STATE(4162)] = 156832, + [SMALL_STATE(4163)] = 156863, + [SMALL_STATE(4164)] = 156896, + [SMALL_STATE(4165)] = 156929, + [SMALL_STATE(4166)] = 156956, + [SMALL_STATE(4167)] = 156983, + [SMALL_STATE(4168)] = 157014, + [SMALL_STATE(4169)] = 157041, + [SMALL_STATE(4170)] = 157072, + [SMALL_STATE(4171)] = 157103, + [SMALL_STATE(4172)] = 157136, + [SMALL_STATE(4173)] = 157169, + [SMALL_STATE(4174)] = 157196, + [SMALL_STATE(4175)] = 157223, + [SMALL_STATE(4176)] = 157252, + [SMALL_STATE(4177)] = 157281, + [SMALL_STATE(4178)] = 157316, + [SMALL_STATE(4179)] = 157343, + [SMALL_STATE(4180)] = 157374, + [SMALL_STATE(4181)] = 157401, + [SMALL_STATE(4182)] = 157430, + [SMALL_STATE(4183)] = 157459, + [SMALL_STATE(4184)] = 157490, + [SMALL_STATE(4185)] = 157521, + [SMALL_STATE(4186)] = 157548, + [SMALL_STATE(4187)] = 157575, + [SMALL_STATE(4188)] = 157602, + [SMALL_STATE(4189)] = 157629, + [SMALL_STATE(4190)] = 157656, + [SMALL_STATE(4191)] = 157685, + [SMALL_STATE(4192)] = 157712, + [SMALL_STATE(4193)] = 157741, + [SMALL_STATE(4194)] = 157772, + [SMALL_STATE(4195)] = 157803, + [SMALL_STATE(4196)] = 157834, + [SMALL_STATE(4197)] = 157865, + [SMALL_STATE(4198)] = 157896, + [SMALL_STATE(4199)] = 157929, + [SMALL_STATE(4200)] = 157962, + [SMALL_STATE(4201)] = 157989, + [SMALL_STATE(4202)] = 158016, + [SMALL_STATE(4203)] = 158043, + [SMALL_STATE(4204)] = 158078, + [SMALL_STATE(4205)] = 158107, + [SMALL_STATE(4206)] = 158138, + [SMALL_STATE(4207)] = 158169, + [SMALL_STATE(4208)] = 158202, + [SMALL_STATE(4209)] = 158237, + [SMALL_STATE(4210)] = 158264, + [SMALL_STATE(4211)] = 158291, + [SMALL_STATE(4212)] = 158322, + [SMALL_STATE(4213)] = 158349, + [SMALL_STATE(4214)] = 158380, + [SMALL_STATE(4215)] = 158407, + [SMALL_STATE(4216)] = 158438, + [SMALL_STATE(4217)] = 158465, + [SMALL_STATE(4218)] = 158490, + [SMALL_STATE(4219)] = 158517, + [SMALL_STATE(4220)] = 158546, + [SMALL_STATE(4221)] = 158577, + [SMALL_STATE(4222)] = 158608, + [SMALL_STATE(4223)] = 158637, + [SMALL_STATE(4224)] = 158668, + [SMALL_STATE(4225)] = 158699, + [SMALL_STATE(4226)] = 158730, + [SMALL_STATE(4227)] = 158761, + [SMALL_STATE(4228)] = 158792, + [SMALL_STATE(4229)] = 158825, + [SMALL_STATE(4230)] = 158858, + [SMALL_STATE(4231)] = 158889, + [SMALL_STATE(4232)] = 158920, + [SMALL_STATE(4233)] = 158955, + [SMALL_STATE(4234)] = 158984, + [SMALL_STATE(4235)] = 159017, + [SMALL_STATE(4236)] = 159052, + [SMALL_STATE(4237)] = 159087, + [SMALL_STATE(4238)] = 159114, + [SMALL_STATE(4239)] = 159145, + [SMALL_STATE(4240)] = 159172, + [SMALL_STATE(4241)] = 159203, + [SMALL_STATE(4242)] = 159234, + [SMALL_STATE(4243)] = 159267, + [SMALL_STATE(4244)] = 159300, + [SMALL_STATE(4245)] = 159327, + [SMALL_STATE(4246)] = 159352, + [SMALL_STATE(4247)] = 159379, + [SMALL_STATE(4248)] = 159406, + [SMALL_STATE(4249)] = 159431, + [SMALL_STATE(4250)] = 159462, + [SMALL_STATE(4251)] = 159487, + [SMALL_STATE(4252)] = 159516, + [SMALL_STATE(4253)] = 159547, + [SMALL_STATE(4254)] = 159582, + [SMALL_STATE(4255)] = 159617, + [SMALL_STATE(4256)] = 159648, + [SMALL_STATE(4257)] = 159673, + [SMALL_STATE(4258)] = 159704, + [SMALL_STATE(4259)] = 159739, + [SMALL_STATE(4260)] = 159766, + [SMALL_STATE(4261)] = 159797, + [SMALL_STATE(4262)] = 159830, + [SMALL_STATE(4263)] = 159855, + [SMALL_STATE(4264)] = 159880, + [SMALL_STATE(4265)] = 159905, + [SMALL_STATE(4266)] = 159932, + [SMALL_STATE(4267)] = 159959, + [SMALL_STATE(4268)] = 159988, + [SMALL_STATE(4269)] = 160017, + [SMALL_STATE(4270)] = 160042, + [SMALL_STATE(4271)] = 160067, + [SMALL_STATE(4272)] = 160094, + [SMALL_STATE(4273)] = 160121, + [SMALL_STATE(4274)] = 160154, + [SMALL_STATE(4275)] = 160183, + [SMALL_STATE(4276)] = 160212, + [SMALL_STATE(4277)] = 160243, + [SMALL_STATE(4278)] = 160278, + [SMALL_STATE(4279)] = 160313, + [SMALL_STATE(4280)] = 160348, + [SMALL_STATE(4281)] = 160379, + [SMALL_STATE(4282)] = 160410, + [SMALL_STATE(4283)] = 160441, + [SMALL_STATE(4284)] = 160474, + [SMALL_STATE(4285)] = 160507, + [SMALL_STATE(4286)] = 160538, + [SMALL_STATE(4287)] = 160573, + [SMALL_STATE(4288)] = 160604, + [SMALL_STATE(4289)] = 160631, + [SMALL_STATE(4290)] = 160666, + [SMALL_STATE(4291)] = 160701, + [SMALL_STATE(4292)] = 160736, + [SMALL_STATE(4293)] = 160771, + [SMALL_STATE(4294)] = 160806, + [SMALL_STATE(4295)] = 160841, + [SMALL_STATE(4296)] = 160876, + [SMALL_STATE(4297)] = 160907, + [SMALL_STATE(4298)] = 160936, + [SMALL_STATE(4299)] = 160962, + [SMALL_STATE(4300)] = 161014, + [SMALL_STATE(4301)] = 161038, + [SMALL_STATE(4302)] = 161062, + [SMALL_STATE(4303)] = 161114, + [SMALL_STATE(4304)] = 161138, + [SMALL_STATE(4305)] = 161162, + [SMALL_STATE(4306)] = 161186, + [SMALL_STATE(4307)] = 161216, + [SMALL_STATE(4308)] = 161242, + [SMALL_STATE(4309)] = 161268, + [SMALL_STATE(4310)] = 161294, + [SMALL_STATE(4311)] = 161324, + [SMALL_STATE(4312)] = 161352, + [SMALL_STATE(4313)] = 161382, + [SMALL_STATE(4314)] = 161410, + [SMALL_STATE(4315)] = 161434, + [SMALL_STATE(4316)] = 161464, + [SMALL_STATE(4317)] = 161510, + [SMALL_STATE(4318)] = 161540, + [SMALL_STATE(4319)] = 161592, + [SMALL_STATE(4320)] = 161618, + [SMALL_STATE(4321)] = 161648, + [SMALL_STATE(4322)] = 161678, + [SMALL_STATE(4323)] = 161706, + [SMALL_STATE(4324)] = 161736, + [SMALL_STATE(4325)] = 161760, + [SMALL_STATE(4326)] = 161788, + [SMALL_STATE(4327)] = 161812, + [SMALL_STATE(4328)] = 161838, + [SMALL_STATE(4329)] = 161868, + [SMALL_STATE(4330)] = 161896, + [SMALL_STATE(4331)] = 161948, + [SMALL_STATE(4332)] = 162000, + [SMALL_STATE(4333)] = 162026, + [SMALL_STATE(4334)] = 162052, + [SMALL_STATE(4335)] = 162076, + [SMALL_STATE(4336)] = 162104, + [SMALL_STATE(4337)] = 162130, + [SMALL_STATE(4338)] = 162160, + [SMALL_STATE(4339)] = 162186, + [SMALL_STATE(4340)] = 162214, + [SMALL_STATE(4341)] = 162242, + [SMALL_STATE(4342)] = 162294, + [SMALL_STATE(4343)] = 162324, + [SMALL_STATE(4344)] = 162350, + [SMALL_STATE(4345)] = 162378, + [SMALL_STATE(4346)] = 162406, + [SMALL_STATE(4347)] = 162434, + [SMALL_STATE(4348)] = 162464, + [SMALL_STATE(4349)] = 162494, + [SMALL_STATE(4350)] = 162546, + [SMALL_STATE(4351)] = 162576, + [SMALL_STATE(4352)] = 162608, + [SMALL_STATE(4353)] = 162638, + [SMALL_STATE(4354)] = 162668, + [SMALL_STATE(4355)] = 162692, + [SMALL_STATE(4356)] = 162722, + [SMALL_STATE(4357)] = 162750, + [SMALL_STATE(4358)] = 162780, + [SMALL_STATE(4359)] = 162810, + [SMALL_STATE(4360)] = 162836, + [SMALL_STATE(4361)] = 162862, + [SMALL_STATE(4362)] = 162888, + [SMALL_STATE(4363)] = 162912, + [SMALL_STATE(4364)] = 162942, + [SMALL_STATE(4365)] = 162972, + [SMALL_STATE(4366)] = 163002, + [SMALL_STATE(4367)] = 163028, + [SMALL_STATE(4368)] = 163058, + [SMALL_STATE(4369)] = 163088, + [SMALL_STATE(4370)] = 163118, + [SMALL_STATE(4371)] = 163170, + [SMALL_STATE(4372)] = 163222, + [SMALL_STATE(4373)] = 163252, + [SMALL_STATE(4374)] = 163304, + [SMALL_STATE(4375)] = 163334, + [SMALL_STATE(4376)] = 163364, + [SMALL_STATE(4377)] = 163394, + [SMALL_STATE(4378)] = 163418, + [SMALL_STATE(4379)] = 163442, + [SMALL_STATE(4380)] = 163468, + [SMALL_STATE(4381)] = 163494, + [SMALL_STATE(4382)] = 163526, + [SMALL_STATE(4383)] = 163554, + [SMALL_STATE(4384)] = 163582, + [SMALL_STATE(4385)] = 163609, + [SMALL_STATE(4386)] = 163638, + [SMALL_STATE(4387)] = 163667, + [SMALL_STATE(4388)] = 163692, + [SMALL_STATE(4389)] = 163717, + [SMALL_STATE(4390)] = 163748, + [SMALL_STATE(4391)] = 163777, + [SMALL_STATE(4392)] = 163806, + [SMALL_STATE(4393)] = 163835, + [SMALL_STATE(4394)] = 163860, + [SMALL_STATE(4395)] = 163889, + [SMALL_STATE(4396)] = 163914, + [SMALL_STATE(4397)] = 163943, + [SMALL_STATE(4398)] = 163968, + [SMALL_STATE(4399)] = 163993, + [SMALL_STATE(4400)] = 164022, + [SMALL_STATE(4401)] = 164051, + [SMALL_STATE(4402)] = 164080, + [SMALL_STATE(4403)] = 164105, + [SMALL_STATE(4404)] = 164130, + [SMALL_STATE(4405)] = 164155, + [SMALL_STATE(4406)] = 164180, + [SMALL_STATE(4407)] = 164209, + [SMALL_STATE(4408)] = 164234, + [SMALL_STATE(4409)] = 164259, + [SMALL_STATE(4410)] = 164284, + [SMALL_STATE(4411)] = 164309, + [SMALL_STATE(4412)] = 164338, + [SMALL_STATE(4413)] = 164363, + [SMALL_STATE(4414)] = 164388, + [SMALL_STATE(4415)] = 164413, + [SMALL_STATE(4416)] = 164438, + [SMALL_STATE(4417)] = 164467, + [SMALL_STATE(4418)] = 164492, + [SMALL_STATE(4419)] = 164517, + [SMALL_STATE(4420)] = 164542, + [SMALL_STATE(4421)] = 164567, + [SMALL_STATE(4422)] = 164592, + [SMALL_STATE(4423)] = 164621, + [SMALL_STATE(4424)] = 164646, + [SMALL_STATE(4425)] = 164671, + [SMALL_STATE(4426)] = 164700, + [SMALL_STATE(4427)] = 164725, + [SMALL_STATE(4428)] = 164754, + [SMALL_STATE(4429)] = 164779, + [SMALL_STATE(4430)] = 164804, + [SMALL_STATE(4431)] = 164829, + [SMALL_STATE(4432)] = 164854, + [SMALL_STATE(4433)] = 164883, + [SMALL_STATE(4434)] = 164908, + [SMALL_STATE(4435)] = 164933, + [SMALL_STATE(4436)] = 164958, + [SMALL_STATE(4437)] = 164987, + [SMALL_STATE(4438)] = 165016, + [SMALL_STATE(4439)] = 165041, + [SMALL_STATE(4440)] = 165066, + [SMALL_STATE(4441)] = 165095, + [SMALL_STATE(4442)] = 165120, + [SMALL_STATE(4443)] = 165145, + [SMALL_STATE(4444)] = 165170, + [SMALL_STATE(4445)] = 165195, + [SMALL_STATE(4446)] = 165220, + [SMALL_STATE(4447)] = 165245, + [SMALL_STATE(4448)] = 165270, + [SMALL_STATE(4449)] = 165299, + [SMALL_STATE(4450)] = 165324, + [SMALL_STATE(4451)] = 165349, + [SMALL_STATE(4452)] = 165374, + [SMALL_STATE(4453)] = 165399, + [SMALL_STATE(4454)] = 165424, + [SMALL_STATE(4455)] = 165455, + [SMALL_STATE(4456)] = 165478, + [SMALL_STATE(4457)] = 165507, + [SMALL_STATE(4458)] = 165536, + [SMALL_STATE(4459)] = 165565, + [SMALL_STATE(4460)] = 165592, + [SMALL_STATE(4461)] = 165621, + [SMALL_STATE(4462)] = 165650, + [SMALL_STATE(4463)] = 165679, + [SMALL_STATE(4464)] = 165708, + [SMALL_STATE(4465)] = 165737, + [SMALL_STATE(4466)] = 165764, + [SMALL_STATE(4467)] = 165793, + [SMALL_STATE(4468)] = 165816, + [SMALL_STATE(4469)] = 165839, + [SMALL_STATE(4470)] = 165864, + [SMALL_STATE(4471)] = 165891, + [SMALL_STATE(4472)] = 165918, + [SMALL_STATE(4473)] = 165943, + [SMALL_STATE(4474)] = 165968, + [SMALL_STATE(4475)] = 165997, + [SMALL_STATE(4476)] = 166026, + [SMALL_STATE(4477)] = 166051, + [SMALL_STATE(4478)] = 166076, + [SMALL_STATE(4479)] = 166105, + [SMALL_STATE(4480)] = 166132, + [SMALL_STATE(4481)] = 166157, + [SMALL_STATE(4482)] = 166182, + [SMALL_STATE(4483)] = 166207, + [SMALL_STATE(4484)] = 166236, + [SMALL_STATE(4485)] = 166265, + [SMALL_STATE(4486)] = 166294, + [SMALL_STATE(4487)] = 166323, + [SMALL_STATE(4488)] = 166348, + [SMALL_STATE(4489)] = 166377, + [SMALL_STATE(4490)] = 166404, + [SMALL_STATE(4491)] = 166433, + [SMALL_STATE(4492)] = 166464, + [SMALL_STATE(4493)] = 166489, + [SMALL_STATE(4494)] = 166514, + [SMALL_STATE(4495)] = 166539, + [SMALL_STATE(4496)] = 166568, + [SMALL_STATE(4497)] = 166597, + [SMALL_STATE(4498)] = 166624, + [SMALL_STATE(4499)] = 166653, + [SMALL_STATE(4500)] = 166678, + [SMALL_STATE(4501)] = 166705, + [SMALL_STATE(4502)] = 166730, + [SMALL_STATE(4503)] = 166755, + [SMALL_STATE(4504)] = 166782, + [SMALL_STATE(4505)] = 166811, + [SMALL_STATE(4506)] = 166834, + [SMALL_STATE(4507)] = 166859, + [SMALL_STATE(4508)] = 166888, + [SMALL_STATE(4509)] = 166913, + [SMALL_STATE(4510)] = 166938, + [SMALL_STATE(4511)] = 166963, + [SMALL_STATE(4512)] = 166990, + [SMALL_STATE(4513)] = 167021, + [SMALL_STATE(4514)] = 167046, + [SMALL_STATE(4515)] = 167071, + [SMALL_STATE(4516)] = 167096, + [SMALL_STATE(4517)] = 167121, + [SMALL_STATE(4518)] = 167150, + [SMALL_STATE(4519)] = 167173, + [SMALL_STATE(4520)] = 167196, + [SMALL_STATE(4521)] = 167221, + [SMALL_STATE(4522)] = 167246, + [SMALL_STATE(4523)] = 167271, + [SMALL_STATE(4524)] = 167296, + [SMALL_STATE(4525)] = 167325, + [SMALL_STATE(4526)] = 167350, + [SMALL_STATE(4527)] = 167375, + [SMALL_STATE(4528)] = 167400, + [SMALL_STATE(4529)] = 167425, + [SMALL_STATE(4530)] = 167454, + [SMALL_STATE(4531)] = 167481, + [SMALL_STATE(4532)] = 167506, + [SMALL_STATE(4533)] = 167547, + [SMALL_STATE(4534)] = 167572, + [SMALL_STATE(4535)] = 167597, + [SMALL_STATE(4536)] = 167622, + [SMALL_STATE(4537)] = 167645, + [SMALL_STATE(4538)] = 167670, + [SMALL_STATE(4539)] = 167695, + [SMALL_STATE(4540)] = 167720, + [SMALL_STATE(4541)] = 167749, + [SMALL_STATE(4542)] = 167774, + [SMALL_STATE(4543)] = 167799, + [SMALL_STATE(4544)] = 167828, + [SMALL_STATE(4545)] = 167852, + [SMALL_STATE(4546)] = 167876, + [SMALL_STATE(4547)] = 167900, + [SMALL_STATE(4548)] = 167946, + [SMALL_STATE(4549)] = 167970, + [SMALL_STATE(4550)] = 168016, + [SMALL_STATE(4551)] = 168040, + [SMALL_STATE(4552)] = 168086, + [SMALL_STATE(4553)] = 168110, + [SMALL_STATE(4554)] = 168134, + [SMALL_STATE(4555)] = 168158, + [SMALL_STATE(4556)] = 168182, + [SMALL_STATE(4557)] = 168206, + [SMALL_STATE(4558)] = 168230, + [SMALL_STATE(4559)] = 168276, + [SMALL_STATE(4560)] = 168316, + [SMALL_STATE(4561)] = 168338, + [SMALL_STATE(4562)] = 168364, + [SMALL_STATE(4563)] = 168388, + [SMALL_STATE(4564)] = 168412, + [SMALL_STATE(4565)] = 168436, + [SMALL_STATE(4566)] = 168480, + [SMALL_STATE(4567)] = 168504, + [SMALL_STATE(4568)] = 168550, + [SMALL_STATE(4569)] = 168574, + [SMALL_STATE(4570)] = 168598, + [SMALL_STATE(4571)] = 168622, + [SMALL_STATE(4572)] = 168646, + [SMALL_STATE(4573)] = 168670, + [SMALL_STATE(4574)] = 168694, + [SMALL_STATE(4575)] = 168718, + [SMALL_STATE(4576)] = 168742, + [SMALL_STATE(4577)] = 168766, + [SMALL_STATE(4578)] = 168790, + [SMALL_STATE(4579)] = 168814, + [SMALL_STATE(4580)] = 168838, + [SMALL_STATE(4581)] = 168862, + [SMALL_STATE(4582)] = 168886, + [SMALL_STATE(4583)] = 168910, + [SMALL_STATE(4584)] = 168934, + [SMALL_STATE(4585)] = 168958, + [SMALL_STATE(4586)] = 168982, + [SMALL_STATE(4587)] = 169006, + [SMALL_STATE(4588)] = 169028, + [SMALL_STATE(4589)] = 169052, + [SMALL_STATE(4590)] = 169076, + [SMALL_STATE(4591)] = 169100, + [SMALL_STATE(4592)] = 169124, + [SMALL_STATE(4593)] = 169146, + [SMALL_STATE(4594)] = 169170, + [SMALL_STATE(4595)] = 169194, + [SMALL_STATE(4596)] = 169218, + [SMALL_STATE(4597)] = 169242, + [SMALL_STATE(4598)] = 169274, + [SMALL_STATE(4599)] = 169298, + [SMALL_STATE(4600)] = 169322, + [SMALL_STATE(4601)] = 169346, + [SMALL_STATE(4602)] = 169370, + [SMALL_STATE(4603)] = 169394, + [SMALL_STATE(4604)] = 169418, + [SMALL_STATE(4605)] = 169442, + [SMALL_STATE(4606)] = 169466, + [SMALL_STATE(4607)] = 169488, + [SMALL_STATE(4608)] = 169512, + [SMALL_STATE(4609)] = 169536, + [SMALL_STATE(4610)] = 169560, + [SMALL_STATE(4611)] = 169584, + [SMALL_STATE(4612)] = 169608, + [SMALL_STATE(4613)] = 169630, + [SMALL_STATE(4614)] = 169654, + [SMALL_STATE(4615)] = 169678, + [SMALL_STATE(4616)] = 169702, + [SMALL_STATE(4617)] = 169724, + [SMALL_STATE(4618)] = 169770, + [SMALL_STATE(4619)] = 169794, + [SMALL_STATE(4620)] = 169818, + [SMALL_STATE(4621)] = 169842, + [SMALL_STATE(4622)] = 169868, + [SMALL_STATE(4623)] = 169892, + [SMALL_STATE(4624)] = 169916, + [SMALL_STATE(4625)] = 169940, + [SMALL_STATE(4626)] = 169982, + [SMALL_STATE(4627)] = 170004, + [SMALL_STATE(4628)] = 170028, + [SMALL_STATE(4629)] = 170074, + [SMALL_STATE(4630)] = 170098, + [SMALL_STATE(4631)] = 170122, + [SMALL_STATE(4632)] = 170144, + [SMALL_STATE(4633)] = 170170, + [SMALL_STATE(4634)] = 170194, + [SMALL_STATE(4635)] = 170218, + [SMALL_STATE(4636)] = 170242, + [SMALL_STATE(4637)] = 170266, + [SMALL_STATE(4638)] = 170290, + [SMALL_STATE(4639)] = 170314, + [SMALL_STATE(4640)] = 170338, + [SMALL_STATE(4641)] = 170362, + [SMALL_STATE(4642)] = 170386, + [SMALL_STATE(4643)] = 170410, + [SMALL_STATE(4644)] = 170434, + [SMALL_STATE(4645)] = 170458, + [SMALL_STATE(4646)] = 170482, + [SMALL_STATE(4647)] = 170506, + [SMALL_STATE(4648)] = 170530, + [SMALL_STATE(4649)] = 170552, + [SMALL_STATE(4650)] = 170576, + [SMALL_STATE(4651)] = 170600, + [SMALL_STATE(4652)] = 170624, + [SMALL_STATE(4653)] = 170648, + [SMALL_STATE(4654)] = 170686, + [SMALL_STATE(4655)] = 170732, + [SMALL_STATE(4656)] = 170756, + [SMALL_STATE(4657)] = 170780, + [SMALL_STATE(4658)] = 170804, + [SMALL_STATE(4659)] = 170850, + [SMALL_STATE(4660)] = 170874, + [SMALL_STATE(4661)] = 170898, + [SMALL_STATE(4662)] = 170922, + [SMALL_STATE(4663)] = 170946, + [SMALL_STATE(4664)] = 170970, + [SMALL_STATE(4665)] = 170994, + [SMALL_STATE(4666)] = 171018, + [SMALL_STATE(4667)] = 171050, + [SMALL_STATE(4668)] = 171074, + [SMALL_STATE(4669)] = 171098, + [SMALL_STATE(4670)] = 171122, + [SMALL_STATE(4671)] = 171146, + [SMALL_STATE(4672)] = 171170, + [SMALL_STATE(4673)] = 171194, + [SMALL_STATE(4674)] = 171218, + [SMALL_STATE(4675)] = 171242, + [SMALL_STATE(4676)] = 171264, + [SMALL_STATE(4677)] = 171288, + [SMALL_STATE(4678)] = 171312, + [SMALL_STATE(4679)] = 171336, + [SMALL_STATE(4680)] = 171360, + [SMALL_STATE(4681)] = 171384, + [SMALL_STATE(4682)] = 171408, + [SMALL_STATE(4683)] = 171432, + [SMALL_STATE(4684)] = 171456, + [SMALL_STATE(4685)] = 171480, + [SMALL_STATE(4686)] = 171502, + [SMALL_STATE(4687)] = 171526, + [SMALL_STATE(4688)] = 171550, + [SMALL_STATE(4689)] = 171574, + [SMALL_STATE(4690)] = 171608, + [SMALL_STATE(4691)] = 171632, + [SMALL_STATE(4692)] = 171654, + [SMALL_STATE(4693)] = 171678, + [SMALL_STATE(4694)] = 171702, + [SMALL_STATE(4695)] = 171726, + [SMALL_STATE(4696)] = 171750, + [SMALL_STATE(4697)] = 171774, + [SMALL_STATE(4698)] = 171798, + [SMALL_STATE(4699)] = 171822, + [SMALL_STATE(4700)] = 171866, + [SMALL_STATE(4701)] = 171890, + [SMALL_STATE(4702)] = 171914, + [SMALL_STATE(4703)] = 171942, + [SMALL_STATE(4704)] = 171970, + [SMALL_STATE(4705)] = 171998, + [SMALL_STATE(4706)] = 172026, + [SMALL_STATE(4707)] = 172054, + [SMALL_STATE(4708)] = 172082, + [SMALL_STATE(4709)] = 172110, + [SMALL_STATE(4710)] = 172138, + [SMALL_STATE(4711)] = 172160, + [SMALL_STATE(4712)] = 172184, + [SMALL_STATE(4713)] = 172212, + [SMALL_STATE(4714)] = 172240, + [SMALL_STATE(4715)] = 172268, + [SMALL_STATE(4716)] = 172292, + [SMALL_STATE(4717)] = 172316, + [SMALL_STATE(4718)] = 172338, + [SMALL_STATE(4719)] = 172360, + [SMALL_STATE(4720)] = 172388, + [SMALL_STATE(4721)] = 172412, + [SMALL_STATE(4722)] = 172436, + [SMALL_STATE(4723)] = 172460, + [SMALL_STATE(4724)] = 172484, + [SMALL_STATE(4725)] = 172508, + [SMALL_STATE(4726)] = 172532, + [SMALL_STATE(4727)] = 172556, + [SMALL_STATE(4728)] = 172580, + [SMALL_STATE(4729)] = 172604, + [SMALL_STATE(4730)] = 172628, + [SMALL_STATE(4731)] = 172652, + [SMALL_STATE(4732)] = 172676, + [SMALL_STATE(4733)] = 172700, + [SMALL_STATE(4734)] = 172724, + [SMALL_STATE(4735)] = 172748, + [SMALL_STATE(4736)] = 172772, + [SMALL_STATE(4737)] = 172796, + [SMALL_STATE(4738)] = 172820, + [SMALL_STATE(4739)] = 172844, + [SMALL_STATE(4740)] = 172868, + [SMALL_STATE(4741)] = 172892, + [SMALL_STATE(4742)] = 172914, + [SMALL_STATE(4743)] = 172938, + [SMALL_STATE(4744)] = 172962, + [SMALL_STATE(4745)] = 172986, + [SMALL_STATE(4746)] = 173010, + [SMALL_STATE(4747)] = 173032, + [SMALL_STATE(4748)] = 173056, + [SMALL_STATE(4749)] = 173078, + [SMALL_STATE(4750)] = 173102, + [SMALL_STATE(4751)] = 173126, + [SMALL_STATE(4752)] = 173150, + [SMALL_STATE(4753)] = 173174, + [SMALL_STATE(4754)] = 173198, + [SMALL_STATE(4755)] = 173222, + [SMALL_STATE(4756)] = 173246, + [SMALL_STATE(4757)] = 173270, + [SMALL_STATE(4758)] = 173294, + [SMALL_STATE(4759)] = 173316, + [SMALL_STATE(4760)] = 173340, + [SMALL_STATE(4761)] = 173362, + [SMALL_STATE(4762)] = 173404, + [SMALL_STATE(4763)] = 173446, + [SMALL_STATE(4764)] = 173470, + [SMALL_STATE(4765)] = 173494, + [SMALL_STATE(4766)] = 173518, + [SMALL_STATE(4767)] = 173542, + [SMALL_STATE(4768)] = 173566, + [SMALL_STATE(4769)] = 173588, + [SMALL_STATE(4770)] = 173612, + [SMALL_STATE(4771)] = 173650, + [SMALL_STATE(4772)] = 173696, + [SMALL_STATE(4773)] = 173720, + [SMALL_STATE(4774)] = 173744, + [SMALL_STATE(4775)] = 173768, + [SMALL_STATE(4776)] = 173794, + [SMALL_STATE(4777)] = 173816, + [SMALL_STATE(4778)] = 173840, + [SMALL_STATE(4779)] = 173864, + [SMALL_STATE(4780)] = 173888, + [SMALL_STATE(4781)] = 173912, + [SMALL_STATE(4782)] = 173936, + [SMALL_STATE(4783)] = 173960, + [SMALL_STATE(4784)] = 173984, + [SMALL_STATE(4785)] = 174006, + [SMALL_STATE(4786)] = 174030, + [SMALL_STATE(4787)] = 174054, + [SMALL_STATE(4788)] = 174076, + [SMALL_STATE(4789)] = 174114, + [SMALL_STATE(4790)] = 174138, + [SMALL_STATE(4791)] = 174162, + [SMALL_STATE(4792)] = 174186, + [SMALL_STATE(4793)] = 174210, + [SMALL_STATE(4794)] = 174234, + [SMALL_STATE(4795)] = 174258, + [SMALL_STATE(4796)] = 174282, + [SMALL_STATE(4797)] = 174304, + [SMALL_STATE(4798)] = 174328, + [SMALL_STATE(4799)] = 174349, + [SMALL_STATE(4800)] = 174372, + [SMALL_STATE(4801)] = 174395, + [SMALL_STATE(4802)] = 174422, + [SMALL_STATE(4803)] = 174443, + [SMALL_STATE(4804)] = 174470, + [SMALL_STATE(4805)] = 174493, + [SMALL_STATE(4806)] = 174516, + [SMALL_STATE(4807)] = 174555, + [SMALL_STATE(4808)] = 174576, + [SMALL_STATE(4809)] = 174597, + [SMALL_STATE(4810)] = 174618, + [SMALL_STATE(4811)] = 174639, + [SMALL_STATE(4812)] = 174660, + [SMALL_STATE(4813)] = 174699, + [SMALL_STATE(4814)] = 174726, + [SMALL_STATE(4815)] = 174747, + [SMALL_STATE(4816)] = 174768, + [SMALL_STATE(4817)] = 174807, + [SMALL_STATE(4818)] = 174846, + [SMALL_STATE(4819)] = 174885, + [SMALL_STATE(4820)] = 174926, + [SMALL_STATE(4821)] = 174947, + [SMALL_STATE(4822)] = 174968, + [SMALL_STATE(4823)] = 174991, + [SMALL_STATE(4824)] = 175032, + [SMALL_STATE(4825)] = 175055, + [SMALL_STATE(4826)] = 175078, + [SMALL_STATE(4827)] = 175101, + [SMALL_STATE(4828)] = 175124, + [SMALL_STATE(4829)] = 175147, + [SMALL_STATE(4830)] = 175170, + [SMALL_STATE(4831)] = 175193, + [SMALL_STATE(4832)] = 175216, + [SMALL_STATE(4833)] = 175239, + [SMALL_STATE(4834)] = 175262, + [SMALL_STATE(4835)] = 175285, + [SMALL_STATE(4836)] = 175308, + [SMALL_STATE(4837)] = 175337, + [SMALL_STATE(4838)] = 175360, + [SMALL_STATE(4839)] = 175383, + [SMALL_STATE(4840)] = 175406, + [SMALL_STATE(4841)] = 175429, + [SMALL_STATE(4842)] = 175456, + [SMALL_STATE(4843)] = 175479, + [SMALL_STATE(4844)] = 175502, + [SMALL_STATE(4845)] = 175525, + [SMALL_STATE(4846)] = 175548, + [SMALL_STATE(4847)] = 175571, + [SMALL_STATE(4848)] = 175594, + [SMALL_STATE(4849)] = 175617, + [SMALL_STATE(4850)] = 175640, + [SMALL_STATE(4851)] = 175663, + [SMALL_STATE(4852)] = 175686, + [SMALL_STATE(4853)] = 175707, + [SMALL_STATE(4854)] = 175728, + [SMALL_STATE(4855)] = 175755, + [SMALL_STATE(4856)] = 175776, + [SMALL_STATE(4857)] = 175817, + [SMALL_STATE(4858)] = 175840, + [SMALL_STATE(4859)] = 175861, + [SMALL_STATE(4860)] = 175902, + [SMALL_STATE(4861)] = 175925, + [SMALL_STATE(4862)] = 175948, + [SMALL_STATE(4863)] = 175989, + [SMALL_STATE(4864)] = 176010, + [SMALL_STATE(4865)] = 176031, + [SMALL_STATE(4866)] = 176052, + [SMALL_STATE(4867)] = 176075, + [SMALL_STATE(4868)] = 176102, + [SMALL_STATE(4869)] = 176125, + [SMALL_STATE(4870)] = 176148, + [SMALL_STATE(4871)] = 176171, + [SMALL_STATE(4872)] = 176210, + [SMALL_STATE(4873)] = 176233, + [SMALL_STATE(4874)] = 176254, + [SMALL_STATE(4875)] = 176275, + [SMALL_STATE(4876)] = 176296, + [SMALL_STATE(4877)] = 176317, + [SMALL_STATE(4878)] = 176338, + [SMALL_STATE(4879)] = 176359, + [SMALL_STATE(4880)] = 176380, + [SMALL_STATE(4881)] = 176401, + [SMALL_STATE(4882)] = 176434, + [SMALL_STATE(4883)] = 176473, + [SMALL_STATE(4884)] = 176514, + [SMALL_STATE(4885)] = 176535, + [SMALL_STATE(4886)] = 176556, + [SMALL_STATE(4887)] = 176577, + [SMALL_STATE(4888)] = 176598, + [SMALL_STATE(4889)] = 176619, + [SMALL_STATE(4890)] = 176640, + [SMALL_STATE(4891)] = 176661, + [SMALL_STATE(4892)] = 176682, + [SMALL_STATE(4893)] = 176709, + [SMALL_STATE(4894)] = 176750, + [SMALL_STATE(4895)] = 176773, + [SMALL_STATE(4896)] = 176800, + [SMALL_STATE(4897)] = 176841, + [SMALL_STATE(4898)] = 176862, + [SMALL_STATE(4899)] = 176883, + [SMALL_STATE(4900)] = 176904, + [SMALL_STATE(4901)] = 176941, + [SMALL_STATE(4902)] = 176962, + [SMALL_STATE(4903)] = 176983, + [SMALL_STATE(4904)] = 177004, + [SMALL_STATE(4905)] = 177025, + [SMALL_STATE(4906)] = 177046, + [SMALL_STATE(4907)] = 177067, + [SMALL_STATE(4908)] = 177088, + [SMALL_STATE(4909)] = 177109, + [SMALL_STATE(4910)] = 177130, + [SMALL_STATE(4911)] = 177151, + [SMALL_STATE(4912)] = 177186, + [SMALL_STATE(4913)] = 177221, + [SMALL_STATE(4914)] = 177256, + [SMALL_STATE(4915)] = 177291, + [SMALL_STATE(4916)] = 177312, + [SMALL_STATE(4917)] = 177333, + [SMALL_STATE(4918)] = 177354, + [SMALL_STATE(4919)] = 177375, + [SMALL_STATE(4920)] = 177396, + [SMALL_STATE(4921)] = 177433, + [SMALL_STATE(4922)] = 177472, + [SMALL_STATE(4923)] = 177499, + [SMALL_STATE(4924)] = 177520, + [SMALL_STATE(4925)] = 177541, + [SMALL_STATE(4926)] = 177562, + [SMALL_STATE(4927)] = 177583, + [SMALL_STATE(4928)] = 177604, + [SMALL_STATE(4929)] = 177625, + [SMALL_STATE(4930)] = 177646, + [SMALL_STATE(4931)] = 177667, + [SMALL_STATE(4932)] = 177688, + [SMALL_STATE(4933)] = 177709, + [SMALL_STATE(4934)] = 177730, + [SMALL_STATE(4935)] = 177751, + [SMALL_STATE(4936)] = 177772, + [SMALL_STATE(4937)] = 177793, + [SMALL_STATE(4938)] = 177814, + [SMALL_STATE(4939)] = 177835, + [SMALL_STATE(4940)] = 177866, + [SMALL_STATE(4941)] = 177887, + [SMALL_STATE(4942)] = 177908, + [SMALL_STATE(4943)] = 177931, + [SMALL_STATE(4944)] = 177954, + [SMALL_STATE(4945)] = 177981, + [SMALL_STATE(4946)] = 178020, + [SMALL_STATE(4947)] = 178061, + [SMALL_STATE(4948)] = 178088, + [SMALL_STATE(4949)] = 178127, + [SMALL_STATE(4950)] = 178154, + [SMALL_STATE(4951)] = 178181, + [SMALL_STATE(4952)] = 178208, + [SMALL_STATE(4953)] = 178235, + [SMALL_STATE(4954)] = 178262, + [SMALL_STATE(4955)] = 178289, + [SMALL_STATE(4956)] = 178316, + [SMALL_STATE(4957)] = 178343, + [SMALL_STATE(4958)] = 178370, + [SMALL_STATE(4959)] = 178397, + [SMALL_STATE(4960)] = 178424, + [SMALL_STATE(4961)] = 178451, + [SMALL_STATE(4962)] = 178472, + [SMALL_STATE(4963)] = 178493, + [SMALL_STATE(4964)] = 178534, + [SMALL_STATE(4965)] = 178561, + [SMALL_STATE(4966)] = 178584, + [SMALL_STATE(4967)] = 178605, + [SMALL_STATE(4968)] = 178626, + [SMALL_STATE(4969)] = 178652, + [SMALL_STATE(4970)] = 178678, + [SMALL_STATE(4971)] = 178714, + [SMALL_STATE(4972)] = 178750, + [SMALL_STATE(4973)] = 178782, + [SMALL_STATE(4974)] = 178808, + [SMALL_STATE(4975)] = 178844, + [SMALL_STATE(4976)] = 178868, + [SMALL_STATE(4977)] = 178894, + [SMALL_STATE(4978)] = 178932, + [SMALL_STATE(4979)] = 178958, + [SMALL_STATE(4980)] = 178982, + [SMALL_STATE(4981)] = 179018, + [SMALL_STATE(4982)] = 179042, + [SMALL_STATE(4983)] = 179072, + [SMALL_STATE(4984)] = 179102, + [SMALL_STATE(4985)] = 179138, + [SMALL_STATE(4986)] = 179174, + [SMALL_STATE(4987)] = 179206, + [SMALL_STATE(4988)] = 179230, + [SMALL_STATE(4989)] = 179262, + [SMALL_STATE(4990)] = 179288, + [SMALL_STATE(4991)] = 179314, + [SMALL_STATE(4992)] = 179340, + [SMALL_STATE(4993)] = 179370, + [SMALL_STATE(4994)] = 179400, + [SMALL_STATE(4995)] = 179430, + [SMALL_STATE(4996)] = 179456, + [SMALL_STATE(4997)] = 179482, + [SMALL_STATE(4998)] = 179512, + [SMALL_STATE(4999)] = 179542, + [SMALL_STATE(5000)] = 179572, + [SMALL_STATE(5001)] = 179602, + [SMALL_STATE(5002)] = 179632, + [SMALL_STATE(5003)] = 179662, + [SMALL_STATE(5004)] = 179692, + [SMALL_STATE(5005)] = 179722, + [SMALL_STATE(5006)] = 179752, + [SMALL_STATE(5007)] = 179782, + [SMALL_STATE(5008)] = 179812, + [SMALL_STATE(5009)] = 179842, + [SMALL_STATE(5010)] = 179872, + [SMALL_STATE(5011)] = 179902, + [SMALL_STATE(5012)] = 179932, + [SMALL_STATE(5013)] = 179962, + [SMALL_STATE(5014)] = 179992, + [SMALL_STATE(5015)] = 180016, + [SMALL_STATE(5016)] = 180052, + [SMALL_STATE(5017)] = 180088, + [SMALL_STATE(5018)] = 180112, + [SMALL_STATE(5019)] = 180144, + [SMALL_STATE(5020)] = 180168, + [SMALL_STATE(5021)] = 180206, + [SMALL_STATE(5022)] = 180230, + [SMALL_STATE(5023)] = 180266, + [SMALL_STATE(5024)] = 180288, + [SMALL_STATE(5025)] = 180314, + [SMALL_STATE(5026)] = 180350, + [SMALL_STATE(5027)] = 180376, + [SMALL_STATE(5028)] = 180406, + [SMALL_STATE(5029)] = 180435, + [SMALL_STATE(5030)] = 180470, + [SMALL_STATE(5031)] = 180505, + [SMALL_STATE(5032)] = 180540, + [SMALL_STATE(5033)] = 180569, + [SMALL_STATE(5034)] = 180598, + [SMALL_STATE(5035)] = 180633, + [SMALL_STATE(5036)] = 180668, + [SMALL_STATE(5037)] = 180703, + [SMALL_STATE(5038)] = 180724, + [SMALL_STATE(5039)] = 180757, + [SMALL_STATE(5040)] = 180790, + [SMALL_STATE(5041)] = 180823, + [SMALL_STATE(5042)] = 180852, + [SMALL_STATE(5043)] = 180887, + [SMALL_STATE(5044)] = 180922, + [SMALL_STATE(5045)] = 180947, + [SMALL_STATE(5046)] = 180976, + [SMALL_STATE(5047)] = 181005, + [SMALL_STATE(5048)] = 181034, + [SMALL_STATE(5049)] = 181063, + [SMALL_STATE(5050)] = 181092, + [SMALL_STATE(5051)] = 181121, + [SMALL_STATE(5052)] = 181150, + [SMALL_STATE(5053)] = 181179, + [SMALL_STATE(5054)] = 181208, + [SMALL_STATE(5055)] = 181237, + [SMALL_STATE(5056)] = 181266, + [SMALL_STATE(5057)] = 181295, + [SMALL_STATE(5058)] = 181324, + [SMALL_STATE(5059)] = 181353, + [SMALL_STATE(5060)] = 181382, + [SMALL_STATE(5061)] = 181405, + [SMALL_STATE(5062)] = 181434, + [SMALL_STATE(5063)] = 181463, + [SMALL_STATE(5064)] = 181492, + [SMALL_STATE(5065)] = 181523, + [SMALL_STATE(5066)] = 181558, + [SMALL_STATE(5067)] = 181593, + [SMALL_STATE(5068)] = 181618, + [SMALL_STATE(5069)] = 181653, + [SMALL_STATE(5070)] = 181688, + [SMALL_STATE(5071)] = 181709, + [SMALL_STATE(5072)] = 181732, + [SMALL_STATE(5073)] = 181757, + [SMALL_STATE(5074)] = 181792, + [SMALL_STATE(5075)] = 181813, + [SMALL_STATE(5076)] = 181848, + [SMALL_STATE(5077)] = 181875, + [SMALL_STATE(5078)] = 181896, + [SMALL_STATE(5079)] = 181921, + [SMALL_STATE(5080)] = 181956, + [SMALL_STATE(5081)] = 181977, + [SMALL_STATE(5082)] = 182006, + [SMALL_STATE(5083)] = 182035, + [SMALL_STATE(5084)] = 182056, + [SMALL_STATE(5085)] = 182077, + [SMALL_STATE(5086)] = 182100, + [SMALL_STATE(5087)] = 182123, + [SMALL_STATE(5088)] = 182158, + [SMALL_STATE(5089)] = 182187, + [SMALL_STATE(5090)] = 182222, + [SMALL_STATE(5091)] = 182257, + [SMALL_STATE(5092)] = 182292, + [SMALL_STATE(5093)] = 182327, + [SMALL_STATE(5094)] = 182360, + [SMALL_STATE(5095)] = 182381, + [SMALL_STATE(5096)] = 182416, + [SMALL_STATE(5097)] = 182451, + [SMALL_STATE(5098)] = 182486, + [SMALL_STATE(5099)] = 182521, + [SMALL_STATE(5100)] = 182556, + [SMALL_STATE(5101)] = 182591, + [SMALL_STATE(5102)] = 182626, + [SMALL_STATE(5103)] = 182661, + [SMALL_STATE(5104)] = 182696, + [SMALL_STATE(5105)] = 182731, + [SMALL_STATE(5106)] = 182766, + [SMALL_STATE(5107)] = 182801, + [SMALL_STATE(5108)] = 182836, + [SMALL_STATE(5109)] = 182857, + [SMALL_STATE(5110)] = 182892, + [SMALL_STATE(5111)] = 182923, + [SMALL_STATE(5112)] = 182952, + [SMALL_STATE(5113)] = 182987, + [SMALL_STATE(5114)] = 183022, + [SMALL_STATE(5115)] = 183051, + [SMALL_STATE(5116)] = 183076, + [SMALL_STATE(5117)] = 183111, + [SMALL_STATE(5118)] = 183132, + [SMALL_STATE(5119)] = 183167, + [SMALL_STATE(5120)] = 183196, + [SMALL_STATE(5121)] = 183217, + [SMALL_STATE(5122)] = 183252, + [SMALL_STATE(5123)] = 183281, + [SMALL_STATE(5124)] = 183302, + [SMALL_STATE(5125)] = 183337, + [SMALL_STATE(5126)] = 183358, + [SMALL_STATE(5127)] = 183387, + [SMALL_STATE(5128)] = 183412, + [SMALL_STATE(5129)] = 183437, + [SMALL_STATE(5130)] = 183458, + [SMALL_STATE(5131)] = 183493, + [SMALL_STATE(5132)] = 183514, + [SMALL_STATE(5133)] = 183549, + [SMALL_STATE(5134)] = 183570, + [SMALL_STATE(5135)] = 183593, + [SMALL_STATE(5136)] = 183614, + [SMALL_STATE(5137)] = 183637, + [SMALL_STATE(5138)] = 183672, + [SMALL_STATE(5139)] = 183707, + [SMALL_STATE(5140)] = 183742, + [SMALL_STATE(5141)] = 183767, + [SMALL_STATE(5142)] = 183790, + [SMALL_STATE(5143)] = 183825, + [SMALL_STATE(5144)] = 183860, + [SMALL_STATE(5145)] = 183880, + [SMALL_STATE(5146)] = 183910, + [SMALL_STATE(5147)] = 183932, + [SMALL_STATE(5148)] = 183962, + [SMALL_STATE(5149)] = 183992, + [SMALL_STATE(5150)] = 184022, + [SMALL_STATE(5151)] = 184052, + [SMALL_STATE(5152)] = 184074, + [SMALL_STATE(5153)] = 184104, + [SMALL_STATE(5154)] = 184134, + [SMALL_STATE(5155)] = 184162, + [SMALL_STATE(5156)] = 184194, + [SMALL_STATE(5157)] = 184214, + [SMALL_STATE(5158)] = 184244, + [SMALL_STATE(5159)] = 184274, + [SMALL_STATE(5160)] = 184304, + [SMALL_STATE(5161)] = 184328, + [SMALL_STATE(5162)] = 184348, + [SMALL_STATE(5163)] = 184374, + [SMALL_STATE(5164)] = 184398, + [SMALL_STATE(5165)] = 184418, + [SMALL_STATE(5166)] = 184438, + [SMALL_STATE(5167)] = 184458, + [SMALL_STATE(5168)] = 184482, + [SMALL_STATE(5169)] = 184502, + [SMALL_STATE(5170)] = 184528, + [SMALL_STATE(5171)] = 184558, + [SMALL_STATE(5172)] = 184590, + [SMALL_STATE(5173)] = 184616, + [SMALL_STATE(5174)] = 184638, + [SMALL_STATE(5175)] = 184658, + [SMALL_STATE(5176)] = 184678, + [SMALL_STATE(5177)] = 184708, + [SMALL_STATE(5178)] = 184738, + [SMALL_STATE(5179)] = 184762, + [SMALL_STATE(5180)] = 184792, + [SMALL_STATE(5181)] = 184816, + [SMALL_STATE(5182)] = 184840, + [SMALL_STATE(5183)] = 184862, + [SMALL_STATE(5184)] = 184892, + [SMALL_STATE(5185)] = 184922, + [SMALL_STATE(5186)] = 184952, + [SMALL_STATE(5187)] = 184982, + [SMALL_STATE(5188)] = 185012, + [SMALL_STATE(5189)] = 185042, + [SMALL_STATE(5190)] = 185072, + [SMALL_STATE(5191)] = 185104, + [SMALL_STATE(5192)] = 185126, + [SMALL_STATE(5193)] = 185156, + [SMALL_STATE(5194)] = 185186, + [SMALL_STATE(5195)] = 185214, + [SMALL_STATE(5196)] = 185240, + [SMALL_STATE(5197)] = 185270, + [SMALL_STATE(5198)] = 185300, + [SMALL_STATE(5199)] = 185322, + [SMALL_STATE(5200)] = 185352, + [SMALL_STATE(5201)] = 185382, + [SMALL_STATE(5202)] = 185412, + [SMALL_STATE(5203)] = 185442, + [SMALL_STATE(5204)] = 185472, + [SMALL_STATE(5205)] = 185502, + [SMALL_STATE(5206)] = 185532, + [SMALL_STATE(5207)] = 185562, + [SMALL_STATE(5208)] = 185592, + [SMALL_STATE(5209)] = 185614, + [SMALL_STATE(5210)] = 185644, + [SMALL_STATE(5211)] = 185674, + [SMALL_STATE(5212)] = 185704, + [SMALL_STATE(5213)] = 185734, + [SMALL_STATE(5214)] = 185764, + [SMALL_STATE(5215)] = 185794, + [SMALL_STATE(5216)] = 185822, + [SMALL_STATE(5217)] = 185842, + [SMALL_STATE(5218)] = 185872, + [SMALL_STATE(5219)] = 185902, + [SMALL_STATE(5220)] = 185932, + [SMALL_STATE(5221)] = 185962, + [SMALL_STATE(5222)] = 185992, + [SMALL_STATE(5223)] = 186022, + [SMALL_STATE(5224)] = 186054, + [SMALL_STATE(5225)] = 186084, + [SMALL_STATE(5226)] = 186114, + [SMALL_STATE(5227)] = 186142, + [SMALL_STATE(5228)] = 186172, + [SMALL_STATE(5229)] = 186196, + [SMALL_STATE(5230)] = 186220, + [SMALL_STATE(5231)] = 186242, + [SMALL_STATE(5232)] = 186272, + [SMALL_STATE(5233)] = 186302, + [SMALL_STATE(5234)] = 186322, + [SMALL_STATE(5235)] = 186352, + [SMALL_STATE(5236)] = 186376, + [SMALL_STATE(5237)] = 186404, + [SMALL_STATE(5238)] = 186432, + [SMALL_STATE(5239)] = 186460, + [SMALL_STATE(5240)] = 186488, + [SMALL_STATE(5241)] = 186516, + [SMALL_STATE(5242)] = 186544, + [SMALL_STATE(5243)] = 186572, + [SMALL_STATE(5244)] = 186602, + [SMALL_STATE(5245)] = 186630, + [SMALL_STATE(5246)] = 186658, + [SMALL_STATE(5247)] = 186686, + [SMALL_STATE(5248)] = 186714, + [SMALL_STATE(5249)] = 186742, + [SMALL_STATE(5250)] = 186772, + [SMALL_STATE(5251)] = 186802, + [SMALL_STATE(5252)] = 186830, + [SMALL_STATE(5253)] = 186858, + [SMALL_STATE(5254)] = 186886, + [SMALL_STATE(5255)] = 186914, + [SMALL_STATE(5256)] = 186934, + [SMALL_STATE(5257)] = 186962, + [SMALL_STATE(5258)] = 186990, + [SMALL_STATE(5259)] = 187018, + [SMALL_STATE(5260)] = 187038, + [SMALL_STATE(5261)] = 187068, + [SMALL_STATE(5262)] = 187096, + [SMALL_STATE(5263)] = 187116, + [SMALL_STATE(5264)] = 187140, + [SMALL_STATE(5265)] = 187168, + [SMALL_STATE(5266)] = 187188, + [SMALL_STATE(5267)] = 187216, + [SMALL_STATE(5268)] = 187244, + [SMALL_STATE(5269)] = 187272, + [SMALL_STATE(5270)] = 187292, + [SMALL_STATE(5271)] = 187312, + [SMALL_STATE(5272)] = 187342, + [SMALL_STATE(5273)] = 187366, + [SMALL_STATE(5274)] = 187396, + [SMALL_STATE(5275)] = 187423, + [SMALL_STATE(5276)] = 187448, + [SMALL_STATE(5277)] = 187473, + [SMALL_STATE(5278)] = 187498, + [SMALL_STATE(5279)] = 187519, + [SMALL_STATE(5280)] = 187544, + [SMALL_STATE(5281)] = 187569, + [SMALL_STATE(5282)] = 187590, + [SMALL_STATE(5283)] = 187609, + [SMALL_STATE(5284)] = 187634, + [SMALL_STATE(5285)] = 187659, + [SMALL_STATE(5286)] = 187686, + [SMALL_STATE(5287)] = 187713, + [SMALL_STATE(5288)] = 187734, + [SMALL_STATE(5289)] = 187759, + [SMALL_STATE(5290)] = 187786, + [SMALL_STATE(5291)] = 187805, + [SMALL_STATE(5292)] = 187826, + [SMALL_STATE(5293)] = 187845, + [SMALL_STATE(5294)] = 187864, + [SMALL_STATE(5295)] = 187891, + [SMALL_STATE(5296)] = 187910, + [SMALL_STATE(5297)] = 187929, + [SMALL_STATE(5298)] = 187958, + [SMALL_STATE(5299)] = 187977, + [SMALL_STATE(5300)] = 188002, + [SMALL_STATE(5301)] = 188029, + [SMALL_STATE(5302)] = 188050, + [SMALL_STATE(5303)] = 188071, + [SMALL_STATE(5304)] = 188090, + [SMALL_STATE(5305)] = 188115, + [SMALL_STATE(5306)] = 188142, + [SMALL_STATE(5307)] = 188167, + [SMALL_STATE(5308)] = 188192, + [SMALL_STATE(5309)] = 188211, + [SMALL_STATE(5310)] = 188236, + [SMALL_STATE(5311)] = 188261, + [SMALL_STATE(5312)] = 188288, + [SMALL_STATE(5313)] = 188313, + [SMALL_STATE(5314)] = 188332, + [SMALL_STATE(5315)] = 188355, + [SMALL_STATE(5316)] = 188380, + [SMALL_STATE(5317)] = 188407, + [SMALL_STATE(5318)] = 188432, + [SMALL_STATE(5319)] = 188451, + [SMALL_STATE(5320)] = 188474, + [SMALL_STATE(5321)] = 188499, + [SMALL_STATE(5322)] = 188526, + [SMALL_STATE(5323)] = 188551, + [SMALL_STATE(5324)] = 188570, + [SMALL_STATE(5325)] = 188589, + [SMALL_STATE(5326)] = 188614, + [SMALL_STATE(5327)] = 188641, + [SMALL_STATE(5328)] = 188662, + [SMALL_STATE(5329)] = 188689, + [SMALL_STATE(5330)] = 188714, + [SMALL_STATE(5331)] = 188741, + [SMALL_STATE(5332)] = 188766, + [SMALL_STATE(5333)] = 188787, + [SMALL_STATE(5334)] = 188812, + [SMALL_STATE(5335)] = 188839, + [SMALL_STATE(5336)] = 188860, + [SMALL_STATE(5337)] = 188879, + [SMALL_STATE(5338)] = 188906, + [SMALL_STATE(5339)] = 188931, + [SMALL_STATE(5340)] = 188958, + [SMALL_STATE(5341)] = 188983, + [SMALL_STATE(5342)] = 189010, + [SMALL_STATE(5343)] = 189035, + [SMALL_STATE(5344)] = 189062, + [SMALL_STATE(5345)] = 189087, + [SMALL_STATE(5346)] = 189114, + [SMALL_STATE(5347)] = 189141, + [SMALL_STATE(5348)] = 189168, + [SMALL_STATE(5349)] = 189195, + [SMALL_STATE(5350)] = 189222, + [SMALL_STATE(5351)] = 189249, + [SMALL_STATE(5352)] = 189276, + [SMALL_STATE(5353)] = 189303, + [SMALL_STATE(5354)] = 189330, + [SMALL_STATE(5355)] = 189357, + [SMALL_STATE(5356)] = 189384, + [SMALL_STATE(5357)] = 189409, + [SMALL_STATE(5358)] = 189434, + [SMALL_STATE(5359)] = 189461, + [SMALL_STATE(5360)] = 189486, + [SMALL_STATE(5361)] = 189511, + [SMALL_STATE(5362)] = 189536, + [SMALL_STATE(5363)] = 189561, + [SMALL_STATE(5364)] = 189582, + [SMALL_STATE(5365)] = 189603, + [SMALL_STATE(5366)] = 189628, + [SMALL_STATE(5367)] = 189651, + [SMALL_STATE(5368)] = 189676, + [SMALL_STATE(5369)] = 189703, + [SMALL_STATE(5370)] = 189728, + [SMALL_STATE(5371)] = 189747, + [SMALL_STATE(5372)] = 189768, + [SMALL_STATE(5373)] = 189795, + [SMALL_STATE(5374)] = 189814, + [SMALL_STATE(5375)] = 189839, + [SMALL_STATE(5376)] = 189864, + [SMALL_STATE(5377)] = 189883, + [SMALL_STATE(5378)] = 189908, + [SMALL_STATE(5379)] = 189933, + [SMALL_STATE(5380)] = 189958, + [SMALL_STATE(5381)] = 189983, + [SMALL_STATE(5382)] = 190008, + [SMALL_STATE(5383)] = 190031, + [SMALL_STATE(5384)] = 190056, + [SMALL_STATE(5385)] = 190081, + [SMALL_STATE(5386)] = 190106, + [SMALL_STATE(5387)] = 190131, + [SMALL_STATE(5388)] = 190156, + [SMALL_STATE(5389)] = 190177, + [SMALL_STATE(5390)] = 190202, + [SMALL_STATE(5391)] = 190227, + [SMALL_STATE(5392)] = 190252, + [SMALL_STATE(5393)] = 190277, + [SMALL_STATE(5394)] = 190302, + [SMALL_STATE(5395)] = 190329, + [SMALL_STATE(5396)] = 190348, + [SMALL_STATE(5397)] = 190369, + [SMALL_STATE(5398)] = 190394, + [SMALL_STATE(5399)] = 190413, + [SMALL_STATE(5400)] = 190432, + [SMALL_STATE(5401)] = 190457, + [SMALL_STATE(5402)] = 190482, + [SMALL_STATE(5403)] = 190507, + [SMALL_STATE(5404)] = 190528, + [SMALL_STATE(5405)] = 190553, + [SMALL_STATE(5406)] = 190578, + [SMALL_STATE(5407)] = 190599, + [SMALL_STATE(5408)] = 190626, + [SMALL_STATE(5409)] = 190647, + [SMALL_STATE(5410)] = 190672, + [SMALL_STATE(5411)] = 190697, + [SMALL_STATE(5412)] = 190716, + [SMALL_STATE(5413)] = 190741, + [SMALL_STATE(5414)] = 190766, + [SMALL_STATE(5415)] = 190791, + [SMALL_STATE(5416)] = 190816, + [SMALL_STATE(5417)] = 190841, + [SMALL_STATE(5418)] = 190866, + [SMALL_STATE(5419)] = 190887, + [SMALL_STATE(5420)] = 190908, + [SMALL_STATE(5421)] = 190933, + [SMALL_STATE(5422)] = 190958, + [SMALL_STATE(5423)] = 190983, + [SMALL_STATE(5424)] = 191008, + [SMALL_STATE(5425)] = 191031, + [SMALL_STATE(5426)] = 191056, + [SMALL_STATE(5427)] = 191081, + [SMALL_STATE(5428)] = 191105, + [SMALL_STATE(5429)] = 191123, + [SMALL_STATE(5430)] = 191149, + [SMALL_STATE(5431)] = 191167, + [SMALL_STATE(5432)] = 191185, + [SMALL_STATE(5433)] = 191203, + [SMALL_STATE(5434)] = 191221, + [SMALL_STATE(5435)] = 191241, + [SMALL_STATE(5436)] = 191263, + [SMALL_STATE(5437)] = 191281, + [SMALL_STATE(5438)] = 191303, + [SMALL_STATE(5439)] = 191321, + [SMALL_STATE(5440)] = 191339, + [SMALL_STATE(5441)] = 191357, + [SMALL_STATE(5442)] = 191375, + [SMALL_STATE(5443)] = 191393, + [SMALL_STATE(5444)] = 191411, + [SMALL_STATE(5445)] = 191431, + [SMALL_STATE(5446)] = 191449, + [SMALL_STATE(5447)] = 191467, + [SMALL_STATE(5448)] = 191487, + [SMALL_STATE(5449)] = 191513, + [SMALL_STATE(5450)] = 191539, + [SMALL_STATE(5451)] = 191557, + [SMALL_STATE(5452)] = 191583, + [SMALL_STATE(5453)] = 191609, + [SMALL_STATE(5454)] = 191631, + [SMALL_STATE(5455)] = 191657, + [SMALL_STATE(5456)] = 191683, + [SMALL_STATE(5457)] = 191701, + [SMALL_STATE(5458)] = 191727, + [SMALL_STATE(5459)] = 191753, + [SMALL_STATE(5460)] = 191771, + [SMALL_STATE(5461)] = 191789, + [SMALL_STATE(5462)] = 191815, + [SMALL_STATE(5463)] = 191841, + [SMALL_STATE(5464)] = 191867, + [SMALL_STATE(5465)] = 191895, + [SMALL_STATE(5466)] = 191921, + [SMALL_STATE(5467)] = 191939, + [SMALL_STATE(5468)] = 191965, + [SMALL_STATE(5469)] = 191991, + [SMALL_STATE(5470)] = 192017, + [SMALL_STATE(5471)] = 192043, + [SMALL_STATE(5472)] = 192069, + [SMALL_STATE(5473)] = 192091, + [SMALL_STATE(5474)] = 192113, + [SMALL_STATE(5475)] = 192133, + [SMALL_STATE(5476)] = 192151, + [SMALL_STATE(5477)] = 192177, + [SMALL_STATE(5478)] = 192195, + [SMALL_STATE(5479)] = 192217, + [SMALL_STATE(5480)] = 192235, + [SMALL_STATE(5481)] = 192257, + [SMALL_STATE(5482)] = 192279, + [SMALL_STATE(5483)] = 192295, + [SMALL_STATE(5484)] = 192313, + [SMALL_STATE(5485)] = 192331, + [SMALL_STATE(5486)] = 192349, + [SMALL_STATE(5487)] = 192367, + [SMALL_STATE(5488)] = 192385, + [SMALL_STATE(5489)] = 192403, + [SMALL_STATE(5490)] = 192421, + [SMALL_STATE(5491)] = 192439, + [SMALL_STATE(5492)] = 192455, + [SMALL_STATE(5493)] = 192481, + [SMALL_STATE(5494)] = 192499, + [SMALL_STATE(5495)] = 192517, + [SMALL_STATE(5496)] = 192535, + [SMALL_STATE(5497)] = 192553, + [SMALL_STATE(5498)] = 192571, + [SMALL_STATE(5499)] = 192589, + [SMALL_STATE(5500)] = 192607, + [SMALL_STATE(5501)] = 192625, + [SMALL_STATE(5502)] = 192643, + [SMALL_STATE(5503)] = 192663, + [SMALL_STATE(5504)] = 192687, + [SMALL_STATE(5505)] = 192705, + [SMALL_STATE(5506)] = 192723, + [SMALL_STATE(5507)] = 192741, + [SMALL_STATE(5508)] = 192759, + [SMALL_STATE(5509)] = 192777, + [SMALL_STATE(5510)] = 192803, + [SMALL_STATE(5511)] = 192821, + [SMALL_STATE(5512)] = 192841, + [SMALL_STATE(5513)] = 192859, + [SMALL_STATE(5514)] = 192885, + [SMALL_STATE(5515)] = 192903, + [SMALL_STATE(5516)] = 192921, + [SMALL_STATE(5517)] = 192939, + [SMALL_STATE(5518)] = 192963, + [SMALL_STATE(5519)] = 192981, + [SMALL_STATE(5520)] = 192999, + [SMALL_STATE(5521)] = 193017, + [SMALL_STATE(5522)] = 193035, + [SMALL_STATE(5523)] = 193053, + [SMALL_STATE(5524)] = 193079, + [SMALL_STATE(5525)] = 193097, + [SMALL_STATE(5526)] = 193115, + [SMALL_STATE(5527)] = 193133, + [SMALL_STATE(5528)] = 193155, + [SMALL_STATE(5529)] = 193181, + [SMALL_STATE(5530)] = 193199, + [SMALL_STATE(5531)] = 193225, + [SMALL_STATE(5532)] = 193243, + [SMALL_STATE(5533)] = 193261, + [SMALL_STATE(5534)] = 193281, + [SMALL_STATE(5535)] = 193301, + [SMALL_STATE(5536)] = 193321, + [SMALL_STATE(5537)] = 193347, + [SMALL_STATE(5538)] = 193375, + [SMALL_STATE(5539)] = 193401, + [SMALL_STATE(5540)] = 193427, + [SMALL_STATE(5541)] = 193447, + [SMALL_STATE(5542)] = 193473, + [SMALL_STATE(5543)] = 193491, + [SMALL_STATE(5544)] = 193517, + [SMALL_STATE(5545)] = 193543, + [SMALL_STATE(5546)] = 193561, + [SMALL_STATE(5547)] = 193579, + [SMALL_STATE(5548)] = 193597, + [SMALL_STATE(5549)] = 193617, + [SMALL_STATE(5550)] = 193641, + [SMALL_STATE(5551)] = 193667, + [SMALL_STATE(5552)] = 193685, + [SMALL_STATE(5553)] = 193703, + [SMALL_STATE(5554)] = 193727, + [SMALL_STATE(5555)] = 193745, + [SMALL_STATE(5556)] = 193771, + [SMALL_STATE(5557)] = 193793, + [SMALL_STATE(5558)] = 193815, + [SMALL_STATE(5559)] = 193833, + [SMALL_STATE(5560)] = 193859, + [SMALL_STATE(5561)] = 193881, + [SMALL_STATE(5562)] = 193899, + [SMALL_STATE(5563)] = 193917, + [SMALL_STATE(5564)] = 193938, + [SMALL_STATE(5565)] = 193961, + [SMALL_STATE(5566)] = 193980, + [SMALL_STATE(5567)] = 194005, + [SMALL_STATE(5568)] = 194030, + [SMALL_STATE(5569)] = 194055, + [SMALL_STATE(5570)] = 194080, + [SMALL_STATE(5571)] = 194105, + [SMALL_STATE(5572)] = 194130, + [SMALL_STATE(5573)] = 194155, + [SMALL_STATE(5574)] = 194180, + [SMALL_STATE(5575)] = 194197, + [SMALL_STATE(5576)] = 194214, + [SMALL_STATE(5577)] = 194231, + [SMALL_STATE(5578)] = 194252, + [SMALL_STATE(5579)] = 194273, + [SMALL_STATE(5580)] = 194290, + [SMALL_STATE(5581)] = 194307, + [SMALL_STATE(5582)] = 194324, + [SMALL_STATE(5583)] = 194341, + [SMALL_STATE(5584)] = 194358, + [SMALL_STATE(5585)] = 194383, + [SMALL_STATE(5586)] = 194408, + [SMALL_STATE(5587)] = 194425, + [SMALL_STATE(5588)] = 194442, + [SMALL_STATE(5589)] = 194459, + [SMALL_STATE(5590)] = 194482, + [SMALL_STATE(5591)] = 194503, + [SMALL_STATE(5592)] = 194528, + [SMALL_STATE(5593)] = 194545, + [SMALL_STATE(5594)] = 194568, + [SMALL_STATE(5595)] = 194593, + [SMALL_STATE(5596)] = 194618, + [SMALL_STATE(5597)] = 194639, + [SMALL_STATE(5598)] = 194662, + [SMALL_STATE(5599)] = 194687, + [SMALL_STATE(5600)] = 194712, + [SMALL_STATE(5601)] = 194737, + [SMALL_STATE(5602)] = 194754, + [SMALL_STATE(5603)] = 194779, + [SMALL_STATE(5604)] = 194796, + [SMALL_STATE(5605)] = 194813, + [SMALL_STATE(5606)] = 194830, + [SMALL_STATE(5607)] = 194851, + [SMALL_STATE(5608)] = 194866, + [SMALL_STATE(5609)] = 194889, + [SMALL_STATE(5610)] = 194910, + [SMALL_STATE(5611)] = 194933, + [SMALL_STATE(5612)] = 194956, + [SMALL_STATE(5613)] = 194981, + [SMALL_STATE(5614)] = 195006, + [SMALL_STATE(5615)] = 195029, + [SMALL_STATE(5616)] = 195054, + [SMALL_STATE(5617)] = 195079, + [SMALL_STATE(5618)] = 195100, + [SMALL_STATE(5619)] = 195117, + [SMALL_STATE(5620)] = 195140, + [SMALL_STATE(5621)] = 195165, + [SMALL_STATE(5622)] = 195182, + [SMALL_STATE(5623)] = 195199, + [SMALL_STATE(5624)] = 195216, + [SMALL_STATE(5625)] = 195233, + [SMALL_STATE(5626)] = 195258, + [SMALL_STATE(5627)] = 195281, + [SMALL_STATE(5628)] = 195306, + [SMALL_STATE(5629)] = 195331, + [SMALL_STATE(5630)] = 195354, + [SMALL_STATE(5631)] = 195375, + [SMALL_STATE(5632)] = 195400, + [SMALL_STATE(5633)] = 195425, + [SMALL_STATE(5634)] = 195446, + [SMALL_STATE(5635)] = 195471, + [SMALL_STATE(5636)] = 195494, + [SMALL_STATE(5637)] = 195519, + [SMALL_STATE(5638)] = 195544, + [SMALL_STATE(5639)] = 195565, + [SMALL_STATE(5640)] = 195588, + [SMALL_STATE(5641)] = 195613, + [SMALL_STATE(5642)] = 195632, + [SMALL_STATE(5643)] = 195655, + [SMALL_STATE(5644)] = 195680, + [SMALL_STATE(5645)] = 195705, + [SMALL_STATE(5646)] = 195722, + [SMALL_STATE(5647)] = 195745, + [SMALL_STATE(5648)] = 195770, + [SMALL_STATE(5649)] = 195795, + [SMALL_STATE(5650)] = 195818, + [SMALL_STATE(5651)] = 195843, + [SMALL_STATE(5652)] = 195864, + [SMALL_STATE(5653)] = 195889, + [SMALL_STATE(5654)] = 195906, + [SMALL_STATE(5655)] = 195931, + [SMALL_STATE(5656)] = 195954, + [SMALL_STATE(5657)] = 195979, + [SMALL_STATE(5658)] = 196004, + [SMALL_STATE(5659)] = 196029, + [SMALL_STATE(5660)] = 196052, + [SMALL_STATE(5661)] = 196077, + [SMALL_STATE(5662)] = 196102, + [SMALL_STATE(5663)] = 196127, + [SMALL_STATE(5664)] = 196144, + [SMALL_STATE(5665)] = 196165, + [SMALL_STATE(5666)] = 196182, + [SMALL_STATE(5667)] = 196207, + [SMALL_STATE(5668)] = 196232, + [SMALL_STATE(5669)] = 196255, + [SMALL_STATE(5670)] = 196280, + [SMALL_STATE(5671)] = 196305, + [SMALL_STATE(5672)] = 196328, + [SMALL_STATE(5673)] = 196353, + [SMALL_STATE(5674)] = 196370, + [SMALL_STATE(5675)] = 196387, + [SMALL_STATE(5676)] = 196410, + [SMALL_STATE(5677)] = 196435, + [SMALL_STATE(5678)] = 196458, + [SMALL_STATE(5679)] = 196483, + [SMALL_STATE(5680)] = 196508, + [SMALL_STATE(5681)] = 196529, + [SMALL_STATE(5682)] = 196552, + [SMALL_STATE(5683)] = 196577, + [SMALL_STATE(5684)] = 196596, + [SMALL_STATE(5685)] = 196621, + [SMALL_STATE(5686)] = 196640, + [SMALL_STATE(5687)] = 196661, + [SMALL_STATE(5688)] = 196684, + [SMALL_STATE(5689)] = 196709, + [SMALL_STATE(5690)] = 196734, + [SMALL_STATE(5691)] = 196757, + [SMALL_STATE(5692)] = 196774, + [SMALL_STATE(5693)] = 196799, + [SMALL_STATE(5694)] = 196820, + [SMALL_STATE(5695)] = 196845, + [SMALL_STATE(5696)] = 196868, + [SMALL_STATE(5697)] = 196885, + [SMALL_STATE(5698)] = 196908, + [SMALL_STATE(5699)] = 196931, + [SMALL_STATE(5700)] = 196956, + [SMALL_STATE(5701)] = 196981, + [SMALL_STATE(5702)] = 197002, + [SMALL_STATE(5703)] = 197019, + [SMALL_STATE(5704)] = 197042, + [SMALL_STATE(5705)] = 197065, + [SMALL_STATE(5706)] = 197090, + [SMALL_STATE(5707)] = 197115, + [SMALL_STATE(5708)] = 197138, + [SMALL_STATE(5709)] = 197157, + [SMALL_STATE(5710)] = 197180, + [SMALL_STATE(5711)] = 197205, + [SMALL_STATE(5712)] = 197230, + [SMALL_STATE(5713)] = 197247, + [SMALL_STATE(5714)] = 197268, + [SMALL_STATE(5715)] = 197293, + [SMALL_STATE(5716)] = 197318, + [SMALL_STATE(5717)] = 197343, + [SMALL_STATE(5718)] = 197360, + [SMALL_STATE(5719)] = 197385, + [SMALL_STATE(5720)] = 197410, + [SMALL_STATE(5721)] = 197429, + [SMALL_STATE(5722)] = 197448, + [SMALL_STATE(5723)] = 197465, + [SMALL_STATE(5724)] = 197482, + [SMALL_STATE(5725)] = 197505, + [SMALL_STATE(5726)] = 197530, + [SMALL_STATE(5727)] = 197547, + [SMALL_STATE(5728)] = 197566, + [SMALL_STATE(5729)] = 197585, + [SMALL_STATE(5730)] = 197602, + [SMALL_STATE(5731)] = 197627, + [SMALL_STATE(5732)] = 197652, + [SMALL_STATE(5733)] = 197677, + [SMALL_STATE(5734)] = 197702, + [SMALL_STATE(5735)] = 197727, + [SMALL_STATE(5736)] = 197744, + [SMALL_STATE(5737)] = 197761, + [SMALL_STATE(5738)] = 197778, + [SMALL_STATE(5739)] = 197803, + [SMALL_STATE(5740)] = 197828, + [SMALL_STATE(5741)] = 197849, + [SMALL_STATE(5742)] = 197866, + [SMALL_STATE(5743)] = 197883, + [SMALL_STATE(5744)] = 197908, + [SMALL_STATE(5745)] = 197925, + [SMALL_STATE(5746)] = 197942, + [SMALL_STATE(5747)] = 197959, + [SMALL_STATE(5748)] = 197978, + [SMALL_STATE(5749)] = 197995, + [SMALL_STATE(5750)] = 198012, + [SMALL_STATE(5751)] = 198037, + [SMALL_STATE(5752)] = 198056, + [SMALL_STATE(5753)] = 198079, + [SMALL_STATE(5754)] = 198104, + [SMALL_STATE(5755)] = 198121, + [SMALL_STATE(5756)] = 198138, + [SMALL_STATE(5757)] = 198159, + [SMALL_STATE(5758)] = 198178, + [SMALL_STATE(5759)] = 198197, + [SMALL_STATE(5760)] = 198216, + [SMALL_STATE(5761)] = 198235, + [SMALL_STATE(5762)] = 198254, + [SMALL_STATE(5763)] = 198275, + [SMALL_STATE(5764)] = 198294, + [SMALL_STATE(5765)] = 198319, + [SMALL_STATE(5766)] = 198338, + [SMALL_STATE(5767)] = 198357, + [SMALL_STATE(5768)] = 198376, + [SMALL_STATE(5769)] = 198393, + [SMALL_STATE(5770)] = 198410, + [SMALL_STATE(5771)] = 198433, + [SMALL_STATE(5772)] = 198450, + [SMALL_STATE(5773)] = 198475, + [SMALL_STATE(5774)] = 198500, + [SMALL_STATE(5775)] = 198521, + [SMALL_STATE(5776)] = 198538, + [SMALL_STATE(5777)] = 198555, + [SMALL_STATE(5778)] = 198572, + [SMALL_STATE(5779)] = 198591, + [SMALL_STATE(5780)] = 198608, + [SMALL_STATE(5781)] = 198625, + [SMALL_STATE(5782)] = 198642, + [SMALL_STATE(5783)] = 198665, + [SMALL_STATE(5784)] = 198682, + [SMALL_STATE(5785)] = 198699, + [SMALL_STATE(5786)] = 198716, + [SMALL_STATE(5787)] = 198733, + [SMALL_STATE(5788)] = 198758, + [SMALL_STATE(5789)] = 198783, + [SMALL_STATE(5790)] = 198804, + [SMALL_STATE(5791)] = 198821, + [SMALL_STATE(5792)] = 198846, + [SMALL_STATE(5793)] = 198871, + [SMALL_STATE(5794)] = 198892, + [SMALL_STATE(5795)] = 198909, + [SMALL_STATE(5796)] = 198926, + [SMALL_STATE(5797)] = 198943, + [SMALL_STATE(5798)] = 198966, + [SMALL_STATE(5799)] = 198989, + [SMALL_STATE(5800)] = 199014, + [SMALL_STATE(5801)] = 199039, + [SMALL_STATE(5802)] = 199064, + [SMALL_STATE(5803)] = 199086, + [SMALL_STATE(5804)] = 199100, + [SMALL_STATE(5805)] = 199118, + [SMALL_STATE(5806)] = 199140, + [SMALL_STATE(5807)] = 199156, + [SMALL_STATE(5808)] = 199178, + [SMALL_STATE(5809)] = 199194, + [SMALL_STATE(5810)] = 199208, + [SMALL_STATE(5811)] = 199230, + [SMALL_STATE(5812)] = 199244, + [SMALL_STATE(5813)] = 199258, + [SMALL_STATE(5814)] = 199272, + [SMALL_STATE(5815)] = 199292, + [SMALL_STATE(5816)] = 199306, + [SMALL_STATE(5817)] = 199320, + [SMALL_STATE(5818)] = 199334, + [SMALL_STATE(5819)] = 199356, + [SMALL_STATE(5820)] = 199374, + [SMALL_STATE(5821)] = 199396, + [SMALL_STATE(5822)] = 199418, + [SMALL_STATE(5823)] = 199440, + [SMALL_STATE(5824)] = 199454, + [SMALL_STATE(5825)] = 199468, + [SMALL_STATE(5826)] = 199490, + [SMALL_STATE(5827)] = 199510, + [SMALL_STATE(5828)] = 199532, + [SMALL_STATE(5829)] = 199554, + [SMALL_STATE(5830)] = 199576, + [SMALL_STATE(5831)] = 199598, + [SMALL_STATE(5832)] = 199620, + [SMALL_STATE(5833)] = 199640, + [SMALL_STATE(5834)] = 199662, + [SMALL_STATE(5835)] = 199682, + [SMALL_STATE(5836)] = 199696, + [SMALL_STATE(5837)] = 199718, + [SMALL_STATE(5838)] = 199736, + [SMALL_STATE(5839)] = 199756, + [SMALL_STATE(5840)] = 199778, + [SMALL_STATE(5841)] = 199792, + [SMALL_STATE(5842)] = 199814, + [SMALL_STATE(5843)] = 199832, + [SMALL_STATE(5844)] = 199846, + [SMALL_STATE(5845)] = 199862, + [SMALL_STATE(5846)] = 199884, + [SMALL_STATE(5847)] = 199906, + [SMALL_STATE(5848)] = 199928, + [SMALL_STATE(5849)] = 199942, + [SMALL_STATE(5850)] = 199964, + [SMALL_STATE(5851)] = 199982, + [SMALL_STATE(5852)] = 200000, + [SMALL_STATE(5853)] = 200018, + [SMALL_STATE(5854)] = 200040, + [SMALL_STATE(5855)] = 200054, + [SMALL_STATE(5856)] = 200070, + [SMALL_STATE(5857)] = 200092, + [SMALL_STATE(5858)] = 200106, + [SMALL_STATE(5859)] = 200120, + [SMALL_STATE(5860)] = 200142, + [SMALL_STATE(5861)] = 200156, + [SMALL_STATE(5862)] = 200178, + [SMALL_STATE(5863)] = 200200, + [SMALL_STATE(5864)] = 200214, + [SMALL_STATE(5865)] = 200228, + [SMALL_STATE(5866)] = 200244, + [SMALL_STATE(5867)] = 200266, + [SMALL_STATE(5868)] = 200282, + [SMALL_STATE(5869)] = 200304, + [SMALL_STATE(5870)] = 200320, + [SMALL_STATE(5871)] = 200334, + [SMALL_STATE(5872)] = 200348, + [SMALL_STATE(5873)] = 200366, + [SMALL_STATE(5874)] = 200384, + [SMALL_STATE(5875)] = 200400, + [SMALL_STATE(5876)] = 200422, + [SMALL_STATE(5877)] = 200436, + [SMALL_STATE(5878)] = 200458, + [SMALL_STATE(5879)] = 200480, + [SMALL_STATE(5880)] = 200502, + [SMALL_STATE(5881)] = 200518, + [SMALL_STATE(5882)] = 200540, + [SMALL_STATE(5883)] = 200554, + [SMALL_STATE(5884)] = 200576, + [SMALL_STATE(5885)] = 200590, + [SMALL_STATE(5886)] = 200612, + [SMALL_STATE(5887)] = 200626, + [SMALL_STATE(5888)] = 200644, + [SMALL_STATE(5889)] = 200658, + [SMALL_STATE(5890)] = 200672, + [SMALL_STATE(5891)] = 200686, + [SMALL_STATE(5892)] = 200704, + [SMALL_STATE(5893)] = 200718, + [SMALL_STATE(5894)] = 200740, + [SMALL_STATE(5895)] = 200754, + [SMALL_STATE(5896)] = 200776, + [SMALL_STATE(5897)] = 200798, + [SMALL_STATE(5898)] = 200820, + [SMALL_STATE(5899)] = 200842, + [SMALL_STATE(5900)] = 200864, + [SMALL_STATE(5901)] = 200886, + [SMALL_STATE(5902)] = 200908, + [SMALL_STATE(5903)] = 200930, + [SMALL_STATE(5904)] = 200952, + [SMALL_STATE(5905)] = 200968, + [SMALL_STATE(5906)] = 200982, + [SMALL_STATE(5907)] = 201004, + [SMALL_STATE(5908)] = 201026, + [SMALL_STATE(5909)] = 201040, + [SMALL_STATE(5910)] = 201062, + [SMALL_STATE(5911)] = 201080, + [SMALL_STATE(5912)] = 201094, + [SMALL_STATE(5913)] = 201108, + [SMALL_STATE(5914)] = 201128, + [SMALL_STATE(5915)] = 201150, + [SMALL_STATE(5916)] = 201172, + [SMALL_STATE(5917)] = 201192, + [SMALL_STATE(5918)] = 201210, + [SMALL_STATE(5919)] = 201224, + [SMALL_STATE(5920)] = 201246, + [SMALL_STATE(5921)] = 201268, + [SMALL_STATE(5922)] = 201282, + [SMALL_STATE(5923)] = 201304, + [SMALL_STATE(5924)] = 201318, + [SMALL_STATE(5925)] = 201340, + [SMALL_STATE(5926)] = 201362, + [SMALL_STATE(5927)] = 201382, + [SMALL_STATE(5928)] = 201404, + [SMALL_STATE(5929)] = 201426, + [SMALL_STATE(5930)] = 201448, + [SMALL_STATE(5931)] = 201468, + [SMALL_STATE(5932)] = 201482, + [SMALL_STATE(5933)] = 201504, + [SMALL_STATE(5934)] = 201526, + [SMALL_STATE(5935)] = 201540, + [SMALL_STATE(5936)] = 201562, + [SMALL_STATE(5937)] = 201578, + [SMALL_STATE(5938)] = 201592, + [SMALL_STATE(5939)] = 201612, + [SMALL_STATE(5940)] = 201630, + [SMALL_STATE(5941)] = 201646, + [SMALL_STATE(5942)] = 201662, + [SMALL_STATE(5943)] = 201680, + [SMALL_STATE(5944)] = 201698, + [SMALL_STATE(5945)] = 201712, + [SMALL_STATE(5946)] = 201734, + [SMALL_STATE(5947)] = 201754, + [SMALL_STATE(5948)] = 201774, + [SMALL_STATE(5949)] = 201796, + [SMALL_STATE(5950)] = 201810, + [SMALL_STATE(5951)] = 201832, + [SMALL_STATE(5952)] = 201854, + [SMALL_STATE(5953)] = 201876, + [SMALL_STATE(5954)] = 201890, + [SMALL_STATE(5955)] = 201912, + [SMALL_STATE(5956)] = 201934, + [SMALL_STATE(5957)] = 201956, + [SMALL_STATE(5958)] = 201978, + [SMALL_STATE(5959)] = 201992, + [SMALL_STATE(5960)] = 202014, + [SMALL_STATE(5961)] = 202032, + [SMALL_STATE(5962)] = 202050, + [SMALL_STATE(5963)] = 202072, + [SMALL_STATE(5964)] = 202090, + [SMALL_STATE(5965)] = 202112, + [SMALL_STATE(5966)] = 202126, + [SMALL_STATE(5967)] = 202148, + [SMALL_STATE(5968)] = 202168, + [SMALL_STATE(5969)] = 202186, + [SMALL_STATE(5970)] = 202208, + [SMALL_STATE(5971)] = 202222, + [SMALL_STATE(5972)] = 202244, + [SMALL_STATE(5973)] = 202266, + [SMALL_STATE(5974)] = 202288, + [SMALL_STATE(5975)] = 202302, + [SMALL_STATE(5976)] = 202322, + [SMALL_STATE(5977)] = 202344, + [SMALL_STATE(5978)] = 202358, + [SMALL_STATE(5979)] = 202380, + [SMALL_STATE(5980)] = 202402, + [SMALL_STATE(5981)] = 202424, + [SMALL_STATE(5982)] = 202444, + [SMALL_STATE(5983)] = 202464, + [SMALL_STATE(5984)] = 202486, + [SMALL_STATE(5985)] = 202508, + [SMALL_STATE(5986)] = 202530, + [SMALL_STATE(5987)] = 202552, + [SMALL_STATE(5988)] = 202574, + [SMALL_STATE(5989)] = 202592, + [SMALL_STATE(5990)] = 202614, + [SMALL_STATE(5991)] = 202636, + [SMALL_STATE(5992)] = 202658, + [SMALL_STATE(5993)] = 202676, + [SMALL_STATE(5994)] = 202698, + [SMALL_STATE(5995)] = 202720, + [SMALL_STATE(5996)] = 202740, + [SMALL_STATE(5997)] = 202754, + [SMALL_STATE(5998)] = 202770, + [SMALL_STATE(5999)] = 202786, + [SMALL_STATE(6000)] = 202808, + [SMALL_STATE(6001)] = 202830, + [SMALL_STATE(6002)] = 202852, + [SMALL_STATE(6003)] = 202874, + [SMALL_STATE(6004)] = 202896, + [SMALL_STATE(6005)] = 202918, + [SMALL_STATE(6006)] = 202940, + [SMALL_STATE(6007)] = 202962, + [SMALL_STATE(6008)] = 202976, + [SMALL_STATE(6009)] = 202990, + [SMALL_STATE(6010)] = 203012, + [SMALL_STATE(6011)] = 203034, + [SMALL_STATE(6012)] = 203056, + [SMALL_STATE(6013)] = 203078, + [SMALL_STATE(6014)] = 203100, + [SMALL_STATE(6015)] = 203122, + [SMALL_STATE(6016)] = 203144, + [SMALL_STATE(6017)] = 203158, + [SMALL_STATE(6018)] = 203180, + [SMALL_STATE(6019)] = 203202, + [SMALL_STATE(6020)] = 203224, + [SMALL_STATE(6021)] = 203240, + [SMALL_STATE(6022)] = 203262, + [SMALL_STATE(6023)] = 203284, + [SMALL_STATE(6024)] = 203306, + [SMALL_STATE(6025)] = 203328, + [SMALL_STATE(6026)] = 203350, + [SMALL_STATE(6027)] = 203372, + [SMALL_STATE(6028)] = 203394, + [SMALL_STATE(6029)] = 203416, + [SMALL_STATE(6030)] = 203438, + [SMALL_STATE(6031)] = 203460, + [SMALL_STATE(6032)] = 203482, + [SMALL_STATE(6033)] = 203504, + [SMALL_STATE(6034)] = 203526, + [SMALL_STATE(6035)] = 203548, + [SMALL_STATE(6036)] = 203570, + [SMALL_STATE(6037)] = 203592, + [SMALL_STATE(6038)] = 203614, + [SMALL_STATE(6039)] = 203636, + [SMALL_STATE(6040)] = 203658, + [SMALL_STATE(6041)] = 203676, + [SMALL_STATE(6042)] = 203694, + [SMALL_STATE(6043)] = 203716, + [SMALL_STATE(6044)] = 203738, + [SMALL_STATE(6045)] = 203760, + [SMALL_STATE(6046)] = 203774, + [SMALL_STATE(6047)] = 203788, + [SMALL_STATE(6048)] = 203810, + [SMALL_STATE(6049)] = 203832, + [SMALL_STATE(6050)] = 203854, + [SMALL_STATE(6051)] = 203868, + [SMALL_STATE(6052)] = 203886, + [SMALL_STATE(6053)] = 203908, + [SMALL_STATE(6054)] = 203926, + [SMALL_STATE(6055)] = 203948, + [SMALL_STATE(6056)] = 203970, + [SMALL_STATE(6057)] = 203992, + [SMALL_STATE(6058)] = 204014, + [SMALL_STATE(6059)] = 204036, + [SMALL_STATE(6060)] = 204050, + [SMALL_STATE(6061)] = 204066, + [SMALL_STATE(6062)] = 204088, + [SMALL_STATE(6063)] = 204110, + [SMALL_STATE(6064)] = 204128, + [SMALL_STATE(6065)] = 204150, + [SMALL_STATE(6066)] = 204164, + [SMALL_STATE(6067)] = 204186, + [SMALL_STATE(6068)] = 204208, + [SMALL_STATE(6069)] = 204230, + [SMALL_STATE(6070)] = 204249, + [SMALL_STATE(6071)] = 204264, + [SMALL_STATE(6072)] = 204279, + [SMALL_STATE(6073)] = 204292, + [SMALL_STATE(6074)] = 204307, + [SMALL_STATE(6075)] = 204324, + [SMALL_STATE(6076)] = 204337, + [SMALL_STATE(6077)] = 204354, + [SMALL_STATE(6078)] = 204367, + [SMALL_STATE(6079)] = 204386, + [SMALL_STATE(6080)] = 204403, + [SMALL_STATE(6081)] = 204418, + [SMALL_STATE(6082)] = 204435, + [SMALL_STATE(6083)] = 204452, + [SMALL_STATE(6084)] = 204471, + [SMALL_STATE(6085)] = 204490, + [SMALL_STATE(6086)] = 204507, + [SMALL_STATE(6087)] = 204524, + [SMALL_STATE(6088)] = 204541, + [SMALL_STATE(6089)] = 204556, + [SMALL_STATE(6090)] = 204575, + [SMALL_STATE(6091)] = 204588, + [SMALL_STATE(6092)] = 204603, + [SMALL_STATE(6093)] = 204618, + [SMALL_STATE(6094)] = 204633, + [SMALL_STATE(6095)] = 204652, + [SMALL_STATE(6096)] = 204671, + [SMALL_STATE(6097)] = 204688, + [SMALL_STATE(6098)] = 204707, + [SMALL_STATE(6099)] = 204720, + [SMALL_STATE(6100)] = 204739, + [SMALL_STATE(6101)] = 204752, + [SMALL_STATE(6102)] = 204765, + [SMALL_STATE(6103)] = 204784, + [SMALL_STATE(6104)] = 204797, + [SMALL_STATE(6105)] = 204810, + [SMALL_STATE(6106)] = 204823, + [SMALL_STATE(6107)] = 204836, + [SMALL_STATE(6108)] = 204849, + [SMALL_STATE(6109)] = 204862, + [SMALL_STATE(6110)] = 204877, + [SMALL_STATE(6111)] = 204890, + [SMALL_STATE(6112)] = 204909, + [SMALL_STATE(6113)] = 204924, + [SMALL_STATE(6114)] = 204943, + [SMALL_STATE(6115)] = 204962, + [SMALL_STATE(6116)] = 204981, + [SMALL_STATE(6117)] = 205000, + [SMALL_STATE(6118)] = 205019, + [SMALL_STATE(6119)] = 205038, + [SMALL_STATE(6120)] = 205051, + [SMALL_STATE(6121)] = 205066, + [SMALL_STATE(6122)] = 205079, + [SMALL_STATE(6123)] = 205092, + [SMALL_STATE(6124)] = 205105, + [SMALL_STATE(6125)] = 205124, + [SMALL_STATE(6126)] = 205141, + [SMALL_STATE(6127)] = 205160, + [SMALL_STATE(6128)] = 205179, + [SMALL_STATE(6129)] = 205192, + [SMALL_STATE(6130)] = 205211, + [SMALL_STATE(6131)] = 205228, + [SMALL_STATE(6132)] = 205247, + [SMALL_STATE(6133)] = 205266, + [SMALL_STATE(6134)] = 205285, + [SMALL_STATE(6135)] = 205304, + [SMALL_STATE(6136)] = 205323, + [SMALL_STATE(6137)] = 205342, + [SMALL_STATE(6138)] = 205361, + [SMALL_STATE(6139)] = 205374, + [SMALL_STATE(6140)] = 205393, + [SMALL_STATE(6141)] = 205408, + [SMALL_STATE(6142)] = 205421, + [SMALL_STATE(6143)] = 205440, + [SMALL_STATE(6144)] = 205453, + [SMALL_STATE(6145)] = 205466, + [SMALL_STATE(6146)] = 205483, + [SMALL_STATE(6147)] = 205496, + [SMALL_STATE(6148)] = 205509, + [SMALL_STATE(6149)] = 205528, + [SMALL_STATE(6150)] = 205547, + [SMALL_STATE(6151)] = 205566, + [SMALL_STATE(6152)] = 205579, + [SMALL_STATE(6153)] = 205598, + [SMALL_STATE(6154)] = 205611, + [SMALL_STATE(6155)] = 205624, + [SMALL_STATE(6156)] = 205643, + [SMALL_STATE(6157)] = 205660, + [SMALL_STATE(6158)] = 205679, + [SMALL_STATE(6159)] = 205698, + [SMALL_STATE(6160)] = 205713, + [SMALL_STATE(6161)] = 205732, + [SMALL_STATE(6162)] = 205745, + [SMALL_STATE(6163)] = 205758, + [SMALL_STATE(6164)] = 205771, + [SMALL_STATE(6165)] = 205784, + [SMALL_STATE(6166)] = 205797, + [SMALL_STATE(6167)] = 205814, + [SMALL_STATE(6168)] = 205831, + [SMALL_STATE(6169)] = 205844, + [SMALL_STATE(6170)] = 205859, + [SMALL_STATE(6171)] = 205878, + [SMALL_STATE(6172)] = 205897, + [SMALL_STATE(6173)] = 205916, + [SMALL_STATE(6174)] = 205935, + [SMALL_STATE(6175)] = 205954, + [SMALL_STATE(6176)] = 205973, + [SMALL_STATE(6177)] = 205988, + [SMALL_STATE(6178)] = 206001, + [SMALL_STATE(6179)] = 206014, + [SMALL_STATE(6180)] = 206029, + [SMALL_STATE(6181)] = 206046, + [SMALL_STATE(6182)] = 206063, + [SMALL_STATE(6183)] = 206078, + [SMALL_STATE(6184)] = 206091, + [SMALL_STATE(6185)] = 206110, + [SMALL_STATE(6186)] = 206127, + [SMALL_STATE(6187)] = 206144, + [SMALL_STATE(6188)] = 206163, + [SMALL_STATE(6189)] = 206182, + [SMALL_STATE(6190)] = 206201, + [SMALL_STATE(6191)] = 206220, + [SMALL_STATE(6192)] = 206239, + [SMALL_STATE(6193)] = 206258, + [SMALL_STATE(6194)] = 206277, + [SMALL_STATE(6195)] = 206296, + [SMALL_STATE(6196)] = 206315, + [SMALL_STATE(6197)] = 206332, + [SMALL_STATE(6198)] = 206345, + [SMALL_STATE(6199)] = 206362, + [SMALL_STATE(6200)] = 206379, + [SMALL_STATE(6201)] = 206392, + [SMALL_STATE(6202)] = 206405, + [SMALL_STATE(6203)] = 206424, + [SMALL_STATE(6204)] = 206437, + [SMALL_STATE(6205)] = 206450, + [SMALL_STATE(6206)] = 206463, + [SMALL_STATE(6207)] = 206476, + [SMALL_STATE(6208)] = 206489, + [SMALL_STATE(6209)] = 206502, + [SMALL_STATE(6210)] = 206519, + [SMALL_STATE(6211)] = 206538, + [SMALL_STATE(6212)] = 206557, + [SMALL_STATE(6213)] = 206574, + [SMALL_STATE(6214)] = 206589, + [SMALL_STATE(6215)] = 206604, + [SMALL_STATE(6216)] = 206623, + [SMALL_STATE(6217)] = 206642, + [SMALL_STATE(6218)] = 206661, + [SMALL_STATE(6219)] = 206680, + [SMALL_STATE(6220)] = 206699, + [SMALL_STATE(6221)] = 206718, + [SMALL_STATE(6222)] = 206737, + [SMALL_STATE(6223)] = 206756, + [SMALL_STATE(6224)] = 206775, + [SMALL_STATE(6225)] = 206794, + [SMALL_STATE(6226)] = 206813, + [SMALL_STATE(6227)] = 206828, + [SMALL_STATE(6228)] = 206841, + [SMALL_STATE(6229)] = 206858, + [SMALL_STATE(6230)] = 206877, + [SMALL_STATE(6231)] = 206890, + [SMALL_STATE(6232)] = 206907, + [SMALL_STATE(6233)] = 206920, + [SMALL_STATE(6234)] = 206937, + [SMALL_STATE(6235)] = 206950, + [SMALL_STATE(6236)] = 206967, + [SMALL_STATE(6237)] = 206986, + [SMALL_STATE(6238)] = 207005, + [SMALL_STATE(6239)] = 207024, + [SMALL_STATE(6240)] = 207043, + [SMALL_STATE(6241)] = 207062, + [SMALL_STATE(6242)] = 207081, + [SMALL_STATE(6243)] = 207100, + [SMALL_STATE(6244)] = 207119, + [SMALL_STATE(6245)] = 207132, + [SMALL_STATE(6246)] = 207145, + [SMALL_STATE(6247)] = 207162, + [SMALL_STATE(6248)] = 207175, + [SMALL_STATE(6249)] = 207188, + [SMALL_STATE(6250)] = 207203, + [SMALL_STATE(6251)] = 207220, + [SMALL_STATE(6252)] = 207235, + [SMALL_STATE(6253)] = 207248, + [SMALL_STATE(6254)] = 207267, + [SMALL_STATE(6255)] = 207286, + [SMALL_STATE(6256)] = 207305, + [SMALL_STATE(6257)] = 207324, + [SMALL_STATE(6258)] = 207343, + [SMALL_STATE(6259)] = 207362, + [SMALL_STATE(6260)] = 207381, + [SMALL_STATE(6261)] = 207400, + [SMALL_STATE(6262)] = 207413, + [SMALL_STATE(6263)] = 207430, + [SMALL_STATE(6264)] = 207443, + [SMALL_STATE(6265)] = 207460, + [SMALL_STATE(6266)] = 207473, + [SMALL_STATE(6267)] = 207486, + [SMALL_STATE(6268)] = 207505, + [SMALL_STATE(6269)] = 207524, + [SMALL_STATE(6270)] = 207543, + [SMALL_STATE(6271)] = 207562, + [SMALL_STATE(6272)] = 207581, + [SMALL_STATE(6273)] = 207600, + [SMALL_STATE(6274)] = 207619, + [SMALL_STATE(6275)] = 207638, + [SMALL_STATE(6276)] = 207651, + [SMALL_STATE(6277)] = 207664, + [SMALL_STATE(6278)] = 207679, + [SMALL_STATE(6279)] = 207696, + [SMALL_STATE(6280)] = 207711, + [SMALL_STATE(6281)] = 207728, + [SMALL_STATE(6282)] = 207741, + [SMALL_STATE(6283)] = 207760, + [SMALL_STATE(6284)] = 207779, + [SMALL_STATE(6285)] = 207798, + [SMALL_STATE(6286)] = 207817, + [SMALL_STATE(6287)] = 207836, + [SMALL_STATE(6288)] = 207855, + [SMALL_STATE(6289)] = 207874, + [SMALL_STATE(6290)] = 207893, + [SMALL_STATE(6291)] = 207908, + [SMALL_STATE(6292)] = 207927, + [SMALL_STATE(6293)] = 207940, + [SMALL_STATE(6294)] = 207957, + [SMALL_STATE(6295)] = 207976, + [SMALL_STATE(6296)] = 207993, + [SMALL_STATE(6297)] = 208012, + [SMALL_STATE(6298)] = 208031, + [SMALL_STATE(6299)] = 208050, + [SMALL_STATE(6300)] = 208069, + [SMALL_STATE(6301)] = 208088, + [SMALL_STATE(6302)] = 208107, + [SMALL_STATE(6303)] = 208126, + [SMALL_STATE(6304)] = 208145, + [SMALL_STATE(6305)] = 208164, + [SMALL_STATE(6306)] = 208183, + [SMALL_STATE(6307)] = 208202, + [SMALL_STATE(6308)] = 208215, + [SMALL_STATE(6309)] = 208228, + [SMALL_STATE(6310)] = 208245, + [SMALL_STATE(6311)] = 208264, + [SMALL_STATE(6312)] = 208283, + [SMALL_STATE(6313)] = 208300, + [SMALL_STATE(6314)] = 208313, + [SMALL_STATE(6315)] = 208326, + [SMALL_STATE(6316)] = 208345, + [SMALL_STATE(6317)] = 208364, + [SMALL_STATE(6318)] = 208383, + [SMALL_STATE(6319)] = 208402, + [SMALL_STATE(6320)] = 208421, + [SMALL_STATE(6321)] = 208440, + [SMALL_STATE(6322)] = 208459, + [SMALL_STATE(6323)] = 208478, + [SMALL_STATE(6324)] = 208495, + [SMALL_STATE(6325)] = 208508, + [SMALL_STATE(6326)] = 208521, + [SMALL_STATE(6327)] = 208538, + [SMALL_STATE(6328)] = 208551, + [SMALL_STATE(6329)] = 208564, + [SMALL_STATE(6330)] = 208577, + [SMALL_STATE(6331)] = 208590, + [SMALL_STATE(6332)] = 208607, + [SMALL_STATE(6333)] = 208626, + [SMALL_STATE(6334)] = 208645, + [SMALL_STATE(6335)] = 208664, + [SMALL_STATE(6336)] = 208683, + [SMALL_STATE(6337)] = 208702, + [SMALL_STATE(6338)] = 208721, + [SMALL_STATE(6339)] = 208740, + [SMALL_STATE(6340)] = 208759, + [SMALL_STATE(6341)] = 208778, + [SMALL_STATE(6342)] = 208797, + [SMALL_STATE(6343)] = 208810, + [SMALL_STATE(6344)] = 208827, + [SMALL_STATE(6345)] = 208844, + [SMALL_STATE(6346)] = 208861, + [SMALL_STATE(6347)] = 208880, + [SMALL_STATE(6348)] = 208895, + [SMALL_STATE(6349)] = 208914, + [SMALL_STATE(6350)] = 208933, + [SMALL_STATE(6351)] = 208952, + [SMALL_STATE(6352)] = 208971, + [SMALL_STATE(6353)] = 208990, + [SMALL_STATE(6354)] = 209009, + [SMALL_STATE(6355)] = 209028, + [SMALL_STATE(6356)] = 209047, + [SMALL_STATE(6357)] = 209060, + [SMALL_STATE(6358)] = 209077, + [SMALL_STATE(6359)] = 209096, + [SMALL_STATE(6360)] = 209113, + [SMALL_STATE(6361)] = 209128, + [SMALL_STATE(6362)] = 209147, + [SMALL_STATE(6363)] = 209166, + [SMALL_STATE(6364)] = 209185, + [SMALL_STATE(6365)] = 209204, + [SMALL_STATE(6366)] = 209223, + [SMALL_STATE(6367)] = 209242, + [SMALL_STATE(6368)] = 209261, + [SMALL_STATE(6369)] = 209280, + [SMALL_STATE(6370)] = 209299, + [SMALL_STATE(6371)] = 209312, + [SMALL_STATE(6372)] = 209329, + [SMALL_STATE(6373)] = 209344, + [SMALL_STATE(6374)] = 209361, + [SMALL_STATE(6375)] = 209380, + [SMALL_STATE(6376)] = 209399, + [SMALL_STATE(6377)] = 209418, + [SMALL_STATE(6378)] = 209437, + [SMALL_STATE(6379)] = 209456, + [SMALL_STATE(6380)] = 209475, + [SMALL_STATE(6381)] = 209494, + [SMALL_STATE(6382)] = 209507, + [SMALL_STATE(6383)] = 209526, + [SMALL_STATE(6384)] = 209545, + [SMALL_STATE(6385)] = 209558, + [SMALL_STATE(6386)] = 209575, + [SMALL_STATE(6387)] = 209592, + [SMALL_STATE(6388)] = 209609, + [SMALL_STATE(6389)] = 209628, + [SMALL_STATE(6390)] = 209647, + [SMALL_STATE(6391)] = 209666, + [SMALL_STATE(6392)] = 209685, + [SMALL_STATE(6393)] = 209704, + [SMALL_STATE(6394)] = 209723, + [SMALL_STATE(6395)] = 209742, + [SMALL_STATE(6396)] = 209761, + [SMALL_STATE(6397)] = 209780, + [SMALL_STATE(6398)] = 209793, + [SMALL_STATE(6399)] = 209810, + [SMALL_STATE(6400)] = 209829, + [SMALL_STATE(6401)] = 209846, + [SMALL_STATE(6402)] = 209865, + [SMALL_STATE(6403)] = 209884, + [SMALL_STATE(6404)] = 209903, + [SMALL_STATE(6405)] = 209922, + [SMALL_STATE(6406)] = 209941, + [SMALL_STATE(6407)] = 209960, + [SMALL_STATE(6408)] = 209979, + [SMALL_STATE(6409)] = 209998, + [SMALL_STATE(6410)] = 210017, + [SMALL_STATE(6411)] = 210036, + [SMALL_STATE(6412)] = 210049, + [SMALL_STATE(6413)] = 210066, + [SMALL_STATE(6414)] = 210083, + [SMALL_STATE(6415)] = 210102, + [SMALL_STATE(6416)] = 210115, + [SMALL_STATE(6417)] = 210132, + [SMALL_STATE(6418)] = 210149, + [SMALL_STATE(6419)] = 210162, + [SMALL_STATE(6420)] = 210175, + [SMALL_STATE(6421)] = 210192, + [SMALL_STATE(6422)] = 210205, + [SMALL_STATE(6423)] = 210222, + [SMALL_STATE(6424)] = 210241, + [SMALL_STATE(6425)] = 210254, + [SMALL_STATE(6426)] = 210271, + [SMALL_STATE(6427)] = 210284, + [SMALL_STATE(6428)] = 210301, + [SMALL_STATE(6429)] = 210314, + [SMALL_STATE(6430)] = 210327, + [SMALL_STATE(6431)] = 210344, + [SMALL_STATE(6432)] = 210361, + [SMALL_STATE(6433)] = 210380, + [SMALL_STATE(6434)] = 210393, + [SMALL_STATE(6435)] = 210410, + [SMALL_STATE(6436)] = 210427, + [SMALL_STATE(6437)] = 210444, + [SMALL_STATE(6438)] = 210457, + [SMALL_STATE(6439)] = 210474, + [SMALL_STATE(6440)] = 210491, + [SMALL_STATE(6441)] = 210504, + [SMALL_STATE(6442)] = 210521, + [SMALL_STATE(6443)] = 210538, + [SMALL_STATE(6444)] = 210551, + [SMALL_STATE(6445)] = 210564, + [SMALL_STATE(6446)] = 210581, + [SMALL_STATE(6447)] = 210598, + [SMALL_STATE(6448)] = 210611, + [SMALL_STATE(6449)] = 210624, + [SMALL_STATE(6450)] = 210641, + [SMALL_STATE(6451)] = 210658, + [SMALL_STATE(6452)] = 210671, + [SMALL_STATE(6453)] = 210688, + [SMALL_STATE(6454)] = 210705, + [SMALL_STATE(6455)] = 210718, + [SMALL_STATE(6456)] = 210735, + [SMALL_STATE(6457)] = 210752, + [SMALL_STATE(6458)] = 210765, + [SMALL_STATE(6459)] = 210782, + [SMALL_STATE(6460)] = 210799, + [SMALL_STATE(6461)] = 210812, + [SMALL_STATE(6462)] = 210829, + [SMALL_STATE(6463)] = 210846, + [SMALL_STATE(6464)] = 210859, + [SMALL_STATE(6465)] = 210876, + [SMALL_STATE(6466)] = 210893, + [SMALL_STATE(6467)] = 210906, + [SMALL_STATE(6468)] = 210923, + [SMALL_STATE(6469)] = 210940, + [SMALL_STATE(6470)] = 210953, + [SMALL_STATE(6471)] = 210970, + [SMALL_STATE(6472)] = 210987, + [SMALL_STATE(6473)] = 211004, + [SMALL_STATE(6474)] = 211021, + [SMALL_STATE(6475)] = 211038, + [SMALL_STATE(6476)] = 211055, + [SMALL_STATE(6477)] = 211072, + [SMALL_STATE(6478)] = 211089, + [SMALL_STATE(6479)] = 211106, + [SMALL_STATE(6480)] = 211123, + [SMALL_STATE(6481)] = 211140, + [SMALL_STATE(6482)] = 211157, + [SMALL_STATE(6483)] = 211170, + [SMALL_STATE(6484)] = 211183, + [SMALL_STATE(6485)] = 211196, + [SMALL_STATE(6486)] = 211211, + [SMALL_STATE(6487)] = 211230, + [SMALL_STATE(6488)] = 211245, + [SMALL_STATE(6489)] = 211262, + [SMALL_STATE(6490)] = 211277, + [SMALL_STATE(6491)] = 211292, + [SMALL_STATE(6492)] = 211305, + [SMALL_STATE(6493)] = 211324, + [SMALL_STATE(6494)] = 211343, + [SMALL_STATE(6495)] = 211356, + [SMALL_STATE(6496)] = 211375, + [SMALL_STATE(6497)] = 211388, + [SMALL_STATE(6498)] = 211407, + [SMALL_STATE(6499)] = 211426, + [SMALL_STATE(6500)] = 211445, + [SMALL_STATE(6501)] = 211464, + [SMALL_STATE(6502)] = 211483, + [SMALL_STATE(6503)] = 211502, + [SMALL_STATE(6504)] = 211521, + [SMALL_STATE(6505)] = 211540, + [SMALL_STATE(6506)] = 211559, + [SMALL_STATE(6507)] = 211578, + [SMALL_STATE(6508)] = 211597, + [SMALL_STATE(6509)] = 211614, + [SMALL_STATE(6510)] = 211633, + [SMALL_STATE(6511)] = 211648, + [SMALL_STATE(6512)] = 211667, + [SMALL_STATE(6513)] = 211686, + [SMALL_STATE(6514)] = 211705, + [SMALL_STATE(6515)] = 211724, + [SMALL_STATE(6516)] = 211743, + [SMALL_STATE(6517)] = 211762, + [SMALL_STATE(6518)] = 211781, + [SMALL_STATE(6519)] = 211800, + [SMALL_STATE(6520)] = 211819, + [SMALL_STATE(6521)] = 211838, + [SMALL_STATE(6522)] = 211857, + [SMALL_STATE(6523)] = 211872, + [SMALL_STATE(6524)] = 211889, + [SMALL_STATE(6525)] = 211902, + [SMALL_STATE(6526)] = 211919, + [SMALL_STATE(6527)] = 211934, + [SMALL_STATE(6528)] = 211949, + [SMALL_STATE(6529)] = 211964, + [SMALL_STATE(6530)] = 211979, + [SMALL_STATE(6531)] = 211994, + [SMALL_STATE(6532)] = 212009, + [SMALL_STATE(6533)] = 212024, + [SMALL_STATE(6534)] = 212037, + [SMALL_STATE(6535)] = 212050, + [SMALL_STATE(6536)] = 212065, + [SMALL_STATE(6537)] = 212080, + [SMALL_STATE(6538)] = 212095, + [SMALL_STATE(6539)] = 212108, + [SMALL_STATE(6540)] = 212127, + [SMALL_STATE(6541)] = 212146, + [SMALL_STATE(6542)] = 212165, + [SMALL_STATE(6543)] = 212178, + [SMALL_STATE(6544)] = 212195, + [SMALL_STATE(6545)] = 212210, + [SMALL_STATE(6546)] = 212223, + [SMALL_STATE(6547)] = 212236, + [SMALL_STATE(6548)] = 212249, + [SMALL_STATE(6549)] = 212262, + [SMALL_STATE(6550)] = 212275, + [SMALL_STATE(6551)] = 212288, + [SMALL_STATE(6552)] = 212305, + [SMALL_STATE(6553)] = 212322, + [SMALL_STATE(6554)] = 212339, + [SMALL_STATE(6555)] = 212358, + [SMALL_STATE(6556)] = 212373, + [SMALL_STATE(6557)] = 212392, + [SMALL_STATE(6558)] = 212407, + [SMALL_STATE(6559)] = 212422, + [SMALL_STATE(6560)] = 212437, + [SMALL_STATE(6561)] = 212452, + [SMALL_STATE(6562)] = 212467, + [SMALL_STATE(6563)] = 212482, + [SMALL_STATE(6564)] = 212495, + [SMALL_STATE(6565)] = 212508, + [SMALL_STATE(6566)] = 212523, + [SMALL_STATE(6567)] = 212542, + [SMALL_STATE(6568)] = 212557, + [SMALL_STATE(6569)] = 212574, + [SMALL_STATE(6570)] = 212589, + [SMALL_STATE(6571)] = 212602, + [SMALL_STATE(6572)] = 212617, + [SMALL_STATE(6573)] = 212632, + [SMALL_STATE(6574)] = 212647, + [SMALL_STATE(6575)] = 212662, + [SMALL_STATE(6576)] = 212677, + [SMALL_STATE(6577)] = 212692, + [SMALL_STATE(6578)] = 212707, + [SMALL_STATE(6579)] = 212722, + [SMALL_STATE(6580)] = 212737, + [SMALL_STATE(6581)] = 212756, + [SMALL_STATE(6582)] = 212771, + [SMALL_STATE(6583)] = 212786, + [SMALL_STATE(6584)] = 212801, + [SMALL_STATE(6585)] = 212816, + [SMALL_STATE(6586)] = 212835, + [SMALL_STATE(6587)] = 212850, + [SMALL_STATE(6588)] = 212869, + [SMALL_STATE(6589)] = 212884, + [SMALL_STATE(6590)] = 212899, + [SMALL_STATE(6591)] = 212914, + [SMALL_STATE(6592)] = 212933, + [SMALL_STATE(6593)] = 212952, + [SMALL_STATE(6594)] = 212971, + [SMALL_STATE(6595)] = 212990, + [SMALL_STATE(6596)] = 213009, + [SMALL_STATE(6597)] = 213028, + [SMALL_STATE(6598)] = 213043, + [SMALL_STATE(6599)] = 213056, + [SMALL_STATE(6600)] = 213069, + [SMALL_STATE(6601)] = 213084, + [SMALL_STATE(6602)] = 213103, + [SMALL_STATE(6603)] = 213122, + [SMALL_STATE(6604)] = 213141, + [SMALL_STATE(6605)] = 213160, + [SMALL_STATE(6606)] = 213175, + [SMALL_STATE(6607)] = 213190, + [SMALL_STATE(6608)] = 213205, + [SMALL_STATE(6609)] = 213220, + [SMALL_STATE(6610)] = 213235, + [SMALL_STATE(6611)] = 213250, + [SMALL_STATE(6612)] = 213265, + [SMALL_STATE(6613)] = 213280, + [SMALL_STATE(6614)] = 213295, + [SMALL_STATE(6615)] = 213310, + [SMALL_STATE(6616)] = 213327, + [SMALL_STATE(6617)] = 213344, + [SMALL_STATE(6618)] = 213361, + [SMALL_STATE(6619)] = 213380, + [SMALL_STATE(6620)] = 213395, + [SMALL_STATE(6621)] = 213408, + [SMALL_STATE(6622)] = 213421, + [SMALL_STATE(6623)] = 213440, + [SMALL_STATE(6624)] = 213456, + [SMALL_STATE(6625)] = 213472, + [SMALL_STATE(6626)] = 213488, + [SMALL_STATE(6627)] = 213504, + [SMALL_STATE(6628)] = 213520, + [SMALL_STATE(6629)] = 213536, + [SMALL_STATE(6630)] = 213552, + [SMALL_STATE(6631)] = 213566, + [SMALL_STATE(6632)] = 213582, + [SMALL_STATE(6633)] = 213598, + [SMALL_STATE(6634)] = 213614, + [SMALL_STATE(6635)] = 213630, + [SMALL_STATE(6636)] = 213642, + [SMALL_STATE(6637)] = 213658, + [SMALL_STATE(6638)] = 213674, + [SMALL_STATE(6639)] = 213688, + [SMALL_STATE(6640)] = 213704, + [SMALL_STATE(6641)] = 213720, + [SMALL_STATE(6642)] = 213736, + [SMALL_STATE(6643)] = 213752, + [SMALL_STATE(6644)] = 213764, + [SMALL_STATE(6645)] = 213778, + [SMALL_STATE(6646)] = 213794, + [SMALL_STATE(6647)] = 213810, + [SMALL_STATE(6648)] = 213826, + [SMALL_STATE(6649)] = 213842, + [SMALL_STATE(6650)] = 213854, + [SMALL_STATE(6651)] = 213870, + [SMALL_STATE(6652)] = 213886, + [SMALL_STATE(6653)] = 213902, + [SMALL_STATE(6654)] = 213918, + [SMALL_STATE(6655)] = 213934, + [SMALL_STATE(6656)] = 213950, + [SMALL_STATE(6657)] = 213962, + [SMALL_STATE(6658)] = 213978, + [SMALL_STATE(6659)] = 213994, + [SMALL_STATE(6660)] = 214010, + [SMALL_STATE(6661)] = 214022, + [SMALL_STATE(6662)] = 214034, + [SMALL_STATE(6663)] = 214050, + [SMALL_STATE(6664)] = 214066, + [SMALL_STATE(6665)] = 214078, + [SMALL_STATE(6666)] = 214094, + [SMALL_STATE(6667)] = 214108, + [SMALL_STATE(6668)] = 214124, + [SMALL_STATE(6669)] = 214140, + [SMALL_STATE(6670)] = 214154, + [SMALL_STATE(6671)] = 214166, + [SMALL_STATE(6672)] = 214178, + [SMALL_STATE(6673)] = 214192, + [SMALL_STATE(6674)] = 214206, + [SMALL_STATE(6675)] = 214218, + [SMALL_STATE(6676)] = 214234, + [SMALL_STATE(6677)] = 214246, + [SMALL_STATE(6678)] = 214260, + [SMALL_STATE(6679)] = 214274, + [SMALL_STATE(6680)] = 214290, + [SMALL_STATE(6681)] = 214304, + [SMALL_STATE(6682)] = 214320, + [SMALL_STATE(6683)] = 214334, + [SMALL_STATE(6684)] = 214348, + [SMALL_STATE(6685)] = 214362, + [SMALL_STATE(6686)] = 214378, + [SMALL_STATE(6687)] = 214390, + [SMALL_STATE(6688)] = 214406, + [SMALL_STATE(6689)] = 214418, + [SMALL_STATE(6690)] = 214434, + [SMALL_STATE(6691)] = 214450, + [SMALL_STATE(6692)] = 214466, + [SMALL_STATE(6693)] = 214482, + [SMALL_STATE(6694)] = 214496, + [SMALL_STATE(6695)] = 214512, + [SMALL_STATE(6696)] = 214524, + [SMALL_STATE(6697)] = 214540, + [SMALL_STATE(6698)] = 214556, + [SMALL_STATE(6699)] = 214570, + [SMALL_STATE(6700)] = 214586, + [SMALL_STATE(6701)] = 214598, + [SMALL_STATE(6702)] = 214610, + [SMALL_STATE(6703)] = 214622, + [SMALL_STATE(6704)] = 214636, + [SMALL_STATE(6705)] = 214652, + [SMALL_STATE(6706)] = 214664, + [SMALL_STATE(6707)] = 214676, + [SMALL_STATE(6708)] = 214688, + [SMALL_STATE(6709)] = 214704, + [SMALL_STATE(6710)] = 214720, + [SMALL_STATE(6711)] = 214732, + [SMALL_STATE(6712)] = 214744, + [SMALL_STATE(6713)] = 214760, + [SMALL_STATE(6714)] = 214772, + [SMALL_STATE(6715)] = 214788, + [SMALL_STATE(6716)] = 214802, + [SMALL_STATE(6717)] = 214814, + [SMALL_STATE(6718)] = 214830, + [SMALL_STATE(6719)] = 214846, + [SMALL_STATE(6720)] = 214862, + [SMALL_STATE(6721)] = 214878, + [SMALL_STATE(6722)] = 214894, + [SMALL_STATE(6723)] = 214906, + [SMALL_STATE(6724)] = 214922, + [SMALL_STATE(6725)] = 214938, + [SMALL_STATE(6726)] = 214954, + [SMALL_STATE(6727)] = 214966, + [SMALL_STATE(6728)] = 214982, + [SMALL_STATE(6729)] = 214998, + [SMALL_STATE(6730)] = 215010, + [SMALL_STATE(6731)] = 215022, + [SMALL_STATE(6732)] = 215036, + [SMALL_STATE(6733)] = 215052, + [SMALL_STATE(6734)] = 215068, + [SMALL_STATE(6735)] = 215080, + [SMALL_STATE(6736)] = 215094, + [SMALL_STATE(6737)] = 215106, + [SMALL_STATE(6738)] = 215120, + [SMALL_STATE(6739)] = 215136, + [SMALL_STATE(6740)] = 215152, + [SMALL_STATE(6741)] = 215168, + [SMALL_STATE(6742)] = 215184, + [SMALL_STATE(6743)] = 215198, + [SMALL_STATE(6744)] = 215212, + [SMALL_STATE(6745)] = 215228, + [SMALL_STATE(6746)] = 215244, + [SMALL_STATE(6747)] = 215260, + [SMALL_STATE(6748)] = 215276, + [SMALL_STATE(6749)] = 215290, + [SMALL_STATE(6750)] = 215306, + [SMALL_STATE(6751)] = 215322, + [SMALL_STATE(6752)] = 215338, + [SMALL_STATE(6753)] = 215354, + [SMALL_STATE(6754)] = 215370, + [SMALL_STATE(6755)] = 215382, + [SMALL_STATE(6756)] = 215398, + [SMALL_STATE(6757)] = 215412, + [SMALL_STATE(6758)] = 215428, + [SMALL_STATE(6759)] = 215444, + [SMALL_STATE(6760)] = 215460, + [SMALL_STATE(6761)] = 215476, + [SMALL_STATE(6762)] = 215492, + [SMALL_STATE(6763)] = 215508, + [SMALL_STATE(6764)] = 215524, + [SMALL_STATE(6765)] = 215538, + [SMALL_STATE(6766)] = 215550, + [SMALL_STATE(6767)] = 215566, + [SMALL_STATE(6768)] = 215580, + [SMALL_STATE(6769)] = 215596, + [SMALL_STATE(6770)] = 215612, + [SMALL_STATE(6771)] = 215628, + [SMALL_STATE(6772)] = 215644, + [SMALL_STATE(6773)] = 215660, + [SMALL_STATE(6774)] = 215676, + [SMALL_STATE(6775)] = 215688, + [SMALL_STATE(6776)] = 215704, + [SMALL_STATE(6777)] = 215720, + [SMALL_STATE(6778)] = 215736, + [SMALL_STATE(6779)] = 215752, + [SMALL_STATE(6780)] = 215764, + [SMALL_STATE(6781)] = 215778, + [SMALL_STATE(6782)] = 215794, + [SMALL_STATE(6783)] = 215810, + [SMALL_STATE(6784)] = 215826, + [SMALL_STATE(6785)] = 215842, + [SMALL_STATE(6786)] = 215856, + [SMALL_STATE(6787)] = 215872, + [SMALL_STATE(6788)] = 215888, + [SMALL_STATE(6789)] = 215904, + [SMALL_STATE(6790)] = 215920, + [SMALL_STATE(6791)] = 215932, + [SMALL_STATE(6792)] = 215944, + [SMALL_STATE(6793)] = 215960, + [SMALL_STATE(6794)] = 215972, + [SMALL_STATE(6795)] = 215988, + [SMALL_STATE(6796)] = 216002, + [SMALL_STATE(6797)] = 216018, + [SMALL_STATE(6798)] = 216034, + [SMALL_STATE(6799)] = 216050, + [SMALL_STATE(6800)] = 216066, + [SMALL_STATE(6801)] = 216082, + [SMALL_STATE(6802)] = 216098, + [SMALL_STATE(6803)] = 216114, + [SMALL_STATE(6804)] = 216130, + [SMALL_STATE(6805)] = 216146, + [SMALL_STATE(6806)] = 216162, + [SMALL_STATE(6807)] = 216178, + [SMALL_STATE(6808)] = 216192, + [SMALL_STATE(6809)] = 216204, + [SMALL_STATE(6810)] = 216216, + [SMALL_STATE(6811)] = 216230, + [SMALL_STATE(6812)] = 216242, + [SMALL_STATE(6813)] = 216254, + [SMALL_STATE(6814)] = 216268, + [SMALL_STATE(6815)] = 216284, + [SMALL_STATE(6816)] = 216296, + [SMALL_STATE(6817)] = 216312, + [SMALL_STATE(6818)] = 216326, + [SMALL_STATE(6819)] = 216342, + [SMALL_STATE(6820)] = 216358, + [SMALL_STATE(6821)] = 216374, + [SMALL_STATE(6822)] = 216390, + [SMALL_STATE(6823)] = 216406, + [SMALL_STATE(6824)] = 216422, + [SMALL_STATE(6825)] = 216438, + [SMALL_STATE(6826)] = 216454, + [SMALL_STATE(6827)] = 216470, + [SMALL_STATE(6828)] = 216486, + [SMALL_STATE(6829)] = 216502, + [SMALL_STATE(6830)] = 216518, + [SMALL_STATE(6831)] = 216530, + [SMALL_STATE(6832)] = 216544, + [SMALL_STATE(6833)] = 216560, + [SMALL_STATE(6834)] = 216572, + [SMALL_STATE(6835)] = 216584, + [SMALL_STATE(6836)] = 216598, + [SMALL_STATE(6837)] = 216614, + [SMALL_STATE(6838)] = 216626, + [SMALL_STATE(6839)] = 216638, + [SMALL_STATE(6840)] = 216652, + [SMALL_STATE(6841)] = 216668, + [SMALL_STATE(6842)] = 216684, + [SMALL_STATE(6843)] = 216700, + [SMALL_STATE(6844)] = 216716, + [SMALL_STATE(6845)] = 216732, + [SMALL_STATE(6846)] = 216748, + [SMALL_STATE(6847)] = 216764, + [SMALL_STATE(6848)] = 216780, + [SMALL_STATE(6849)] = 216796, + [SMALL_STATE(6850)] = 216812, + [SMALL_STATE(6851)] = 216826, + [SMALL_STATE(6852)] = 216842, + [SMALL_STATE(6853)] = 216856, + [SMALL_STATE(6854)] = 216870, + [SMALL_STATE(6855)] = 216886, + [SMALL_STATE(6856)] = 216902, + [SMALL_STATE(6857)] = 216918, + [SMALL_STATE(6858)] = 216934, + [SMALL_STATE(6859)] = 216950, + [SMALL_STATE(6860)] = 216966, + [SMALL_STATE(6861)] = 216980, + [SMALL_STATE(6862)] = 216996, + [SMALL_STATE(6863)] = 217012, + [SMALL_STATE(6864)] = 217028, + [SMALL_STATE(6865)] = 217040, + [SMALL_STATE(6866)] = 217056, + [SMALL_STATE(6867)] = 217070, + [SMALL_STATE(6868)] = 217086, + [SMALL_STATE(6869)] = 217102, + [SMALL_STATE(6870)] = 217116, + [SMALL_STATE(6871)] = 217132, + [SMALL_STATE(6872)] = 217144, + [SMALL_STATE(6873)] = 217160, + [SMALL_STATE(6874)] = 217176, + [SMALL_STATE(6875)] = 217188, + [SMALL_STATE(6876)] = 217204, + [SMALL_STATE(6877)] = 217220, + [SMALL_STATE(6878)] = 217236, + [SMALL_STATE(6879)] = 217250, + [SMALL_STATE(6880)] = 217266, + [SMALL_STATE(6881)] = 217280, + [SMALL_STATE(6882)] = 217296, + [SMALL_STATE(6883)] = 217312, + [SMALL_STATE(6884)] = 217328, + [SMALL_STATE(6885)] = 217344, + [SMALL_STATE(6886)] = 217360, + [SMALL_STATE(6887)] = 217376, + [SMALL_STATE(6888)] = 217392, + [SMALL_STATE(6889)] = 217408, + [SMALL_STATE(6890)] = 217424, + [SMALL_STATE(6891)] = 217438, + [SMALL_STATE(6892)] = 217454, + [SMALL_STATE(6893)] = 217470, + [SMALL_STATE(6894)] = 217486, + [SMALL_STATE(6895)] = 217502, + [SMALL_STATE(6896)] = 217518, + [SMALL_STATE(6897)] = 217532, + [SMALL_STATE(6898)] = 217548, + [SMALL_STATE(6899)] = 217564, + [SMALL_STATE(6900)] = 217580, + [SMALL_STATE(6901)] = 217596, + [SMALL_STATE(6902)] = 217612, + [SMALL_STATE(6903)] = 217628, + [SMALL_STATE(6904)] = 217644, + [SMALL_STATE(6905)] = 217660, + [SMALL_STATE(6906)] = 217672, + [SMALL_STATE(6907)] = 217688, + [SMALL_STATE(6908)] = 217704, + [SMALL_STATE(6909)] = 217720, + [SMALL_STATE(6910)] = 217736, + [SMALL_STATE(6911)] = 217752, + [SMALL_STATE(6912)] = 217768, + [SMALL_STATE(6913)] = 217784, + [SMALL_STATE(6914)] = 217800, + [SMALL_STATE(6915)] = 217816, + [SMALL_STATE(6916)] = 217832, + [SMALL_STATE(6917)] = 217848, + [SMALL_STATE(6918)] = 217864, + [SMALL_STATE(6919)] = 217880, + [SMALL_STATE(6920)] = 217896, + [SMALL_STATE(6921)] = 217912, + [SMALL_STATE(6922)] = 217928, + [SMALL_STATE(6923)] = 217942, + [SMALL_STATE(6924)] = 217958, + [SMALL_STATE(6925)] = 217974, + [SMALL_STATE(6926)] = 217990, + [SMALL_STATE(6927)] = 218006, + [SMALL_STATE(6928)] = 218022, + [SMALL_STATE(6929)] = 218038, + [SMALL_STATE(6930)] = 218054, + [SMALL_STATE(6931)] = 218070, + [SMALL_STATE(6932)] = 218086, + [SMALL_STATE(6933)] = 218098, + [SMALL_STATE(6934)] = 218110, + [SMALL_STATE(6935)] = 218126, + [SMALL_STATE(6936)] = 218142, + [SMALL_STATE(6937)] = 218154, + [SMALL_STATE(6938)] = 218166, + [SMALL_STATE(6939)] = 218180, + [SMALL_STATE(6940)] = 218192, + [SMALL_STATE(6941)] = 218204, + [SMALL_STATE(6942)] = 218216, + [SMALL_STATE(6943)] = 218228, + [SMALL_STATE(6944)] = 218240, + [SMALL_STATE(6945)] = 218254, + [SMALL_STATE(6946)] = 218266, + [SMALL_STATE(6947)] = 218282, + [SMALL_STATE(6948)] = 218298, + [SMALL_STATE(6949)] = 218310, + [SMALL_STATE(6950)] = 218326, + [SMALL_STATE(6951)] = 218342, + [SMALL_STATE(6952)] = 218358, + [SMALL_STATE(6953)] = 218370, + [SMALL_STATE(6954)] = 218384, + [SMALL_STATE(6955)] = 218400, + [SMALL_STATE(6956)] = 218416, + [SMALL_STATE(6957)] = 218432, + [SMALL_STATE(6958)] = 218448, + [SMALL_STATE(6959)] = 218462, + [SMALL_STATE(6960)] = 218474, + [SMALL_STATE(6961)] = 218490, + [SMALL_STATE(6962)] = 218502, + [SMALL_STATE(6963)] = 218514, + [SMALL_STATE(6964)] = 218526, + [SMALL_STATE(6965)] = 218538, + [SMALL_STATE(6966)] = 218550, + [SMALL_STATE(6967)] = 218566, + [SMALL_STATE(6968)] = 218580, + [SMALL_STATE(6969)] = 218594, + [SMALL_STATE(6970)] = 218606, + [SMALL_STATE(6971)] = 218620, + [SMALL_STATE(6972)] = 218636, + [SMALL_STATE(6973)] = 218648, + [SMALL_STATE(6974)] = 218664, + [SMALL_STATE(6975)] = 218678, + [SMALL_STATE(6976)] = 218694, + [SMALL_STATE(6977)] = 218710, + [SMALL_STATE(6978)] = 218724, + [SMALL_STATE(6979)] = 218740, + [SMALL_STATE(6980)] = 218756, + [SMALL_STATE(6981)] = 218770, + [SMALL_STATE(6982)] = 218786, + [SMALL_STATE(6983)] = 218798, + [SMALL_STATE(6984)] = 218812, + [SMALL_STATE(6985)] = 218828, + [SMALL_STATE(6986)] = 218844, + [SMALL_STATE(6987)] = 218858, + [SMALL_STATE(6988)] = 218870, + [SMALL_STATE(6989)] = 218882, + [SMALL_STATE(6990)] = 218898, + [SMALL_STATE(6991)] = 218912, + [SMALL_STATE(6992)] = 218928, + [SMALL_STATE(6993)] = 218944, + [SMALL_STATE(6994)] = 218960, + [SMALL_STATE(6995)] = 218976, + [SMALL_STATE(6996)] = 218992, + [SMALL_STATE(6997)] = 219004, + [SMALL_STATE(6998)] = 219020, + [SMALL_STATE(6999)] = 219036, + [SMALL_STATE(7000)] = 219048, + [SMALL_STATE(7001)] = 219064, + [SMALL_STATE(7002)] = 219080, + [SMALL_STATE(7003)] = 219096, + [SMALL_STATE(7004)] = 219108, + [SMALL_STATE(7005)] = 219124, + [SMALL_STATE(7006)] = 219138, + [SMALL_STATE(7007)] = 219154, + [SMALL_STATE(7008)] = 219166, + [SMALL_STATE(7009)] = 219178, + [SMALL_STATE(7010)] = 219194, + [SMALL_STATE(7011)] = 219210, + [SMALL_STATE(7012)] = 219226, + [SMALL_STATE(7013)] = 219242, + [SMALL_STATE(7014)] = 219258, + [SMALL_STATE(7015)] = 219274, + [SMALL_STATE(7016)] = 219290, + [SMALL_STATE(7017)] = 219302, + [SMALL_STATE(7018)] = 219316, + [SMALL_STATE(7019)] = 219330, + [SMALL_STATE(7020)] = 219342, + [SMALL_STATE(7021)] = 219354, + [SMALL_STATE(7022)] = 219370, + [SMALL_STATE(7023)] = 219386, + [SMALL_STATE(7024)] = 219402, + [SMALL_STATE(7025)] = 219416, + [SMALL_STATE(7026)] = 219430, + [SMALL_STATE(7027)] = 219442, + [SMALL_STATE(7028)] = 219454, + [SMALL_STATE(7029)] = 219468, + [SMALL_STATE(7030)] = 219482, + [SMALL_STATE(7031)] = 219494, + [SMALL_STATE(7032)] = 219508, + [SMALL_STATE(7033)] = 219524, + [SMALL_STATE(7034)] = 219536, + [SMALL_STATE(7035)] = 219552, + [SMALL_STATE(7036)] = 219566, + [SMALL_STATE(7037)] = 219582, + [SMALL_STATE(7038)] = 219598, + [SMALL_STATE(7039)] = 219614, + [SMALL_STATE(7040)] = 219630, + [SMALL_STATE(7041)] = 219644, + [SMALL_STATE(7042)] = 219660, + [SMALL_STATE(7043)] = 219676, + [SMALL_STATE(7044)] = 219688, + [SMALL_STATE(7045)] = 219702, + [SMALL_STATE(7046)] = 219718, + [SMALL_STATE(7047)] = 219730, + [SMALL_STATE(7048)] = 219742, + [SMALL_STATE(7049)] = 219756, + [SMALL_STATE(7050)] = 219770, + [SMALL_STATE(7051)] = 219786, + [SMALL_STATE(7052)] = 219802, + [SMALL_STATE(7053)] = 219816, + [SMALL_STATE(7054)] = 219830, + [SMALL_STATE(7055)] = 219842, + [SMALL_STATE(7056)] = 219856, + [SMALL_STATE(7057)] = 219872, + [SMALL_STATE(7058)] = 219886, + [SMALL_STATE(7059)] = 219900, + [SMALL_STATE(7060)] = 219916, + [SMALL_STATE(7061)] = 219932, + [SMALL_STATE(7062)] = 219946, + [SMALL_STATE(7063)] = 219962, + [SMALL_STATE(7064)] = 219978, + [SMALL_STATE(7065)] = 219994, + [SMALL_STATE(7066)] = 220006, + [SMALL_STATE(7067)] = 220022, + [SMALL_STATE(7068)] = 220038, + [SMALL_STATE(7069)] = 220054, + [SMALL_STATE(7070)] = 220066, + [SMALL_STATE(7071)] = 220080, + [SMALL_STATE(7072)] = 220096, + [SMALL_STATE(7073)] = 220110, + [SMALL_STATE(7074)] = 220126, + [SMALL_STATE(7075)] = 220142, + [SMALL_STATE(7076)] = 220158, + [SMALL_STATE(7077)] = 220174, + [SMALL_STATE(7078)] = 220190, + [SMALL_STATE(7079)] = 220204, + [SMALL_STATE(7080)] = 220218, + [SMALL_STATE(7081)] = 220230, + [SMALL_STATE(7082)] = 220244, + [SMALL_STATE(7083)] = 220260, + [SMALL_STATE(7084)] = 220276, + [SMALL_STATE(7085)] = 220292, + [SMALL_STATE(7086)] = 220308, + [SMALL_STATE(7087)] = 220324, + [SMALL_STATE(7088)] = 220340, + [SMALL_STATE(7089)] = 220354, + [SMALL_STATE(7090)] = 220368, + [SMALL_STATE(7091)] = 220380, + [SMALL_STATE(7092)] = 220392, + [SMALL_STATE(7093)] = 220408, + [SMALL_STATE(7094)] = 220424, + [SMALL_STATE(7095)] = 220438, + [SMALL_STATE(7096)] = 220454, + [SMALL_STATE(7097)] = 220470, + [SMALL_STATE(7098)] = 220484, + [SMALL_STATE(7099)] = 220498, + [SMALL_STATE(7100)] = 220510, + [SMALL_STATE(7101)] = 220524, + [SMALL_STATE(7102)] = 220538, + [SMALL_STATE(7103)] = 220554, + [SMALL_STATE(7104)] = 220570, + [SMALL_STATE(7105)] = 220586, + [SMALL_STATE(7106)] = 220602, + [SMALL_STATE(7107)] = 220616, + [SMALL_STATE(7108)] = 220630, + [SMALL_STATE(7109)] = 220644, + [SMALL_STATE(7110)] = 220658, + [SMALL_STATE(7111)] = 220672, + [SMALL_STATE(7112)] = 220688, + [SMALL_STATE(7113)] = 220704, + [SMALL_STATE(7114)] = 220720, + [SMALL_STATE(7115)] = 220736, + [SMALL_STATE(7116)] = 220750, + [SMALL_STATE(7117)] = 220762, + [SMALL_STATE(7118)] = 220776, + [SMALL_STATE(7119)] = 220788, + [SMALL_STATE(7120)] = 220802, + [SMALL_STATE(7121)] = 220818, + [SMALL_STATE(7122)] = 220834, + [SMALL_STATE(7123)] = 220850, + [SMALL_STATE(7124)] = 220866, + [SMALL_STATE(7125)] = 220880, + [SMALL_STATE(7126)] = 220892, + [SMALL_STATE(7127)] = 220906, + [SMALL_STATE(7128)] = 220922, + [SMALL_STATE(7129)] = 220938, + [SMALL_STATE(7130)] = 220954, + [SMALL_STATE(7131)] = 220970, + [SMALL_STATE(7132)] = 220984, + [SMALL_STATE(7133)] = 221000, + [SMALL_STATE(7134)] = 221014, + [SMALL_STATE(7135)] = 221030, + [SMALL_STATE(7136)] = 221042, + [SMALL_STATE(7137)] = 221058, + [SMALL_STATE(7138)] = 221074, + [SMALL_STATE(7139)] = 221090, + [SMALL_STATE(7140)] = 221106, + [SMALL_STATE(7141)] = 221122, + [SMALL_STATE(7142)] = 221136, + [SMALL_STATE(7143)] = 221150, + [SMALL_STATE(7144)] = 221162, + [SMALL_STATE(7145)] = 221176, + [SMALL_STATE(7146)] = 221188, + [SMALL_STATE(7147)] = 221202, + [SMALL_STATE(7148)] = 221218, + [SMALL_STATE(7149)] = 221234, + [SMALL_STATE(7150)] = 221248, + [SMALL_STATE(7151)] = 221264, + [SMALL_STATE(7152)] = 221280, + [SMALL_STATE(7153)] = 221294, + [SMALL_STATE(7154)] = 221308, + [SMALL_STATE(7155)] = 221320, + [SMALL_STATE(7156)] = 221336, + [SMALL_STATE(7157)] = 221352, + [SMALL_STATE(7158)] = 221368, + [SMALL_STATE(7159)] = 221384, + [SMALL_STATE(7160)] = 221398, + [SMALL_STATE(7161)] = 221412, + [SMALL_STATE(7162)] = 221428, + [SMALL_STATE(7163)] = 221444, + [SMALL_STATE(7164)] = 221458, + [SMALL_STATE(7165)] = 221474, + [SMALL_STATE(7166)] = 221490, + [SMALL_STATE(7167)] = 221504, + [SMALL_STATE(7168)] = 221518, + [SMALL_STATE(7169)] = 221532, + [SMALL_STATE(7170)] = 221548, + [SMALL_STATE(7171)] = 221564, + [SMALL_STATE(7172)] = 221576, + [SMALL_STATE(7173)] = 221592, + [SMALL_STATE(7174)] = 221608, + [SMALL_STATE(7175)] = 221622, + [SMALL_STATE(7176)] = 221636, + [SMALL_STATE(7177)] = 221652, + [SMALL_STATE(7178)] = 221668, + [SMALL_STATE(7179)] = 221684, + [SMALL_STATE(7180)] = 221696, + [SMALL_STATE(7181)] = 221712, + [SMALL_STATE(7182)] = 221728, + [SMALL_STATE(7183)] = 221740, + [SMALL_STATE(7184)] = 221754, + [SMALL_STATE(7185)] = 221766, + [SMALL_STATE(7186)] = 221778, + [SMALL_STATE(7187)] = 221792, + [SMALL_STATE(7188)] = 221804, + [SMALL_STATE(7189)] = 221818, + [SMALL_STATE(7190)] = 221834, + [SMALL_STATE(7191)] = 221848, + [SMALL_STATE(7192)] = 221862, + [SMALL_STATE(7193)] = 221876, + [SMALL_STATE(7194)] = 221892, + [SMALL_STATE(7195)] = 221908, + [SMALL_STATE(7196)] = 221922, + [SMALL_STATE(7197)] = 221936, + [SMALL_STATE(7198)] = 221950, + [SMALL_STATE(7199)] = 221966, + [SMALL_STATE(7200)] = 221982, + [SMALL_STATE(7201)] = 221998, + [SMALL_STATE(7202)] = 222014, + [SMALL_STATE(7203)] = 222030, + [SMALL_STATE(7204)] = 222043, + [SMALL_STATE(7205)] = 222056, + [SMALL_STATE(7206)] = 222069, + [SMALL_STATE(7207)] = 222082, + [SMALL_STATE(7208)] = 222095, + [SMALL_STATE(7209)] = 222108, + [SMALL_STATE(7210)] = 222121, + [SMALL_STATE(7211)] = 222134, + [SMALL_STATE(7212)] = 222145, + [SMALL_STATE(7213)] = 222158, + [SMALL_STATE(7214)] = 222171, + [SMALL_STATE(7215)] = 222184, + [SMALL_STATE(7216)] = 222197, + [SMALL_STATE(7217)] = 222210, + [SMALL_STATE(7218)] = 222223, + [SMALL_STATE(7219)] = 222236, + [SMALL_STATE(7220)] = 222249, + [SMALL_STATE(7221)] = 222262, + [SMALL_STATE(7222)] = 222275, + [SMALL_STATE(7223)] = 222288, + [SMALL_STATE(7224)] = 222301, + [SMALL_STATE(7225)] = 222314, + [SMALL_STATE(7226)] = 222327, + [SMALL_STATE(7227)] = 222340, + [SMALL_STATE(7228)] = 222351, + [SMALL_STATE(7229)] = 222364, + [SMALL_STATE(7230)] = 222377, + [SMALL_STATE(7231)] = 222390, + [SMALL_STATE(7232)] = 222403, + [SMALL_STATE(7233)] = 222416, + [SMALL_STATE(7234)] = 222429, + [SMALL_STATE(7235)] = 222442, + [SMALL_STATE(7236)] = 222455, + [SMALL_STATE(7237)] = 222468, + [SMALL_STATE(7238)] = 222481, + [SMALL_STATE(7239)] = 222494, + [SMALL_STATE(7240)] = 222507, + [SMALL_STATE(7241)] = 222518, + [SMALL_STATE(7242)] = 222531, + [SMALL_STATE(7243)] = 222544, + [SMALL_STATE(7244)] = 222557, + [SMALL_STATE(7245)] = 222570, + [SMALL_STATE(7246)] = 222583, + [SMALL_STATE(7247)] = 222596, + [SMALL_STATE(7248)] = 222609, + [SMALL_STATE(7249)] = 222620, + [SMALL_STATE(7250)] = 222633, + [SMALL_STATE(7251)] = 222646, + [SMALL_STATE(7252)] = 222659, + [SMALL_STATE(7253)] = 222672, + [SMALL_STATE(7254)] = 222685, + [SMALL_STATE(7255)] = 222698, + [SMALL_STATE(7256)] = 222711, + [SMALL_STATE(7257)] = 222724, + [SMALL_STATE(7258)] = 222735, + [SMALL_STATE(7259)] = 222748, + [SMALL_STATE(7260)] = 222761, + [SMALL_STATE(7261)] = 222772, + [SMALL_STATE(7262)] = 222785, + [SMALL_STATE(7263)] = 222798, + [SMALL_STATE(7264)] = 222811, + [SMALL_STATE(7265)] = 222824, + [SMALL_STATE(7266)] = 222837, + [SMALL_STATE(7267)] = 222850, + [SMALL_STATE(7268)] = 222863, + [SMALL_STATE(7269)] = 222876, + [SMALL_STATE(7270)] = 222889, + [SMALL_STATE(7271)] = 222902, + [SMALL_STATE(7272)] = 222915, + [SMALL_STATE(7273)] = 222928, + [SMALL_STATE(7274)] = 222941, + [SMALL_STATE(7275)] = 222954, + [SMALL_STATE(7276)] = 222967, + [SMALL_STATE(7277)] = 222980, + [SMALL_STATE(7278)] = 222993, + [SMALL_STATE(7279)] = 223006, + [SMALL_STATE(7280)] = 223019, + [SMALL_STATE(7281)] = 223032, + [SMALL_STATE(7282)] = 223045, + [SMALL_STATE(7283)] = 223058, + [SMALL_STATE(7284)] = 223071, + [SMALL_STATE(7285)] = 223084, + [SMALL_STATE(7286)] = 223097, + [SMALL_STATE(7287)] = 223110, + [SMALL_STATE(7288)] = 223123, + [SMALL_STATE(7289)] = 223136, + [SMALL_STATE(7290)] = 223149, + [SMALL_STATE(7291)] = 223162, + [SMALL_STATE(7292)] = 223175, + [SMALL_STATE(7293)] = 223188, + [SMALL_STATE(7294)] = 223201, + [SMALL_STATE(7295)] = 223214, + [SMALL_STATE(7296)] = 223227, + [SMALL_STATE(7297)] = 223240, + [SMALL_STATE(7298)] = 223253, + [SMALL_STATE(7299)] = 223266, + [SMALL_STATE(7300)] = 223279, + [SMALL_STATE(7301)] = 223292, + [SMALL_STATE(7302)] = 223305, + [SMALL_STATE(7303)] = 223318, + [SMALL_STATE(7304)] = 223331, + [SMALL_STATE(7305)] = 223344, + [SMALL_STATE(7306)] = 223357, + [SMALL_STATE(7307)] = 223370, + [SMALL_STATE(7308)] = 223383, + [SMALL_STATE(7309)] = 223396, + [SMALL_STATE(7310)] = 223409, + [SMALL_STATE(7311)] = 223422, + [SMALL_STATE(7312)] = 223433, + [SMALL_STATE(7313)] = 223446, + [SMALL_STATE(7314)] = 223459, + [SMALL_STATE(7315)] = 223470, + [SMALL_STATE(7316)] = 223483, + [SMALL_STATE(7317)] = 223496, + [SMALL_STATE(7318)] = 223507, + [SMALL_STATE(7319)] = 223520, + [SMALL_STATE(7320)] = 223533, + [SMALL_STATE(7321)] = 223546, + [SMALL_STATE(7322)] = 223559, + [SMALL_STATE(7323)] = 223572, + [SMALL_STATE(7324)] = 223585, + [SMALL_STATE(7325)] = 223598, + [SMALL_STATE(7326)] = 223611, + [SMALL_STATE(7327)] = 223624, + [SMALL_STATE(7328)] = 223637, + [SMALL_STATE(7329)] = 223650, + [SMALL_STATE(7330)] = 223663, + [SMALL_STATE(7331)] = 223676, + [SMALL_STATE(7332)] = 223689, + [SMALL_STATE(7333)] = 223700, + [SMALL_STATE(7334)] = 223713, + [SMALL_STATE(7335)] = 223726, + [SMALL_STATE(7336)] = 223739, + [SMALL_STATE(7337)] = 223752, + [SMALL_STATE(7338)] = 223765, + [SMALL_STATE(7339)] = 223778, + [SMALL_STATE(7340)] = 223791, + [SMALL_STATE(7341)] = 223804, + [SMALL_STATE(7342)] = 223817, + [SMALL_STATE(7343)] = 223830, + [SMALL_STATE(7344)] = 223843, + [SMALL_STATE(7345)] = 223856, + [SMALL_STATE(7346)] = 223869, + [SMALL_STATE(7347)] = 223882, + [SMALL_STATE(7348)] = 223895, + [SMALL_STATE(7349)] = 223908, + [SMALL_STATE(7350)] = 223921, + [SMALL_STATE(7351)] = 223934, + [SMALL_STATE(7352)] = 223947, + [SMALL_STATE(7353)] = 223960, + [SMALL_STATE(7354)] = 223973, + [SMALL_STATE(7355)] = 223986, + [SMALL_STATE(7356)] = 223999, + [SMALL_STATE(7357)] = 224012, + [SMALL_STATE(7358)] = 224025, + [SMALL_STATE(7359)] = 224038, + [SMALL_STATE(7360)] = 224051, + [SMALL_STATE(7361)] = 224064, + [SMALL_STATE(7362)] = 224077, + [SMALL_STATE(7363)] = 224090, + [SMALL_STATE(7364)] = 224103, + [SMALL_STATE(7365)] = 224116, + [SMALL_STATE(7366)] = 224129, + [SMALL_STATE(7367)] = 224142, + [SMALL_STATE(7368)] = 224155, + [SMALL_STATE(7369)] = 224168, + [SMALL_STATE(7370)] = 224181, + [SMALL_STATE(7371)] = 224191, + [SMALL_STATE(7372)] = 224201, + [SMALL_STATE(7373)] = 224211, + [SMALL_STATE(7374)] = 224221, + [SMALL_STATE(7375)] = 224231, + [SMALL_STATE(7376)] = 224241, + [SMALL_STATE(7377)] = 224251, + [SMALL_STATE(7378)] = 224261, + [SMALL_STATE(7379)] = 224271, + [SMALL_STATE(7380)] = 224281, + [SMALL_STATE(7381)] = 224291, + [SMALL_STATE(7382)] = 224301, + [SMALL_STATE(7383)] = 224311, + [SMALL_STATE(7384)] = 224321, + [SMALL_STATE(7385)] = 224331, + [SMALL_STATE(7386)] = 224341, + [SMALL_STATE(7387)] = 224351, + [SMALL_STATE(7388)] = 224361, + [SMALL_STATE(7389)] = 224371, + [SMALL_STATE(7390)] = 224381, + [SMALL_STATE(7391)] = 224391, + [SMALL_STATE(7392)] = 224401, + [SMALL_STATE(7393)] = 224411, + [SMALL_STATE(7394)] = 224421, + [SMALL_STATE(7395)] = 224431, + [SMALL_STATE(7396)] = 224441, + [SMALL_STATE(7397)] = 224451, + [SMALL_STATE(7398)] = 224461, + [SMALL_STATE(7399)] = 224471, + [SMALL_STATE(7400)] = 224481, + [SMALL_STATE(7401)] = 224491, + [SMALL_STATE(7402)] = 224501, + [SMALL_STATE(7403)] = 224511, + [SMALL_STATE(7404)] = 224521, + [SMALL_STATE(7405)] = 224531, + [SMALL_STATE(7406)] = 224541, + [SMALL_STATE(7407)] = 224551, + [SMALL_STATE(7408)] = 224561, + [SMALL_STATE(7409)] = 224571, + [SMALL_STATE(7410)] = 224581, + [SMALL_STATE(7411)] = 224591, + [SMALL_STATE(7412)] = 224601, + [SMALL_STATE(7413)] = 224611, + [SMALL_STATE(7414)] = 224621, + [SMALL_STATE(7415)] = 224631, + [SMALL_STATE(7416)] = 224641, + [SMALL_STATE(7417)] = 224651, + [SMALL_STATE(7418)] = 224661, + [SMALL_STATE(7419)] = 224671, + [SMALL_STATE(7420)] = 224681, + [SMALL_STATE(7421)] = 224691, + [SMALL_STATE(7422)] = 224701, + [SMALL_STATE(7423)] = 224711, + [SMALL_STATE(7424)] = 224721, + [SMALL_STATE(7425)] = 224731, + [SMALL_STATE(7426)] = 224741, + [SMALL_STATE(7427)] = 224751, + [SMALL_STATE(7428)] = 224761, + [SMALL_STATE(7429)] = 224771, + [SMALL_STATE(7430)] = 224781, + [SMALL_STATE(7431)] = 224791, + [SMALL_STATE(7432)] = 224801, + [SMALL_STATE(7433)] = 224811, + [SMALL_STATE(7434)] = 224821, + [SMALL_STATE(7435)] = 224831, + [SMALL_STATE(7436)] = 224841, + [SMALL_STATE(7437)] = 224851, + [SMALL_STATE(7438)] = 224861, + [SMALL_STATE(7439)] = 224871, + [SMALL_STATE(7440)] = 224881, + [SMALL_STATE(7441)] = 224891, + [SMALL_STATE(7442)] = 224901, + [SMALL_STATE(7443)] = 224911, + [SMALL_STATE(7444)] = 224921, + [SMALL_STATE(7445)] = 224931, + [SMALL_STATE(7446)] = 224941, + [SMALL_STATE(7447)] = 224951, + [SMALL_STATE(7448)] = 224961, + [SMALL_STATE(7449)] = 224971, + [SMALL_STATE(7450)] = 224981, + [SMALL_STATE(7451)] = 224991, + [SMALL_STATE(7452)] = 225001, + [SMALL_STATE(7453)] = 225011, + [SMALL_STATE(7454)] = 225021, + [SMALL_STATE(7455)] = 225031, + [SMALL_STATE(7456)] = 225041, + [SMALL_STATE(7457)] = 225051, + [SMALL_STATE(7458)] = 225061, + [SMALL_STATE(7459)] = 225071, + [SMALL_STATE(7460)] = 225081, + [SMALL_STATE(7461)] = 225091, + [SMALL_STATE(7462)] = 225101, + [SMALL_STATE(7463)] = 225111, + [SMALL_STATE(7464)] = 225121, + [SMALL_STATE(7465)] = 225131, + [SMALL_STATE(7466)] = 225141, + [SMALL_STATE(7467)] = 225151, + [SMALL_STATE(7468)] = 225161, + [SMALL_STATE(7469)] = 225171, + [SMALL_STATE(7470)] = 225181, + [SMALL_STATE(7471)] = 225191, + [SMALL_STATE(7472)] = 225201, + [SMALL_STATE(7473)] = 225211, + [SMALL_STATE(7474)] = 225221, + [SMALL_STATE(7475)] = 225231, + [SMALL_STATE(7476)] = 225241, + [SMALL_STATE(7477)] = 225251, + [SMALL_STATE(7478)] = 225261, + [SMALL_STATE(7479)] = 225271, + [SMALL_STATE(7480)] = 225281, + [SMALL_STATE(7481)] = 225291, + [SMALL_STATE(7482)] = 225301, + [SMALL_STATE(7483)] = 225311, + [SMALL_STATE(7484)] = 225321, + [SMALL_STATE(7485)] = 225331, + [SMALL_STATE(7486)] = 225341, + [SMALL_STATE(7487)] = 225351, + [SMALL_STATE(7488)] = 225361, + [SMALL_STATE(7489)] = 225371, + [SMALL_STATE(7490)] = 225381, + [SMALL_STATE(7491)] = 225391, + [SMALL_STATE(7492)] = 225401, + [SMALL_STATE(7493)] = 225411, + [SMALL_STATE(7494)] = 225421, + [SMALL_STATE(7495)] = 225431, + [SMALL_STATE(7496)] = 225441, + [SMALL_STATE(7497)] = 225451, + [SMALL_STATE(7498)] = 225461, + [SMALL_STATE(7499)] = 225471, + [SMALL_STATE(7500)] = 225481, + [SMALL_STATE(7501)] = 225491, + [SMALL_STATE(7502)] = 225501, + [SMALL_STATE(7503)] = 225511, + [SMALL_STATE(7504)] = 225521, + [SMALL_STATE(7505)] = 225531, + [SMALL_STATE(7506)] = 225541, + [SMALL_STATE(7507)] = 225551, + [SMALL_STATE(7508)] = 225561, + [SMALL_STATE(7509)] = 225571, + [SMALL_STATE(7510)] = 225581, + [SMALL_STATE(7511)] = 225591, + [SMALL_STATE(7512)] = 225601, + [SMALL_STATE(7513)] = 225611, + [SMALL_STATE(7514)] = 225621, + [SMALL_STATE(7515)] = 225631, + [SMALL_STATE(7516)] = 225641, + [SMALL_STATE(7517)] = 225651, + [SMALL_STATE(7518)] = 225661, + [SMALL_STATE(7519)] = 225671, + [SMALL_STATE(7520)] = 225681, + [SMALL_STATE(7521)] = 225691, + [SMALL_STATE(7522)] = 225701, + [SMALL_STATE(7523)] = 225711, + [SMALL_STATE(7524)] = 225721, + [SMALL_STATE(7525)] = 225731, + [SMALL_STATE(7526)] = 225741, + [SMALL_STATE(7527)] = 225751, + [SMALL_STATE(7528)] = 225761, + [SMALL_STATE(7529)] = 225771, + [SMALL_STATE(7530)] = 225781, + [SMALL_STATE(7531)] = 225791, + [SMALL_STATE(7532)] = 225801, + [SMALL_STATE(7533)] = 225811, + [SMALL_STATE(7534)] = 225821, + [SMALL_STATE(7535)] = 225831, + [SMALL_STATE(7536)] = 225841, + [SMALL_STATE(7537)] = 225851, + [SMALL_STATE(7538)] = 225861, + [SMALL_STATE(7539)] = 225871, + [SMALL_STATE(7540)] = 225881, + [SMALL_STATE(7541)] = 225891, + [SMALL_STATE(7542)] = 225901, + [SMALL_STATE(7543)] = 225911, + [SMALL_STATE(7544)] = 225921, + [SMALL_STATE(7545)] = 225931, + [SMALL_STATE(7546)] = 225941, + [SMALL_STATE(7547)] = 225951, + [SMALL_STATE(7548)] = 225961, + [SMALL_STATE(7549)] = 225971, + [SMALL_STATE(7550)] = 225981, + [SMALL_STATE(7551)] = 225991, + [SMALL_STATE(7552)] = 226001, + [SMALL_STATE(7553)] = 226011, + [SMALL_STATE(7554)] = 226021, + [SMALL_STATE(7555)] = 226031, + [SMALL_STATE(7556)] = 226041, + [SMALL_STATE(7557)] = 226051, + [SMALL_STATE(7558)] = 226061, + [SMALL_STATE(7559)] = 226071, + [SMALL_STATE(7560)] = 226081, + [SMALL_STATE(7561)] = 226091, + [SMALL_STATE(7562)] = 226101, + [SMALL_STATE(7563)] = 226111, + [SMALL_STATE(7564)] = 226121, + [SMALL_STATE(7565)] = 226131, + [SMALL_STATE(7566)] = 226141, + [SMALL_STATE(7567)] = 226151, + [SMALL_STATE(7568)] = 226161, + [SMALL_STATE(7569)] = 226171, + [SMALL_STATE(7570)] = 226181, + [SMALL_STATE(7571)] = 226191, + [SMALL_STATE(7572)] = 226201, + [SMALL_STATE(7573)] = 226211, + [SMALL_STATE(7574)] = 226221, + [SMALL_STATE(7575)] = 226231, + [SMALL_STATE(7576)] = 226241, + [SMALL_STATE(7577)] = 226251, + [SMALL_STATE(7578)] = 226261, + [SMALL_STATE(7579)] = 226271, + [SMALL_STATE(7580)] = 226281, + [SMALL_STATE(7581)] = 226291, + [SMALL_STATE(7582)] = 226301, + [SMALL_STATE(7583)] = 226311, + [SMALL_STATE(7584)] = 226321, + [SMALL_STATE(7585)] = 226331, + [SMALL_STATE(7586)] = 226341, + [SMALL_STATE(7587)] = 226351, + [SMALL_STATE(7588)] = 226361, + [SMALL_STATE(7589)] = 226371, + [SMALL_STATE(7590)] = 226381, + [SMALL_STATE(7591)] = 226391, + [SMALL_STATE(7592)] = 226401, + [SMALL_STATE(7593)] = 226411, + [SMALL_STATE(7594)] = 226421, + [SMALL_STATE(7595)] = 226431, + [SMALL_STATE(7596)] = 226441, + [SMALL_STATE(7597)] = 226451, + [SMALL_STATE(7598)] = 226461, + [SMALL_STATE(7599)] = 226471, + [SMALL_STATE(7600)] = 226481, + [SMALL_STATE(7601)] = 226491, + [SMALL_STATE(7602)] = 226501, + [SMALL_STATE(7603)] = 226511, + [SMALL_STATE(7604)] = 226521, + [SMALL_STATE(7605)] = 226531, + [SMALL_STATE(7606)] = 226541, + [SMALL_STATE(7607)] = 226551, + [SMALL_STATE(7608)] = 226561, + [SMALL_STATE(7609)] = 226571, + [SMALL_STATE(7610)] = 226581, + [SMALL_STATE(7611)] = 226591, + [SMALL_STATE(7612)] = 226601, + [SMALL_STATE(7613)] = 226611, + [SMALL_STATE(7614)] = 226621, + [SMALL_STATE(7615)] = 226631, + [SMALL_STATE(7616)] = 226641, + [SMALL_STATE(7617)] = 226651, + [SMALL_STATE(7618)] = 226661, + [SMALL_STATE(7619)] = 226671, + [SMALL_STATE(7620)] = 226681, + [SMALL_STATE(7621)] = 226691, + [SMALL_STATE(7622)] = 226701, + [SMALL_STATE(7623)] = 226711, + [SMALL_STATE(7624)] = 226721, + [SMALL_STATE(7625)] = 226731, + [SMALL_STATE(7626)] = 226741, + [SMALL_STATE(7627)] = 226751, + [SMALL_STATE(7628)] = 226761, + [SMALL_STATE(7629)] = 226771, + [SMALL_STATE(7630)] = 226781, + [SMALL_STATE(7631)] = 226791, + [SMALL_STATE(7632)] = 226801, + [SMALL_STATE(7633)] = 226811, + [SMALL_STATE(7634)] = 226821, + [SMALL_STATE(7635)] = 226831, + [SMALL_STATE(7636)] = 226841, + [SMALL_STATE(7637)] = 226851, + [SMALL_STATE(7638)] = 226861, + [SMALL_STATE(7639)] = 226871, + [SMALL_STATE(7640)] = 226881, + [SMALL_STATE(7641)] = 226891, + [SMALL_STATE(7642)] = 226901, + [SMALL_STATE(7643)] = 226911, + [SMALL_STATE(7644)] = 226921, + [SMALL_STATE(7645)] = 226931, + [SMALL_STATE(7646)] = 226941, + [SMALL_STATE(7647)] = 226951, + [SMALL_STATE(7648)] = 226961, + [SMALL_STATE(7649)] = 226971, + [SMALL_STATE(7650)] = 226981, + [SMALL_STATE(7651)] = 226991, + [SMALL_STATE(7652)] = 227001, + [SMALL_STATE(7653)] = 227011, + [SMALL_STATE(7654)] = 227021, + [SMALL_STATE(7655)] = 227031, + [SMALL_STATE(7656)] = 227041, + [SMALL_STATE(7657)] = 227051, + [SMALL_STATE(7658)] = 227061, + [SMALL_STATE(7659)] = 227071, + [SMALL_STATE(7660)] = 227081, + [SMALL_STATE(7661)] = 227091, + [SMALL_STATE(7662)] = 227101, + [SMALL_STATE(7663)] = 227111, + [SMALL_STATE(7664)] = 227121, + [SMALL_STATE(7665)] = 227131, + [SMALL_STATE(7666)] = 227141, + [SMALL_STATE(7667)] = 227151, + [SMALL_STATE(7668)] = 227161, + [SMALL_STATE(7669)] = 227171, + [SMALL_STATE(7670)] = 227181, + [SMALL_STATE(7671)] = 227191, + [SMALL_STATE(7672)] = 227201, + [SMALL_STATE(7673)] = 227211, + [SMALL_STATE(7674)] = 227221, + [SMALL_STATE(7675)] = 227231, + [SMALL_STATE(7676)] = 227241, + [SMALL_STATE(7677)] = 227251, + [SMALL_STATE(7678)] = 227261, + [SMALL_STATE(7679)] = 227271, + [SMALL_STATE(7680)] = 227281, + [SMALL_STATE(7681)] = 227291, + [SMALL_STATE(7682)] = 227301, + [SMALL_STATE(7683)] = 227311, + [SMALL_STATE(7684)] = 227321, + [SMALL_STATE(7685)] = 227331, + [SMALL_STATE(7686)] = 227341, + [SMALL_STATE(7687)] = 227351, + [SMALL_STATE(7688)] = 227361, + [SMALL_STATE(7689)] = 227371, + [SMALL_STATE(7690)] = 227381, + [SMALL_STATE(7691)] = 227391, + [SMALL_STATE(7692)] = 227401, + [SMALL_STATE(7693)] = 227411, + [SMALL_STATE(7694)] = 227421, + [SMALL_STATE(7695)] = 227431, + [SMALL_STATE(7696)] = 227441, + [SMALL_STATE(7697)] = 227451, + [SMALL_STATE(7698)] = 227461, + [SMALL_STATE(7699)] = 227471, + [SMALL_STATE(7700)] = 227481, + [SMALL_STATE(7701)] = 227491, + [SMALL_STATE(7702)] = 227501, + [SMALL_STATE(7703)] = 227511, + [SMALL_STATE(7704)] = 227521, + [SMALL_STATE(7705)] = 227531, + [SMALL_STATE(7706)] = 227541, + [SMALL_STATE(7707)] = 227551, + [SMALL_STATE(7708)] = 227561, + [SMALL_STATE(7709)] = 227571, + [SMALL_STATE(7710)] = 227581, + [SMALL_STATE(7711)] = 227591, + [SMALL_STATE(7712)] = 227601, + [SMALL_STATE(7713)] = 227611, + [SMALL_STATE(7714)] = 227621, + [SMALL_STATE(7715)] = 227631, + [SMALL_STATE(7716)] = 227641, + [SMALL_STATE(7717)] = 227651, + [SMALL_STATE(7718)] = 227661, + [SMALL_STATE(7719)] = 227671, + [SMALL_STATE(7720)] = 227681, + [SMALL_STATE(7721)] = 227691, + [SMALL_STATE(7722)] = 227701, + [SMALL_STATE(7723)] = 227711, + [SMALL_STATE(7724)] = 227721, + [SMALL_STATE(7725)] = 227731, + [SMALL_STATE(7726)] = 227741, + [SMALL_STATE(7727)] = 227751, + [SMALL_STATE(7728)] = 227761, + [SMALL_STATE(7729)] = 227771, + [SMALL_STATE(7730)] = 227781, + [SMALL_STATE(7731)] = 227791, + [SMALL_STATE(7732)] = 227801, + [SMALL_STATE(7733)] = 227811, + [SMALL_STATE(7734)] = 227821, + [SMALL_STATE(7735)] = 227831, + [SMALL_STATE(7736)] = 227841, + [SMALL_STATE(7737)] = 227851, + [SMALL_STATE(7738)] = 227861, + [SMALL_STATE(7739)] = 227871, + [SMALL_STATE(7740)] = 227881, + [SMALL_STATE(7741)] = 227891, + [SMALL_STATE(7742)] = 227901, + [SMALL_STATE(7743)] = 227911, + [SMALL_STATE(7744)] = 227921, + [SMALL_STATE(7745)] = 227931, + [SMALL_STATE(7746)] = 227941, + [SMALL_STATE(7747)] = 227951, + [SMALL_STATE(7748)] = 227961, + [SMALL_STATE(7749)] = 227971, + [SMALL_STATE(7750)] = 227981, + [SMALL_STATE(7751)] = 227991, + [SMALL_STATE(7752)] = 228001, + [SMALL_STATE(7753)] = 228011, + [SMALL_STATE(7754)] = 228021, + [SMALL_STATE(7755)] = 228031, + [SMALL_STATE(7756)] = 228041, + [SMALL_STATE(7757)] = 228051, + [SMALL_STATE(7758)] = 228061, + [SMALL_STATE(7759)] = 228071, + [SMALL_STATE(7760)] = 228081, + [SMALL_STATE(7761)] = 228091, + [SMALL_STATE(7762)] = 228101, + [SMALL_STATE(7763)] = 228111, + [SMALL_STATE(7764)] = 228121, + [SMALL_STATE(7765)] = 228131, + [SMALL_STATE(7766)] = 228141, + [SMALL_STATE(7767)] = 228151, + [SMALL_STATE(7768)] = 228161, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8349), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8077), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8527), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8395), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6363), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2791), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6599), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6600), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6601), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2555), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8187), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2786), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2921), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(846), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6991), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8395), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8603), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5069), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5071), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5996), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8195), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2230), - [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5523), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2258), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5696), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8066), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1167), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2922), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3587), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2777), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5697), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7293), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4089), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5532), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5698), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2209), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2223), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(839), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1924), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8305), - [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7045), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1868), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6431), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6118), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8478), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1848), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4846), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8390), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6369), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2724), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6637), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6638), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6639), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5054), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2555), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8187), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2786), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2921), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(846), - [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6991), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8395), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8603), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5319), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5388), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5996), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8195), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2230), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6566), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1967), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5696), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7163), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1167), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2922), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3587), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2777), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5697), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7293), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3946), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5532), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5698), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2209), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2223), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(839), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(827), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1924), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8305), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7045), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1868), - [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6431), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6118), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8478), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1845), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4892), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8390), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7153), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8603), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5319), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), - [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6566), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7163), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6431), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5054), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7153), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8603), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5071), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5523), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1255), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5696), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8066), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6431), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4846), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8505), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(84), - [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6988), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8294), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(76), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8289), - [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3849), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3829), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7129), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1571), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(205), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8405), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(301), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8527), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8604), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(84), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6948), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8294), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(102), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8445), - [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3748), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3849), - [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3829), - [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2474), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7129), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1571), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(206), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8405), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5967), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5966), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 182), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 182), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 182), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 182), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 219), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 219), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 242), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 242), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 219), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 219), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 242), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 242), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5799), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2665), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6042), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6043), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6044), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4469), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4469), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7328), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2651), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2628), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2784), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(851), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(47), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6208), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7658), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7714), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4886), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4887), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6618), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7254), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2147), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6011), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6346), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1145), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2789), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3435), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2629), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5155), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6142), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3528), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2081), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2137), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(795), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(795), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(822), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1655), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1655), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1840), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7458), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2111), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6209), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1427), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5972), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5593), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7419), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1750), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4436), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7533), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5792), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2659), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5984), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5985), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5986), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4469), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4469), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7328), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2651), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2628), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2784), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(851), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(47), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6208), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7658), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7714), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4587), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4685), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6618), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7254), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2147), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4971), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2152), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7272), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1145), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2789), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3435), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2629), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5155), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6142), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3709), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2081), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2137), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(795), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(795), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(822), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1655), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1655), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1840), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7458), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2111), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6209), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1427), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5972), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5593), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7419), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1771), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4344), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7533), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5352), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4469), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4469), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4685), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4971), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7272), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7458), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6209), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4344), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7533), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4469), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4469), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4886), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4887), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6011), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6346), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7458), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6209), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4436), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7533), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7718), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4455), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4455), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(69), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6433), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7468), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(67), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7666), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3507), + [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3507), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3554), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3516), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1655), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1655), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6145), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3917), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(193), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7652), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7386), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4455), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4455), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(69), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6397), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7468), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(73), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7384), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3507), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3507), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3554), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3516), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1655), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1655), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6145), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3917), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(196), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7652), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(293), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(305), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5355), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5346), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8420), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8392), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(676), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 182), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 182), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 219), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 219), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 242), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 242), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1895), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(777), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(865), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(54), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6976), - [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1618), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1629), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5658), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5591), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1598), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1634), - [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1350), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1314), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1833), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1734), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8460), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1640), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6843), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1862), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6502), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6223), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8190), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8190), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1727), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8524), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(3019), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(865), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(54), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6976), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1618), - [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1629), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5658), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5591), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1634), - [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1257), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1257), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1350), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1314), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1833), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1745), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1734), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8460), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1640), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6843), - [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1862), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6502), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6223), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8190), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8190), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1727), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(8524), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8370), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(863), - [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(52), - [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6938), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1688), - [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1689), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(10), - [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5548), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5550), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1754), - [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1277), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1277), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1375), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1345), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1996), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1855), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1798), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8370), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1700), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6697), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1901), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6470), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6180), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1871), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(8459), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8633), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8641), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(864), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(47), - [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6680), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5590), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(102), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5611), - [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6760), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7246), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8445), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5470), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5470), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5655), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5537), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7647), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7809), - [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6674), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8399), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7015), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6710), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5662), - [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6536), - [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6311), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(870), - [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8008), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8008), - [3359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7417), - [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8367), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1182), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(8478), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8478), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7950), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7199), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), - [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5654), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6907), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6704), - [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), - [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5717), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1805), - [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7245), - [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), - [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7057), - [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7045), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(8390), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8512), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(1234), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(57), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(6984), - [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(211), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(5576), - [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(5600), - [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3159), - [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3155), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2702), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2702), - [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2810), - [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(2764), - [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3260), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3231), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3171), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8473), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3216), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(6944), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3279), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8008), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8008), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(3304), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), SHIFT_REPEAT(8573), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5917), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5950), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5943), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5926), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5912), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 185), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 185), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5930), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5970), - [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5929), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [5349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 236), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 236), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 236), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 236), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 164), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 164), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 174), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 174), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 236), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 236), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 165), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 165), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1844), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(772), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [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(773), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7615), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2929), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(855), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(44), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6419), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1590), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1622), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5095), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5098), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1573), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1238), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1238), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1316), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1254), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1713), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1685), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1680), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7767), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1552), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6326), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1722), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5805), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5677), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7344), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7344), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1693), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7627), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(855), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(44), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6419), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1590), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1622), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5095), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5098), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1573), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1598), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1238), + [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1238), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1316), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1713), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7767), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1552), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6326), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1722), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5805), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5677), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7344), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7344), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1693), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7627), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(847), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(53), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6370), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1631), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1639), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5113), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5116), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1662), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1307), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1307), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1366), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1915), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1811), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1715), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7515), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1663), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6278), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1929), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5928), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5646), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1737), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7588), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(843), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(51), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6177), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), + [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5118), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(73), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5139), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6094), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6073), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7384), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4892), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4892), + [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5077), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4981), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7052), + [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6646), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6196), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7662), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6097), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6180), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5080), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6013), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5782), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(863), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7294), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7294), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6715), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7512), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1150), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1150), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7419), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6893), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5075), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6199), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6080), + [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5026), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6093), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7458), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6156), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6209), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7344), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7344), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7533), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5305), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(1217), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(54), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6429), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(197), + [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5073), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5132), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3115), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3044), + [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2580), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2580), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2726), + [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2617), + [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3157), + [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3091), + [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3052), + [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7602), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3060), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6412), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3162), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7294), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7294), + [4520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3155), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7691), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5394), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5339), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5328), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5330), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [4813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5311), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5289), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1844), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(1844), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5321), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1844), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1844), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1895), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1895), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), SHIFT(1895), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1895), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5939), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5895), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), - [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7553), - [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3823), - [5803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(4026), - [5806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3915), - [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6710), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5662), - [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(8367), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5947), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5961), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3019), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 200), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 200), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7614), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3179), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 196), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 196), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 233), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 233), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 200), - [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 200), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6427), - [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6132), - [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(6141), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), - [6758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [6792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5949), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5920), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5959), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [6958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__expr_binary_expression, 1, 0, 0), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8394), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8631), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8638), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), - [7510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5952), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5951), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5948), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5946), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6680), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6680), + [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3520), + [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3671), + [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3549), + [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6180), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5080), + [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7512), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5348), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5343), + [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5337), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 198), + [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 198), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2824), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5349), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2929), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5345), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3112), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3177), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 227), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 227), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 198), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 198), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 194), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 194), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 196), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 196), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), + [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(6016), + [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5603), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5604), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7632), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [7160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5326), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [7207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5316), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5407), + [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [7319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [7359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), + [7410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3393), + [7416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), + [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1844), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1844), + [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), + [7488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(1844), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1844), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4775), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7544), + [7602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7756), + [7608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7595), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 228), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 228), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1844), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(387), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 201), + [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 201), + [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1844), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(229), + [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), + [7713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1844), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [7859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5941), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 228), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1895), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), - [7897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5936), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 228), - [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 228), SHIFT(1895), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), - [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(1895), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1895), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 234), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 234), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4659), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), - [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8362), - [8079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8041), - [8082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8570), - [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(8240), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [8106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(437), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [8129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5957), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [8138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1895), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 203), - [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 203), - [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1895), - [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), - [8194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1895), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [8203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(282), - [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1895), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1895), - [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 186), SHIFT(1895), - [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 186), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1895), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [8242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1895), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1895), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [8262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1895), - [8265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6289), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [8278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(467), - [8281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(467), - [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1895), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(299), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(291), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [8327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [8337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(293), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [8346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 186), SHIFT(1895), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 186), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [8365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1895), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), - [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(502), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [8389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1895), - [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(6279), - [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), - [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1895), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [8408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1895), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [8415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [8465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 207), - [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 207), - [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), - [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), - [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 213), - [8505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 213), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 207), - [8511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 207), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 209), - [8515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 209), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 236), - [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 236), - [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 237), - [8525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 237), - [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 238), - [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 238), - [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 239), - [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 239), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 240), - [8545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 240), - [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 256), - [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 256), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 258), - [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 258), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 236), - [8559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 236), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 237), - [8563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 237), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 260), - [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 260), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 261), - [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 261), - [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 238), - [8577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 238), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 239), - [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 239), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), - [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 272), - [8595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 272), - [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 256), - [8609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 256), - [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 274), - [8613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 274), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 258), - [8619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 258), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 276), - [8623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 276), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 277), - [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 277), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 260), - [8631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 260), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 261), - [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 261), - [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 278), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 278), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 279), - [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 279), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 272), - [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 272), - [8669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 274), - [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 274), - [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 286), - [8675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 286), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), - [8679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 287), - [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 287), - [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), - [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 288), - [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 288), - [8707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 289), - [8719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 289), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 290), - [8723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 290), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), - [8727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 291), - [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 291), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 279), - [8735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 279), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 286), - [8739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 286), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(263), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 287), - [8760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 287), - [8762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(271), - [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(273), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(279), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 294), - [8775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 294), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 288), - [8779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 288), - [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 295), - [8783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 295), - [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 289), - [8787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 289), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 290), - [8791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 290), - [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 291), - [8795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 291), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 294), - [8801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 294), - [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 295), - [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 295), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 282), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 285), - [8821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), - [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 248), - [8889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 227), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 249), - [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 250), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 251), - [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 252), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 280), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 214), - [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 214), - [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 187), - [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 281), - [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [8965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 284), - [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 292), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(236), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [9016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), - [9019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [9024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(251), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 293), - [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 176), - [9031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 176), - [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 283), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), - [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 225), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [9051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 263), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 264), - [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 265), - [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 266), - [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 267), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 268), - [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 269), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 270), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [9091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [9093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5816), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [9136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [9146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [9154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [9174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5574), - [9177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5709), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5764), - [9297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5715), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8114), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5963), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [9510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(7674), - [9513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(6710), - [9516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(5662), - [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 211), SHIFT_REPEAT(8367), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [9570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), - [9573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5940), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), - [9590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5905), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [9695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), - [9703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [9709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [9736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), - [9739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 257), - [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [9743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 257), - [9745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 259), - [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [9749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 259), - [9751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), - [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), - [9779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 273), - [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 273), - [9785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 275), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), - [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 275), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), - [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), - [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), - [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), - [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [10129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), - [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [10193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), - [10196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6367), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), - [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6365), - [10218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6116), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [10225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), - [10228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), - [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [10233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), - [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [10269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [10280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5902), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [10299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [10512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5908), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [10517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(113), - [10520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6665), - [10523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [10555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6594), - [10558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6573), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [10563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [10585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [10597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [10617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(106), - [10620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7662), - [10623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [10671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), - [10674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [10807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 201), - [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 201), - [10811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 202), - [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 202), - [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), - [10859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [10875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), - [10883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 204), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 205), - [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 206), - [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [10945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 180), - [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 216), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [11021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [11051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [11093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [11129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), - [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 232), - [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), - [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [11225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [11267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 235), - [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [11323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [11389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [11397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [11405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [11473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [11551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 216), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [11579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 253), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [11587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [11591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 254), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 255), - [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [11603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [11605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 271), - [11623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [11625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [11627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(7659), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [11640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [11648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [11652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [11654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [11662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 180), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [11666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [11676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7903), - [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [11693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [11695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [11697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [11699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [11701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [11707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [11721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 193), - [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [11741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 194), - [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [11755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), - [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [11779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [11781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [11793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [11805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), - [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [11865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [11867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [11871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [11891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), - [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [11907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [11911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [11923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7722), - [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [11956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [11958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [11966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [11968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [11980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [11986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [11990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [11994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [11996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [11998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [12002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [12004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [12008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), - [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [12014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [12018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [12020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [12022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [12024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [12026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [12038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [12046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [12050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [12052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [12054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [12056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [12058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [12060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [12062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [12068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [12072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [12074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [12076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [12078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [12082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [12088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [12094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [12104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [12106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [12110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [12118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [12122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [12124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [12126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [12130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [12134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [12136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [12140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [12150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [12156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [12158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [12164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [12172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [12174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [12178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7996), - [12181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [12183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [12187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [12189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [12191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [12193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [12199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [12211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [12213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), - [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [12225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [12227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [12229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [12231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [12233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8412), - [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), - [12239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [12241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8655), - [12245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), - [12253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [12255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [12257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), - [12259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [12275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [12279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), - [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [12291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [12297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [12309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [12315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [12317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [12319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(868), - [12322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), - [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [12336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [12340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [12342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [12352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), - [12355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [12357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [12361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [12371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [12373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [12375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [12377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [12385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [12387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [12391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [12401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [12413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [12415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [12417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [12419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [12421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [12433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [12445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), - [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [12451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [12453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [12455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [12459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [12461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [12467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), - [12469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [12477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [12481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [12483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [12491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [12493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [12495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [12497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [12499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [12501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [12503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [12505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [12507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [12509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [12515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [12523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), - [12525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [12529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [12533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [12535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [12539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 201), - [12541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 201), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [12545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8391), - [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 202), - [12549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 202), - [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), - [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [12577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(8110), - [12580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [12582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [12584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [12586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [12588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [12590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [12592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [12594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [12596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [12598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [12600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [12602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [12604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 179), - [12606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 179), - [12608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [12610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [12612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [12614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [12618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(8085), - [12621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [12623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [12625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [12629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(8015), - [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [12634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), - [12636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [12638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [12640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [12642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [12644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [12646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [12652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 215), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [12658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [12674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [12710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [12714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), - [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [12718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [12744] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [12772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [12780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [12786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 241), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [12796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [12812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [12828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [12840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [12842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 215), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [12846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [12856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 241), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [12862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [12868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [12914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [12920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [12924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [12948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [12952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [12962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [13008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [13034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [13282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [13338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [13380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [7726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(218), + [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1844), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1844), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [7763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1844), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [7774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), + [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1844), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1844), + [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1844), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [7801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1844), + [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [7810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1844), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5658), + [7820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1844), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [7831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(235), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [7860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1844), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1844), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(1844), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5773), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [7892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(483), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(483), + [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(450), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [7919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(227), + [7922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(1844), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 233), + [7931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 233), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 279), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 279), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 280), + [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 280), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 268), + [7945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 268), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 281), + [7951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 281), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 269), + [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 269), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 276), + [7959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 276), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 277), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 277), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 284), + [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 284), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), + [7993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 285), + [8003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 285), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 205), + [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 205), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 279), + [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 279), + [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 280), + [8025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 280), + [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 281), + [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 281), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 284), + [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 284), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 285), + [8043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 285), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 207), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 207), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 230), + [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 230), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 247), + [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 247), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 249), + [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 249), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 230), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 230), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 231), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 231), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 231), + [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 231), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 232), + [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 232), + [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 251), + [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 251), + [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 252), + [8129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 252), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 232), + [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 232), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 233), + [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 233), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 234), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 234), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), + [8145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 262), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 262), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 247), + [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 247), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [8185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(271), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(279), + [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(281), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 264), + [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 264), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(287), + [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 249), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 249), + [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 205), + [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 205), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 207), + [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 207), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 266), + [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 266), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 267), + [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 267), + [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 251), + [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 251), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 252), + [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 252), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), + [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 268), + [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 268), + [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 269), + [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 269), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 262), + [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 262), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 264), + [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 264), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [8291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), + [8309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 267), + [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 267), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), + [8331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5300), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [8410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 212), + [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 212), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), + [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 238), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 245), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 246), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), + [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), + [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 272), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 273), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 274), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 275), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 282), + [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 283), + [8572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(253), + [8594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(255), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(260), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5117), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [8761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5351), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5167), + [8910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5263), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7014), + [8986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6180), + [8989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5080), + [8992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7512), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5350), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [9010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5274), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5382), + [9100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5319), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), + [9147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [9151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [9157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), + [9163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [9183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [9205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [9245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [9515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [9542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5368), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5638), + [9574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5609), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [9599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [9607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5607), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [9620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5784), + [9623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5784), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [9636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), + [9639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5686), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [9836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5947), + [9908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [9937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(126), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6214), + [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5294), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [10004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(101), + [10007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6944), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [10078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5784), + [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5784), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [10144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 199), + [10146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 199), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [10152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 200), + [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 200), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [10200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [10210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [10226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6643), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [10265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [10275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5341), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6674), + [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [10339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [10367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [10419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [10449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [10469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6938), + [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [10486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), + [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [10566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [10594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [10596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [10624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [10714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [10786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 202), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 203), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 204), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [10920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), + [10928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [10934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 229), + [10988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [11002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [11006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [11008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [11030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [11050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [11066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [11076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [11122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7523), + [11140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [11168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [11222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), + [11224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [11228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [11252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(854), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [11263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [11267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(7195), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [11338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), + [11341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [11463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [11475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [11499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [11515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [11519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [11547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7240), + [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [11558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [11574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [11580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [11594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [11606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [11616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [11640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [11650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7646), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [11662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7225), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [11693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7335), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [11708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [11720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 199), + [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 199), + [11724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [11726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [11734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [11742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [11744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [11754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [11760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), + [11762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), + [11764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [11766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [11770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [11772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [11778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), + [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [11795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 200), + [11797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 200), + [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [11805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [11813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [11815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [11899] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [11913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [11917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [11919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [11925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 235), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [11965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [11969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [12027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [12041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [12109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [12117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [12133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [12157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [12165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [12219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [12223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [12237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [12245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [12261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [12359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [12361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [12387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 235), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7768), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers {